code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgba(218, 218, 218);
}
:root {
--mainColor: #f2d974;
--mainFontFamily: 'Yusei Magic', sans-serif;
--secondaryColor: #c7956d;
--thirdColor: #965d62;
--forthColor: #534e52;
--secondaryFontFamily: Georgia, 'Times New Roman', Times, serif;
--thirdFontFamily: Arial, Helvetica, sans-serif;
--letterSpacing: 0.8rem;
--mainTrasition: all 0.3s ease-in-out;
}
.clearfix::after,
.clearfix::before {
content: '';
clear: both;
display: table;
}
/* header */
.nav-btn {
position: fixed;
top: 2rem;
left: 4rem;
color: var(--mainColor);
z-index: 3;
font-size: 3rem;
cursor: pointer;
transition: var(--mainTrasition);
animation: lighting 1.5s infinite;
}
.nav-btn:hover {
color: var(--secondaryColor);
}
@keyframes lighting {
0% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
.nav {
position: fixed;
z-index: 4;
min-width: 15vw;
background-color: var(--secondaryColor);
min-height: 100vh;
text-align: center;
transform: translateX(-1000px);
transition: var(--mainTrasition);
}
.nav-click {
transform: translateX(0);
}
.nav .icon-btn {
text-align: left;
margin: 0.5rem 0 0 2rem;
color: var(--thirdColor);
}
.nav .close:hover {
color: var(--forthColor);
cursor: pointer;
}
.nav ul {
margin: 2rem 0;
list-style-type: none;
}
.nav ul li {
margin-bottom: 2rem;
}
.nav li a {
text-decoration: none;
color: var(--forthColor);
font-size: 1.5rem;
font-weight: bold;
font-family: var(--mainFontFamily);
transition: var(--mainTrasition);
}
.nav li a:hover {
color: rgb(184, 184, 184);
}
.banner {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url('https://images.pexels.com/photos/5702952/pexels-photo-5702952.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260')
center/cover no-repeat fixed;
height: 100vh;
width: 100vw;
font-family: var(--mainFontFamily);
color: var(--mainColor);
font-size: 2.2rem;
letter-spacing: var(--letterSpacing);
position: relative;
}
.banner-title {
text-align: center;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, 50%);
text-transform: capitalize;
color: var(--secondaryColor);
}
.first {
top: 25%;
color: var(--mainColor);
}
.banner-btn {
text-align: center;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, 50%);
text-decoration: none;
color: var(--forthColor);
outline: 2px solid var(--thirdColor);
outline-offset: 0.5rem;
background-color: var(--thirdColor);
margin: 2rem 0;
padding: 1rem 1rem 1.5rem 1.8rem;
transition: var(--mainTrasition);
}
.banner-btn:hover {
background-color: var(--secondaryColor);
}
/* end of header */
/* content divider */
.content-divider {
height: 0.5rem;
background: linear-gradient(
to left,
var(--thirdColor),
var(--mainColor),
var(--thirdColor)
);
}
/* end of content divider */
/* main */
#aboutUs {
position: relative;
background-color: rgba(218, 218, 218);
}
.aboutUs-title {
margin: 0 auto;
padding-top: 5rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.aboutUs-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
margin-top: 8rem;
}
.aboutUs-info {
max-width: 60rem;
color: var(--forthColor);
margin: 15rem auto 1rem;
text-align: justify;
line-height: 1.5rem;
text-indent: 0.2rem;
font-family: var(--secondaryFontFamily);
font-weight: bold;
background: var(--secondaryColor);
padding: 10rem 2rem 2rem 2rem;
border-radius: 1rem;
border: 0.5rem solid var(--forthColor);
}
/*end of main*/
/* services */
#services {
width: 100vw;
background-color: var(--thirdColor);
margin-top: 10rem;
}
.services-title {
margin: 3rem auto;
padding-top: 2rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.services {
background-color: rgba(218, 218, 218, 0.808);
}
.icon {
font-size: 2rem;
padding-top: 2rem;
color: var(--forthColor);
}
.service {
float: left;
max-width: 33.33%;
padding: 1rem;
text-align: center;
transition: var(--mainTrasition);
}
.service:hover {
background-color: var(--thirdColor);
transform: translate(2px, 2px);
}
.service-title {
margin-top: 2rem;
font-family: var(--mainFontFamily);
letter-spacing: 0.3rem;
color: var(--secondaryColor);
}
.service-info {
max-width: 50%;
margin: 2rem auto 0 auto;
font-family: var(--thirdFontFamily);
letter-spacing: 0.1rem;
padding-bottom: 2rem;
font-weight: bold;
color: var(--forthColor);
}
/* end of services */
/* contact */
.contacts-title {
margin: 3rem auto;
padding-top: 2rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.contacts {
display: flex;
justify-content: space-between;
margin: 0 auto;
}
.contact-info {
max-width: 50%;
padding: 1rem;
font-family: var(--thirdFontFamily);
}
.info {
font-size: 1.5rem;
margin-bottom: 2rem;
color: var(--thirdColor);
}
.contact {
margin-left: 1rem;
}
.contact-form {
max-width: 50%;
padding: 1rem;
text-align: center;
margin-top: 1rem;
}
label,
input,
textarea {
display: block;
text-align: left;
margin-bottom: 1rem;
font-family: var(--mainFontFamily);
border: none;
}
label {
font-size: 1.2rem;
color: var(--thirdColor);
}
input,
textarea {
padding: 1rem 3rem 1rem 1rem;
background: var(--secondaryColor);
border-radius: 2rem;
margin: 0 auto 1rem;
}
input {
width: 18rem;
}
.btn {
width: 8rem;
padding: 0.8rem 2.1rem;
background: var(--thirdColor);
color: var(--mainColor);
margin: 0 auto;
font-size: 1rem;
font-weight: bold;
border: 2px solid var(--thirdColor);
letter-spacing: 0.1rem;
transition: var(--mainTrasition);
}
.btn:hover {
cursor: pointer;
background-color: transparent;
color: var(--thirdColor);
}
/* end of contact */
/* footer */
.footer {
font-size: 1.5rem;
color: var(--secondaryColor);
text-align: center;
background-color: var(--forthColor);
padding-top: 2rem;
padding-bottom: 2rem;
margin-top: 5rem;
}
.icons {
margin-bottom: 2rem;
}
.icons a {
color: var(--secondaryColor);
margin-right: 2rem;
transition: var(--mainTrasition);
}
.icons a:hover {
color: var(--thirdColor);
}
/* end of footer */ | css/style.css | @import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgba(218, 218, 218);
}
:root {
--mainColor: #f2d974;
--mainFontFamily: 'Yusei Magic', sans-serif;
--secondaryColor: #c7956d;
--thirdColor: #965d62;
--forthColor: #534e52;
--secondaryFontFamily: Georgia, 'Times New Roman', Times, serif;
--thirdFontFamily: Arial, Helvetica, sans-serif;
--letterSpacing: 0.8rem;
--mainTrasition: all 0.3s ease-in-out;
}
.clearfix::after,
.clearfix::before {
content: '';
clear: both;
display: table;
}
/* header */
.nav-btn {
position: fixed;
top: 2rem;
left: 4rem;
color: var(--mainColor);
z-index: 3;
font-size: 3rem;
cursor: pointer;
transition: var(--mainTrasition);
animation: lighting 1.5s infinite;
}
.nav-btn:hover {
color: var(--secondaryColor);
}
@keyframes lighting {
0% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
.nav {
position: fixed;
z-index: 4;
min-width: 15vw;
background-color: var(--secondaryColor);
min-height: 100vh;
text-align: center;
transform: translateX(-1000px);
transition: var(--mainTrasition);
}
.nav-click {
transform: translateX(0);
}
.nav .icon-btn {
text-align: left;
margin: 0.5rem 0 0 2rem;
color: var(--thirdColor);
}
.nav .close:hover {
color: var(--forthColor);
cursor: pointer;
}
.nav ul {
margin: 2rem 0;
list-style-type: none;
}
.nav ul li {
margin-bottom: 2rem;
}
.nav li a {
text-decoration: none;
color: var(--forthColor);
font-size: 1.5rem;
font-weight: bold;
font-family: var(--mainFontFamily);
transition: var(--mainTrasition);
}
.nav li a:hover {
color: rgb(184, 184, 184);
}
.banner {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url('https://images.pexels.com/photos/5702952/pexels-photo-5702952.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260')
center/cover no-repeat fixed;
height: 100vh;
width: 100vw;
font-family: var(--mainFontFamily);
color: var(--mainColor);
font-size: 2.2rem;
letter-spacing: var(--letterSpacing);
position: relative;
}
.banner-title {
text-align: center;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, 50%);
text-transform: capitalize;
color: var(--secondaryColor);
}
.first {
top: 25%;
color: var(--mainColor);
}
.banner-btn {
text-align: center;
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, 50%);
text-decoration: none;
color: var(--forthColor);
outline: 2px solid var(--thirdColor);
outline-offset: 0.5rem;
background-color: var(--thirdColor);
margin: 2rem 0;
padding: 1rem 1rem 1.5rem 1.8rem;
transition: var(--mainTrasition);
}
.banner-btn:hover {
background-color: var(--secondaryColor);
}
/* end of header */
/* content divider */
.content-divider {
height: 0.5rem;
background: linear-gradient(
to left,
var(--thirdColor),
var(--mainColor),
var(--thirdColor)
);
}
/* end of content divider */
/* main */
#aboutUs {
position: relative;
background-color: rgba(218, 218, 218);
}
.aboutUs-title {
margin: 0 auto;
padding-top: 5rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.aboutUs-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
margin-top: 8rem;
}
.aboutUs-info {
max-width: 60rem;
color: var(--forthColor);
margin: 15rem auto 1rem;
text-align: justify;
line-height: 1.5rem;
text-indent: 0.2rem;
font-family: var(--secondaryFontFamily);
font-weight: bold;
background: var(--secondaryColor);
padding: 10rem 2rem 2rem 2rem;
border-radius: 1rem;
border: 0.5rem solid var(--forthColor);
}
/*end of main*/
/* services */
#services {
width: 100vw;
background-color: var(--thirdColor);
margin-top: 10rem;
}
.services-title {
margin: 3rem auto;
padding-top: 2rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.services {
background-color: rgba(218, 218, 218, 0.808);
}
.icon {
font-size: 2rem;
padding-top: 2rem;
color: var(--forthColor);
}
.service {
float: left;
max-width: 33.33%;
padding: 1rem;
text-align: center;
transition: var(--mainTrasition);
}
.service:hover {
background-color: var(--thirdColor);
transform: translate(2px, 2px);
}
.service-title {
margin-top: 2rem;
font-family: var(--mainFontFamily);
letter-spacing: 0.3rem;
color: var(--secondaryColor);
}
.service-info {
max-width: 50%;
margin: 2rem auto 0 auto;
font-family: var(--thirdFontFamily);
letter-spacing: 0.1rem;
padding-bottom: 2rem;
font-weight: bold;
color: var(--forthColor);
}
/* end of services */
/* contact */
.contacts-title {
margin: 3rem auto;
padding-top: 2rem;
color: var(--forthColor);
font-family: var(--mainFontFamily);
font-size: 3rem;
text-align: center;
}
.contacts {
display: flex;
justify-content: space-between;
margin: 0 auto;
}
.contact-info {
max-width: 50%;
padding: 1rem;
font-family: var(--thirdFontFamily);
}
.info {
font-size: 1.5rem;
margin-bottom: 2rem;
color: var(--thirdColor);
}
.contact {
margin-left: 1rem;
}
.contact-form {
max-width: 50%;
padding: 1rem;
text-align: center;
margin-top: 1rem;
}
label,
input,
textarea {
display: block;
text-align: left;
margin-bottom: 1rem;
font-family: var(--mainFontFamily);
border: none;
}
label {
font-size: 1.2rem;
color: var(--thirdColor);
}
input,
textarea {
padding: 1rem 3rem 1rem 1rem;
background: var(--secondaryColor);
border-radius: 2rem;
margin: 0 auto 1rem;
}
input {
width: 18rem;
}
.btn {
width: 8rem;
padding: 0.8rem 2.1rem;
background: var(--thirdColor);
color: var(--mainColor);
margin: 0 auto;
font-size: 1rem;
font-weight: bold;
border: 2px solid var(--thirdColor);
letter-spacing: 0.1rem;
transition: var(--mainTrasition);
}
.btn:hover {
cursor: pointer;
background-color: transparent;
color: var(--thirdColor);
}
/* end of contact */
/* footer */
.footer {
font-size: 1.5rem;
color: var(--secondaryColor);
text-align: center;
background-color: var(--forthColor);
padding-top: 2rem;
padding-bottom: 2rem;
margin-top: 5rem;
}
.icons {
margin-bottom: 2rem;
}
.icons a {
color: var(--secondaryColor);
margin-right: 2rem;
transition: var(--mainTrasition);
}
.icons a:hover {
color: var(--thirdColor);
}
/* end of footer */ | 0.413951 | 0.063773 |
/*To the Glory of God*/
/*The basic element*/
.cSlider_main {
position: relative;
width: 625px;
height: auto;
overflow: hidden;
}
.c_mainImage {
display: block !important;
position: relative !important;
width: 625px !important;
cursor: pointer;
}
/* If an image is wrapped in a link */
.cSlider a.c_imageLink {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
padding: 0;
margin: 0;
z-index: 6;
display: none;
}
/* Caption styles */
.c_caption {
position: absolute;
left: 0;
bottom: 0;
background-color: #ED8923;
opacity: 0.9;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworange.png);
background-position: right;
background-repeat: no-repeat;
text-decoration: none !important;
cursor: pointer;
color: #fff !important;
width: 100%;
height: 50px;
z-index: 8;
padding: 5px 5px;
overflow: hidden;
display: none;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
.c_caption p {
padding: 5px;
margin: 0;
}
.c_caption a {
display: inline !important;
}
.c_big {
color: #fff;
font-size: 12pt;
font-weight: bold;
text-align: left;
}
.c_small {
color: #fff;
font-size: 10pt;
font-weight: normal;
text-align: left;
}
/* Direction nav styles (e.g. Next & Prev) */
.c_directionNav a {
position: absolute;
top: 45%;
z-index: 9;
cursor: pointer;
height: 20px;
width: 20px;
}
.c_prevNav {
left: 0;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworangeL.png);
}
.c_nextNav {
right: 0;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworange.png);
}
/* Control nav styles (e.g. 1,2,3...) */
.c_controlNav {
position: absolute;
bottom: 55px;
text-align: left;
vertical-align: bottom;
z-index: 9;
}
.c_controlNav a {
cursor: pointer;
margin-right: 5px;
font-size: 17px;
}
.c_controlNav a.c_control img {
width: 40px;
vertical-align: bottom;
}
.c_controlNav a.active {
font-weight: bold;
border: 1px solid #ED8923;
}
/*The Slices*/
.c_slice {
display: block;
position: absolute;
z-index: 5;
height: 100%;
top: 0;
cursor: pointer;
}
/*The Full Link*/
.c_Linker {
position: absolute;
left: 0;
bottom: 0;
text-decoration: none !important;
cursor: pointer;
width: 100%;
height: 100%;
z-index: 7;
} | js/cSlider/chris_slider.css | /*To the Glory of God*/
/*The basic element*/
.cSlider_main {
position: relative;
width: 625px;
height: auto;
overflow: hidden;
}
.c_mainImage {
display: block !important;
position: relative !important;
width: 625px !important;
cursor: pointer;
}
/* If an image is wrapped in a link */
.cSlider a.c_imageLink {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
padding: 0;
margin: 0;
z-index: 6;
display: none;
}
/* Caption styles */
.c_caption {
position: absolute;
left: 0;
bottom: 0;
background-color: #ED8923;
opacity: 0.9;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworange.png);
background-position: right;
background-repeat: no-repeat;
text-decoration: none !important;
cursor: pointer;
color: #fff !important;
width: 100%;
height: 50px;
z-index: 8;
padding: 5px 5px;
overflow: hidden;
display: none;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
.c_caption p {
padding: 5px;
margin: 0;
}
.c_caption a {
display: inline !important;
}
.c_big {
color: #fff;
font-size: 12pt;
font-weight: bold;
text-align: left;
}
.c_small {
color: #fff;
font-size: 10pt;
font-weight: normal;
text-align: left;
}
/* Direction nav styles (e.g. Next & Prev) */
.c_directionNav a {
position: absolute;
top: 45%;
z-index: 9;
cursor: pointer;
height: 20px;
width: 20px;
}
.c_prevNav {
left: 0;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworangeL.png);
}
.c_nextNav {
right: 0;
background-image: url(/Portals/_default/Skins/Agape2012/images/arroworange.png);
}
/* Control nav styles (e.g. 1,2,3...) */
.c_controlNav {
position: absolute;
bottom: 55px;
text-align: left;
vertical-align: bottom;
z-index: 9;
}
.c_controlNav a {
cursor: pointer;
margin-right: 5px;
font-size: 17px;
}
.c_controlNav a.c_control img {
width: 40px;
vertical-align: bottom;
}
.c_controlNav a.active {
font-weight: bold;
border: 1px solid #ED8923;
}
/*The Slices*/
.c_slice {
display: block;
position: absolute;
z-index: 5;
height: 100%;
top: 0;
cursor: pointer;
}
/*The Full Link*/
.c_Linker {
position: absolute;
left: 0;
bottom: 0;
text-decoration: none !important;
cursor: pointer;
width: 100%;
height: 100%;
z-index: 7;
} | 0.425367 | 0.082771 |
.backgroundimage{
background-position:center;
background-size:cover;
}
#logo{
z-index: -1;
top: 300px;
}
h1, h2{
text-align:center;
clear:both;
font-family:'Lato';
font-weight: 100;
}
p {
font-weight: 175;
text-align: center;
clear: left;
clear: right;
box-sizing: border-box;
}
section .row img {
margin: 0 0 30px;
width: 33%;
align-items: center;
}
.col-md-6 {
margin: 0 0 30px;
}
figure img {
position: relative;
left: 200px;
}
#container {
width: 100%;
margin: 0px auto;
}
#leftcolumn {
top: 2em;
width: 70%;
float: left;
}
#rightcolumn {
top: 15%;
width: 30%;
float: left;
}
#leftcolumn, img {
top: 2em;
margin: auto;
display: block;
}
#rightcolumn, img {
margin: 0 auto;
display: block;
}
@media screen and (max-width:959px) and (orientation: potrait) {
#container {
width:100% ;
}
#leftcolumn {
width: 70%;
}
#rightcolumn {
width: 30%;
}
img {
max-width: 100%;
}
}
@media screen and (max-width:640px) {
#leftcolumn {
width: 100%;
}
#rightcolumn {
width: 100%;
}
}
@media screen and (max-width:320px) {
#container {
width:320px ;
}
#leftcolumn {
width: 100%;
}
#rightcolumn {
width: 100%;
}
}
.floor {
text-align: center;
position: center;
box-sizing: border-box;
display: inline;
clear: both;
left: 50px;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 90%) {
.sidenav {padding-top: 2em;}
.sidenav a {font-size: 2em;}
}
button.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
background-color: #ccc;
}
div.panel {
padding: 0 18px;
display: none;
background-color: white;
}
.slideshow {
margin: auto;
position: relative;
height: 40%;
width: 50%;
}
.page {
float: right;
}
/* Next & previous buttons */
.back, .foward {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.foward {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.back:hover, .foward:hover {
background-color: rgba(0,0,0,0.8);
}
@media screen and (max-width: 66.66%) and (orientation: potrait) {
.slideshow {
width: 100% ;
}
.page {
width: 100%;
}
div .page img {
max-width: 100%;
}
} | css/test.css | .backgroundimage{
background-position:center;
background-size:cover;
}
#logo{
z-index: -1;
top: 300px;
}
h1, h2{
text-align:center;
clear:both;
font-family:'Lato';
font-weight: 100;
}
p {
font-weight: 175;
text-align: center;
clear: left;
clear: right;
box-sizing: border-box;
}
section .row img {
margin: 0 0 30px;
width: 33%;
align-items: center;
}
.col-md-6 {
margin: 0 0 30px;
}
figure img {
position: relative;
left: 200px;
}
#container {
width: 100%;
margin: 0px auto;
}
#leftcolumn {
top: 2em;
width: 70%;
float: left;
}
#rightcolumn {
top: 15%;
width: 30%;
float: left;
}
#leftcolumn, img {
top: 2em;
margin: auto;
display: block;
}
#rightcolumn, img {
margin: 0 auto;
display: block;
}
@media screen and (max-width:959px) and (orientation: potrait) {
#container {
width:100% ;
}
#leftcolumn {
width: 70%;
}
#rightcolumn {
width: 30%;
}
img {
max-width: 100%;
}
}
@media screen and (max-width:640px) {
#leftcolumn {
width: 100%;
}
#rightcolumn {
width: 100%;
}
}
@media screen and (max-width:320px) {
#container {
width:320px ;
}
#leftcolumn {
width: 100%;
}
#rightcolumn {
width: 100%;
}
}
.floor {
text-align: center;
position: center;
box-sizing: border-box;
display: inline;
clear: both;
left: 50px;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 90%) {
.sidenav {padding-top: 2em;}
.sidenav a {font-size: 2em;}
}
button.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
background-color: #ccc;
}
div.panel {
padding: 0 18px;
display: none;
background-color: white;
}
.slideshow {
margin: auto;
position: relative;
height: 40%;
width: 50%;
}
.page {
float: right;
}
/* Next & previous buttons */
.back, .foward {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.foward {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.back:hover, .foward:hover {
background-color: rgba(0,0,0,0.8);
}
@media screen and (max-width: 66.66%) and (orientation: potrait) {
.slideshow {
width: 100% ;
}
.page {
width: 100%;
}
div .page img {
max-width: 100%;
}
} | 0.452536 | 0.123921 |
.page{
min-height: 100vh;
position: relative;
justify-content: center;
text-align: center;
align-items: center;
color: #fff;
background-repeat: no-repeat;
background-size: cover;
margin-top: -2em;
background-image: url('car6.jpg');
object-fit: contain;
}
.rent h1{
margin-bottom: 6em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
opacity: 0.5;
color: rgb(90, 89, 89);
}
.rent1 h1{
margin-bottom: 0.1em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
opacity: 0.5;
color: rgb(90, 89, 89);
}
.first h1{
font-size: 45px;
margin-bottom: 1em;
color: red;
}
.second h2{
font-size: 32px;
color: #fff;
}
.floating-icon{
background-color: darkblue;
width: 5rem;
height: 5rem;
margin-bottom: 15em;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
cursor: pointer;
}
.floating-icon a{
border: 1px solid #fff;
width: 5rem;
height: 5rem;
border-radius: 50%;
position: absolute;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
}
.mouse{
transform: translateY(-25%);
animation: bounce .8s ease infinite alternate;
}
@keyframes bounce {
0%{
transform: translateY(-25%);
}
100%{
transform: translateY(25%);
}
}
.custom-shape-divider-bottom-1638974829 {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}
.custom-shape-divider-bottom-1638974829 svg {
position: relative;
display: block;
width: calc(157% + 1.3px);
height: 311px;
}
.custom-shape-divider-bottom-1638974829 .shape-fill {
fill: rgb(31, 23, 23);
}
@media screen and (max-width: 1110px) {
.page{
text-align: center;
justify-content: center;
}
}
@media screen and (max-width: 960px) {
.page{
text-align: center;
justify-content: center;
background-size: cover;
object-fit: contain;
}
}
@media screen and (max-width: 810px) {
.page{
text-align: center;
justify-content: center;
}
}
@media screen and (max-width: 375px){
.page{
text-align: center;
justify-content: center;
}
} | client/src/components/FirstPage/First.css | .page{
min-height: 100vh;
position: relative;
justify-content: center;
text-align: center;
align-items: center;
color: #fff;
background-repeat: no-repeat;
background-size: cover;
margin-top: -2em;
background-image: url('car6.jpg');
object-fit: contain;
}
.rent h1{
margin-bottom: 6em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
opacity: 0.5;
color: rgb(90, 89, 89);
}
.rent1 h1{
margin-bottom: 0.1em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
opacity: 0.5;
color: rgb(90, 89, 89);
}
.first h1{
font-size: 45px;
margin-bottom: 1em;
color: red;
}
.second h2{
font-size: 32px;
color: #fff;
}
.floating-icon{
background-color: darkblue;
width: 5rem;
height: 5rem;
margin-bottom: 15em;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
cursor: pointer;
}
.floating-icon a{
border: 1px solid #fff;
width: 5rem;
height: 5rem;
border-radius: 50%;
position: absolute;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
}
.mouse{
transform: translateY(-25%);
animation: bounce .8s ease infinite alternate;
}
@keyframes bounce {
0%{
transform: translateY(-25%);
}
100%{
transform: translateY(25%);
}
}
.custom-shape-divider-bottom-1638974829 {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}
.custom-shape-divider-bottom-1638974829 svg {
position: relative;
display: block;
width: calc(157% + 1.3px);
height: 311px;
}
.custom-shape-divider-bottom-1638974829 .shape-fill {
fill: rgb(31, 23, 23);
}
@media screen and (max-width: 1110px) {
.page{
text-align: center;
justify-content: center;
}
}
@media screen and (max-width: 960px) {
.page{
text-align: center;
justify-content: center;
background-size: cover;
object-fit: contain;
}
}
@media screen and (max-width: 810px) {
.page{
text-align: center;
justify-content: center;
}
}
@media screen and (max-width: 375px){
.page{
text-align: center;
justify-content: center;
}
} | 0.690142 | 0.084041 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("fimfiction.net") {
.tag-character[data-tag="twilight-sparkle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twilight_sparkle.png");
}
.tag-character[data-tag="rainbow-dash"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rainbow_dash.png");
}
.tag-character[data-tag="pinkie-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pinkie_pie.png");
}
.tag-character[data-tag="applejack"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/applejack.png");
}
.tag-character[data-tag="rarity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rarity.png");
}
.tag-character[data-tag="fluttershy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fluttershy.png");
}
.tag-character[data-tag="spike"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spike.png");
}
.tag-character[data-tag="main-6"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mane_6.png");
}
.tag-character[data-tag="apple-bloom"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/apple_bloom.png");
}
.tag-character[data-tag="scootaloo"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/scootaloo.png");
}
.tag-character[data-tag="sweetie-belle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sweetie_belle.png");
}
.tag-character[data-tag="cutie-mark-crusaders"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cmc.png");
}
.tag-character[data-tag="babs-seed"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/babs_seed.png");
}
.tag-character[data-tag="princess-celestia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_celestia.png");
}
.tag-character[data-tag="princess-luna"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_luna.png");
}
.tag-character[data-tag="nightmare-moon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightmare_moon.png");
}
.tag-character[data-tag="princess-cadance"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_mi_amore_cadenza.png");
}
.tag-character[data-tag="flurry-heart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flurry_heart.png");
}
.tag-character[data-tag="gilda"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gilda.png");
}
.tag-character[data-tag="zecora"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zecora.png");
}
.tag-character[data-tag="trixie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trixie.png");
}
.tag-character[data-tag="cheerilee"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cherilee.png");
}
.tag-character[data-tag="the-mayor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/the_mayor.png");
}
.tag-character[data-tag="hoity-toity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/hoity_toity.png");
}
.tag-character[data-tag="photo-finish"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/photo_finish.png");
}
.tag-character[data-tag="sapphire-shores"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sapphire_shores.png");
}
.tag-character[data-tag="spitfire"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spitfire.png");
}
.tag-character[data-tag="soarin"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/soarin.png");
}
.tag-character[data-tag="prince-blueblood"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/prince_blueblood.png");
}
.tag-character[data-tag="little-strongheart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/little_strongheart.png");
}
.tag-character[data-tag="discord"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/discord.png");
}
.tag-character[data-tag="mare-do-well"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mare_do_well.png");
}
.tag-character[data-tag="fancypants"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fancypants.png");
}
.tag-character[data-tag="daring-do"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/daring_do.png");
}
.tag-character[data-tag="flim-and-flam"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flimflam.png");
}
.tag-character[data-tag="cranky-doodle-donkey"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cranky_doodle.png");
}
.tag-character[data-tag="matilda"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/matilda.png");
}
.tag-character[data-tag="mr-cake"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mr_cake.png");
}
.tag-character[data-tag="mrs-cake"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mrs_cake.png");
}
.tag-character[data-tag="iron-will"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ironwill.png");
}
.tag-character[data-tag="shining-armor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/shining_armor.png");
}
.tag-character[data-tag="wonderbolts"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/wonderbolts.png");
}
.tag-character[data-tag="diamond-dogs"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/diamond_dogs.png");
}
.tag-character[data-tag="queen-chrysalis"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/queen_chrysalis.png");
}
.tag-character[data-tag="king-sombra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/king_sombra.png");
}
.tag-character[data-tag="crystal-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/crystal_ponies.png");
}
.tag-character[data-tag="lightning-dust"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lightning_dust.png");
}
.tag-character[data-tag="sunset-shimmer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunset_shimmer.png");
}
.tag-character[data-tag="pie-sisters"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pie_sisters.png");
}
.tag-character[data-tag="cherry-jubilee"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cherry_jubilee.png");
}
.tag-character[data-tag="cake-twins"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cake_twins.png");
}
.tag-character[data-tag="flash-sentry"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flash_sentry.png");
}
.tag-character[data-tag="mane-iac"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mane-iac.png");
}
.tag-character[data-tag="power-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/power_ponies.png");
}
.tag-character[data-tag="cheese-sandwich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cheese_sandwich.png");
}
.tag-character[data-tag="maud-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/maud_pie.png");
}
.tag-character[data-tag="coco-pommel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coco_pommel.png");
}
.tag-character[data-tag="trenderhoof"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trenderhoof.png");
}
.tag-character[data-tag="breezies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/breezies.png");
}
.tag-character[data-tag="suri-polomare"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/suri_polomare.png");
}
.tag-character[data-tag="ahuizotl"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ahuizotl.png");
}
.tag-character[data-tag="seabreeze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/seabreeze.png");
}
.tag-character[data-tag="fleetfoot"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fleetfoot.png");
}
.tag-character[data-tag="bulk-biceps"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bulk_biceps.png");
}
.tag-character[data-tag="tirek"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tirek.png");
}
.tag-character[data-tag="adagio-dazzle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_adagio_dazzle.png");
}
.tag-character[data-tag="sonata-dusk"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sonata_dusk.png");
}
.tag-character[data-tag="aria-blaze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_aria_blaze.png");
}
.tag-character[data-tag="ms-harshwhinny"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/harshwhinny.png");
}
.tag-character[data-tag="starlight-glimmer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/starlight_glimmer.png");
}
.tag-character[data-tag="ember"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ember.png");
}
.tag-character[data-tag="limestone-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/limestone_pie.png");
}
.tag-character[data-tag="marble-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/marble_pie.png");
}
.tag-character[data-tag="moondancer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/moondancer.png");
}
.tag-character[data-tag="moonlight-raven"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/moonlight_raven.png");
}
.tag-character[data-tag="sassy-saddles"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sassy_saddles.png");
}
.tag-character[data-tag="treehugger"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/treehugger.png");
}
.tag-character[data-tag="troubleshoes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trouble_shoes.png");
}
.tag-character[data-tag="wind-rider"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/wind_rider.png");
}
.tag-character[data-tag="steven-magnet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/steven_magnet.png");
}
.tag-character[data-tag="tantabus"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tantabus.png");
}
.tag-character[data-tag="the-smooze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/the_smooze.png");
}
.tag-character[data-tag="zephyr-breeze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zephyr_breeze.png");
}
.tag-character[data-tag="vapor-trail"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/vapor_trail.png");
}
.tag-character[data-tag="sky-stinger"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sky_stinger.png");
}
.tag-character[data-tag="saffron-masala"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/saffron_masala.png");
}
.tag-character[data-tag="coriander-cumin"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coriander_cumin.png");
}
.tag-character[data-tag="sunburst"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sunburst.png");
}
.tag-character[data-tag="mr-stripes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mr_stripes.png");
}
.tag-character[data-tag="plaid-stripes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/plaid_stripes.png");
}
.tag-character[data-tag="thorax"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/thorax.png");
}
.tag-character[data-tag="yaks"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/yaks.png");
}
.tag-character[data-tag="bat-pony"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bat_pony.png");
}
.tag-character[data-tag="griffons"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/griffons.png");
}
.tag-character[data-tag="minotaur"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/minotaur.png");
}
.tag-character[data-tag="royal-guard"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/royal_guard.png");
}
.tag-character[data-tag="zebra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zebra.png");
}
.tag-character[data-tag="dragons"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dragons.png");
}
.tag-character[data-tag="twinkleshine"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twinkle_shine.png");
}
.tag-character[data-tag="coloratura"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coloratura.png");
}
.tag-character[data-tag="gabby"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gabby.png");
}
.tag-character[data-tag="spoiled-rich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spoiled_rich.png");
}
.tag-character[data-tag="sunshine-smiles"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sunshine_smiles.png");
}
.tag-character[data-tag="tender-taps"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tender_taps.png");
}
.tag-character[data-tag="quibble-pants"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/quibble_pants.png");
}
.tag-character[data-tag="garble"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/garble.png");
}
.tag-character[data-tag="double-diamond"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/double_diamond.png");
}
.tag-character[data-tag="night-glider"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/night_glider.png");
}
.tag-character[data-tag="sugar-belle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sugar_belle.png");
}
.tag-character[data-tag="party-favor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/party_favor.png");
}
.tag-character[data-tag="timberwolves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/timberwolves.png");
}
.tag-character[data-tag="svengallop"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/svengallop.png");
}
.tag-character[data-tag="big-macintosh"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/big_mac.png");
}
.tag-character[data-tag="granny-smith"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/granny_smith.png");
}
.tag-character[data-tag="braeburn"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/braeburn.png");
}
.tag-character[data-tag="diamond-tiara"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/diamond_tiara.png");
}
.tag-character[data-tag="silver-spoon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/silver_spoon.png");
}
.tag-character[data-tag="twist"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twist.png");
}
.tag-character[data-tag="snips"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/snips.png");
}
.tag-character[data-tag="snails"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/snails.png");
}
.tag-character[data-tag="pipsqueak"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pipsqueak.png");
}
.tag-character[data-tag="featherweight"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/featherweight.png");
}
.tag-character[data-tag="zipporwhill"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zipporwhill.png");
}
.tag-character[data-tag="ruby-pinch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ruby_pinch.png");
}
.tag-character[data-tag="angel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/angel.png");
}
.tag-character[data-tag="winona"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/winona.png");
}
.tag-character[data-tag="opalescence"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/opalescence.png");
}
.tag-character[data-tag="gummy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gummy.png");
}
.tag-character[data-tag="owlowiscious"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/owlowiscious.png");
}
.tag-character[data-tag="philomena"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/philomena.png");
}
.tag-character[data-tag="tank"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tank.png");
}
.tag-character[data-tag="pets"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pets.png");
}
.tag-character[data-tag="derpy-hooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/derpy_hooves.png");
}
.tag-character[data-tag="lyra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lyra.png");
}
.tag-character[data-tag="bon-bon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bon_bon.png");
}
.tag-character[data-tag="dj-p0n-3"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dj_pon3.png");
}
.tag-character[data-tag="caramel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/caramel.png");
}
.tag-character[data-tag="doctor-whooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/doctor_whooves.png");
}
.tag-character[data-tag="octavia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/octavia.png");
}
.tag-character[data-tag="berry-punch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/berry_punch.png");
}
.tag-character[data-tag="carrot-top"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/carrot_top.png");
}
.tag-character[data-tag="fleur-de-lis"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fleur_de_lis.png");
}
.tag-character[data-tag="colgate"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/colgate.png");
}
.tag-character[data-tag="dinky-hooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dinky.png");
}
.tag-character[data-tag="thunderlane"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/thunderlane.png");
}
.tag-character[data-tag="flitter-and-cloudchaser"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flitter_and_cloudchaser.png");
}
.tag-character[data-tag="rumble"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rumble.png");
}
.tag-character[data-tag="roseluck"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/roseluck.png");
}
.tag-character[data-tag="changelings"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/changelings.png");
}
.tag-character[data-tag="noteworthy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/noteworthy.png");
}
.tag-character[data-tag="nurse-redheart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nurse_red_heart.png");
}
.tag-character[data-tag="flower-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flower_ponies.png");
}
.tag-character[data-tag="raindrops"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/raindrops.png");
}
.tag-character[data-tag="spa-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spa_ponies.png");
}
.tag-character[data-tag="sparkler"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sparkler.png");
}
.tag-character[data-tag="cloudkicker"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cloudkicker.png");
}
.tag-character[data-tag="twilight-velvet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twilight_velvet.png");
}
.tag-character[data-tag="night-light"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightlight.png");
}
.tag-character[data-tag="screwball"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/screwball.png");
}
.tag-character[data-tag="blossomforth"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/blossomforth.png");
}
.tag-character[data-tag="button-mash"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/button_mash.png");
}
.tag-character[data-tag="cloudchaser"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cloud_chaser.png");
}
.tag-character[data-tag="daisy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/daisy.png");
}
.tag-character[data-tag="filthy-rich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/filthy_rich.png");
}
.tag-character[data-tag="flitter"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flitter.png");
}
.tag-character[data-tag="lily"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lily.png");
}
.tag-character[data-tag="parcel-post"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/parcel_post.png");
}
.tag-character[data-tag="pony-joe"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pony_joe.png");
}
.tag-character[data-tag="white-lightning"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/white_lightning.png");
}
.tag-character[data-tag="original-character"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/oc.png");
}
.tag-character[data-tag="other"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/other.png");
}
.tag-character[data-tag="anon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/anon.png");
}
.tag-character[data-tag="self-insert"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/self_insert.png");
}
.tag-character[data-tag="the-dazzlings"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_the_dazzlings.png");
}
.tag-character[data-tag="applejack-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_applejack.png");
}
.tag-character[data-tag="dean-cadence"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_dean_cadance.png");
}
.tag-character[data-tag="indigo-zap"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_indigo_zap.png");
}
.tag-character[data-tag="lemon-zest"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_lemon_zest.png");
}
.tag-character[data-tag="micro-chips"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_micro_chips.png");
}
.tag-character[data-tag="midnight-sparkle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_midnight_sparkle.png");
}
.tag-character[data-tag="pinkie-pie-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_pinkie_pie.png");
}
.tag-character[data-tag="principal-cinch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_principal_cinch.png");
}
.tag-character[data-tag="rainbow-dash-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_rainbow_dash.png");
}
.tag-character[data-tag="principal-celestia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_principal_celestia.png");
}
.tag-character[data-tag="rarity-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_rarity.png");
}
.tag-character[data-tag="sandalwood"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sandalwood.png");
}
.tag-character[data-tag="sour-sweet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sour_sweet.png");
}
.tag-character[data-tag="spike-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_spike.png");
}
.tag-character[data-tag="sugarcoat"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sugarcoat.png");
}
.tag-character[data-tag="sunny-flare"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunny_flare.png");
}
.tag-character[data-tag="sunset-shimmer-(demon)"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunset_shimmer_demon.png");
}
.tag-character[data-tag="twilight-sparkle-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_twilight_sparkle.png");
}
.tag-character[data-tag="vice-principal-luna"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_vp_luna.png");
}
.tag-character[data-tag="fluttershy-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_fluttershy.png");
}
.tag-character[data-tag="main-7-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_mane_7.png");
}
.tag-character[data-tag="shadowbolts-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_shadowbolts.png");
}
.tag-character[data-tag="timber-spruce"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_timber_spruce.png");
}
.tag-character[data-tag="gloriosa-daisy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_gloriosa_daisy.png");
}
.tag-character[data-tag="chancellor-puddinghead"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/chancellor_puddinghead.png");
}
.tag-character[data-tag="clover-the-clever"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/clover_the_clever.png");
}
.tag-character[data-tag="commander-hurricane"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/commander_hurricane.png");
}
.tag-character[data-tag="princess-platinum"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_platinum.png");
}
.tag-character[data-tag="private-pansy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/private_pansy.png");
}
.tag-character[data-tag="smart-cookie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/smart_cookie.png");
}
.tag-character[data-tag="starswirl-the-bearded"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/starswirl_the_bearded.png");
}
.tag-character[data-tag="nightmare-rarity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightmare_rarity.png");
}
.tag-character[data-tag="tiberius"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tiberius.png");
}
.tag-character[data-tag="princess-amore"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_amore.png");
}
.tag-character[data-tag="radiant-hope"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/radiant_hope.png");
}
.tag-character[data-tag="tempest-shadow"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/temtam.png");
}
.tag-character[data-tag="twilight-sparkle"]::after,
.tag-character[data-tag="rainbow-dash"]::after,
.tag-character[data-tag="pinkie-pie"]::after,
.tag-character[data-tag="applejack"]::after,
.tag-character[data-tag="rarity"]::after,
.tag-character[data-tag="fluttershy"]::after,
.tag-character[data-tag="spike"]::after,
.tag-character[data-tag="main-6"]::after,
.tag-character[data-tag="apple-bloom"]::after,
.tag-character[data-tag="scootaloo"]::after,
.tag-character[data-tag="sweetie-belle"]::after,
.tag-character[data-tag="cutie-mark-crusaders"]::after,
.tag-character[data-tag="babs-seed"]::after,
.tag-character[data-tag="princess-celestia"]::after,
.tag-character[data-tag="princess-luna"]::after,
.tag-character[data-tag="nightmare-moon"]::after,
.tag-character[data-tag="princess-cadance"]::after,
.tag-character[data-tag="flurry-heart"]::after,
.tag-character[data-tag="gilda"]::after,
.tag-character[data-tag="zecora"]::after,
.tag-character[data-tag="trixie"]::after,
.tag-character[data-tag="cheerilee"]::after,
.tag-character[data-tag="the mayor"]::after,
.tag-character[data-tag="hoity-toity"]::after,
.tag-character[data-tag="photo-finish"]::after,
.tag-character[data-tag="sapphire-shores"]::after,
.tag-character[data-tag="spitfire"]::after,
.tag-character[data-tag="soarin"]::after,
.tag-character[data-tag="prince-blueblood"]::after,
.tag-character[data-tag="little-strongheart"]::after,
.tag-character[data-tag="discord"]::after,
.tag-character[data-tag="mare-do-well"]::after,
.tag-character[data-tag="fancypants"]::after,
.tag-character[data-tag="daring-do"]::after,
.tag-character[data-tag="flim-and-flam"]::after,
.tag-character[data-tag="cranky-doodle-donkey"]::after,
.tag-character[data-tag="matilda"]::after,
.tag-character[data-tag="mr-cake"]::after,
.tag-character[data-tag="mrs-cake"]::after,
.tag-character[data-tag="iron-will"]::after,
.tag-character[data-tag="shining-armor"]::after,
.tag-character[data-tag="wonderbolts"]::after,
.tag-character[data-tag="diamond-dogs"]::after,
.tag-character[data-tag="queen-chrysalis"]::after,
.tag-character[data-tag="king-sombra"]::after,
.tag-character[data-tag="crystal-ponies"]::after,
.tag-character[data-tag="lightning-dust"]::after,
.tag-character[data-tag="sunset-shimmer"]::after,
.tag-character[data-tag="pie-sisters"]::after,
.tag-character[data-tag="cherry-jubilee"]::after,
.tag-character[data-tag="cake-twins"]::after,
.tag-character[data-tag="flash-sentry"]::after,
.tag-character[data-tag="mane-iac"]::after,
.tag-character[data-tag="power-ponies"]::after,
.tag-character[data-tag="cheese-sandwich"]::after,
.tag-character[data-tag="maud-pie"]::after,
.tag-character[data-tag="coco-pommel"]::after,
.tag-character[data-tag="trenderhoof"]::after,
.tag-character[data-tag="breezies"]::after,
.tag-character[data-tag="suri-polomare"]::after,
.tag-character[data-tag="ahuizotl"]::after,
.tag-character[data-tag="seabreeze"]::after,
.tag-character[data-tag="fleetfoot"]::after,
.tag-character[data-tag="bulk-biceps"]::after,
.tag-character[data-tag="tirek"]::after,
.tag-character[data-tag="adagio-dazzle"]::after,
.tag-character[data-tag="sonata-dusk"]::after,
.tag-character[data-tag="aria-blaze"]::after,
.tag-character[data-tag="ms-harshwhinny"]::after,
.tag-character[data-tag="starlight-glimmer"]::after,
.tag-character[data-tag="ember"]::after,
.tag-character[data-tag="limestone-pie"]::after,
.tag-character[data-tag="marble-pie"]::after,
.tag-character[data-tag="moondancer"]::after,
.tag-character[data-tag="moonlight-raven"]::after,
.tag-character[data-tag="sassy-saddles"]::after,
.tag-character[data-tag="treehugger"]::after,
.tag-character[data-tag="troubleshoes"]::after,
.tag-character[data-tag="wind-rider"]::after,
.tag-character[data-tag="steven-magnet"]::after,
.tag-character[data-tag="tantabus"]::after,
.tag-character[data-tag="the-smooze"]::after,
.tag-character[data-tag="zephyr-breeze"]::after,
.tag-character[data-tag="vapor-trail"]::after,
.tag-character[data-tag="sky-stinger"]::after,
.tag-character[data-tag="saffron-masala"]::after,
.tag-character[data-tag="coriander-cumin"]::after,
.tag-character[data-tag="sunburst"]::after,
.tag-character[data-tag="mr-stripes"]::after,
.tag-character[data-tag="plaid-stripes"]::after,
.tag-character[data-tag="thorax"]::after,
.tag-character[data-tag="yaks"]::after,
.tag-character[data-tag="bat-pony"]::after,
.tag-character[data-tag="griffons"]::after,
.tag-character[data-tag="minotaur"]::after,
.tag-character[data-tag="royal-guard"]::after,
.tag-character[data-tag="zebra"]::after,
.tag-character[data-tag="dragons"]::after,
.tag-character[data-tag="twinkleshine"]::after,
.tag-character[data-tag="coloratura"]::after,
.tag-character[data-tag="gabby"]::after,
.tag-character[data-tag="spoiled-rich"]::after,
.tag-character[data-tag="sunshine-smiles"]::after,
.tag-character[data-tag="tender-taps"]::after,
.tag-character[data-tag="quibble-pants"]::after,
.tag-character[data-tag="garble"]::after,
.tag-character[data-tag="double-diamond"]::after,
.tag-character[data-tag="night-glider"]::after,
.tag-character[data-tag="sugar-belle"]::after,
.tag-character[data-tag="party-favor"]::after,
.tag-character[data-tag="timberwolves"]::after,
.tag-character[data-tag="svengallop"]::after,
.tag-character[data-tag="big-macintosh"]::after,
.tag-character[data-tag="granny-smith"]::after,
.tag-character[data-tag="braeburn"]::after,
.tag-character[data-tag="diamond-tiara"]::after,
.tag-character[data-tag="silver-spoon"]::after,
.tag-character[data-tag="twist"]::after,
.tag-character[data-tag="snips"]::after,
.tag-character[data-tag="snails"]::after,
.tag-character[data-tag="pipsqueak"]::after,
.tag-character[data-tag="featherweight"]::after,
.tag-character[data-tag="zipporwhill"]::after,
.tag-character[data-tag="ruby-pinch"]::after,
.tag-character[data-tag="angel"]::after,
.tag-character[data-tag="winona"]::after,
.tag-character[data-tag="opalescence"]::after,
.tag-character[data-tag="gummy"]::after,
.tag-character[data-tag="owlowiscious"]::after,
.tag-character[data-tag="philomena"]::after,
.tag-character[data-tag="tank"]::after,
.tag-character[data-tag="pets"]::after,
.tag-character[data-tag="derpy-hooves"]::after,
.tag-character[data-tag="lyra"]::after,
.tag-character[data-tag="bon-bon"]::after,
.tag-character[data-tag="dj-p0n-3"]::after,
.tag-character[data-tag="caramel"]::after,
.tag-character[data-tag="doctor-whooves"]::after,
.tag-character[data-tag="octavia"]::after,
.tag-character[data-tag="berry-punch"]::after,
.tag-character[data-tag="carrot-top"]::after,
.tag-character[data-tag="fleur-de-lis"]::after,
.tag-character[data-tag="colgate"]::after,
.tag-character[data-tag="dinky-hooves"]::after,
.tag-character[data-tag="thunderlane"]::after,
.tag-character[data-tag="flitter-and-cloudchaser"]::after,
.tag-character[data-tag="rumble"]::after,
.tag-character[data-tag="roseluck"]::after,
.tag-character[data-tag="changelings"]::after,
.tag-character[data-tag="noteworthy"]::after,
.tag-character[data-tag="nurse-redheart"]::after,
.tag-character[data-tag="flower-ponies"]::after,
.tag-character[data-tag="raindrops"]::after,
.tag-character[data-tag="spa-ponies"]::after,
.tag-character[data-tag="sparkler"]::after,
.tag-character[data-tag="cloudkicker"]::after,
.tag-character[data-tag="twilight-velvet"]::after,
.tag-character[data-tag="night-light"]::after,
.tag-character[data-tag="screwball"]::after,
.tag-character[data-tag="blossomforth"]::after,
.tag-character[data-tag="button-mash"]::after,
.tag-character[data-tag="cloudchaser"]::after,
.tag-character[data-tag="daisy"]::after,
.tag-character[data-tag="filthy-rich"]::after,
.tag-character[data-tag="flitter"]::after,
.tag-character[data-tag="lily"]::after,
.tag-character[data-tag="parcel-post"]::after,
.tag-character[data-tag="pony-joe"]::after,
.tag-character[data-tag="white-lightning"]::after,
.tag-character[data-tag="original-character"]::after,
.tag-character[data-tag="other"]::after,
.tag-character[data-tag="anon"]::after,
.tag-character[data-tag="self-insert"]::after,
.tag-character[data-tag="the-dazzlings"]::after,
.tag-character[data-tag="applejack-eqg"]::after,
.tag-character[data-tag="dean-cadence"]::after,
.tag-character[data-tag="indigo-zap"]::after,
.tag-character[data-tag="lemon-zest"]::after,
.tag-character[data-tag="micro-chips"]::after,
.tag-character[data-tag="midnight-sparkle"]::after,
.tag-character[data-tag="pinkie-pie-eqg"]::after,
.tag-character[data-tag="principal-cinch"]::after,
.tag-character[data-tag="rainbow-dash-eqg"]::after,
.tag-character[data-tag="principal-celestia"]::after,
.tag-character[data-tag="rarity-eqg"]::after,
.tag-character[data-tag="sandalwood"]::after,
.tag-character[data-tag="sour-sweet"]::after,
.tag-character[data-tag="spike-eqg"]::after,
.tag-character[data-tag="sugarcoat"]::after,
.tag-character[data-tag="sunny-flare"]::after,
.tag-character[data-tag="sunset-shimmer-(demon)"]::after,
.tag-character[data-tag="twilight-sparkle-eqg"]::after,
.tag-character[data-tag="vice-principal-luna"]::after,
.tag-character[data-tag="fluttershy-eqg"]::after,
.tag-character[data-tag="main-7-eqg"]::after,
.tag-character[data-tag="shadowbolts-eqg"]::after,
.tag-character[data-tag="timber-spruce"]::after,
.tag-character[data-tag="gloriosa-daisy"]::after,
.tag-character[data-tag="chancellor-puddinghead"]::after,
.tag-character[data-tag="clover-the-clever"]::after,
.tag-character[data-tag="commander-hurricane"]::after,
.tag-character[data-tag="princess-platinum"]::after,
.tag-character[data-tag="private-pansy"]::after,
.tag-character[data-tag="smart-cookie"]::after,
.tag-character[data-tag="starswirl-the-bearded"]::after,
.tag-character[data-tag="nightmare-rarity"]::after,
.tag-character[data-tag="tiberius"]::after,
.tag-character[data-tag="princess-amore"]::after,
.tag-character[data-tag="radiant-hope"]::after,
.tag-character[data-tag="tempest-shadow"]::after {
text-indent: 0;
display: block;
border: 1px solid #808080b3;
border-radius: 4px;
}
.tag-character[data-tag="twilight-sparkle"],
.tag-character[data-tag="rainbow-dash"],
.tag-character[data-tag="pinkie-pie"],
.tag-character[data-tag="applejack"],
.tag-character[data-tag="rarity"],
.tag-character[data-tag="fluttershy"],
.tag-character[data-tag="spike"],
.tag-character[data-tag="main-6"],
.tag-character[data-tag="apple-bloom"],
.tag-character[data-tag="scootaloo"],
.tag-character[data-tag="sweetie-belle"],
.tag-character[data-tag="cutie-mark-crusaders"],
.tag-character[data-tag="babs-seed"],
.tag-character[data-tag="princess-celestia"],
.tag-character[data-tag="princess-luna"],
.tag-character[data-tag="nightmare-moon"],
.tag-character[data-tag="princess-cadance"],
.tag-character[data-tag="flurry-heart"],
.tag-character[data-tag="gilda"],
.tag-character[data-tag="zecora"],
.tag-character[data-tag="trixie"],
.tag-character[data-tag="cheerilee"],
.tag-character[data-tag="the mayor"],
.tag-character[data-tag="hoity-toity"],
.tag-character[data-tag="photo-finish"],
.tag-character[data-tag="sapphire-shores"],
.tag-character[data-tag="spitfire"],
.tag-character[data-tag="soarin"],
.tag-character[data-tag="prince-blueblood"],
.tag-character[data-tag="little-strongheart"],
.tag-character[data-tag="discord"],
.tag-character[data-tag="mare-do-well"],
.tag-character[data-tag="fancypants"],
.tag-character[data-tag="daring-do"],
.tag-character[data-tag="flim-and-flam"],
.tag-character[data-tag="cranky-doodle-donkey"],
.tag-character[data-tag="matilda"],
.tag-character[data-tag="mr-cake"],
.tag-character[data-tag="mrs-cake"],
.tag-character[data-tag="iron-will"],
.tag-character[data-tag="shining-armor"],
.tag-character[data-tag="wonderbolts"],
.tag-character[data-tag="diamond-dogs"],
.tag-character[data-tag="queen-chrysalis"],
.tag-character[data-tag="king-sombra"],
.tag-character[data-tag="crystal-ponies"],
.tag-character[data-tag="lightning-dust"],
.tag-character[data-tag="sunset-shimmer"],
.tag-character[data-tag="pie-sisters"],
.tag-character[data-tag="cherry-jubilee"],
.tag-character[data-tag="cake-twins"],
.tag-character[data-tag="flash-sentry"],
.tag-character[data-tag="mane-iac"],
.tag-character[data-tag="power-ponies"],
.tag-character[data-tag="cheese-sandwich"],
.tag-character[data-tag="maud-pie"],
.tag-character[data-tag="coco-pommel"],
.tag-character[data-tag="trenderhoof"],
.tag-character[data-tag="breezies"],
.tag-character[data-tag="suri-polomare"],
.tag-character[data-tag="ahuizotl"],
.tag-character[data-tag="seabreeze"],
.tag-character[data-tag="fleetfoot"],
.tag-character[data-tag="bulk-biceps"],
.tag-character[data-tag="tirek"],
.tag-character[data-tag="adagio-dazzle"],
.tag-character[data-tag="sonata-dusk"],
.tag-character[data-tag="aria-blaze"],
.tag-character[data-tag="ms-harshwhinny"],
.tag-character[data-tag="starlight-glimmer"],
.tag-character[data-tag="ember"],
.tag-character[data-tag="limestone-pie"],
.tag-character[data-tag="marble-pie"],
.tag-character[data-tag="moondancer"],
.tag-character[data-tag="moonlight-raven"],
.tag-character[data-tag="sassy-saddles"],
.tag-character[data-tag="treehugger"],
.tag-character[data-tag="troubleshoes"],
.tag-character[data-tag="wind-rider"],
.tag-character[data-tag="steven-magnet"],
.tag-character[data-tag="tantabus"],
.tag-character[data-tag="the-smooze"],
.tag-character[data-tag="zephyr-breeze"],
.tag-character[data-tag="vapor-trail"],
.tag-character[data-tag="sky-stinger"],
.tag-character[data-tag="saffron-masala"],
.tag-character[data-tag="coriander-cumin"],
.tag-character[data-tag="sunburst"],
.tag-character[data-tag="mr-stripes"],
.tag-character[data-tag="plaid-stripes"],
.tag-character[data-tag="thorax"],
.tag-character[data-tag="yaks"],
.tag-character[data-tag="bat-pony"],
.tag-character[data-tag="griffons"],
.tag-character[data-tag="minotaur"],
.tag-character[data-tag="royal-guard"],
.tag-character[data-tag="zebra"],
.tag-character[data-tag="dragons"],
.tag-character[data-tag="twinkleshine"],
.tag-character[data-tag="coloratura"],
.tag-character[data-tag="gabby"],
.tag-character[data-tag="spoiled-rich"],
.tag-character[data-tag="sunshine-smiles"],
.tag-character[data-tag="tender-taps"],
.tag-character[data-tag="quibble-pants"],
.tag-character[data-tag="garble"],
.tag-character[data-tag="double-diamond"],
.tag-character[data-tag="night-glider"],
.tag-character[data-tag="sugar-belle"],
.tag-character[data-tag="party-favor"],
.tag-character[data-tag="timberwolves"],
.tag-character[data-tag="svengallop"],
.tag-character[data-tag="big-macintosh"],
.tag-character[data-tag="granny-smith"],
.tag-character[data-tag="braeburn"],
.tag-character[data-tag="diamond-tiara"],
.tag-character[data-tag="silver-spoon"],
.tag-character[data-tag="twist"],
.tag-character[data-tag="snips"],
.tag-character[data-tag="snails"],
.tag-character[data-tag="pipsqueak"],
.tag-character[data-tag="featherweight"],
.tag-character[data-tag="zipporwhill"],
.tag-character[data-tag="ruby-pinch"],
.tag-character[data-tag="angel"],
.tag-character[data-tag="winona"],
.tag-character[data-tag="opalescence"],
.tag-character[data-tag="gummy"],
.tag-character[data-tag="owlowiscious"],
.tag-character[data-tag="philomena"],
.tag-character[data-tag="tank"],
.tag-character[data-tag="pets"],
.tag-character[data-tag="derpy-hooves"],
.tag-character[data-tag="lyra"],
.tag-character[data-tag="bon-bon"],
.tag-character[data-tag="dj-p0n-3"],
.tag-character[data-tag="caramel"],
.tag-character[data-tag="doctor-whooves"],
.tag-character[data-tag="octavia"],
.tag-character[data-tag="berry-punch"],
.tag-character[data-tag="carrot-top"],
.tag-character[data-tag="fleur-de-lis"],
.tag-character[data-tag="colgate"],
.tag-character[data-tag="dinky-hooves"],
.tag-character[data-tag="thunderlane"],
.tag-character[data-tag="flitter-and-cloudchaser"],
.tag-character[data-tag="rumble"],
.tag-character[data-tag="roseluck"],
.tag-character[data-tag="changelings"],
.tag-character[data-tag="noteworthy"],
.tag-character[data-tag="nurse-redheart"],
.tag-character[data-tag="flower-ponies"],
.tag-character[data-tag="raindrops"],
.tag-character[data-tag="spa-ponies"],
.tag-character[data-tag="sparkler"],
.tag-character[data-tag="cloudkicker"],
.tag-character[data-tag="twilight-velvet"],
.tag-character[data-tag="night-light"],
.tag-character[data-tag="screwball"],
.tag-character[data-tag="blossomforth"],
.tag-character[data-tag="button-mash"],
.tag-character[data-tag="cloudchaser"],
.tag-character[data-tag="daisy"],
.tag-character[data-tag="filthy-rich"],
.tag-character[data-tag="flitter"],
.tag-character[data-tag="lily"],
.tag-character[data-tag="parcel-post"],
.tag-character[data-tag="pony-joe"],
.tag-character[data-tag="white-lightning"],
.tag-character[data-tag="original-character"],
.tag-character[data-tag="other"],
.tag-character[data-tag="anon"],
.tag-character[data-tag="self-insert"],
.tag-character[data-tag="the-dazzlings"],
.tag-character[data-tag="applejack eqg"],
.tag-character[data-tag="dean-cadence"],
.tag-character[data-tag="indigo-zap"],
.tag-character[data-tag="lemon-zest"],
.tag-character[data-tag="micro-chips"],
.tag-character[data-tag="midnight-sparkle"],
.tag-character[data-tag="pinkie-pie-eqg"],
.tag-character[data-tag="principal-cinch"],
.tag-character[data-tag="rainbow-dash-eqg"],
.tag-character[data-tag="principal-celestia"],
.tag-character[data-tag="rarity-eqg"],
.tag-character[data-tag="sandalwood"],
.tag-character[data-tag="sour-sweet"],
.tag-character[data-tag="spike-eqg"],
.tag-character[data-tag="sugarcoat"],
.tag-character[data-tag="sunny-flare"],
.tag-character[data-tag="sunset-shimmer-(demon)"],
.tag-character[data-tag="twilight-sparkle-eqg"],
.tag-character[data-tag="vice-principal-luna"],
.tag-character[data-tag="fluttershy-eqg"],
.tag-character[data-tag="main-7-eqg"],
.tag-character[data-tag="shadowbolts-eqg"],
.tag-character[data-tag="timber-spruce"],
.tag-character[data-tag="gloriosa-daisy"],
.tag-character[data-tag="chancellor-puddinghead"],
.tag-character[data-tag="clover-the-clever"],
.tag-character[data-tag="commander-hurricane"],
.tag-character[data-tag="princess-platinum"],
.tag-character[data-tag="private-pansy"],
.tag-character[data-tag="smart-cookie"],
.tag-character[data-tag="starswirl-the-bearded"],
.tag-character[data-tag="nightmare-rarity"],
.tag-character[data-tag="tiberius"],
.tag-character[data-tag="princess-amore"],
.tag-character[data-tag="radiant-hope"],
.tag-character[data-tag="tempest-shadow"] {
text-indent: -9999px;
line-height: 0;
display: inline-block;
}
/* Because the default green is awful */
.story-tags > li a.tag-character {
background-color: silver!important;
border: 1px solid silver;
}
} | data/usercss/143583.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("fimfiction.net") {
.tag-character[data-tag="twilight-sparkle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twilight_sparkle.png");
}
.tag-character[data-tag="rainbow-dash"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rainbow_dash.png");
}
.tag-character[data-tag="pinkie-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pinkie_pie.png");
}
.tag-character[data-tag="applejack"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/applejack.png");
}
.tag-character[data-tag="rarity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rarity.png");
}
.tag-character[data-tag="fluttershy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fluttershy.png");
}
.tag-character[data-tag="spike"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spike.png");
}
.tag-character[data-tag="main-6"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mane_6.png");
}
.tag-character[data-tag="apple-bloom"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/apple_bloom.png");
}
.tag-character[data-tag="scootaloo"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/scootaloo.png");
}
.tag-character[data-tag="sweetie-belle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sweetie_belle.png");
}
.tag-character[data-tag="cutie-mark-crusaders"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cmc.png");
}
.tag-character[data-tag="babs-seed"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/babs_seed.png");
}
.tag-character[data-tag="princess-celestia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_celestia.png");
}
.tag-character[data-tag="princess-luna"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_luna.png");
}
.tag-character[data-tag="nightmare-moon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightmare_moon.png");
}
.tag-character[data-tag="princess-cadance"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_mi_amore_cadenza.png");
}
.tag-character[data-tag="flurry-heart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flurry_heart.png");
}
.tag-character[data-tag="gilda"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gilda.png");
}
.tag-character[data-tag="zecora"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zecora.png");
}
.tag-character[data-tag="trixie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trixie.png");
}
.tag-character[data-tag="cheerilee"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cherilee.png");
}
.tag-character[data-tag="the-mayor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/the_mayor.png");
}
.tag-character[data-tag="hoity-toity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/hoity_toity.png");
}
.tag-character[data-tag="photo-finish"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/photo_finish.png");
}
.tag-character[data-tag="sapphire-shores"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sapphire_shores.png");
}
.tag-character[data-tag="spitfire"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spitfire.png");
}
.tag-character[data-tag="soarin"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/soarin.png");
}
.tag-character[data-tag="prince-blueblood"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/prince_blueblood.png");
}
.tag-character[data-tag="little-strongheart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/little_strongheart.png");
}
.tag-character[data-tag="discord"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/discord.png");
}
.tag-character[data-tag="mare-do-well"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mare_do_well.png");
}
.tag-character[data-tag="fancypants"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fancypants.png");
}
.tag-character[data-tag="daring-do"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/daring_do.png");
}
.tag-character[data-tag="flim-and-flam"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flimflam.png");
}
.tag-character[data-tag="cranky-doodle-donkey"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cranky_doodle.png");
}
.tag-character[data-tag="matilda"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/matilda.png");
}
.tag-character[data-tag="mr-cake"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mr_cake.png");
}
.tag-character[data-tag="mrs-cake"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mrs_cake.png");
}
.tag-character[data-tag="iron-will"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ironwill.png");
}
.tag-character[data-tag="shining-armor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/shining_armor.png");
}
.tag-character[data-tag="wonderbolts"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/wonderbolts.png");
}
.tag-character[data-tag="diamond-dogs"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/diamond_dogs.png");
}
.tag-character[data-tag="queen-chrysalis"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/queen_chrysalis.png");
}
.tag-character[data-tag="king-sombra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/king_sombra.png");
}
.tag-character[data-tag="crystal-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/crystal_ponies.png");
}
.tag-character[data-tag="lightning-dust"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lightning_dust.png");
}
.tag-character[data-tag="sunset-shimmer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunset_shimmer.png");
}
.tag-character[data-tag="pie-sisters"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pie_sisters.png");
}
.tag-character[data-tag="cherry-jubilee"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cherry_jubilee.png");
}
.tag-character[data-tag="cake-twins"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cake_twins.png");
}
.tag-character[data-tag="flash-sentry"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flash_sentry.png");
}
.tag-character[data-tag="mane-iac"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mane-iac.png");
}
.tag-character[data-tag="power-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/power_ponies.png");
}
.tag-character[data-tag="cheese-sandwich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cheese_sandwich.png");
}
.tag-character[data-tag="maud-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/maud_pie.png");
}
.tag-character[data-tag="coco-pommel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coco_pommel.png");
}
.tag-character[data-tag="trenderhoof"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trenderhoof.png");
}
.tag-character[data-tag="breezies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/breezies.png");
}
.tag-character[data-tag="suri-polomare"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/suri_polomare.png");
}
.tag-character[data-tag="ahuizotl"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ahuizotl.png");
}
.tag-character[data-tag="seabreeze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/seabreeze.png");
}
.tag-character[data-tag="fleetfoot"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fleetfoot.png");
}
.tag-character[data-tag="bulk-biceps"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bulk_biceps.png");
}
.tag-character[data-tag="tirek"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tirek.png");
}
.tag-character[data-tag="adagio-dazzle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_adagio_dazzle.png");
}
.tag-character[data-tag="sonata-dusk"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sonata_dusk.png");
}
.tag-character[data-tag="aria-blaze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_aria_blaze.png");
}
.tag-character[data-tag="ms-harshwhinny"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/harshwhinny.png");
}
.tag-character[data-tag="starlight-glimmer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/starlight_glimmer.png");
}
.tag-character[data-tag="ember"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ember.png");
}
.tag-character[data-tag="limestone-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/limestone_pie.png");
}
.tag-character[data-tag="marble-pie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/marble_pie.png");
}
.tag-character[data-tag="moondancer"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/moondancer.png");
}
.tag-character[data-tag="moonlight-raven"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/moonlight_raven.png");
}
.tag-character[data-tag="sassy-saddles"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sassy_saddles.png");
}
.tag-character[data-tag="treehugger"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/treehugger.png");
}
.tag-character[data-tag="troubleshoes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/trouble_shoes.png");
}
.tag-character[data-tag="wind-rider"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/wind_rider.png");
}
.tag-character[data-tag="steven-magnet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/steven_magnet.png");
}
.tag-character[data-tag="tantabus"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tantabus.png");
}
.tag-character[data-tag="the-smooze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/the_smooze.png");
}
.tag-character[data-tag="zephyr-breeze"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zephyr_breeze.png");
}
.tag-character[data-tag="vapor-trail"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/vapor_trail.png");
}
.tag-character[data-tag="sky-stinger"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sky_stinger.png");
}
.tag-character[data-tag="saffron-masala"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/saffron_masala.png");
}
.tag-character[data-tag="coriander-cumin"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coriander_cumin.png");
}
.tag-character[data-tag="sunburst"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sunburst.png");
}
.tag-character[data-tag="mr-stripes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/mr_stripes.png");
}
.tag-character[data-tag="plaid-stripes"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/plaid_stripes.png");
}
.tag-character[data-tag="thorax"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/thorax.png");
}
.tag-character[data-tag="yaks"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/yaks.png");
}
.tag-character[data-tag="bat-pony"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bat_pony.png");
}
.tag-character[data-tag="griffons"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/griffons.png");
}
.tag-character[data-tag="minotaur"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/minotaur.png");
}
.tag-character[data-tag="royal-guard"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/royal_guard.png");
}
.tag-character[data-tag="zebra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zebra.png");
}
.tag-character[data-tag="dragons"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dragons.png");
}
.tag-character[data-tag="twinkleshine"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twinkle_shine.png");
}
.tag-character[data-tag="coloratura"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/coloratura.png");
}
.tag-character[data-tag="gabby"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gabby.png");
}
.tag-character[data-tag="spoiled-rich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spoiled_rich.png");
}
.tag-character[data-tag="sunshine-smiles"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sunshine_smiles.png");
}
.tag-character[data-tag="tender-taps"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tender_taps.png");
}
.tag-character[data-tag="quibble-pants"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/quibble_pants.png");
}
.tag-character[data-tag="garble"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/garble.png");
}
.tag-character[data-tag="double-diamond"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/double_diamond.png");
}
.tag-character[data-tag="night-glider"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/night_glider.png");
}
.tag-character[data-tag="sugar-belle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sugar_belle.png");
}
.tag-character[data-tag="party-favor"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/party_favor.png");
}
.tag-character[data-tag="timberwolves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/timberwolves.png");
}
.tag-character[data-tag="svengallop"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/svengallop.png");
}
.tag-character[data-tag="big-macintosh"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/big_mac.png");
}
.tag-character[data-tag="granny-smith"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/granny_smith.png");
}
.tag-character[data-tag="braeburn"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/braeburn.png");
}
.tag-character[data-tag="diamond-tiara"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/diamond_tiara.png");
}
.tag-character[data-tag="silver-spoon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/silver_spoon.png");
}
.tag-character[data-tag="twist"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twist.png");
}
.tag-character[data-tag="snips"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/snips.png");
}
.tag-character[data-tag="snails"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/snails.png");
}
.tag-character[data-tag="pipsqueak"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pipsqueak.png");
}
.tag-character[data-tag="featherweight"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/featherweight.png");
}
.tag-character[data-tag="zipporwhill"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/zipporwhill.png");
}
.tag-character[data-tag="ruby-pinch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/ruby_pinch.png");
}
.tag-character[data-tag="angel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/angel.png");
}
.tag-character[data-tag="winona"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/winona.png");
}
.tag-character[data-tag="opalescence"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/opalescence.png");
}
.tag-character[data-tag="gummy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/gummy.png");
}
.tag-character[data-tag="owlowiscious"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/owlowiscious.png");
}
.tag-character[data-tag="philomena"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/philomena.png");
}
.tag-character[data-tag="tank"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tank.png");
}
.tag-character[data-tag="pets"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pets.png");
}
.tag-character[data-tag="derpy-hooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/derpy_hooves.png");
}
.tag-character[data-tag="lyra"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lyra.png");
}
.tag-character[data-tag="bon-bon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/bon_bon.png");
}
.tag-character[data-tag="dj-p0n-3"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dj_pon3.png");
}
.tag-character[data-tag="caramel"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/caramel.png");
}
.tag-character[data-tag="doctor-whooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/doctor_whooves.png");
}
.tag-character[data-tag="octavia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/octavia.png");
}
.tag-character[data-tag="berry-punch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/berry_punch.png");
}
.tag-character[data-tag="carrot-top"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/carrot_top.png");
}
.tag-character[data-tag="fleur-de-lis"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/fleur_de_lis.png");
}
.tag-character[data-tag="colgate"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/colgate.png");
}
.tag-character[data-tag="dinky-hooves"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/dinky.png");
}
.tag-character[data-tag="thunderlane"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/thunderlane.png");
}
.tag-character[data-tag="flitter-and-cloudchaser"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flitter_and_cloudchaser.png");
}
.tag-character[data-tag="rumble"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/rumble.png");
}
.tag-character[data-tag="roseluck"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/roseluck.png");
}
.tag-character[data-tag="changelings"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/changelings.png");
}
.tag-character[data-tag="noteworthy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/noteworthy.png");
}
.tag-character[data-tag="nurse-redheart"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nurse_red_heart.png");
}
.tag-character[data-tag="flower-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flower_ponies.png");
}
.tag-character[data-tag="raindrops"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/raindrops.png");
}
.tag-character[data-tag="spa-ponies"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/spa_ponies.png");
}
.tag-character[data-tag="sparkler"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/sparkler.png");
}
.tag-character[data-tag="cloudkicker"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cloudkicker.png");
}
.tag-character[data-tag="twilight-velvet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/twilight_velvet.png");
}
.tag-character[data-tag="night-light"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightlight.png");
}
.tag-character[data-tag="screwball"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/screwball.png");
}
.tag-character[data-tag="blossomforth"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/blossomforth.png");
}
.tag-character[data-tag="button-mash"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/button_mash.png");
}
.tag-character[data-tag="cloudchaser"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/cloud_chaser.png");
}
.tag-character[data-tag="daisy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/daisy.png");
}
.tag-character[data-tag="filthy-rich"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/filthy_rich.png");
}
.tag-character[data-tag="flitter"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/flitter.png");
}
.tag-character[data-tag="lily"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/lily.png");
}
.tag-character[data-tag="parcel-post"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/parcel_post.png");
}
.tag-character[data-tag="pony-joe"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/pony_joe.png");
}
.tag-character[data-tag="white-lightning"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/white_lightning.png");
}
.tag-character[data-tag="original-character"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/oc.png");
}
.tag-character[data-tag="other"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/other.png");
}
.tag-character[data-tag="anon"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/anon.png");
}
.tag-character[data-tag="self-insert"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/self_insert.png");
}
.tag-character[data-tag="the-dazzlings"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_the_dazzlings.png");
}
.tag-character[data-tag="applejack-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_applejack.png");
}
.tag-character[data-tag="dean-cadence"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_dean_cadance.png");
}
.tag-character[data-tag="indigo-zap"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_indigo_zap.png");
}
.tag-character[data-tag="lemon-zest"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_lemon_zest.png");
}
.tag-character[data-tag="micro-chips"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_micro_chips.png");
}
.tag-character[data-tag="midnight-sparkle"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_midnight_sparkle.png");
}
.tag-character[data-tag="pinkie-pie-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_pinkie_pie.png");
}
.tag-character[data-tag="principal-cinch"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_principal_cinch.png");
}
.tag-character[data-tag="rainbow-dash-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_rainbow_dash.png");
}
.tag-character[data-tag="principal-celestia"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_principal_celestia.png");
}
.tag-character[data-tag="rarity-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_rarity.png");
}
.tag-character[data-tag="sandalwood"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sandalwood.png");
}
.tag-character[data-tag="sour-sweet"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sour_sweet.png");
}
.tag-character[data-tag="spike-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_spike.png");
}
.tag-character[data-tag="sugarcoat"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sugarcoat.png");
}
.tag-character[data-tag="sunny-flare"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunny_flare.png");
}
.tag-character[data-tag="sunset-shimmer-(demon)"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_sunset_shimmer_demon.png");
}
.tag-character[data-tag="twilight-sparkle-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_twilight_sparkle.png");
}
.tag-character[data-tag="vice-principal-luna"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_vp_luna.png");
}
.tag-character[data-tag="fluttershy-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_fluttershy.png");
}
.tag-character[data-tag="main-7-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_mane_7.png");
}
.tag-character[data-tag="shadowbolts-eqg"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_shadowbolts.png");
}
.tag-character[data-tag="timber-spruce"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_timber_spruce.png");
}
.tag-character[data-tag="gloriosa-daisy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/eg_gloriosa_daisy.png");
}
.tag-character[data-tag="chancellor-puddinghead"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/chancellor_puddinghead.png");
}
.tag-character[data-tag="clover-the-clever"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/clover_the_clever.png");
}
.tag-character[data-tag="commander-hurricane"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/commander_hurricane.png");
}
.tag-character[data-tag="princess-platinum"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_platinum.png");
}
.tag-character[data-tag="private-pansy"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/private_pansy.png");
}
.tag-character[data-tag="smart-cookie"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/smart_cookie.png");
}
.tag-character[data-tag="starswirl-the-bearded"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/starswirl_the_bearded.png");
}
.tag-character[data-tag="nightmare-rarity"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/nightmare_rarity.png");
}
.tag-character[data-tag="tiberius"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/tiberius.png");
}
.tag-character[data-tag="princess-amore"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/princess_amore.png");
}
.tag-character[data-tag="radiant-hope"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/radiant_hope.png");
}
.tag-character[data-tag="tempest-shadow"]::after {
content: url("https://wikipedia.sexy/fimfic/char-icons/temtam.png");
}
.tag-character[data-tag="twilight-sparkle"]::after,
.tag-character[data-tag="rainbow-dash"]::after,
.tag-character[data-tag="pinkie-pie"]::after,
.tag-character[data-tag="applejack"]::after,
.tag-character[data-tag="rarity"]::after,
.tag-character[data-tag="fluttershy"]::after,
.tag-character[data-tag="spike"]::after,
.tag-character[data-tag="main-6"]::after,
.tag-character[data-tag="apple-bloom"]::after,
.tag-character[data-tag="scootaloo"]::after,
.tag-character[data-tag="sweetie-belle"]::after,
.tag-character[data-tag="cutie-mark-crusaders"]::after,
.tag-character[data-tag="babs-seed"]::after,
.tag-character[data-tag="princess-celestia"]::after,
.tag-character[data-tag="princess-luna"]::after,
.tag-character[data-tag="nightmare-moon"]::after,
.tag-character[data-tag="princess-cadance"]::after,
.tag-character[data-tag="flurry-heart"]::after,
.tag-character[data-tag="gilda"]::after,
.tag-character[data-tag="zecora"]::after,
.tag-character[data-tag="trixie"]::after,
.tag-character[data-tag="cheerilee"]::after,
.tag-character[data-tag="the mayor"]::after,
.tag-character[data-tag="hoity-toity"]::after,
.tag-character[data-tag="photo-finish"]::after,
.tag-character[data-tag="sapphire-shores"]::after,
.tag-character[data-tag="spitfire"]::after,
.tag-character[data-tag="soarin"]::after,
.tag-character[data-tag="prince-blueblood"]::after,
.tag-character[data-tag="little-strongheart"]::after,
.tag-character[data-tag="discord"]::after,
.tag-character[data-tag="mare-do-well"]::after,
.tag-character[data-tag="fancypants"]::after,
.tag-character[data-tag="daring-do"]::after,
.tag-character[data-tag="flim-and-flam"]::after,
.tag-character[data-tag="cranky-doodle-donkey"]::after,
.tag-character[data-tag="matilda"]::after,
.tag-character[data-tag="mr-cake"]::after,
.tag-character[data-tag="mrs-cake"]::after,
.tag-character[data-tag="iron-will"]::after,
.tag-character[data-tag="shining-armor"]::after,
.tag-character[data-tag="wonderbolts"]::after,
.tag-character[data-tag="diamond-dogs"]::after,
.tag-character[data-tag="queen-chrysalis"]::after,
.tag-character[data-tag="king-sombra"]::after,
.tag-character[data-tag="crystal-ponies"]::after,
.tag-character[data-tag="lightning-dust"]::after,
.tag-character[data-tag="sunset-shimmer"]::after,
.tag-character[data-tag="pie-sisters"]::after,
.tag-character[data-tag="cherry-jubilee"]::after,
.tag-character[data-tag="cake-twins"]::after,
.tag-character[data-tag="flash-sentry"]::after,
.tag-character[data-tag="mane-iac"]::after,
.tag-character[data-tag="power-ponies"]::after,
.tag-character[data-tag="cheese-sandwich"]::after,
.tag-character[data-tag="maud-pie"]::after,
.tag-character[data-tag="coco-pommel"]::after,
.tag-character[data-tag="trenderhoof"]::after,
.tag-character[data-tag="breezies"]::after,
.tag-character[data-tag="suri-polomare"]::after,
.tag-character[data-tag="ahuizotl"]::after,
.tag-character[data-tag="seabreeze"]::after,
.tag-character[data-tag="fleetfoot"]::after,
.tag-character[data-tag="bulk-biceps"]::after,
.tag-character[data-tag="tirek"]::after,
.tag-character[data-tag="adagio-dazzle"]::after,
.tag-character[data-tag="sonata-dusk"]::after,
.tag-character[data-tag="aria-blaze"]::after,
.tag-character[data-tag="ms-harshwhinny"]::after,
.tag-character[data-tag="starlight-glimmer"]::after,
.tag-character[data-tag="ember"]::after,
.tag-character[data-tag="limestone-pie"]::after,
.tag-character[data-tag="marble-pie"]::after,
.tag-character[data-tag="moondancer"]::after,
.tag-character[data-tag="moonlight-raven"]::after,
.tag-character[data-tag="sassy-saddles"]::after,
.tag-character[data-tag="treehugger"]::after,
.tag-character[data-tag="troubleshoes"]::after,
.tag-character[data-tag="wind-rider"]::after,
.tag-character[data-tag="steven-magnet"]::after,
.tag-character[data-tag="tantabus"]::after,
.tag-character[data-tag="the-smooze"]::after,
.tag-character[data-tag="zephyr-breeze"]::after,
.tag-character[data-tag="vapor-trail"]::after,
.tag-character[data-tag="sky-stinger"]::after,
.tag-character[data-tag="saffron-masala"]::after,
.tag-character[data-tag="coriander-cumin"]::after,
.tag-character[data-tag="sunburst"]::after,
.tag-character[data-tag="mr-stripes"]::after,
.tag-character[data-tag="plaid-stripes"]::after,
.tag-character[data-tag="thorax"]::after,
.tag-character[data-tag="yaks"]::after,
.tag-character[data-tag="bat-pony"]::after,
.tag-character[data-tag="griffons"]::after,
.tag-character[data-tag="minotaur"]::after,
.tag-character[data-tag="royal-guard"]::after,
.tag-character[data-tag="zebra"]::after,
.tag-character[data-tag="dragons"]::after,
.tag-character[data-tag="twinkleshine"]::after,
.tag-character[data-tag="coloratura"]::after,
.tag-character[data-tag="gabby"]::after,
.tag-character[data-tag="spoiled-rich"]::after,
.tag-character[data-tag="sunshine-smiles"]::after,
.tag-character[data-tag="tender-taps"]::after,
.tag-character[data-tag="quibble-pants"]::after,
.tag-character[data-tag="garble"]::after,
.tag-character[data-tag="double-diamond"]::after,
.tag-character[data-tag="night-glider"]::after,
.tag-character[data-tag="sugar-belle"]::after,
.tag-character[data-tag="party-favor"]::after,
.tag-character[data-tag="timberwolves"]::after,
.tag-character[data-tag="svengallop"]::after,
.tag-character[data-tag="big-macintosh"]::after,
.tag-character[data-tag="granny-smith"]::after,
.tag-character[data-tag="braeburn"]::after,
.tag-character[data-tag="diamond-tiara"]::after,
.tag-character[data-tag="silver-spoon"]::after,
.tag-character[data-tag="twist"]::after,
.tag-character[data-tag="snips"]::after,
.tag-character[data-tag="snails"]::after,
.tag-character[data-tag="pipsqueak"]::after,
.tag-character[data-tag="featherweight"]::after,
.tag-character[data-tag="zipporwhill"]::after,
.tag-character[data-tag="ruby-pinch"]::after,
.tag-character[data-tag="angel"]::after,
.tag-character[data-tag="winona"]::after,
.tag-character[data-tag="opalescence"]::after,
.tag-character[data-tag="gummy"]::after,
.tag-character[data-tag="owlowiscious"]::after,
.tag-character[data-tag="philomena"]::after,
.tag-character[data-tag="tank"]::after,
.tag-character[data-tag="pets"]::after,
.tag-character[data-tag="derpy-hooves"]::after,
.tag-character[data-tag="lyra"]::after,
.tag-character[data-tag="bon-bon"]::after,
.tag-character[data-tag="dj-p0n-3"]::after,
.tag-character[data-tag="caramel"]::after,
.tag-character[data-tag="doctor-whooves"]::after,
.tag-character[data-tag="octavia"]::after,
.tag-character[data-tag="berry-punch"]::after,
.tag-character[data-tag="carrot-top"]::after,
.tag-character[data-tag="fleur-de-lis"]::after,
.tag-character[data-tag="colgate"]::after,
.tag-character[data-tag="dinky-hooves"]::after,
.tag-character[data-tag="thunderlane"]::after,
.tag-character[data-tag="flitter-and-cloudchaser"]::after,
.tag-character[data-tag="rumble"]::after,
.tag-character[data-tag="roseluck"]::after,
.tag-character[data-tag="changelings"]::after,
.tag-character[data-tag="noteworthy"]::after,
.tag-character[data-tag="nurse-redheart"]::after,
.tag-character[data-tag="flower-ponies"]::after,
.tag-character[data-tag="raindrops"]::after,
.tag-character[data-tag="spa-ponies"]::after,
.tag-character[data-tag="sparkler"]::after,
.tag-character[data-tag="cloudkicker"]::after,
.tag-character[data-tag="twilight-velvet"]::after,
.tag-character[data-tag="night-light"]::after,
.tag-character[data-tag="screwball"]::after,
.tag-character[data-tag="blossomforth"]::after,
.tag-character[data-tag="button-mash"]::after,
.tag-character[data-tag="cloudchaser"]::after,
.tag-character[data-tag="daisy"]::after,
.tag-character[data-tag="filthy-rich"]::after,
.tag-character[data-tag="flitter"]::after,
.tag-character[data-tag="lily"]::after,
.tag-character[data-tag="parcel-post"]::after,
.tag-character[data-tag="pony-joe"]::after,
.tag-character[data-tag="white-lightning"]::after,
.tag-character[data-tag="original-character"]::after,
.tag-character[data-tag="other"]::after,
.tag-character[data-tag="anon"]::after,
.tag-character[data-tag="self-insert"]::after,
.tag-character[data-tag="the-dazzlings"]::after,
.tag-character[data-tag="applejack-eqg"]::after,
.tag-character[data-tag="dean-cadence"]::after,
.tag-character[data-tag="indigo-zap"]::after,
.tag-character[data-tag="lemon-zest"]::after,
.tag-character[data-tag="micro-chips"]::after,
.tag-character[data-tag="midnight-sparkle"]::after,
.tag-character[data-tag="pinkie-pie-eqg"]::after,
.tag-character[data-tag="principal-cinch"]::after,
.tag-character[data-tag="rainbow-dash-eqg"]::after,
.tag-character[data-tag="principal-celestia"]::after,
.tag-character[data-tag="rarity-eqg"]::after,
.tag-character[data-tag="sandalwood"]::after,
.tag-character[data-tag="sour-sweet"]::after,
.tag-character[data-tag="spike-eqg"]::after,
.tag-character[data-tag="sugarcoat"]::after,
.tag-character[data-tag="sunny-flare"]::after,
.tag-character[data-tag="sunset-shimmer-(demon)"]::after,
.tag-character[data-tag="twilight-sparkle-eqg"]::after,
.tag-character[data-tag="vice-principal-luna"]::after,
.tag-character[data-tag="fluttershy-eqg"]::after,
.tag-character[data-tag="main-7-eqg"]::after,
.tag-character[data-tag="shadowbolts-eqg"]::after,
.tag-character[data-tag="timber-spruce"]::after,
.tag-character[data-tag="gloriosa-daisy"]::after,
.tag-character[data-tag="chancellor-puddinghead"]::after,
.tag-character[data-tag="clover-the-clever"]::after,
.tag-character[data-tag="commander-hurricane"]::after,
.tag-character[data-tag="princess-platinum"]::after,
.tag-character[data-tag="private-pansy"]::after,
.tag-character[data-tag="smart-cookie"]::after,
.tag-character[data-tag="starswirl-the-bearded"]::after,
.tag-character[data-tag="nightmare-rarity"]::after,
.tag-character[data-tag="tiberius"]::after,
.tag-character[data-tag="princess-amore"]::after,
.tag-character[data-tag="radiant-hope"]::after,
.tag-character[data-tag="tempest-shadow"]::after {
text-indent: 0;
display: block;
border: 1px solid #808080b3;
border-radius: 4px;
}
.tag-character[data-tag="twilight-sparkle"],
.tag-character[data-tag="rainbow-dash"],
.tag-character[data-tag="pinkie-pie"],
.tag-character[data-tag="applejack"],
.tag-character[data-tag="rarity"],
.tag-character[data-tag="fluttershy"],
.tag-character[data-tag="spike"],
.tag-character[data-tag="main-6"],
.tag-character[data-tag="apple-bloom"],
.tag-character[data-tag="scootaloo"],
.tag-character[data-tag="sweetie-belle"],
.tag-character[data-tag="cutie-mark-crusaders"],
.tag-character[data-tag="babs-seed"],
.tag-character[data-tag="princess-celestia"],
.tag-character[data-tag="princess-luna"],
.tag-character[data-tag="nightmare-moon"],
.tag-character[data-tag="princess-cadance"],
.tag-character[data-tag="flurry-heart"],
.tag-character[data-tag="gilda"],
.tag-character[data-tag="zecora"],
.tag-character[data-tag="trixie"],
.tag-character[data-tag="cheerilee"],
.tag-character[data-tag="the mayor"],
.tag-character[data-tag="hoity-toity"],
.tag-character[data-tag="photo-finish"],
.tag-character[data-tag="sapphire-shores"],
.tag-character[data-tag="spitfire"],
.tag-character[data-tag="soarin"],
.tag-character[data-tag="prince-blueblood"],
.tag-character[data-tag="little-strongheart"],
.tag-character[data-tag="discord"],
.tag-character[data-tag="mare-do-well"],
.tag-character[data-tag="fancypants"],
.tag-character[data-tag="daring-do"],
.tag-character[data-tag="flim-and-flam"],
.tag-character[data-tag="cranky-doodle-donkey"],
.tag-character[data-tag="matilda"],
.tag-character[data-tag="mr-cake"],
.tag-character[data-tag="mrs-cake"],
.tag-character[data-tag="iron-will"],
.tag-character[data-tag="shining-armor"],
.tag-character[data-tag="wonderbolts"],
.tag-character[data-tag="diamond-dogs"],
.tag-character[data-tag="queen-chrysalis"],
.tag-character[data-tag="king-sombra"],
.tag-character[data-tag="crystal-ponies"],
.tag-character[data-tag="lightning-dust"],
.tag-character[data-tag="sunset-shimmer"],
.tag-character[data-tag="pie-sisters"],
.tag-character[data-tag="cherry-jubilee"],
.tag-character[data-tag="cake-twins"],
.tag-character[data-tag="flash-sentry"],
.tag-character[data-tag="mane-iac"],
.tag-character[data-tag="power-ponies"],
.tag-character[data-tag="cheese-sandwich"],
.tag-character[data-tag="maud-pie"],
.tag-character[data-tag="coco-pommel"],
.tag-character[data-tag="trenderhoof"],
.tag-character[data-tag="breezies"],
.tag-character[data-tag="suri-polomare"],
.tag-character[data-tag="ahuizotl"],
.tag-character[data-tag="seabreeze"],
.tag-character[data-tag="fleetfoot"],
.tag-character[data-tag="bulk-biceps"],
.tag-character[data-tag="tirek"],
.tag-character[data-tag="adagio-dazzle"],
.tag-character[data-tag="sonata-dusk"],
.tag-character[data-tag="aria-blaze"],
.tag-character[data-tag="ms-harshwhinny"],
.tag-character[data-tag="starlight-glimmer"],
.tag-character[data-tag="ember"],
.tag-character[data-tag="limestone-pie"],
.tag-character[data-tag="marble-pie"],
.tag-character[data-tag="moondancer"],
.tag-character[data-tag="moonlight-raven"],
.tag-character[data-tag="sassy-saddles"],
.tag-character[data-tag="treehugger"],
.tag-character[data-tag="troubleshoes"],
.tag-character[data-tag="wind-rider"],
.tag-character[data-tag="steven-magnet"],
.tag-character[data-tag="tantabus"],
.tag-character[data-tag="the-smooze"],
.tag-character[data-tag="zephyr-breeze"],
.tag-character[data-tag="vapor-trail"],
.tag-character[data-tag="sky-stinger"],
.tag-character[data-tag="saffron-masala"],
.tag-character[data-tag="coriander-cumin"],
.tag-character[data-tag="sunburst"],
.tag-character[data-tag="mr-stripes"],
.tag-character[data-tag="plaid-stripes"],
.tag-character[data-tag="thorax"],
.tag-character[data-tag="yaks"],
.tag-character[data-tag="bat-pony"],
.tag-character[data-tag="griffons"],
.tag-character[data-tag="minotaur"],
.tag-character[data-tag="royal-guard"],
.tag-character[data-tag="zebra"],
.tag-character[data-tag="dragons"],
.tag-character[data-tag="twinkleshine"],
.tag-character[data-tag="coloratura"],
.tag-character[data-tag="gabby"],
.tag-character[data-tag="spoiled-rich"],
.tag-character[data-tag="sunshine-smiles"],
.tag-character[data-tag="tender-taps"],
.tag-character[data-tag="quibble-pants"],
.tag-character[data-tag="garble"],
.tag-character[data-tag="double-diamond"],
.tag-character[data-tag="night-glider"],
.tag-character[data-tag="sugar-belle"],
.tag-character[data-tag="party-favor"],
.tag-character[data-tag="timberwolves"],
.tag-character[data-tag="svengallop"],
.tag-character[data-tag="big-macintosh"],
.tag-character[data-tag="granny-smith"],
.tag-character[data-tag="braeburn"],
.tag-character[data-tag="diamond-tiara"],
.tag-character[data-tag="silver-spoon"],
.tag-character[data-tag="twist"],
.tag-character[data-tag="snips"],
.tag-character[data-tag="snails"],
.tag-character[data-tag="pipsqueak"],
.tag-character[data-tag="featherweight"],
.tag-character[data-tag="zipporwhill"],
.tag-character[data-tag="ruby-pinch"],
.tag-character[data-tag="angel"],
.tag-character[data-tag="winona"],
.tag-character[data-tag="opalescence"],
.tag-character[data-tag="gummy"],
.tag-character[data-tag="owlowiscious"],
.tag-character[data-tag="philomena"],
.tag-character[data-tag="tank"],
.tag-character[data-tag="pets"],
.tag-character[data-tag="derpy-hooves"],
.tag-character[data-tag="lyra"],
.tag-character[data-tag="bon-bon"],
.tag-character[data-tag="dj-p0n-3"],
.tag-character[data-tag="caramel"],
.tag-character[data-tag="doctor-whooves"],
.tag-character[data-tag="octavia"],
.tag-character[data-tag="berry-punch"],
.tag-character[data-tag="carrot-top"],
.tag-character[data-tag="fleur-de-lis"],
.tag-character[data-tag="colgate"],
.tag-character[data-tag="dinky-hooves"],
.tag-character[data-tag="thunderlane"],
.tag-character[data-tag="flitter-and-cloudchaser"],
.tag-character[data-tag="rumble"],
.tag-character[data-tag="roseluck"],
.tag-character[data-tag="changelings"],
.tag-character[data-tag="noteworthy"],
.tag-character[data-tag="nurse-redheart"],
.tag-character[data-tag="flower-ponies"],
.tag-character[data-tag="raindrops"],
.tag-character[data-tag="spa-ponies"],
.tag-character[data-tag="sparkler"],
.tag-character[data-tag="cloudkicker"],
.tag-character[data-tag="twilight-velvet"],
.tag-character[data-tag="night-light"],
.tag-character[data-tag="screwball"],
.tag-character[data-tag="blossomforth"],
.tag-character[data-tag="button-mash"],
.tag-character[data-tag="cloudchaser"],
.tag-character[data-tag="daisy"],
.tag-character[data-tag="filthy-rich"],
.tag-character[data-tag="flitter"],
.tag-character[data-tag="lily"],
.tag-character[data-tag="parcel-post"],
.tag-character[data-tag="pony-joe"],
.tag-character[data-tag="white-lightning"],
.tag-character[data-tag="original-character"],
.tag-character[data-tag="other"],
.tag-character[data-tag="anon"],
.tag-character[data-tag="self-insert"],
.tag-character[data-tag="the-dazzlings"],
.tag-character[data-tag="applejack eqg"],
.tag-character[data-tag="dean-cadence"],
.tag-character[data-tag="indigo-zap"],
.tag-character[data-tag="lemon-zest"],
.tag-character[data-tag="micro-chips"],
.tag-character[data-tag="midnight-sparkle"],
.tag-character[data-tag="pinkie-pie-eqg"],
.tag-character[data-tag="principal-cinch"],
.tag-character[data-tag="rainbow-dash-eqg"],
.tag-character[data-tag="principal-celestia"],
.tag-character[data-tag="rarity-eqg"],
.tag-character[data-tag="sandalwood"],
.tag-character[data-tag="sour-sweet"],
.tag-character[data-tag="spike-eqg"],
.tag-character[data-tag="sugarcoat"],
.tag-character[data-tag="sunny-flare"],
.tag-character[data-tag="sunset-shimmer-(demon)"],
.tag-character[data-tag="twilight-sparkle-eqg"],
.tag-character[data-tag="vice-principal-luna"],
.tag-character[data-tag="fluttershy-eqg"],
.tag-character[data-tag="main-7-eqg"],
.tag-character[data-tag="shadowbolts-eqg"],
.tag-character[data-tag="timber-spruce"],
.tag-character[data-tag="gloriosa-daisy"],
.tag-character[data-tag="chancellor-puddinghead"],
.tag-character[data-tag="clover-the-clever"],
.tag-character[data-tag="commander-hurricane"],
.tag-character[data-tag="princess-platinum"],
.tag-character[data-tag="private-pansy"],
.tag-character[data-tag="smart-cookie"],
.tag-character[data-tag="starswirl-the-bearded"],
.tag-character[data-tag="nightmare-rarity"],
.tag-character[data-tag="tiberius"],
.tag-character[data-tag="princess-amore"],
.tag-character[data-tag="radiant-hope"],
.tag-character[data-tag="tempest-shadow"] {
text-indent: -9999px;
line-height: 0;
display: inline-block;
}
/* Because the default green is awful */
.story-tags > li a.tag-character {
background-color: silver!important;
border: 1px solid silver;
}
} | 0.531453 | 0.321487 |
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&display=swap');
body{
background: #f2f2f2;
display: flex;
flex-direction: column;
align-items: center;
}
.container{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
height: 400px;
width: 600px;
background: #f2f2f2;
overflow: hidden;
border-radius: 20px;
cursor: pointer;
box-shadow: 0px 0px 20px 8px #d0d0d0;
}
.content{
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: justify;
color: black;
padding: 40px;
font-family: 'Merriweather',sans-serif;
}
h1{
font-weight: 900;
text-align: center;
}
h3{
font-weight: 300;
}
.flap{
width: 100%;
height: 100%;
}
.flap::before{
position: absolute;
content: '';
height: 100%;
width: 50%;
background: white;
background-position: 100px;
background-repeat: no-repeat;
transition: 1s;
}
.flap::after{
position: absolute;
content: '';
height: 100%;
width: 50%;
right: 0;
background: white;
background-position: -200px;
background-repeat: no-repeat;
transition: 1s;
}
.container:hover .flap::after{
transform: translateX(300px);
}
.container:hover .flap::before{
transform: translateX(-300px);
}
/*Barra de Navegação*/
.nav {
display: flex;
align-content: center;
position: fixed;
bottom: 0;
left: auto;
}
.nav .icon{
position: relative;
background-color: #ffffff;
border-radius: 50%;
padding: 15px;
margin: 10px;
width: 50px;
height: 50px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .tooltip{
z-index: 1000;
position: absolute;
top: 0;
font-size: 14px;
background-color: #ffffff;
color: #ffffff;
padding: 5px 8px;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
pointer-events: none;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .icon:hover .tooltip{
top: -45px;
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav .tooltip::before{
position: absolute;
content: "";
height: 8px;
width: 8px;
background-color: #ffffff;
bottom: -3px;
left: 50%;
transform: translate(-50%) rotate(45deg);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);/*Pesquisar Cubic-Bezier*/
}
.nav a{
color: #050801;
}
.nav .icon:hover a,
.nav .icon:hover .tooltip{
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.nav .back:hover,
.nav .back:hover .tooltip,
.nav .back:hover .tooltip::before{
background-color: #3b00df;
color: #ffffff;
}
.nav .home:hover,
.nav .home:hover .tooltip,
.nav .home:hover .tooltip::before{
background-color: #0060df;
color: #ffffff;
}
.nav .next:hover,
.nav .next:hover .tooltip,
.nav .next:hover .tooltip::before{
background-color: #009fc7;
color: #ffffff;
} | Desafios/Dia_17/estilos.css | @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&display=swap');
body{
background: #f2f2f2;
display: flex;
flex-direction: column;
align-items: center;
}
.container{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
height: 400px;
width: 600px;
background: #f2f2f2;
overflow: hidden;
border-radius: 20px;
cursor: pointer;
box-shadow: 0px 0px 20px 8px #d0d0d0;
}
.content{
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: justify;
color: black;
padding: 40px;
font-family: 'Merriweather',sans-serif;
}
h1{
font-weight: 900;
text-align: center;
}
h3{
font-weight: 300;
}
.flap{
width: 100%;
height: 100%;
}
.flap::before{
position: absolute;
content: '';
height: 100%;
width: 50%;
background: white;
background-position: 100px;
background-repeat: no-repeat;
transition: 1s;
}
.flap::after{
position: absolute;
content: '';
height: 100%;
width: 50%;
right: 0;
background: white;
background-position: -200px;
background-repeat: no-repeat;
transition: 1s;
}
.container:hover .flap::after{
transform: translateX(300px);
}
.container:hover .flap::before{
transform: translateX(-300px);
}
/*Barra de Navegação*/
.nav {
display: flex;
align-content: center;
position: fixed;
bottom: 0;
left: auto;
}
.nav .icon{
position: relative;
background-color: #ffffff;
border-radius: 50%;
padding: 15px;
margin: 10px;
width: 50px;
height: 50px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .tooltip{
z-index: 1000;
position: absolute;
top: 0;
font-size: 14px;
background-color: #ffffff;
color: #ffffff;
padding: 5px 8px;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
pointer-events: none;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .icon:hover .tooltip{
top: -45px;
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav .tooltip::before{
position: absolute;
content: "";
height: 8px;
width: 8px;
background-color: #ffffff;
bottom: -3px;
left: 50%;
transform: translate(-50%) rotate(45deg);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);/*Pesquisar Cubic-Bezier*/
}
.nav a{
color: #050801;
}
.nav .icon:hover a,
.nav .icon:hover .tooltip{
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.nav .back:hover,
.nav .back:hover .tooltip,
.nav .back:hover .tooltip::before{
background-color: #3b00df;
color: #ffffff;
}
.nav .home:hover,
.nav .home:hover .tooltip,
.nav .home:hover .tooltip::before{
background-color: #0060df;
color: #ffffff;
}
.nav .next:hover,
.nav .next:hover .tooltip,
.nav .next:hover .tooltip::before{
background-color: #009fc7;
color: #ffffff;
} | 0.49048 | 0.101634 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
width: 100%;
height: auto;
display: block;
}
/* header */
.wrapper__header {
max-width: 1200px;
height: 66px;
margin: 0 auto;
}
.header {
width: 100%;
}
.header_nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 86px;
height: 24px;
}
.menu {
/* width: 490px;
height: 66px; */
display: flex;
/* justify-content: space-between; */
/* align-items: flex-end; */
margin-top: 30px;
}
.menu__link {
text-transform: uppercase;
text-decoration: none;
font-size: 14px;
color: #95e1d3;
font-family: "Montserrat";
transition: color 200ms linear;
}
.nav__link:not(:first-of-type) {
margin-left: 43px;
}
.rotatate {
animation: logo__app 5s ease-in-out;
}
@keyframes logo__app {
0% {
transform: translateY(-200px);
opacity: 0;
}
25% {
opacity: 1;
transform: translateY(600px);
box-shadow: -19px -153px 300px 100px rgba(39, 175, 209, 1);
}
50% {
transform: translateY(0);
opacity: 1;
transform: rotate(0);
box-shadow: 14px 200px 186px 30px rgba(39, 175, 209, 1);
}
75% {
transform: rotate(180deg);
box-shadow: 14px 196px 178px -22px rgba(39, 175, 209, 1);
}
100% {
transform: rotate(-360deg);
}
}
.menu__link:hover {
color: #f38181;
}
.menu__link::after {
display: block;
content: "";
width: 100%;
height: 3px;
background-color: #f38181;
margin-top: 12px;
opacity: 0;
}
.nav__link:hover .menu__link,
.nav__link:focus {
color: #f38181;
}
.nav__link:hover .menu__link::after,
.nav__link:focus::after {
opacity: 1;
}
/* MAIN */
/* servise */
.servise__wrapper {
max-width: 1150px;
margin: 0 auto;
margin-top: 64px;
}
.service__subtittle {
font-size: 24px;
color: #333333;
font-family: "Kaushan Script";
font-weight: 400;
text-align: center;
}
.service__title {
font-size: 30px;
color: #333333;
font-family: "Montserrat";
font-weight: 700;
text-align: center;
margin-top: 12px;
text-transform: uppercase;
}
.service__title::after {
display: block;
content: "";
width: 60px;
height: 3px;
background-color: #f38181;
margin: 0 auto;
margin-top: 22px;
}
/* icon__ul */
.icon {
height: 34px;
width: auto;
}
.icon__li {
max-width: 350px;
display: flex;
justify-content: space-between;
}
.content__title {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
text-transform: uppercase;
margin-bottom: 10px;
}
.content {
padding-left: 46px;
}
.icon__p {
width: 290px;
height: 81px;
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 400;
}
.icon__ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 56px;
}
.icon__li:nth-child(-n + 3) {
margin-bottom: 50px;
}
.clock {
background-image: url(../icon/alarm-clock-icon.png);
background-repeat: no-repeat;
}
.line-graph {
background-image: url(../icon/line-graph-icon.png);
background-repeat: no-repeat;
}
.computer {
background-image: url(../icon/computer-icon.png);
background-repeat: no-repeat;
}
.book {
background-image: url(../icon/book-icon.png);
background-repeat: no-repeat;
}
.home {
background-image: url(../icon/home-icon.png);
background-repeat: no-repeat;
}
.digital {
background-image: url(../icon/digital-icon.png);
background-repeat: no-repeat;
}
/* our__team */
.our__team__wrapper {
max-width: 1200px;
margin: 0 auto;
margin-top: 46px;
}
.our__team__p {
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 400;
text-align: center;
margin: 0 auto;
max-width: 960px;
margin-top: 68px;
}
.wrapper__team {
max-width: 1200px;
margin: 0 auto;
margin-top: 68px;
}
.team {
width: 380px;
height: 470px;
position: relative;
}
.our__team__photo {
display: flex;
justify-content: space-between;
}
.team__title {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
text-align: center;
margin-top: 16px;
}
.team__subtitle {
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 300;
font-style: italic;
text-align: center;
margin-top: 8px;
}
.overlay {
width: 100%;
height: 100%;
/* background-color: #95e1d3; */
position: absolute;
background-image: linear-gradient(
to bottom,
rgba(239, 139, 138, 0.8),
rgba(241, 215, 135, 0.6)
);
font-size: 0;
opacity: 0;
background-repeat: no-repeat;
background-position: center;
transition: opacity 200ms linear, box-shadow 200ms linear,
transform 200ms linear;
}
.overlay__icon__ul {
width: 234px;
display: flex;
justify-content: space-between;
margin-left: 72px;
margin-top: 205px;
}
.overlay__icon {
height: 57px;
width: 57px;
background-color: #fce38a;
display: inline-block;
background-position: center;
}
.overlay__icon:hover {
background-color: #95e1d3;
}
.facebook {
background-image: url(../icon/facebook-icon.png);
background-repeat: no-repeat;
}
.twitter {
background-image: url(../icon/twitter-icon.png);
background-repeat: no-repeat;
}
.pinterest {
background-image: url(../icon/pinterest-icon.png);
background-repeat: no-repeat;
}
.instagram {
background-image: url(../icon/instagram-icon.png);
background-repeat: no-repeat;
}
.overlay:hover {
opacity: 1;
box-shadow: 10px 10px 0px 0 rgba(149, 225, 211, 0.76);
transform: translate(-10px, -10px);
z-index: 1;
transition: transform 200ms linear;
}
/* footer */
.wrapper__footer {
margin: 0 auto;
width: 1200px;
height: 54px;
margin-top: 114px;
margin-bottom: 8px;
}
.footer::before {
display: block;
content: "";
height: 2px;
background-color: #e5e5e5;
}
.info p {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
}
.info a {
font-size: 14px;
color: #f7aeae;
font-family: "Montserrat";
font-weight: 400;
text-decoration: none;
}
input[type="email"] {
width: 230px;
height: 40px;
font-size: 15px;
line-height: 24px;
color: #cccccc;
font-family: "Roboto";
font-weight: 300;
font-style: italic;
padding-left: 20px;
}
.button {
width: 150px;
height: 40px;
background-color: #95e1d3;
font-size: 14px;
color: #ffffff;
font-family: "Montserrat";
font-weight: 700;
text-align: center;
border: none;
text-transform: uppercase;
}
.footer__button {
display: flex;
margin-top: 14px;
}
.footer__blok {
display: flex;
justify-content: space-between;
align-items: center;
} | css/style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
width: 100%;
height: auto;
display: block;
}
/* header */
.wrapper__header {
max-width: 1200px;
height: 66px;
margin: 0 auto;
}
.header {
width: 100%;
}
.header_nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 86px;
height: 24px;
}
.menu {
/* width: 490px;
height: 66px; */
display: flex;
/* justify-content: space-between; */
/* align-items: flex-end; */
margin-top: 30px;
}
.menu__link {
text-transform: uppercase;
text-decoration: none;
font-size: 14px;
color: #95e1d3;
font-family: "Montserrat";
transition: color 200ms linear;
}
.nav__link:not(:first-of-type) {
margin-left: 43px;
}
.rotatate {
animation: logo__app 5s ease-in-out;
}
@keyframes logo__app {
0% {
transform: translateY(-200px);
opacity: 0;
}
25% {
opacity: 1;
transform: translateY(600px);
box-shadow: -19px -153px 300px 100px rgba(39, 175, 209, 1);
}
50% {
transform: translateY(0);
opacity: 1;
transform: rotate(0);
box-shadow: 14px 200px 186px 30px rgba(39, 175, 209, 1);
}
75% {
transform: rotate(180deg);
box-shadow: 14px 196px 178px -22px rgba(39, 175, 209, 1);
}
100% {
transform: rotate(-360deg);
}
}
.menu__link:hover {
color: #f38181;
}
.menu__link::after {
display: block;
content: "";
width: 100%;
height: 3px;
background-color: #f38181;
margin-top: 12px;
opacity: 0;
}
.nav__link:hover .menu__link,
.nav__link:focus {
color: #f38181;
}
.nav__link:hover .menu__link::after,
.nav__link:focus::after {
opacity: 1;
}
/* MAIN */
/* servise */
.servise__wrapper {
max-width: 1150px;
margin: 0 auto;
margin-top: 64px;
}
.service__subtittle {
font-size: 24px;
color: #333333;
font-family: "Kaushan Script";
font-weight: 400;
text-align: center;
}
.service__title {
font-size: 30px;
color: #333333;
font-family: "Montserrat";
font-weight: 700;
text-align: center;
margin-top: 12px;
text-transform: uppercase;
}
.service__title::after {
display: block;
content: "";
width: 60px;
height: 3px;
background-color: #f38181;
margin: 0 auto;
margin-top: 22px;
}
/* icon__ul */
.icon {
height: 34px;
width: auto;
}
.icon__li {
max-width: 350px;
display: flex;
justify-content: space-between;
}
.content__title {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
text-transform: uppercase;
margin-bottom: 10px;
}
.content {
padding-left: 46px;
}
.icon__p {
width: 290px;
height: 81px;
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 400;
}
.icon__ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 56px;
}
.icon__li:nth-child(-n + 3) {
margin-bottom: 50px;
}
.clock {
background-image: url(../icon/alarm-clock-icon.png);
background-repeat: no-repeat;
}
.line-graph {
background-image: url(../icon/line-graph-icon.png);
background-repeat: no-repeat;
}
.computer {
background-image: url(../icon/computer-icon.png);
background-repeat: no-repeat;
}
.book {
background-image: url(../icon/book-icon.png);
background-repeat: no-repeat;
}
.home {
background-image: url(../icon/home-icon.png);
background-repeat: no-repeat;
}
.digital {
background-image: url(../icon/digital-icon.png);
background-repeat: no-repeat;
}
/* our__team */
.our__team__wrapper {
max-width: 1200px;
margin: 0 auto;
margin-top: 46px;
}
.our__team__p {
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 400;
text-align: center;
margin: 0 auto;
max-width: 960px;
margin-top: 68px;
}
.wrapper__team {
max-width: 1200px;
margin: 0 auto;
margin-top: 68px;
}
.team {
width: 380px;
height: 470px;
position: relative;
}
.our__team__photo {
display: flex;
justify-content: space-between;
}
.team__title {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
text-align: center;
margin-top: 16px;
}
.team__subtitle {
font-size: 15px;
line-height: 24px;
color: #999999;
font-family: "Roboto";
font-weight: 300;
font-style: italic;
text-align: center;
margin-top: 8px;
}
.overlay {
width: 100%;
height: 100%;
/* background-color: #95e1d3; */
position: absolute;
background-image: linear-gradient(
to bottom,
rgba(239, 139, 138, 0.8),
rgba(241, 215, 135, 0.6)
);
font-size: 0;
opacity: 0;
background-repeat: no-repeat;
background-position: center;
transition: opacity 200ms linear, box-shadow 200ms linear,
transform 200ms linear;
}
.overlay__icon__ul {
width: 234px;
display: flex;
justify-content: space-between;
margin-left: 72px;
margin-top: 205px;
}
.overlay__icon {
height: 57px;
width: 57px;
background-color: #fce38a;
display: inline-block;
background-position: center;
}
.overlay__icon:hover {
background-color: #95e1d3;
}
.facebook {
background-image: url(../icon/facebook-icon.png);
background-repeat: no-repeat;
}
.twitter {
background-image: url(../icon/twitter-icon.png);
background-repeat: no-repeat;
}
.pinterest {
background-image: url(../icon/pinterest-icon.png);
background-repeat: no-repeat;
}
.instagram {
background-image: url(../icon/instagram-icon.png);
background-repeat: no-repeat;
}
.overlay:hover {
opacity: 1;
box-shadow: 10px 10px 0px 0 rgba(149, 225, 211, 0.76);
transform: translate(-10px, -10px);
z-index: 1;
transition: transform 200ms linear;
}
/* footer */
.wrapper__footer {
margin: 0 auto;
width: 1200px;
height: 54px;
margin-top: 114px;
margin-bottom: 8px;
}
.footer::before {
display: block;
content: "";
height: 2px;
background-color: #e5e5e5;
}
.info p {
font-size: 14px;
color: #333333;
font-family: "Montserrat";
font-weight: 400;
}
.info a {
font-size: 14px;
color: #f7aeae;
font-family: "Montserrat";
font-weight: 400;
text-decoration: none;
}
input[type="email"] {
width: 230px;
height: 40px;
font-size: 15px;
line-height: 24px;
color: #cccccc;
font-family: "Roboto";
font-weight: 300;
font-style: italic;
padding-left: 20px;
}
.button {
width: 150px;
height: 40px;
background-color: #95e1d3;
font-size: 14px;
color: #ffffff;
font-family: "Montserrat";
font-weight: 700;
text-align: center;
border: none;
text-transform: uppercase;
}
.footer__button {
display: flex;
margin-top: 14px;
}
.footer__blok {
display: flex;
justify-content: space-between;
align-items: center;
} | 0.400984 | 0.06663 |
body {
margin: 0;
padding: 0;
height: 100%;
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
#login-container {
width: 100%;
margin: 0% auto;
}
#login-container h1,
p {
margin: 5% 0 5% 0;
}
#login-container input.main {
margin: 5% 5% 5% 5%;
width: 100%;
}
.fail{
color: red;
border-color: red;
}
.success{
color: green;
border-color: green;
}
input.rememder {
margin-left: 2%
}
button#signIn{
width: 100%;
}
#login-container .checkbox {
margin: 23px 0 0 180px;
}
label {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
}
.clear-fix {
clear: both;
}
#login-container #create-account {
float: right;
}
input.input-modal{
margin: 0 0 2% 0;
/*width: 80%;*/
}
.registerEmail{
/*width: 80%*/
}
.select-modal{
margin: 0 0 2% 0;
/*width: 80%*/
}
.terms-conditions{
margin-left: 2%;
}
#invalidUser{
color: #DC143C;
}
.error{
border:1px solid red;
}
.errorPass{
color: red;
}
.divider{
margin-top: 5%;
margin-bottom: 5%;
}
#createAccount{
float: right;
}
.homePage{
border-radius: 25px;
border: 2px solid #000000;
}
.cutomLogIn{
margin: 5%;
}
#verifyEmail{
}
/*.cutomLogIn
.modal-single-input {
width: 452px;
margin: -200px 0 0 -232px;
}
.modal-single-input form {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
margin-bottom: 0;
}
.modal-single-input form button {
width: 80px;
top: 213px;
position: absolute;
}
.modal-single-input form #cancel {
right: 110px;
}
.modal-single-input form #submit {
right: 18px;
}
.modal-single-input .modal-body {
height: 140px;r
overflow: hidden;
padding-bottom: 0;
}
.modal-single-input .modal-footer {
height: 20px;
}
*/
/*
.well {
margin-left: 0;
border: 1px solid #ccc;
}*/
/*
#account-form-container {
width: 460px;
margin: 100px auto;
}
#country-list {
width: 280px;
}
.modal-form-errors li {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
color: #d8000c;
}
.modal-alert {
width: 310px;
margin: -200px 0 0 -150px;
}
#btn-logout {
width: 100px;
top: 1px;
right: 8px;
position: absolute;
}
#print {
padding: 20px;
}
#four04 {
padding: 20px;
}
.well {
margin-left: 0;
border: 1px solid #ccc;
}
.form-horizontal .control-label {
width: 80px;
}
.form-horizontal .controls {
margin-left: 120px;
}
.form-horizontal .form-actions {
padding: 17px 0 0 270px;
}
.subheading {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
margin-top: 3px;
}
button i {
padding-left: 8px;
}
*/ | app/public/stylesheets/style.css | body {
margin: 0;
padding: 0;
height: 100%;
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
#login-container {
width: 100%;
margin: 0% auto;
}
#login-container h1,
p {
margin: 5% 0 5% 0;
}
#login-container input.main {
margin: 5% 5% 5% 5%;
width: 100%;
}
.fail{
color: red;
border-color: red;
}
.success{
color: green;
border-color: green;
}
input.rememder {
margin-left: 2%
}
button#signIn{
width: 100%;
}
#login-container .checkbox {
margin: 23px 0 0 180px;
}
label {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
}
.clear-fix {
clear: both;
}
#login-container #create-account {
float: right;
}
input.input-modal{
margin: 0 0 2% 0;
/*width: 80%;*/
}
.registerEmail{
/*width: 80%*/
}
.select-modal{
margin: 0 0 2% 0;
/*width: 80%*/
}
.terms-conditions{
margin-left: 2%;
}
#invalidUser{
color: #DC143C;
}
.error{
border:1px solid red;
}
.errorPass{
color: red;
}
.divider{
margin-top: 5%;
margin-bottom: 5%;
}
#createAccount{
float: right;
}
.homePage{
border-radius: 25px;
border: 2px solid #000000;
}
.cutomLogIn{
margin: 5%;
}
#verifyEmail{
}
/*.cutomLogIn
.modal-single-input {
width: 452px;
margin: -200px 0 0 -232px;
}
.modal-single-input form {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
margin-bottom: 0;
}
.modal-single-input form button {
width: 80px;
top: 213px;
position: absolute;
}
.modal-single-input form #cancel {
right: 110px;
}
.modal-single-input form #submit {
right: 18px;
}
.modal-single-input .modal-body {
height: 140px;r
overflow: hidden;
padding-bottom: 0;
}
.modal-single-input .modal-footer {
height: 20px;
}
*/
/*
.well {
margin-left: 0;
border: 1px solid #ccc;
}*/
/*
#account-form-container {
width: 460px;
margin: 100px auto;
}
#country-list {
width: 280px;
}
.modal-form-errors li {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
color: #d8000c;
}
.modal-alert {
width: 310px;
margin: -200px 0 0 -150px;
}
#btn-logout {
width: 100px;
top: 1px;
right: 8px;
position: absolute;
}
#print {
padding: 20px;
}
#four04 {
padding: 20px;
}
.well {
margin-left: 0;
border: 1px solid #ccc;
}
.form-horizontal .control-label {
width: 80px;
}
.form-horizontal .controls {
margin-left: 120px;
}
.form-horizontal .form-actions {
padding: 17px 0 0 270px;
}
.subheading {
color: #808080;
text-shadow: -1px 1px 0 #fff;
-moz-text-shadow: -1px 1px 0 #fff;
-webkit-text-shadow: -1px 1px 0 #fff;
margin-top: 3px;
}
button i {
padding-left: 8px;
}
*/ | 0.338296 | 0.063686 |
*
{
margin:auto;
padding:auto;
}
@media (min-width: 576px) and (max-width: 767px)
{
.col-sm-4
{
max-width: 100%;
flex: auto;
}
.authfy-panel-left, .authfy-panel-right {
float: left;
}
}
@media (min-width: 320px) and (max-width: 375px) {
body {
background-size: cover;
}
}
body, html {
background-color: #f0f2f5;
background-image: url("https://1.bp.blogspot.com/-fd1WXKk-TAc/XyqfngP4PiI/AAAAAAAAVMw/umQz3tkxtg43uPIy8W5og6gAkpCfjaTvACLcBGAsYHQ/w1563-h1563/bg-snell.png");
background-repeat: no-repeat;
background-size: cover;
background-position: 100%;
height: 100vh;
text-rendering: optimizeLegibility;
}
.dust-paarticle
{
position: absolute;
width: 100%;
}
#snell
{
position:absolute;
top:0;
width:100%;
}
#eye1
{
animation: swing ease-in-out .6s infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
left: calc(52% - .0rem);
}
#eye2
{
animation: swing ease-in-out .5s infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
left: calc(40% - .0rem);
}
#dust-paarticle path
{
transform-box: fill-box;
transform-origin: center;
}
/*************swing************/
@keyframes swing {
0% { transform: rotate(8deg); }
100% { transform: rotate(-8deg); }
}
.position-set
{
position:absolute;
top:5%;
}
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700,900');
/*--------------------*/
/* 02. Common CSS */
/*--------------------*/
body {
font-family: 'Titillium Web', sans-serif;
font-size: 14px;
font-weight: 400;
color: #44525f;
}
ul {
padding: 0;
margin: 0;
list-style: none;
}
a {
text-decoration: none;
color: #2d385e;
}
a:focus {
outline: none;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
font-family: 'Titillium Web', sans-serif;
color: #2d385e;
}
a,
a:hover,
a:focus {
color: #4f77ff;
}
.btn-primary {
background-color: #4f77ff;
border-color: #4f77ff;
}
.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary:active,
.btn-primary.active {
background-color: #486ff2;
border-color: #486ff2;
}
.authfy-login .btn.btn-lg {
border-radius: 3px;
box-shadow: 0px 2px 3px #9c9c9c;
}
.brand-logo {
margin-top: 0px;
margin-bottom: 35px;
}
/*--------------------*/
/* 03. Section Panel UI CSS */
/*--------------------*/
.authfy-container {
margin-top: 97px;
margin-bottom: 97px;
}
.authfy-panel-left {
background-color: rgb(12 14 33 / 92%);
color: #ffffff;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
-webkit-box-shadow: 0px 3px 6px #1d2030;
box-shadow: 0px 3px 6px #1d2030;
}
.authfy-panel-right {
background-color: #ffffff;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0px 2px 6px 0px #1d2030;
box-shadow: 0px 2px 6px 0px #1d2030;
}
.authfy-login,
.authfy-panel-left .brand-col {
height: 460px;
}
.authfy-panel-left .brand-col {
display: table;
width: 100%;
padding: 25px;
}
.authfy-panel-left .brand-col .headline {
display: table-cell;
vertical-align: middle;
}
.authfy-panel-left .brand-col .headline h1,
.authfy-panel-left .brand-col .headline h2,
.authfy-panel-left .brand-col .headline h3 {
color: #fff;
font-size: 48px;
font-weight: 700;
}
.authfy-login {
position: relative;
top: 0;
left: 0;
overflow: hidden;
}
.authfy-panel {
padding: 20px 30px;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: all .5s ease;
opacity: 0;
transform: translateX(-100%);
-webkit-transform: translateX(-100%);
}
.authfy-panel .authfy-heading {
margin-bottom: 30px;
}
.authfy-login .auth-title {
font-weight: 700;
}
.authfy-login .authfy-panel.active {
opacity: 1;
transform: translateX(0);
-webkit-transform: translateX(0);
}
.brand-col .social-buttons a {
color: #ffffff;
margin-top: 15px;
}
.brand-col .social-buttons a:hover {
color: white;
opacity: 0.9;
}
.brand-col .social-buttons .btn-facebook {background: #3b5998;}
.brand-col .social-buttons .btn-twitter {background: #00aced;}
.brand-col .social-buttons .btn-google {background: #c32f10;}
.brand-col .social-buttons a > span {
padding-left: 5px;
}
.panel-login {
margin-top: 20px;
}
.panel-login .remember-row {
margin-bottom: 10px;
}
.panel-login .remember-row label {
font-weight: normal;
position: relative;
cursor: pointer;
color: #666;
padding-left: 24px;
}
.authfy-login .forgotPwd {
text-align: right;
margin-top: 10px;
}
.panel-login .form-control,
.panel-signup .form-control,
.panel-forgot .form-control {
background-color: #fff;
color: #333333;
font-size: 18px;
height: 50px;
margin-bottom: 20px;
padding: 12px 22px;
border-radius: 3px;
border: solid 1px #bcc2ce;
outline: none;
-webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
}
.authfy-panel.panel-forgot {
padding-top: 40px;
}
.panel-login .form-control:focus,
.panel-signup .form-control:focus,
.panel-forgot .form-control:focus {
border-color: #4f77ff;
z-index: 2;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
.pwdMask {
position: relative;
}
.pwdMask .pwd-toggle {
color: #cccccc;
position: absolute;
z-index: 2;
}
.panel-login .pwdMask .pwd-toggle,
.panel-signup .pwdMask .pwd-toggle {
top: 15px;
right: 15px;
}
.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus {
cursor: pointer;
}
.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus,
.pwdMask .pwd-toggle.fa-eye {
color: #4f77ff;
}
.panel-signup .term-policy a {
text-decoration: underline;
}
/*--------------------*/
/* 04. Check box UI CSS */
/*--------------------*/
.checkbox input[type="checkbox"] {
position: absolute;
right: 9000px;
}
.checkbox input[type="checkbox"] + .label-text:before,
.checkbox input[type="checkbox"] + .label-text:after {
font-size: 11px;
display: inline-block;
width: 17px;
height: 17px;
padding: 2px;
margin-left: 0;
position: absolute;
top: 2px;
left: 0;
}
.checkbox input[type="checkbox"] + .label-text:before {
content: "";
background-color: #ffffff;
border: 1px solid #ced4da;
border-radius: 3px;
cursor: pointer;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox input[type="checkbox"] + .label-text:after {
background-color: #4f77ff;
color: #ffffff;
border-radius: 2px;
border-color: #4f77ff;
line-height: 1.4;
}
.checkbox input[type="checkbox"] {
opacity: 0;
z-index: 1;
cursor: pointer;
}
.checkbox input[type="checkbox"]:focus + .label-text:before {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + .label-text:after {
font-family: "FontAwesome";
content: "\f00c";
}
/*--------------------*/
/* 05. Responsive CSS */
/*--------------------*/
@media (min-width: 768px) {
.authfy-panel {
padding: 20px;
}
}
@media (max-width: 767px) {
.authfy-panel-left,
.authfy-panel-right {
box-shadow: none;
}
.authfy-panel-left {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.authfy-panel-right {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.authfy-panel-left .brand-col {
height: 300px;
text-align: center;
}
.term-policy {
font-size: 75%;
}
}
@media (min-width: 320px) and (max-width: 375px) {
body {
background-size: cover;
}
.authfy-login .authfy-panel {
padding: 20px;
}
.panel-login .remember-row {
margin-bottom: 10px;
font-size: 14px;
}
}
@media (max-width: 320px) {
.authfy-login {
height: 480px;
}
.authfy-heading p {
font-size: 14px;
}
.remember-row .col-sm-6 {
width: 100%;
}
.authfy-login .forgotPwd {
text-align: left;
margin-top: 0px;
}
}
@media (min-width: 1200px)
{
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
float: left;
}
}
@media (min-width: 768px)
{
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
float: left;
}
} | login.css | *
{
margin:auto;
padding:auto;
}
@media (min-width: 576px) and (max-width: 767px)
{
.col-sm-4
{
max-width: 100%;
flex: auto;
}
.authfy-panel-left, .authfy-panel-right {
float: left;
}
}
@media (min-width: 320px) and (max-width: 375px) {
body {
background-size: cover;
}
}
body, html {
background-color: #f0f2f5;
background-image: url("https://1.bp.blogspot.com/-fd1WXKk-TAc/XyqfngP4PiI/AAAAAAAAVMw/umQz3tkxtg43uPIy8W5og6gAkpCfjaTvACLcBGAsYHQ/w1563-h1563/bg-snell.png");
background-repeat: no-repeat;
background-size: cover;
background-position: 100%;
height: 100vh;
text-rendering: optimizeLegibility;
}
.dust-paarticle
{
position: absolute;
width: 100%;
}
#snell
{
position:absolute;
top:0;
width:100%;
}
#eye1
{
animation: swing ease-in-out .6s infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
left: calc(52% - .0rem);
}
#eye2
{
animation: swing ease-in-out .5s infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
left: calc(40% - .0rem);
}
#dust-paarticle path
{
transform-box: fill-box;
transform-origin: center;
}
/*************swing************/
@keyframes swing {
0% { transform: rotate(8deg); }
100% { transform: rotate(-8deg); }
}
.position-set
{
position:absolute;
top:5%;
}
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700,900');
/*--------------------*/
/* 02. Common CSS */
/*--------------------*/
body {
font-family: 'Titillium Web', sans-serif;
font-size: 14px;
font-weight: 400;
color: #44525f;
}
ul {
padding: 0;
margin: 0;
list-style: none;
}
a {
text-decoration: none;
color: #2d385e;
}
a:focus {
outline: none;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
font-family: 'Titillium Web', sans-serif;
color: #2d385e;
}
a,
a:hover,
a:focus {
color: #4f77ff;
}
.btn-primary {
background-color: #4f77ff;
border-color: #4f77ff;
}
.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary:active,
.btn-primary.active {
background-color: #486ff2;
border-color: #486ff2;
}
.authfy-login .btn.btn-lg {
border-radius: 3px;
box-shadow: 0px 2px 3px #9c9c9c;
}
.brand-logo {
margin-top: 0px;
margin-bottom: 35px;
}
/*--------------------*/
/* 03. Section Panel UI CSS */
/*--------------------*/
.authfy-container {
margin-top: 97px;
margin-bottom: 97px;
}
.authfy-panel-left {
background-color: rgb(12 14 33 / 92%);
color: #ffffff;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
-webkit-box-shadow: 0px 3px 6px #1d2030;
box-shadow: 0px 3px 6px #1d2030;
}
.authfy-panel-right {
background-color: #ffffff;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0px 2px 6px 0px #1d2030;
box-shadow: 0px 2px 6px 0px #1d2030;
}
.authfy-login,
.authfy-panel-left .brand-col {
height: 460px;
}
.authfy-panel-left .brand-col {
display: table;
width: 100%;
padding: 25px;
}
.authfy-panel-left .brand-col .headline {
display: table-cell;
vertical-align: middle;
}
.authfy-panel-left .brand-col .headline h1,
.authfy-panel-left .brand-col .headline h2,
.authfy-panel-left .brand-col .headline h3 {
color: #fff;
font-size: 48px;
font-weight: 700;
}
.authfy-login {
position: relative;
top: 0;
left: 0;
overflow: hidden;
}
.authfy-panel {
padding: 20px 30px;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: all .5s ease;
opacity: 0;
transform: translateX(-100%);
-webkit-transform: translateX(-100%);
}
.authfy-panel .authfy-heading {
margin-bottom: 30px;
}
.authfy-login .auth-title {
font-weight: 700;
}
.authfy-login .authfy-panel.active {
opacity: 1;
transform: translateX(0);
-webkit-transform: translateX(0);
}
.brand-col .social-buttons a {
color: #ffffff;
margin-top: 15px;
}
.brand-col .social-buttons a:hover {
color: white;
opacity: 0.9;
}
.brand-col .social-buttons .btn-facebook {background: #3b5998;}
.brand-col .social-buttons .btn-twitter {background: #00aced;}
.brand-col .social-buttons .btn-google {background: #c32f10;}
.brand-col .social-buttons a > span {
padding-left: 5px;
}
.panel-login {
margin-top: 20px;
}
.panel-login .remember-row {
margin-bottom: 10px;
}
.panel-login .remember-row label {
font-weight: normal;
position: relative;
cursor: pointer;
color: #666;
padding-left: 24px;
}
.authfy-login .forgotPwd {
text-align: right;
margin-top: 10px;
}
.panel-login .form-control,
.panel-signup .form-control,
.panel-forgot .form-control {
background-color: #fff;
color: #333333;
font-size: 18px;
height: 50px;
margin-bottom: 20px;
padding: 12px 22px;
border-radius: 3px;
border: solid 1px #bcc2ce;
outline: none;
-webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
}
.authfy-panel.panel-forgot {
padding-top: 40px;
}
.panel-login .form-control:focus,
.panel-signup .form-control:focus,
.panel-forgot .form-control:focus {
border-color: #4f77ff;
z-index: 2;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
.pwdMask {
position: relative;
}
.pwdMask .pwd-toggle {
color: #cccccc;
position: absolute;
z-index: 2;
}
.panel-login .pwdMask .pwd-toggle,
.panel-signup .pwdMask .pwd-toggle {
top: 15px;
right: 15px;
}
.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus {
cursor: pointer;
}
.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus,
.pwdMask .pwd-toggle.fa-eye {
color: #4f77ff;
}
.panel-signup .term-policy a {
text-decoration: underline;
}
/*--------------------*/
/* 04. Check box UI CSS */
/*--------------------*/
.checkbox input[type="checkbox"] {
position: absolute;
right: 9000px;
}
.checkbox input[type="checkbox"] + .label-text:before,
.checkbox input[type="checkbox"] + .label-text:after {
font-size: 11px;
display: inline-block;
width: 17px;
height: 17px;
padding: 2px;
margin-left: 0;
position: absolute;
top: 2px;
left: 0;
}
.checkbox input[type="checkbox"] + .label-text:before {
content: "";
background-color: #ffffff;
border: 1px solid #ced4da;
border-radius: 3px;
cursor: pointer;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox input[type="checkbox"] + .label-text:after {
background-color: #4f77ff;
color: #ffffff;
border-radius: 2px;
border-color: #4f77ff;
line-height: 1.4;
}
.checkbox input[type="checkbox"] {
opacity: 0;
z-index: 1;
cursor: pointer;
}
.checkbox input[type="checkbox"]:focus + .label-text:before {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + .label-text:after {
font-family: "FontAwesome";
content: "\f00c";
}
/*--------------------*/
/* 05. Responsive CSS */
/*--------------------*/
@media (min-width: 768px) {
.authfy-panel {
padding: 20px;
}
}
@media (max-width: 767px) {
.authfy-panel-left,
.authfy-panel-right {
box-shadow: none;
}
.authfy-panel-left {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.authfy-panel-right {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.authfy-panel-left .brand-col {
height: 300px;
text-align: center;
}
.term-policy {
font-size: 75%;
}
}
@media (min-width: 320px) and (max-width: 375px) {
body {
background-size: cover;
}
.authfy-login .authfy-panel {
padding: 20px;
}
.panel-login .remember-row {
margin-bottom: 10px;
font-size: 14px;
}
}
@media (max-width: 320px) {
.authfy-login {
height: 480px;
}
.authfy-heading p {
font-size: 14px;
}
.remember-row .col-sm-6 {
width: 100%;
}
.authfy-login .forgotPwd {
text-align: left;
margin-top: 0px;
}
}
@media (min-width: 1200px)
{
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
float: left;
}
}
@media (min-width: 768px)
{
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
float: left;
}
} | 0.389779 | 0.057652 |
@media screen and (max-width: 600px){
html,body,div,span,input,button,p,input,select{
margin: 0;
padding: 0;
font-size: 10pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
min-height: 100%;
}
}
/*ipad or android-pad*/
@media screen and (min-width: 600px) and (max-width: 1024px){
html,body,div,span,input,button,p,input,select{
margin: 0;
padding: 0;
font-size: 12pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
min-height: 100%;
}
}
/*computer screen*/
@media screen and (min-width: 1025px){
html,body,div,span,input,p,input,button,select{
margin: 0;
padding: 0;
font-size: 12pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
max-width: 1024px;
margin-left: calc((100% - 1024px) / 2) ;
min-height: 100%;
}
}
*{
box-sizing: border-box;
position: relative;
}
a{
color: #ffffff;
text-decoration: none;
}
html,body{
height: 100%;
}
hr{
border-color: #f6f6f6;
}
p.el-super{
padding: 0.25em;
}
p.el-important{
padding: 0.5em;
}
p.el-highlight{
font-size: 18pt;
}
.el-white{
color: #ffffff!important;
}
.el-black{
color: #080808!important;
}
.el-error{
color: #bb4444!important;
}
.el-hint{
color: #dfdfdf!important;
}
.el-bright{
background-color: #ffffff!important;
color: #080808!important;
}
.el-silver{
background-color: #efefef!important;
color: #080808!important;
}
.el-dark{
background-color: #080808!important;
color: #ffffff!important;
}
.el-night{
background-color: rgb(29,31,34)!important;
color: #ffffff!important;
}
.el-info{
background-color: #4466af!important;
color: #ffffff!important;
}
.el-danger{
background-color: #bb4444!important;
color: #ffffff!important;
}
.el-success{
background-color: #449966!important;
color: #ffffff!important;
}
.el-warning{
background-color: #ee6644!important;
color: #ffffff!important;
}
.el-box-light-inset{
box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.1) inset;
}
.el-box-light{
box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.1);
}
.el-box-shadow-inset{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1) inset;
}
.el-box-shadow{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
}
.el-text-light{
text-shadow: 1px 1px 5px white;
}
.el-text-shadow{
text-shadow: 1px 1px 5px black;
}
div.el-nav,nav.el-nav{
width: 100%;
height: 3em;
padding: 1em;
font-weight: bold;
line-height: 1em;
z-index: 10;
}
div.el-bar{
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #cfcfcf;
border-radius: 5px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 1em;
width: 100%;
height: 3em;
padding: 1em;
}
.el-fixed-top{
position: fixed;
}
div.el-cover{
width: 100%;
text-align: center;
z-index: 9;
overflow: hidden;
}
div.el-panel{
display: block;
width: 100%;
padding: 1em;
margin-top: 1em;
margin-bottom: 1em;
background-color: #f6f6f6;
border:1px solid #cfcfcf;
color: #080808;
border-radius: 5px;
}
div.el-cover img{
width: 100%;
max-width: 800px;
height: auto;
bottom:0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: -1;
/*change baseline to vertical-align*/
vertical-align: middle;
}
code.el-code{
display: block;
width: 100%;
padding: 1em;
margin-top: 10px;
margin-bottom: 10px;
background-color: rgb(29,31,34);
color: #ffffff;
border:1px solid #cfcfcf;
border-radius: 5px;
}
.el-button{
min-width: 8em;
outline: none;
display: inline-block;
height: 3em;
line-height: 1em;
padding: 1em;
background-color: #ffffff;
color: #080808;
border:1px solid #cfcfcf;
border-radius: 5px;
margin: 5px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
transition: box-shadow 0.3s;
}
.el-button:active{
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
}
select.el-select{
background-color: #ffffff;
border: 1px solid #cfcfcf;
height: 2em;
padding-left: 0.5em;
padding-right: : 0.5em;
line-height: 2em;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
}
input.el-input{
vertical-align: middle;
background-color: white;
}
input[type='text'].el-input,input[type='password'].el-input,input[type='email'].el-input,input[type='number'].el-input,input[type='date'].el-input{
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 5px;
min-width: 14em;
height: 2em;
line-height: 2em;
padding-left: 0.5em;
padding-right: 0.5em;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
}
input[type='range'].el-input{
padding:0px;
height: 6px;
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border:1px solid #cfcfcf;
min-width: 14em;
border-radius: 10px; /*这个属性设置使填充进度条时的图形为圆角*/
}
input[type=range].el-input::-webkit-slider-thumb {
-webkit-appearance: none;
height: 16px;
width: 16px;
margin-top: 0; /*使滑块超出轨道部分的偏移量相等*/
background-color: #ffffff;
border-radius: 50%; /*外观设置为圆形*/
border: none;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
input[type='checkbox'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 5px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
height: 18px;
width: 18px;
}
input[type='checkbox'].el-input:checked::after{
content: "\2713";
text-align: center;
font-size: 10pt;
vertical-align: middle;
position: absolute;
z-index: -1;
display: inline-block;
width: 16px;
height: 16px;
}
input[type='radio'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 50%;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
height: 18px;
width: 18px;
}
input[type='radio'].el-input:checked::after{
/*content: "\263B";*/
content: "\2713";
text-align: center;
font-size: 10pt;
vertical-align: middle;
position: absolute;
z-index: -1;
display: inline-block;
width: 16px;
height: 16px;
}
input[type='file'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
border:1px solid #cfcfcf;
content: "";
width: 14em;
border-radius: 5px;
}
.el-small{
font-size: 10pt!important;
}
.el-middel{
font-size: 12pt!important;
}
.el-large{
font-size: 14pt!important;
}
.el-highlight{
font-size: 18pt!important;
}
.el-important{
font-size: 24pt!important;
}
.el-super{
font-size: 72pt!important;
}
.el-square{
border-radius: 0px!important;
}
.el-round{
border-radius: 1.5em!important;
}
.el-borderless{
border: none!important;
}
.el-ghost{
background-color: #ffffff!important;
color:#080808!important;
transition: all 0.6s;
}
.el-ghost:hover{
background-color: #080808!important;
color:#ffffff!important;
} | assets/css/eleven.css | @media screen and (max-width: 600px){
html,body,div,span,input,button,p,input,select{
margin: 0;
padding: 0;
font-size: 10pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
min-height: 100%;
}
}
/*ipad or android-pad*/
@media screen and (min-width: 600px) and (max-width: 1024px){
html,body,div,span,input,button,p,input,select{
margin: 0;
padding: 0;
font-size: 12pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
min-height: 100%;
}
}
/*computer screen*/
@media screen and (min-width: 1025px){
html,body,div,span,input,p,input,button,select{
margin: 0;
padding: 0;
font-size: 12pt;
}
.el-container{
padding-left: 10px;
padding-right: 10px;
width: 100%;
max-width: 1024px;
margin-left: calc((100% - 1024px) / 2) ;
min-height: 100%;
}
}
*{
box-sizing: border-box;
position: relative;
}
a{
color: #ffffff;
text-decoration: none;
}
html,body{
height: 100%;
}
hr{
border-color: #f6f6f6;
}
p.el-super{
padding: 0.25em;
}
p.el-important{
padding: 0.5em;
}
p.el-highlight{
font-size: 18pt;
}
.el-white{
color: #ffffff!important;
}
.el-black{
color: #080808!important;
}
.el-error{
color: #bb4444!important;
}
.el-hint{
color: #dfdfdf!important;
}
.el-bright{
background-color: #ffffff!important;
color: #080808!important;
}
.el-silver{
background-color: #efefef!important;
color: #080808!important;
}
.el-dark{
background-color: #080808!important;
color: #ffffff!important;
}
.el-night{
background-color: rgb(29,31,34)!important;
color: #ffffff!important;
}
.el-info{
background-color: #4466af!important;
color: #ffffff!important;
}
.el-danger{
background-color: #bb4444!important;
color: #ffffff!important;
}
.el-success{
background-color: #449966!important;
color: #ffffff!important;
}
.el-warning{
background-color: #ee6644!important;
color: #ffffff!important;
}
.el-box-light-inset{
box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.1) inset;
}
.el-box-light{
box-shadow: 1px 1px 5px 1px rgba(255,255,255,0.1);
}
.el-box-shadow-inset{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1) inset;
}
.el-box-shadow{
box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
}
.el-text-light{
text-shadow: 1px 1px 5px white;
}
.el-text-shadow{
text-shadow: 1px 1px 5px black;
}
div.el-nav,nav.el-nav{
width: 100%;
height: 3em;
padding: 1em;
font-weight: bold;
line-height: 1em;
z-index: 10;
}
div.el-bar{
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #cfcfcf;
border-radius: 5px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 1em;
width: 100%;
height: 3em;
padding: 1em;
}
.el-fixed-top{
position: fixed;
}
div.el-cover{
width: 100%;
text-align: center;
z-index: 9;
overflow: hidden;
}
div.el-panel{
display: block;
width: 100%;
padding: 1em;
margin-top: 1em;
margin-bottom: 1em;
background-color: #f6f6f6;
border:1px solid #cfcfcf;
color: #080808;
border-radius: 5px;
}
div.el-cover img{
width: 100%;
max-width: 800px;
height: auto;
bottom:0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: -1;
/*change baseline to vertical-align*/
vertical-align: middle;
}
code.el-code{
display: block;
width: 100%;
padding: 1em;
margin-top: 10px;
margin-bottom: 10px;
background-color: rgb(29,31,34);
color: #ffffff;
border:1px solid #cfcfcf;
border-radius: 5px;
}
.el-button{
min-width: 8em;
outline: none;
display: inline-block;
height: 3em;
line-height: 1em;
padding: 1em;
background-color: #ffffff;
color: #080808;
border:1px solid #cfcfcf;
border-radius: 5px;
margin: 5px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
transition: box-shadow 0.3s;
}
.el-button:active{
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
}
select.el-select{
background-color: #ffffff;
border: 1px solid #cfcfcf;
height: 2em;
padding-left: 0.5em;
padding-right: : 0.5em;
line-height: 2em;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
}
input.el-input{
vertical-align: middle;
background-color: white;
}
input[type='text'].el-input,input[type='password'].el-input,input[type='email'].el-input,input[type='number'].el-input,input[type='date'].el-input{
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 5px;
min-width: 14em;
height: 2em;
line-height: 2em;
padding-left: 0.5em;
padding-right: 0.5em;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
}
input[type='range'].el-input{
padding:0px;
height: 6px;
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border:1px solid #cfcfcf;
min-width: 14em;
border-radius: 10px; /*这个属性设置使填充进度条时的图形为圆角*/
}
input[type=range].el-input::-webkit-slider-thumb {
-webkit-appearance: none;
height: 16px;
width: 16px;
margin-top: 0; /*使滑块超出轨道部分的偏移量相等*/
background-color: #ffffff;
border-radius: 50%; /*外观设置为圆形*/
border: none;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
input[type='checkbox'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 5px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
height: 18px;
width: 18px;
}
input[type='checkbox'].el-input:checked::after{
content: "\2713";
text-align: center;
font-size: 10pt;
vertical-align: middle;
position: absolute;
z-index: -1;
display: inline-block;
width: 16px;
height: 16px;
}
input[type='radio'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
background-color: #ffffff;
border: 1px solid #cfcfcf;
border-radius: 50%;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1) inset;
height: 18px;
width: 18px;
}
input[type='radio'].el-input:checked::after{
/*content: "\263B";*/
content: "\2713";
text-align: center;
font-size: 10pt;
vertical-align: middle;
position: absolute;
z-index: -1;
display: inline-block;
width: 16px;
height: 16px;
}
input[type='file'].el-input{
appearance:none;
-webkit-appearance: none;
-moz-appearance:none;
border:1px solid #cfcfcf;
content: "";
width: 14em;
border-radius: 5px;
}
.el-small{
font-size: 10pt!important;
}
.el-middel{
font-size: 12pt!important;
}
.el-large{
font-size: 14pt!important;
}
.el-highlight{
font-size: 18pt!important;
}
.el-important{
font-size: 24pt!important;
}
.el-super{
font-size: 72pt!important;
}
.el-square{
border-radius: 0px!important;
}
.el-round{
border-radius: 1.5em!important;
}
.el-borderless{
border: none!important;
}
.el-ghost{
background-color: #ffffff!important;
color:#080808!important;
transition: all 0.6s;
}
.el-ghost:hover{
background-color: #080808!important;
color:#ffffff!important;
} | 0.243822 | 0.069795 |
html, body {
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.container {
margin: 0 auto;
padding: 0 2rem;
}
.clearfix {
clear: both;
}
/* create a responsive container */
@media only screen and (min-width: 1200px) {
.container { width: 1170px; }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.container { width: 970px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.container { width: 750px; }
}
/*****************************************************
* Flexbox Sticky Footer
* http://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
******************************************************/
/*corrects IE min-height bug*/
html { display: flex;}
body { width: 100%;}
.sfooter {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.sfooter-content {
flex: 1 0 auto;
}
/*****************************************************
* ADD YOUR OWN CSS BELOW! (ノ◕ヮ◕)ノ*:・゚✧
*
* HINT: You might want to be conversant with the following:
* * Shorthand syntax for padding, margin, and borders
* * Display property and values... and the differences between them.
* * The Box Model
* * Pseudo Classes
* * Attribute Selectors
******************************************************/
.container {
width: auto;
}
header {
background-color: #333333;
color: #00ff00;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
header div em {
font-size: 12px;
padding-right: 250px;
padding-left: 20px;
word-spacing: 3px;
}
header div h1 {
display: inline;
padding-right: 10px;
margin-left: -30px;
font-weight: bold;
}
img[src$=".gif"] {
display: block;
margin: 50px auto -25px;
}
.instructions-content {
float: left;
text-align: left;
width: 500px;
margin-left: 50px;
word-spacing: 5px;
}
.instructions-wrapper {
border: 5px solid black;
margin: 50px 100px;
}
.instructions-wrapper img {
float: right;
width: 250px;
height: auto;
margin: 30px 30px 30px 0;
}
.about-me {
background: #0000ff;
color: white;
}
.about-me img {
float: left;
width: 300px;
height: auto;
border: 2px solid white;
margin: 50px 20px 50px 70px;
}
.about-me p {
margin-right: 50px;
font-size: smaller;
word-spacing: 1px;
}
.about-me p span {
font-style: italic;
font-weight: bold;
color: #ffff00;
word-spacing: 4px;
}
.about-me h2 {
padding-top: 50px;
}
section:nth-last-of-type(2) {
text-align: center;
align-content: center;
padding-bottom: 35px;
}
section:nth-last-of-type(2) h2 {
justify-content: flex-end;
margin-right: 200px;
text-align: right;
}
section:nth-last-of-type(2) table {
margin: 0 auto;
width: 66%;
text-align: left;
}
section:nth-last-of-type(2) tr {
background: #333333;
color: #00ff00;
}
section:nth-last-of-type(2) th {
padding: 10px 0 10px 10px;
}
section:nth-last-of-type(2) td {
padding: 10px 0 10px 10px;
}
section:nth-last-of-type(1) {
background: #333333;
padding: 20px 0;
}
section:nth-last-of-type(1) h2 {
color: lime;
margin-left: 25px;
padding-top: 20px;
}
.form-wrapper {
font-size: smaller;
margin: 0 auto;
background: #006400;
width: 66%
}
label {
color: lime;
display: block;
margin: 10px 0 10px 25px;
}
input {
display: block;
margin-left: 25px;
width: 35%;
}
textarea {
margin-left: 25px;
width: 35%;
}
button {
background: lime;
margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
padding: 3px 25px 3px 25px;
border: none;
font-size: smaller;
font-weight: bold;
}
button:nth-last-of-type(1) {
margin-left: 2px;
}
footer {
background: #000000;
color: white;
text-align: center;
}
textarea:placeholder-shown {
padding-top: 5px;
padding-left: 13px;
}
form {
margin-bottom: 15px;
} | css/style.css | html, body {
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.container {
margin: 0 auto;
padding: 0 2rem;
}
.clearfix {
clear: both;
}
/* create a responsive container */
@media only screen and (min-width: 1200px) {
.container { width: 1170px; }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.container { width: 970px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.container { width: 750px; }
}
/*****************************************************
* Flexbox Sticky Footer
* http://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
******************************************************/
/*corrects IE min-height bug*/
html { display: flex;}
body { width: 100%;}
.sfooter {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.sfooter-content {
flex: 1 0 auto;
}
/*****************************************************
* ADD YOUR OWN CSS BELOW! (ノ◕ヮ◕)ノ*:・゚✧
*
* HINT: You might want to be conversant with the following:
* * Shorthand syntax for padding, margin, and borders
* * Display property and values... and the differences between them.
* * The Box Model
* * Pseudo Classes
* * Attribute Selectors
******************************************************/
.container {
width: auto;
}
header {
background-color: #333333;
color: #00ff00;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
header div em {
font-size: 12px;
padding-right: 250px;
padding-left: 20px;
word-spacing: 3px;
}
header div h1 {
display: inline;
padding-right: 10px;
margin-left: -30px;
font-weight: bold;
}
img[src$=".gif"] {
display: block;
margin: 50px auto -25px;
}
.instructions-content {
float: left;
text-align: left;
width: 500px;
margin-left: 50px;
word-spacing: 5px;
}
.instructions-wrapper {
border: 5px solid black;
margin: 50px 100px;
}
.instructions-wrapper img {
float: right;
width: 250px;
height: auto;
margin: 30px 30px 30px 0;
}
.about-me {
background: #0000ff;
color: white;
}
.about-me img {
float: left;
width: 300px;
height: auto;
border: 2px solid white;
margin: 50px 20px 50px 70px;
}
.about-me p {
margin-right: 50px;
font-size: smaller;
word-spacing: 1px;
}
.about-me p span {
font-style: italic;
font-weight: bold;
color: #ffff00;
word-spacing: 4px;
}
.about-me h2 {
padding-top: 50px;
}
section:nth-last-of-type(2) {
text-align: center;
align-content: center;
padding-bottom: 35px;
}
section:nth-last-of-type(2) h2 {
justify-content: flex-end;
margin-right: 200px;
text-align: right;
}
section:nth-last-of-type(2) table {
margin: 0 auto;
width: 66%;
text-align: left;
}
section:nth-last-of-type(2) tr {
background: #333333;
color: #00ff00;
}
section:nth-last-of-type(2) th {
padding: 10px 0 10px 10px;
}
section:nth-last-of-type(2) td {
padding: 10px 0 10px 10px;
}
section:nth-last-of-type(1) {
background: #333333;
padding: 20px 0;
}
section:nth-last-of-type(1) h2 {
color: lime;
margin-left: 25px;
padding-top: 20px;
}
.form-wrapper {
font-size: smaller;
margin: 0 auto;
background: #006400;
width: 66%
}
label {
color: lime;
display: block;
margin: 10px 0 10px 25px;
}
input {
display: block;
margin-left: 25px;
width: 35%;
}
textarea {
margin-left: 25px;
width: 35%;
}
button {
background: lime;
margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
padding: 3px 25px 3px 25px;
border: none;
font-size: smaller;
font-weight: bold;
}
button:nth-last-of-type(1) {
margin-left: 2px;
}
footer {
background: #000000;
color: white;
text-align: center;
}
textarea:placeholder-shown {
padding-top: 5px;
padding-left: 13px;
}
form {
margin-bottom: 15px;
} | 0.354321 | 0.092893 |
.top-bar-wrapper{
width:100%;
height:40px;
line-height:40px;
background-color:#333;
}
.top-bar a{
color:#b0b0b0;
font-size:12px;
display:block;
text-decoration:none;
}
.top-bar a:hover{
color:#fff;
}
.top-bar .line{
color:#424242;
font-size:12px;
margin:0px 3.6px;
}
.service,.top-bar li{
float:left;
}
.shop-cart{
float:right;
}
.user{
float:left;
}
.shop-cart .cart{
width:120px;
height:40px;
text-align:center;
position:relative;
}
.shop-cart .cart:hover{
background-color:#fff;
color:#ff6700;
}
.shop-cart .user a{
height:40px;
line-height:40px;
}
.shop-cart .urer:hover a{
color:#fff;
}
/* .li-wrapper:hover .app-wrapper::before,
.li-wrapper:hover .app{
display:block;
} */
.app-wrapper:hover::before,
.app-wrapper:hover .app{
display:block;
height:148px;
}
.app-wrapper{
position:relative;
}
.app-wrapper::before{
display:none;
content:"";
width:0px;
height:0px;
border:8px solid transparent;
border-top:none;
border-bottom-color:#fff;
position:absolute;
bottom:0px;
left:0px;
right:0px;
margin:auto;
}
.app{
/* display:none; */
position:absolute;
left:-40px;
z-index:999;
width:124px;
/* height:148px; */
height:0px;
overflow:hidden;
transition: height 0.3s;
line-height:1;
text-align: center;
background-color:#fff;
box-shadow:0 0 10px rgba(0,0,0,.3);
}
.app .qrcode{
width:90px;
height:90px;
margin:18px 17px 12px;
}
.app span{
color:#333;
font-size:16px;
}
.cart:hover .msc{
/* display:block; */
/* opacity:1; */
height:100px;
visibility: visible;
}
.msc{
width:316px;
background-color:#fff;
color:rgb(66,66,66);
text-align: center;
padding:20px 0px 0px;
margin-left:-196px;
box-shadow:0 5px 10px rgba(0,0,0,.3);
visibility: hidden;
height:0;
transition:height .3s;
/* opacity:0; */
position:absolute;
z-index: 999;
}
.head{
height:100px;
/* background-color:yellow; */
}
.head .logo{
width:55px;
height:55px;
float:left;
margin-top:22.5px;
position:relative;
overflow:hidden;
/* 常用隐藏文字的方法 */
text-indent:-999px;
}
.logo:hover .mi{
left:55px;
}
.logo:hover .home{
left:0;
}
.logo a{
width:55px;
height:55px;
background-color: #ff6700;
background-position:center;
}
.mi{
background-image:url("../img/mi-logo.png");
position:absolute;
left:0;
transition:left 0.3s;
}
.home{
background-image:url("../img/mi-home.png");
position:absolute;
left:-55px;
transition:left 0.3s;
}
.nav-wrapper{
float:left;
margin-left:7px;
}
.nav-wrapper .nav{
height:88px;
line-height:88px;
padding-left:58px;
margin-top:12px;
}
.nav > li{
float:left;
}
.nav li a{
font-size:16px;
color:rgb(51,51,51);
display:block;
margin-right:20px;
text-decoration:none;
}
.nav .li-a{
visibility:hidden;
}
.left-menu{
width:234px;
height:420px;
background-color:rgba(105,101,101,1);
box-sizing:content-box;
padding:20px 0;
line-height:1;
position:absolute;
left:-120px;
z-index:9;
}
.nav .left-menu li a{
font-size:14px;
color:#fff;
height:42px;
line-height:42px;
margin-right:0;
padding:0 30px;
}
.nav .left-menu li a i{
float:right;
line-height:42px;
}
.left-a:hover{
color:#fff;
background-color:#ff6700;
}
.nav .l1 a:hover{
color:#ff6700;
}
/* .all:hover a{
color:#ff6700;
} */
.head-wrapper{
/* background-color:red; */
position:relative;
}
.nav .all-goods{
width:100%;
height:0px;
overflow:hidden;
background-color:white;
/* border-top:1px solid rgb(224,224,224); */
transition:height 0.3s;
position:absolute;
top:100px;
left:0px;
z-index:99;
}
/* .nav li:not(:first-child):not(:nth-child(9)):not(:nth-child(10)):hover~.all-goods,
.all-goods:hover{
height:228px;
border-top:1px solid rgb(224,224,224);
box-shadow:0 5px 5px rgba(0,0,0,.2)
} */
.nav .all:hover~.all-goods,
.all-goods:hover{
height:229px;
border-top:1px solid rgb(224,224,224);
box-shadow:0 5px 5px rgba(0,0,0,.2)
}
.all-goods li{
width:180;
height:166px;
padding:0px 12px;
float:left;
position:relative;
text-align:center;
font-size:12px;
padding:35px 12px 0px;
}
.all-goods li::after{
content:"";
width:1px;
height:100px;
background-color:#e0e0e0;
position:absolute;
top:0;
left:0;
bottom:0;
margin:auto;
z-index:1;
}
.all-goods li img{
width:160;
height:110;
line-height:12px;
}
.goods h1,
.goods p{
width:180px;
font-size: 12px;
line-height:20px;
}
.goods h1{
margin-top:-20px;
color:#333;
}
.goods p{
color:#ff6700;
}
.search-wrapper{
width:296px;
height:52px;
margin-top:25px;
float:right;
}
.search-inp{
width:242px;
height:50px;
float:left;
border:1px solid rgb(224, 224, 224);
padding:0 10px;
font-size:14px;
outline:none;
}
.search-wrapper .search-inp:focus,
.search-wrapper .search-inp:focus + button{
border-color:#ff6700;
}
.search-but{
width:52px;
height:50px;
padding:none;
border:1px solid rgb(224, 224, 224);
float:left;
color:#616161;
font-size:18px;
border-left:none;
outline:none;
}
.search-but:hover{
background-color: #ff6700;
border:none;
color:white;
}
.li-wrapper{
position:relative;
}
.img-list{
height:460px;
}
.banner-wrapper{
position:relative;
overflow: hidden;
height:460px;
}
.banner-wrapper{
overflow: hidden;
}
.swiper-wrapper{
position:absolute;
}
.swiper-wrapper li{
float:left;
width:1226px;
height:460px;
vertical-align:top;
}
/* .banner .img-list{
position:absolute;
left:62px;
overflow: hidden;
}
.banner img{
float:left;
width:1226px;
height:460px;
vertical-align:top;
}
.banner .img-list li:nth-child(1){
z-index:1;
} */
.pointer{
position:absolute;
bottom:22px;
right:35px;
z-index:8;
}
.pointer .pagination1{
float:left;
width:10px;
height:10px;
border: 2px solid #fff;
border-radius: 50%;
background-color: rgb(117,117,117);
margin:0 4px;
cursor: pointer;
}
.pointer div:hover,
.pointer div.active{
background-color:#fff;
border-color:rgba(0,0,0,.4);
}
.prev-next a{
width:41px;
height:69px;
background-image:url("../img/icon-slides.png");
position:absolute;
bottom:0px;
top:0px;
margin:auto 0;
z-index:3;
}
.prev-next .prev{
left:234px;
background-position:-83px -69px;
}
.prev-next .prev:hover{
background-position:0 0;
}
.prev-next .next{
right:0;
background-position:-124px -69px;
}
.prev-next .next:hover{
background-position:-42px -69px;
}
.back-top{
width:27px;
height:261px;
position:fixed;
bottom:30px;
/* 布局等式:
left + margin-left + width + margin-right + right =视口的宽度
auto + 0 + 27 + (-640)+ 50% =视口宽度
自适应,自动调节auto*/
right:50%;
margin-right:-640px;
}
.back-top a{
display:block;
width:20px;
height:42px;
background-color:#fff;
margin-bottom:8px;
padding-top:10px;
margin:0 auto;
}
.back-top a i{
/* font-size: 20px; */
color:rgb(117,117,117)
}
.back-top .mob{
font-size:19px;
}
.back-top a:hover i{
color:#ff6700;
}
body .shortcut-wrapper{
margin-top:15px;
}
.shortcut-wrapper .shortcut,
.shortcut-wrapper .img-list2,
.shortcut-wrapper li{
float:left;
}
.shortcut-wrapper .shortcut{
width:234px;
height:168px;
background-color:#5f5750;
margin-right:14px;
padding-top:2px;
padding-left:3px;
}
.shortcut-wrapper .shortcut a{
color:#cfccca;
display:block;
width:76px;
height:84px;
font-size: 12px;
text-align: center;
text-decoration:none;
overflow:hidden;
}
.shortcut-wrapper .shortcut a:hover{
color:#fff;
}
.shortcut-wrapper .shortcut li{
position:relative;
}
.shortcut-wrapper .shortcut li::before{
content:"";
width:64px;
height:1px;
background-color:#665e57;
position:absolute;
left:0;
top:0;
right:0;
margin:0 auto;
}
.shortcut-wrapper .shortcut li::after{
content:"";
width:1px;
height:70px;
background-color:#665e57;
position:absolute;
left:0;
top:0;
bottom:0;
margin:auto 0;
}
.shortcut-wrapper .shortcut i{
display: block;
font-size: 24px;
margin-top:20px;
/* padding:20px; */
margin-bottom:4px;
}
.shortcut-wrapper .img-list2 li{
width:316px;
height:170px;
margin-right:15px;
}
.img-list2 li:last-child{
margin-right:0px;
}
.img-list2 img{
width:100%;
vertical-align: top;
}
.left-menu-children{
visibility: hidden;
display: flex;
height:458px;
background-color: #fff;
border:1px solid #e0e0e0;
border-left:none;
position:absolute;
left:234px;
top:0px;
z-index:9999;
}
.left-menu-children .children-left{
width:248px;
height:458px;
}
.left-menu .left-menu-children li{
margin:32px 0px;
}
.left-menu .left-menu-children li a{
display:inline-block;
color:#333;
}
.left-menu .left-menu-children li a span{
float: right;
line-height:42px;
}
.left-menu .left-menu-children li a span:hover{
color:#ff6700;
} | css/index.css | .top-bar-wrapper{
width:100%;
height:40px;
line-height:40px;
background-color:#333;
}
.top-bar a{
color:#b0b0b0;
font-size:12px;
display:block;
text-decoration:none;
}
.top-bar a:hover{
color:#fff;
}
.top-bar .line{
color:#424242;
font-size:12px;
margin:0px 3.6px;
}
.service,.top-bar li{
float:left;
}
.shop-cart{
float:right;
}
.user{
float:left;
}
.shop-cart .cart{
width:120px;
height:40px;
text-align:center;
position:relative;
}
.shop-cart .cart:hover{
background-color:#fff;
color:#ff6700;
}
.shop-cart .user a{
height:40px;
line-height:40px;
}
.shop-cart .urer:hover a{
color:#fff;
}
/* .li-wrapper:hover .app-wrapper::before,
.li-wrapper:hover .app{
display:block;
} */
.app-wrapper:hover::before,
.app-wrapper:hover .app{
display:block;
height:148px;
}
.app-wrapper{
position:relative;
}
.app-wrapper::before{
display:none;
content:"";
width:0px;
height:0px;
border:8px solid transparent;
border-top:none;
border-bottom-color:#fff;
position:absolute;
bottom:0px;
left:0px;
right:0px;
margin:auto;
}
.app{
/* display:none; */
position:absolute;
left:-40px;
z-index:999;
width:124px;
/* height:148px; */
height:0px;
overflow:hidden;
transition: height 0.3s;
line-height:1;
text-align: center;
background-color:#fff;
box-shadow:0 0 10px rgba(0,0,0,.3);
}
.app .qrcode{
width:90px;
height:90px;
margin:18px 17px 12px;
}
.app span{
color:#333;
font-size:16px;
}
.cart:hover .msc{
/* display:block; */
/* opacity:1; */
height:100px;
visibility: visible;
}
.msc{
width:316px;
background-color:#fff;
color:rgb(66,66,66);
text-align: center;
padding:20px 0px 0px;
margin-left:-196px;
box-shadow:0 5px 10px rgba(0,0,0,.3);
visibility: hidden;
height:0;
transition:height .3s;
/* opacity:0; */
position:absolute;
z-index: 999;
}
.head{
height:100px;
/* background-color:yellow; */
}
.head .logo{
width:55px;
height:55px;
float:left;
margin-top:22.5px;
position:relative;
overflow:hidden;
/* 常用隐藏文字的方法 */
text-indent:-999px;
}
.logo:hover .mi{
left:55px;
}
.logo:hover .home{
left:0;
}
.logo a{
width:55px;
height:55px;
background-color: #ff6700;
background-position:center;
}
.mi{
background-image:url("../img/mi-logo.png");
position:absolute;
left:0;
transition:left 0.3s;
}
.home{
background-image:url("../img/mi-home.png");
position:absolute;
left:-55px;
transition:left 0.3s;
}
.nav-wrapper{
float:left;
margin-left:7px;
}
.nav-wrapper .nav{
height:88px;
line-height:88px;
padding-left:58px;
margin-top:12px;
}
.nav > li{
float:left;
}
.nav li a{
font-size:16px;
color:rgb(51,51,51);
display:block;
margin-right:20px;
text-decoration:none;
}
.nav .li-a{
visibility:hidden;
}
.left-menu{
width:234px;
height:420px;
background-color:rgba(105,101,101,1);
box-sizing:content-box;
padding:20px 0;
line-height:1;
position:absolute;
left:-120px;
z-index:9;
}
.nav .left-menu li a{
font-size:14px;
color:#fff;
height:42px;
line-height:42px;
margin-right:0;
padding:0 30px;
}
.nav .left-menu li a i{
float:right;
line-height:42px;
}
.left-a:hover{
color:#fff;
background-color:#ff6700;
}
.nav .l1 a:hover{
color:#ff6700;
}
/* .all:hover a{
color:#ff6700;
} */
.head-wrapper{
/* background-color:red; */
position:relative;
}
.nav .all-goods{
width:100%;
height:0px;
overflow:hidden;
background-color:white;
/* border-top:1px solid rgb(224,224,224); */
transition:height 0.3s;
position:absolute;
top:100px;
left:0px;
z-index:99;
}
/* .nav li:not(:first-child):not(:nth-child(9)):not(:nth-child(10)):hover~.all-goods,
.all-goods:hover{
height:228px;
border-top:1px solid rgb(224,224,224);
box-shadow:0 5px 5px rgba(0,0,0,.2)
} */
.nav .all:hover~.all-goods,
.all-goods:hover{
height:229px;
border-top:1px solid rgb(224,224,224);
box-shadow:0 5px 5px rgba(0,0,0,.2)
}
.all-goods li{
width:180;
height:166px;
padding:0px 12px;
float:left;
position:relative;
text-align:center;
font-size:12px;
padding:35px 12px 0px;
}
.all-goods li::after{
content:"";
width:1px;
height:100px;
background-color:#e0e0e0;
position:absolute;
top:0;
left:0;
bottom:0;
margin:auto;
z-index:1;
}
.all-goods li img{
width:160;
height:110;
line-height:12px;
}
.goods h1,
.goods p{
width:180px;
font-size: 12px;
line-height:20px;
}
.goods h1{
margin-top:-20px;
color:#333;
}
.goods p{
color:#ff6700;
}
.search-wrapper{
width:296px;
height:52px;
margin-top:25px;
float:right;
}
.search-inp{
width:242px;
height:50px;
float:left;
border:1px solid rgb(224, 224, 224);
padding:0 10px;
font-size:14px;
outline:none;
}
.search-wrapper .search-inp:focus,
.search-wrapper .search-inp:focus + button{
border-color:#ff6700;
}
.search-but{
width:52px;
height:50px;
padding:none;
border:1px solid rgb(224, 224, 224);
float:left;
color:#616161;
font-size:18px;
border-left:none;
outline:none;
}
.search-but:hover{
background-color: #ff6700;
border:none;
color:white;
}
.li-wrapper{
position:relative;
}
.img-list{
height:460px;
}
.banner-wrapper{
position:relative;
overflow: hidden;
height:460px;
}
.banner-wrapper{
overflow: hidden;
}
.swiper-wrapper{
position:absolute;
}
.swiper-wrapper li{
float:left;
width:1226px;
height:460px;
vertical-align:top;
}
/* .banner .img-list{
position:absolute;
left:62px;
overflow: hidden;
}
.banner img{
float:left;
width:1226px;
height:460px;
vertical-align:top;
}
.banner .img-list li:nth-child(1){
z-index:1;
} */
.pointer{
position:absolute;
bottom:22px;
right:35px;
z-index:8;
}
.pointer .pagination1{
float:left;
width:10px;
height:10px;
border: 2px solid #fff;
border-radius: 50%;
background-color: rgb(117,117,117);
margin:0 4px;
cursor: pointer;
}
.pointer div:hover,
.pointer div.active{
background-color:#fff;
border-color:rgba(0,0,0,.4);
}
.prev-next a{
width:41px;
height:69px;
background-image:url("../img/icon-slides.png");
position:absolute;
bottom:0px;
top:0px;
margin:auto 0;
z-index:3;
}
.prev-next .prev{
left:234px;
background-position:-83px -69px;
}
.prev-next .prev:hover{
background-position:0 0;
}
.prev-next .next{
right:0;
background-position:-124px -69px;
}
.prev-next .next:hover{
background-position:-42px -69px;
}
.back-top{
width:27px;
height:261px;
position:fixed;
bottom:30px;
/* 布局等式:
left + margin-left + width + margin-right + right =视口的宽度
auto + 0 + 27 + (-640)+ 50% =视口宽度
自适应,自动调节auto*/
right:50%;
margin-right:-640px;
}
.back-top a{
display:block;
width:20px;
height:42px;
background-color:#fff;
margin-bottom:8px;
padding-top:10px;
margin:0 auto;
}
.back-top a i{
/* font-size: 20px; */
color:rgb(117,117,117)
}
.back-top .mob{
font-size:19px;
}
.back-top a:hover i{
color:#ff6700;
}
body .shortcut-wrapper{
margin-top:15px;
}
.shortcut-wrapper .shortcut,
.shortcut-wrapper .img-list2,
.shortcut-wrapper li{
float:left;
}
.shortcut-wrapper .shortcut{
width:234px;
height:168px;
background-color:#5f5750;
margin-right:14px;
padding-top:2px;
padding-left:3px;
}
.shortcut-wrapper .shortcut a{
color:#cfccca;
display:block;
width:76px;
height:84px;
font-size: 12px;
text-align: center;
text-decoration:none;
overflow:hidden;
}
.shortcut-wrapper .shortcut a:hover{
color:#fff;
}
.shortcut-wrapper .shortcut li{
position:relative;
}
.shortcut-wrapper .shortcut li::before{
content:"";
width:64px;
height:1px;
background-color:#665e57;
position:absolute;
left:0;
top:0;
right:0;
margin:0 auto;
}
.shortcut-wrapper .shortcut li::after{
content:"";
width:1px;
height:70px;
background-color:#665e57;
position:absolute;
left:0;
top:0;
bottom:0;
margin:auto 0;
}
.shortcut-wrapper .shortcut i{
display: block;
font-size: 24px;
margin-top:20px;
/* padding:20px; */
margin-bottom:4px;
}
.shortcut-wrapper .img-list2 li{
width:316px;
height:170px;
margin-right:15px;
}
.img-list2 li:last-child{
margin-right:0px;
}
.img-list2 img{
width:100%;
vertical-align: top;
}
.left-menu-children{
visibility: hidden;
display: flex;
height:458px;
background-color: #fff;
border:1px solid #e0e0e0;
border-left:none;
position:absolute;
left:234px;
top:0px;
z-index:9999;
}
.left-menu-children .children-left{
width:248px;
height:458px;
}
.left-menu .left-menu-children li{
margin:32px 0px;
}
.left-menu .left-menu-children li a{
display:inline-block;
color:#333;
}
.left-menu .left-menu-children li a span{
float: right;
line-height:42px;
}
.left-menu .left-menu-children li a span:hover{
color:#ff6700;
} | 0.457864 | 0.062103 |
body {
background-color: #F5F3F0;
display: flex;
min-height: 100vh;
flex-direction: column;
}
header.main {
width: 100%;
max-width: 970px;
margin: auto;
position: relative;
}
header.main .logo {
display: block;
max-width: 420px; height: 160px;
margin: 20px auto;
background: url(res/logo.png) no-repeat;
background-size: 100% auto;
}
/* --- Menu --- */
header.main .menu {
position: absolute;
top: 30%;
}
header.main .menu div#menu-btn {
font-size: 29px;
outline: none;
border: none;
font-family: Reef, sans-serif;
text-transform: uppercase;
opacity: 0.8;
background-color: #E9E9E9;
padding: 7px 0px;
padding-top: 9px;
padding-left: 52px;
padding-right: 22px;
border-radius: 30px;
cursor: pointer;
transition: all ease .3s;
position: relative;
}
header.main .menu div#menu-btn .hamburger {
width: 20px; height: auto;
position: absolute;
top: 14px;
left: 20px;
}
header.main .menu div#menu-btn .hamburger span {
display: block;
opacity: .8;
width: 100%; height: 3px;
background-color: #000;
margin-bottom: 4px;
border-radius: 6px;
transition: all ease .3s;
}
header.main .menu div#menu-btn:hover, header.main .menu div#menu-btn.show {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
header.main .menu div#menu-btn.show {
padding: 7px 37px;
padding-top: 9px;
transition: padding ease .2s;
transition-delay: .1s;
}
header.main .menu div#menu-btn:hover .hamburger span {
background-color: #fff;
transition: all ease .1s;
}
header.main .menu div#menu-btn.show .hamburger span {
width: 0px;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(1) {
transition-delay: 0s;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(2) {
transition-delay: .05s;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(3) {
transition-delay: .1s;
}
header.main .menu div#menu-btn:active {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1), inset 2px 2px 20px rgba(0,0,0,.1);
}
header.main .menu ul:before {
content: "";
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
left: 20%;
top: -22px;
border-bottom: 10px solid #73aaa4;
}
header.main .menu ul {
font-family: "Roboto Condensed", sans-serif;
line-height: 1.5;
background-color: #73aaa4;
border-radius: 10px;
padding: 5px 22px;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
position: absolute;
visibility: hidden;
top: 60px;
width: 230px;
opacity: 0;
transition: visibility 0s linear .2s, opacity .2s ease, top .2s ease;
z-index: 1000;
}
header.main .menu ul.show {
visibility: visible;
top: 70px;
opacity: 1;
transition: visibility 0s linear 0s, opacity .1s ease, top .1s ease;
}
header.main .menu ul a {
display: block;
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 24px;
padding: 10px 12px;
border-bottom: 1px solid rgba(0,0,0,.1);
position: relative;
transition: all ease .15s;
}
header.main .menu ul a:before {
content: "";
font-size: 9px;
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
left: -20px;
top: 21px;
border-left: 10px solid #fff;
opacity: 0;
transition: all ease .15s;
}
header.main .menu ul li:first-child a {
}
header.main .menu ul li:first-child a:after {
content: '\e900';
position: absolute;
right: 13px;
top: 15px;
opacity: .4;
font-size: 17px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
header.main .menu ul li:last-child a {
border: none;
}
header.main .menu ul a:hover {
padding-left: 20px;
padding-right: 4px;
}
header.main .menu ul a:hover:before {
left: 2px;
opacity: .7;
}
/* --- Home --- */
.wrap-main {
width: 100%;
max-width: 870px;
margin: 40px auto;
flex: 1 0 auto;
}
.mosaic a.atlas {
background: url(res/atlas.png) #A3B960;
}
.mosaic a.saint-leons {
background: url(res/saint-leons.png) #ccc85d;
}
.mosaic a.histoires {
background: url(res/histoires.png) #e8c340;
}
.mosaic a.migrations {
background: url(res/migrations-2.png) #73aaa4;
}
.mosaic a.carto {
background: url(res/carto.png) #2794BE;
}
.mosaic a.art {
background: url(res/art.png) #cc5f00;
}
.mosaic a.ressources {
background: #123B57;
}
.mosaic a.actualites {
background: url(res/event.png) #a7361d;
}
.mosaic a {
display: inline-block;
width: 49.5%;
margin-right: 1%;
height: 310px;
background-color: #73aaa4;
font-family: 'Roboto Condensed';
text-decoration: none;
color: #fff;
position: relative;
background-size: 104% !important;
transition: background-size ease .2s;
margin-bottom: 6px;
}
.mosaic a:nth-child(even) {
margin-right: 0%;
}
.mosaic a:hover {
background-size: 102% !important;
}
.mosaic a .content {
width: 85%;
position: absolute;
top: 30%;
right: 40px;
text-align: right;
}
.mosaic a .content h1 {
text-transform: uppercase;
font-size: 40px;
transition: margin ease .2s;
position: relative;
}
.mosaic a .content h1::before {
content: "";
font-size: 9px;
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
top: 16px;
opacity: 0;
transition: all ease .2s;
}
.mosaic a:nth-child(odd) .content h1::before {
left: -30px;
border-left: 10px solid #fff;
}
.mosaic a:nth-child(even) .content h1::before {
right: -30px;
border-right: 10px solid #fff;
}
.mosaic a:hover .content h1 {
margin-left: 7px;
}
.mosaic a:nth-child(even):hover .content h1 {
margin-right: 7px;
}
.mosaic a:nth-child(odd):hover .content h1::before {
left: -18px;
opacity: .7;
}
.mosaic a:nth-child(even):hover .content h1::before {
right: -18px;
opacity: .7;
}
.mosaic a .content h3 {
font-size: 18px;
font-weight: 300;
margin-top: 16px;
line-height: 1.3;
}
.mosaic a:nth-child(odd) .content {
left: 40px;
text-align: left;
}
/* --- Home --- À propos --- */
.mosaic a.about {
width: 100%;
height: auto;
text-transform: uppercase;
font-size: 35px;
padding: 0px;
opacity: 0.7;
transition: opacity ease .2s;
}
.mosaic a.about:hover {
opacity: 1;
}
.mosaic a.about .content {
width: 180px;
margin: auto;
position: relative;
text-align: center;
padding: 35px 0px;
left: 0px;
}
/* --- Home --- Sticky actualites --- */
.sticky-actualites:first-child {
margin-top: -20px;
}
.sticky-actualites a {
display: block;
text-decoration: none;
background-color: #73aaa4;
border: 2px solid #649892;
border-radius: 6px;
padding: 9px 16px;
color: #fff;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 18px;
position: relative;
margin-bottom: 15px;
transition: all ease .3s;
}
.sticky-actualites a:hover {
transition: all ease .1s;
background-color: #649892;
}
.sticky-actualites .title {
position: relative;
transition: all ease .3s;
}
.sticky-actualites .title:before {
content: '';
height: 1px;
background-color: #fff;
width: 100%;
position: absolute;
bottom: 0px;
opacity: .8;
}
.sticky-actualites:hover .title {
margin-left: 10px;
transition: all ease .1s;
}
.sticky-actualites .coming-soon {
font-size: 17px;
opacity: .7;
margin-right: 3px;
margin-left: 24px;
}
.sticky-actualites .coming-soon:before {
content: "\e94e";
font-family: icomoon;
font-size: 16px;
opacity: .6;
position: absolute;
top: 10px;
left: 15px;
z-index: 1;
}
.sticky-actualites .more {
opacity: .8;
position: absolute;
top: 9px;
right: 20px;
transition: all ease .3s;
}
.sticky-actualites:hover .more {
opacity: 1;
right: 14px;
transition: all ease .1s;
}
.sticky-actualites .more:before {
content: "";
width: 0px;
height: 0px;
border: 0.3em solid transparent;
position: absolute;
left: -25px;
top: 4px;
border-left: 9px solid #fff;
opacity: .5;
transition: all ease .3s;
}
.sticky-actualites:hover .more:before {
transition: all ease .1s;
left: -18px;
opacity: 1;
}
/* --- Footer --- */
footer.main {
margin-top: 50px;
background-color: #303336;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 0.5px;
font-weight: 300;
line-height: 1.5;
font-size: 18px;
color: #fff;
cursor: default;
}
footer.main .content {
max-width: 1020px;
margin: auto;
padding: 30px;
padding-top: 55px;
position: relative;
}
footer.main .content .left {
max-width: 600px;
opacity: .7;
display: inline-block;
}
footer.main .copyright {
max-width: 1080px;
margin: auto;
margin-top: 50px;
text-align: center;
color: rgba(255,255,255,.2);
font-size: 15px;
}
footer.main a.admin {
position: absolute;
font-size: 16px;
opacity: 0;
right: 0px;
bottom: 10px;
padding: 18px 50px;
}
footer.main a.admin:hover {
opacity: 1;
}
footer.main a {
text-decoration: none;
color: inherit;
position: relative;
color: rgba(255,255,255,.3);
transition: all ease .2s;
}
footer.main a:hover {
color: rgba(255,255,255,.5);
transition: all ease .1s;
}
footer.main .search:after {
content: "\e986";
font-family: icomoon;
font-size: 16px;
opacity: .2;
position: absolute;
top: 12px;
right: 17px;
z-index: 1;
}
footer.main .search {
display: inline-block;
float: right;
position: relative;
}
footer.main .search input {
-webkit-appearance:none;
border: none;
font-family: 'Roboto Condensed', sans-serif;
background-color: #383d41;
padding: 10px 20px;
padding-right: 50px;
font-size: 20px;
width: 200px;
max-width: 200px;
opacity: .5;
color: #fff;
font-weight: 300;
transition: all ease .5s;
outline: none;
z-index: 20;
}
footer.main .search input:hover {
background-color: #3e4448;
transition: all ease .1s;
}
footer.main .search input:focus {
background-color: #fff;
color: #000;
opacity: 1;
width: 400px;
max-width: 400px;
transition: all ease .3s;
}
/* --- Category Pages --- */
/** CSS is in category "Article" below **/
article.main.page header h1.title {
padding-top: 45px;
max-width: 950px;
border-bottom: 3px solid rgba(250,250,250,0.3);
}
article.main.page.alone header h1.title {
border-bottom: none;
padding-bottom: 40px;
}
article.main.page header h3.cat {
text-transform: none;
max-width: 650px;
border-top: none;
font-size: 24px;
line-height: 1.5;
padding-bottom: 40px;
}
article.main.page header {
margin-top: 30px;
}
article.main.atlas header {
background-color: #A3B960;
}
article.main.saint-leons header {
background-color: #ccc85d;
}
article.main.histoires header {
background-color: #e8c340;
text-shadow: 0px 0px 7px rgba(0,0,0,.2);
}
article.main.migrations header {
background-color: #73aaa4;
}
article.main.carto header {
background-color: #2794BE;
}
article.main.art header {
background-color: #cc5f00;
}
article.main.ressources header {
background-color: #123B57;
}
article.main.actualites header {
background-color: #a7361d;
}
article.main.a-propos header {
background-color: #73aaa4;
}
article.main.page .content {
padding-top: 40px;
}
article.main.page .post, article.main.page.search .search-items {
padding: 30px 50px;
max-width: 784px;
margin: auto;
margin-top: 36px;
background-color: #ede6dc;
}
article.main.page h2.title {
font-family: "Karmina Bold", sans-serif;
text-transform: uppercase;
font-size: 42px;
opacity: .9;
margin-top: 8px;
margin-bottom: 18px;
letter-spacing: 3px;
line-height: 1.2;
}
article.main.page h2.title a {
text-decoration: none;
color: inherit;
transition: opacity ease .3s;
}
article.main.page h2.title a:hover {
opacity: .7;
}
article.main.page .excerpt {
font-family: "Roboto Slab", serif;
font-weight: 300;
font-size: 19px;
padding-top: 18px;
margin-bottom: 23px;
line-height: 1.6;
border-top: 2px solid rgba(0,0,0,.05);
}
article.actualites .excerpt {
margin-bottom: 0;
}
article.actualites .desc {
display: inline-block;
width: 55%;
text-align: justify;
padding-right: 5%;
}
article.actualites .actualites-infos {
display: inline-block;
width: 40%;
vertical-align: top;
background-color: #e3ded8;
color: #969594;
}
article.actualites.single .actualites-infos {
width: 100%;
margin-bottom: -40px;
padding: 30px 0px;
}
article.actualites.single .actualites-infos ul {
margin-bottom: 0px;
max-width: 250px;
}
article.actualites .actualites-infos ul {
padding: 20px 30px;
padding-right: 30px;
text-align: right;
margin: auto;
}
article.actualites .actualites-infos li {
position: relative;
padding-left: 10px;
list-style: none !important;
margin-bottom: 0px !important;
}
article.actualites .actualites-infos li.date {
display: inline-block;
}
article.actualites .actualites-infos li.date:after {
content: '\e953';
position: absolute;
left: -22px;
top: 4px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.time {
float: left;
vertical-align: top;
}
article.actualites .actualites-infos li.time:before {
content: '\e94e';
position: absolute;
left: -13px;
top: 4px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.place {
text-align: left;
margin-top: 17px;
padding-top: 17px;
width: 100%;
border-top: 2px solid rgba(0,0,0,.05);
}
article.actualites .actualites-infos li.place:before {
content: '\e947';
position: absolute;
left: -13px;
top: 22px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.city {
text-align: left;
}
article.actualites a.read-more {
display: block;
width: 55%;
margin-top: -53px;
color: #fff;
text-decoration: none;
font-family: 'Roboto Condensed', sans-serif;
font-size: 21px;
padding: 10px 0px;
text-align: center;
opacity: 1;
transition: opacity ease .3s;
}
article.actualites a.read-more.break {
margin-top: 0px;
width: 100%;
display: none;
}
article.actualites a.read-more:hover {
opacity: .9;
transition: opacity ease .1s;
}
article.main.page footer {
max-width: 816px;
margin: auto;
position: relative;
margin-top: 35px;
}
article.main.page footer .bar {
width: 100%;
height: 28px;
border-radius: 28px;
background-color: #e3ded8;
opacity: .6;
}
article.main.page footer .bar p {
position: absolute;
top: 6px;
right: 170px;
font-family: 'Roboto Slab', sans-serif;
font-weight: 400;
font-size: 16px;
opacity: .3;
}
article.main.page footer .bar p:before {
content: '\e953';
position: absolute;
left: -22px;
top: 0px;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.main.page footer .bar.sticky p:before {
content: '\e946';
}
article.main.page footer .read-more {
position: absolute;
top: -9px;
right: 0px;
font-family: "Roboto Condensed", sans-serif;
text-decoration: none;
color: #fff;
padding: 12px 26px;
padding-right: 38px;
background-color: #73aaa4;
font-size: 21px;
font-weight: 300;
border-radius: 30px;
transition: all ease .3s;
}
article.main.page article.atlas footer .read-more, article.main.page .more a.atlas {
background-color: #A3B960;
}
article.main.page article.saint-leons footer .read-more, article.main.page .more a.saint-leons {
background-color: #ccc85d;
}
article.main.page article.histoires footer .read-more, article.main.page .more a.histoires {
background-color: #e8c340;
text-shadow: 0px 0px 7px rgba(0,0,0,.1);
}
article.main.page article.migrations footer .read-more, article.main.page .more a.migrations {
background-color: #73aaa4;
}
article.main.page article.carto footer .read-more, article.main.page .more a.carto {
background-color: #2794BE;
}
article.main.page article.art footer .read-more, article.main.page .more a.art {
background-color: #cc5f00;
}
article.main.page article.ressources footer .read-more, article.main.page .more a.ressources {
background-color: #123B57;
}
article.actualites .read-more, article.main.page .more a.actualites {
background-color: #a7361d;
}
article.main.page footer .read-more:hover {
padding: 12px 24px;
padding-left: 40px;
transition: all ease .1s;
}
article.main.page footer .read-more:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
right: 8px;
top: 16px;
border-left: 10px solid #fff;
opacity: .6;
transition: all ease .3s;
}
article.main.page footer .read-more:hover:after {
right: -8px;
opacity: 0;
transition: all ease .1s;
}
article.main.page footer .read-more:before {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
left: 0px;
top: 16px;
border-left: 10px solid #fff;
opacity: 0;
transition: all ease .3s;
}
article.main.page footer .read-more:hover:before {
left: 20px;
opacity: .6;
transition: all ease .1s;
}
article.post.error .title {
color: #520000;
}
article.main.page .more a {
max-width: 784px;
margin: auto;
display: block;
padding: 15px 50px;
border-radius: 15px;
text-align: center;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: .2px;
margin-top: 46px;
font-size: 21px;
font-weight: 300;
position: relative;
text-decoration: none;
color: #fff;
transition: opacity ease .3s;
}
article.main.page .more a:hover {
opacity: .9;
transition: opacity ease .1s;
}
article.main.page .more a:before, article.main.page .more a:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
left: 20px;
top: 20px;
border-top: 10px solid #fff;
opacity: .6;
transition: all ease .3s;
}
article.main.page .more a:after {
left: auto;
right: 20px;
}
article.main.page .more a:hover:before, article.main.page .more a:hover:after {
top: 24px;
transition: all ease .1s;
}
article.main.page nav.pagination {
max-width: 884px;
margin: auto;
margin-top: 20px;
}
article.main.page nav.pagination div {
display: inline-block;
}
article.main.page nav.pagination a {
width: 140px;
text-align: center;
display: block;
font-family: 'Roboto Condensed', sans-serif;
text-decoration: none;
color: #363636;
background-color: #F1ECE5;
padding: 20px 0px;
font-size: 21px;
font-weight: 400;
border: 2px solid #efeae3;
border-right: 2px solid #e0dbd4;
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
opacity: .6;
margin-right: -2px;
transition: opacity ease .3s;
}
article.main.page nav.pagination a:hover {
opacity: 1;
transition: opacity ease .1s;
}
article.main.page nav.pagination div.next a {
border-radius: 50px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-right: none;
border-left: 2px solid #e0dbd4;
}
/* --- Search --- */
article.main.page.search .search-items {
font-family: 'Roboto Condensed', sans-serif;
}
article.main.page.search .search-items li {
font-size: 21px;
margin: 40px 0px;
transition: all ease .3s;
}
article.main.page.search .search-items li a {
padding: 3px 0px;
display: inline-block;
}
article.main.page.search .search-items li:before {
content: '›';
margin-right: 13px;
opacity: .2;
transition: all ease .3s;
}
article.main.page.search .search-items li:after {
content: '';
max-width: 100px;
border-top: 2px solid #e0dbd4;
opacity: 1;
}
article.main.page.search .search-items li:hover {
padding-left: 8px;
transition: all ease .1s;
}
article.main.page.search .search-items li:hover:before {
margin-right: 10px;
opacity: .8;
transition: all ease .1s;
}
article.main.page.search .search-items li:first-child, article.main.page.search .search-items li:last-child {
margin: 0px;
}
/* --- Article --- */
article.main header {
background-color: #D05A3E;
color: #fff;
text-align: center;
cursor: default;
}
article.main header h1.title {
font-size: 50px;
max-width: 730px;
margin: auto;
padding: 20px;
padding-top: 40px;
line-height: 1.2;
padding-bottom: 30px;
font-family: "Karmina Bold", sans-serif;
letter-spacing: 3px;
}
article.main header h3.cat {
font-size: 25px;
max-width: 950px;
margin: auto;
padding: 30px 0;
font-family: "Roboto Condensed", sans-serif;
text-transform: uppercase;
border-top: 3px solid rgba(255,255,255,0.4);
font-weight: 300;
}
article.main .content {
margin: auto;
padding-bottom: 40px;
max-width: 884px;
background-color: #F1ECE5;
color: #363636;
font-size: 19px;
font-family: 'Roboto Slab', Roboto, sans-serif;
font-weight: 300;
line-height: 1.5;
}
article.main .content .infos {
font-size: 16px;
background-color: rgba(0,0,0,.1);
padding: 10px 40px;
text-align: center;
opacity: .5;
margin-bottom: 40px;
position: relative;
}
article.main .content .infos p {
margin-bottom: 0px;
padding: 0px;
display: inline-block;
}
article.main .content .infos p.right {
position: absolute;
top: 9px;
right: 20px;
opacity: .5;
}
article.main .content p {
margin-bottom: 25px;
padding: 0px 60px;
}
article.main .content p:last-child {
margin-bottom: 0px;
}
article.main .content a, article.main.page.search .search-items a {
color: #2f3b62;
cursor: pointer;
text-decoration: none;
border-bottom: 1px solid #bec1cb;
font-weight: 600;
font-style: normal;
}
article.main .content a:hover, article.main.page.search .search-items a:hover {
text-decoration: none;
border-color: #282d3e;
}
article.main .content h1 {
font-size: 28px;
font-family: "Roboto Condensed", Roboto, sans-serif;
font-weight: 600;
margin-bottom: 35px;
padding: 0px 60px;
}
article.main .content h2 {
font-size: 22px;
font-family: "Roboto Condensed", Roboto, sans-serif;
font-weight: 400;
margin-bottom: 35px;
padding: 0px 60px;
}
article.main .content em {
font-style: italic;
}
article.main .content ul, article.main .content ol {
padding: 0px 60px;
margin-bottom: 40px;
padding-left: 80px;
}
article.main .content li {
list-style: disc inside;
margin-bottom: 2px;
}
article.main .content strong, article.main .content b {
font-weight: 600;
}
article.main .content blockquote {
background-color: rgba(0,0,0,.1);
opacity: .9;
position: relative;
}
article.main .content blockquote p {
padding: 20px 80px;
font-style: italic;
font-weight: 400;
}
article.main .content blockquote:before {
content: '“';
position: absolute;
top: -20px;
left: 20px;
font-size: 100px;
font-family: serif;
opacity: .1;
}
article.main .content figure {
position: relative;
}
article.main .content code {
background-color: #e5edec;
padding: 4px 7px;
border-radius: 2px;
border: 1px solid #c5d8d5;
font-size: 16px;
font-family: monospace;
opacity: .8;
}
article.main .content pre {
background-color: #e5edec;
padding: 15px 15px;
border-radius: 2px;
border: 1px solid #c5d8d5;
opacity: .8;
margin: 0px 60px;
}
article.main .content pre code {
background-color: none;
padding: none;
border: none;
font-size: 16px;
font-family: monospace;
opacity: 1;
}
article.main .content img {
max-width: 100%;
margin: auto;
}
/* --- Page 404 --- */
.not-found {
text-align: center;
font-family: 'Roboto Condensed', sans-serif;
margin-top: 15%;
}
.not-found h1 {
font-size: 150px;
font-family: 'Reef', sans-serif;
}
.not-found h3 {
margin-top: 10px;
font-size: 20px;
}
@keyframes not-found {
0% {opacity: 1;}
33% {opacity: .6}
66% {opacity: 1;}
}
.not-found h1 span {
animation-name: not-found;
animation-duration: 2s;
animation-iteration-count: infinite;
}
.not-found h1 span:nth-child(2) {
animation-delay: .1s;
}
.not-found h1 span:nth-child(3) {
animation-delay: .2s;
}
.not-found a {
max-width: 280px;
margin: auto;
display: block;
font-size: 27px;
font-family: Reef, sans-serif;
text-transform: uppercase;
opacity: 0.8;
background-color: #E9E9E9;
padding: 12px 37px;
padding-top: 14px;
border-radius: 30px;
cursor: pointer;
transition: all ease .3s;
text-decoration: none;
color: #000;
margin-top: 20px;
}
.not-found a:hover {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
.not-found a:active {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1), inset 2px 2px 20px rgba(0,0,0,.1);
}
/* --- Comments --- */
.content .comments {
border-top: 4px dotted rgba(0,0,0,.1);
padding-top: 40px;
margin-top: 60px;
}
.content .comments h2.title {
font-family: 'Karmina Bold', 'Roboto Condensed';
font-size: 50px;
letter-spacing: 3px;
padding: 0px 60px;
}
.content .comments .commentlist {
padding: 0px 60px;
}
.content .comments .commentlist li {
list-style: none;
position: relative;
margin-bottom: 30px;
}
.content .comments .commentlist .comment-infos {
margin-bottom: 15px;
}
.content .comments .commentlist .comment-infos h2.author {
padding: 0px 0px;
margin-bottom: -10px;
font-family: "Karmina Bold", "Roboto Condensed", sans-serif;
letter-spacing: 2px;
font-size: 30px;
}
.content .comments .commentlist .comment-infos time {
opacity: .5;
font-size: 15px;
}
.content .comments .commentlist li .comment-content {
background-color: #fcfcfc;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #555f77;
font-size: 16px;
padding: 25px 4%;
}
.content .comments .commentlist li .comment-content:before {
content: "";
width: 0px;
height: 0px;
border: .6em solid transparent;
position: absolute;
left: 30px;
top: -18px;
border-bottom: 10px solid #fcfcfc;
}
.content .comments .commentlist li .comment-content.author {
background-color: #dee6e5;
}
.content .comments .commentlist li .comment-content.author:before {
border-bottom-color: #dee6e5;
}
.content .comments .commentlist li .comment-content p {
padding: 0px;
margin-bottom: 15px;
}
.content .comments .commentlist li .comment-content h1, .content .comments .commentlist li .comment-content h2, .content .comments .commentlist li .comment-content h3, .content .comments .commentlist li .comment-content h4 {
font-size: 16px;
text-transform: none;
padding: 0px;
margin-bottom: inherit;
padding-bottom: inherit;
font-family: inherit;
font-weight: inherit;
}
.content .comments .commentlist li .comment-content p:last-child {
margin-bottom: 0px;
}
.content form#comment {
margin-top: 70px;
margin: 0px 60px;
}
.content form#comment p {
padding: 0px 0px;
}
.content form#comment .notifications {
font-size: 16px;
}
.content form#comment .notifications p {
color: #fff;
background-color: #9d3333;
border-radius: 4px;
margin-bottom: 20px;
padding: 10px 15px;
}
.content form#comment .notifications p.success {
background-color: #85bf73;
}
.content form#comment input, .content form#comment textarea {
background-color: #fcfcfc;
border: none;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #555f77;
font-family: inherit;
font-size: 16px;
padding: 15px 3%;
outline: none;
}
.content form#comment input {
display: inline-block;
width: 42%;
}
.content form#comment input:first-child {
margin-right: 2%;
}
.content form#comment .textarea textarea {
width: 100%;
max-width: 93%;
height: 120px;
max-height: 320px;
}
.content form#comment .textarea .format {
display: block;
width: auto;
font-size: 14px;
}
.content form#comment .textarea .format .right {
float: right;
opacity: .6;
}
.content form#comment .textarea .format code {
font-size: 14px;
}
.content form#comment .submit button {
width: 100%;
background-color: #fcfcfc;
border: none;
border-radius: 5px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #fff;
background-color: #555f77;
margin-top: 20px;
font-size: 16px;
padding: 15px 3%;
outline: none;
cursor: pointer;
transition: all ease .3s;
position: relative;
}
.content form#comment .submit button:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
right: 24px;
top: 20px;
border-left: 10px solid #fff;
opacity: .2;
transition: all ease .3s;
}
.content form#comment .submit button:hover {
transition: all ease .1s;
background-color: #85bf73;
}
.content form#comment .submit button:hover:after {
right: 18px;
opacity: .8;
transition: all ease .1s;
}
@media screen and (max-width: 1050px) {
.wrap-main {
margin-top: 10px;
}
header.main .menu {
float: none;
bottom: -0px;
max-width: 870px;
width: 100%;
margin: auto !important;
position: relative;
}
header.main .menu div#menu-btn {
width: 100%;
opacity: 1;
border-radius: 0px;
background-color: #ddd;
padding: 7px 0px;
padding-top: 9px;
text-align: center;
}
header.main .menu div#menu-btn.show {
padding: 7px 0px;
padding-top: 9px;
transition-delay: .2s;
}
header.main .menu ul {
margin-top: -50px;
margin-bottom: 50px;
border-radius: 0px;
padding: 5px 0px;
position: relative;
visibility: hidden;
height: 0px;
width: 100%;
opacity: 0;
transition: visibility 0s linear .2s, opacity .2s ease, top .2s ease;
}
header.main .menu ul.show {
height: auto;
margin-bottom: 80px;
}
header.main .menu li {
padding: 0px 20px;
}
.sticky-actualites:first-child {
margin-top: 0px;
}
.sticky-actualites:first-child a {
border-radius: 0px;
text-align: center;
}
.sticky-actualites a .title:before {
display: none;
}
.sticky-actualites a .more {
display: none;
}
article.main.page .more a {
border-radius: 0px;
}
article.main.page nav.pagination a {
border-radius: 0px !important;
width: 100%;
border: none;
margin-right: 0px;
}
article.main.page nav.pagination div {
width: 50%;
display: inline-block;
border-top: 2px solid #efeae3;
border-bottom: 2px solid #efeae3;
}
footer.main {
text-align: center;
}
footer.main .content .left {
max-width: 100%;
}
footer.main .search {
display: block;
max-width: 400px;
margin: auto;
margin-top: 40px;
float: none;
}
footer.main .search:after {
top: 21px;
}
footer.main .search input {
width: 100%;
max-width: 400px;
padding-top: 20px;
padding-bottom: 20px;
}
footer.main .search input:focus {
width: 100%;
max-width: 400px;
}
footer.main .copyright {
margin-top: 40px;
}
footer.main .admin {
display: none;
}
}
@media screen and (max-width: 850px) {
article.main.page article.actualites .desc {
display: block;
width: 100%;
text-align: justify;
padding-right: 5%;
}
article.main.page article.actualites .actualites-infos {
display: block;
width: 100%;
max-width: 360px;
margin: auto;
margin-top: 30px;
}
article.main.page article.actualites a.read-more {
display: none;
}
article.main.page article.actualites a.read-more.break {
display: block;
}
}
@media screen and (max-width: 780px) {
.mosaic a {
display: block;
width: 100%;
margin-right: 0px;
margin-bottom: 8px;
}
article.main .content p {
padding: 0px 30px;
text-align: justify;
font-size: 18px;
}
article.main .content .infos p.right {
display: none;
}
.content .comments .commentlist {
padding: 0px 30px;
}
.content .comments .commentlist li .comment-content {
padding: 15px 4%;
}
}
@media screen and (max-width: 420px) {
article.main header h1.title {
font-size: 3.5em;
}
article.main header .infos p {
font-size: 17px;
text-align: center;
}
article.main .content h1 {
padding: 0px 30px;
}
article.main .content h2, article.main .content h3 {
padding: 0px 20px;
}
article.main .content p {
padding: 0px 13px;
font-size: 17px;
line-height: 1.2;
}
.content .comments .commentlist {
padding: 0px 13px;
}
} | style/main.css | body {
background-color: #F5F3F0;
display: flex;
min-height: 100vh;
flex-direction: column;
}
header.main {
width: 100%;
max-width: 970px;
margin: auto;
position: relative;
}
header.main .logo {
display: block;
max-width: 420px; height: 160px;
margin: 20px auto;
background: url(res/logo.png) no-repeat;
background-size: 100% auto;
}
/* --- Menu --- */
header.main .menu {
position: absolute;
top: 30%;
}
header.main .menu div#menu-btn {
font-size: 29px;
outline: none;
border: none;
font-family: Reef, sans-serif;
text-transform: uppercase;
opacity: 0.8;
background-color: #E9E9E9;
padding: 7px 0px;
padding-top: 9px;
padding-left: 52px;
padding-right: 22px;
border-radius: 30px;
cursor: pointer;
transition: all ease .3s;
position: relative;
}
header.main .menu div#menu-btn .hamburger {
width: 20px; height: auto;
position: absolute;
top: 14px;
left: 20px;
}
header.main .menu div#menu-btn .hamburger span {
display: block;
opacity: .8;
width: 100%; height: 3px;
background-color: #000;
margin-bottom: 4px;
border-radius: 6px;
transition: all ease .3s;
}
header.main .menu div#menu-btn:hover, header.main .menu div#menu-btn.show {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
header.main .menu div#menu-btn.show {
padding: 7px 37px;
padding-top: 9px;
transition: padding ease .2s;
transition-delay: .1s;
}
header.main .menu div#menu-btn:hover .hamburger span {
background-color: #fff;
transition: all ease .1s;
}
header.main .menu div#menu-btn.show .hamburger span {
width: 0px;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(1) {
transition-delay: 0s;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(2) {
transition-delay: .05s;
}
header.main .menu div#menu-btn.show .hamburger span:nth-child(3) {
transition-delay: .1s;
}
header.main .menu div#menu-btn:active {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1), inset 2px 2px 20px rgba(0,0,0,.1);
}
header.main .menu ul:before {
content: "";
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
left: 20%;
top: -22px;
border-bottom: 10px solid #73aaa4;
}
header.main .menu ul {
font-family: "Roboto Condensed", sans-serif;
line-height: 1.5;
background-color: #73aaa4;
border-radius: 10px;
padding: 5px 22px;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
position: absolute;
visibility: hidden;
top: 60px;
width: 230px;
opacity: 0;
transition: visibility 0s linear .2s, opacity .2s ease, top .2s ease;
z-index: 1000;
}
header.main .menu ul.show {
visibility: visible;
top: 70px;
opacity: 1;
transition: visibility 0s linear 0s, opacity .1s ease, top .1s ease;
}
header.main .menu ul a {
display: block;
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 24px;
padding: 10px 12px;
border-bottom: 1px solid rgba(0,0,0,.1);
position: relative;
transition: all ease .15s;
}
header.main .menu ul a:before {
content: "";
font-size: 9px;
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
left: -20px;
top: 21px;
border-left: 10px solid #fff;
opacity: 0;
transition: all ease .15s;
}
header.main .menu ul li:first-child a {
}
header.main .menu ul li:first-child a:after {
content: '\e900';
position: absolute;
right: 13px;
top: 15px;
opacity: .4;
font-size: 17px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
header.main .menu ul li:last-child a {
border: none;
}
header.main .menu ul a:hover {
padding-left: 20px;
padding-right: 4px;
}
header.main .menu ul a:hover:before {
left: 2px;
opacity: .7;
}
/* --- Home --- */
.wrap-main {
width: 100%;
max-width: 870px;
margin: 40px auto;
flex: 1 0 auto;
}
.mosaic a.atlas {
background: url(res/atlas.png) #A3B960;
}
.mosaic a.saint-leons {
background: url(res/saint-leons.png) #ccc85d;
}
.mosaic a.histoires {
background: url(res/histoires.png) #e8c340;
}
.mosaic a.migrations {
background: url(res/migrations-2.png) #73aaa4;
}
.mosaic a.carto {
background: url(res/carto.png) #2794BE;
}
.mosaic a.art {
background: url(res/art.png) #cc5f00;
}
.mosaic a.ressources {
background: #123B57;
}
.mosaic a.actualites {
background: url(res/event.png) #a7361d;
}
.mosaic a {
display: inline-block;
width: 49.5%;
margin-right: 1%;
height: 310px;
background-color: #73aaa4;
font-family: 'Roboto Condensed';
text-decoration: none;
color: #fff;
position: relative;
background-size: 104% !important;
transition: background-size ease .2s;
margin-bottom: 6px;
}
.mosaic a:nth-child(even) {
margin-right: 0%;
}
.mosaic a:hover {
background-size: 102% !important;
}
.mosaic a .content {
width: 85%;
position: absolute;
top: 30%;
right: 40px;
text-align: right;
}
.mosaic a .content h1 {
text-transform: uppercase;
font-size: 40px;
transition: margin ease .2s;
position: relative;
}
.mosaic a .content h1::before {
content: "";
font-size: 9px;
width: 0px;
height: 0px;
border: 0.8em solid transparent;
position: absolute;
top: 16px;
opacity: 0;
transition: all ease .2s;
}
.mosaic a:nth-child(odd) .content h1::before {
left: -30px;
border-left: 10px solid #fff;
}
.mosaic a:nth-child(even) .content h1::before {
right: -30px;
border-right: 10px solid #fff;
}
.mosaic a:hover .content h1 {
margin-left: 7px;
}
.mosaic a:nth-child(even):hover .content h1 {
margin-right: 7px;
}
.mosaic a:nth-child(odd):hover .content h1::before {
left: -18px;
opacity: .7;
}
.mosaic a:nth-child(even):hover .content h1::before {
right: -18px;
opacity: .7;
}
.mosaic a .content h3 {
font-size: 18px;
font-weight: 300;
margin-top: 16px;
line-height: 1.3;
}
.mosaic a:nth-child(odd) .content {
left: 40px;
text-align: left;
}
/* --- Home --- À propos --- */
.mosaic a.about {
width: 100%;
height: auto;
text-transform: uppercase;
font-size: 35px;
padding: 0px;
opacity: 0.7;
transition: opacity ease .2s;
}
.mosaic a.about:hover {
opacity: 1;
}
.mosaic a.about .content {
width: 180px;
margin: auto;
position: relative;
text-align: center;
padding: 35px 0px;
left: 0px;
}
/* --- Home --- Sticky actualites --- */
.sticky-actualites:first-child {
margin-top: -20px;
}
.sticky-actualites a {
display: block;
text-decoration: none;
background-color: #73aaa4;
border: 2px solid #649892;
border-radius: 6px;
padding: 9px 16px;
color: #fff;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 18px;
position: relative;
margin-bottom: 15px;
transition: all ease .3s;
}
.sticky-actualites a:hover {
transition: all ease .1s;
background-color: #649892;
}
.sticky-actualites .title {
position: relative;
transition: all ease .3s;
}
.sticky-actualites .title:before {
content: '';
height: 1px;
background-color: #fff;
width: 100%;
position: absolute;
bottom: 0px;
opacity: .8;
}
.sticky-actualites:hover .title {
margin-left: 10px;
transition: all ease .1s;
}
.sticky-actualites .coming-soon {
font-size: 17px;
opacity: .7;
margin-right: 3px;
margin-left: 24px;
}
.sticky-actualites .coming-soon:before {
content: "\e94e";
font-family: icomoon;
font-size: 16px;
opacity: .6;
position: absolute;
top: 10px;
left: 15px;
z-index: 1;
}
.sticky-actualites .more {
opacity: .8;
position: absolute;
top: 9px;
right: 20px;
transition: all ease .3s;
}
.sticky-actualites:hover .more {
opacity: 1;
right: 14px;
transition: all ease .1s;
}
.sticky-actualites .more:before {
content: "";
width: 0px;
height: 0px;
border: 0.3em solid transparent;
position: absolute;
left: -25px;
top: 4px;
border-left: 9px solid #fff;
opacity: .5;
transition: all ease .3s;
}
.sticky-actualites:hover .more:before {
transition: all ease .1s;
left: -18px;
opacity: 1;
}
/* --- Footer --- */
footer.main {
margin-top: 50px;
background-color: #303336;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 0.5px;
font-weight: 300;
line-height: 1.5;
font-size: 18px;
color: #fff;
cursor: default;
}
footer.main .content {
max-width: 1020px;
margin: auto;
padding: 30px;
padding-top: 55px;
position: relative;
}
footer.main .content .left {
max-width: 600px;
opacity: .7;
display: inline-block;
}
footer.main .copyright {
max-width: 1080px;
margin: auto;
margin-top: 50px;
text-align: center;
color: rgba(255,255,255,.2);
font-size: 15px;
}
footer.main a.admin {
position: absolute;
font-size: 16px;
opacity: 0;
right: 0px;
bottom: 10px;
padding: 18px 50px;
}
footer.main a.admin:hover {
opacity: 1;
}
footer.main a {
text-decoration: none;
color: inherit;
position: relative;
color: rgba(255,255,255,.3);
transition: all ease .2s;
}
footer.main a:hover {
color: rgba(255,255,255,.5);
transition: all ease .1s;
}
footer.main .search:after {
content: "\e986";
font-family: icomoon;
font-size: 16px;
opacity: .2;
position: absolute;
top: 12px;
right: 17px;
z-index: 1;
}
footer.main .search {
display: inline-block;
float: right;
position: relative;
}
footer.main .search input {
-webkit-appearance:none;
border: none;
font-family: 'Roboto Condensed', sans-serif;
background-color: #383d41;
padding: 10px 20px;
padding-right: 50px;
font-size: 20px;
width: 200px;
max-width: 200px;
opacity: .5;
color: #fff;
font-weight: 300;
transition: all ease .5s;
outline: none;
z-index: 20;
}
footer.main .search input:hover {
background-color: #3e4448;
transition: all ease .1s;
}
footer.main .search input:focus {
background-color: #fff;
color: #000;
opacity: 1;
width: 400px;
max-width: 400px;
transition: all ease .3s;
}
/* --- Category Pages --- */
/** CSS is in category "Article" below **/
article.main.page header h1.title {
padding-top: 45px;
max-width: 950px;
border-bottom: 3px solid rgba(250,250,250,0.3);
}
article.main.page.alone header h1.title {
border-bottom: none;
padding-bottom: 40px;
}
article.main.page header h3.cat {
text-transform: none;
max-width: 650px;
border-top: none;
font-size: 24px;
line-height: 1.5;
padding-bottom: 40px;
}
article.main.page header {
margin-top: 30px;
}
article.main.atlas header {
background-color: #A3B960;
}
article.main.saint-leons header {
background-color: #ccc85d;
}
article.main.histoires header {
background-color: #e8c340;
text-shadow: 0px 0px 7px rgba(0,0,0,.2);
}
article.main.migrations header {
background-color: #73aaa4;
}
article.main.carto header {
background-color: #2794BE;
}
article.main.art header {
background-color: #cc5f00;
}
article.main.ressources header {
background-color: #123B57;
}
article.main.actualites header {
background-color: #a7361d;
}
article.main.a-propos header {
background-color: #73aaa4;
}
article.main.page .content {
padding-top: 40px;
}
article.main.page .post, article.main.page.search .search-items {
padding: 30px 50px;
max-width: 784px;
margin: auto;
margin-top: 36px;
background-color: #ede6dc;
}
article.main.page h2.title {
font-family: "Karmina Bold", sans-serif;
text-transform: uppercase;
font-size: 42px;
opacity: .9;
margin-top: 8px;
margin-bottom: 18px;
letter-spacing: 3px;
line-height: 1.2;
}
article.main.page h2.title a {
text-decoration: none;
color: inherit;
transition: opacity ease .3s;
}
article.main.page h2.title a:hover {
opacity: .7;
}
article.main.page .excerpt {
font-family: "Roboto Slab", serif;
font-weight: 300;
font-size: 19px;
padding-top: 18px;
margin-bottom: 23px;
line-height: 1.6;
border-top: 2px solid rgba(0,0,0,.05);
}
article.actualites .excerpt {
margin-bottom: 0;
}
article.actualites .desc {
display: inline-block;
width: 55%;
text-align: justify;
padding-right: 5%;
}
article.actualites .actualites-infos {
display: inline-block;
width: 40%;
vertical-align: top;
background-color: #e3ded8;
color: #969594;
}
article.actualites.single .actualites-infos {
width: 100%;
margin-bottom: -40px;
padding: 30px 0px;
}
article.actualites.single .actualites-infos ul {
margin-bottom: 0px;
max-width: 250px;
}
article.actualites .actualites-infos ul {
padding: 20px 30px;
padding-right: 30px;
text-align: right;
margin: auto;
}
article.actualites .actualites-infos li {
position: relative;
padding-left: 10px;
list-style: none !important;
margin-bottom: 0px !important;
}
article.actualites .actualites-infos li.date {
display: inline-block;
}
article.actualites .actualites-infos li.date:after {
content: '\e953';
position: absolute;
left: -22px;
top: 4px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.time {
float: left;
vertical-align: top;
}
article.actualites .actualites-infos li.time:before {
content: '\e94e';
position: absolute;
left: -13px;
top: 4px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.place {
text-align: left;
margin-top: 17px;
padding-top: 17px;
width: 100%;
border-top: 2px solid rgba(0,0,0,.05);
}
article.actualites .actualites-infos li.place:before {
content: '\e947';
position: absolute;
left: -13px;
top: 22px;
opacity: .8;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.actualites .actualites-infos li.city {
text-align: left;
}
article.actualites a.read-more {
display: block;
width: 55%;
margin-top: -53px;
color: #fff;
text-decoration: none;
font-family: 'Roboto Condensed', sans-serif;
font-size: 21px;
padding: 10px 0px;
text-align: center;
opacity: 1;
transition: opacity ease .3s;
}
article.actualites a.read-more.break {
margin-top: 0px;
width: 100%;
display: none;
}
article.actualites a.read-more:hover {
opacity: .9;
transition: opacity ease .1s;
}
article.main.page footer {
max-width: 816px;
margin: auto;
position: relative;
margin-top: 35px;
}
article.main.page footer .bar {
width: 100%;
height: 28px;
border-radius: 28px;
background-color: #e3ded8;
opacity: .6;
}
article.main.page footer .bar p {
position: absolute;
top: 6px;
right: 170px;
font-family: 'Roboto Slab', sans-serif;
font-weight: 400;
font-size: 16px;
opacity: .3;
}
article.main.page footer .bar p:before {
content: '\e953';
position: absolute;
left: -22px;
top: 0px;
font-size: 15px;
font-family: icomoon;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
}
article.main.page footer .bar.sticky p:before {
content: '\e946';
}
article.main.page footer .read-more {
position: absolute;
top: -9px;
right: 0px;
font-family: "Roboto Condensed", sans-serif;
text-decoration: none;
color: #fff;
padding: 12px 26px;
padding-right: 38px;
background-color: #73aaa4;
font-size: 21px;
font-weight: 300;
border-radius: 30px;
transition: all ease .3s;
}
article.main.page article.atlas footer .read-more, article.main.page .more a.atlas {
background-color: #A3B960;
}
article.main.page article.saint-leons footer .read-more, article.main.page .more a.saint-leons {
background-color: #ccc85d;
}
article.main.page article.histoires footer .read-more, article.main.page .more a.histoires {
background-color: #e8c340;
text-shadow: 0px 0px 7px rgba(0,0,0,.1);
}
article.main.page article.migrations footer .read-more, article.main.page .more a.migrations {
background-color: #73aaa4;
}
article.main.page article.carto footer .read-more, article.main.page .more a.carto {
background-color: #2794BE;
}
article.main.page article.art footer .read-more, article.main.page .more a.art {
background-color: #cc5f00;
}
article.main.page article.ressources footer .read-more, article.main.page .more a.ressources {
background-color: #123B57;
}
article.actualites .read-more, article.main.page .more a.actualites {
background-color: #a7361d;
}
article.main.page footer .read-more:hover {
padding: 12px 24px;
padding-left: 40px;
transition: all ease .1s;
}
article.main.page footer .read-more:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
right: 8px;
top: 16px;
border-left: 10px solid #fff;
opacity: .6;
transition: all ease .3s;
}
article.main.page footer .read-more:hover:after {
right: -8px;
opacity: 0;
transition: all ease .1s;
}
article.main.page footer .read-more:before {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
left: 0px;
top: 16px;
border-left: 10px solid #fff;
opacity: 0;
transition: all ease .3s;
}
article.main.page footer .read-more:hover:before {
left: 20px;
opacity: .6;
transition: all ease .1s;
}
article.post.error .title {
color: #520000;
}
article.main.page .more a {
max-width: 784px;
margin: auto;
display: block;
padding: 15px 50px;
border-radius: 15px;
text-align: center;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: .2px;
margin-top: 46px;
font-size: 21px;
font-weight: 300;
position: relative;
text-decoration: none;
color: #fff;
transition: opacity ease .3s;
}
article.main.page .more a:hover {
opacity: .9;
transition: opacity ease .1s;
}
article.main.page .more a:before, article.main.page .more a:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
left: 20px;
top: 20px;
border-top: 10px solid #fff;
opacity: .6;
transition: all ease .3s;
}
article.main.page .more a:after {
left: auto;
right: 20px;
}
article.main.page .more a:hover:before, article.main.page .more a:hover:after {
top: 24px;
transition: all ease .1s;
}
article.main.page nav.pagination {
max-width: 884px;
margin: auto;
margin-top: 20px;
}
article.main.page nav.pagination div {
display: inline-block;
}
article.main.page nav.pagination a {
width: 140px;
text-align: center;
display: block;
font-family: 'Roboto Condensed', sans-serif;
text-decoration: none;
color: #363636;
background-color: #F1ECE5;
padding: 20px 0px;
font-size: 21px;
font-weight: 400;
border: 2px solid #efeae3;
border-right: 2px solid #e0dbd4;
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
opacity: .6;
margin-right: -2px;
transition: opacity ease .3s;
}
article.main.page nav.pagination a:hover {
opacity: 1;
transition: opacity ease .1s;
}
article.main.page nav.pagination div.next a {
border-radius: 50px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-right: none;
border-left: 2px solid #e0dbd4;
}
/* --- Search --- */
article.main.page.search .search-items {
font-family: 'Roboto Condensed', sans-serif;
}
article.main.page.search .search-items li {
font-size: 21px;
margin: 40px 0px;
transition: all ease .3s;
}
article.main.page.search .search-items li a {
padding: 3px 0px;
display: inline-block;
}
article.main.page.search .search-items li:before {
content: '›';
margin-right: 13px;
opacity: .2;
transition: all ease .3s;
}
article.main.page.search .search-items li:after {
content: '';
max-width: 100px;
border-top: 2px solid #e0dbd4;
opacity: 1;
}
article.main.page.search .search-items li:hover {
padding-left: 8px;
transition: all ease .1s;
}
article.main.page.search .search-items li:hover:before {
margin-right: 10px;
opacity: .8;
transition: all ease .1s;
}
article.main.page.search .search-items li:first-child, article.main.page.search .search-items li:last-child {
margin: 0px;
}
/* --- Article --- */
article.main header {
background-color: #D05A3E;
color: #fff;
text-align: center;
cursor: default;
}
article.main header h1.title {
font-size: 50px;
max-width: 730px;
margin: auto;
padding: 20px;
padding-top: 40px;
line-height: 1.2;
padding-bottom: 30px;
font-family: "Karmina Bold", sans-serif;
letter-spacing: 3px;
}
article.main header h3.cat {
font-size: 25px;
max-width: 950px;
margin: auto;
padding: 30px 0;
font-family: "Roboto Condensed", sans-serif;
text-transform: uppercase;
border-top: 3px solid rgba(255,255,255,0.4);
font-weight: 300;
}
article.main .content {
margin: auto;
padding-bottom: 40px;
max-width: 884px;
background-color: #F1ECE5;
color: #363636;
font-size: 19px;
font-family: 'Roboto Slab', Roboto, sans-serif;
font-weight: 300;
line-height: 1.5;
}
article.main .content .infos {
font-size: 16px;
background-color: rgba(0,0,0,.1);
padding: 10px 40px;
text-align: center;
opacity: .5;
margin-bottom: 40px;
position: relative;
}
article.main .content .infos p {
margin-bottom: 0px;
padding: 0px;
display: inline-block;
}
article.main .content .infos p.right {
position: absolute;
top: 9px;
right: 20px;
opacity: .5;
}
article.main .content p {
margin-bottom: 25px;
padding: 0px 60px;
}
article.main .content p:last-child {
margin-bottom: 0px;
}
article.main .content a, article.main.page.search .search-items a {
color: #2f3b62;
cursor: pointer;
text-decoration: none;
border-bottom: 1px solid #bec1cb;
font-weight: 600;
font-style: normal;
}
article.main .content a:hover, article.main.page.search .search-items a:hover {
text-decoration: none;
border-color: #282d3e;
}
article.main .content h1 {
font-size: 28px;
font-family: "Roboto Condensed", Roboto, sans-serif;
font-weight: 600;
margin-bottom: 35px;
padding: 0px 60px;
}
article.main .content h2 {
font-size: 22px;
font-family: "Roboto Condensed", Roboto, sans-serif;
font-weight: 400;
margin-bottom: 35px;
padding: 0px 60px;
}
article.main .content em {
font-style: italic;
}
article.main .content ul, article.main .content ol {
padding: 0px 60px;
margin-bottom: 40px;
padding-left: 80px;
}
article.main .content li {
list-style: disc inside;
margin-bottom: 2px;
}
article.main .content strong, article.main .content b {
font-weight: 600;
}
article.main .content blockquote {
background-color: rgba(0,0,0,.1);
opacity: .9;
position: relative;
}
article.main .content blockquote p {
padding: 20px 80px;
font-style: italic;
font-weight: 400;
}
article.main .content blockquote:before {
content: '“';
position: absolute;
top: -20px;
left: 20px;
font-size: 100px;
font-family: serif;
opacity: .1;
}
article.main .content figure {
position: relative;
}
article.main .content code {
background-color: #e5edec;
padding: 4px 7px;
border-radius: 2px;
border: 1px solid #c5d8d5;
font-size: 16px;
font-family: monospace;
opacity: .8;
}
article.main .content pre {
background-color: #e5edec;
padding: 15px 15px;
border-radius: 2px;
border: 1px solid #c5d8d5;
opacity: .8;
margin: 0px 60px;
}
article.main .content pre code {
background-color: none;
padding: none;
border: none;
font-size: 16px;
font-family: monospace;
opacity: 1;
}
article.main .content img {
max-width: 100%;
margin: auto;
}
/* --- Page 404 --- */
.not-found {
text-align: center;
font-family: 'Roboto Condensed', sans-serif;
margin-top: 15%;
}
.not-found h1 {
font-size: 150px;
font-family: 'Reef', sans-serif;
}
.not-found h3 {
margin-top: 10px;
font-size: 20px;
}
@keyframes not-found {
0% {opacity: 1;}
33% {opacity: .6}
66% {opacity: 1;}
}
.not-found h1 span {
animation-name: not-found;
animation-duration: 2s;
animation-iteration-count: infinite;
}
.not-found h1 span:nth-child(2) {
animation-delay: .1s;
}
.not-found h1 span:nth-child(3) {
animation-delay: .2s;
}
.not-found a {
max-width: 280px;
margin: auto;
display: block;
font-size: 27px;
font-family: Reef, sans-serif;
text-transform: uppercase;
opacity: 0.8;
background-color: #E9E9E9;
padding: 12px 37px;
padding-top: 14px;
border-radius: 30px;
cursor: pointer;
transition: all ease .3s;
text-decoration: none;
color: #000;
margin-top: 20px;
}
.not-found a:hover {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
.not-found a:active {
transition: all ease .1s;
background-color: #73aaa4;
color: #fff;
box-shadow: 3px 3px 20px rgba(0,0,0,.1), inset 2px 2px 20px rgba(0,0,0,.1);
}
/* --- Comments --- */
.content .comments {
border-top: 4px dotted rgba(0,0,0,.1);
padding-top: 40px;
margin-top: 60px;
}
.content .comments h2.title {
font-family: 'Karmina Bold', 'Roboto Condensed';
font-size: 50px;
letter-spacing: 3px;
padding: 0px 60px;
}
.content .comments .commentlist {
padding: 0px 60px;
}
.content .comments .commentlist li {
list-style: none;
position: relative;
margin-bottom: 30px;
}
.content .comments .commentlist .comment-infos {
margin-bottom: 15px;
}
.content .comments .commentlist .comment-infos h2.author {
padding: 0px 0px;
margin-bottom: -10px;
font-family: "Karmina Bold", "Roboto Condensed", sans-serif;
letter-spacing: 2px;
font-size: 30px;
}
.content .comments .commentlist .comment-infos time {
opacity: .5;
font-size: 15px;
}
.content .comments .commentlist li .comment-content {
background-color: #fcfcfc;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #555f77;
font-size: 16px;
padding: 25px 4%;
}
.content .comments .commentlist li .comment-content:before {
content: "";
width: 0px;
height: 0px;
border: .6em solid transparent;
position: absolute;
left: 30px;
top: -18px;
border-bottom: 10px solid #fcfcfc;
}
.content .comments .commentlist li .comment-content.author {
background-color: #dee6e5;
}
.content .comments .commentlist li .comment-content.author:before {
border-bottom-color: #dee6e5;
}
.content .comments .commentlist li .comment-content p {
padding: 0px;
margin-bottom: 15px;
}
.content .comments .commentlist li .comment-content h1, .content .comments .commentlist li .comment-content h2, .content .comments .commentlist li .comment-content h3, .content .comments .commentlist li .comment-content h4 {
font-size: 16px;
text-transform: none;
padding: 0px;
margin-bottom: inherit;
padding-bottom: inherit;
font-family: inherit;
font-weight: inherit;
}
.content .comments .commentlist li .comment-content p:last-child {
margin-bottom: 0px;
}
.content form#comment {
margin-top: 70px;
margin: 0px 60px;
}
.content form#comment p {
padding: 0px 0px;
}
.content form#comment .notifications {
font-size: 16px;
}
.content form#comment .notifications p {
color: #fff;
background-color: #9d3333;
border-radius: 4px;
margin-bottom: 20px;
padding: 10px 15px;
}
.content form#comment .notifications p.success {
background-color: #85bf73;
}
.content form#comment input, .content form#comment textarea {
background-color: #fcfcfc;
border: none;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #555f77;
font-family: inherit;
font-size: 16px;
padding: 15px 3%;
outline: none;
}
.content form#comment input {
display: inline-block;
width: 42%;
}
.content form#comment input:first-child {
margin-right: 2%;
}
.content form#comment .textarea textarea {
width: 100%;
max-width: 93%;
height: 120px;
max-height: 320px;
}
.content form#comment .textarea .format {
display: block;
width: auto;
font-size: 14px;
}
.content form#comment .textarea .format .right {
float: right;
opacity: .6;
}
.content form#comment .textarea .format code {
font-size: 14px;
}
.content form#comment .submit button {
width: 100%;
background-color: #fcfcfc;
border: none;
border-radius: 5px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
color: #fff;
background-color: #555f77;
margin-top: 20px;
font-size: 16px;
padding: 15px 3%;
outline: none;
cursor: pointer;
transition: all ease .3s;
position: relative;
}
.content form#comment .submit button:after {
content: "";
width: 0px;
height: 0px;
border: 0.35em solid transparent;
position: absolute;
right: 24px;
top: 20px;
border-left: 10px solid #fff;
opacity: .2;
transition: all ease .3s;
}
.content form#comment .submit button:hover {
transition: all ease .1s;
background-color: #85bf73;
}
.content form#comment .submit button:hover:after {
right: 18px;
opacity: .8;
transition: all ease .1s;
}
@media screen and (max-width: 1050px) {
.wrap-main {
margin-top: 10px;
}
header.main .menu {
float: none;
bottom: -0px;
max-width: 870px;
width: 100%;
margin: auto !important;
position: relative;
}
header.main .menu div#menu-btn {
width: 100%;
opacity: 1;
border-radius: 0px;
background-color: #ddd;
padding: 7px 0px;
padding-top: 9px;
text-align: center;
}
header.main .menu div#menu-btn.show {
padding: 7px 0px;
padding-top: 9px;
transition-delay: .2s;
}
header.main .menu ul {
margin-top: -50px;
margin-bottom: 50px;
border-radius: 0px;
padding: 5px 0px;
position: relative;
visibility: hidden;
height: 0px;
width: 100%;
opacity: 0;
transition: visibility 0s linear .2s, opacity .2s ease, top .2s ease;
}
header.main .menu ul.show {
height: auto;
margin-bottom: 80px;
}
header.main .menu li {
padding: 0px 20px;
}
.sticky-actualites:first-child {
margin-top: 0px;
}
.sticky-actualites:first-child a {
border-radius: 0px;
text-align: center;
}
.sticky-actualites a .title:before {
display: none;
}
.sticky-actualites a .more {
display: none;
}
article.main.page .more a {
border-radius: 0px;
}
article.main.page nav.pagination a {
border-radius: 0px !important;
width: 100%;
border: none;
margin-right: 0px;
}
article.main.page nav.pagination div {
width: 50%;
display: inline-block;
border-top: 2px solid #efeae3;
border-bottom: 2px solid #efeae3;
}
footer.main {
text-align: center;
}
footer.main .content .left {
max-width: 100%;
}
footer.main .search {
display: block;
max-width: 400px;
margin: auto;
margin-top: 40px;
float: none;
}
footer.main .search:after {
top: 21px;
}
footer.main .search input {
width: 100%;
max-width: 400px;
padding-top: 20px;
padding-bottom: 20px;
}
footer.main .search input:focus {
width: 100%;
max-width: 400px;
}
footer.main .copyright {
margin-top: 40px;
}
footer.main .admin {
display: none;
}
}
@media screen and (max-width: 850px) {
article.main.page article.actualites .desc {
display: block;
width: 100%;
text-align: justify;
padding-right: 5%;
}
article.main.page article.actualites .actualites-infos {
display: block;
width: 100%;
max-width: 360px;
margin: auto;
margin-top: 30px;
}
article.main.page article.actualites a.read-more {
display: none;
}
article.main.page article.actualites a.read-more.break {
display: block;
}
}
@media screen and (max-width: 780px) {
.mosaic a {
display: block;
width: 100%;
margin-right: 0px;
margin-bottom: 8px;
}
article.main .content p {
padding: 0px 30px;
text-align: justify;
font-size: 18px;
}
article.main .content .infos p.right {
display: none;
}
.content .comments .commentlist {
padding: 0px 30px;
}
.content .comments .commentlist li .comment-content {
padding: 15px 4%;
}
}
@media screen and (max-width: 420px) {
article.main header h1.title {
font-size: 3.5em;
}
article.main header .infos p {
font-size: 17px;
text-align: center;
}
article.main .content h1 {
padding: 0px 30px;
}
article.main .content h2, article.main .content h3 {
padding: 0px 20px;
}
article.main .content p {
padding: 0px 13px;
font-size: 17px;
line-height: 1.2;
}
.content .comments .commentlist {
padding: 0px 13px;
}
} | 0.401336 | 0.067301 |
position:relative;
margin:0 auto 0;
display:block;
width:960px;
padding:0 0 30px 0;
text-align:center;
}
#topnav ul, #topnav li{
margin:0;
padding:0;
list-style:none;
}
#topnav li{
display:inline;
margin-right:3px;
}
#topnav li a{
display:inline-block;
height:40px;
padding-left:14px;
text-transform:uppercase;
color:#EBEBEC;
background:url("../images/topnav_left.gif") top left no-repeat transparent;
}
#topnav li a strong{
padding:12px 14px 12px 0;
line-height:40px;
white-space:nowrap;
font-weight:normal;
background:url("../images/topnav_right.gif") top right no-repeat;
}
#topnav li a:hover, #topnav li.active a{
background-position:0 -40px;
}
#topnav li a:hover strong, #topnav li.active a strong{
background-position:right -40px;
}
#topnav li.last{
margin:0;
}
/* ----------------------------------------------Student Quick Navigation-------------------------------------*/
#quicknav{
position:relative;
margin:0 auto 0;
display:block;
width:960px;
height:50px;
padding-top:30px;
text-align:center;
line-height:normal;
z-index:1000;
}
#quicknav ul{
margin:0;
padding:0;
list-style:none;
}
#quicknav ul li{
float:left;
margin-right:22px;
padding-right:24px;
text-transform:uppercase;
font-weight:bold;
border-right:1px solid #6A747B;
}
#quicknav ul li li{
display:block;
float:none;
margin:0;
padding:0;
border:none;
text-align:left;
text-transform:none;
}
#quicknav ul li a{
display:block;
margin:0;
padding:0;
font-size:14px;
color:#6A7279;
background-color:transparent;
}
#quicknav ul li li a{
width:180px;
padding:7px 10px;
font-size:12px;
font-weight:normal;
color:#6A7279;
background-color:#EBEBEB;
}
#quicknav ul li li a:hover{
color:#676767;
background-color:#2B2B2B;
}
#quicknav ul ul{
z-index:9999;
position:absolute;
left:-999em;
height:auto;
width:200px;
}
#quicknav ul li:hover ul{
left:auto;
padding-top:10px;
}
#quicknav ul li:hover{
position:static;
}
#quicknav li.last{
margin:0;
padding:0;
border:none;
}
/* ----------------------------------------------Column Navigation-------------------------------------*/
#column .subnav{
display:block;
width:250px;
padding:25px;
background-color:#F7F7F7;
margin-bottom:30px;
}
#column .subnav h2{
margin:0 0 20px 0;
padding:0 0 14px 0;
font-size:20px;
font-weight:normal;
font-family:Georgia, "Times New Roman", Times, serif;
color:#8199A9;
background-color:#F7F7F7;
line-height:normal;
border-bottom:1px dotted #666666;
}
#column .subnav ul{
margin:0;
padding:0;
list-style:none;
}
#column .subnav li{
margin:0 0 3px 0;
padding:0;
}
#column .subnav ul ul, #column .subnav ul ul ul, #column .subnav ul ul ul ul, #column .subnav ul ul ul ul ul{
border-top:none;
padding-top:0;
}
#column .subnav a{
display:block;
margin:0;
padding:5px 10px 5px 20px;
color:#666666;
background:url("../images/blue_file.gif") no-repeat 10px center #F7F7F7;
text-decoration:none;
border-bottom:1px dotted #666666;
}
#column .subnav a:hover{
color:#179CFF;
background-color:#F7F7F7;
}
#column .subnav ul ul a, #column .subnav ul ul ul a, #column .subnav ul ul ul ul a, #column .subnav ul ul ul ul ul a{
background:url("../images/black_file.gif") no-repeat #F7F7F7;
}
#column .subnav ul ul a{
padding-left:40px;
background-position:30px center;
}
#column .subnav ul ul ul a{
padding-left:50px;
background-position:40px center;
}
#column .subnav ul ul ul ul a{
padding-left:60px;
background-position:50px center;
}
#column .subnav ul ul ul ul ul a{
padding-left:70px;
background-position:60px center;
}
/* ----------------------------------------------Pagination-------------------------------------*/
.pagination{
display:block;
width:100%;
clear:both;
}
.pagination ul{
margin:0;
padding:0;
list-style:none;
}
.pagination li{
display:inline;
}
.pagination .next{
margin:0;
}
.pagination a{
display:inline-block;
padding:2px 5px 3px 5px;
margin:0 2px 0 0;
border:1px solid #D8D9DE;
}
.pagination .current, .pagination .splitter{
padding:6px;
margin:0 2px 0 0;
}
.wrapper .pagination a:hover, .pagination .current, .pagination .splitter{
color:#000000;
background-color:#EBEDEE;
} | css/navi.css | position:relative;
margin:0 auto 0;
display:block;
width:960px;
padding:0 0 30px 0;
text-align:center;
}
#topnav ul, #topnav li{
margin:0;
padding:0;
list-style:none;
}
#topnav li{
display:inline;
margin-right:3px;
}
#topnav li a{
display:inline-block;
height:40px;
padding-left:14px;
text-transform:uppercase;
color:#EBEBEC;
background:url("../images/topnav_left.gif") top left no-repeat transparent;
}
#topnav li a strong{
padding:12px 14px 12px 0;
line-height:40px;
white-space:nowrap;
font-weight:normal;
background:url("../images/topnav_right.gif") top right no-repeat;
}
#topnav li a:hover, #topnav li.active a{
background-position:0 -40px;
}
#topnav li a:hover strong, #topnav li.active a strong{
background-position:right -40px;
}
#topnav li.last{
margin:0;
}
/* ----------------------------------------------Student Quick Navigation-------------------------------------*/
#quicknav{
position:relative;
margin:0 auto 0;
display:block;
width:960px;
height:50px;
padding-top:30px;
text-align:center;
line-height:normal;
z-index:1000;
}
#quicknav ul{
margin:0;
padding:0;
list-style:none;
}
#quicknav ul li{
float:left;
margin-right:22px;
padding-right:24px;
text-transform:uppercase;
font-weight:bold;
border-right:1px solid #6A747B;
}
#quicknav ul li li{
display:block;
float:none;
margin:0;
padding:0;
border:none;
text-align:left;
text-transform:none;
}
#quicknav ul li a{
display:block;
margin:0;
padding:0;
font-size:14px;
color:#6A7279;
background-color:transparent;
}
#quicknav ul li li a{
width:180px;
padding:7px 10px;
font-size:12px;
font-weight:normal;
color:#6A7279;
background-color:#EBEBEB;
}
#quicknav ul li li a:hover{
color:#676767;
background-color:#2B2B2B;
}
#quicknav ul ul{
z-index:9999;
position:absolute;
left:-999em;
height:auto;
width:200px;
}
#quicknav ul li:hover ul{
left:auto;
padding-top:10px;
}
#quicknav ul li:hover{
position:static;
}
#quicknav li.last{
margin:0;
padding:0;
border:none;
}
/* ----------------------------------------------Column Navigation-------------------------------------*/
#column .subnav{
display:block;
width:250px;
padding:25px;
background-color:#F7F7F7;
margin-bottom:30px;
}
#column .subnav h2{
margin:0 0 20px 0;
padding:0 0 14px 0;
font-size:20px;
font-weight:normal;
font-family:Georgia, "Times New Roman", Times, serif;
color:#8199A9;
background-color:#F7F7F7;
line-height:normal;
border-bottom:1px dotted #666666;
}
#column .subnav ul{
margin:0;
padding:0;
list-style:none;
}
#column .subnav li{
margin:0 0 3px 0;
padding:0;
}
#column .subnav ul ul, #column .subnav ul ul ul, #column .subnav ul ul ul ul, #column .subnav ul ul ul ul ul{
border-top:none;
padding-top:0;
}
#column .subnav a{
display:block;
margin:0;
padding:5px 10px 5px 20px;
color:#666666;
background:url("../images/blue_file.gif") no-repeat 10px center #F7F7F7;
text-decoration:none;
border-bottom:1px dotted #666666;
}
#column .subnav a:hover{
color:#179CFF;
background-color:#F7F7F7;
}
#column .subnav ul ul a, #column .subnav ul ul ul a, #column .subnav ul ul ul ul a, #column .subnav ul ul ul ul ul a{
background:url("../images/black_file.gif") no-repeat #F7F7F7;
}
#column .subnav ul ul a{
padding-left:40px;
background-position:30px center;
}
#column .subnav ul ul ul a{
padding-left:50px;
background-position:40px center;
}
#column .subnav ul ul ul ul a{
padding-left:60px;
background-position:50px center;
}
#column .subnav ul ul ul ul ul a{
padding-left:70px;
background-position:60px center;
}
/* ----------------------------------------------Pagination-------------------------------------*/
.pagination{
display:block;
width:100%;
clear:both;
}
.pagination ul{
margin:0;
padding:0;
list-style:none;
}
.pagination li{
display:inline;
}
.pagination .next{
margin:0;
}
.pagination a{
display:inline-block;
padding:2px 5px 3px 5px;
margin:0 2px 0 0;
border:1px solid #D8D9DE;
}
.pagination .current, .pagination .splitter{
padding:6px;
margin:0 2px 0 0;
}
.wrapper .pagination a:hover, .pagination .current, .pagination .splitter{
color:#000000;
background-color:#EBEDEE;
} | 0.18396 | 0.036152 |
@charset "UTF-8";
/*样式重置*/
body, h1, h2, h3, h4, h5, h6, hr, div, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
border: none;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
-webkit-overflow-scrolling: touch;
}
body {
font-family: "Microsoft YaHei", "WenQuanYi Micro Hei", Arial, SimSun, sans-serif;
color: #000;
}
ul, ol, li {
list-style: none;
}
a {
text-decoration: none;
}
/*样式重置*/
/*页面内容*/
html, body {
width: 100%;
height: 100%;
}
.container {
width: 100%;
padding-top: 2rem;
font-size: 0.42667rem;
background: #ffd46e url(../images/background.jpg) no-repeat;
background-size: 100% auto;
text-align: center;
}
.container .success {
font-size: 0.8rem;
color: #fff;
text-shadow: 2px 2px 0 #f96, -2px -2px 0 #f96;
}
.container .coupon {
width: 6.66667rem;
height: 3.6rem;
line-height: 1;
background: url(../images/red_bg.png) no-repeat 0 0;
background-size: contain;
margin: 1.06667rem auto 0.46667rem;
padding-top: 0.64rem;
color: #fff;
}
.container .coupon .value {
font-size: 0.4rem;
}
.container .coupon .value span {
font-size: 1.33333rem;
line-height: 0.5;
}
.container .coupon .kind {
margin-top: 0.44rem;
margin-bottom: 0.24rem;
font-size: 0.48rem;
}
.container .coupon .send {
font-size: 0.32rem;
color: #840300;
}
.container .detail {
font-size: 0;
height: 0.56rem;
width: 7.73333rem;
margin: 0 auto;
background: url(../images/ads.png) no-repeat;
background-size: contain;
}
.container .invite {
margin: 1rem auto;
display: block;
width: 5.93333rem;
height: 1.53333rem;
background: #fe5821;
font-size: 0.8rem;
text-align: center;
line-height: 1.53333rem;
color: #fff;
border-radius: 5%;
}
.container .explain {
font-size: 0.32rem;
color: #b76a0b;
line-height: 0.66667rem;
background: #fec589;
}
.container .steps {
background-color: #fff;
height: 4rem;
overflow: hidden;
}
.container .steps dt {
margin-top: 0.73333rem;
margin-bottom: 0.46667rem;
background: url("../images/line.png") no-repeat center;
background-size: contain;
color: #b7b703;
font-size: 0.37333rem;
}
.container .steps dd {
font-size: 0.32rem;
color: #919192;
margin-bottom: 0.33333rem;
}
/*# sourceMappingURL=invite.css.map */ | src/qiqi/css/invite.css | @charset "UTF-8";
/*样式重置*/
body, h1, h2, h3, h4, h5, h6, hr, div, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
border: none;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
-webkit-overflow-scrolling: touch;
}
body {
font-family: "Microsoft YaHei", "WenQuanYi Micro Hei", Arial, SimSun, sans-serif;
color: #000;
}
ul, ol, li {
list-style: none;
}
a {
text-decoration: none;
}
/*样式重置*/
/*页面内容*/
html, body {
width: 100%;
height: 100%;
}
.container {
width: 100%;
padding-top: 2rem;
font-size: 0.42667rem;
background: #ffd46e url(../images/background.jpg) no-repeat;
background-size: 100% auto;
text-align: center;
}
.container .success {
font-size: 0.8rem;
color: #fff;
text-shadow: 2px 2px 0 #f96, -2px -2px 0 #f96;
}
.container .coupon {
width: 6.66667rem;
height: 3.6rem;
line-height: 1;
background: url(../images/red_bg.png) no-repeat 0 0;
background-size: contain;
margin: 1.06667rem auto 0.46667rem;
padding-top: 0.64rem;
color: #fff;
}
.container .coupon .value {
font-size: 0.4rem;
}
.container .coupon .value span {
font-size: 1.33333rem;
line-height: 0.5;
}
.container .coupon .kind {
margin-top: 0.44rem;
margin-bottom: 0.24rem;
font-size: 0.48rem;
}
.container .coupon .send {
font-size: 0.32rem;
color: #840300;
}
.container .detail {
font-size: 0;
height: 0.56rem;
width: 7.73333rem;
margin: 0 auto;
background: url(../images/ads.png) no-repeat;
background-size: contain;
}
.container .invite {
margin: 1rem auto;
display: block;
width: 5.93333rem;
height: 1.53333rem;
background: #fe5821;
font-size: 0.8rem;
text-align: center;
line-height: 1.53333rem;
color: #fff;
border-radius: 5%;
}
.container .explain {
font-size: 0.32rem;
color: #b76a0b;
line-height: 0.66667rem;
background: #fec589;
}
.container .steps {
background-color: #fff;
height: 4rem;
overflow: hidden;
}
.container .steps dt {
margin-top: 0.73333rem;
margin-bottom: 0.46667rem;
background: url("../images/line.png") no-repeat center;
background-size: contain;
color: #b7b703;
font-size: 0.37333rem;
}
.container .steps dd {
font-size: 0.32rem;
color: #919192;
margin-bottom: 0.33333rem;
}
/*# sourceMappingURL=invite.css.map */ | 0.289573 | 0.047758 |
[Table of contents]
1. base layout css
2. sidebar css
3. fullscreen menu
4. modal box
5. navigation menu
6. header css
7. color scheme css
8. button css
9. background css
10. dashboard swiper slider
11. swiper css
12. List group css
13. card css
14. media css
15. media css
16. sparkline chart toolti
17. avatar css
18. footer
19. login page
20. form control
21. tabs
22. Footer
23. iphone x updates
24. Scrolbar webkit css
25. Media query css
---------------------------------------------------------*/
/* base layout css */
html,
body {
height: 100%;
overflow: hidden
}
body {
font-size: 14px;
color: #666666;
}
.wrapper {
height: 100%;
width: 100%;
display: block;
overflow: hidden
}
.page {
height: 100%;
width: 100%;
position: relative;
z-index: 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
overflow: hidden;
-webkit-transition: all ease 0.4s;
-moz-transition: all ease 0.4s;
-ms-transition: all ease 0.4s;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.page-content {
padding: 0;
height: 100%;
min-height: 100%;
overflow-y: auto;
position: relative;
}
header.fixed-header~.page-content {
padding-top: 50px;
}
.content-sticky-footer {
min-height: 100%;
height: auto;
position: relative;
display: inline-block;
clear: both;
width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #000000;
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6 {
color: #ffffff;
}
.no-bg {
background: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
-ms-box-shadow: none !important;
-moz-box-shadow: none !important;
}
.no-bg:after {
display: none
}
.theme-dark .border-top,
.theme-dark .border-bottom,
.theme-dark .border-left,
.theme-dark .border-right,
.theme-dark .border,
.theme-dark hr {
border-color: #333333 !important;
}
.md .z2 {
-ms-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
-moz-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
}
.text-normal {
text-transform: none
}
.bg-none {
background: none !important
}
.hljs {
background: #f5f7ff;
border: 1px dashed #8dacff;
}
.ios .max-demo-frame header {
padding-top: 30px;
height: 80px;
}
.ios .max-demo-frame .sidebar,
.ios .max-demo-frame .searchcontrol {
padding-top: 30px;
}
.ios .max-demo-frame header.fixed-header~.page-content {
padding-top: 80px;
}
.ios .max-demo-frame .login-logo {
margin-top: 25%;
}
.no-shadow:after {
display: none
}
/* sidebar css */
.sidebar {
height: 100%;
width: 280px;
position: fixed;
top: 0;
z-index: 9;
transition: all ease 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
-ms-transition: all ease 0.5s;
}
.sidebar-left {
left: -300px;
}
.md .sidebar-left {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.sidebar-right {
right: -300px;
}
.md .sidebar-right {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.menu-left-open .sidebar-left {
left: 0;
}
.menu-right-open .sidebar-right {
right: 0;
}
.menu-left-open .backdrop,
.menu-right-open .backdrop-right {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.2);
z-index: 5
}
.ios .menu-left-open .backdrop,
.ios .menu-right-open .backdrop-right {
background: rgba(255, 255, 255, 0.5);
}
.push-content-right.menu-right-open .page {
margin-left: -280px;
-webkit-transition: all ease 0.6s;
-moz-transition: all ease 0.6s;
-ms-transition: all ease 0.6s;
z-index: 10;
}
.push-content-right.menu-right-open .backdrop-right {
background: none;
z-index: 11;
left: -280px;
}
.push-content-left.menu-left-open .page {
margin-left: 280px;
-webkit-transition: all ease 0.6s;
-moz-transition: all ease 0.6s;
-ms-transition: all ease 0.6s;
z-index: 10;
}
.push-content-left.menu-left-open .backdrop {
background: none;
z-index: 11;
left: 280px;
}
.profile-link {
padding: 15px;
color: #ffffff
}
.profile-link .media .media-body h5 {
color: #ffffff;
}
.profile-link .media .media-body p {
color: rgba(255, 255, 255, 0.7);
}
/* fullscreen menu */
.fullscreen-menu {
background: #2196f3;
color: #fff;
text-align: center;
}
.fullscreen-menu a {
color: #fff;
}
.closebutton {
position: absolute;
right: 0;
top: 0;
height: 40px;
width: 40px;
display: block;
line-height: 40px;
vertical-align: middle;
text-align: center
}
.user-fullmenu figure {
height: 80px;
width: 80px;
display: block;
text-align: center;
border-radius: 50%;
overflow: hidden;
margin: 0% auto 5px auto;
}
.user-fullmenu figure img {
margin-bottom: 0;
width: 100%;
}
.user-fullmenu .media-content {
display: block;
width: 100%;
}
.user-fullmenu .media-content h6 {
margin: 0;
color: #ffffff;
}
.user-fullmenu .media-content h6 small {
font-size: 14px;
font-weight: 300;
color: rgba(255, 255, 255, 0.7);
}
.fullscreen-menu .menulist {
padding: 0;
}
.fullscreen-menu .menulist ul {
padding: 0;
list-style: none;
margin-bottom: 0;
}
.fullscreen-menu .menulist ul li {
width: 31.33%;
display: inline-block;
margin-bottom: 15px;
}
.fullscreen-menu .menulist ul li a {
width: 100%;
display: block;
text-transform: uppercase;
font-size: 10px;
}
.fullscreen-menu .menulist ul li a .icon {
background: rgba(255, 255, 255, 0.2);
width: 70px;
height: 70px;
line-height: 70px;
vertical-align: middle;
border-radius: 50%;
display: block;
margin: 5px auto
}
.button.autowidthbtn {
width: auto;
display: inline-block;
padding: 0 30px
}
.fullscreen-menu .menulist ul li a:hover .icon {
background: rgba(255, 255, 255, 0.5);
}
/* modal box */
.modal-header {
padding: 0.5em 1rem;
border-bottom: 0
}
.popup-fullmenu .modal-dialog {
display: flex;
height: 100%;
margin: 0 auto;
align-items: center;
}
.popup-fullmenu .modal-content {
border-radius: 0;
max-height: 100%;
height: 824px;
overflow-y: auto;
}
.ios .modal-content > .background {
border-radius: 4px 4px 0 0
}
/* navigation menu */
.navbar {
width: 100%;
display: block;
padding: 0;
margin: 0 0 10px 0;
}
.navbar .navbar-nav {
width: 100%;
display: block
}
.navbar .navbar-nav li {
width: 100%;
display: block;
margin-bottom: -1px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav li:last-child {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav li .dropdown-menu {
width: 100%;
background: rgba(0, 0, 0, 0.1);
border: 0;
margin: 0;
border-radius: 0;
padding: 0;
}
.navbar .navbar-nav li a.dropdown-toggle::after {
position: absolute;
right: 15px;
top: 24px;
}
.navbar .navbar-nav li a {
width: 100%;
display: block;
line-height: 28px;
padding: 10px 15px;
font-size: 15px;
color: #ffffff;
vertical-align: middle
}
.navbar .navbar-nav li .dropdown-menu a {
padding-left: 48px;
color: rgba(255, 255, 255, 0.8);
}
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:focus {
color: #ffffff;
background: rgba(0, 0, 0, 0.2);
}
.navbar .navbar-nav li a i {
font-size: 20px;
vertical-align: middle;
width: 30px;
text-align: left
}
/* header css */
header {
position: relative;
width: 100%;
height: 50px;
z-index: 6;
-webkit-transition: all ease 0.4s;
-moz-transition: all ease 0.4s;
-ms-transition: all ease 0.4s;
}
.ios header {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header > .right,
header > .left {
width: auto;
display: flex
}
header > .right a,
header > .left a {
width: 50px;
height: 50px;
line-height: 44px;
display: block;
text-align: center;
}
header > .right a:hover,
header > .left a:hover {
background: rgba(0, 0, 0, 0.1);
}
header > .right a i,
header > .left a i {
display: inline-block;
vertical-align: middle
}
header.fixed-header {
position: absolute;
top: 0;
left: 0
}
.md header:after {
content: '';
position: absolute;
right: 0;
width: 100%;
top: 100%;
bottom: auto;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.logo {
width: auto;
display: inline-block;
color: #ffffff;
font-size: 18px;
line-height: 50px;
font-weight: 600;
vertical-align: middle
}
.logo:hover {
text-decoration: none
}
.logo figure {
width: auto;
height: 50px;
vertical-align: top;
display: inline-block;
margin: 0;
margin-right: 5px;
}
.logo figure img {
max-height: 32px;
vertical-align: middle;
margin-top: -5px
}
/* color scheme css */
header a {
color: #ffffff
}
.ios .btn.gradient,
.ios .color-theme-blue .btn.gradient,
.md .color-theme-blue .btn.gradient,
.btn.gradient-blue,
.gradient-blue {
background-image: -moz-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
color: #ffffff;
}
.ios .color-theme-red .btn.gradient,
.btn.gradient-red,
.md .color-theme-red .btn.gradient,
.gradient-red {
background-image: -moz-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
color: #ffffff;
}
.ios .color-theme-green .btn.gradient,
.btn.gradient-green,
.md .color-theme-green .btn.gradient,
.gradient-green {
background-image: -moz-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
color: #ffffff;
}
.ios .color-theme-pink .btn.gradient,
.btn.gradient-pink,
.md .color-theme-pink .btn.gradient,
.gradient-pink {
background-image: -moz-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
color: #ffffff;
}
.ios .color-theme-yellow .btn.gradient,
.btn.gradient-yellow,
.md .color-theme-yellow .btn.gradient,
.gradient-yellow {
background-image: -moz-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
color: #ffffff;
}
.ios .color-theme-orange .btn.gradient,
.btn.gradient-orange,
.md .color-theme-orange .btn.gradient,
.gradient-orange {
background-image: -moz-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
color: #ffffff;
}
.ios .color-theme-gray .btn.gradient,
.btn.gradient-gray,
.md .color-theme-gray .btn.gradient,
.gradient-gray {
background-image: -moz-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
color: #ffffff;
}
.ios .color-theme-black .btn.gradient,
.btn.gradient-black,
.md .color-theme-black .btn.gradient,
.gradient-black {
background-image: -moz-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
color: #ffffff;
}
.color-theme-red .background {
background: #e2223c;
}
.ios .color-theme-red .sidebar,
.ios .color-theme-red .fullscreen-menu,
.md .color-theme-red .sidebar,
.md .color-theme-red .fullscreen-menu,
.md .color-theme-red header,
.color-theme-red .circle-background:before {
background: #f4465e;
}
.ios .color-theme-red header {
color: #f4465e;
background: #ffffff
}
.ios .color-theme-red header a,
.ios .color-theme-red header .logo,
.ios .color-theme-red .nav-tabs .nav-item .nav-link.active,
.color-theme-red .block-title,
.color-theme-red .tabber-bottom .nav-tabs .nav-link.active {
color: #f4465e !important;
}
.color-theme-green .background {
background: #009f5d;
}
.ios .color-theme-green .sidebar,
.ios .color-theme-green .fullscreen-menu,
.md .color-theme-green .sidebar,
.md .color-theme-green .fullscreen-menu,
.md .color-theme-green header,
.color-theme-green .circle-background:before {
background: #00c473;
}
.ios .color-theme-green header {
color: #00c473;
background: #ffffff
}
.ios .color-theme-green header a,
.ios .color-theme-green header .logo,
.ios .color-theme-green .nav-tabs .nav-item .nav-link.active,
.color-theme-green .block-title,
.color-theme-green .tabber-bottom .nav-tabs .nav-link.active {
color: #00c473 !important;
}
.color-theme-blue .background {
background: #0366cb;
}
.ios .color-theme-blue .sidebar,
.ios .color-theme-blue .fullscreen-menu,
.md .color-theme-blue .sidebar,
.md .color-theme-blue .fullscreen-menu,
.md .color-theme-blue header,
.color-theme-blue .circle-background:before {
background: #1283f6;
}
.ios .color-theme-blue header {
color: #1283f6;
background: #ffffff
}
.ios .color-theme-blue header a,
.ios .color-theme-blue header .logo,
.ios .color-theme-blue .nav-tabs .nav-item .nav-link.active,
.color-theme-blue .block-title,
.color-theme-blue .tabber-bottom .nav-tabs .nav-link.active {
color: #1283f6 !important;
}
.color-theme-pink .background {
background: #de40b4;
}
.ios .color-theme-pink .sidebar,
.ios .color-theme-pink .fullscreen-menu,
.md .color-theme-pink .sidebar,
.md .color-theme-pink .fullscreen-menu,
.md .color-theme-pink header,
.color-theme-pink .circle-background:before {
background: #fb74d7;
}
.ios .color-theme-pink header {
color: #fb74d7;
background: #ffffff
}
.ios .color-theme-pink header a,
.ios .color-theme-pink header .logo,
.ios .color-theme-pink .nav-tabs .nav-item .nav-link.active,
.color-theme-pink .block-title,
.color-theme-pink .tabber-bottom .nav-tabs .nav-link.active {
color: #fb74d7 !important;
}
.color-theme-yellow .background {
background: #e28200;
}
.ios .color-theme-yellow .sidebar,
.ios .color-theme-yellow .fullscreen-menu,
.md .color-theme-yellow .sidebar,
.md .color-theme-yellow .fullscreen-menu,
.md .color-theme-yellow header,
.color-theme-yellow .circle-background:before {
background: #ffc000;
}
.ios .color-theme-yellow header {
color: #ffc000;
background: #ffffff
}
.ios .color-theme-yellow header a,
.ios .color-theme-yellow header .logo,
.ios .color-theme-yellow .nav-tabs .nav-item .nav-link.active,
.color-theme-yellow .block-title,
.color-theme-yellow .tabber-bottom .nav-tabs .nav-link.active {
color: #ffc000 !important;
}
.color-theme-orange .background {
background: #e07400;
}
.ios .color-theme-orange .sidebar,
.ios .color-theme-orange .fullscreen-menu,
.md .color-theme-orange .sidebar,
.md .color-theme-orange .fullscreen-menu,
.md .color-theme-orange header,
.color-theme-orange .circle-background:before {
background: #ff8400;
}
.ios .color-theme-orange header {
color: #ff8400;
background: #ffffff
}
.ios .color-theme-orange header a,
.ios .color-theme-orange header .logo,
.ios .color-theme-orange .nav-tabs .nav-item .nav-link.active,
.color-theme-orange .block-title,
.color-theme-orange .tabber-bottom .nav-tabs .nav-link.active {
color: #ff8400 !important;
}
.color-theme-gray .background {
background: #7c7486;
}
.ios .color-theme-gray .sidebar,
.ios .color-theme-gray .fullscreen-menu,
.md .color-theme-gray .sidebar,
.md .color-theme-gray .fullscreen-menu,
.md .color-theme-gray header,
.color-theme-gray .circle-background:before {
background: #a5a1aa;
}
.ios .color-theme-gray header {
color: #a5a1aa;
background: #ffffff
}
.ios .color-theme-gray header a,
.ios .color-theme-gray header .logo,
.ios .color-theme-gray .nav-tabs .nav-item .nav-link.active,
.color-theme-gray .block-title,
.color-theme-gray .tabber-bottom .nav-tabs .nav-link.active {
color: #a5a1aa !important;
}
.color-theme-black .background {
background: #000000;
}
.color-dark.background {
background: #000000;
}
.color-dark.background img {
opacity: 0.5
}
.ios .color-theme-black .sidebar,
.ios .color-theme-black .fullscreen-menu,
.md .color-theme-black .sidebar,
.md .color-theme-black .fullscreen-menu,
.md .color-theme-black header,
.color-theme-black .circle-background:before {
background: #000000;
}
.ios .color-theme-black header {
color: #000000;
background: #ffffff
}
.ios .color-theme-black header a,
.ios .color-theme-black header .logo,
.ios .color-theme-black .nav-tabs .nav-item .nav-link.active,
.color-theme-black .block-title,
.color-theme-black .tabber-bottom .nav-tabs .nav-link.active {
color: #000000 !important;
}
body.theme-dark {
background: #000000;
color: #dddddd
}
.md body.theme-dark .block-title,
.ios body.theme-dark .block-title {
color: #ffffff
}
.theme-dark .swiper-slide,
.theme-dark .list .item-title,
.theme-dark .post-seconds {
color: #ffffff
}
.theme-dark .list .item-subtitle,
.theme-dark .title-small-carousel+p {
color: #aaaaaa;
}
.theme-dark .block-footer,
.theme-dark .block-header,
.theme-dark .block-title {
color: #bbbbbb;
}
.theme-dark .card {
background-color: #333;
}
.theme-dark .card.card-data-item {
border: 1px solid #dddddd38;
}
.theme-dark .card-footer,
.theme-dark .card-header {
border-color: rgba(255, 255, 255, 0.06);
}
.theme-dark hr {
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-dark .swiper-pagination-bullet {
background: #fff;
opacity: .3;
}
.theme-dark .swiper-pagination-bullet-active {
opacity: 1;
background: #007aff;
}
.theme-dark .list ul:before,
.theme-dark ul:before,
.theme-dark .item-inner:after,
.theme-dark .list ul:after,
.list .theme-dark ul:after {
background-color: #666666 !important;
}
.ios .theme-dark .swiper-pagination-bullet {
background: #ffffff
}
.theme-dark .swiper-content-block {
border: 0px solid #ccc;
background: #333333;
}
.md .theme-dark .swiper-content-block,
.ios .theme-dark .swiper-content-block {
border: 1px solid #414142;
}
.theme-dark .footer,
.md .theme-dark .block.footer,
.ios .theme-dark .block.footer {
background: rgba(232, 234, 243, 0.15);
color: #ffffff
}
.theme-dark .footer a,
.md .theme-dark .block.footer a,
.ios .theme-dark .block.footer a,
.theme-dark .footer a i,
.md .theme-dark .block.footer a i,
.ios .theme-dark .block.footer a i {
color: #ffffff
}
.theme-dark .footer.dark,
.md .theme-dark .block.footer.dark,
.ios .theme-dark .block.footer.dark {
background: rgba(255, 255, 255, 0.3);
}
.theme-dark .footer-m {
background-color: #171717;
}
.theme-dark .form-control {
color: #ffffff;
}
.theme-dark .form-control::placeholder {
color: rgba(255, 255, 255, 0.3);
}
.theme-dark .login-input-content {
background: #333333;
}
.theme-dark .modal-content {
background: #000000;
}
.block-title.color-dark {
color: #000000 !important
}
.theme-dark .block-title.color-dark {
color: #ffffff !important
}
/* button css */
.btn {
text-transform: uppercase;
border-radius: 0;
line-height: 36px;
font-size: 14px;
font-weight: 500;
padding: .375rem 1.5rem;
}
.ios .btn {
border-radius: 4px !important;
}
.ios .btn-group .btn {
border-radius: 0px !important;
}
.ios .btn-group .btn:first-child {
border-top-left-radius: 4px !important;
border-bottom-left-radius: 4px !important;
}
.ios .btn-group .btn:last-child {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
}
.ios .btn-group.btn-group-vertical .btn {
border-radius: 0 !important;
}
.ios .btn-group.btn-group-vertical .btn:first-child {
border-radius: 4px 4px 0 0px !important;
}
.ios .btn-group.btn-group-vertical .btn:last-child {
border-radius: 0 0px 4px 4px !important;
}
.ios .btn-group > .btn-group .btn:first-child {
border-radius: 0 4px 4px 0 !important;
}
.ios .btn-group > .btn-group .btn:first-child {
border-radius: 0 4px 4px 0 !important;
}
.ios .btn.dropdown-toggle,
.ios .btn-group .btn.dropdown-toggle {
border-radius: 4px !important;
border-radius: 4px !important;
}
.ios .btn+.btn.dropdown-toggle,
.ios .btn-group .btn+.btn.dropdown-toggle {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
.btn-block {
padding: .375rem 0.5rem;
}
.btn.rounded {
border-radius: 30px !important;
}
.btn-sm {
line-height: 30px;
font-size: 12px;
padding: .1rem 1rem;
}
.btn-lg {
text-transform: uppercase;
border-radius: 0;
line-height: 44px;
font-size: 16px;
font-weight: 500;
padding: .4rem 1.5rem;
}
.sq-btn {
padding: 0;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center
}
.btn i {
vertical-align: middle;
margin-top: -3px
}
.btn-outline-white {
border: 1px solid rgba(255, 255, 255, 0.6);
color: #ffffff;
}
.btn-outline-white:hover {
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
}
.md .btn.gradient {
-moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
-ms-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
}
.btn-group-lg>.btn,
.btn-lg {
border-radius: 0
}
.btn-group-sm>.btn,
.btn-sm {
border-radius: 0
}
/* background css */
.background {
background: #2196f3;
height: 100%;
width: 100%;
overflow: hidden;
z-index: 0;
position: absolute;
top: 0;
left: 0;
box-sizing: border-box
}
.background img {
opacity: 0.2;
width: 100%;
top: 0;
border: 0;
min-height: 100%
}
.background+div {
z-index: 1;
position: relative
}
.background.bg-225 {
height: 225px;
}
.background.bg-170 {
height: 170px;
}
.background.bg-125 {
height: 65px;
}
.title-background {
font-size: 25px;
font-weight: 600;
line-height: 25px;
margin: 25px auto;
}
.title-background small {
font-size: 15px;
font-weight: 300
}
.full-screen-background {
width: 100%;
height: 100%;
min-height: 200px;
overflow: hidden;
position: relative;
}
.full-screen-background img {
width: 100%;
min-height: 100%;
position: absolute;
left: 0;
top: 0;
}
.circle-background:before {
content: "";
height: 280px;
width: 100%;
position: absolute;
z-index: 0;
top: 0;
left: 0;
border-radius: 0 0 50% 50%;
}
/* dashboard swiper slider */
.demo-swiper {
width: 100%;
height: 550px;
}
.swiper-slide {
font-size: 22px;
font-weight: 300;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
background: #fff;
color: #999999;
box-sizing: border-box;
background: none;
padding: 15px;
background-size: cover;
}
.swiper-content-block {
border: 0px solid #ccc;
background: #ffffff;
border-radius: 10px;
height: 100%;
width: 100%;
padding: 15px;
}
.md .swiper-content-block {
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
}
.swiper-content-block img {
border-radius: 8px;
max-width: 100%;
float: left
}
.ios .swiper-content-block {
border: 1px solid #dddddd;
}
.swipermultiple {
margin: 0px 0 35px;
font-size: 18px;
height: auto;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide {
width: 85%;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide:nth-child(2n) {
width: 70%;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide:nth-child(3n) {
width: 30%;
}
.swipermultiple {
padding-bottom: 20px;
}
.swipermultiple.no-pagination {
padding-bottom: 0px;
margin-bottom: 10px
}
.swipermultiple .swiper-pagination-bullets,
.swipermultiple .swiper-pagination-custom,
.swipermultiple .swiper-pagination-fraction {
bottom: -5px;
}
.title-small-carousel {
margin: 0;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.title-small-carousel+p {
margin: 0;
font-size: 11px;
line-height: 14px;
color: #999999
}
.title-number-carousel {
font-size: 18px;
margin: 10px 0 0 0;
display: inline-block;
float: left;
color: #666666
}
.gauge {
float: right;
margin-top: 10px;
line-height: 20px;
}
.md .block-title,
.ios .block-title {
margin: 30px 15px 20px 15px;
text-transform: uppercase;
color: rgba(0, 0, 0, .54);
line-height: 16px;
font-weight: 600;
position: relative;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 14px;
}
/* swiper css */
.demo-swiper-gallery-top {
width: 100%;
height: 500px;
margin-left: auto;
margin-right: auto;
}
demo-swiper-gallery-top .swiper-slide {
background-size: cover;
background-position: center;
}
.gallery-top {
height: 80%;
width: 100%;
}
.gallery-thumbs {
height: 20%;
box-sizing: border-box;
padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
width: 25%;
height: 100%;
opacity: 0.4;
}
.gallery-thumbs .swiper-slide-thumb-active {
opacity: 1;
}
.parallax-bg {
position: absolute;
left: 0;
top: 0;
width: 130%;
height: 100%;
-webkit-background-size: cover;
background-size: cover;
background-position: center;
}
.demo-swiper-parallax .swiper-parallax-bg {
position: absolute;
left: 0;
top: 0;
width: 130%;
height: 100%;
-webkit-background-size: cover;
background-size: cover;
background-position: center;
}
.demo-swiper-parallax .swiper-slide {
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
}
.demo-swiper-parallax .swiper-slide .swiper-slide-title {
font-size: 24px;
color: #ffffff
}
.demo-swiper-parallax .swiper-slide .swiper-slide-subtitle {
font-size: 20px;
color: #ffffff
}
.demo-swiper-parallax .swiper-slide p {
font-size: 16px;
color: #ffffff
}
.swiper-lazy {
max-width: 100%;
min-height: 100%
}
.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
height: 6px;
}
/* List group css */
.list-group-item {
border-width: 1px 0 1px 0;
padding: 10px 15px;
border: 1px solid rgba(0, 0, 0, .06);
}
.list-group-item:last-child,
.list-group-item:first-child {
border-radius: 0rem;
}
.status-online {
width: 8px;
height: 8px;
vertical-align: middle;
display: inline-block;
border-radius: 5px;
}
a:hover {
text-decoration: none
}
.theme-dark .list-group-item {
background-color: #222222;
border: 1px solid #333333;
}
/* card */
.card{ margin-bottom: 15px}
.md .card {
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
border: 0;
border-radius: 10px;
}
.md.card-footer,
.md .card-header {
border-radius: 10px 10px 0 0;
}
.md .card .card-body {
padding: 10px 15px;
}
.card .card-body {
z-index: 1
}
.card-footer,
.card-header {
background: none;
padding: 10px 15px;
z-index: 2;
border-color: rgba(0, 0, 0, .06)
}
.card-footer i {
font-size: 16px;
vertical-align: middle;
color: #999999
}
.card-footer {
line-height: 30px;
color: #000000
}
.card-footer .post-seconds {
font-size: 15px;
vertical-align: middle;
font-weight: 500
}
.card-footer .post-seconds span {
font-size: 14px;
color: #999999; font-weight: 300
}
.card-title {
margin: .3rem 0;
font-size: 1.2em
}
/* media css */
.icon {
font-size: 22px;
}
.icon-2x {
font-size: 40px;
line-height: 40px;
vertical-align: middle
}
.icon-3x {
font-size: 50px;
line-height: 50px;
vertical-align: middle
}
.icon-4x {
font-size: 70px;
line-height: 70px;
vertical-align: middle
}
/* media css */
.media .media-body h5 {
color: #000000;
margin: 0;
font-size: 16px;
}
.theme-dark .media .media-body h5 {
color: #ffffff;
}
.media .media-body p {
color: #666666;
margin: 0;
font-size: 14px;
}
.theme-dark .media .media-body p {
color: rgba(255, 255, 255, 0.6);
}
.effort-time {
line-height: 20px;
vertical-align: middle;
margin-bottom: 10px;
display: block;
text-align: right
}
.effort-time i {
line-height: 20px;
vertical-align: middle
}
/* sparkline chart tooltip*/
.jqstooltip {
height: auto!important;
width: auto !important;
display: block;
padding: 6px;
color: #222222 !important;
background: rgb(255, 255, 255) !important;
font-size: 12px;
text-align: center;
line-height: 14px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.jqstooltip .jqsfield,
.jqstooltip .jqsfield span {
color: #222222 !important;
}
/* avatar css */
.avatar {
border-radius: 50%;
margin: 0;
margin-right: 10px;
vertical-align: middle;
display: inline-block;
}
.avatar img {
width: 100%;
vertical-align: top
}
.avatar.avatar-30 {
width: 30px;
height: 30px;
line-height: 30px;
}
.avatar.avatar-40 {
width: 40px;
height: 40px;
line-height: 40px;
}
.avatar.avatar-120 {
width: 120px;
height: 120px;
line-height: 120px;
}
.userlist_large {
position: relative;
padding: 15px;
}
.userlist_large .media {
flex-flow: column;
text-align: center;
position: relative;
}
.userlist_large .media figure {
margin: 0 auto;
}
.userblock-ht {
height: 170px;
}
/* footer */
.footer-wrapper {
width: 100%;
display: block;
position: relative;
left: 0;
}
.fixed-footer .footer-wrapper {
position: absolute;
width: 100%;
bottom: 0;
}
.fixed-footer .page-content {
padding-bottom: 100px;
}
.footer {
line-height: 40px;
vertical-align: middle;
padding: 5px 0px;
width: 100%;
background: #e8eaf3;
color: #666666
}
.footer.dark {
color: #ffffff;
background: #a8aab9;
}
.social {
display: inline-block;
height: 30px;
width: 30px;
margin: 0 2px;
vertical-align: middle
}
.social img {
vertical-align: top;
max-width: 100%;
border: 0
}
/* login page */
.login-logo {
width: 75px;
height: auto;
margin-top: 15%;
}
.login-title {
font-size: 50px;
margin-top: 5px;
line-height: 50px;
color: #ffffff;
font-weight: 600;
}
.login-title small {
font-size: 30px;
font-weight: 300
}
.login-input-content {
background: #ffffff;
z-index: 1;
position: relative
}
.ios .login-input-content {
margin-bottom: 10px;
}
.ios .login-tabs + .tab-content .login-input-content {
border-radius: 4px;
padding: 10px;
}
.ios .modal-content .login-input-content {
border-radius: 0px;
padding: 0px !important;
margin-bottom: 15px;
}
.ios .login-input-content .input-group,
.ios .login-input-content .form-group {
margin-bottom: 15px
}
.ios .login-input-content .input-group:last-child,
.ios .login-input-content .form-group:last-child {
margin-bottom: 0px
}
.md .login-input-content {
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
}
.login-input-content .input-group-append,
.login-input-content .input-group-append .input-group-text,
.login-input-content .input-group-prepend,
.login-input-content .input-group-prepend .input-group-text {
background: none
}
.md .input-group {
border: 0;
border-radius: 0;
}
.md .input-group-append,
.md .input-group-append .input-group-text,
.md .input-group-prepend,
.md .input-group-prepend .input-group-text {
border-radius: 0;
border: 0;
color: #888888;
}
.verification {
padding: 20% 16% 0% 16%
}
/* form control */
.form-control {
padding: 10px .75rem;
font-size: 16px;
background: none;
min-height: 50px;
line-height: 30px;
}
.md .form-control {
border: 0;
border-radius: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.form-control:focus {
box-shadow: none;
border-color: #80bdff;
background: none
}
.form-control.text-white::placeholder {
color: rgba(255, 255, 255, 0.5)
}
.searchcontrol {
background: #ffffff;
width: 0;
overflow: hidden;
transition: ease all 0.5s;
-moz-transition: ease all 0.5s;
-ms-transition: ease all 0.5s;
-webkit-transition: ease all 0.5s;
position: fixed;
right: 0;
top: 0;
opacity: 0;
z-index: 8;
}
.theme-dark .searchcontrol {
background: #333333
}
.searchcontrol .input-group {
min-width: 250px
}
.searchcontrol.active {
width: 100%;
opacity: 1
}
.page-content .searchcontrol {
position: relative;
width: 100%;
opacity: 1;
overflow: visible;
z-index: 0
}
.md .page-content .searchcontrol:after {
content: '';
position: absolute;
right: 0;
opacity: 0.5;
width: 100%;
top: 100%;
bottom: auto;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.md .form-group label {
margin-bottom: 0
}
/* tabs */
.nav-tabs {
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
display: flex
}
.ios .nav-tabs {
background: #ffffff;
border-radius: 4px;
margin-bottom: 10px;
}
.ios .login-tabs.nav-tabs {
margin-bottom: 0;
border-radius: 4px 4px 0 0;
}
.ios .login-tabs.nav-tabs + .tab-content .login-input-content {
border-radius: 0 0 4px 4px;
}
.nav-tabs .nav-item {
border: 0;
margin-bottom: -2px;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
text-align: center
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: transparent;
}
.nav-tabs .nav-item .nav-link {
border: 0;
opacity: 0.6;
padding: 5px 10px;
line-height: 30px;
border-radius: 0;
-ms-border-radius: 0;
-moz-border-radius: 0;
color: #222222;
text-align: center;
text-transform: uppercase;
font-size: 14px;
line-height: 38px;
font-weight: 500;
}
.ios .nav-tabs .nav-item .nav-link {
color: #999999 !important
}
.theme-dark .nav-tabs .nav-item .nav-link {
color: #ffffff
}
.nav-tabs .nav-item .nav-link.active {
background: none;
border: 0;
border-bottom-width: 3px;
border-bottom-style: solid;
opacity: 1;
line-height: 34px;
}
.ios .nav-tabs .nav-item .nav-link.active {
border: 0;
line-height: 38px;
}
/* iphone x updates css */
body .wrapper .page > header {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
body .wrapper .page-content {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
body .wrapper .sidebar-left {
padding-left: env(safe-area-inset-left);
}
body .wrapper .sidebar-right {
padding-left: env(safe-area-inset-right);
}
body .wrapper .page .footer {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
/* search block */
.clearfix {
clear: both
}
.md .searchshadow {
border-radius: 7px !important;
background-color: rgb(255, 255, 255);
box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
width: 100%;
overflow: hidden;
}
.md .searchshadow .form-control {
border-bottom: 0
}
/* Image left details right overlay */
.image-left-below {
position: relative;
width: 100%;
display: flex;
text-align: left;
margin: 10px 0
}
.image-left-below .swiper-content-block {
position: absolute;
height: auto;
top: 22px;
right: 0;
width: 50%;
}
.image-left-wrap {
width: 80%;
height: 200px;
border-radius: 7px;
overflow: hidden;
margin: 0
}
.image-left-wrap img {
width: 100%;
min-height: 100%
}
.ios .media .like-heart,
.md .media .like-heart,
.like-heart {
height: 24px;
width: 24px;
line-height: 24px;
vertical-align: middle;
border-radius: 50%;
text-align: center;
background: #e5e5e5;
position: absolute;
border: 0;
padding: 0;
right: 10px;
top: 10px;
}
.ios .media .like-heart,
.md .media .like-heart {
margin-top: 8px;
}
.ios .media .like-heart i,
.md .media .like-heart i,
.like-heart i {
font-size: 16px;
line-height: 24px;
color: #f44336;
}
.image-left-below .swiper-content-block.right-block {
position: absolute
}
.right-block {
position: relative;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.right-block p {
line-height: 16px;
margin: 0;
font-size: 14px;
margin-bottom: 5px;
}
.right-block h2 {
font-size: 20px;
margin: 0;
line-height: 28px;
font-weight: 300;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.right-block h3 {
font-size: 16px;
line-height: 16px;
margin: 0;
display: inline-block;
margin-top: 10px;
width: 100%
}
.right-block h3 small {
font-size: 14px;
font-weight: 300;
color: #888888
}
.right-block a {
display: block;
font-size: 14px;
}
.image-left-wrap.smalls {
width: 65px;
height: 40px;
border-radius: 3px;
overflow: hidden;
margin: 0;
}
.image-left-wrap.smalls img {
width: 100%;
min-height: 100%
}
/* location details*/
.swiper-location-carousel,
.swiper-location {
position: relative;
z-index: 0
}
.swiper-location .swiper-slide {
padding: 0;
border: 0;
}
.swiper-location .swiper-slide img {
width: 100%;
}
.swiper-location .swiper-pagination-bullets,
.swiper-location .swiper-pagination-custom,
.swiper-location .swiper-pagination-fraction {
bottom: auto;
top: 10px;
}
.detailblock-top {
margin-top: -50px !important;
z-index: 2
}
.location-ammenities .list-group {
display: block
}
.location-ammenities .media .item-media {
width: 24px;
min-width: 24px;
line-height: 40px;
}
.location-ammenities .media .item-media img {
width: 100%;
vertical-align: middle
}
.location-ammenities li {
width: 50%;
float: left
}
.location-ammenities li:nth-child(2n) {
border-left: 0
}
.map {
width: 100%
}
.friend-visited + div,
.friend-visited {
width: auto !important;
margin-top: 15px;
}
.friend-visited .avatar {
display: inline-block;
margin-right: 4px;
margin-bottom: 0
}
.friend-visited + div p {
font-size: 10px;
margin-bottom: 0;
margin-top: 5px;
color: #666666
}
.rating {
width: 18px;
font-size: 18px;
vertical-align: middle
}
.user-column {
flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
-moz-flex-direction: column;
text-align: center;
}
.user-column .item-inner {
padding-right: 0;
margin: 0;
text-align: center
}
.user-column .item-inner > div {
width: 100%
}
/* restaurant css */
.homepage-restaurant {
margin-top: 15px;
padding-bottom: 10px;
margin-bottom: 15px;
}
.homepage-restaurant .swiper-wrapper .block-slide {
position: absolute;
left: 0;
right: 0;
bottom: 5px;
padding: 0px 30px 25px 30px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 250px;
}
.featured-restaurant .swiper-wrapper .swiper-slide figure {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 150px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure + div .card {
margin: 0
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.featured-restaurant .swiper-wrapper .swiper-slide figure img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.featured-restaurant .swiper-wrapper .swiper-slide {
width: 80%;
padding: 0
}
.categories {
margin-bottom: 15px;
}
.categories .swiper-wrapper .swiper-slide {
flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
-moz-flex-direction: column;
width: 85px;
padding: 0 5px;
}
.categories .swiper-wrapper .swiper-slide .swiper-content-block {
padding: 0px;
width: 100%
}
.categories .swiper-wrapper .swiper-slide .swiper-content-block figure {
padding: 0;
margin: 0;
border-radius: 10px;
overflow: hidden;
width: 100%
}
.categories .swiper-wrapper .swiper-slide p {
font-size: 12px;
margin: 10px 0 0 0;
}
.categories-banner {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 100px;
}
.categories-banner img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.categories-banner figcaption {
position: absolute;
width: 100%;
top: 30%;
font-size: 30px;
text-align: center;
left: 0;
color: #ffffff;
}
.square-40 {
height: 40px;
width: 40px;
margin: 0;
border-radius: 5px;
overflow: hidden;
margin-right: 15px;
}
.square-40 img {
min-width: 100%;
max-height: 100%;
vertical-align: top
}
.square-60 {
height: 60px;
width: 60px;
margin: 0;
border-radius: 5px;
overflow: hidden;
}
.square-60 img {
min-width: 100%;
max-height: 100%;
vertical-align: top
}
.square-50x80 {
height: 50px;
width: 100px;
margin: 0;
border-radius: 5px;
overflow: hidden;
margin-right: 15px;
}
.square-50x80 iframe {
width: 100%;
height: 100%;
}
.topmost * {
line-height: 20px;
}
.toolbar.light {
background: #ffffff !important;
}
.ios .toolbar.light {
border-top: 1px solid rgba(0, 0, 0, 0.1);
height: 60px
}
.ios .toolbar.light .toolbar-inner {
padding: 5px 8px;
}
.toolbar.light a.tab-link,
.toolbar.light.tabbar-labels a.tab-link {
color: rgba(0, 0, 0, 0.5)
}
.md .messagebar.light:after,
.md .toolbar-bottom-md.light:after {
content: '';
opacity: 0.5
}
.w-100 {
width: 100%;
}
.distance {
font-size: 14px;
width: 85px;
height: 85px;
text-align: center;
padding: 10px;
color: #999999;
margin: 0 auto;
background: #ffffff;
margin-top: -40px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 50px;
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
}
.distance i.icon {
font-size: 40px;
color: #000000;
}
.card.cart-block {
margin: 0;
margin-top: 40px;
}
.card.cart-block .like-heart {
top: 0;
right: 0;
position: relative;
margin-top: 0;
display: inline-block;
}
/* tabber */
.tabber {
padding: 0;
z-index: 9;
width: 100%;
left: 0;
}
.tabber-bottom {
position: absolute;
bottom: 0px;
overflow: hidden;
padding-top: 10px;
left: 0;
}
.ios .tabber-bottom {
border-top: 1px solid #dddddd;
}
.tabber-bottom .nav-tabs {
background: #ffffff;
width: 100%;
left: 0;
margin-bottom: 0;
border-bottom: 0
}
.tabber-bottom:after {
content: '';
position: absolute;
right: 0;
width: 100%;
top: 0px;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
opacity: 0.5;
}
.tabber-bottom .nav-tabs .nav-link {
height: 60px;
color: #999999;
}
.tabber-bottom + .tab-content {
padding-bottom: 60px;
}
.tabber-bottom .nav-tabs .nav-link i {
display: block;
text-align: center;
height: 22px;
}
.tabber-bottom .nav-tabs .nav-link .badge {
position: absolute;
background: red;
color: #ffffff;
font-family: sans-serif;
font-size: 10px;
}
.tab-content.h-100 .tab-pane {
height: 100%;
overflow-y: auto
}
/* Scrolbar webkit css */
::-webkit-scrollbar {
width: 2px;
height: 2px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 10px;
border-radius: 10px;
}
@media screen and (max-width:350px) {
header > .right a,
header > .left a,
header,
.logo figure {
height: 44px;
line-height: 44px;
}
header > .right a,
header > .left a {
width: 44px;
}
header.fixed-header~.page-content {
padding-top: 44px;
}
.logo {
line-height: 44px;
font-size: 15px;
vertical-align: top
}
.login-title {
font-size: 44px;
line-height: 44px;
}
.navbar .navbar-nav li a {
padding: 5px 15px
}
.navbar .navbar-nav li a.dropdown-toggle::after {
top: 18px;
}
.btn {
line-height: 34px;
font-size: 13px;
padding: 5px 1.5rem;
}
.sq-btn {
padding: 0;
height: 44px;
width: 44px;
line-height: 42px;
text-align: center
}
.btn-block {
padding: 5px 0.5rem;
}
.form-control {
padding: 5px .75rem;
font-size: 15px;
min-height: 44px;
}
.sidebar {
width: 250px;
}
.push-content-left.menu-left-open .page {
margin-left: 250px;
}
.push-content-right.menu-right-open .page {
margin-left: -250px;
}
.card-footer .post-seconds {
font-size: 12px;
vertical-align: middle
}
.avatar.avatar-120 {
width: 100px;
height: 100px;
line-height: 100px;
}
} | www/css/style.css |
[Table of contents]
1. base layout css
2. sidebar css
3. fullscreen menu
4. modal box
5. navigation menu
6. header css
7. color scheme css
8. button css
9. background css
10. dashboard swiper slider
11. swiper css
12. List group css
13. card css
14. media css
15. media css
16. sparkline chart toolti
17. avatar css
18. footer
19. login page
20. form control
21. tabs
22. Footer
23. iphone x updates
24. Scrolbar webkit css
25. Media query css
---------------------------------------------------------*/
/* base layout css */
html,
body {
height: 100%;
overflow: hidden
}
body {
font-size: 14px;
color: #666666;
}
.wrapper {
height: 100%;
width: 100%;
display: block;
overflow: hidden
}
.page {
height: 100%;
width: 100%;
position: relative;
z-index: 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
overflow: hidden;
-webkit-transition: all ease 0.4s;
-moz-transition: all ease 0.4s;
-ms-transition: all ease 0.4s;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.page-content {
padding: 0;
height: 100%;
min-height: 100%;
overflow-y: auto;
position: relative;
}
header.fixed-header~.page-content {
padding-top: 50px;
}
.content-sticky-footer {
min-height: 100%;
height: auto;
position: relative;
display: inline-block;
clear: both;
width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #000000;
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6 {
color: #ffffff;
}
.no-bg {
background: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
-ms-box-shadow: none !important;
-moz-box-shadow: none !important;
}
.no-bg:after {
display: none
}
.theme-dark .border-top,
.theme-dark .border-bottom,
.theme-dark .border-left,
.theme-dark .border-right,
.theme-dark .border,
.theme-dark hr {
border-color: #333333 !important;
}
.md .z2 {
-ms-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
-moz-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12) !important;
}
.text-normal {
text-transform: none
}
.bg-none {
background: none !important
}
.hljs {
background: #f5f7ff;
border: 1px dashed #8dacff;
}
.ios .max-demo-frame header {
padding-top: 30px;
height: 80px;
}
.ios .max-demo-frame .sidebar,
.ios .max-demo-frame .searchcontrol {
padding-top: 30px;
}
.ios .max-demo-frame header.fixed-header~.page-content {
padding-top: 80px;
}
.ios .max-demo-frame .login-logo {
margin-top: 25%;
}
.no-shadow:after {
display: none
}
/* sidebar css */
.sidebar {
height: 100%;
width: 280px;
position: fixed;
top: 0;
z-index: 9;
transition: all ease 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
-ms-transition: all ease 0.5s;
}
.sidebar-left {
left: -300px;
}
.md .sidebar-left {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.sidebar-right {
right: -300px;
}
.md .sidebar-right {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.menu-left-open .sidebar-left {
left: 0;
}
.menu-right-open .sidebar-right {
right: 0;
}
.menu-left-open .backdrop,
.menu-right-open .backdrop-right {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.2);
z-index: 5
}
.ios .menu-left-open .backdrop,
.ios .menu-right-open .backdrop-right {
background: rgba(255, 255, 255, 0.5);
}
.push-content-right.menu-right-open .page {
margin-left: -280px;
-webkit-transition: all ease 0.6s;
-moz-transition: all ease 0.6s;
-ms-transition: all ease 0.6s;
z-index: 10;
}
.push-content-right.menu-right-open .backdrop-right {
background: none;
z-index: 11;
left: -280px;
}
.push-content-left.menu-left-open .page {
margin-left: 280px;
-webkit-transition: all ease 0.6s;
-moz-transition: all ease 0.6s;
-ms-transition: all ease 0.6s;
z-index: 10;
}
.push-content-left.menu-left-open .backdrop {
background: none;
z-index: 11;
left: 280px;
}
.profile-link {
padding: 15px;
color: #ffffff
}
.profile-link .media .media-body h5 {
color: #ffffff;
}
.profile-link .media .media-body p {
color: rgba(255, 255, 255, 0.7);
}
/* fullscreen menu */
.fullscreen-menu {
background: #2196f3;
color: #fff;
text-align: center;
}
.fullscreen-menu a {
color: #fff;
}
.closebutton {
position: absolute;
right: 0;
top: 0;
height: 40px;
width: 40px;
display: block;
line-height: 40px;
vertical-align: middle;
text-align: center
}
.user-fullmenu figure {
height: 80px;
width: 80px;
display: block;
text-align: center;
border-radius: 50%;
overflow: hidden;
margin: 0% auto 5px auto;
}
.user-fullmenu figure img {
margin-bottom: 0;
width: 100%;
}
.user-fullmenu .media-content {
display: block;
width: 100%;
}
.user-fullmenu .media-content h6 {
margin: 0;
color: #ffffff;
}
.user-fullmenu .media-content h6 small {
font-size: 14px;
font-weight: 300;
color: rgba(255, 255, 255, 0.7);
}
.fullscreen-menu .menulist {
padding: 0;
}
.fullscreen-menu .menulist ul {
padding: 0;
list-style: none;
margin-bottom: 0;
}
.fullscreen-menu .menulist ul li {
width: 31.33%;
display: inline-block;
margin-bottom: 15px;
}
.fullscreen-menu .menulist ul li a {
width: 100%;
display: block;
text-transform: uppercase;
font-size: 10px;
}
.fullscreen-menu .menulist ul li a .icon {
background: rgba(255, 255, 255, 0.2);
width: 70px;
height: 70px;
line-height: 70px;
vertical-align: middle;
border-radius: 50%;
display: block;
margin: 5px auto
}
.button.autowidthbtn {
width: auto;
display: inline-block;
padding: 0 30px
}
.fullscreen-menu .menulist ul li a:hover .icon {
background: rgba(255, 255, 255, 0.5);
}
/* modal box */
.modal-header {
padding: 0.5em 1rem;
border-bottom: 0
}
.popup-fullmenu .modal-dialog {
display: flex;
height: 100%;
margin: 0 auto;
align-items: center;
}
.popup-fullmenu .modal-content {
border-radius: 0;
max-height: 100%;
height: 824px;
overflow-y: auto;
}
.ios .modal-content > .background {
border-radius: 4px 4px 0 0
}
/* navigation menu */
.navbar {
width: 100%;
display: block;
padding: 0;
margin: 0 0 10px 0;
}
.navbar .navbar-nav {
width: 100%;
display: block
}
.navbar .navbar-nav li {
width: 100%;
display: block;
margin-bottom: -1px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav li:last-child {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav li .dropdown-menu {
width: 100%;
background: rgba(0, 0, 0, 0.1);
border: 0;
margin: 0;
border-radius: 0;
padding: 0;
}
.navbar .navbar-nav li a.dropdown-toggle::after {
position: absolute;
right: 15px;
top: 24px;
}
.navbar .navbar-nav li a {
width: 100%;
display: block;
line-height: 28px;
padding: 10px 15px;
font-size: 15px;
color: #ffffff;
vertical-align: middle
}
.navbar .navbar-nav li .dropdown-menu a {
padding-left: 48px;
color: rgba(255, 255, 255, 0.8);
}
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:focus {
color: #ffffff;
background: rgba(0, 0, 0, 0.2);
}
.navbar .navbar-nav li a i {
font-size: 20px;
vertical-align: middle;
width: 30px;
text-align: left
}
/* header css */
header {
position: relative;
width: 100%;
height: 50px;
z-index: 6;
-webkit-transition: all ease 0.4s;
-moz-transition: all ease 0.4s;
-ms-transition: all ease 0.4s;
}
.ios header {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header > .right,
header > .left {
width: auto;
display: flex
}
header > .right a,
header > .left a {
width: 50px;
height: 50px;
line-height: 44px;
display: block;
text-align: center;
}
header > .right a:hover,
header > .left a:hover {
background: rgba(0, 0, 0, 0.1);
}
header > .right a i,
header > .left a i {
display: inline-block;
vertical-align: middle
}
header.fixed-header {
position: absolute;
top: 0;
left: 0
}
.md header:after {
content: '';
position: absolute;
right: 0;
width: 100%;
top: 100%;
bottom: auto;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.logo {
width: auto;
display: inline-block;
color: #ffffff;
font-size: 18px;
line-height: 50px;
font-weight: 600;
vertical-align: middle
}
.logo:hover {
text-decoration: none
}
.logo figure {
width: auto;
height: 50px;
vertical-align: top;
display: inline-block;
margin: 0;
margin-right: 5px;
}
.logo figure img {
max-height: 32px;
vertical-align: middle;
margin-top: -5px
}
/* color scheme css */
header a {
color: #ffffff
}
.ios .btn.gradient,
.ios .color-theme-blue .btn.gradient,
.md .color-theme-blue .btn.gradient,
.btn.gradient-blue,
.gradient-blue {
background-image: -moz-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(18, 131, 246) 0%, rgb(136, 17, 211) 100%);
color: #ffffff;
}
.ios .color-theme-red .btn.gradient,
.btn.gradient-red,
.md .color-theme-red .btn.gradient,
.gradient-red {
background-image: -moz-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(244, 70, 94) 0%, rgb(244, 111, 70) 100%);
color: #ffffff;
}
.ios .color-theme-green .btn.gradient,
.btn.gradient-green,
.md .color-theme-green .btn.gradient,
.gradient-green {
background-image: -moz-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(0, 196, 115) 0%, rgb(29, 214, 111) 52%, rgb(58, 231, 107) 100%);
color: #ffffff;
}
.ios .color-theme-pink .btn.gradient,
.btn.gradient-pink,
.md .color-theme-pink .btn.gradient,
.gradient-pink {
background-image: -moz-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(227, 24, 172) 0%, rgb(239, 70, 194) 48%, rgb(251, 116, 215) 100%);
color: #ffffff;
}
.ios .color-theme-yellow .btn.gradient,
.btn.gradient-yellow,
.md .color-theme-yellow .btn.gradient,
.gradient-yellow {
background-image: -moz-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(247, 146, 47) 0%, rgb(251, 169, 24) 48%, rgb(255, 192, 0) 100%);
color: #ffffff;
}
.ios .color-theme-orange .btn.gradient,
.btn.gradient-orange,
.md .color-theme-orange .btn.gradient,
.gradient-orange {
background-image: -moz-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(255, 132, 0) 0%, rgb(255, 176, 62) 100%);
color: #ffffff;
}
.ios .color-theme-gray .btn.gradient,
.btn.gradient-gray,
.md .color-theme-gray .btn.gradient,
.gradient-gray {
background-image: -moz-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(165, 161, 170) 0%, rgb(207, 206, 207) 100%);
color: #ffffff;
}
.ios .color-theme-black .btn.gradient,
.btn.gradient-black,
.md .color-theme-black .btn.gradient,
.gradient-black {
background-image: -moz-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
background-image: -webkit-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
background-image: -ms-linear-gradient( 63deg, rgb(27, 26, 26) 0%, rgb(0, 48, 79) 100%);
color: #ffffff;
}
.color-theme-red .background {
background: #e2223c;
}
.ios .color-theme-red .sidebar,
.ios .color-theme-red .fullscreen-menu,
.md .color-theme-red .sidebar,
.md .color-theme-red .fullscreen-menu,
.md .color-theme-red header,
.color-theme-red .circle-background:before {
background: #f4465e;
}
.ios .color-theme-red header {
color: #f4465e;
background: #ffffff
}
.ios .color-theme-red header a,
.ios .color-theme-red header .logo,
.ios .color-theme-red .nav-tabs .nav-item .nav-link.active,
.color-theme-red .block-title,
.color-theme-red .tabber-bottom .nav-tabs .nav-link.active {
color: #f4465e !important;
}
.color-theme-green .background {
background: #009f5d;
}
.ios .color-theme-green .sidebar,
.ios .color-theme-green .fullscreen-menu,
.md .color-theme-green .sidebar,
.md .color-theme-green .fullscreen-menu,
.md .color-theme-green header,
.color-theme-green .circle-background:before {
background: #00c473;
}
.ios .color-theme-green header {
color: #00c473;
background: #ffffff
}
.ios .color-theme-green header a,
.ios .color-theme-green header .logo,
.ios .color-theme-green .nav-tabs .nav-item .nav-link.active,
.color-theme-green .block-title,
.color-theme-green .tabber-bottom .nav-tabs .nav-link.active {
color: #00c473 !important;
}
.color-theme-blue .background {
background: #0366cb;
}
.ios .color-theme-blue .sidebar,
.ios .color-theme-blue .fullscreen-menu,
.md .color-theme-blue .sidebar,
.md .color-theme-blue .fullscreen-menu,
.md .color-theme-blue header,
.color-theme-blue .circle-background:before {
background: #1283f6;
}
.ios .color-theme-blue header {
color: #1283f6;
background: #ffffff
}
.ios .color-theme-blue header a,
.ios .color-theme-blue header .logo,
.ios .color-theme-blue .nav-tabs .nav-item .nav-link.active,
.color-theme-blue .block-title,
.color-theme-blue .tabber-bottom .nav-tabs .nav-link.active {
color: #1283f6 !important;
}
.color-theme-pink .background {
background: #de40b4;
}
.ios .color-theme-pink .sidebar,
.ios .color-theme-pink .fullscreen-menu,
.md .color-theme-pink .sidebar,
.md .color-theme-pink .fullscreen-menu,
.md .color-theme-pink header,
.color-theme-pink .circle-background:before {
background: #fb74d7;
}
.ios .color-theme-pink header {
color: #fb74d7;
background: #ffffff
}
.ios .color-theme-pink header a,
.ios .color-theme-pink header .logo,
.ios .color-theme-pink .nav-tabs .nav-item .nav-link.active,
.color-theme-pink .block-title,
.color-theme-pink .tabber-bottom .nav-tabs .nav-link.active {
color: #fb74d7 !important;
}
.color-theme-yellow .background {
background: #e28200;
}
.ios .color-theme-yellow .sidebar,
.ios .color-theme-yellow .fullscreen-menu,
.md .color-theme-yellow .sidebar,
.md .color-theme-yellow .fullscreen-menu,
.md .color-theme-yellow header,
.color-theme-yellow .circle-background:before {
background: #ffc000;
}
.ios .color-theme-yellow header {
color: #ffc000;
background: #ffffff
}
.ios .color-theme-yellow header a,
.ios .color-theme-yellow header .logo,
.ios .color-theme-yellow .nav-tabs .nav-item .nav-link.active,
.color-theme-yellow .block-title,
.color-theme-yellow .tabber-bottom .nav-tabs .nav-link.active {
color: #ffc000 !important;
}
.color-theme-orange .background {
background: #e07400;
}
.ios .color-theme-orange .sidebar,
.ios .color-theme-orange .fullscreen-menu,
.md .color-theme-orange .sidebar,
.md .color-theme-orange .fullscreen-menu,
.md .color-theme-orange header,
.color-theme-orange .circle-background:before {
background: #ff8400;
}
.ios .color-theme-orange header {
color: #ff8400;
background: #ffffff
}
.ios .color-theme-orange header a,
.ios .color-theme-orange header .logo,
.ios .color-theme-orange .nav-tabs .nav-item .nav-link.active,
.color-theme-orange .block-title,
.color-theme-orange .tabber-bottom .nav-tabs .nav-link.active {
color: #ff8400 !important;
}
.color-theme-gray .background {
background: #7c7486;
}
.ios .color-theme-gray .sidebar,
.ios .color-theme-gray .fullscreen-menu,
.md .color-theme-gray .sidebar,
.md .color-theme-gray .fullscreen-menu,
.md .color-theme-gray header,
.color-theme-gray .circle-background:before {
background: #a5a1aa;
}
.ios .color-theme-gray header {
color: #a5a1aa;
background: #ffffff
}
.ios .color-theme-gray header a,
.ios .color-theme-gray header .logo,
.ios .color-theme-gray .nav-tabs .nav-item .nav-link.active,
.color-theme-gray .block-title,
.color-theme-gray .tabber-bottom .nav-tabs .nav-link.active {
color: #a5a1aa !important;
}
.color-theme-black .background {
background: #000000;
}
.color-dark.background {
background: #000000;
}
.color-dark.background img {
opacity: 0.5
}
.ios .color-theme-black .sidebar,
.ios .color-theme-black .fullscreen-menu,
.md .color-theme-black .sidebar,
.md .color-theme-black .fullscreen-menu,
.md .color-theme-black header,
.color-theme-black .circle-background:before {
background: #000000;
}
.ios .color-theme-black header {
color: #000000;
background: #ffffff
}
.ios .color-theme-black header a,
.ios .color-theme-black header .logo,
.ios .color-theme-black .nav-tabs .nav-item .nav-link.active,
.color-theme-black .block-title,
.color-theme-black .tabber-bottom .nav-tabs .nav-link.active {
color: #000000 !important;
}
body.theme-dark {
background: #000000;
color: #dddddd
}
.md body.theme-dark .block-title,
.ios body.theme-dark .block-title {
color: #ffffff
}
.theme-dark .swiper-slide,
.theme-dark .list .item-title,
.theme-dark .post-seconds {
color: #ffffff
}
.theme-dark .list .item-subtitle,
.theme-dark .title-small-carousel+p {
color: #aaaaaa;
}
.theme-dark .block-footer,
.theme-dark .block-header,
.theme-dark .block-title {
color: #bbbbbb;
}
.theme-dark .card {
background-color: #333;
}
.theme-dark .card.card-data-item {
border: 1px solid #dddddd38;
}
.theme-dark .card-footer,
.theme-dark .card-header {
border-color: rgba(255, 255, 255, 0.06);
}
.theme-dark hr {
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-dark .swiper-pagination-bullet {
background: #fff;
opacity: .3;
}
.theme-dark .swiper-pagination-bullet-active {
opacity: 1;
background: #007aff;
}
.theme-dark .list ul:before,
.theme-dark ul:before,
.theme-dark .item-inner:after,
.theme-dark .list ul:after,
.list .theme-dark ul:after {
background-color: #666666 !important;
}
.ios .theme-dark .swiper-pagination-bullet {
background: #ffffff
}
.theme-dark .swiper-content-block {
border: 0px solid #ccc;
background: #333333;
}
.md .theme-dark .swiper-content-block,
.ios .theme-dark .swiper-content-block {
border: 1px solid #414142;
}
.theme-dark .footer,
.md .theme-dark .block.footer,
.ios .theme-dark .block.footer {
background: rgba(232, 234, 243, 0.15);
color: #ffffff
}
.theme-dark .footer a,
.md .theme-dark .block.footer a,
.ios .theme-dark .block.footer a,
.theme-dark .footer a i,
.md .theme-dark .block.footer a i,
.ios .theme-dark .block.footer a i {
color: #ffffff
}
.theme-dark .footer.dark,
.md .theme-dark .block.footer.dark,
.ios .theme-dark .block.footer.dark {
background: rgba(255, 255, 255, 0.3);
}
.theme-dark .footer-m {
background-color: #171717;
}
.theme-dark .form-control {
color: #ffffff;
}
.theme-dark .form-control::placeholder {
color: rgba(255, 255, 255, 0.3);
}
.theme-dark .login-input-content {
background: #333333;
}
.theme-dark .modal-content {
background: #000000;
}
.block-title.color-dark {
color: #000000 !important
}
.theme-dark .block-title.color-dark {
color: #ffffff !important
}
/* button css */
.btn {
text-transform: uppercase;
border-radius: 0;
line-height: 36px;
font-size: 14px;
font-weight: 500;
padding: .375rem 1.5rem;
}
.ios .btn {
border-radius: 4px !important;
}
.ios .btn-group .btn {
border-radius: 0px !important;
}
.ios .btn-group .btn:first-child {
border-top-left-radius: 4px !important;
border-bottom-left-radius: 4px !important;
}
.ios .btn-group .btn:last-child {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
}
.ios .btn-group.btn-group-vertical .btn {
border-radius: 0 !important;
}
.ios .btn-group.btn-group-vertical .btn:first-child {
border-radius: 4px 4px 0 0px !important;
}
.ios .btn-group.btn-group-vertical .btn:last-child {
border-radius: 0 0px 4px 4px !important;
}
.ios .btn-group > .btn-group .btn:first-child {
border-radius: 0 4px 4px 0 !important;
}
.ios .btn-group > .btn-group .btn:first-child {
border-radius: 0 4px 4px 0 !important;
}
.ios .btn.dropdown-toggle,
.ios .btn-group .btn.dropdown-toggle {
border-radius: 4px !important;
border-radius: 4px !important;
}
.ios .btn+.btn.dropdown-toggle,
.ios .btn-group .btn+.btn.dropdown-toggle {
border-top-right-radius: 4px !important;
border-bottom-right-radius: 4px !important;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
.btn-block {
padding: .375rem 0.5rem;
}
.btn.rounded {
border-radius: 30px !important;
}
.btn-sm {
line-height: 30px;
font-size: 12px;
padding: .1rem 1rem;
}
.btn-lg {
text-transform: uppercase;
border-radius: 0;
line-height: 44px;
font-size: 16px;
font-weight: 500;
padding: .4rem 1.5rem;
}
.sq-btn {
padding: 0;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center
}
.btn i {
vertical-align: middle;
margin-top: -3px
}
.btn-outline-white {
border: 1px solid rgba(255, 255, 255, 0.6);
color: #ffffff;
}
.btn-outline-white:hover {
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
}
.md .btn.gradient {
-moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
-ms-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
}
.btn-group-lg>.btn,
.btn-lg {
border-radius: 0
}
.btn-group-sm>.btn,
.btn-sm {
border-radius: 0
}
/* background css */
.background {
background: #2196f3;
height: 100%;
width: 100%;
overflow: hidden;
z-index: 0;
position: absolute;
top: 0;
left: 0;
box-sizing: border-box
}
.background img {
opacity: 0.2;
width: 100%;
top: 0;
border: 0;
min-height: 100%
}
.background+div {
z-index: 1;
position: relative
}
.background.bg-225 {
height: 225px;
}
.background.bg-170 {
height: 170px;
}
.background.bg-125 {
height: 65px;
}
.title-background {
font-size: 25px;
font-weight: 600;
line-height: 25px;
margin: 25px auto;
}
.title-background small {
font-size: 15px;
font-weight: 300
}
.full-screen-background {
width: 100%;
height: 100%;
min-height: 200px;
overflow: hidden;
position: relative;
}
.full-screen-background img {
width: 100%;
min-height: 100%;
position: absolute;
left: 0;
top: 0;
}
.circle-background:before {
content: "";
height: 280px;
width: 100%;
position: absolute;
z-index: 0;
top: 0;
left: 0;
border-radius: 0 0 50% 50%;
}
/* dashboard swiper slider */
.demo-swiper {
width: 100%;
height: 550px;
}
.swiper-slide {
font-size: 22px;
font-weight: 300;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
background: #fff;
color: #999999;
box-sizing: border-box;
background: none;
padding: 15px;
background-size: cover;
}
.swiper-content-block {
border: 0px solid #ccc;
background: #ffffff;
border-radius: 10px;
height: 100%;
width: 100%;
padding: 15px;
}
.md .swiper-content-block {
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
}
.swiper-content-block img {
border-radius: 8px;
max-width: 100%;
float: left
}
.ios .swiper-content-block {
border: 1px solid #dddddd;
}
.swipermultiple {
margin: 0px 0 35px;
font-size: 18px;
height: auto;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide {
width: 85%;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide:nth-child(2n) {
width: 70%;
}
.swipermultiple.demo-swiper-multiple-auto .swiper-slide:nth-child(3n) {
width: 30%;
}
.swipermultiple {
padding-bottom: 20px;
}
.swipermultiple.no-pagination {
padding-bottom: 0px;
margin-bottom: 10px
}
.swipermultiple .swiper-pagination-bullets,
.swipermultiple .swiper-pagination-custom,
.swipermultiple .swiper-pagination-fraction {
bottom: -5px;
}
.title-small-carousel {
margin: 0;
font-size: 14px;
line-height: 18px;
font-weight: 400
}
.title-small-carousel+p {
margin: 0;
font-size: 11px;
line-height: 14px;
color: #999999
}
.title-number-carousel {
font-size: 18px;
margin: 10px 0 0 0;
display: inline-block;
float: left;
color: #666666
}
.gauge {
float: right;
margin-top: 10px;
line-height: 20px;
}
.md .block-title,
.ios .block-title {
margin: 30px 15px 20px 15px;
text-transform: uppercase;
color: rgba(0, 0, 0, .54);
line-height: 16px;
font-weight: 600;
position: relative;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 14px;
}
/* swiper css */
.demo-swiper-gallery-top {
width: 100%;
height: 500px;
margin-left: auto;
margin-right: auto;
}
demo-swiper-gallery-top .swiper-slide {
background-size: cover;
background-position: center;
}
.gallery-top {
height: 80%;
width: 100%;
}
.gallery-thumbs {
height: 20%;
box-sizing: border-box;
padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
width: 25%;
height: 100%;
opacity: 0.4;
}
.gallery-thumbs .swiper-slide-thumb-active {
opacity: 1;
}
.parallax-bg {
position: absolute;
left: 0;
top: 0;
width: 130%;
height: 100%;
-webkit-background-size: cover;
background-size: cover;
background-position: center;
}
.demo-swiper-parallax .swiper-parallax-bg {
position: absolute;
left: 0;
top: 0;
width: 130%;
height: 100%;
-webkit-background-size: cover;
background-size: cover;
background-position: center;
}
.demo-swiper-parallax .swiper-slide {
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
}
.demo-swiper-parallax .swiper-slide .swiper-slide-title {
font-size: 24px;
color: #ffffff
}
.demo-swiper-parallax .swiper-slide .swiper-slide-subtitle {
font-size: 20px;
color: #ffffff
}
.demo-swiper-parallax .swiper-slide p {
font-size: 16px;
color: #ffffff
}
.swiper-lazy {
max-width: 100%;
min-height: 100%
}
.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
height: 6px;
}
/* List group css */
.list-group-item {
border-width: 1px 0 1px 0;
padding: 10px 15px;
border: 1px solid rgba(0, 0, 0, .06);
}
.list-group-item:last-child,
.list-group-item:first-child {
border-radius: 0rem;
}
.status-online {
width: 8px;
height: 8px;
vertical-align: middle;
display: inline-block;
border-radius: 5px;
}
a:hover {
text-decoration: none
}
.theme-dark .list-group-item {
background-color: #222222;
border: 1px solid #333333;
}
/* card */
.card{ margin-bottom: 15px}
.md .card {
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
border: 0;
border-radius: 10px;
}
.md.card-footer,
.md .card-header {
border-radius: 10px 10px 0 0;
}
.md .card .card-body {
padding: 10px 15px;
}
.card .card-body {
z-index: 1
}
.card-footer,
.card-header {
background: none;
padding: 10px 15px;
z-index: 2;
border-color: rgba(0, 0, 0, .06)
}
.card-footer i {
font-size: 16px;
vertical-align: middle;
color: #999999
}
.card-footer {
line-height: 30px;
color: #000000
}
.card-footer .post-seconds {
font-size: 15px;
vertical-align: middle;
font-weight: 500
}
.card-footer .post-seconds span {
font-size: 14px;
color: #999999; font-weight: 300
}
.card-title {
margin: .3rem 0;
font-size: 1.2em
}
/* media css */
.icon {
font-size: 22px;
}
.icon-2x {
font-size: 40px;
line-height: 40px;
vertical-align: middle
}
.icon-3x {
font-size: 50px;
line-height: 50px;
vertical-align: middle
}
.icon-4x {
font-size: 70px;
line-height: 70px;
vertical-align: middle
}
/* media css */
.media .media-body h5 {
color: #000000;
margin: 0;
font-size: 16px;
}
.theme-dark .media .media-body h5 {
color: #ffffff;
}
.media .media-body p {
color: #666666;
margin: 0;
font-size: 14px;
}
.theme-dark .media .media-body p {
color: rgba(255, 255, 255, 0.6);
}
.effort-time {
line-height: 20px;
vertical-align: middle;
margin-bottom: 10px;
display: block;
text-align: right
}
.effort-time i {
line-height: 20px;
vertical-align: middle
}
/* sparkline chart tooltip*/
.jqstooltip {
height: auto!important;
width: auto !important;
display: block;
padding: 6px;
color: #222222 !important;
background: rgb(255, 255, 255) !important;
font-size: 12px;
text-align: center;
line-height: 14px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.jqstooltip .jqsfield,
.jqstooltip .jqsfield span {
color: #222222 !important;
}
/* avatar css */
.avatar {
border-radius: 50%;
margin: 0;
margin-right: 10px;
vertical-align: middle;
display: inline-block;
}
.avatar img {
width: 100%;
vertical-align: top
}
.avatar.avatar-30 {
width: 30px;
height: 30px;
line-height: 30px;
}
.avatar.avatar-40 {
width: 40px;
height: 40px;
line-height: 40px;
}
.avatar.avatar-120 {
width: 120px;
height: 120px;
line-height: 120px;
}
.userlist_large {
position: relative;
padding: 15px;
}
.userlist_large .media {
flex-flow: column;
text-align: center;
position: relative;
}
.userlist_large .media figure {
margin: 0 auto;
}
.userblock-ht {
height: 170px;
}
/* footer */
.footer-wrapper {
width: 100%;
display: block;
position: relative;
left: 0;
}
.fixed-footer .footer-wrapper {
position: absolute;
width: 100%;
bottom: 0;
}
.fixed-footer .page-content {
padding-bottom: 100px;
}
.footer {
line-height: 40px;
vertical-align: middle;
padding: 5px 0px;
width: 100%;
background: #e8eaf3;
color: #666666
}
.footer.dark {
color: #ffffff;
background: #a8aab9;
}
.social {
display: inline-block;
height: 30px;
width: 30px;
margin: 0 2px;
vertical-align: middle
}
.social img {
vertical-align: top;
max-width: 100%;
border: 0
}
/* login page */
.login-logo {
width: 75px;
height: auto;
margin-top: 15%;
}
.login-title {
font-size: 50px;
margin-top: 5px;
line-height: 50px;
color: #ffffff;
font-weight: 600;
}
.login-title small {
font-size: 30px;
font-weight: 300
}
.login-input-content {
background: #ffffff;
z-index: 1;
position: relative
}
.ios .login-input-content {
margin-bottom: 10px;
}
.ios .login-tabs + .tab-content .login-input-content {
border-radius: 4px;
padding: 10px;
}
.ios .modal-content .login-input-content {
border-radius: 0px;
padding: 0px !important;
margin-bottom: 15px;
}
.ios .login-input-content .input-group,
.ios .login-input-content .form-group {
margin-bottom: 15px
}
.ios .login-input-content .input-group:last-child,
.ios .login-input-content .form-group:last-child {
margin-bottom: 0px
}
.md .login-input-content {
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12)!important;
}
.login-input-content .input-group-append,
.login-input-content .input-group-append .input-group-text,
.login-input-content .input-group-prepend,
.login-input-content .input-group-prepend .input-group-text {
background: none
}
.md .input-group {
border: 0;
border-radius: 0;
}
.md .input-group-append,
.md .input-group-append .input-group-text,
.md .input-group-prepend,
.md .input-group-prepend .input-group-text {
border-radius: 0;
border: 0;
color: #888888;
}
.verification {
padding: 20% 16% 0% 16%
}
/* form control */
.form-control {
padding: 10px .75rem;
font-size: 16px;
background: none;
min-height: 50px;
line-height: 30px;
}
.md .form-control {
border: 0;
border-radius: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.form-control:focus {
box-shadow: none;
border-color: #80bdff;
background: none
}
.form-control.text-white::placeholder {
color: rgba(255, 255, 255, 0.5)
}
.searchcontrol {
background: #ffffff;
width: 0;
overflow: hidden;
transition: ease all 0.5s;
-moz-transition: ease all 0.5s;
-ms-transition: ease all 0.5s;
-webkit-transition: ease all 0.5s;
position: fixed;
right: 0;
top: 0;
opacity: 0;
z-index: 8;
}
.theme-dark .searchcontrol {
background: #333333
}
.searchcontrol .input-group {
min-width: 250px
}
.searchcontrol.active {
width: 100%;
opacity: 1
}
.page-content .searchcontrol {
position: relative;
width: 100%;
opacity: 1;
overflow: visible;
z-index: 0
}
.md .page-content .searchcontrol:after {
content: '';
position: absolute;
right: 0;
opacity: 0.5;
width: 100%;
top: 100%;
bottom: auto;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.md .form-group label {
margin-bottom: 0
}
/* tabs */
.nav-tabs {
border: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
display: flex
}
.ios .nav-tabs {
background: #ffffff;
border-radius: 4px;
margin-bottom: 10px;
}
.ios .login-tabs.nav-tabs {
margin-bottom: 0;
border-radius: 4px 4px 0 0;
}
.ios .login-tabs.nav-tabs + .tab-content .login-input-content {
border-radius: 0 0 4px 4px;
}
.nav-tabs .nav-item {
border: 0;
margin-bottom: -2px;
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
text-align: center
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: transparent;
}
.nav-tabs .nav-item .nav-link {
border: 0;
opacity: 0.6;
padding: 5px 10px;
line-height: 30px;
border-radius: 0;
-ms-border-radius: 0;
-moz-border-radius: 0;
color: #222222;
text-align: center;
text-transform: uppercase;
font-size: 14px;
line-height: 38px;
font-weight: 500;
}
.ios .nav-tabs .nav-item .nav-link {
color: #999999 !important
}
.theme-dark .nav-tabs .nav-item .nav-link {
color: #ffffff
}
.nav-tabs .nav-item .nav-link.active {
background: none;
border: 0;
border-bottom-width: 3px;
border-bottom-style: solid;
opacity: 1;
line-height: 34px;
}
.ios .nav-tabs .nav-item .nav-link.active {
border: 0;
line-height: 38px;
}
/* iphone x updates css */
body .wrapper .page > header {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
body .wrapper .page-content {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
body .wrapper .sidebar-left {
padding-left: env(safe-area-inset-left);
}
body .wrapper .sidebar-right {
padding-left: env(safe-area-inset-right);
}
body .wrapper .page .footer {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
/* search block */
.clearfix {
clear: both
}
.md .searchshadow {
border-radius: 7px !important;
background-color: rgb(255, 255, 255);
box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
width: 100%;
overflow: hidden;
}
.md .searchshadow .form-control {
border-bottom: 0
}
/* Image left details right overlay */
.image-left-below {
position: relative;
width: 100%;
display: flex;
text-align: left;
margin: 10px 0
}
.image-left-below .swiper-content-block {
position: absolute;
height: auto;
top: 22px;
right: 0;
width: 50%;
}
.image-left-wrap {
width: 80%;
height: 200px;
border-radius: 7px;
overflow: hidden;
margin: 0
}
.image-left-wrap img {
width: 100%;
min-height: 100%
}
.ios .media .like-heart,
.md .media .like-heart,
.like-heart {
height: 24px;
width: 24px;
line-height: 24px;
vertical-align: middle;
border-radius: 50%;
text-align: center;
background: #e5e5e5;
position: absolute;
border: 0;
padding: 0;
right: 10px;
top: 10px;
}
.ios .media .like-heart,
.md .media .like-heart {
margin-top: 8px;
}
.ios .media .like-heart i,
.md .media .like-heart i,
.like-heart i {
font-size: 16px;
line-height: 24px;
color: #f44336;
}
.image-left-below .swiper-content-block.right-block {
position: absolute
}
.right-block {
position: relative;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.right-block p {
line-height: 16px;
margin: 0;
font-size: 14px;
margin-bottom: 5px;
}
.right-block h2 {
font-size: 20px;
margin: 0;
line-height: 28px;
font-weight: 300;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.right-block h3 {
font-size: 16px;
line-height: 16px;
margin: 0;
display: inline-block;
margin-top: 10px;
width: 100%
}
.right-block h3 small {
font-size: 14px;
font-weight: 300;
color: #888888
}
.right-block a {
display: block;
font-size: 14px;
}
.image-left-wrap.smalls {
width: 65px;
height: 40px;
border-radius: 3px;
overflow: hidden;
margin: 0;
}
.image-left-wrap.smalls img {
width: 100%;
min-height: 100%
}
/* location details*/
.swiper-location-carousel,
.swiper-location {
position: relative;
z-index: 0
}
.swiper-location .swiper-slide {
padding: 0;
border: 0;
}
.swiper-location .swiper-slide img {
width: 100%;
}
.swiper-location .swiper-pagination-bullets,
.swiper-location .swiper-pagination-custom,
.swiper-location .swiper-pagination-fraction {
bottom: auto;
top: 10px;
}
.detailblock-top {
margin-top: -50px !important;
z-index: 2
}
.location-ammenities .list-group {
display: block
}
.location-ammenities .media .item-media {
width: 24px;
min-width: 24px;
line-height: 40px;
}
.location-ammenities .media .item-media img {
width: 100%;
vertical-align: middle
}
.location-ammenities li {
width: 50%;
float: left
}
.location-ammenities li:nth-child(2n) {
border-left: 0
}
.map {
width: 100%
}
.friend-visited + div,
.friend-visited {
width: auto !important;
margin-top: 15px;
}
.friend-visited .avatar {
display: inline-block;
margin-right: 4px;
margin-bottom: 0
}
.friend-visited + div p {
font-size: 10px;
margin-bottom: 0;
margin-top: 5px;
color: #666666
}
.rating {
width: 18px;
font-size: 18px;
vertical-align: middle
}
.user-column {
flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
-moz-flex-direction: column;
text-align: center;
}
.user-column .item-inner {
padding-right: 0;
margin: 0;
text-align: center
}
.user-column .item-inner > div {
width: 100%
}
/* restaurant css */
.homepage-restaurant {
margin-top: 15px;
padding-bottom: 10px;
margin-bottom: 15px;
}
.homepage-restaurant .swiper-wrapper .block-slide {
position: absolute;
left: 0;
right: 0;
bottom: 5px;
padding: 0px 30px 25px 30px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 250px;
}
.featured-restaurant .swiper-wrapper .swiper-slide figure {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 150px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure + div .card {
margin: 0
}
.homepage-restaurant .swiper-wrapper .swiper-slide figure img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.featured-restaurant .swiper-wrapper .swiper-slide figure img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.featured-restaurant .swiper-wrapper .swiper-slide {
width: 80%;
padding: 0
}
.categories {
margin-bottom: 15px;
}
.categories .swiper-wrapper .swiper-slide {
flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
-moz-flex-direction: column;
width: 85px;
padding: 0 5px;
}
.categories .swiper-wrapper .swiper-slide .swiper-content-block {
padding: 0px;
width: 100%
}
.categories .swiper-wrapper .swiper-slide .swiper-content-block figure {
padding: 0;
margin: 0;
border-radius: 10px;
overflow: hidden;
width: 100%
}
.categories .swiper-wrapper .swiper-slide p {
font-size: 12px;
margin: 10px 0 0 0;
}
.categories-banner {
width: 100%;
margin: 0;
border-radius: 10px;
overflow: hidden;
height: 100px;
}
.categories-banner img {
width: 100%;
min-height: 100%;
vertical-align: top;
}
.categories-banner figcaption {
position: absolute;
width: 100%;
top: 30%;
font-size: 30px;
text-align: center;
left: 0;
color: #ffffff;
}
.square-40 {
height: 40px;
width: 40px;
margin: 0;
border-radius: 5px;
overflow: hidden;
margin-right: 15px;
}
.square-40 img {
min-width: 100%;
max-height: 100%;
vertical-align: top
}
.square-60 {
height: 60px;
width: 60px;
margin: 0;
border-radius: 5px;
overflow: hidden;
}
.square-60 img {
min-width: 100%;
max-height: 100%;
vertical-align: top
}
.square-50x80 {
height: 50px;
width: 100px;
margin: 0;
border-radius: 5px;
overflow: hidden;
margin-right: 15px;
}
.square-50x80 iframe {
width: 100%;
height: 100%;
}
.topmost * {
line-height: 20px;
}
.toolbar.light {
background: #ffffff !important;
}
.ios .toolbar.light {
border-top: 1px solid rgba(0, 0, 0, 0.1);
height: 60px
}
.ios .toolbar.light .toolbar-inner {
padding: 5px 8px;
}
.toolbar.light a.tab-link,
.toolbar.light.tabbar-labels a.tab-link {
color: rgba(0, 0, 0, 0.5)
}
.md .messagebar.light:after,
.md .toolbar-bottom-md.light:after {
content: '';
opacity: 0.5
}
.w-100 {
width: 100%;
}
.distance {
font-size: 14px;
width: 85px;
height: 85px;
text-align: center;
padding: 10px;
color: #999999;
margin: 0 auto;
background: #ffffff;
margin-top: -40px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 50px;
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
-ms-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
}
.distance i.icon {
font-size: 40px;
color: #000000;
}
.card.cart-block {
margin: 0;
margin-top: 40px;
}
.card.cart-block .like-heart {
top: 0;
right: 0;
position: relative;
margin-top: 0;
display: inline-block;
}
/* tabber */
.tabber {
padding: 0;
z-index: 9;
width: 100%;
left: 0;
}
.tabber-bottom {
position: absolute;
bottom: 0px;
overflow: hidden;
padding-top: 10px;
left: 0;
}
.ios .tabber-bottom {
border-top: 1px solid #dddddd;
}
.tabber-bottom .nav-tabs {
background: #ffffff;
width: 100%;
left: 0;
margin-bottom: 0;
border-bottom: 0
}
.tabber-bottom:after {
content: '';
position: absolute;
right: 0;
width: 100%;
top: 0px;
height: 10px;
pointer-events: none;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .3)), color-stop(40%, rgba(0, 0, 0, .1)), color-stop(50%, rgba(0, 0, 0, .05)), color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
opacity: 0.5;
}
.tabber-bottom .nav-tabs .nav-link {
height: 60px;
color: #999999;
}
.tabber-bottom + .tab-content {
padding-bottom: 60px;
}
.tabber-bottom .nav-tabs .nav-link i {
display: block;
text-align: center;
height: 22px;
}
.tabber-bottom .nav-tabs .nav-link .badge {
position: absolute;
background: red;
color: #ffffff;
font-family: sans-serif;
font-size: 10px;
}
.tab-content.h-100 .tab-pane {
height: 100%;
overflow-y: auto
}
/* Scrolbar webkit css */
::-webkit-scrollbar {
width: 2px;
height: 2px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 10px;
border-radius: 10px;
}
@media screen and (max-width:350px) {
header > .right a,
header > .left a,
header,
.logo figure {
height: 44px;
line-height: 44px;
}
header > .right a,
header > .left a {
width: 44px;
}
header.fixed-header~.page-content {
padding-top: 44px;
}
.logo {
line-height: 44px;
font-size: 15px;
vertical-align: top
}
.login-title {
font-size: 44px;
line-height: 44px;
}
.navbar .navbar-nav li a {
padding: 5px 15px
}
.navbar .navbar-nav li a.dropdown-toggle::after {
top: 18px;
}
.btn {
line-height: 34px;
font-size: 13px;
padding: 5px 1.5rem;
}
.sq-btn {
padding: 0;
height: 44px;
width: 44px;
line-height: 42px;
text-align: center
}
.btn-block {
padding: 5px 0.5rem;
}
.form-control {
padding: 5px .75rem;
font-size: 15px;
min-height: 44px;
}
.sidebar {
width: 250px;
}
.push-content-left.menu-left-open .page {
margin-left: 250px;
}
.push-content-right.menu-right-open .page {
margin-left: -250px;
}
.card-footer .post-seconds {
font-size: 12px;
vertical-align: middle
}
.avatar.avatar-120 {
width: 100px;
height: 100px;
line-height: 100px;
}
} | 0.370795 | 0.059102 |
.main-sneaker-large-holder {
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
width: 80%;
border-style: solid;
border-radius: 5px;
border-color: rgb(117, 117, 117);
border-width: 2px;
padding: 10px;
transition: 0.2s;
}
.main-sneaker-large-holder a {
display: flex;
flex-direction: column;
align-items: center;
color: black;
}
.main-sneaker-large-holder:hover {
border-color: #0076a5;
border-radius: 10px;
}
.main-sneaker-holder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width: 100%;
height: 350px;
}
.main-sneaker-top {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.main-sneaker-top h3 {
text-align: center;
}
.main-sneaker-bottom {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
width: 100%;
}
.main-sneaker-image {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
padding-bottom: 10px;
}
.main-sneaker-image img {
width: 80%;
}
.main-sneaker-nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
}
.sneaker-save-button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
color: aliceblue;
border-color: #0076a5;
background-color: #0076a5;
border-style: solid;
border-radius: 5px;
width: 40px;
height: 20px;
cursor: pointer;
transition: 0.2s;
}
.sneaker-save-button p {
font-size: larger;
}
.sneaker-save-button:hover {
display: flex;
z-index: 2;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
color: aliceblue;
border-color: #209fd2;
background-color: #209fd2;
border-style: solid;
border-radius: 5px;
width: 80px;
height: 20px;
cursor: pointer;
transition: 0.2s;
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 992px) {
.main-sneaker-large-holder {
border-width: 1px;
height: 380px;
width: 85%;
}
.sneaker-save-button {
color: aliceblue;
border-color: #0076a5;
background-color: #0076a5;
border-style: solid;
border-radius: 5px;
width: 100px;
height: 90px;
cursor: pointer;
transition: 0.2s;
}
}
@media screen and (max-width: 768px) {
.sneaker-save-button p {
font-size: larger;
}
}
@media screen and (max-width: 590px) {
}
@media screen and (max-width: 420px) {
} | client/src/components/SneakerItem/style.css | .main-sneaker-large-holder {
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
width: 80%;
border-style: solid;
border-radius: 5px;
border-color: rgb(117, 117, 117);
border-width: 2px;
padding: 10px;
transition: 0.2s;
}
.main-sneaker-large-holder a {
display: flex;
flex-direction: column;
align-items: center;
color: black;
}
.main-sneaker-large-holder:hover {
border-color: #0076a5;
border-radius: 10px;
}
.main-sneaker-holder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width: 100%;
height: 350px;
}
.main-sneaker-top {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.main-sneaker-top h3 {
text-align: center;
}
.main-sneaker-bottom {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
width: 100%;
}
.main-sneaker-image {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
padding-bottom: 10px;
}
.main-sneaker-image img {
width: 80%;
}
.main-sneaker-nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
}
.sneaker-save-button {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
color: aliceblue;
border-color: #0076a5;
background-color: #0076a5;
border-style: solid;
border-radius: 5px;
width: 40px;
height: 20px;
cursor: pointer;
transition: 0.2s;
}
.sneaker-save-button p {
font-size: larger;
}
.sneaker-save-button:hover {
display: flex;
z-index: 2;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
color: aliceblue;
border-color: #209fd2;
background-color: #209fd2;
border-style: solid;
border-radius: 5px;
width: 80px;
height: 20px;
cursor: pointer;
transition: 0.2s;
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 992px) {
.main-sneaker-large-holder {
border-width: 1px;
height: 380px;
width: 85%;
}
.sneaker-save-button {
color: aliceblue;
border-color: #0076a5;
background-color: #0076a5;
border-style: solid;
border-radius: 5px;
width: 100px;
height: 90px;
cursor: pointer;
transition: 0.2s;
}
}
@media screen and (max-width: 768px) {
.sneaker-save-button p {
font-size: larger;
}
}
@media screen and (max-width: 590px) {
}
@media screen and (max-width: 420px) {
} | 0.436382 | 0.090454 |
@media only screen and (max-width: 767px) {
body {
background-color: white;
}
.square-1 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 18%;
border-radius: 15px;
}
.square-2 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 18%;
margin-top: 160px;
border-radius: 15px;
}
.square-3 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 472px;
margin-left: 18%;
border-radius: 15px;
}
.square-4 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 853px;
margin-left: 18%;
border-radius: 15px;
}
.square-5 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 280px;
margin-left: 18%;
border-radius: 15px;
}
.square-6 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1052px;
margin-left: 18%;
border-radius: 15px;
}
.square-8 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1249px;
margin-left: 18%;
border-radius: 15px;
}
.square-9 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 93px;
margin-left: 18%;
border-radius: 15px;
}
.square-10 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1448px;
margin-left: 18%;
border-radius: 15px;
}
.square-13 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1645px;
margin-left: 18%;
border-radius: 15px;
}
.square-15 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 660px;
margin-left: 14%;
border-radius: 15px;
}
}
.block img{
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
cursor: pointer;
object-fit: cover !important;
}
.square-1 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 15%;
border-radius: 15px;
}
.square-2 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 15%;
margin-top: 160px;
border-radius: 15px;
}
.square-3 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 472px;
margin-left: 14%;
border-radius: 15px;
}
.square-4 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 853px;
margin-left: 14%;
border-radius: 15px;
}
.square-5 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 280px;
margin-left: 14%;
border-radius: 15px;
}
.square-6 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1052px;
margin-left: 14%;
border-radius: 15px;
}
.square-7 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 960px;
margin-left: 15%;
border-radius: 15px;
}
.square-8 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1249px;
margin-left: 14%;
border-radius: 15px;
}
.square-9 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 93px;
margin-left: 14%;
border-radius: 15px;
}
.square-10 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1448px;
margin-left: 14%;
border-radius: 15px;
}
.square-11 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 1600px;
margin-left: 15%;
border-radius: 15px;
}
.square-12 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 1760px;
margin-left: 15%;
border-radius: 15px;
}
.square-13 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1645px;
margin-left: 14%;
border-radius: 15px;
}
.square-14 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1840px;
margin-left: 14%;
border-radius: 15px;
}
.square-15 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 660px;
margin-left: 14%;
border-radius: 15px;
}
.square-16 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 2037px;
margin-left: 14%;
border-radius: 15px;
}
.square-17 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2560px;
margin-left: 15%;
border-radius: 15px;
}
.square-18 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2720px;
margin-left: 15%;
border-radius: 15px;
}
.square-19 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2880px;
margin-left: 15%;
border-radius: 15px;
}
.square-20 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3040px;
margin-left: 15%;
border-radius: 15px;
}
.square-21 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3200px;
margin-left: 15%;
border-radius: 15px;
}
.square-22 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3360px;
margin-left: 15%;
border-radius: 15px;
}
.square-23 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3520px;
margin-left: 15%;
border-radius: 15px;
}
.square-24 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3680px;
margin-left: 15%;
border-radius: 15px;
}
.square-25 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3840px;
margin-left: 15%;
border-radius: 15px;
} | response.css |
@media only screen and (max-width: 767px) {
body {
background-color: white;
}
.square-1 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 18%;
border-radius: 15px;
}
.square-2 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 18%;
margin-top: 160px;
border-radius: 15px;
}
.square-3 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 472px;
margin-left: 18%;
border-radius: 15px;
}
.square-4 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 853px;
margin-left: 18%;
border-radius: 15px;
}
.square-5 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 280px;
margin-left: 18%;
border-radius: 15px;
}
.square-6 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1052px;
margin-left: 18%;
border-radius: 15px;
}
.square-8 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1249px;
margin-left: 18%;
border-radius: 15px;
}
.square-9 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 93px;
margin-left: 18%;
border-radius: 15px;
}
.square-10 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1448px;
margin-left: 18%;
border-radius: 15px;
}
.square-13 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1645px;
margin-left: 18%;
border-radius: 15px;
}
.square-15 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 660px;
margin-left: 14%;
border-radius: 15px;
}
}
.block img{
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
cursor: pointer;
object-fit: cover !important;
}
.square-1 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 15%;
border-radius: 15px;
}
.square-2 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-left: 15%;
margin-top: 160px;
border-radius: 15px;
}
.square-3 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 472px;
margin-left: 14%;
border-radius: 15px;
}
.square-4 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 853px;
margin-left: 14%;
border-radius: 15px;
}
.square-5 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 280px;
margin-left: 14%;
border-radius: 15px;
}
.square-6 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1052px;
margin-left: 14%;
border-radius: 15px;
}
.square-7 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 960px;
margin-left: 15%;
border-radius: 15px;
}
.square-8 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1249px;
margin-left: 14%;
border-radius: 15px;
}
.square-9 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 93px;
margin-left: 14%;
border-radius: 15px;
}
.square-10 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1448px;
margin-left: 14%;
border-radius: 15px;
}
.square-11 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 1600px;
margin-left: 15%;
border-radius: 15px;
}
.square-12 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 1760px;
margin-left: 15%;
border-radius: 15px;
}
.square-13 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1645px;
margin-left: 14%;
border-radius: 15px;
}
.square-14 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 1840px;
margin-left: 14%;
border-radius: 15px;
}
.square-15 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 660px;
margin-left: 14%;
border-radius: 15px;
}
.square-16 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
top: 2037px;
margin-left: 14%;
border-radius: 15px;
}
.square-17 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2560px;
margin-left: 15%;
border-radius: 15px;
}
.square-18 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2720px;
margin-left: 15%;
border-radius: 15px;
}
.square-19 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 2880px;
margin-left: 15%;
border-radius: 15px;
}
.square-20 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3040px;
margin-left: 15%;
border-radius: 15px;
}
.square-21 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3200px;
margin-left: 15%;
border-radius: 15px;
}
.square-22 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3360px;
margin-left: 15%;
border-radius: 15px;
}
.square-23 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3520px;
margin-left: 15%;
border-radius: 15px;
}
.square-24 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3680px;
margin-left: 15%;
border-radius: 15px;
}
.square-25 {
width: 160px;
height: 50px;
padding: 50px;
position: absolute;
margin-top: 3840px;
margin-left: 15%;
border-radius: 15px;
} | 0.523177 | 0.042942 |
:root {
/* SHARED */
--rvr-btn-focus-outline-color: var(--rvr-color-primary);
--rvr-btn-focus-outline-offset-color: var(--rvr-bg-color);
/* Disabled filled button */
--rvr-btn-color-disabled: var(--rvr-bg-color);
--rvr-btn-bg-color-disabled: var(--rvr-color-disabled);
--rvr-btn-border-color-disabled: var(--rvr-color-disabled);
/* Disabled unfilled button */
--rvr-btn-unfilled-color-disabled: var(--rvr-color-font);
--rvr-btn-unfilled-bg-color-disabled: var(--rvr-bg-color);
--rvr-btn-unfilled-border-color-disabled: var(--rvr-color-disabled);
/* Disabled text/link style button */
--rvr-btn-as-text-color-disabled: var(--rvr-color-disabled);
--rvr-btn-as-text-bg-color-disabled: transparent;
--rvr-btn-as-text-border-color-disabled: transparent;
/* Outline / hollow shared */
--rvr-btn-color-outlined-disabled: var(--rvr-color-primary-focus);
/* _Outlined_/hollow-style button with focus has a CSS _outline_ property. */
--rvr-btn-outline-color-outlined: var(--rvr-teal-lite-5);
/* Outline / inverted button-as-text shared */
--rvr-btn-color-as-text-outlined-disabled: var(--rvr-gray-30);
--rvr-btn-outline-color-as-text-outlined-focus: var(--rvr-color-highlight);
/* PRIMARY */
--rvr-btn-color-primary: var(--rvr-bg-color);
--rvr-btn-bg-color-primary: var(--rvr-color-primary);
--rvr-btn-border-color-primary: var(--rvr-btn-bg-color-primary);
/* Focus */
--rvr-btn-color-primary-focus: var(--rvr-color-primary-focus);
/* Active */
--rvr-btn-bg-color-primary-active: var(--rvr-blue-lite-1);
--rvr-btn-border-color-primary-active: var(--rvr-btn-bg-color-primary-active);
/* Outlined main and active */
--rvr-btn-color-primary-outlined: var(--rvr-color-highlight);
--rvr-btn-color-primary-outlined-active: var(--rvr-bg-color);
/* PRIMARY-ALT (TEAL) */
--rvr-btn-color-primary-alt: var(--rvr-bg-color);
--rvr-btn-bg-color-primary-alt: var(--rvr-teal);
--rvr-btn-border-color-primary-alt: var(--rvr-btn-bg-color-primary-alt);
/* Active */
--rvr-btn-color-primary-alt-active: var(--rvr-btn-color-primary-alt);
--rvr-btn-bg-color-primary-alt-active: var(--rvr-teal-lite-1);
--rvr-btn-border-color-primary-alt-active: var(--rvr-btn-bg-color-primary-alt-active);
/* Outlined main and active */
--rvr-btn-color-primary-alt-outlined: var(--rvr-teal-lite-4);
--rvr-btn-color-primary-alt-outlined-active: var(--rvr-teal-lite-5);
/* SECONDARY */
--rvr-btn-color-secondary: var(--rvr-color-primary);
--rvr-btn-bg-color-secondary: var(--rvr-bg-color);
--rvr-btn-border-color-secondary: var(--rvr-btn-color-secondary);
/* Focus */
--rvr-btn-color-secondary-focus: var(--rvr-btn-bg-color-primary-active);
/* Active */
--rvr-btn-color-secondary-active: var(--rvr-btn-color-primary);
--rvr-btn-bg-color-secondary-active: var(--rvr-btn-bg-color-primary-active);
--rvr-btn-border-color-secondary-active: var(--rvr-btn-border-color-primary-active);
/* Outlined main and active */
--rvr-btn-color-secondary-outlined: var(--rvr-gray-25);
--rvr-btn-color-secondary-outlined-active: var(--rvr-bg-color);
/* TERTIARY */
--rvr-btn-color-tertiary: var(--rvr-color-font);
--rvr-btn-bg-color-tertiary: var(--rvr-bg-color);
--rvr-btn-border-color-tertiary: var(--rvr-color-disabled);
/* Active */
--rvr-btn-color-tertiary-active: var(--rvr-color-font-dark);
--rvr-btn-bg-color-tertiary-active: var(--rvr-gray-20);
--rvr-btn-border-color-tertiary-active: var(--rvr-gray-60);
/* Outlined main and active */
--rvr-btn-color-tertiary-outlined: var(--rvr-gray-30);
--rvr-btn-color-tertiary-outlined-active: var(--rvr-gray-10);
/* SUCCESS */
--rvr-btn-color-success: var(--rvr-bg-color);
--rvr-btn-bg-color-success: var(--rvr-color-success);
--rvr-btn-border-color-success: var(--rvr-btn-bg-color-success);
/* Active */
--rvr-btn-color-success-active: var(--rvr-bg-color);
--rvr-btn-bg-color-success-active: var(--rvr-color-success-hover);
--rvr-btn-border-color-success-active: var(--rvr-btn-bg-color-success-active);
/* Outlined main and active */
--rvr-btn-color-success-outlined: var(--rvr-green-lite-3);
--rvr-btn-color-success-outlined-active: var(--rvr-green-lite-4);
/* DANGER */
--rvr-btn-color-danger: var(--rvr-bg-color);
--rvr-btn-bg-color-danger: var(--rvr-red);
--rvr-btn-border-color-danger: var(--rvr-btn-bg-color-danger);
/* Active */
--rvr-btn-color-danger-active: var(--rvr-bg-color);
--rvr-btn-bg-color-danger-active: var(--rvr-color-danger-hover);
--rvr-btn-border-color-danger-active: var(--rvr-btn-bg-color-danger-active);
/* Outlined main and active */
--rvr-btn-color-danger-outlined: var(--rvr-red-lite-3);
--rvr-btn-color-danger-outlined-active: var(--rvr-red-lite-4);
/* LINK */
--rvr-btn-color-link: var(--rvr-color-primary);
--rvr-btn-bg-color-link: transparent;
--rvr-btn-border-color-link: var(--rvr-btn-bg-color-link);
/* Active */
--rvr-btn-color-link-active: var(--rvr-blue-lite-1);
--rvr-btn-bg-color-link-active: var(--rvr-btn-bg-color-link);
--rvr-btn-border-color-link-active: var(--rvr-btn-bg-color-link-active);
/* Inverted (aka outlined, even though it's a misnomer) */
--rvr-btn-color-link-outlined: var(--rvr-color-highlight);
--rvr-btn-color-link-outlined-active: var(--rvr-bg-color);
/* TEXT */
--rvr-btn-color-text: var(--rvr-gray-80);
--rvr-btn-bg-color-text: transparent;
--rvr-btn-border-color-text: var(--rvr-btn-bg-color-text);
/* Active */
--rvr-btn-color-text-active: var(--rvr-gray-90);
--rvr-btn-bg-color-text-active: var(--rvr-btn-bg-color-text);
--rvr-btn-border-color-text-active: var(--rvr-btn-bg-color-text-active);
/* Inverted (aka outlined, even though it's a misnomer) */
--rvr-btn-color-text-outlined: var(--rvr-gray-30);
--rvr-btn-color-text-outlined-active: var(--rvr-gray-10);
} | src/shared/buttons.css | :root {
/* SHARED */
--rvr-btn-focus-outline-color: var(--rvr-color-primary);
--rvr-btn-focus-outline-offset-color: var(--rvr-bg-color);
/* Disabled filled button */
--rvr-btn-color-disabled: var(--rvr-bg-color);
--rvr-btn-bg-color-disabled: var(--rvr-color-disabled);
--rvr-btn-border-color-disabled: var(--rvr-color-disabled);
/* Disabled unfilled button */
--rvr-btn-unfilled-color-disabled: var(--rvr-color-font);
--rvr-btn-unfilled-bg-color-disabled: var(--rvr-bg-color);
--rvr-btn-unfilled-border-color-disabled: var(--rvr-color-disabled);
/* Disabled text/link style button */
--rvr-btn-as-text-color-disabled: var(--rvr-color-disabled);
--rvr-btn-as-text-bg-color-disabled: transparent;
--rvr-btn-as-text-border-color-disabled: transparent;
/* Outline / hollow shared */
--rvr-btn-color-outlined-disabled: var(--rvr-color-primary-focus);
/* _Outlined_/hollow-style button with focus has a CSS _outline_ property. */
--rvr-btn-outline-color-outlined: var(--rvr-teal-lite-5);
/* Outline / inverted button-as-text shared */
--rvr-btn-color-as-text-outlined-disabled: var(--rvr-gray-30);
--rvr-btn-outline-color-as-text-outlined-focus: var(--rvr-color-highlight);
/* PRIMARY */
--rvr-btn-color-primary: var(--rvr-bg-color);
--rvr-btn-bg-color-primary: var(--rvr-color-primary);
--rvr-btn-border-color-primary: var(--rvr-btn-bg-color-primary);
/* Focus */
--rvr-btn-color-primary-focus: var(--rvr-color-primary-focus);
/* Active */
--rvr-btn-bg-color-primary-active: var(--rvr-blue-lite-1);
--rvr-btn-border-color-primary-active: var(--rvr-btn-bg-color-primary-active);
/* Outlined main and active */
--rvr-btn-color-primary-outlined: var(--rvr-color-highlight);
--rvr-btn-color-primary-outlined-active: var(--rvr-bg-color);
/* PRIMARY-ALT (TEAL) */
--rvr-btn-color-primary-alt: var(--rvr-bg-color);
--rvr-btn-bg-color-primary-alt: var(--rvr-teal);
--rvr-btn-border-color-primary-alt: var(--rvr-btn-bg-color-primary-alt);
/* Active */
--rvr-btn-color-primary-alt-active: var(--rvr-btn-color-primary-alt);
--rvr-btn-bg-color-primary-alt-active: var(--rvr-teal-lite-1);
--rvr-btn-border-color-primary-alt-active: var(--rvr-btn-bg-color-primary-alt-active);
/* Outlined main and active */
--rvr-btn-color-primary-alt-outlined: var(--rvr-teal-lite-4);
--rvr-btn-color-primary-alt-outlined-active: var(--rvr-teal-lite-5);
/* SECONDARY */
--rvr-btn-color-secondary: var(--rvr-color-primary);
--rvr-btn-bg-color-secondary: var(--rvr-bg-color);
--rvr-btn-border-color-secondary: var(--rvr-btn-color-secondary);
/* Focus */
--rvr-btn-color-secondary-focus: var(--rvr-btn-bg-color-primary-active);
/* Active */
--rvr-btn-color-secondary-active: var(--rvr-btn-color-primary);
--rvr-btn-bg-color-secondary-active: var(--rvr-btn-bg-color-primary-active);
--rvr-btn-border-color-secondary-active: var(--rvr-btn-border-color-primary-active);
/* Outlined main and active */
--rvr-btn-color-secondary-outlined: var(--rvr-gray-25);
--rvr-btn-color-secondary-outlined-active: var(--rvr-bg-color);
/* TERTIARY */
--rvr-btn-color-tertiary: var(--rvr-color-font);
--rvr-btn-bg-color-tertiary: var(--rvr-bg-color);
--rvr-btn-border-color-tertiary: var(--rvr-color-disabled);
/* Active */
--rvr-btn-color-tertiary-active: var(--rvr-color-font-dark);
--rvr-btn-bg-color-tertiary-active: var(--rvr-gray-20);
--rvr-btn-border-color-tertiary-active: var(--rvr-gray-60);
/* Outlined main and active */
--rvr-btn-color-tertiary-outlined: var(--rvr-gray-30);
--rvr-btn-color-tertiary-outlined-active: var(--rvr-gray-10);
/* SUCCESS */
--rvr-btn-color-success: var(--rvr-bg-color);
--rvr-btn-bg-color-success: var(--rvr-color-success);
--rvr-btn-border-color-success: var(--rvr-btn-bg-color-success);
/* Active */
--rvr-btn-color-success-active: var(--rvr-bg-color);
--rvr-btn-bg-color-success-active: var(--rvr-color-success-hover);
--rvr-btn-border-color-success-active: var(--rvr-btn-bg-color-success-active);
/* Outlined main and active */
--rvr-btn-color-success-outlined: var(--rvr-green-lite-3);
--rvr-btn-color-success-outlined-active: var(--rvr-green-lite-4);
/* DANGER */
--rvr-btn-color-danger: var(--rvr-bg-color);
--rvr-btn-bg-color-danger: var(--rvr-red);
--rvr-btn-border-color-danger: var(--rvr-btn-bg-color-danger);
/* Active */
--rvr-btn-color-danger-active: var(--rvr-bg-color);
--rvr-btn-bg-color-danger-active: var(--rvr-color-danger-hover);
--rvr-btn-border-color-danger-active: var(--rvr-btn-bg-color-danger-active);
/* Outlined main and active */
--rvr-btn-color-danger-outlined: var(--rvr-red-lite-3);
--rvr-btn-color-danger-outlined-active: var(--rvr-red-lite-4);
/* LINK */
--rvr-btn-color-link: var(--rvr-color-primary);
--rvr-btn-bg-color-link: transparent;
--rvr-btn-border-color-link: var(--rvr-btn-bg-color-link);
/* Active */
--rvr-btn-color-link-active: var(--rvr-blue-lite-1);
--rvr-btn-bg-color-link-active: var(--rvr-btn-bg-color-link);
--rvr-btn-border-color-link-active: var(--rvr-btn-bg-color-link-active);
/* Inverted (aka outlined, even though it's a misnomer) */
--rvr-btn-color-link-outlined: var(--rvr-color-highlight);
--rvr-btn-color-link-outlined-active: var(--rvr-bg-color);
/* TEXT */
--rvr-btn-color-text: var(--rvr-gray-80);
--rvr-btn-bg-color-text: transparent;
--rvr-btn-border-color-text: var(--rvr-btn-bg-color-text);
/* Active */
--rvr-btn-color-text-active: var(--rvr-gray-90);
--rvr-btn-bg-color-text-active: var(--rvr-btn-bg-color-text);
--rvr-btn-border-color-text-active: var(--rvr-btn-bg-color-text-active);
/* Inverted (aka outlined, even though it's a misnomer) */
--rvr-btn-color-text-outlined: var(--rvr-gray-30);
--rvr-btn-color-text-outlined-active: var(--rvr-gray-10);
} | 0.286269 | 0.070336 |
.ui-tooltip-content {
font-size: 12px;
font-family:'Rowdies', cursive;
}
/* Main */
.dash_bg{
width: 100vw;
height: 94vh;
filter: grayscale(100%) brightness(50%);
position: fixed;
top:0;
left:0;
}
.whiteboard {
align-self: center;
width: 80vw;
max-height: 70vh;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
overflow: scroll;
position: relative;
background: transparent;
padding-top: 5vh;
}
.wb_block {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
width: 160px;
height: 175px;
background-color: darkgrey;
border-radius: 5px;
margin: 10px;
line-height: 30px;
transition: all 0.5s;
position: relative;
cursor: pointer;
}
.wb_block:hover{
background-color: #000000;
}
.wb_bookmark{
clip-path: polygon(100% 0%, 100% 82%, 68% 43%, 34% 82%, 34% 0);
width: 25px;
height:35px;
background-color: gray;
cursor: pointer;
position: absolute;
left: 10px;
top: 0px;
}
.bookmarked{
background-color: #DAA520;
}
.wb_back{
position: absolute;
left: 5px;
width: 4px;
height: 175px;
background-color: white;
}
.wb_title {
display: inline-block;
outline: none;
padding: 5px 0px;
border: none;
background-color: lightgrey;
text-align: center;
align-self: center;
width: 150px;
line-height: 18px;
font-size: 15px;
color: black;
position: absolute;
bottom: 30px;
left: 9px;
pointer-events: none;
font-family: 'Playfair Display', cursive, monospace;
}
::placeholder {
font-size: 10px;
}
.edit{
width: 15px;
height: 15px;
position: absolute;
bottom: 8px;
right: 10px;
cursor: pointer;
visibility: hidden;
}
.readonly{
width: 30px;
height: 30px;
position: absolute;
top: 50px;
left: 67px;
}
.close_btn {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
position: absolute;
right: 13px;
top: 7px;
outline: none;
border: none;
background: none;
cursor: pointer;
display: none;
color: white;
}
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.add_btn {
font-size: xx-large;
padding: 7px 15px;
/* background-color: white; */
border: 0.05px solid darkgray;
outline: none;
position: absolute;
right: 80px;
bottom: 50px;
border-radius: 5px;
} | public/css/dashboard.css | .ui-tooltip-content {
font-size: 12px;
font-family:'Rowdies', cursive;
}
/* Main */
.dash_bg{
width: 100vw;
height: 94vh;
filter: grayscale(100%) brightness(50%);
position: fixed;
top:0;
left:0;
}
.whiteboard {
align-self: center;
width: 80vw;
max-height: 70vh;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
overflow: scroll;
position: relative;
background: transparent;
padding-top: 5vh;
}
.wb_block {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
width: 160px;
height: 175px;
background-color: darkgrey;
border-radius: 5px;
margin: 10px;
line-height: 30px;
transition: all 0.5s;
position: relative;
cursor: pointer;
}
.wb_block:hover{
background-color: #000000;
}
.wb_bookmark{
clip-path: polygon(100% 0%, 100% 82%, 68% 43%, 34% 82%, 34% 0);
width: 25px;
height:35px;
background-color: gray;
cursor: pointer;
position: absolute;
left: 10px;
top: 0px;
}
.bookmarked{
background-color: #DAA520;
}
.wb_back{
position: absolute;
left: 5px;
width: 4px;
height: 175px;
background-color: white;
}
.wb_title {
display: inline-block;
outline: none;
padding: 5px 0px;
border: none;
background-color: lightgrey;
text-align: center;
align-self: center;
width: 150px;
line-height: 18px;
font-size: 15px;
color: black;
position: absolute;
bottom: 30px;
left: 9px;
pointer-events: none;
font-family: 'Playfair Display', cursive, monospace;
}
::placeholder {
font-size: 10px;
}
.edit{
width: 15px;
height: 15px;
position: absolute;
bottom: 8px;
right: 10px;
cursor: pointer;
visibility: hidden;
}
.readonly{
width: 30px;
height: 30px;
position: absolute;
top: 50px;
left: 67px;
}
.close_btn {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
position: absolute;
right: 13px;
top: 7px;
outline: none;
border: none;
background: none;
cursor: pointer;
display: none;
color: white;
}
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.add_btn {
font-size: xx-large;
padding: 7px 15px;
/* background-color: white; */
border: 0.05px solid darkgray;
outline: none;
position: absolute;
right: 80px;
bottom: 50px;
border-radius: 5px;
} | 0.427038 | 0.067516 |
.main h2{
margin-top: 2cm;
margin-bottom: 0.5cm;
text-align: left;
}
.main .content p{
margin-top: 0.5cm;
margin-bottom: 0.2cm;
text-align: left;
}
.container img{
margin-top: 0.1cm;
margin-bottom: 0cm;
}
.thumbnail{
max-width:100%;
width:500px;
height:500px;
}
.thumbnail p{
margin-top: 0.5cm;
margin-bottom: 0.2cm;
text-align: left;
}
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
a.btn-social,
.btn-social
{
border-radius: 50%;
color: #ffffff !important;
display: inline-block;
height: 54px;
line-height: 54px;
margin: 8px 4px;
text-align: center;
text-decoration: none;
transition: background-color .3s;
webkit-transition: background-color .3s;
width: 54px;
}
.btn-social .fa,.btn-social i
{
backface-visibility: hidden;
moz-backface-visibility: hidden;
ms-transform: scale(1);
o-transform: scale(1);
transform: scale(1);
transition: all .25s;
webkit-backface-visibility: hidden;
webkit-transform: scale(1);
webkit-transition: all .25s;
}
.btn-social:hover,.btn-social:focus
{
color: #fff;
outline: none;
text-decoration: none;
}
.btn-social:hover .fa,.btn-social:focus .fa,.btn-social:hover i,.btn-social:focus i
{
ms-transform: scale(1.3);
o-transform: scale(1.3);
transform: scale(1.3);
webkit-transform: scale(1.3);
}
.btn-social.btn-xs
{
font-size: 9px;
height: 24px;
line-height: 13px;
margin: 6px 2px;
width: 24px;
}
.btn-social.btn-sm
{
font-size: 13px;
height: 36px;
line-height: 18px;
margin: 6px 2px;
width: 36px;
}
.btn-social.btn-lg
{
font-size: 22px;
height: 72px;
line-height: 40px;
margin: 10px 6px;
width: 72px;
}
.btn-facebook
{
background-color: #3b5998;
}
.btn-facebook:hover
{
background-color: #4c70ba;
}
.btn-github
{
background-color: #211F1F;
}
.btn-github:hover
{
background-color: #443F3F;
}
.btn-instagram
{
background-color: #3f729b;
}
.btn-instagram:hover
{
background-color: #548cb9;
}
.btn-linkedin
{
background-color: #0976b4;
}
.btn-linkedin:hover
{
background-color: #0b96e5;
}
.btn-twitch
{
background-color: #6441a5;
}
.btn-twitch:hover
{
background-color: #7e5bbe;
}
.btn-twitter
{
background-color: #55acee;
}
.btn-twitter:hover
{
background-color: #83c3f3;
}
.btn-youtube
{
background-color: #e52d27;
}
.btn-youtube:hover
{
background-color: #ea5955;
}
.btn-email
{
background-color: #44c456;
}
.btn-email:hover
{
background-color: #6bd079;
} | blog.css | .main h2{
margin-top: 2cm;
margin-bottom: 0.5cm;
text-align: left;
}
.main .content p{
margin-top: 0.5cm;
margin-bottom: 0.2cm;
text-align: left;
}
.container img{
margin-top: 0.1cm;
margin-bottom: 0cm;
}
.thumbnail{
max-width:100%;
width:500px;
height:500px;
}
.thumbnail p{
margin-top: 0.5cm;
margin-bottom: 0.2cm;
text-align: left;
}
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
a.btn-social,
.btn-social
{
border-radius: 50%;
color: #ffffff !important;
display: inline-block;
height: 54px;
line-height: 54px;
margin: 8px 4px;
text-align: center;
text-decoration: none;
transition: background-color .3s;
webkit-transition: background-color .3s;
width: 54px;
}
.btn-social .fa,.btn-social i
{
backface-visibility: hidden;
moz-backface-visibility: hidden;
ms-transform: scale(1);
o-transform: scale(1);
transform: scale(1);
transition: all .25s;
webkit-backface-visibility: hidden;
webkit-transform: scale(1);
webkit-transition: all .25s;
}
.btn-social:hover,.btn-social:focus
{
color: #fff;
outline: none;
text-decoration: none;
}
.btn-social:hover .fa,.btn-social:focus .fa,.btn-social:hover i,.btn-social:focus i
{
ms-transform: scale(1.3);
o-transform: scale(1.3);
transform: scale(1.3);
webkit-transform: scale(1.3);
}
.btn-social.btn-xs
{
font-size: 9px;
height: 24px;
line-height: 13px;
margin: 6px 2px;
width: 24px;
}
.btn-social.btn-sm
{
font-size: 13px;
height: 36px;
line-height: 18px;
margin: 6px 2px;
width: 36px;
}
.btn-social.btn-lg
{
font-size: 22px;
height: 72px;
line-height: 40px;
margin: 10px 6px;
width: 72px;
}
.btn-facebook
{
background-color: #3b5998;
}
.btn-facebook:hover
{
background-color: #4c70ba;
}
.btn-github
{
background-color: #211F1F;
}
.btn-github:hover
{
background-color: #443F3F;
}
.btn-instagram
{
background-color: #3f729b;
}
.btn-instagram:hover
{
background-color: #548cb9;
}
.btn-linkedin
{
background-color: #0976b4;
}
.btn-linkedin:hover
{
background-color: #0b96e5;
}
.btn-twitch
{
background-color: #6441a5;
}
.btn-twitch:hover
{
background-color: #7e5bbe;
}
.btn-twitter
{
background-color: #55acee;
}
.btn-twitter:hover
{
background-color: #83c3f3;
}
.btn-youtube
{
background-color: #e52d27;
}
.btn-youtube:hover
{
background-color: #ea5955;
}
.btn-email
{
background-color: #44c456;
}
.btn-email:hover
{
background-color: #6bd079;
} | 0.38445 | 0.049451 |
@font-face { font-family: 'Catamaran';
src: url('fonts/Catamaran-Regular.ttf');
}
/* GENERAL */
* {
margin: 0;
padding: 0;
/* prevent selection highlighting */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body {
font-family: 'Catamaran', sans-serif;
color: #000;
}
/* STOCK */
#stock {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 1rem;
}
.die-stock {
position: relative;
width: 56px;
height: 56px;
display: flex;
justify-content: center;
align-items: center;
background-size: contain;
background-repeat: no-repeat;
margin: 1rem;
cursor: pointer;
font-size: 22px;
opacity: 0.2;
filter: blur(.5px);
transition: .1s;
text-shadow:
-2px -2px 0 #fff,
2px -2px 0 #fff,
-2px 2px 0 #fff,
2px 2px 0 #fff;
}
.die-stock:hover {
opacity: 0.8;
filter: blur(0);
font-weight: bolder;
font-size: 28px;
}
.die-stock > .icon-add {
position: absolute;
top: 0px;
right: 0px;
background-color: #fff;
border-radius: 50%;
-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
}
/* SOUND TOGGLE & HELP BUTTON */
#sound-toggle, #help-button {
width: 32px;
height: 32px;
margin: 1rem;
cursor: pointer;
opacity: 0.2;
filter: blur(.5px);
transition: .1s;
background-repeat: no-repeat;
background-size: contain;
}
#sound-toggle:hover, #help-button:hover {
opacity: 0.8;
filter: blur(0);
}
#sound-toggle {
background-image: url('img/icon-sound-off.png');
}
#help-button {
background-image: url('img/icon-help.png');
}
/* TOTAL */
#total {
display: none;
position: relative;
text-align: center;
width: 128px;
height: 128px;
font-size: 44px;
text-align: center;
transition: .2s;
cursor: pointer;
border-radius: 50%;
border: 4px dashed rgba(0, 0, 0, 0.3);
background-color: rgba(0, 0, 0, 0.1);
margin: 0 auto;
/*
-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
*/
}
/* TABLE */
#table {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 2rem;
padding-top: 1rem;
}
/* DICE */
.die {
position: relative;
text-align: center;
width: 128px;
height: 128px;
margin: .6rem;
border-radius: 50%;
background-color: #fff;
border: 4px solid #fff;
font-size: 44px;
text-align: center;
opacity: 0.5;
transition: .2s;
cursor: pointer;
}
.die:hover {
opacity: 0.8;
font-weight: bolder;
font-size: 48px;
}
.die.active {
opacity: 0.8;
background-color: rgba(0, 0, 0, 0.1);
border: 4px dashed rgba(0, 0, 0, 0.3);
}
.rotatable {
width: 100%;
height: 100%;
}
.rotatable > .die-value,
.rotatable > #total-value {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
text-shadow:
-3px -2px 0 #fff,
3px -2px 0 #fff,
-3px 2px 0 #fff,
3px 2px 0 #fff;
}
.rotatable > .die-image {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: -1;
background-repeat: no-repeat;
background-size: 75%;
background-position: center;
}
.die-buttons > div {
position: absolute;
bottom: 1%;
display: flex;
justify-content: center;
align-items: center;
width: 30%;
height: 30%;
color: #000;
font-size: 40px;
font-weight: bold;
border-radius: 50%;
background-color: #fff;
transition: .1s;
background-repeat: no-repeat;
background-size: 75%;
background-position: center;
z-index: 9999;
-webkit-box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
}
.die-buttons > div:hover {
width: 32%;
height: 32%;
bottom: 0%;
-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
}
.die-buttons > div.btn-roll,
.die-buttons > div.btn-roll-selected {
filter: grayscale(100%) brightness(125%);
left: 10px;
background-image: url('img/icon-roll.png');
}
.die-buttons > div.btn-roll:hover,
.die-buttons > div.btn-roll-selected:hover {
filter: grayscale(0%) brightness(100%);
left: 9px;
}
.die-buttons > div.btn-remove,
.die-buttons > div.btn-remove-selected {
filter: grayscale(100%) brightness(175%);
right: 10px;
background-image: url('img/icon-remove.png');
}
.die-buttons > div.btn-remove:hover,
.die-buttons > div.btn-remove-selected:hover {
filter: grayscale(0%) brightness(100%);
right: 9px;
}
#templates {
display: none;
}
#gh-link {
position: absolute;
bottom: 10px;
right: 20px;
opacity: 0.25;
transition: .2s;
}
#gh-link:hover {
opacity: 0.8;
}
/* HELP MODAL */
#help {
display: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
width: 100vw;
height: 100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.3);
transition: .2s;
}
#help > div {
width: 512px;
max-width: 95%;
padding: 2rem;
border: 2px solid rgba(0, 0, 0, 0.3);
border-radius: 6px;
background-color: #fff;
}
#help > div > img {
width: 32px;
}
/* MOBILE */
@media only screen and (max-width: 768px) {
.die-stock {
width: 48px;
height: 48px;
}
.die {
width: 96px;
height: 96px;
margin: .3rem;
}
} | style.css |
@font-face { font-family: 'Catamaran';
src: url('fonts/Catamaran-Regular.ttf');
}
/* GENERAL */
* {
margin: 0;
padding: 0;
/* prevent selection highlighting */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body {
font-family: 'Catamaran', sans-serif;
color: #000;
}
/* STOCK */
#stock {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 1rem;
}
.die-stock {
position: relative;
width: 56px;
height: 56px;
display: flex;
justify-content: center;
align-items: center;
background-size: contain;
background-repeat: no-repeat;
margin: 1rem;
cursor: pointer;
font-size: 22px;
opacity: 0.2;
filter: blur(.5px);
transition: .1s;
text-shadow:
-2px -2px 0 #fff,
2px -2px 0 #fff,
-2px 2px 0 #fff,
2px 2px 0 #fff;
}
.die-stock:hover {
opacity: 0.8;
filter: blur(0);
font-weight: bolder;
font-size: 28px;
}
.die-stock > .icon-add {
position: absolute;
top: 0px;
right: 0px;
background-color: #fff;
border-radius: 50%;
-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
}
/* SOUND TOGGLE & HELP BUTTON */
#sound-toggle, #help-button {
width: 32px;
height: 32px;
margin: 1rem;
cursor: pointer;
opacity: 0.2;
filter: blur(.5px);
transition: .1s;
background-repeat: no-repeat;
background-size: contain;
}
#sound-toggle:hover, #help-button:hover {
opacity: 0.8;
filter: blur(0);
}
#sound-toggle {
background-image: url('img/icon-sound-off.png');
}
#help-button {
background-image: url('img/icon-help.png');
}
/* TOTAL */
#total {
display: none;
position: relative;
text-align: center;
width: 128px;
height: 128px;
font-size: 44px;
text-align: center;
transition: .2s;
cursor: pointer;
border-radius: 50%;
border: 4px dashed rgba(0, 0, 0, 0.3);
background-color: rgba(0, 0, 0, 0.1);
margin: 0 auto;
/*
-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
*/
}
/* TABLE */
#table {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 2rem;
padding-top: 1rem;
}
/* DICE */
.die {
position: relative;
text-align: center;
width: 128px;
height: 128px;
margin: .6rem;
border-radius: 50%;
background-color: #fff;
border: 4px solid #fff;
font-size: 44px;
text-align: center;
opacity: 0.5;
transition: .2s;
cursor: pointer;
}
.die:hover {
opacity: 0.8;
font-weight: bolder;
font-size: 48px;
}
.die.active {
opacity: 0.8;
background-color: rgba(0, 0, 0, 0.1);
border: 4px dashed rgba(0, 0, 0, 0.3);
}
.rotatable {
width: 100%;
height: 100%;
}
.rotatable > .die-value,
.rotatable > #total-value {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
text-shadow:
-3px -2px 0 #fff,
3px -2px 0 #fff,
-3px 2px 0 #fff,
3px 2px 0 #fff;
}
.rotatable > .die-image {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: -1;
background-repeat: no-repeat;
background-size: 75%;
background-position: center;
}
.die-buttons > div {
position: absolute;
bottom: 1%;
display: flex;
justify-content: center;
align-items: center;
width: 30%;
height: 30%;
color: #000;
font-size: 40px;
font-weight: bold;
border-radius: 50%;
background-color: #fff;
transition: .1s;
background-repeat: no-repeat;
background-size: 75%;
background-position: center;
z-index: 9999;
-webkit-box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
box-shadow: 0px 0px 2px 2px rgba(255,255,255,1);
}
.die-buttons > div:hover {
width: 32%;
height: 32%;
bottom: 0%;
-webkit-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
box-shadow: 0px 0px 3px 3px rgba(255,255,255,1);
}
.die-buttons > div.btn-roll,
.die-buttons > div.btn-roll-selected {
filter: grayscale(100%) brightness(125%);
left: 10px;
background-image: url('img/icon-roll.png');
}
.die-buttons > div.btn-roll:hover,
.die-buttons > div.btn-roll-selected:hover {
filter: grayscale(0%) brightness(100%);
left: 9px;
}
.die-buttons > div.btn-remove,
.die-buttons > div.btn-remove-selected {
filter: grayscale(100%) brightness(175%);
right: 10px;
background-image: url('img/icon-remove.png');
}
.die-buttons > div.btn-remove:hover,
.die-buttons > div.btn-remove-selected:hover {
filter: grayscale(0%) brightness(100%);
right: 9px;
}
#templates {
display: none;
}
#gh-link {
position: absolute;
bottom: 10px;
right: 20px;
opacity: 0.25;
transition: .2s;
}
#gh-link:hover {
opacity: 0.8;
}
/* HELP MODAL */
#help {
display: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
width: 100vw;
height: 100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.3);
transition: .2s;
}
#help > div {
width: 512px;
max-width: 95%;
padding: 2rem;
border: 2px solid rgba(0, 0, 0, 0.3);
border-radius: 6px;
background-color: #fff;
}
#help > div > img {
width: 32px;
}
/* MOBILE */
@media only screen and (max-width: 768px) {
.die-stock {
width: 48px;
height: 48px;
}
.die {
width: 96px;
height: 96px;
margin: .3rem;
}
} | 0.335677 | 0.065935 |
html {
min-height: 100%;
}
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
margin: 0px;
padding: 0px !important;
}
html,
body {
overflow-x: hidden;
/* Prevent scroll on narrow devices */
}
.offcanvas-main-section-overlay {
display: none;
cursor: pointer;
opacity: 0.5;
}
.sidebar-padding {
padding: 12px 14px;
}
.offcanvas .sidebar .sidebar-menu > li > a,
.offcanvas .sidebar .dropdown-menu > li > a {
padding: 12px 14px;
display: block;
whitespace: nowrap;
transition: 0.2s;
text-decoration: none !important;
}
.offcanvas .sidebar .dropdown-menu {
padding: 0px;
font-size: inherit;
}
.offcanvas .sidebar .dropdown-menu > li > a {
padding-left: 28px;
}
.offcanvas .sidebar .divider {
height: 1px;
overflow: hidden;
background-color: #CCCCCC;
width: 100%;
margin: 0px;
}
.offcanvas .sidebar .badge {
right: 15px !important;
top: 11px !important;
}
.offcanvas .sidebar .sidebar-menu > li > a:hover,
.offcanvas .sidebar .dropdown-menu > li > a:hover,
.offcanvas .sidebar .sidebar-menu > li > a:focus,
.offcanvas .sidebar .dropdown-menu > li > a:focus,
.offcanvas .sidebar .sidebar-menu > li > a:active,
.offcanvas .sidebar .dropdown-menu > li > a:active {
background-color: #666666;
}
@media (max-width: 767px) {
.page-content {
min-height: 200px;
}
.offcanvas {
transition: 0.25s;
}
.offcanvas-main-section-overlay {
bottom: 0;
position: fixed;
}
.offcanvas-container,
.offcanvas,
.offcanvas-main-section {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.offcanvas.active-left,
.offcanvas.active-right {
position: fixed;
}
.offcanvas.active-left .offcanvas-main-section-overlay,
.offcanvas.active-right .offcanvas-main-section-overlay {
z-index: 1031;
display: block;
bottom: 0;
}
.offcanvas.active-left {
-webkit-transform: translate3d(75%, 0, 0);
transform: translate3d(75%, 0, 0);
}
.offcanvas.active-right {
-webkit-transform: translate3d(-75%, 0, 0);
transform: translate3d(-75%, 0, 0);
}
.offcanvas .sidebar {
position: fixed;
top: 0;
bottom: 0;
width: 75%;
/* 9 columns */
overflow-x: hidden;
overflow-y: auto;
font-size: 12px;
}
.offcanvas .sidebar-right {
left: 100%;
border-left: 1px solid #cccccc;
}
.offcanvas .sidebar-left {
right: 100%;
border-right: 1px solid #cccccc;
}
.offcanvas .sidebar-menu {
margin-bottom: 0;
}
.offcanvas .navbar-form {
margin: 0px;
}
.offcanvas .sidebar ul {
margin: 0px;
}
.offcanvas .sidebar-page-sidebar {
border-top: 1px solid #cccccc;
}
.offcanvas .sidebar-label {
text-transform: uppercase;
color: #999999;
font-size: 85%;
margin: 0px;
font-weight: bold;
padding: 10px 15px 0px;
}
} | fidetia/public/css/offcanvas-website.css | html {
min-height: 100%;
}
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
margin: 0px;
padding: 0px !important;
}
html,
body {
overflow-x: hidden;
/* Prevent scroll on narrow devices */
}
.offcanvas-main-section-overlay {
display: none;
cursor: pointer;
opacity: 0.5;
}
.sidebar-padding {
padding: 12px 14px;
}
.offcanvas .sidebar .sidebar-menu > li > a,
.offcanvas .sidebar .dropdown-menu > li > a {
padding: 12px 14px;
display: block;
whitespace: nowrap;
transition: 0.2s;
text-decoration: none !important;
}
.offcanvas .sidebar .dropdown-menu {
padding: 0px;
font-size: inherit;
}
.offcanvas .sidebar .dropdown-menu > li > a {
padding-left: 28px;
}
.offcanvas .sidebar .divider {
height: 1px;
overflow: hidden;
background-color: #CCCCCC;
width: 100%;
margin: 0px;
}
.offcanvas .sidebar .badge {
right: 15px !important;
top: 11px !important;
}
.offcanvas .sidebar .sidebar-menu > li > a:hover,
.offcanvas .sidebar .dropdown-menu > li > a:hover,
.offcanvas .sidebar .sidebar-menu > li > a:focus,
.offcanvas .sidebar .dropdown-menu > li > a:focus,
.offcanvas .sidebar .sidebar-menu > li > a:active,
.offcanvas .sidebar .dropdown-menu > li > a:active {
background-color: #666666;
}
@media (max-width: 767px) {
.page-content {
min-height: 200px;
}
.offcanvas {
transition: 0.25s;
}
.offcanvas-main-section-overlay {
bottom: 0;
position: fixed;
}
.offcanvas-container,
.offcanvas,
.offcanvas-main-section {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.offcanvas.active-left,
.offcanvas.active-right {
position: fixed;
}
.offcanvas.active-left .offcanvas-main-section-overlay,
.offcanvas.active-right .offcanvas-main-section-overlay {
z-index: 1031;
display: block;
bottom: 0;
}
.offcanvas.active-left {
-webkit-transform: translate3d(75%, 0, 0);
transform: translate3d(75%, 0, 0);
}
.offcanvas.active-right {
-webkit-transform: translate3d(-75%, 0, 0);
transform: translate3d(-75%, 0, 0);
}
.offcanvas .sidebar {
position: fixed;
top: 0;
bottom: 0;
width: 75%;
/* 9 columns */
overflow-x: hidden;
overflow-y: auto;
font-size: 12px;
}
.offcanvas .sidebar-right {
left: 100%;
border-left: 1px solid #cccccc;
}
.offcanvas .sidebar-left {
right: 100%;
border-right: 1px solid #cccccc;
}
.offcanvas .sidebar-menu {
margin-bottom: 0;
}
.offcanvas .navbar-form {
margin: 0px;
}
.offcanvas .sidebar ul {
margin: 0px;
}
.offcanvas .sidebar-page-sidebar {
border-top: 1px solid #cccccc;
}
.offcanvas .sidebar-label {
text-transform: uppercase;
color: #999999;
font-size: 85%;
margin: 0px;
font-weight: bold;
padding: 10px 15px 0px;
}
} | 0.457864 | 0.089494 |
.site-title a:hover{
color: #E84B63;
}
.navbar5.navbar-custom .search-box-outer a:hover {color: #E84B63; background-color: transparent;}
.navbar5.navbar-custom .nav li.active a,
.navbar5.navbar-custom .nav li.active a:hover,
.navbar5.navbar-custom .nav li.active a:focus,
.navbar5.navbar-custom .nav li a:hover {
color: #fff;
background-color: #E84B63;
}
@media (max-width: 991px) {
.navbar5.navbar-custom .nav li.active a,
.navbar5.navbar-custom .nav li.active a:hover,
.navbar5.navbar-custom .nav li.active a:focus,
.navbar5.navbar-custom .nav li a:hover {
color: #ffffff; background-color: #E84B63;
}
}
.dropdown-item:focus, .dropdown-item:hover {
background-color: #f8f9fa !important;
}
.navbar5.navbar .nav .nav-item:hover .nav-link, .navbar5.navbar .nav .nav-item .nav-link:focus {
color: #ffffff;
background-color: #E84B63;
}
.navbar5.navbar .nav .nav-item.active .nav-link {
color: #ffffff;
background-color: #E84B63;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover, .woocommerce-loop-product__title:hover {
color: #E84B63;
}
.search-form input[type="submit"], .woocommerce [type=submit], .woocommerce button, .woocommerce ul.products li.product .onsale, .woocommerce ul.products li.product .button {
background: #E84B63 none repeat scroll 0 0 !important;
border: 1px solid #E84B63;
}
.woocommerce [type=submit]:hover, .woocommerce button:hover {
background: #061018 !important;
border: 1px solid #061018 !important;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
background-color: #E84B63 !important;
}
.woocommerce-message {
border-top-color: #E84B63 !important;
}
.woocommerce-message::before {
color: #E84B63 !important;
}
.woocommerce-info {
border-top-color: #E84B63;
}
.woocommerce-info::before {
color: #E84B63;
}
.cart-header a .cart-total span {
display: none;
}
.call-to-action, .call-to-action-one {
background-color: #E84B63;
}
.btn-animate.border {
border: 2px solid #E84B63 !important;
}
.bg-default {
background-color: #E84B63;
}
.btn-animate.border:before, .btn-animate.border:after {
background: #E84B63;
}
.main-slider .btn-small.btn-light {
background: #E84B63;
}
.entry-meta .cat-links a, .entry-meta .tag-links a, .entry-header .entry-title a:hover, .entry-header .entry-title a:focus, .entry-meta a:hover {
color: #E84B63;
}
.btn-animate.dark, .site-info {
background: #E84B63;
}
@media (min-width: 992px) {
.navbar5 .search-box-outer .dropdown-menu {
top: 30px !important;
}
}
.entry-meta a:hover, .entry-meta a:focus, .page-breadcrumb.text-center .breadcrumb_last, .page-breadcrumb.text-center span a:hover, .woocommerce p.stars a {
color: #E84B63 !important;
}
.navbar5 button{
background-color: transparent !important;
}
@media (min-width: 992px) {
.navbar5 .header-module {
width: 210px;
text-align: right;
}
}
.widget a:hover, .widget a:focus, .entry-content a:hover, .entry-content a:focus{
color: #E84B63 !important;
}
.pagination a:hover, .pagination a.active, .page-numbers.current, input[type="submit"], .woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle
{
background-color: #E84B63 !important;
}
body .woocommerce button.button, .woocommerce span.onsale, .woocommerce #review_form #respond .form-submit input, .checkout-button.button.alt.wc-forward {
background-color: #E84B63 !important;
}
body .woocommerce .return-to-shop a.button { background-color: #E84B63 !important; }
blockquote {
border-left: 3px solid #E84B63 !important;
}
.widget .head-contact-info li a:hover, .widget .head-contact-info li a:focus { color: #fff !important; }
.reply a {
background-color: #E84B63;
border: 1px solid #E84B63;
}
.reply a:hover {
border: 1px solid #000;
}
.search .site-content .blog .more-link {
text-decoration: none !important;
}
.error-404 h1 > i {
color: #E84B63;
}
.error-404 .btn-animate.border {
background-color: #E84B63 !important;
}
.header-sidebar {
background-color: #E84B63;
}
.widget .head-contact-info li a:hover {
color: #fff;
} | workstation/app/public/wp-content/themes/cloudpress-business/assets/css/default.css | .site-title a:hover{
color: #E84B63;
}
.navbar5.navbar-custom .search-box-outer a:hover {color: #E84B63; background-color: transparent;}
.navbar5.navbar-custom .nav li.active a,
.navbar5.navbar-custom .nav li.active a:hover,
.navbar5.navbar-custom .nav li.active a:focus,
.navbar5.navbar-custom .nav li a:hover {
color: #fff;
background-color: #E84B63;
}
@media (max-width: 991px) {
.navbar5.navbar-custom .nav li.active a,
.navbar5.navbar-custom .nav li.active a:hover,
.navbar5.navbar-custom .nav li.active a:focus,
.navbar5.navbar-custom .nav li a:hover {
color: #ffffff; background-color: #E84B63;
}
}
.dropdown-item:focus, .dropdown-item:hover {
background-color: #f8f9fa !important;
}
.navbar5.navbar .nav .nav-item:hover .nav-link, .navbar5.navbar .nav .nav-item .nav-link:focus {
color: #ffffff;
background-color: #E84B63;
}
.navbar5.navbar .nav .nav-item.active .nav-link {
color: #ffffff;
background-color: #E84B63;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover, .woocommerce-loop-product__title:hover {
color: #E84B63;
}
.search-form input[type="submit"], .woocommerce [type=submit], .woocommerce button, .woocommerce ul.products li.product .onsale, .woocommerce ul.products li.product .button {
background: #E84B63 none repeat scroll 0 0 !important;
border: 1px solid #E84B63;
}
.woocommerce [type=submit]:hover, .woocommerce button:hover {
background: #061018 !important;
border: 1px solid #061018 !important;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
background-color: #E84B63 !important;
}
.woocommerce-message {
border-top-color: #E84B63 !important;
}
.woocommerce-message::before {
color: #E84B63 !important;
}
.woocommerce-info {
border-top-color: #E84B63;
}
.woocommerce-info::before {
color: #E84B63;
}
.cart-header a .cart-total span {
display: none;
}
.call-to-action, .call-to-action-one {
background-color: #E84B63;
}
.btn-animate.border {
border: 2px solid #E84B63 !important;
}
.bg-default {
background-color: #E84B63;
}
.btn-animate.border:before, .btn-animate.border:after {
background: #E84B63;
}
.main-slider .btn-small.btn-light {
background: #E84B63;
}
.entry-meta .cat-links a, .entry-meta .tag-links a, .entry-header .entry-title a:hover, .entry-header .entry-title a:focus, .entry-meta a:hover {
color: #E84B63;
}
.btn-animate.dark, .site-info {
background: #E84B63;
}
@media (min-width: 992px) {
.navbar5 .search-box-outer .dropdown-menu {
top: 30px !important;
}
}
.entry-meta a:hover, .entry-meta a:focus, .page-breadcrumb.text-center .breadcrumb_last, .page-breadcrumb.text-center span a:hover, .woocommerce p.stars a {
color: #E84B63 !important;
}
.navbar5 button{
background-color: transparent !important;
}
@media (min-width: 992px) {
.navbar5 .header-module {
width: 210px;
text-align: right;
}
}
.widget a:hover, .widget a:focus, .entry-content a:hover, .entry-content a:focus{
color: #E84B63 !important;
}
.pagination a:hover, .pagination a.active, .page-numbers.current, input[type="submit"], .woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle
{
background-color: #E84B63 !important;
}
body .woocommerce button.button, .woocommerce span.onsale, .woocommerce #review_form #respond .form-submit input, .checkout-button.button.alt.wc-forward {
background-color: #E84B63 !important;
}
body .woocommerce .return-to-shop a.button { background-color: #E84B63 !important; }
blockquote {
border-left: 3px solid #E84B63 !important;
}
.widget .head-contact-info li a:hover, .widget .head-contact-info li a:focus { color: #fff !important; }
.reply a {
background-color: #E84B63;
border: 1px solid #E84B63;
}
.reply a:hover {
border: 1px solid #000;
}
.search .site-content .blog .more-link {
text-decoration: none !important;
}
.error-404 h1 > i {
color: #E84B63;
}
.error-404 .btn-animate.border {
background-color: #E84B63 !important;
}
.header-sidebar {
background-color: #E84B63;
}
.widget .head-contact-info li a:hover {
color: #fff;
} | 0.470737 | 0.141667 |
@media (max-width: 1000px) {
body{
background-color: #F3F3F3F3;
}
.notification_button{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.content_page > .form-infos > h2{
text-align: center;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--text-primary);
width: 100%;
height: 100%;
margin: 10px;
border-radius: 22px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.content_page {
width: 100%;
}
.container_page {
width: 100%;
height: 100%;
}
.nav-bar-left-desktop {
display: none;
}
.card-saldo {
width: 100%;
height: 150px;
margin: 20px;
background-color: var(--text-primary);
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
border-radius: 18px;
}
.content_page > .form-infos {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.content_page > .form-infos > form > .row-01 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-02 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-03 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-03 > .field_pass{
width: 100%;
height: 80px;
margin-top: 4px;
margin-left: -35px;
}
.content_page > .form-infos > form > .row-03 > .field_pass > input{
margin: 10px;
width: 300px;
}
.content_page > .form-infos > form > .row-01 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.content_page > .form-infos > form > .row-02 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-top: -98px;
}
.content_page > .form-infos > form > .row-03 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-top: -64px;
}
#togglePassword01{
margin-left: -55px;
cursor: pointer;
}
.hidden-text{
visibility: visible;
}
.content_page > .form-infos > h2{
display: none;
}
.col{
width: 100% !important;
}
.notification_button{
margin: 0;
padding: 0;
margin-top: 10px;
}
.notification_button > button{
height: 60px;
width: 60px;
}
}
@media (min-width: 1000px) {
.nav_bar_top_mobile {
display: none;
}
} | source/styles/mobile/dash_page/main.css | @media (max-width: 1000px) {
body{
background-color: #F3F3F3F3;
}
.notification_button{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.content_page > .form-infos > h2{
text-align: center;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--text-primary);
width: 100%;
height: 100%;
margin: 10px;
border-radius: 22px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.content_page {
width: 100%;
}
.container_page {
width: 100%;
height: 100%;
}
.nav-bar-left-desktop {
display: none;
}
.card-saldo {
width: 100%;
height: 150px;
margin: 20px;
background-color: var(--text-primary);
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
border-radius: 18px;
}
.content_page > .form-infos {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.content_page > .form-infos > form > .row-01 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-02 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-03 > input {
margin: 10px;
}
.content_page > .form-infos > form > .row-03 > .field_pass{
width: 100%;
height: 80px;
margin-top: 4px;
margin-left: -35px;
}
.content_page > .form-infos > form > .row-03 > .field_pass > input{
margin: 10px;
width: 300px;
}
.content_page > .form-infos > form > .row-01 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.content_page > .form-infos > form > .row-02 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-top: -98px;
}
.content_page > .form-infos > form > .row-03 {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-top: -64px;
}
#togglePassword01{
margin-left: -55px;
cursor: pointer;
}
.hidden-text{
visibility: visible;
}
.content_page > .form-infos > h2{
display: none;
}
.col{
width: 100% !important;
}
.notification_button{
margin: 0;
padding: 0;
margin-top: 10px;
}
.notification_button > button{
height: 60px;
width: 60px;
}
}
@media (min-width: 1000px) {
.nav_bar_top_mobile {
display: none;
}
} | 0.295433 | 0.084041 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400&display=swap');
body {
font-family: 'Poppins', sans-serif;
font-weight: 200 !important;
min-height: 100vh;
display: flex;
flex-direction: column;
}
li {
font-weight: 200;
}
.sideBar{
position: fixed;
background-color: #f8f9fa;
margin-top: 0px;
padding: 6px 14px;
}
.sideBar .logoContent .logo {
color: rgba(0,0,0,.9);
align-items: center;
}
.logoContent .logo i {
margin-right: 5px;
}
.myButton {
background-color: #f8f9fa ;
}
.productBrief{
width: 25ch;
height: 2ch;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.contentContainer {
display: flex;
justify-content: space-between !important;
}
.content{
height: 400px;
background-color: black;
}
.icons {
color: rgba(0,0,0,.9) !important;
text-decoration: none;
margin-right: 15px;
}
.row {
--bs-gutter-x: 0;
justify-content: space-between !important;
}
.btn-toggle {
display: inline-flex;
align-items: center;
padding: .25rem .5rem;
font-weight: 600;
color: rgba(0, 0, 0, .65);
background-color: transparent;
border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
color: rgba(0, 0, 0, .85);
background-color: #f8f9fa !important;
}
.btn-toggle::before {
width: 1.25em;
line-height: 0;
content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
transition: transform .35s ease;
transform-origin: .5em 50%;
}
.btn-toggle[aria-expanded="true"] {
color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
transform: rotate(90deg);
}
.btn-toggle-nav a {
display: inline-flex;
padding: .1875rem .5rem;
margin-top: .125rem;
margin-left: 1.25rem;
text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
background-color: #f8f9fa !important;
}
.newCorusel{
margin-right: 0px !important;
}
/*
#fullBucketDiv {
} */
.bucketPr {
border: none !important;
}
.mrgnHr {
margin-right: 40px;
margin-left: 40px;
}
#productCount {
color: red;
}
#reklamImg {
width: 100% !important;
max-height: 150px;
object-fit: cover;
}
.cardImgBtn {
border: none;
background-color: white;
}
footer {
background-color: #f8f9fa;
bottom: 0;
margin-top: auto;
}
.footerHeaders {
font-family: 'Poppins',sans-serif;
font-weight: 400;
padding-bottom: 10px;
text-align: center !important;
}
.headerBorder {
content: "";
max-width: 80px;
border-bottom: 1px solid red;
}
.colRightBorder {
content: "";
height: 75%;
border-right:1px solid red ;
}
.footerIcons {
color: rgba(0,0,0,.9) !important;
text-decoration: none;
}
.footerLinks {
font-family: 'Poppins', sans-serif;
text-decoration: none !important;
color: rgba(0,0,0,.9) !important;
}
.far {
line-height: normal !important;
}
#haberId {
object-fit: cover;
overflow: hidden;
}
.row {
--bs-gutter-x: none !important;
} | anasayfa.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400&display=swap');
body {
font-family: 'Poppins', sans-serif;
font-weight: 200 !important;
min-height: 100vh;
display: flex;
flex-direction: column;
}
li {
font-weight: 200;
}
.sideBar{
position: fixed;
background-color: #f8f9fa;
margin-top: 0px;
padding: 6px 14px;
}
.sideBar .logoContent .logo {
color: rgba(0,0,0,.9);
align-items: center;
}
.logoContent .logo i {
margin-right: 5px;
}
.myButton {
background-color: #f8f9fa ;
}
.productBrief{
width: 25ch;
height: 2ch;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.contentContainer {
display: flex;
justify-content: space-between !important;
}
.content{
height: 400px;
background-color: black;
}
.icons {
color: rgba(0,0,0,.9) !important;
text-decoration: none;
margin-right: 15px;
}
.row {
--bs-gutter-x: 0;
justify-content: space-between !important;
}
.btn-toggle {
display: inline-flex;
align-items: center;
padding: .25rem .5rem;
font-weight: 600;
color: rgba(0, 0, 0, .65);
background-color: transparent;
border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
color: rgba(0, 0, 0, .85);
background-color: #f8f9fa !important;
}
.btn-toggle::before {
width: 1.25em;
line-height: 0;
content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
transition: transform .35s ease;
transform-origin: .5em 50%;
}
.btn-toggle[aria-expanded="true"] {
color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
transform: rotate(90deg);
}
.btn-toggle-nav a {
display: inline-flex;
padding: .1875rem .5rem;
margin-top: .125rem;
margin-left: 1.25rem;
text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
background-color: #f8f9fa !important;
}
.newCorusel{
margin-right: 0px !important;
}
/*
#fullBucketDiv {
} */
.bucketPr {
border: none !important;
}
.mrgnHr {
margin-right: 40px;
margin-left: 40px;
}
#productCount {
color: red;
}
#reklamImg {
width: 100% !important;
max-height: 150px;
object-fit: cover;
}
.cardImgBtn {
border: none;
background-color: white;
}
footer {
background-color: #f8f9fa;
bottom: 0;
margin-top: auto;
}
.footerHeaders {
font-family: 'Poppins',sans-serif;
font-weight: 400;
padding-bottom: 10px;
text-align: center !important;
}
.headerBorder {
content: "";
max-width: 80px;
border-bottom: 1px solid red;
}
.colRightBorder {
content: "";
height: 75%;
border-right:1px solid red ;
}
.footerIcons {
color: rgba(0,0,0,.9) !important;
text-decoration: none;
}
.footerLinks {
font-family: 'Poppins', sans-serif;
text-decoration: none !important;
color: rgba(0,0,0,.9) !important;
}
.far {
line-height: normal !important;
}
#haberId {
object-fit: cover;
overflow: hidden;
}
.row {
--bs-gutter-x: none !important;
} | 0.304042 | 0.082734 |
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Rubik", sans-serif;
}
a {
text-decoration: none;
background: transparent;
color: inherit;
outline: none;
}
img,
video,
iframe {
max-inline-size: 100%;
block-size: auto;
object-fit: cover;
object-position: center;
}
/* Cloud UI Variables */
/*
Content:
- Base Colors
- Shades
- Shadows
- transition
- Spacings
- Borders
- Typography
*/
/*
Proposed breakpoints:
xs: 32rem, // ~512px
sm: 48rem, // ~768px
md: 64rem, // ~1024px
lg: 80rem, // ~1280px
xl: 90rem // ~1440px
*/
/* Base Colors */
:root {
--primary-color: #53c6d9;
--secondary-color: #ae98e7;
--accient-color: #fc608c;
--success-color: #7ad88f;
--danger-color: #e15554;
--warn-color: #e4cf66;
--dark-color: #0a0f15;
--light-color: #f7f0fe;
}
/* Color Shades */
:root {
--primary-light: #87d7e4;
--primary-lighter: #bae8f0;
--primary-lightest: #d4f1f6;
--secondary-light: #c6b7ee;
--secondary-lighter: #dfd6f5;
--secondary-lightest: #ebe5f9;
--accient-light: #fd90af;
--accient-lighter: #febfd1;
--accient-lightest: #fed7e2;
--success-light: #a2e4b1;
--success-lighter: #caefd2;
--success-lightest: #def5e3;
--danger-light: #ea8887;
--danger-lighter: #f3bbbb;
--danger-lightest: #f8d5d4;
--warn-light: #ecdd94;
--warn-lighter: #f4ecc2;
--warn-lightest: #f8f3d9;
--dark-light: #54575b;
--dark-lighter: #9d9fa1;
--dark-lightest: #c2c3c5;
--light-light: #fcf9ff;
--light-lighter: #fdfbff;
--light-lightest: #fefeff;
}
/* shadows */
:root {
--box-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
--box-shadow-sm: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
--box-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.19),
0 6px 6px rgba(0, 0, 0, 0.23);
--box-shadow-lg: 0 14px 28px rgba(0, 0, 0, 0.25),
0 10px 10px rgba(0, 0, 0, 0.22);
--box-shadow-xl: 0 19px 38px rgba(0, 0, 0, 0.3),
0 15px 12px rgba(0, 0, 0, 0.22);
--box-shadow-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Transition Timing Functions */
:root {
--ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
--ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
--ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
--ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Spacing */
:root {
--space-unit: 1rem;
}
:root,
* {
--space-xxxxs: calc(0.125 * var(--space-unit));
--space-xxxs: calc(0.25 * var(--space-unit));
--space-xxs: calc(0.375 * var(--space-unit));
--space-xs: calc(0.5 * var(--space-unit));
--space-sm: calc(0.75 * var(--space-unit));
--space-md: calc(1.25 * var(--space-unit));
--space-lg: calc(2 * var(--space-unit));
--space-xl: calc(3.25 * var(--space-unit));
--space-xxl: calc(5.25 * var(--space-unit));
--space-xxxl: calc(8.5 * var(--space-unit));
--space-xxxxl: calc(13.75 * var(--space-unit));
--component-padding: var(--space-md);
}
@media screen and (min-width: 48rem) {
:root {
--space-unit: 1.5625rem;
}
}
/* Borders radius */
:root {
--radius: 0.25em;
--radius-sm: calc(var(--radius) / 2);
--radius-md: var(--radius);
--radius-lg: calc(var(--radius) * 2);
}
/* Typography */
:root {
--font-primary: "Rubik", sans-serif;
--font-secondary: Georgia, serif;
}
:root {
--text-base-size: 1rem;
--text-scale-ratio: 1.2;
--text-unit: var(--text-base-size);
}
:root {
--heading-line-height: 1.2;
--heading-font-weight: 700;
--body-line-height: 1.4;
}
@media screen and (min-width: 48rem) {
:root {
--text-base-size: 1.25rem;
--text-scale-ratio: 1.25;
}
}
:root,
* {
--text-xs: calc(
(var(--text-unit) / var(--text-scale-ratio)) / var(--text-scale-ratio)
);
--text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
--text-md: calc(
var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio)
);
--text-lg: calc(var(--text-md) * var(--text-scale-ratio));
--text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
--text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
--text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
--text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
}
/*
Alerts
*/
.alert {
display: flex;
align-items: center;
gap: 1rem;
width: fit-content;
height: auto;
padding: var(--space-xs);
margin: var(--space-xs);
border-radius: var(--radius-md);
color: var(--primary-color);
background-color: var(--primary-lightest);
border: 3px solid;
}
.alert > .alert-icon {
order: 1;
}
.alert > .alert-close {
order: 3;
cursor: pointer;
}
.alert > .alert-close:hover,
.alert > .alert-close:focus {
opacity: 0.8;
}
/* Colors */
.alert-info,
.alert-primary {
background-color: var(--primary-lightest);
color: var(--primary-color);
}
.alert-secondary {
background-color: var(--secondary-lightest);
color: var(--secondary-color);
}
.alert-accient {
background-color: var(--accient-lightest);
color: var(--accient-color);
}
.alert-success {
background-color: var(--success-lightest);
color: var(--success-color);
}
.alert-warn {
background-color: var(--warn-lightest);
color: var(--warn-color);
}
.alert-danger {
background-color: var(--danger-lightest);
color: var(--danger-color);
}
.alert-dark {
background-color: var(--dark-lightest);
color: var(--dark-color);
}
.alert-light {
background-color: var(--light-lightest);
color: var(--light-color);
}
/*
Avatar
*/
.avatar {
/* Positioning */
display: inline-flex;
position: relative;
justify-content: center;
align-items: center;
/* Color */
background-color: var(--dark-lighter); /* Default Color */
color: inherit;
box-shadow: var(--box-shadow-xm);
transition: all 250ms var(--ease-in-out);
/* Spacing */
width: var(--space-xl);
height: var(--space-xl);
font-size: var(--text-xl);
}
.avatar:hover {
cursor: pointer;
opacity: 0.9;
}
.avatar > img,
.avatar-image {
position: absolute;
min-width: 100%;
border-radius: inherit;
aspect-ratio: 1/1;
}
.avatar-rounded {
border-radius: var(--radius-md);
}
.avatar-circle {
border-radius: 50%;
}
/* Sizes */
.avatar-sm {
width: var(--space-lg);
height: var(--space-lg);
font-size: var(--text-lg);
}
.avatar-md {
width: var(--space-xl);
height: var(--space-xl);
font-size: var(--text-xl);
}
.avatar-lg {
width: var(--space-xxl);
height: var(--space-xxl);
font-size: var(--text-xxl);
font-size: var(--text-xxl);
}
.avatar-xl {
width: var(--space-xxxl);
height: var(--space-xxxl);
font-size: var(--text-xxxl);
font-size: var(--text-xxxl);
}
/*
Badge
*/
.badge {
display: inline-flex;
border-radius: var(--radius-sm);
background-color: var(--primary-color);
color: var(--light-color);
padding: var(--space-xxxs);
}
.icon-badge {
display: inline-block;
position: relative;
padding: 0.5rem;
}
.icon-badge > .badge {
padding: 0;
position: absolute;
top: 0;
right: 0;
font-size: 1rem;
}
.avatar > .badge {
aspect-ratio: 1/1;
position: absolute;
width: 0.4em;
border-radius: 50%;
bottom: 0;
right: 0;
}
/* Colors */
.badge-danger {
background-color: var(--danger-color);
}
.badge-success {
background-color: var(--success-color);
}
.badge-warn {
background-color: var(--warn-color);
}
/*
Buttons
*/
.btn {
display: inline-flex;
justify-content: center;
align-items: center;
gap: var(--space-sm); /* In case of Icon button*/
text-decoration: none;
background-color: transparent;
border: none;
cursor: pointer;
font-size: inherit;
text-transform: uppercase;
/* Design */
background-color: var(--primary-color); /* Default color set to primary */
color: inherit;
overflow: hidden;
outline: none;
font-family: inherit;
box-shadow: var(--box-shadow-xm);
transition: all 250ms var(--ease-in-out);
/* Sizing and Spacing */
padding: var(--space-xs) var(--space-md);
font-size: var(--text-md);
}
.btn:hover,
.btn:focus {
background-color: var(--primary-light);
box-shadow: var(--box-shadow-sm);
}
.btn-outlined {
background-color: transparent !important;
border: 3px solid;
border-color: var(--primary-color);
color: var(--primary-color);
}
.btn-outlined:hover,
.btn-outlined:focus {
color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-rounded {
border-radius: var(--radius-md);
}
.btn-action {
padding: var(--space-md) !important;
aspect-ratio: 1/1;
border-radius: 50%;
}
/* Colors */
.btn-primary {
background-color: var(--primary-color);
}
.btn-secondary {
background-color: var(--secondary-color);
}
.btn-accient {
background-color: var(--accient-color);
}
.btn-danger {
background-color: var(--danger-color);
}
.btn-success {
background-color: var(--success-color);
}
.btn-warn {
background-color: var(--warn-color);
}
.btn-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.btn-light {
background-color: var(--light-color);
color: var(--dark-color);
}
.btn-disabled {
cursor: not-allowed;
box-shadow: none;
background-color: var(--dark-lightest);
}
/* Color Hover */
.btn-primary:hover,
.btn-primary:focus {
background-color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-secondary:hover,
.btn-secondary:focus {
background-color: var(--secondary-light);
border-color: var(--secondary-light);
}
.btn-accient:hover,
.btn-accient:focus {
background-color: var(--accient-light);
border-color: var(--accient-light);
}
.btn-danger:hover,
.btn-danger:focus {
background-color: var(--danger-light);
border-color: var(--danger-light);
}
.btn-success:hover,
.btn-success:focus {
background-color: var(--success-light);
border-color: var(--success-light);
}
.btn-warn:hover,
.btn-warn:focus {
background-color: var(--warn-light);
border-color: var(--warn-light);
}
.btn-dark:hover,
.btn-dark:focus {
background-color: var(--dark-light);
border-color: var(--dark-light);
}
.btn-light:hover,
.btn-light:focus {
background-color: var(--light-light);
border-color: var(--light-light);
}
.btn-disabled:hover,
.btn-disabled:focus {
box-shadow: none;
background-color: var(--dark-lightest);
border-color: var(--dark-lightest);
}
/* Outlined Colors*/
.btn-outlined.btn-primary {
color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-outlined.btn-secondary {
color: var(--secondary-color);
border-color: var(--secondary-color);
}
.btn-outlined.btn-accient {
color: var(--accient-color);
border-color: var(--accient-color);
}
.btn-outlined.btn-success {
color: var(--success-color);
border-color: var(--success-color);
}
.btn-outlined.btn-warn {
color: var(--warn-color);
border-color: var(--warn-color);
}
.btn-outlined.btn-danger {
color: var(--danger-color);
border-color: var(--danger-color);
}
.btn-outlined.btn-dark {
color: var(--dark-color);
border-color: var(--dark-color);
}
.btn-outlined.btn-light {
color: var(--light-color);
border-color: var(--light-color);
}
.btn-outlined.btn-disabled {
color: var(--dark-lighter);
border-color: var(--dark-lighter);
}
/* Outlined Hover */
.btn-outlined.btn-primary:hover,
.btn-outlined.btn-primary:focus {
color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-outlined.btn-secondary:hover,
.btn-outlined.btn-secondary:focus {
color: var(--secondary-light);
border-color: var(--secondary-light);
}
.btn-outlined.btn-accient:hover,
.btn-outlined.btn-accient:focus {
color: var(--accient-light);
border-color: var(--accient-light);
}
.btn-outlined.btn-success:hover,
.btn-outlined.btn-success:focus {
color: var(--success-light);
border-color: var(--success-light);
}
.btn-outlined.btn-warn:hover,
.btn-outlined.btn-warn:focus {
color: var(--warn-light);
border-color: var(--warn-light);
}
.btn-outlined.btn-danger:hover,
.btn-outlined.btn-danger:focus {
color: var(--danger-light);
border-color: var(--danger-light);
}
.btn-outlined.btn-dark:hover,
.btn-outlined.btn-dark:focus {
color: var(--dark-light);
border-color: var(--dark-light);
}
.btn-outlined.btn-light:hover,
.btn-outlined.btn-light:focus {
color: var(--light-light);
border-color: var(--light-light);
}
.btn-outlined.btn-disabled {
color: var(--dark-light);
border-color: var(--dark-light);
}
/* Sizes AND Spacing */
.btn-xs {
padding: var(--space-xxs) var(--space-xs);
font-size: var(--text-xs);
}
.btn-sm {
padding: var(--space-xs) var(--space-sm);
font-size: var(--text-sm);
}
.btn-md {
padding: var(--space-xs) var(--space-md);
font-size: var(--text-md);
}
.btn-lg {
padding: var(--space-sm) var(--space-lg);
font-size: var(--text-lg);
}
.btn-xl {
padding: var(--space-sm) var(--space-xl);
font-size: var(--text-xl);
}
.btn-xxl {
padding: var(--space-sm) var(--space-xl);
font-size: var(--text-xxl);
}
/* Links */
.link {
font-family: inherit;
font-size: inherit;
color: var(--primary-color);
}
.link:hover {
text-decoration: underline;
}
/*
Card Component
*/
/*
Variations:
- card-badge
- card-close DONE
- card-overlay DONE
- text only car DONE
- card with image DONE
- card with shadow DONE
*/
.card {
display: inline-flex;
position: relative;
flex-direction: column;
border: 1px solid var(--dark-lighter);
border-radius: var(--radius-lg);
max-width: var(--space-xxxxl);
overflow: hidden;
}
.card-square {
aspect-ratio: 1/1;
}
.card-image {
aspect-ratio: 1/1;
width: 100%;
order: 1;
}
.card-header {
order: 0;
border-bottom: 1px solid var(--dark-lighter);
padding: var(--space-xs);
}
.card-footer {
order: 3;
border-top: 1px solid var(--dark-lighter);
padding: var(--space-xs);
}
.card-main {
order: 2;
padding: var(--space-xs);
overflow: hidden;
}
.card-title {
display: block;
margin-top: var(--space-xs);
font-size: var(--text-md);
color: var(--dark-color);
}
.card-text {
display: block;
font-size: var(--text-sm);
color: var(--dark-light);
overflow: hidden;
}
/* horizontal */
.card-horizontal {
max-width: 32rem;
max-height: var(--space-xxxl);
display: inline-flex;
flex-direction: row;
}
.card-horizontal .card-image {
align-self: center;
height: 100%;
}
.card-close {
color: var(--dark-lighter);
position: absolute;
top: 1%;
z-index: 3;
right: 1%;
font-size: var(--text-xs);
}
.card-close:hover {
cursor: pointer;
color: var(--dark-light);
}
.card-overlay {
position: absolute;
z-index: 1;
inset: 0;
padding: var(--component-padding);
background-color: var(--dark-color);
color: var(--light-color);
transition: all 250ms var(--ease-in-out);
opacity: 0;
}
.card-overlay:hover {
opacity: 0.75;
}
.card-shadow {
box-shadow: var(--box-shadow-md);
}
.card-badge {
position: absolute;
display: inline-block;
top: var(--space-xs);
left: var(--space-xs);
}
/* Grid layout */
.grid {
display: grid;
text-align: center;
color: var(--black-light);
background-color: var(--light-color);
}
.grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
grid-template-columns: repeat(6, 1fr);
}
.grid-7 {
grid-template-columns: repeat(7, 1fr);
}
.grid-8 {
grid-template-columns: repeat(8, 1fr);
}
.grid-9 {
grid-template-columns: repeat(9, 1fr);
}
.grid-10 {
grid-template-columns: repeat(10, 1fr);
}
.grid-11 {
grid-template-columns: repeat(11, 1fr);
}
.grid-12 {
grid-template-columns: repeat(12, 1fr);
}
.grid-responsive {
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
/*
Image
*/
/*
Content:
- Fluid Image (Responsive)
- Square Image
- rounded (Rounded corners)
- circle
*/
.image-fluid {
max-width: 100%;
height: auto;
}
.image-square {
--size: var(--space-xxxxl);
height: var(--size);
width: auto;
aspect-ratio: 1/1;
}
.image-rounded {
max-width: 100%;
border-radius: var(--radius-md);
}
.image-circle {
--size: var(--space-xxxxl);
width: var(--size);
height: auto;
aspect-ratio: 1/1;
border-radius: 50%;
}
/*
Input
*/
.input-field {
background-color: transparent;
outline: none;
padding: var(--space-xxs);
color: var(--dark-light);
border: 2px solid var(--dark-lighter);
border-radius: var(--radius-lg);
transition: all 75ms var(--ease-in-out);
}
.input-field-float {
width: 100%;
}
.input-field:focus {
border-color: var(--dark-light);
box-shadow: var(--box-shadow-sm);
}
.input-field.input-field-danger {
border-color: var(--danger-color);
}
.input-field.input-field-success {
border-color: var(--success-color);
}
.input-field.input-field-warn {
border-color: var(--warn-color);
}
.input-field.input-field-disabled {
border-color: var(--dark-lightest);
cursor: not-allowed;
}
/*
List
*/
/*
Content:
Stacked
Horizontal
Active
*/
.list {
display: inline-flex;
flex-direction: column;
border: 1px solid var(--dark-lightest);
border-radius: var(--radius-md);
list-style: none;
padding: 0;
margin: 0;
overflow: hidden;
}
.list-title {
margin-top: 0.5rem;
font-weight: 500;
padding: 0.5rem;
border-bottom: 1px solid var(--dark-lightest);
}
.list-item {
padding: 0.5rem;
padding-left: 1rem;
text-decoration: none;
list-style: none;
width: 100%;
}
.list-item:hover,
.list-item:focus {
background-color: var(--primary-lightest);
}
.list-item-active {
background-color: var(--primary-lighter);
}
.list-item-disabled {
color: var(--dark-lightest);
cursor: default;
}
.list-item-disabled:hover,
.list-item-disabled:focus {
background-color: transparent;
}
/* Horizontal */
.list-horizontal {
flex-direction: row;
align-items: center;
white-space: nowrap;
}
.list-horizontal > .list-title {
border-bottom: 0;
border-right: 1px solid var(--dark-color);
}
/*
Modal
*/
.modal {
position: fixed;
display: inline-flex;
flex-direction: column;
max-width: 95%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: var(--space-xxl);
min-height: var(--space-xl);
border: 1px solid var(--dark-lightest);
border-radius: var(--radius-md);
box-shadow: var(--box-shadow-sm);
background-color: var(--light-light);
}
.modal-header {
order: 0;
border-bottom: 1px solid var(--dark-lightest);
padding: var(--space-xxs);
}
.modal-main {
order: 1;
flex-grow: 1;
padding: var(--space-xxs);
}
.modal-footer {
order: 2;
border-top: 1px solid var(--dark-lightest);
padding: var(--space-xxs);
}
.modal .modal-close {
position: absolute;
cursor: pointer;
top: 1%;
right: 1%;
}
.modal .modal-close:hover {
opacity: 80%;
}
/*
Navbar
*/
.navbar {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
height: 3.5rem;
gap: 2rem;
padding: 0 var(--space-sm);
background-color: var(--dark-lightest);
border-bottom: 1px solid var(--dark-lightest);
box-shadow: var(--box-shadow-sm);
/* transition: all 275ms var(--ease-in-out); */
}
.navbar-sticky {
position: sticky;
top: 0;
left: 0;
right: 0;
}
.navbar-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.navbar-list {
display: flex;
align-items: center;
justify-content: end;
gap: 1rem;
list-style: none;
}
.navbar-item {
cursor: pointer;
}
.navbar-hamburger {
display: none;
position: absolute;
left: var(--space-sm);
}
/* Media queries */
@media screen and (max-width: 48rem) {
.navbar-hamburger {
display: inline-block;
}
.navbar-list {
display: none;
}
.navbar {
justify-content: center;
}
}
/*
Slider
*/
::-webkit-scrollbar {
background: transparent;
width: 0.5rem;
}
/* webkit scrollbar thumb is the part of the scrollbar which we hold to scroll */
::-webkit-scrollbar-thumb {
background: #606060;
border-radius: var(--radius-md);
}
::-webkit-scrollbar-thumb:hover {
background: #606060c0;
}
/* Star-raiting */
.far.fa-star {
color: var(--dark-lighter);
}
.fas.fa-star {
color: var(--warn-color);
}
/*
Toasts/Snackbar
*/
.toast {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
position: fixed;
padding: var(--space-sm);
margin: auto;
width: var(--space-xxxxl);
height: auto;
/* Design */
border-radius: var(--radius-md);
background-color: var(--primary-color);
color: var(--light-color);
box-shadow: var(--box-shadow-xm);
}
.toast > .toast-icon {
order: 1;
}
.toast > .toast-close {
position: absolute;
right: var(--space-xxs);
top: var(--space-xxxs);
cursor: pointer;
}
.toast > .toast-close:hover,
.toast > .toast-close:focus {
opacity: 0.8;
}
/* Positions */
.toast-right-top {
right: var(--space-sm);
top: var(--space-sm);
}
.toast-right-bottom {
right: 2%;
bottom: 2%;
}
.toast-left-top {
left: 1%;
top: 1%;
}
.toast-left-bottom {
left: 1%;
bottom: 1%;
}
.toast-center-top {
top: 1%;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}
.toast-center-bottom {
bottom: 1%;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}
/* Colors */
.toast-info,
.toast-primary {
background-color: var(--primary-color);
color: var(--light-color);
}
.toast-secondary {
background-color: var(--secondary-color);
color: var(--light-color);
}
.toast-accient {
background-color: var(--accient-color);
color: var(--light-color);
}
.toast-danger {
background-color: var(--danger-color);
color: var(--light-color);
}
.toast-warn {
background-color: var(--warn-color);
color: var(--light-color);
}
.toast-success {
background-color: var(--success-color);
color: var(--light-color);
}
.toast-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.toast-light {
background-color: var(--light-color);
color: var(--dark-color);
}
/*
Boarder:
- type
- width
- style
- radius
*/
.border {
border: 1px solid var(--dark-lighter);
}
.border-top {
border-top: 1px solid var(--dark-lighter);
}
.border-bottom {
border-bottom: 1px solid var(--dark-lighter);
}
.border-left {
border-left: 1px solid var(--dark-lighter);
}
.border-right {
border-right: 1px solid var(--dark-lighter);
}
/* width */
.border-2 {
border-width: 2px;
}
.border-3 {
border-width: 3px;
}
.border-4 {
border-width: 4px;
}
.border-5 {
border-width: 5px;
}
/* Style */
.border-dotted {
border-style: dotted;
}
.border-dasher {
border-style: dashed;
}
/* Radius */
.radius-sm {
border-radius: var(--radius-sm);
}
.radius-md {
border-radius: var(--radius-md);
}
.radius-lg {
border-radius: var(--radius-lg);
}
.radius-50 {
border-radius: 50%;
}
.radius-full {
border-radius: 50em;
}
.radius-inherit {
border-radius: inherit;
}
.radius-0 {
border-radius: 0;
}
.radius-top-left-0 {
border-top-left-radius: 0;
}
.radius-top-right-0 {
border-top-right-radius: 0;
}
.radius-bottom-right-0 {
border-bottom-right-radius: 0;
}
.radius-bottom-left-0 {
border-bottom-left-radius: 0;
}
/*
Colors:
- Background Colors
- Text Colors
- Border Colors
*/
/* Background Colors */
.bg-dark {
background-color: var(--dark-color);
}
.bg-dark-light {
background-color: var(--dark-light);
}
.bg-dark-lighter {
background-color: var(--dark-lighter);
}
.bg-dark-lightest {
background-color: var(--dark-lightest);
}
.bg-light {
background-color: var(--light-color);
}
.bg-light-light {
background-color: var(--light-light);
}
.bg-light-lighter {
background-color: var(--light-lighter);
}
.bg-light-lightest {
background-color: var(--light-lightest);
}
.bg-primary {
background-color: var(--primary-color);
}
.bg-primary-light {
background-color: var(--primary-light);
}
.bg-primary-lighter {
background-color: var(--primary-lighter);
}
.bg-primary-lightest {
background-color: var(--primary-lightest);
}
.bg-secondary {
background-color: var(--secondary-color);
}
.bg-secondary-light {
background-color: var(--secondary-light);
}
.bg-secondary-lighter {
background-color: var(--secondary-lighter);
}
.bg-secondary-lightest {
background-color: var(--secondary-lightest);
}
.bg-accient {
background-color: var(--accient-color);
}
.bg-accient-light {
background-color: var(--accient-light);
}
.bg-accient-lighter {
background-color: var(--accient-lighter);
}
.bg-accient-lightest {
background-color: var(--accient-lightest);
}
.bg-success {
background-color: var(--success-color);
}
.bg-success-light {
background-color: var(--success-light);
}
.bg-success-lighter {
background-color: var(--success-lighter);
}
.bg-success-lightest {
background-color: var(--success-lightest);
}
.bg-warn {
background-color: var(--warn-color);
}
.bg-warn-light {
background-color: var(--warn-light);
}
.bg-warn-lighter {
background-color: var(--warn-lighter);
}
.bg-warn-lightest {
background-color: var(--warn-lightest);
}
.bg-danger {
background-color: var(--danger-color);
}
.bg-danger-light {
background-color: var(--danger-light);
}
.bg-danger-lighter {
background-color: var(--danger-lighter);
}
.bg-danger-lightest {
background-color: var(--danger-lightest);
}
.bg-black {
background-color: #000000;
}
.bg-white {
background-color: #ffffff;
}
.bg-transparent {
background-color: transparent;
}
.bg-inherit {
background-color: inherit;
}
/* Text Colors */
.text-dark {
color: var(--dark-color);
}
.text-dark-light {
color: var(--dark-light);
}
.text-dark-lighter {
color: var(--dark-lighter);
}
.text-dark-lightest {
color: var(--dark-lightest);
}
.text-light {
color: var(--light-color);
}
.text-light-light {
color: var(--light-light);
}
.text-light-lighter {
color: var(--light-lighter);
}
.text-light-lightest {
color: var(--light-lightest);
}
.text-primary {
color: var(--primary-color);
}
.text-primary-light {
color: var(--primary-light);
}
.text-primary-lighter {
color: var(--primary-lighter);
}
.text-primary-lightest {
color: var(--primary-lightest);
}
.text-secondary {
color: var(--secondary-color);
}
.text-secondary-light {
color: var(--secondary-light);
}
.text-secondary-lighter {
color: var(--secondary-lighter);
}
.text-secondary-lightest {
color: var(--secondary-lightest);
}
.text-accient {
color: var(--accient-color);
}
.text-accient-light {
color: var(--accient-light);
}
.text-accient-lighter {
color: var(--accient-lighter);
}
.text-accient-lightest {
color: var(--accient-lightest);
}
.text-success {
color: var(--success-color);
}
.text-success-light {
color: var(--success-light);
}
.text-success-lighter {
color: var(--success-lighter);
}
.text-success-lightest {
color: var(--success-lightest);
}
.text-warn {
color: var(--warn-color);
}
.text-warn-light {
color: var(--warn-light);
}
.text-warn-lighter {
color: var(--warn-lighter);
}
.text-warn-lightest {
color: var(--warn-lightest);
}
.text-danger {
color: var(--danger-color);
}
.text-danger-light {
color: var(--danger-light);
}
.text-danger-lighter {
color: var(--danger-lighter);
}
.text-danger-lightest {
color: var(--danger-lightest);
}
.text-black {
color: #000000;
}
.text-white {
color: #ffffff;
}
.text-inherit {
color: inherit;
}
/* Border Colors */
.border-dark {
border-color: var(--dark-color);
}
.border-dark-light {
border-color: var(--dark-light);
}
.border-dark-lighter {
border-color: var(--dark-lighter);
}
.border-dark-lightest {
border-color: var(--dark-lightest);
}
.border-light {
border-color: var(--light-color);
}
.border-light-light {
border-color: var(--light-light);
}
.border-light-lighter {
border-color: var(--light-lighter);
}
.border-light-lightest {
border-color: var(--light-lightest);
}
.border-primary {
border-color: var(--primary-color);
}
.border-primary-light {
border-color: var(--primary-light);
}
.border-primary-lighter {
border-color: var(--primary-lighter);
}
.border-primary-lightest {
border-color: var(--primary-lightest);
}
.border-secondary {
border-color: var(--secondary-color);
}
.border-secondary-light {
border-color: var(--secondary-light);
}
.border-secondary-lighter {
border-color: var(--secondary-lighter);
}
.border-secondary-lightest {
border-color: var(--secondary-lightest);
}
.border-accient {
border-color: var(--accient-color);
}
.border-accient-light {
border-color: var(--accient-light);
}
.border-accient-lighter {
border-color: var(--accient-lighter);
}
.border-accient-lightest {
border-color: var(--accient-lightest);
}
.border-success {
border-color: var(--success-color);
}
.border-success-light {
border-color: var(--success-light);
}
.border-success-lighter {
border-color: var(--success-lighter);
}
.border-success-lightest {
border-color: var(--success-lightest);
}
.border-warn {
border-color: var(--warn-color);
}
.border-warn-light {
border-color: var(--warn-light);
}
.border-warn-lighter {
border-color: var(--warn-lighter);
}
.border-warn-lightest {
border-color: var(--warn-lightest);
}
.border-danger {
border-color: var(--danger-color);
}
.border-danger-light {
border-color: var(--danger-light);
}
.border-danger-lighter {
border-color: var(--danger-lighter);
}
.border-danger-lightest {
border-color: var(--danger-lightest);
}
.border-black {
border-color: #000000;
}
.border-white {
border-color: #ffffff;
}
.border-transparent {
border-color: transparent;
}
.border-inherit {
border-color: inherit;
}
/*
Display:
- display
- align
- flexbox
- gridbox (TODO)
*/
/* Display */
.d-block {
display: block;
}
.d-flex {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.d-inline-block {
display: inline-block;
}
.d-inline-flex {
display: inline-flex;
}
.d-grid {
display: grid;
}
.d-inline {
display: inline;
}
.d-contents {
display: contents;
}
.d-hide {
display: none;
}
.hidden {
visibility: hidden;
}
.visible {
visibility: visible;
}
/* Align Items */
.items-center {
align-items: center;
}
.items-start {
align-items: flex-start;
}
.items-end {
align-items: flex-end;
}
.items-baseline {
align-items: baseline;
}
/* Justify Content */
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.justify-around {
justify-content: space-around;
}
/* Flex Utlitites */
.flex-wrap {
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.flex-column {
flex-direction: column;
}
.flex-column-reverse {
flex-direction: column-reverse;
}
.flex-row {
flex-direction: row;
}
.flex-row-reverse {
flex-direction: row-reverse;
}
.flex-center {
justify-content: center;
align-items: center;
}
/* Flex Items */
.flex-grow {
flex-grow: 1;
}
.flex-grow-0 {
flex-grow: 0;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-basis-0 {
flex-basis: 0;
}
/* Flex Gap */
.gap-xxxxs {
gap: var(--space-xxxxs);
}
.gap-xxxs {
gap: var(--space-xxxs);
}
.gap-xxs {
gap: var(--space-xxs);
}
.gap-xs {
gap: var(--space-xs);
}
.gap-sm {
gap: var(--space-sm);
}
.gap-md {
gap: var(--space-md);
}
.gap-lg {
gap: var(--space-lg);
}
.gap-xl {
gap: var(--space-xl);
}
.gap-xxl {
gap: var(--space-xxl);
}
.gap-xxxl {
gap: var(--space-xxxl);
}
.gap-xxxxl {
gap: var(--space-xxxxl);
}
.gap-0 {
gap: 0px;
}
/* TODO: Gridbox Utitlites */
/*
Margin Utilites
*/
.m-xxxxs {
margin: var(--space-xxxxs);
}
.m-xxxs {
margin: var(--space-xxxs);
}
.m-xxs {
margin: var(--space-xxs);
}
.m-xs {
margin: var(--space-xs);
}
.m-sm {
margin: var(--space-sm);
}
.m-md {
margin: var(--space-md);
}
.m-lg {
margin: var(--space-lg);
}
.m-xl {
margin: var(--space-xl);
}
.m-xxl {
margin: var(--space-xxl);
}
.m-xxxl {
margin: var(--space-xxxl);
}
.m-xxxxl {
margin: var(--space-xxxxl);
}
.m-0 {
margin: 0;
}
/* Top */
.mt-xxxxs {
margin-top: var(--space-xxxxs);
}
.mt-xxxs {
margin-top: var(--space-xxxs);
}
.mt-xxs {
margin-top: var(--space-xxs);
}
.mt-xs {
margin-top: var(--space-xs);
}
.mt-sm {
margin-top: var(--space-sm);
}
.mt-md {
margin-top: var(--space-md);
}
.mt-lg {
margin-top: var(--space-lg);
}
.mt-xl {
margin-top: var(--space-xl);
}
.mt-xxl {
margin-top: var(--space-xxl);
}
.mt-xxxl {
margin-top: var(--space-xxxl);
}
.mt-xxxxl {
margin-top: var(--space-xxxxl);
}
.mt-0 {
margin-top: 0;
}
/* bottom */
.mb-xxxxs {
margin-bottom: var(--space-xxxxs);
}
.mb-xxxs {
margin-bottom: var(--space-xxxs);
}
.mb-xxs {
margin-bottom: var(--space-xxs);
}
.mb-xs {
margin-bottom: var(--space-xs);
}
.mb-sm {
margin-bottom: var(--space-sm);
}
.mb-md {
margin-bottom: var(--space-md);
}
.mb-lg {
margin-bottom: var(--space-lg);
}
.mb-xl {
margin-bottom: var(--space-xl);
}
.mb-xxl {
margin-bottom: var(--space-xxl);
}
.mb-xxxl {
margin-bottom: var(--space-xxxl);
}
.mb-xxxxl {
margin-bottom: var(--space-xxxxl);
}
.mb-0 {
margin-bottom: 0;
}
/* left */
.ml-xxxxs {
margin-left: var(--space-xxxxs);
}
.ml-xxxs {
margin-left: var(--space-xxxs);
}
.ml-xxs {
margin-left: var(--space-xxs);
}
.ml-xs {
margin-left: var(--space-xs);
}
.ml-sm {
margin-left: var(--space-sm);
}
.ml-md {
margin-left: var(--space-md);
}
.ml-lg {
margin-bottom: var(--space-lg);
}
.ml-xl {
margin-left: var(--space-xl);
}
.ml-xxl {
margin-left: var(--space-xxl);
}
.ml-xxxl {
margin-left: var(--space-xxxl);
}
.ml-xxxxl {
margin-left: var(--space-xxxxl);
}
.ml-0 {
margin-left: 0;
}
/* right */
.mr-xxxxs {
margin-right: var(--space-xxxxs);
}
.mr-xxxs {
margin-right: var(--space-xxxs);
}
.mr-xxs {
margin-right: var(--space-xxs);
}
.mr-xs {
margin-right: var(--space-xs);
}
.mr-sm {
margin-right: var(--space-sm);
}
.mr-md {
margin-right: var(--space-md);
}
.mr-lg {
margin-right: var(--space-lg);
}
.mr-xl {
margin-right: var(--space-xl);
}
.mr-xxl {
margin-right: var(--space-xxl);
}
.mr-xxxl {
margin-right: var(--space-xxxl);
}
.mr-xxxxl {
margin-right: var(--space-xxxxl);
}
.mr-0 {
margin-right: 0;
}
/* x axis */
.mx-xxxxs {
margin-left: var(--space-xxxxs);
margin-right: var(--space-xxxxs);
}
.mx-xxxs {
margin-left: var(--space-xxxs);
margin-right: var(--space-xxxs);
}
.mx-xxs {
margin-left: var(--space-xxs);
margin-right: var(--space-xxs);
}
.mx-xs {
margin-left: var(--space-xs);
margin-right: var(--space-xs);
}
.mx-sm {
margin-left: var(--space-sm);
margin-right: var(--space-sm);
}
.mx-md {
margin-left: var(--space-md);
margin-right: var(--space-md);
}
.mx-lg {
margin-left: var(--space-lg);
margin-right: var(--space-lg);
}
.mx-xl {
margin-left: var(--space-xl);
margin-right: var(--space-xl);
}
.mx-xxl {
margin-left: var(--space-xxl);
margin-right: var(--space-xxl);
}
.mx-xxxl {
margin-left: var(--space-xxxl);
margin-right: var(--space-xxxl);
}
.mx-xxxxl {
margin-left: var(--space-xxxxl);
margin-right: var(--space-xxxxl);
}
.mx-0 {
margin-left: 0;
margin-right: 0;
}
/* y axis */
.my-xxxxs {
margin-top: var(--space-xxxxs);
margin-bottom: var(--space-xxxxs);
}
.my-xxxs {
margin-top: var(--space-xxxs);
margin-bottom: var(--space-xxxs);
}
.my-xxs {
margin-top: var(--space-xxs);
margin-bottom: var(--space-xxs);
}
.my-xs {
margin-top: var(--space-xs);
margin-bottom: var(--space-xs);
}
.my-sm {
margin-top: var(--space-sm);
margin-bottom: var(--space-sm);
}
.my-md {
margin-top: var(--space-md);
margin-bottom: var(--space-md);
}
.my-lg {
margin-top: var(--space-lg);
margin-bottom: var(--space-lg);
}
.my-xl {
margin-top: var(--space-xl);
margin-bottom: var(--space-xl);
}
.my-xxl {
margin-top: var(--space-xxl);
margin-bottom: var(--space-xxl);
}
.my-xxxl {
margin-top: var(--space-xxxl);
margin-bottom: var(--space-xxxl);
}
.my-xxxxl {
margin-top: var(--space-xxxxl);
margin-bottom: var(--space-xxxxl);
}
.my-0 {
margin-top: 0;
margin-bottom: 0;
}
/*
Padding Utilites
*/
.p-xxxxs {
padding: var(--space-xxxxs);
}
.p-xxxs {
padding: var(--space-xxxs);
}
.p-xxs {
padding: var(--space-xxs);
}
.p-xs {
padding: var(--space-xs);
}
.p-sm {
padding: var(--space-sm);
}
.p-md {
padding: var(--space-md);
}
.p-lg {
padding: var(--space-lg);
}
.p-xl {
padding: var(--space-xl);
}
.p-xxl {
padding: var(--space-xxl);
}
.p-xxxl {
padding: var(--space-xxxl);
}
.p-xxxxl {
padding: var(--space-xxxxl);
}
.p-0 {
padding: 0;
}
/* Top */
.pt-xxxxs {
padding-top: var(--space-xxxxs);
}
.pt-xxxs {
padding-top: var(--space-xxxs);
}
.pt-xxs {
padding-top: var(--space-xxs);
}
.pt-xs {
padding-top: var(--space-xs);
}
.pt-sm {
padding-top: var(--space-sm);
}
.pt-md {
padding-top: var(--space-md);
}
.pt-lg {
padding-top: var(--space-lg);
}
.pt-xl {
padding-top: var(--space-xl);
}
.pt-xxl {
padding-top: var(--space-xxl);
}
.pt-xxxl {
padding-top: var(--space-xxxl);
}
.pt-xxxxl {
padding-top: var(--space-xxxxl);
}
.pt-0 {
padding-top: 0;
}
/* bottom */
.pb-xxxxs {
padding-bottom: var(--space-xxxxs);
}
.pb-xxxs {
padding-bottom: var(--space-xxxs);
}
.pb-xxs {
padding-bottom: var(--space-xxs);
}
.pb-xs {
padding-bottom: var(--space-xs);
}
.pb-sm {
padding-bottom: var(--space-sm);
}
.pb-md {
padding-bottom: var(--space-md);
}
.pb-lg {
padding-bottom: var(--space-lg);
}
.pb-xl {
padding-bottom: var(--space-xl);
}
.pb-xxl {
padding-bottom: var(--space-xxl);
}
.pb-xxxl {
padding-bottom: var(--space-xxxl);
}
.pb-xxxxl {
padding-bottom: var(--space-xxxxl);
}
.pb-0 {
padding-bottom: 0;
}
/* left */
.pl-xxxxs {
padding-left: var(--space-xxxxs);
}
.pl-xxxs {
padding-left: var(--space-xxxs);
}
.pl-xxs {
padding-left: var(--space-xxs);
}
.pl-xs {
padding-left: var(--space-xs);
}
.pl-sm {
padding-left: var(--space-sm);
}
.pl-md {
padding-left: var(--space-md);
}
.pl-lg {
padding-bottom: var(--space-lg);
}
.pl-xl {
padding-left: var(--space-xl);
}
.pl-xxl {
padding-left: var(--space-xxl);
}
.pl-xxxl {
padding-left: var(--space-xxxl);
}
.pl-xxxxl {
padding-left: var(--space-xxxxl);
}
.pl-0 {
padding-left: 0;
}
/* right */
.pr-xxxxs {
padding-right: var(--space-xxxxs);
}
.pr-xxxs {
padding-right: var(--space-xxxs);
}
.pr-xxs {
padding-right: var(--space-xxs);
}
.pr-xs {
padding-right: var(--space-xs);
}
.pr-sm {
padding-right: var(--space-sm);
}
.pr-md {
padding-right: var(--space-md);
}
.pr-lg {
padding-right: var(--space-lg);
}
.pr-xl {
padding-right: var(--space-xl);
}
.pr-xxl {
padding-right: var(--space-xxl);
}
.pr-xxxl {
padding-right: var(--space-xxxl);
}
.pr-xxxxl {
padding-right: var(--space-xxxxl);
}
.pr-0 {
padding-right: 0;
}
/* x axis */
.px-xxxxs {
padding-left: var(--space-xxxxs);
padding-right: var(--space-xxxxs);
}
.px-xxxs {
padding-left: var(--space-xxxs);
padding-right: var(--space-xxxs);
}
.px-xxs {
padding-left: var(--space-xxs);
padding-right: var(--space-xxs);
}
.px-xs {
padding-left: var(--space-xs);
padding-right: var(--space-xs);
}
.px-sm {
padding-left: var(--space-sm);
padding-right: var(--space-sm);
}
.px-md {
padding-left: var(--space-md);
padding-right: var(--space-md);
}
.px-lg {
padding-left: var(--space-lg);
padding-right: var(--space-lg);
}
.px-xl {
padding-left: var(--space-xl);
padding-right: var(--space-xl);
}
.px-xxl {
padding-left: var(--space-xxl);
padding-right: var(--space-xxl);
}
.px-xxxl {
padding-left: var(--space-xxxl);
padding-right: var(--space-xxxl);
}
.px-xxxxl {
padding-left: var(--space-xxxxl);
padding-right: var(--space-xxxxl);
}
.px-0 {
padding-left: 0;
padding-right: 0;
}
/* y axis */
.py-xxxxs {
padding-top: var(--space-xxxxs);
padding-bottom: var(--space-xxxxs);
}
.py-xxxs {
padding-top: var(--space-xxxs);
padding-bottom: var(--space-xxxs);
}
.py-xxs {
padding-top: var(--space-xxs);
padding-bottom: var(--space-xxs);
}
.py-xs {
padding-top: var(--space-xs);
padding-bottom: var(--space-xs);
}
.py-sm {
padding-top: var(--space-sm);
padding-bottom: var(--space-sm);
}
.py-md {
padding-top: var(--space-md);
padding-bottom: var(--space-md);
}
.py-lg {
padding-top: var(--space-lg);
padding-bottom: var(--space-lg);
}
.py-xl {
padding-top: var(--space-xl);
padding-bottom: var(--space-xl);
}
.py-xxl {
padding-top: var(--space-xxl);
padding-bottom: var(--space-xxl);
}
.py-xxxl {
padding-top: var(--space-xxxl);
padding-bottom: var(--space-xxxl);
}
.py-xxxxl {
padding-top: var(--space-xxxxl);
padding-bottom: var(--space-xxxxl);
}
.py-0 {
padding-top: 0;
padding-bottom: 0;
}
/*
Text Utilitites:
- headings
- Size
- style
- align
- line height
- letter spacing
*/
h1,
h2,
h3,
h4,
.heading,
.title,
.h1,
.h2,
.h3,
.h4 {
/* color: TODO: */
line-height: var(--heading-line-height, 1.2);
font-weight: var(--heading-font-weight, 700);
}
h1,
.h1 {
font-size: var(--text-xxl, 2rem);
}
h2,
.h1 {
font-size: var(--text-xl, 1.75rem);
}
h3,
.h1 {
font-size: var(--text-lg, 1.375rem);
}
h4,
.h1 {
font-size: var(--text-md, 1.125rem);
}
small,
.small {
font-size: var(--text-sm, 0.75rem);
}
p {
margin: var(--space-xs) auto;
}
/* Text Size */
.text-xs {
font-size: var(--text-xs);
}
.text-sm {
font-size: var(--text-sm);
}
.text-base {
font-size: var(--text-unit, 1em);
}
.text-md {
font-size: var(--text-md);
}
.text-lg {
font-size: var(--text-lg);
}
.text-xl {
font-size: var(--text-xl);
}
.text-xxl {
font-size: var(--text-xxl);
}
.text-xxxl {
font-size: var(--text-xxxl);
}
.text-xxxxl {
font-size: var(--text-xxxxl);
}
/* Text Styles */
.text-italic {
font-style: italic;
}
.text-light {
font-weight: 300;
}
.text-normal {
font-weight: 400;
}
.text-medium {
font-weight: 500;
}
.text-semibold {
font-weight: 600;
}
.text-bold {
font-weight: 700;
}
.text-line-through {
text-decoration: line-through;
}
.text-underline {
text-decoration: underline;
}
.text-decoration-none {
text-decoration: none;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-lowercase {
text-transform: lowercase;
}
.text-truncatre {
overflow: hidden;
text-decoration: ellipse;
white-space: nowrap;
}
.text-nowrap {
white-space: nowrap;
}
.cursor-pointer{
cursor: pointer;
}
/* Text Align */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
/* Line Height */
.line-height-normal {
line-height: normal;
}
.line-height-xs {
line-height: 1.1;
}
.line-height-sm {
line-height: 1.2;
}
.line-height-md {
line-height: 1.4;
}
.line-height-lg {
line-height: 1.58;
}
.line-height-xl {
line-height: 1.72;
}
/* Letter Spacing */
.letter-spacing-normal {
letter-spacing: normal;
}
.letter-spacing-xs {
letter-spacing: -0.1em;
}
.letter-spacing-sm {
letter-spacing: -0.05em;
}
.letter-spacing-md {
letter-spacing: 0.05em;
}
.letter-spacing-lg {
letter-spacing: 0.1em;
}
.letter-spacing-xl {
letter-spacing: 2em;
} | dist/cloudui.css | @import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Rubik", sans-serif;
}
a {
text-decoration: none;
background: transparent;
color: inherit;
outline: none;
}
img,
video,
iframe {
max-inline-size: 100%;
block-size: auto;
object-fit: cover;
object-position: center;
}
/* Cloud UI Variables */
/*
Content:
- Base Colors
- Shades
- Shadows
- transition
- Spacings
- Borders
- Typography
*/
/*
Proposed breakpoints:
xs: 32rem, // ~512px
sm: 48rem, // ~768px
md: 64rem, // ~1024px
lg: 80rem, // ~1280px
xl: 90rem // ~1440px
*/
/* Base Colors */
:root {
--primary-color: #53c6d9;
--secondary-color: #ae98e7;
--accient-color: #fc608c;
--success-color: #7ad88f;
--danger-color: #e15554;
--warn-color: #e4cf66;
--dark-color: #0a0f15;
--light-color: #f7f0fe;
}
/* Color Shades */
:root {
--primary-light: #87d7e4;
--primary-lighter: #bae8f0;
--primary-lightest: #d4f1f6;
--secondary-light: #c6b7ee;
--secondary-lighter: #dfd6f5;
--secondary-lightest: #ebe5f9;
--accient-light: #fd90af;
--accient-lighter: #febfd1;
--accient-lightest: #fed7e2;
--success-light: #a2e4b1;
--success-lighter: #caefd2;
--success-lightest: #def5e3;
--danger-light: #ea8887;
--danger-lighter: #f3bbbb;
--danger-lightest: #f8d5d4;
--warn-light: #ecdd94;
--warn-lighter: #f4ecc2;
--warn-lightest: #f8f3d9;
--dark-light: #54575b;
--dark-lighter: #9d9fa1;
--dark-lightest: #c2c3c5;
--light-light: #fcf9ff;
--light-lighter: #fdfbff;
--light-lightest: #fefeff;
}
/* shadows */
:root {
--box-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
--box-shadow-sm: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
--box-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.19),
0 6px 6px rgba(0, 0, 0, 0.23);
--box-shadow-lg: 0 14px 28px rgba(0, 0, 0, 0.25),
0 10px 10px rgba(0, 0, 0, 0.22);
--box-shadow-xl: 0 19px 38px rgba(0, 0, 0, 0.3),
0 15px 12px rgba(0, 0, 0, 0.22);
--box-shadow-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Transition Timing Functions */
:root {
--ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
--ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
--ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
--ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Spacing */
:root {
--space-unit: 1rem;
}
:root,
* {
--space-xxxxs: calc(0.125 * var(--space-unit));
--space-xxxs: calc(0.25 * var(--space-unit));
--space-xxs: calc(0.375 * var(--space-unit));
--space-xs: calc(0.5 * var(--space-unit));
--space-sm: calc(0.75 * var(--space-unit));
--space-md: calc(1.25 * var(--space-unit));
--space-lg: calc(2 * var(--space-unit));
--space-xl: calc(3.25 * var(--space-unit));
--space-xxl: calc(5.25 * var(--space-unit));
--space-xxxl: calc(8.5 * var(--space-unit));
--space-xxxxl: calc(13.75 * var(--space-unit));
--component-padding: var(--space-md);
}
@media screen and (min-width: 48rem) {
:root {
--space-unit: 1.5625rem;
}
}
/* Borders radius */
:root {
--radius: 0.25em;
--radius-sm: calc(var(--radius) / 2);
--radius-md: var(--radius);
--radius-lg: calc(var(--radius) * 2);
}
/* Typography */
:root {
--font-primary: "Rubik", sans-serif;
--font-secondary: Georgia, serif;
}
:root {
--text-base-size: 1rem;
--text-scale-ratio: 1.2;
--text-unit: var(--text-base-size);
}
:root {
--heading-line-height: 1.2;
--heading-font-weight: 700;
--body-line-height: 1.4;
}
@media screen and (min-width: 48rem) {
:root {
--text-base-size: 1.25rem;
--text-scale-ratio: 1.25;
}
}
:root,
* {
--text-xs: calc(
(var(--text-unit) / var(--text-scale-ratio)) / var(--text-scale-ratio)
);
--text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
--text-md: calc(
var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio)
);
--text-lg: calc(var(--text-md) * var(--text-scale-ratio));
--text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
--text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
--text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
--text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
}
/*
Alerts
*/
.alert {
display: flex;
align-items: center;
gap: 1rem;
width: fit-content;
height: auto;
padding: var(--space-xs);
margin: var(--space-xs);
border-radius: var(--radius-md);
color: var(--primary-color);
background-color: var(--primary-lightest);
border: 3px solid;
}
.alert > .alert-icon {
order: 1;
}
.alert > .alert-close {
order: 3;
cursor: pointer;
}
.alert > .alert-close:hover,
.alert > .alert-close:focus {
opacity: 0.8;
}
/* Colors */
.alert-info,
.alert-primary {
background-color: var(--primary-lightest);
color: var(--primary-color);
}
.alert-secondary {
background-color: var(--secondary-lightest);
color: var(--secondary-color);
}
.alert-accient {
background-color: var(--accient-lightest);
color: var(--accient-color);
}
.alert-success {
background-color: var(--success-lightest);
color: var(--success-color);
}
.alert-warn {
background-color: var(--warn-lightest);
color: var(--warn-color);
}
.alert-danger {
background-color: var(--danger-lightest);
color: var(--danger-color);
}
.alert-dark {
background-color: var(--dark-lightest);
color: var(--dark-color);
}
.alert-light {
background-color: var(--light-lightest);
color: var(--light-color);
}
/*
Avatar
*/
.avatar {
/* Positioning */
display: inline-flex;
position: relative;
justify-content: center;
align-items: center;
/* Color */
background-color: var(--dark-lighter); /* Default Color */
color: inherit;
box-shadow: var(--box-shadow-xm);
transition: all 250ms var(--ease-in-out);
/* Spacing */
width: var(--space-xl);
height: var(--space-xl);
font-size: var(--text-xl);
}
.avatar:hover {
cursor: pointer;
opacity: 0.9;
}
.avatar > img,
.avatar-image {
position: absolute;
min-width: 100%;
border-radius: inherit;
aspect-ratio: 1/1;
}
.avatar-rounded {
border-radius: var(--radius-md);
}
.avatar-circle {
border-radius: 50%;
}
/* Sizes */
.avatar-sm {
width: var(--space-lg);
height: var(--space-lg);
font-size: var(--text-lg);
}
.avatar-md {
width: var(--space-xl);
height: var(--space-xl);
font-size: var(--text-xl);
}
.avatar-lg {
width: var(--space-xxl);
height: var(--space-xxl);
font-size: var(--text-xxl);
font-size: var(--text-xxl);
}
.avatar-xl {
width: var(--space-xxxl);
height: var(--space-xxxl);
font-size: var(--text-xxxl);
font-size: var(--text-xxxl);
}
/*
Badge
*/
.badge {
display: inline-flex;
border-radius: var(--radius-sm);
background-color: var(--primary-color);
color: var(--light-color);
padding: var(--space-xxxs);
}
.icon-badge {
display: inline-block;
position: relative;
padding: 0.5rem;
}
.icon-badge > .badge {
padding: 0;
position: absolute;
top: 0;
right: 0;
font-size: 1rem;
}
.avatar > .badge {
aspect-ratio: 1/1;
position: absolute;
width: 0.4em;
border-radius: 50%;
bottom: 0;
right: 0;
}
/* Colors */
.badge-danger {
background-color: var(--danger-color);
}
.badge-success {
background-color: var(--success-color);
}
.badge-warn {
background-color: var(--warn-color);
}
/*
Buttons
*/
.btn {
display: inline-flex;
justify-content: center;
align-items: center;
gap: var(--space-sm); /* In case of Icon button*/
text-decoration: none;
background-color: transparent;
border: none;
cursor: pointer;
font-size: inherit;
text-transform: uppercase;
/* Design */
background-color: var(--primary-color); /* Default color set to primary */
color: inherit;
overflow: hidden;
outline: none;
font-family: inherit;
box-shadow: var(--box-shadow-xm);
transition: all 250ms var(--ease-in-out);
/* Sizing and Spacing */
padding: var(--space-xs) var(--space-md);
font-size: var(--text-md);
}
.btn:hover,
.btn:focus {
background-color: var(--primary-light);
box-shadow: var(--box-shadow-sm);
}
.btn-outlined {
background-color: transparent !important;
border: 3px solid;
border-color: var(--primary-color);
color: var(--primary-color);
}
.btn-outlined:hover,
.btn-outlined:focus {
color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-rounded {
border-radius: var(--radius-md);
}
.btn-action {
padding: var(--space-md) !important;
aspect-ratio: 1/1;
border-radius: 50%;
}
/* Colors */
.btn-primary {
background-color: var(--primary-color);
}
.btn-secondary {
background-color: var(--secondary-color);
}
.btn-accient {
background-color: var(--accient-color);
}
.btn-danger {
background-color: var(--danger-color);
}
.btn-success {
background-color: var(--success-color);
}
.btn-warn {
background-color: var(--warn-color);
}
.btn-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.btn-light {
background-color: var(--light-color);
color: var(--dark-color);
}
.btn-disabled {
cursor: not-allowed;
box-shadow: none;
background-color: var(--dark-lightest);
}
/* Color Hover */
.btn-primary:hover,
.btn-primary:focus {
background-color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-secondary:hover,
.btn-secondary:focus {
background-color: var(--secondary-light);
border-color: var(--secondary-light);
}
.btn-accient:hover,
.btn-accient:focus {
background-color: var(--accient-light);
border-color: var(--accient-light);
}
.btn-danger:hover,
.btn-danger:focus {
background-color: var(--danger-light);
border-color: var(--danger-light);
}
.btn-success:hover,
.btn-success:focus {
background-color: var(--success-light);
border-color: var(--success-light);
}
.btn-warn:hover,
.btn-warn:focus {
background-color: var(--warn-light);
border-color: var(--warn-light);
}
.btn-dark:hover,
.btn-dark:focus {
background-color: var(--dark-light);
border-color: var(--dark-light);
}
.btn-light:hover,
.btn-light:focus {
background-color: var(--light-light);
border-color: var(--light-light);
}
.btn-disabled:hover,
.btn-disabled:focus {
box-shadow: none;
background-color: var(--dark-lightest);
border-color: var(--dark-lightest);
}
/* Outlined Colors*/
.btn-outlined.btn-primary {
color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-outlined.btn-secondary {
color: var(--secondary-color);
border-color: var(--secondary-color);
}
.btn-outlined.btn-accient {
color: var(--accient-color);
border-color: var(--accient-color);
}
.btn-outlined.btn-success {
color: var(--success-color);
border-color: var(--success-color);
}
.btn-outlined.btn-warn {
color: var(--warn-color);
border-color: var(--warn-color);
}
.btn-outlined.btn-danger {
color: var(--danger-color);
border-color: var(--danger-color);
}
.btn-outlined.btn-dark {
color: var(--dark-color);
border-color: var(--dark-color);
}
.btn-outlined.btn-light {
color: var(--light-color);
border-color: var(--light-color);
}
.btn-outlined.btn-disabled {
color: var(--dark-lighter);
border-color: var(--dark-lighter);
}
/* Outlined Hover */
.btn-outlined.btn-primary:hover,
.btn-outlined.btn-primary:focus {
color: var(--primary-light);
border-color: var(--primary-light);
}
.btn-outlined.btn-secondary:hover,
.btn-outlined.btn-secondary:focus {
color: var(--secondary-light);
border-color: var(--secondary-light);
}
.btn-outlined.btn-accient:hover,
.btn-outlined.btn-accient:focus {
color: var(--accient-light);
border-color: var(--accient-light);
}
.btn-outlined.btn-success:hover,
.btn-outlined.btn-success:focus {
color: var(--success-light);
border-color: var(--success-light);
}
.btn-outlined.btn-warn:hover,
.btn-outlined.btn-warn:focus {
color: var(--warn-light);
border-color: var(--warn-light);
}
.btn-outlined.btn-danger:hover,
.btn-outlined.btn-danger:focus {
color: var(--danger-light);
border-color: var(--danger-light);
}
.btn-outlined.btn-dark:hover,
.btn-outlined.btn-dark:focus {
color: var(--dark-light);
border-color: var(--dark-light);
}
.btn-outlined.btn-light:hover,
.btn-outlined.btn-light:focus {
color: var(--light-light);
border-color: var(--light-light);
}
.btn-outlined.btn-disabled {
color: var(--dark-light);
border-color: var(--dark-light);
}
/* Sizes AND Spacing */
.btn-xs {
padding: var(--space-xxs) var(--space-xs);
font-size: var(--text-xs);
}
.btn-sm {
padding: var(--space-xs) var(--space-sm);
font-size: var(--text-sm);
}
.btn-md {
padding: var(--space-xs) var(--space-md);
font-size: var(--text-md);
}
.btn-lg {
padding: var(--space-sm) var(--space-lg);
font-size: var(--text-lg);
}
.btn-xl {
padding: var(--space-sm) var(--space-xl);
font-size: var(--text-xl);
}
.btn-xxl {
padding: var(--space-sm) var(--space-xl);
font-size: var(--text-xxl);
}
/* Links */
.link {
font-family: inherit;
font-size: inherit;
color: var(--primary-color);
}
.link:hover {
text-decoration: underline;
}
/*
Card Component
*/
/*
Variations:
- card-badge
- card-close DONE
- card-overlay DONE
- text only car DONE
- card with image DONE
- card with shadow DONE
*/
.card {
display: inline-flex;
position: relative;
flex-direction: column;
border: 1px solid var(--dark-lighter);
border-radius: var(--radius-lg);
max-width: var(--space-xxxxl);
overflow: hidden;
}
.card-square {
aspect-ratio: 1/1;
}
.card-image {
aspect-ratio: 1/1;
width: 100%;
order: 1;
}
.card-header {
order: 0;
border-bottom: 1px solid var(--dark-lighter);
padding: var(--space-xs);
}
.card-footer {
order: 3;
border-top: 1px solid var(--dark-lighter);
padding: var(--space-xs);
}
.card-main {
order: 2;
padding: var(--space-xs);
overflow: hidden;
}
.card-title {
display: block;
margin-top: var(--space-xs);
font-size: var(--text-md);
color: var(--dark-color);
}
.card-text {
display: block;
font-size: var(--text-sm);
color: var(--dark-light);
overflow: hidden;
}
/* horizontal */
.card-horizontal {
max-width: 32rem;
max-height: var(--space-xxxl);
display: inline-flex;
flex-direction: row;
}
.card-horizontal .card-image {
align-self: center;
height: 100%;
}
.card-close {
color: var(--dark-lighter);
position: absolute;
top: 1%;
z-index: 3;
right: 1%;
font-size: var(--text-xs);
}
.card-close:hover {
cursor: pointer;
color: var(--dark-light);
}
.card-overlay {
position: absolute;
z-index: 1;
inset: 0;
padding: var(--component-padding);
background-color: var(--dark-color);
color: var(--light-color);
transition: all 250ms var(--ease-in-out);
opacity: 0;
}
.card-overlay:hover {
opacity: 0.75;
}
.card-shadow {
box-shadow: var(--box-shadow-md);
}
.card-badge {
position: absolute;
display: inline-block;
top: var(--space-xs);
left: var(--space-xs);
}
/* Grid layout */
.grid {
display: grid;
text-align: center;
color: var(--black-light);
background-color: var(--light-color);
}
.grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
grid-template-columns: repeat(6, 1fr);
}
.grid-7 {
grid-template-columns: repeat(7, 1fr);
}
.grid-8 {
grid-template-columns: repeat(8, 1fr);
}
.grid-9 {
grid-template-columns: repeat(9, 1fr);
}
.grid-10 {
grid-template-columns: repeat(10, 1fr);
}
.grid-11 {
grid-template-columns: repeat(11, 1fr);
}
.grid-12 {
grid-template-columns: repeat(12, 1fr);
}
.grid-responsive {
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
/*
Image
*/
/*
Content:
- Fluid Image (Responsive)
- Square Image
- rounded (Rounded corners)
- circle
*/
.image-fluid {
max-width: 100%;
height: auto;
}
.image-square {
--size: var(--space-xxxxl);
height: var(--size);
width: auto;
aspect-ratio: 1/1;
}
.image-rounded {
max-width: 100%;
border-radius: var(--radius-md);
}
.image-circle {
--size: var(--space-xxxxl);
width: var(--size);
height: auto;
aspect-ratio: 1/1;
border-radius: 50%;
}
/*
Input
*/
.input-field {
background-color: transparent;
outline: none;
padding: var(--space-xxs);
color: var(--dark-light);
border: 2px solid var(--dark-lighter);
border-radius: var(--radius-lg);
transition: all 75ms var(--ease-in-out);
}
.input-field-float {
width: 100%;
}
.input-field:focus {
border-color: var(--dark-light);
box-shadow: var(--box-shadow-sm);
}
.input-field.input-field-danger {
border-color: var(--danger-color);
}
.input-field.input-field-success {
border-color: var(--success-color);
}
.input-field.input-field-warn {
border-color: var(--warn-color);
}
.input-field.input-field-disabled {
border-color: var(--dark-lightest);
cursor: not-allowed;
}
/*
List
*/
/*
Content:
Stacked
Horizontal
Active
*/
.list {
display: inline-flex;
flex-direction: column;
border: 1px solid var(--dark-lightest);
border-radius: var(--radius-md);
list-style: none;
padding: 0;
margin: 0;
overflow: hidden;
}
.list-title {
margin-top: 0.5rem;
font-weight: 500;
padding: 0.5rem;
border-bottom: 1px solid var(--dark-lightest);
}
.list-item {
padding: 0.5rem;
padding-left: 1rem;
text-decoration: none;
list-style: none;
width: 100%;
}
.list-item:hover,
.list-item:focus {
background-color: var(--primary-lightest);
}
.list-item-active {
background-color: var(--primary-lighter);
}
.list-item-disabled {
color: var(--dark-lightest);
cursor: default;
}
.list-item-disabled:hover,
.list-item-disabled:focus {
background-color: transparent;
}
/* Horizontal */
.list-horizontal {
flex-direction: row;
align-items: center;
white-space: nowrap;
}
.list-horizontal > .list-title {
border-bottom: 0;
border-right: 1px solid var(--dark-color);
}
/*
Modal
*/
.modal {
position: fixed;
display: inline-flex;
flex-direction: column;
max-width: 95%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: var(--space-xxl);
min-height: var(--space-xl);
border: 1px solid var(--dark-lightest);
border-radius: var(--radius-md);
box-shadow: var(--box-shadow-sm);
background-color: var(--light-light);
}
.modal-header {
order: 0;
border-bottom: 1px solid var(--dark-lightest);
padding: var(--space-xxs);
}
.modal-main {
order: 1;
flex-grow: 1;
padding: var(--space-xxs);
}
.modal-footer {
order: 2;
border-top: 1px solid var(--dark-lightest);
padding: var(--space-xxs);
}
.modal .modal-close {
position: absolute;
cursor: pointer;
top: 1%;
right: 1%;
}
.modal .modal-close:hover {
opacity: 80%;
}
/*
Navbar
*/
.navbar {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
height: 3.5rem;
gap: 2rem;
padding: 0 var(--space-sm);
background-color: var(--dark-lightest);
border-bottom: 1px solid var(--dark-lightest);
box-shadow: var(--box-shadow-sm);
/* transition: all 275ms var(--ease-in-out); */
}
.navbar-sticky {
position: sticky;
top: 0;
left: 0;
right: 0;
}
.navbar-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.navbar-list {
display: flex;
align-items: center;
justify-content: end;
gap: 1rem;
list-style: none;
}
.navbar-item {
cursor: pointer;
}
.navbar-hamburger {
display: none;
position: absolute;
left: var(--space-sm);
}
/* Media queries */
@media screen and (max-width: 48rem) {
.navbar-hamburger {
display: inline-block;
}
.navbar-list {
display: none;
}
.navbar {
justify-content: center;
}
}
/*
Slider
*/
::-webkit-scrollbar {
background: transparent;
width: 0.5rem;
}
/* webkit scrollbar thumb is the part of the scrollbar which we hold to scroll */
::-webkit-scrollbar-thumb {
background: #606060;
border-radius: var(--radius-md);
}
::-webkit-scrollbar-thumb:hover {
background: #606060c0;
}
/* Star-raiting */
.far.fa-star {
color: var(--dark-lighter);
}
.fas.fa-star {
color: var(--warn-color);
}
/*
Toasts/Snackbar
*/
.toast {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
position: fixed;
padding: var(--space-sm);
margin: auto;
width: var(--space-xxxxl);
height: auto;
/* Design */
border-radius: var(--radius-md);
background-color: var(--primary-color);
color: var(--light-color);
box-shadow: var(--box-shadow-xm);
}
.toast > .toast-icon {
order: 1;
}
.toast > .toast-close {
position: absolute;
right: var(--space-xxs);
top: var(--space-xxxs);
cursor: pointer;
}
.toast > .toast-close:hover,
.toast > .toast-close:focus {
opacity: 0.8;
}
/* Positions */
.toast-right-top {
right: var(--space-sm);
top: var(--space-sm);
}
.toast-right-bottom {
right: 2%;
bottom: 2%;
}
.toast-left-top {
left: 1%;
top: 1%;
}
.toast-left-bottom {
left: 1%;
bottom: 1%;
}
.toast-center-top {
top: 1%;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}
.toast-center-bottom {
bottom: 1%;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
}
/* Colors */
.toast-info,
.toast-primary {
background-color: var(--primary-color);
color: var(--light-color);
}
.toast-secondary {
background-color: var(--secondary-color);
color: var(--light-color);
}
.toast-accient {
background-color: var(--accient-color);
color: var(--light-color);
}
.toast-danger {
background-color: var(--danger-color);
color: var(--light-color);
}
.toast-warn {
background-color: var(--warn-color);
color: var(--light-color);
}
.toast-success {
background-color: var(--success-color);
color: var(--light-color);
}
.toast-dark {
background-color: var(--dark-color);
color: var(--light-color);
}
.toast-light {
background-color: var(--light-color);
color: var(--dark-color);
}
/*
Boarder:
- type
- width
- style
- radius
*/
.border {
border: 1px solid var(--dark-lighter);
}
.border-top {
border-top: 1px solid var(--dark-lighter);
}
.border-bottom {
border-bottom: 1px solid var(--dark-lighter);
}
.border-left {
border-left: 1px solid var(--dark-lighter);
}
.border-right {
border-right: 1px solid var(--dark-lighter);
}
/* width */
.border-2 {
border-width: 2px;
}
.border-3 {
border-width: 3px;
}
.border-4 {
border-width: 4px;
}
.border-5 {
border-width: 5px;
}
/* Style */
.border-dotted {
border-style: dotted;
}
.border-dasher {
border-style: dashed;
}
/* Radius */
.radius-sm {
border-radius: var(--radius-sm);
}
.radius-md {
border-radius: var(--radius-md);
}
.radius-lg {
border-radius: var(--radius-lg);
}
.radius-50 {
border-radius: 50%;
}
.radius-full {
border-radius: 50em;
}
.radius-inherit {
border-radius: inherit;
}
.radius-0 {
border-radius: 0;
}
.radius-top-left-0 {
border-top-left-radius: 0;
}
.radius-top-right-0 {
border-top-right-radius: 0;
}
.radius-bottom-right-0 {
border-bottom-right-radius: 0;
}
.radius-bottom-left-0 {
border-bottom-left-radius: 0;
}
/*
Colors:
- Background Colors
- Text Colors
- Border Colors
*/
/* Background Colors */
.bg-dark {
background-color: var(--dark-color);
}
.bg-dark-light {
background-color: var(--dark-light);
}
.bg-dark-lighter {
background-color: var(--dark-lighter);
}
.bg-dark-lightest {
background-color: var(--dark-lightest);
}
.bg-light {
background-color: var(--light-color);
}
.bg-light-light {
background-color: var(--light-light);
}
.bg-light-lighter {
background-color: var(--light-lighter);
}
.bg-light-lightest {
background-color: var(--light-lightest);
}
.bg-primary {
background-color: var(--primary-color);
}
.bg-primary-light {
background-color: var(--primary-light);
}
.bg-primary-lighter {
background-color: var(--primary-lighter);
}
.bg-primary-lightest {
background-color: var(--primary-lightest);
}
.bg-secondary {
background-color: var(--secondary-color);
}
.bg-secondary-light {
background-color: var(--secondary-light);
}
.bg-secondary-lighter {
background-color: var(--secondary-lighter);
}
.bg-secondary-lightest {
background-color: var(--secondary-lightest);
}
.bg-accient {
background-color: var(--accient-color);
}
.bg-accient-light {
background-color: var(--accient-light);
}
.bg-accient-lighter {
background-color: var(--accient-lighter);
}
.bg-accient-lightest {
background-color: var(--accient-lightest);
}
.bg-success {
background-color: var(--success-color);
}
.bg-success-light {
background-color: var(--success-light);
}
.bg-success-lighter {
background-color: var(--success-lighter);
}
.bg-success-lightest {
background-color: var(--success-lightest);
}
.bg-warn {
background-color: var(--warn-color);
}
.bg-warn-light {
background-color: var(--warn-light);
}
.bg-warn-lighter {
background-color: var(--warn-lighter);
}
.bg-warn-lightest {
background-color: var(--warn-lightest);
}
.bg-danger {
background-color: var(--danger-color);
}
.bg-danger-light {
background-color: var(--danger-light);
}
.bg-danger-lighter {
background-color: var(--danger-lighter);
}
.bg-danger-lightest {
background-color: var(--danger-lightest);
}
.bg-black {
background-color: #000000;
}
.bg-white {
background-color: #ffffff;
}
.bg-transparent {
background-color: transparent;
}
.bg-inherit {
background-color: inherit;
}
/* Text Colors */
.text-dark {
color: var(--dark-color);
}
.text-dark-light {
color: var(--dark-light);
}
.text-dark-lighter {
color: var(--dark-lighter);
}
.text-dark-lightest {
color: var(--dark-lightest);
}
.text-light {
color: var(--light-color);
}
.text-light-light {
color: var(--light-light);
}
.text-light-lighter {
color: var(--light-lighter);
}
.text-light-lightest {
color: var(--light-lightest);
}
.text-primary {
color: var(--primary-color);
}
.text-primary-light {
color: var(--primary-light);
}
.text-primary-lighter {
color: var(--primary-lighter);
}
.text-primary-lightest {
color: var(--primary-lightest);
}
.text-secondary {
color: var(--secondary-color);
}
.text-secondary-light {
color: var(--secondary-light);
}
.text-secondary-lighter {
color: var(--secondary-lighter);
}
.text-secondary-lightest {
color: var(--secondary-lightest);
}
.text-accient {
color: var(--accient-color);
}
.text-accient-light {
color: var(--accient-light);
}
.text-accient-lighter {
color: var(--accient-lighter);
}
.text-accient-lightest {
color: var(--accient-lightest);
}
.text-success {
color: var(--success-color);
}
.text-success-light {
color: var(--success-light);
}
.text-success-lighter {
color: var(--success-lighter);
}
.text-success-lightest {
color: var(--success-lightest);
}
.text-warn {
color: var(--warn-color);
}
.text-warn-light {
color: var(--warn-light);
}
.text-warn-lighter {
color: var(--warn-lighter);
}
.text-warn-lightest {
color: var(--warn-lightest);
}
.text-danger {
color: var(--danger-color);
}
.text-danger-light {
color: var(--danger-light);
}
.text-danger-lighter {
color: var(--danger-lighter);
}
.text-danger-lightest {
color: var(--danger-lightest);
}
.text-black {
color: #000000;
}
.text-white {
color: #ffffff;
}
.text-inherit {
color: inherit;
}
/* Border Colors */
.border-dark {
border-color: var(--dark-color);
}
.border-dark-light {
border-color: var(--dark-light);
}
.border-dark-lighter {
border-color: var(--dark-lighter);
}
.border-dark-lightest {
border-color: var(--dark-lightest);
}
.border-light {
border-color: var(--light-color);
}
.border-light-light {
border-color: var(--light-light);
}
.border-light-lighter {
border-color: var(--light-lighter);
}
.border-light-lightest {
border-color: var(--light-lightest);
}
.border-primary {
border-color: var(--primary-color);
}
.border-primary-light {
border-color: var(--primary-light);
}
.border-primary-lighter {
border-color: var(--primary-lighter);
}
.border-primary-lightest {
border-color: var(--primary-lightest);
}
.border-secondary {
border-color: var(--secondary-color);
}
.border-secondary-light {
border-color: var(--secondary-light);
}
.border-secondary-lighter {
border-color: var(--secondary-lighter);
}
.border-secondary-lightest {
border-color: var(--secondary-lightest);
}
.border-accient {
border-color: var(--accient-color);
}
.border-accient-light {
border-color: var(--accient-light);
}
.border-accient-lighter {
border-color: var(--accient-lighter);
}
.border-accient-lightest {
border-color: var(--accient-lightest);
}
.border-success {
border-color: var(--success-color);
}
.border-success-light {
border-color: var(--success-light);
}
.border-success-lighter {
border-color: var(--success-lighter);
}
.border-success-lightest {
border-color: var(--success-lightest);
}
.border-warn {
border-color: var(--warn-color);
}
.border-warn-light {
border-color: var(--warn-light);
}
.border-warn-lighter {
border-color: var(--warn-lighter);
}
.border-warn-lightest {
border-color: var(--warn-lightest);
}
.border-danger {
border-color: var(--danger-color);
}
.border-danger-light {
border-color: var(--danger-light);
}
.border-danger-lighter {
border-color: var(--danger-lighter);
}
.border-danger-lightest {
border-color: var(--danger-lightest);
}
.border-black {
border-color: #000000;
}
.border-white {
border-color: #ffffff;
}
.border-transparent {
border-color: transparent;
}
.border-inherit {
border-color: inherit;
}
/*
Display:
- display
- align
- flexbox
- gridbox (TODO)
*/
/* Display */
.d-block {
display: block;
}
.d-flex {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.d-inline-block {
display: inline-block;
}
.d-inline-flex {
display: inline-flex;
}
.d-grid {
display: grid;
}
.d-inline {
display: inline;
}
.d-contents {
display: contents;
}
.d-hide {
display: none;
}
.hidden {
visibility: hidden;
}
.visible {
visibility: visible;
}
/* Align Items */
.items-center {
align-items: center;
}
.items-start {
align-items: flex-start;
}
.items-end {
align-items: flex-end;
}
.items-baseline {
align-items: baseline;
}
/* Justify Content */
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.justify-around {
justify-content: space-around;
}
/* Flex Utlitites */
.flex-wrap {
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.flex-column {
flex-direction: column;
}
.flex-column-reverse {
flex-direction: column-reverse;
}
.flex-row {
flex-direction: row;
}
.flex-row-reverse {
flex-direction: row-reverse;
}
.flex-center {
justify-content: center;
align-items: center;
}
/* Flex Items */
.flex-grow {
flex-grow: 1;
}
.flex-grow-0 {
flex-grow: 0;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-basis-0 {
flex-basis: 0;
}
/* Flex Gap */
.gap-xxxxs {
gap: var(--space-xxxxs);
}
.gap-xxxs {
gap: var(--space-xxxs);
}
.gap-xxs {
gap: var(--space-xxs);
}
.gap-xs {
gap: var(--space-xs);
}
.gap-sm {
gap: var(--space-sm);
}
.gap-md {
gap: var(--space-md);
}
.gap-lg {
gap: var(--space-lg);
}
.gap-xl {
gap: var(--space-xl);
}
.gap-xxl {
gap: var(--space-xxl);
}
.gap-xxxl {
gap: var(--space-xxxl);
}
.gap-xxxxl {
gap: var(--space-xxxxl);
}
.gap-0 {
gap: 0px;
}
/* TODO: Gridbox Utitlites */
/*
Margin Utilites
*/
.m-xxxxs {
margin: var(--space-xxxxs);
}
.m-xxxs {
margin: var(--space-xxxs);
}
.m-xxs {
margin: var(--space-xxs);
}
.m-xs {
margin: var(--space-xs);
}
.m-sm {
margin: var(--space-sm);
}
.m-md {
margin: var(--space-md);
}
.m-lg {
margin: var(--space-lg);
}
.m-xl {
margin: var(--space-xl);
}
.m-xxl {
margin: var(--space-xxl);
}
.m-xxxl {
margin: var(--space-xxxl);
}
.m-xxxxl {
margin: var(--space-xxxxl);
}
.m-0 {
margin: 0;
}
/* Top */
.mt-xxxxs {
margin-top: var(--space-xxxxs);
}
.mt-xxxs {
margin-top: var(--space-xxxs);
}
.mt-xxs {
margin-top: var(--space-xxs);
}
.mt-xs {
margin-top: var(--space-xs);
}
.mt-sm {
margin-top: var(--space-sm);
}
.mt-md {
margin-top: var(--space-md);
}
.mt-lg {
margin-top: var(--space-lg);
}
.mt-xl {
margin-top: var(--space-xl);
}
.mt-xxl {
margin-top: var(--space-xxl);
}
.mt-xxxl {
margin-top: var(--space-xxxl);
}
.mt-xxxxl {
margin-top: var(--space-xxxxl);
}
.mt-0 {
margin-top: 0;
}
/* bottom */
.mb-xxxxs {
margin-bottom: var(--space-xxxxs);
}
.mb-xxxs {
margin-bottom: var(--space-xxxs);
}
.mb-xxs {
margin-bottom: var(--space-xxs);
}
.mb-xs {
margin-bottom: var(--space-xs);
}
.mb-sm {
margin-bottom: var(--space-sm);
}
.mb-md {
margin-bottom: var(--space-md);
}
.mb-lg {
margin-bottom: var(--space-lg);
}
.mb-xl {
margin-bottom: var(--space-xl);
}
.mb-xxl {
margin-bottom: var(--space-xxl);
}
.mb-xxxl {
margin-bottom: var(--space-xxxl);
}
.mb-xxxxl {
margin-bottom: var(--space-xxxxl);
}
.mb-0 {
margin-bottom: 0;
}
/* left */
.ml-xxxxs {
margin-left: var(--space-xxxxs);
}
.ml-xxxs {
margin-left: var(--space-xxxs);
}
.ml-xxs {
margin-left: var(--space-xxs);
}
.ml-xs {
margin-left: var(--space-xs);
}
.ml-sm {
margin-left: var(--space-sm);
}
.ml-md {
margin-left: var(--space-md);
}
.ml-lg {
margin-bottom: var(--space-lg);
}
.ml-xl {
margin-left: var(--space-xl);
}
.ml-xxl {
margin-left: var(--space-xxl);
}
.ml-xxxl {
margin-left: var(--space-xxxl);
}
.ml-xxxxl {
margin-left: var(--space-xxxxl);
}
.ml-0 {
margin-left: 0;
}
/* right */
.mr-xxxxs {
margin-right: var(--space-xxxxs);
}
.mr-xxxs {
margin-right: var(--space-xxxs);
}
.mr-xxs {
margin-right: var(--space-xxs);
}
.mr-xs {
margin-right: var(--space-xs);
}
.mr-sm {
margin-right: var(--space-sm);
}
.mr-md {
margin-right: var(--space-md);
}
.mr-lg {
margin-right: var(--space-lg);
}
.mr-xl {
margin-right: var(--space-xl);
}
.mr-xxl {
margin-right: var(--space-xxl);
}
.mr-xxxl {
margin-right: var(--space-xxxl);
}
.mr-xxxxl {
margin-right: var(--space-xxxxl);
}
.mr-0 {
margin-right: 0;
}
/* x axis */
.mx-xxxxs {
margin-left: var(--space-xxxxs);
margin-right: var(--space-xxxxs);
}
.mx-xxxs {
margin-left: var(--space-xxxs);
margin-right: var(--space-xxxs);
}
.mx-xxs {
margin-left: var(--space-xxs);
margin-right: var(--space-xxs);
}
.mx-xs {
margin-left: var(--space-xs);
margin-right: var(--space-xs);
}
.mx-sm {
margin-left: var(--space-sm);
margin-right: var(--space-sm);
}
.mx-md {
margin-left: var(--space-md);
margin-right: var(--space-md);
}
.mx-lg {
margin-left: var(--space-lg);
margin-right: var(--space-lg);
}
.mx-xl {
margin-left: var(--space-xl);
margin-right: var(--space-xl);
}
.mx-xxl {
margin-left: var(--space-xxl);
margin-right: var(--space-xxl);
}
.mx-xxxl {
margin-left: var(--space-xxxl);
margin-right: var(--space-xxxl);
}
.mx-xxxxl {
margin-left: var(--space-xxxxl);
margin-right: var(--space-xxxxl);
}
.mx-0 {
margin-left: 0;
margin-right: 0;
}
/* y axis */
.my-xxxxs {
margin-top: var(--space-xxxxs);
margin-bottom: var(--space-xxxxs);
}
.my-xxxs {
margin-top: var(--space-xxxs);
margin-bottom: var(--space-xxxs);
}
.my-xxs {
margin-top: var(--space-xxs);
margin-bottom: var(--space-xxs);
}
.my-xs {
margin-top: var(--space-xs);
margin-bottom: var(--space-xs);
}
.my-sm {
margin-top: var(--space-sm);
margin-bottom: var(--space-sm);
}
.my-md {
margin-top: var(--space-md);
margin-bottom: var(--space-md);
}
.my-lg {
margin-top: var(--space-lg);
margin-bottom: var(--space-lg);
}
.my-xl {
margin-top: var(--space-xl);
margin-bottom: var(--space-xl);
}
.my-xxl {
margin-top: var(--space-xxl);
margin-bottom: var(--space-xxl);
}
.my-xxxl {
margin-top: var(--space-xxxl);
margin-bottom: var(--space-xxxl);
}
.my-xxxxl {
margin-top: var(--space-xxxxl);
margin-bottom: var(--space-xxxxl);
}
.my-0 {
margin-top: 0;
margin-bottom: 0;
}
/*
Padding Utilites
*/
.p-xxxxs {
padding: var(--space-xxxxs);
}
.p-xxxs {
padding: var(--space-xxxs);
}
.p-xxs {
padding: var(--space-xxs);
}
.p-xs {
padding: var(--space-xs);
}
.p-sm {
padding: var(--space-sm);
}
.p-md {
padding: var(--space-md);
}
.p-lg {
padding: var(--space-lg);
}
.p-xl {
padding: var(--space-xl);
}
.p-xxl {
padding: var(--space-xxl);
}
.p-xxxl {
padding: var(--space-xxxl);
}
.p-xxxxl {
padding: var(--space-xxxxl);
}
.p-0 {
padding: 0;
}
/* Top */
.pt-xxxxs {
padding-top: var(--space-xxxxs);
}
.pt-xxxs {
padding-top: var(--space-xxxs);
}
.pt-xxs {
padding-top: var(--space-xxs);
}
.pt-xs {
padding-top: var(--space-xs);
}
.pt-sm {
padding-top: var(--space-sm);
}
.pt-md {
padding-top: var(--space-md);
}
.pt-lg {
padding-top: var(--space-lg);
}
.pt-xl {
padding-top: var(--space-xl);
}
.pt-xxl {
padding-top: var(--space-xxl);
}
.pt-xxxl {
padding-top: var(--space-xxxl);
}
.pt-xxxxl {
padding-top: var(--space-xxxxl);
}
.pt-0 {
padding-top: 0;
}
/* bottom */
.pb-xxxxs {
padding-bottom: var(--space-xxxxs);
}
.pb-xxxs {
padding-bottom: var(--space-xxxs);
}
.pb-xxs {
padding-bottom: var(--space-xxs);
}
.pb-xs {
padding-bottom: var(--space-xs);
}
.pb-sm {
padding-bottom: var(--space-sm);
}
.pb-md {
padding-bottom: var(--space-md);
}
.pb-lg {
padding-bottom: var(--space-lg);
}
.pb-xl {
padding-bottom: var(--space-xl);
}
.pb-xxl {
padding-bottom: var(--space-xxl);
}
.pb-xxxl {
padding-bottom: var(--space-xxxl);
}
.pb-xxxxl {
padding-bottom: var(--space-xxxxl);
}
.pb-0 {
padding-bottom: 0;
}
/* left */
.pl-xxxxs {
padding-left: var(--space-xxxxs);
}
.pl-xxxs {
padding-left: var(--space-xxxs);
}
.pl-xxs {
padding-left: var(--space-xxs);
}
.pl-xs {
padding-left: var(--space-xs);
}
.pl-sm {
padding-left: var(--space-sm);
}
.pl-md {
padding-left: var(--space-md);
}
.pl-lg {
padding-bottom: var(--space-lg);
}
.pl-xl {
padding-left: var(--space-xl);
}
.pl-xxl {
padding-left: var(--space-xxl);
}
.pl-xxxl {
padding-left: var(--space-xxxl);
}
.pl-xxxxl {
padding-left: var(--space-xxxxl);
}
.pl-0 {
padding-left: 0;
}
/* right */
.pr-xxxxs {
padding-right: var(--space-xxxxs);
}
.pr-xxxs {
padding-right: var(--space-xxxs);
}
.pr-xxs {
padding-right: var(--space-xxs);
}
.pr-xs {
padding-right: var(--space-xs);
}
.pr-sm {
padding-right: var(--space-sm);
}
.pr-md {
padding-right: var(--space-md);
}
.pr-lg {
padding-right: var(--space-lg);
}
.pr-xl {
padding-right: var(--space-xl);
}
.pr-xxl {
padding-right: var(--space-xxl);
}
.pr-xxxl {
padding-right: var(--space-xxxl);
}
.pr-xxxxl {
padding-right: var(--space-xxxxl);
}
.pr-0 {
padding-right: 0;
}
/* x axis */
.px-xxxxs {
padding-left: var(--space-xxxxs);
padding-right: var(--space-xxxxs);
}
.px-xxxs {
padding-left: var(--space-xxxs);
padding-right: var(--space-xxxs);
}
.px-xxs {
padding-left: var(--space-xxs);
padding-right: var(--space-xxs);
}
.px-xs {
padding-left: var(--space-xs);
padding-right: var(--space-xs);
}
.px-sm {
padding-left: var(--space-sm);
padding-right: var(--space-sm);
}
.px-md {
padding-left: var(--space-md);
padding-right: var(--space-md);
}
.px-lg {
padding-left: var(--space-lg);
padding-right: var(--space-lg);
}
.px-xl {
padding-left: var(--space-xl);
padding-right: var(--space-xl);
}
.px-xxl {
padding-left: var(--space-xxl);
padding-right: var(--space-xxl);
}
.px-xxxl {
padding-left: var(--space-xxxl);
padding-right: var(--space-xxxl);
}
.px-xxxxl {
padding-left: var(--space-xxxxl);
padding-right: var(--space-xxxxl);
}
.px-0 {
padding-left: 0;
padding-right: 0;
}
/* y axis */
.py-xxxxs {
padding-top: var(--space-xxxxs);
padding-bottom: var(--space-xxxxs);
}
.py-xxxs {
padding-top: var(--space-xxxs);
padding-bottom: var(--space-xxxs);
}
.py-xxs {
padding-top: var(--space-xxs);
padding-bottom: var(--space-xxs);
}
.py-xs {
padding-top: var(--space-xs);
padding-bottom: var(--space-xs);
}
.py-sm {
padding-top: var(--space-sm);
padding-bottom: var(--space-sm);
}
.py-md {
padding-top: var(--space-md);
padding-bottom: var(--space-md);
}
.py-lg {
padding-top: var(--space-lg);
padding-bottom: var(--space-lg);
}
.py-xl {
padding-top: var(--space-xl);
padding-bottom: var(--space-xl);
}
.py-xxl {
padding-top: var(--space-xxl);
padding-bottom: var(--space-xxl);
}
.py-xxxl {
padding-top: var(--space-xxxl);
padding-bottom: var(--space-xxxl);
}
.py-xxxxl {
padding-top: var(--space-xxxxl);
padding-bottom: var(--space-xxxxl);
}
.py-0 {
padding-top: 0;
padding-bottom: 0;
}
/*
Text Utilitites:
- headings
- Size
- style
- align
- line height
- letter spacing
*/
h1,
h2,
h3,
h4,
.heading,
.title,
.h1,
.h2,
.h3,
.h4 {
/* color: TODO: */
line-height: var(--heading-line-height, 1.2);
font-weight: var(--heading-font-weight, 700);
}
h1,
.h1 {
font-size: var(--text-xxl, 2rem);
}
h2,
.h1 {
font-size: var(--text-xl, 1.75rem);
}
h3,
.h1 {
font-size: var(--text-lg, 1.375rem);
}
h4,
.h1 {
font-size: var(--text-md, 1.125rem);
}
small,
.small {
font-size: var(--text-sm, 0.75rem);
}
p {
margin: var(--space-xs) auto;
}
/* Text Size */
.text-xs {
font-size: var(--text-xs);
}
.text-sm {
font-size: var(--text-sm);
}
.text-base {
font-size: var(--text-unit, 1em);
}
.text-md {
font-size: var(--text-md);
}
.text-lg {
font-size: var(--text-lg);
}
.text-xl {
font-size: var(--text-xl);
}
.text-xxl {
font-size: var(--text-xxl);
}
.text-xxxl {
font-size: var(--text-xxxl);
}
.text-xxxxl {
font-size: var(--text-xxxxl);
}
/* Text Styles */
.text-italic {
font-style: italic;
}
.text-light {
font-weight: 300;
}
.text-normal {
font-weight: 400;
}
.text-medium {
font-weight: 500;
}
.text-semibold {
font-weight: 600;
}
.text-bold {
font-weight: 700;
}
.text-line-through {
text-decoration: line-through;
}
.text-underline {
text-decoration: underline;
}
.text-decoration-none {
text-decoration: none;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-lowercase {
text-transform: lowercase;
}
.text-truncatre {
overflow: hidden;
text-decoration: ellipse;
white-space: nowrap;
}
.text-nowrap {
white-space: nowrap;
}
.cursor-pointer{
cursor: pointer;
}
/* Text Align */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
/* Line Height */
.line-height-normal {
line-height: normal;
}
.line-height-xs {
line-height: 1.1;
}
.line-height-sm {
line-height: 1.2;
}
.line-height-md {
line-height: 1.4;
}
.line-height-lg {
line-height: 1.58;
}
.line-height-xl {
line-height: 1.72;
}
/* Letter Spacing */
.letter-spacing-normal {
letter-spacing: normal;
}
.letter-spacing-xs {
letter-spacing: -0.1em;
}
.letter-spacing-sm {
letter-spacing: -0.05em;
}
.letter-spacing-md {
letter-spacing: 0.05em;
}
.letter-spacing-lg {
letter-spacing: 0.1em;
}
.letter-spacing-xl {
letter-spacing: 2em;
} | 0.361728 | 0.097691 |
background-color:rgba(240, 240 , 240 , 0.7);
position:absolute;
padding:0px;
font-size:14px;
height:20px;
left:-170px;
bottom:-20px;
}
#box-rtol{
background-color: #8B1A1A;
width:80%;
height:10px;
left:-80px;
top:30px;
position:relative;
animation:box-rtol 1.3s;
animation-fill-mode: forwards;
}
#box-ltor{
background-color: #8B1A1A;
width:80%;
top:600px;
left:30%;
height:10px;
position:relative;
animation:box-rtol 1.3s;
animation-fill-mode: forwards;
}
.wrap-white{
background-color:rgba(240, 240 , 240 , 0.5);
height:94%;
}
.wrap-black{
background-color:rgba(30, 50 , 30 , 0.2);
height:100%;
}
#wrap-white-electrity{
background-color:rgba(240, 240 , 240 , 0.65);
height:60%;
}
#wrap-white-air{
background-color:rgba(240, 240 , 240 , 0.75);
height:60%;
}
#wrap-white-oil{
background-color:rgba(240, 240 , 240 , 0.6);
height:60%;
}
#wrap-white-water{
background-color:rgba(30, 50 , 30 , 0.5);
height:60%;
}
#wrap-conculsion{
background-color:rgba(240, 240 , 240 , 0.3);
height:60%;
}
#wrap-final{
background-color:rgba(240, 240 , 240 , 0.6);
height:95%;
}
.reveal .slides > section, .reveal .slides > section > section{
padding:0px;
}
#big-number{
margin-top:90px;
font-size:400px;
}
#wrap-1{
color:black;
position:absolute;
right:20%;
top:150px;
font-size:140px;
}
#wrap-2{
position:absolute;
left:59%;
top:290px;
border:0px dashed;
width:200px;
font-weight: 600;
animation-delay:1s;
animation:second 0.5s;
animation-fill-mode: forwards;
}
#wrap-3{
position:relative;
font-size:100px;
left:19%;
top:350px;
font-weight: 900;
animation:first 1.3s;
animation-fill-mode: forwards;
}
@keyframes first
{
0% {opacity:0;}
40% {opacity:0;}
60% {opacity:0.4;font-size: 50px;}
100% {opacity:1;font-size:100px; color:black;}
}
@keyframes second
{
100% {color:#EE3B3B;border:5px #EE3B3B dashed ;}
}
.reveal img, .reveal video, .reveal iframe{
max-width: none;
max-height: none;
}
#wrap-logo{
width:380px;
position:absolute;
top:130px;
left:4%;
border: solid 3px black;
box-shadow:
}
#d2-p1{
color:#faebd7;
width:84%;
border-bottom:white solid 5px;
font-size:130px ;
font-weight:900;
position:relative;
top:-50px;
left:-50px;
}
#d2-p2{
border-bottom:black solid 5px;
width:70%;
font-size:70px;
font-weight:600;
position:relative;
top:-20px;
right:-35%;
}
#d2-p3{
position:relative;
color:#f5f5f5;
top:20px;
left:100px;
width:80%;
font-size:70px;
border:dashed red 5px;
font-weight:600;
font-family:'Orbitron', sans-serif;
animation-fill-mode: forwards;
}
@keyframes third
{
0% { border:solid red 0px;}
50% { border:4px;}
100% { border:dashed red 5px;}
}
#number{
position: relative;
top:0px;
left:-40px;
font-weight:900;
font-size:45px;
width:30%;
color:black;
border-bottom:solid 5px black;
}
#number-sub{
font-weight:400;
font-size:30px;
opacity:0.5;
}
#d3-p1{
position:relative;
color:#8B1A1A;
font-weight: 600;
font-size:33px;
top:40px;
width:95%;
line-height: 45px;
}
#electrity{
position:relative;
border:3px solid #666;
margin-bottom:5px;
max-width: 100%;
top:-300px;
right:-160px;
}
#d3-p2{
text-align:left;
position:relative;
color:#2F4F4F;
opacity:1;
font-weight: 600;
font-size:18px;
top:40px;
left:300px;
width:80%;
}
#d3-wrap{
background-color: rgba(10, 10 , 10 , 0.1);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-1.5px;
top:0px;
width:100%;
}
#d3-note{
position: relative;
font-weight: 600;
margin-top:10px;
color:#2F4F4F;
font-size:21px;
left:40px;
}
#d3-notice{
font-size:18px;
width:95%;
}
#d3-link1{
position: relative;
top:0px;
font-size:15px;
left:300px;
}
#d5-p1{
position:relative;
color:rgba(49,70 ,65);
font-weight: 900;
font-size:33px;
top:0px;
left:10px;
width:95%;
line-height: 40px;
}
#d5-p2{
text-align:left;
position:relative;
color:#2F4F4F;
font-weight: 600;
font-size:18px;
top:0px;
left:140px;
width:80%;
}
#d5-link1{
position: relative;
top:-30px;
font-size:15px;
left:300px;
}
#d5-wrap{
background-color: rgba(10, 10 , 10 , 0.3);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-2px;
top:-25px;
width:100%;
color:white;
}
#d5-note{
position: relative;
font-weight: 600;
margin-top:10px;
color:white;
font-size:21px;
left:40px;
}
#d7-wrap{
background-color: rgba(10, 10 , 10 , 0.3);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-2px;
top:-35px;
width:100%;
color:white;
}
#number-water{
position: relative;
top:0px;
left:-40px;
font-weight:900;
font-size:45px;
width:30%;
color:white;
border-bottom:white 5px solid;
}
#number-water-sub{
font-weight:400;
font-size:30px;
opacity:0.85;
}
#d9-p2{
text-align:left;
position:relative;
color:#E6E6FA;
font-weight: 600;
font-size:18px;
top:0px;
left:350px;
width:80%;
}
#d10-p1{
color:#faebd7;
width:110%;
border-bottom:white solid 5px;
font-size:130px ;
font-weight:900;
position:relative;
top:-50px;
left:-70px;
}
#d10-p3{
position:relative;
color:#7fffd4;
left:40px;
width:90%;
font-size:80px;
font-weight:600;
}
#final-sub{
font-weight:400;
font-family:'Orbitron', sans-serif;
text-align: left;
position:relative;
font-size:25px;
color:#8B8B7A;
left:80px;
top:50px;
}
#final-title{
font-size:60px;
font-weight: 700;
margin-top:140px;
}
#conculision-big{
color:#FF3030;
font-weight:900;
font-size:85px;
display:none;
}
#final-2{
position:absolute;
left:56%;
top:300px;
border:0px dashed #8B1A1A;
width:260px;
font-size:30px;
font-weight: 600;
}
#final-3{
position:relative;
font-size:100px;
left:43%;
top:370px;
width:500px;
font-weight: 900;
opacity:0;
font-size:35px;
}
#final-logo{
width:320px;
position:absolute;
top:150px;
left:6%;
border: solid 3px black;
} | review2015/index.css | background-color:rgba(240, 240 , 240 , 0.7);
position:absolute;
padding:0px;
font-size:14px;
height:20px;
left:-170px;
bottom:-20px;
}
#box-rtol{
background-color: #8B1A1A;
width:80%;
height:10px;
left:-80px;
top:30px;
position:relative;
animation:box-rtol 1.3s;
animation-fill-mode: forwards;
}
#box-ltor{
background-color: #8B1A1A;
width:80%;
top:600px;
left:30%;
height:10px;
position:relative;
animation:box-rtol 1.3s;
animation-fill-mode: forwards;
}
.wrap-white{
background-color:rgba(240, 240 , 240 , 0.5);
height:94%;
}
.wrap-black{
background-color:rgba(30, 50 , 30 , 0.2);
height:100%;
}
#wrap-white-electrity{
background-color:rgba(240, 240 , 240 , 0.65);
height:60%;
}
#wrap-white-air{
background-color:rgba(240, 240 , 240 , 0.75);
height:60%;
}
#wrap-white-oil{
background-color:rgba(240, 240 , 240 , 0.6);
height:60%;
}
#wrap-white-water{
background-color:rgba(30, 50 , 30 , 0.5);
height:60%;
}
#wrap-conculsion{
background-color:rgba(240, 240 , 240 , 0.3);
height:60%;
}
#wrap-final{
background-color:rgba(240, 240 , 240 , 0.6);
height:95%;
}
.reveal .slides > section, .reveal .slides > section > section{
padding:0px;
}
#big-number{
margin-top:90px;
font-size:400px;
}
#wrap-1{
color:black;
position:absolute;
right:20%;
top:150px;
font-size:140px;
}
#wrap-2{
position:absolute;
left:59%;
top:290px;
border:0px dashed;
width:200px;
font-weight: 600;
animation-delay:1s;
animation:second 0.5s;
animation-fill-mode: forwards;
}
#wrap-3{
position:relative;
font-size:100px;
left:19%;
top:350px;
font-weight: 900;
animation:first 1.3s;
animation-fill-mode: forwards;
}
@keyframes first
{
0% {opacity:0;}
40% {opacity:0;}
60% {opacity:0.4;font-size: 50px;}
100% {opacity:1;font-size:100px; color:black;}
}
@keyframes second
{
100% {color:#EE3B3B;border:5px #EE3B3B dashed ;}
}
.reveal img, .reveal video, .reveal iframe{
max-width: none;
max-height: none;
}
#wrap-logo{
width:380px;
position:absolute;
top:130px;
left:4%;
border: solid 3px black;
box-shadow:
}
#d2-p1{
color:#faebd7;
width:84%;
border-bottom:white solid 5px;
font-size:130px ;
font-weight:900;
position:relative;
top:-50px;
left:-50px;
}
#d2-p2{
border-bottom:black solid 5px;
width:70%;
font-size:70px;
font-weight:600;
position:relative;
top:-20px;
right:-35%;
}
#d2-p3{
position:relative;
color:#f5f5f5;
top:20px;
left:100px;
width:80%;
font-size:70px;
border:dashed red 5px;
font-weight:600;
font-family:'Orbitron', sans-serif;
animation-fill-mode: forwards;
}
@keyframes third
{
0% { border:solid red 0px;}
50% { border:4px;}
100% { border:dashed red 5px;}
}
#number{
position: relative;
top:0px;
left:-40px;
font-weight:900;
font-size:45px;
width:30%;
color:black;
border-bottom:solid 5px black;
}
#number-sub{
font-weight:400;
font-size:30px;
opacity:0.5;
}
#d3-p1{
position:relative;
color:#8B1A1A;
font-weight: 600;
font-size:33px;
top:40px;
width:95%;
line-height: 45px;
}
#electrity{
position:relative;
border:3px solid #666;
margin-bottom:5px;
max-width: 100%;
top:-300px;
right:-160px;
}
#d3-p2{
text-align:left;
position:relative;
color:#2F4F4F;
opacity:1;
font-weight: 600;
font-size:18px;
top:40px;
left:300px;
width:80%;
}
#d3-wrap{
background-color: rgba(10, 10 , 10 , 0.1);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-1.5px;
top:0px;
width:100%;
}
#d3-note{
position: relative;
font-weight: 600;
margin-top:10px;
color:#2F4F4F;
font-size:21px;
left:40px;
}
#d3-notice{
font-size:18px;
width:95%;
}
#d3-link1{
position: relative;
top:0px;
font-size:15px;
left:300px;
}
#d5-p1{
position:relative;
color:rgba(49,70 ,65);
font-weight: 900;
font-size:33px;
top:0px;
left:10px;
width:95%;
line-height: 40px;
}
#d5-p2{
text-align:left;
position:relative;
color:#2F4F4F;
font-weight: 600;
font-size:18px;
top:0px;
left:140px;
width:80%;
}
#d5-link1{
position: relative;
top:-30px;
font-size:15px;
left:300px;
}
#d5-wrap{
background-color: rgba(10, 10 , 10 , 0.3);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-2px;
top:-25px;
width:100%;
color:white;
}
#d5-note{
position: relative;
font-weight: 600;
margin-top:10px;
color:white;
font-size:21px;
left:40px;
}
#d7-wrap{
background-color: rgba(10, 10 , 10 , 0.3);
border:dashed black 3px;
position:relative;
text-align: left;
height:49px;
left:-2px;
top:-35px;
width:100%;
color:white;
}
#number-water{
position: relative;
top:0px;
left:-40px;
font-weight:900;
font-size:45px;
width:30%;
color:white;
border-bottom:white 5px solid;
}
#number-water-sub{
font-weight:400;
font-size:30px;
opacity:0.85;
}
#d9-p2{
text-align:left;
position:relative;
color:#E6E6FA;
font-weight: 600;
font-size:18px;
top:0px;
left:350px;
width:80%;
}
#d10-p1{
color:#faebd7;
width:110%;
border-bottom:white solid 5px;
font-size:130px ;
font-weight:900;
position:relative;
top:-50px;
left:-70px;
}
#d10-p3{
position:relative;
color:#7fffd4;
left:40px;
width:90%;
font-size:80px;
font-weight:600;
}
#final-sub{
font-weight:400;
font-family:'Orbitron', sans-serif;
text-align: left;
position:relative;
font-size:25px;
color:#8B8B7A;
left:80px;
top:50px;
}
#final-title{
font-size:60px;
font-weight: 700;
margin-top:140px;
}
#conculision-big{
color:#FF3030;
font-weight:900;
font-size:85px;
display:none;
}
#final-2{
position:absolute;
left:56%;
top:300px;
border:0px dashed #8B1A1A;
width:260px;
font-size:30px;
font-weight: 600;
}
#final-3{
position:relative;
font-size:100px;
left:43%;
top:370px;
width:500px;
font-weight: 900;
opacity:0;
font-size:35px;
}
#final-logo{
width:320px;
position:absolute;
top:150px;
left:6%;
border: solid 3px black;
} | 0.276886 | 0.044245 |
:root{
--branco:white;
--preto:black;
}
body{
margin:0;
overflow: hidden;
overflow-y: hidden;
overflow-x: hidden;
background:black
}
canvas{
overflow:hidden;
}
img{
width:100%;
height:100%;
margin:0;
}
#bm{
z-index:4;
}
.bar {
display: block;
height: 10px;
border-radius: 1vh;
margin: 10px auto;
width: 60px;
background: var(--branco);
}
.icon {
display: inherit;
float: right;
position: fixed;
top: 0;
z-index: 7;
padding: 20px;
right: 0;
width: auto;
margin: 0 auto;
height: auto;
text-align: center;
}
.icon div {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease;
}
.icon {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease;
}
.icon div:nth-child(2) {
margin: 0 auto;
}
.active1 {
-webkit-transform: translateY(20px) rotateZ(45deg);
-moz-transform: translateY(20px) rotateZ(45deg);
-ms-transform: translateY(20px) rotateZ(45deg);
-o-transform: translateY(20px) rotateZ(45deg);
transform: translateY(20px) rotateZ(45deg);
}
.active3 {
-webkit-transform: translateY(-20px) rotateZ(-45deg);
-moz-transform: translateY(-20px) rotateZ(-45deg);
-ms-transform: translateY(-20px) rotateZ(-45deg);
-o-transform: translateY(-20px) rotateZ(-45deg);
transform: translateY(-20px) rotateZ(-45deg);
}
.active2 {
width: 0;
}
nav {
font-family: 'Open Sans', sans-serif;
font-weight: bold;
webkit-transition: background-color .2s ease;
-moz-transition: background-color .2s ease;
-ms-transition: background-color .2s ease;
-o-transition: background-color .2s ease;
transition: background-color .2s ease;
left: 0;
border-bottom: white 10px;
position: fixed;
top: 0;
width: 80%;
z-index: 5;
right: 0;
}
nav img{
transform:scale(0.3);
margin:0;
padding-right:5px;
}
nav ul {
list-style: none;
text-align: right;
text-decoration: none;
}
nav ul li {
display: inline-block;
font-size: 4vh;
color:var(--branco);
text-decoration: none;
}
nav ul li a{
text-decoration: none;
color:var(--branco);
width:90%;
}
nav ul li a div{
width:35%;
display:block;
float:left;
text-align: left;
padding:10px;
}
nav ul li a div img{
text-align: left;
display:block;
float:left;
}
#navbar {
top: 0;
}
.stroke {
background: linear-gradient(to right, rgba(95,106,255,0.80) , rgba(95,106,255,0.10));
left:101%;
transition:transform ease-in-out;
transition-duration: 1s;
pointer-events: none;
}
.transform {
transform: translateX(-100%);
pointer-events: inherit;
}
.stroke ul {
margin-top:100px;
text-align: right;
width: 100%;
float: right;
clear: both;
padding-right:30px;
}
.stroke a:active{
background:transparent;
}
.stroke ul li {
float: right;
padding: 0 5px;
margin: 2px 0;
background: transparent;
}
#index a{
text-decoration: none;
color: #80E9DE;
font-size: 3vh;
text-align: center;
font-family: 'Open Sans', sans-serif;
font-weight: bold;
}
.start p{
margin:2vh;
}
.start{
background: white;
height: 8vh;
border-radius: 7vh;
width:80%;
display:block;
margin-left:10%;
position: fixed;
top:70%;
transform: translateY(-50%);
}
.logo{
position:fixed;
display:block;
width:80%;
margin-left:10%;
top:20%;
}
#fundo{
z-index: -1;
}
#fundo2{
position: fixed;
top:0;
background: rgba(255, 255, 255, 0.3);
z-index:0;
}
h1{
font-family: 'Open Sans', sans-serif;
font-weight: bold;
text-align:center;
color:rgb(95,106,255);
position: fixed;
top: 10%;
font-size: 5vh;
margin-left:10%;
}
.volume{
position: fixed;
top: 30%;
width:90vw;
height:20vh;
margin-left:10%;
border-radius: 3vh;
}
.beat{
position: fixed;
top: 60%;
width:90vw;
height:20vh;
margin-left:10%;
border-radius: 3vh;
}
.noDisplay{
display:none;
}
.Display{
display: inherit;
}
h2{
font-family: 'Open Sans', sans-serif;
font-size:3vh;
color:rgb(95,106,255);
}
#beat, #volume{
background: rgba(255, 255, 255, 1);
border-radius: 3vh;
height:4vh;
width:80vw;
text-align: center;
}
#aplicação img{
width:7vh;
height: 7vh;
}
/*sliders*/
input[type=range] {
-webkit-appearance: none; /* Hides the slider so that custom slider can be made */
width: 90%; /* Specific width is required for Firefox. */
background: transparent; /* Otherwise white in Chrome */
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
}
input[type=range]:focus {
outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}
input[type=range]::-ms-track {
width: 90%;
cursor: pointer;
/* Hides the slider so custom styles can be added */
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
margin-top: -5px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}
/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
}
/* All the same stuff for IE */
input[type=range]::-ms-thumb {
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
background: rgb(95,106,255);
border-radius: 1.3px;
border: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #367ebd;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 4px;
cursor: pointer;
background:rgb(95,106,255);
border-radius: 1.3px;
border:none;
}
input[type=range]::-ms-track {
width: 100%;
height: 4px;
cursor: pointer;
background: transparent;
border-color: transparent;
border-width: 16px 0;
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: rgb(95,106,255);
border:none;
border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-lower {
background: rgb(95,106,255);
}
input[type=range]::-ms-fill-upper {
background: #3071a9;
border: none;
border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-upper {
background: rgb(95,106,255);
}
/*about*/
.texto{
width:80vw;
margin-left:10vw;
overflow-y: scroll;
background:white;
border-radius: 3vh;
height:75vh;
position:fixed;
top:20vh;
}
.texto>div{
height:70vh;
margin-top:2.5vh;
}
.paragrafo{
width:90%;
top:5%;
margin-left:5%;
padding-bottom: 2vh;
}
.paragrafo p{
font-family: 'Open Sans', sans-serif;
}
h3{
font-family: 'Open Sans', sans-serif;
}
.displayNone{
display:none;
}
.displayInherit{
display:inherit;
} | style.css | :root{
--branco:white;
--preto:black;
}
body{
margin:0;
overflow: hidden;
overflow-y: hidden;
overflow-x: hidden;
background:black
}
canvas{
overflow:hidden;
}
img{
width:100%;
height:100%;
margin:0;
}
#bm{
z-index:4;
}
.bar {
display: block;
height: 10px;
border-radius: 1vh;
margin: 10px auto;
width: 60px;
background: var(--branco);
}
.icon {
display: inherit;
float: right;
position: fixed;
top: 0;
z-index: 7;
padding: 20px;
right: 0;
width: auto;
margin: 0 auto;
height: auto;
text-align: center;
}
.icon div {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease;
}
.icon {
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
-ms-transition: all .7s ease;
-o-transition: all .7s ease;
transition: all .7s ease;
}
.icon div:nth-child(2) {
margin: 0 auto;
}
.active1 {
-webkit-transform: translateY(20px) rotateZ(45deg);
-moz-transform: translateY(20px) rotateZ(45deg);
-ms-transform: translateY(20px) rotateZ(45deg);
-o-transform: translateY(20px) rotateZ(45deg);
transform: translateY(20px) rotateZ(45deg);
}
.active3 {
-webkit-transform: translateY(-20px) rotateZ(-45deg);
-moz-transform: translateY(-20px) rotateZ(-45deg);
-ms-transform: translateY(-20px) rotateZ(-45deg);
-o-transform: translateY(-20px) rotateZ(-45deg);
transform: translateY(-20px) rotateZ(-45deg);
}
.active2 {
width: 0;
}
nav {
font-family: 'Open Sans', sans-serif;
font-weight: bold;
webkit-transition: background-color .2s ease;
-moz-transition: background-color .2s ease;
-ms-transition: background-color .2s ease;
-o-transition: background-color .2s ease;
transition: background-color .2s ease;
left: 0;
border-bottom: white 10px;
position: fixed;
top: 0;
width: 80%;
z-index: 5;
right: 0;
}
nav img{
transform:scale(0.3);
margin:0;
padding-right:5px;
}
nav ul {
list-style: none;
text-align: right;
text-decoration: none;
}
nav ul li {
display: inline-block;
font-size: 4vh;
color:var(--branco);
text-decoration: none;
}
nav ul li a{
text-decoration: none;
color:var(--branco);
width:90%;
}
nav ul li a div{
width:35%;
display:block;
float:left;
text-align: left;
padding:10px;
}
nav ul li a div img{
text-align: left;
display:block;
float:left;
}
#navbar {
top: 0;
}
.stroke {
background: linear-gradient(to right, rgba(95,106,255,0.80) , rgba(95,106,255,0.10));
left:101%;
transition:transform ease-in-out;
transition-duration: 1s;
pointer-events: none;
}
.transform {
transform: translateX(-100%);
pointer-events: inherit;
}
.stroke ul {
margin-top:100px;
text-align: right;
width: 100%;
float: right;
clear: both;
padding-right:30px;
}
.stroke a:active{
background:transparent;
}
.stroke ul li {
float: right;
padding: 0 5px;
margin: 2px 0;
background: transparent;
}
#index a{
text-decoration: none;
color: #80E9DE;
font-size: 3vh;
text-align: center;
font-family: 'Open Sans', sans-serif;
font-weight: bold;
}
.start p{
margin:2vh;
}
.start{
background: white;
height: 8vh;
border-radius: 7vh;
width:80%;
display:block;
margin-left:10%;
position: fixed;
top:70%;
transform: translateY(-50%);
}
.logo{
position:fixed;
display:block;
width:80%;
margin-left:10%;
top:20%;
}
#fundo{
z-index: -1;
}
#fundo2{
position: fixed;
top:0;
background: rgba(255, 255, 255, 0.3);
z-index:0;
}
h1{
font-family: 'Open Sans', sans-serif;
font-weight: bold;
text-align:center;
color:rgb(95,106,255);
position: fixed;
top: 10%;
font-size: 5vh;
margin-left:10%;
}
.volume{
position: fixed;
top: 30%;
width:90vw;
height:20vh;
margin-left:10%;
border-radius: 3vh;
}
.beat{
position: fixed;
top: 60%;
width:90vw;
height:20vh;
margin-left:10%;
border-radius: 3vh;
}
.noDisplay{
display:none;
}
.Display{
display: inherit;
}
h2{
font-family: 'Open Sans', sans-serif;
font-size:3vh;
color:rgb(95,106,255);
}
#beat, #volume{
background: rgba(255, 255, 255, 1);
border-radius: 3vh;
height:4vh;
width:80vw;
text-align: center;
}
#aplicação img{
width:7vh;
height: 7vh;
}
/*sliders*/
input[type=range] {
-webkit-appearance: none; /* Hides the slider so that custom slider can be made */
width: 90%; /* Specific width is required for Firefox. */
background: transparent; /* Otherwise white in Chrome */
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
}
input[type=range]:focus {
outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}
input[type=range]::-ms-track {
width: 90%;
cursor: pointer;
/* Hides the slider so custom styles can be added */
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
margin-top: -5px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}
/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
}
/* All the same stuff for IE */
input[type=range]::-ms-thumb {
border: 1px solid #80E9DE;
height: 16px;
width: 16px;
border-radius: 3px;
background: #80E9DE;
cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
background: rgb(95,106,255);
border-radius: 1.3px;
border: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: #367ebd;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 4px;
cursor: pointer;
background:rgb(95,106,255);
border-radius: 1.3px;
border:none;
}
input[type=range]::-ms-track {
width: 100%;
height: 4px;
cursor: pointer;
background: transparent;
border-color: transparent;
border-width: 16px 0;
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: rgb(95,106,255);
border:none;
border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-lower {
background: rgb(95,106,255);
}
input[type=range]::-ms-fill-upper {
background: #3071a9;
border: none;
border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-upper {
background: rgb(95,106,255);
}
/*about*/
.texto{
width:80vw;
margin-left:10vw;
overflow-y: scroll;
background:white;
border-radius: 3vh;
height:75vh;
position:fixed;
top:20vh;
}
.texto>div{
height:70vh;
margin-top:2.5vh;
}
.paragrafo{
width:90%;
top:5%;
margin-left:5%;
padding-bottom: 2vh;
}
.paragrafo p{
font-family: 'Open Sans', sans-serif;
}
h3{
font-family: 'Open Sans', sans-serif;
}
.displayNone{
display:none;
}
.displayInherit{
display:inherit;
} | 0.483161 | 0.159872 |
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
height: 100vh;
background: url(../Imagenes/figueras-ge.jpg);
}
html{
font-size: 62.5%;
}
.header h1{
color: purple;
display: flex;
justify-content: center;
padding: 3rem;
font-size: 4rem;
}
.header p{
display: flex;
justify-content: center;
font-size: 2.5rem;
margin-left: 2rem;
margin-bottom: 6rem;
}
.header--nav__img{
width: 6rem;
height: 4rem;
margin: 2rem;
}
.header--nav{
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 8vh;
background-color: rgb(41, 98, 100);
}
.header--nav li:hover {
background: purple;
}
.header--nav .menu li{
font-size: 1.8rem;
padding: .3rem;
cursor: pointer;
}
.header--nav ul{
list-style: none;
}
.menu > li{
position: relative;
display: inline-block;
}
.menu > li > a{
display: block;
font-size: 2rem;
padding: .5rem;
color: white;
text-decoration: none;
}
.menu li a:hover{
color: black;
transition: all .3s;
}
/* Sub-menu */
.submenu{
display: none;
position: absolute;
background: rgb(160, 157, 157);
width: 9rem;
padding: .4rem;
transition: opacity 1.5s;
}
.submenu li a{
display: block;
font-size: 2rem;
padding: .4rem;
text-decoration: none;
color: white;
}
.menu li:hover > .submenu{
display: block;
}
.titulo h1{
color: white;
display: flex;
justify-content: center;
padding: 3rem;
font-size: 4rem;
}
.titulo p{
display: flex;
justify-content: center;
color: white;
font-size: 2.8rem;
margin-left: 2rem;
margin-bottom: 1rem;
}
.card{
display: flex;
flex-wrap: wrap;
justify-content: center
}
.card-1, .card-2{
display: flex;
width: 34rem;
height: 45rem;
border-radius: 2rem;
padding: 2rem;
box-shadow: 0.5rem 0.5rem 1rem 0.5rem rgba(128, 61, 131, 0.397);
background-color: rgb(198, 232, 233);
margin: 2rem;
}
.card-1 .sec1 h2{
font-size: 2.7rem;
margin-bottom: 1.5rem;
color: purple;
}
.card-1 .sec1 p{
font-size: 2.2rem;
margin-bottom: 3rem;
}
.card-1 label{
font-size: 2.2rem;
}
.card-1 .sec1 #values{
width: 28rem;
height: 3rem;
font-size: 1.8rem;
margin-top: 0.5rem;
margin-bottom: 1rem;
}
.botones button{
display: flex;
justify-content: center;
margin: 3rem auto;
}
.card-1 button{
width: 20rem;
height: 4rem;
border: solid purple;
border-radius: 0.8rem;
font-size: 1.8rem;
padding: .8rem;
margin-top: 2rem;
margin-bottom: 1rem;
cursor: pointer;
}
.card-1 .card-2 .card-3 .card-4 .card-5 .card-6 .card-7, button:hover {
background-color: rgb(160, 157, 157);
}
.capsula{
display: flex;
flex-direction: column;
margin: auto;
}
.card-2 #resultLista{
width: 28rem;
height: 10rem;
font-size: 2rem;
border: solid blue;
border-radius: 1rem;
padding: 1rem;
margin-bottom: .4rem;
}
.card-2 #resultPromedio{
width: 28rem;
height: 8rem;
font-size: 2rem;
border: solid black;
color: purple;
border-radius: 1rem;
padding: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
.card-2 #re{
font-size: 2.2rem;
margin-top: 1.5rem;
margin-bottom: 2rem;
}
.card-2 #resultadoFinal{
width: 28rem;
height: 4rem;
font-size: 2rem;
border: solid red;
border-radius: 1rem;
background-color: rgb(214, 145, 211);
padding: .7rem;
}
.footer{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
width: 100%;
height: 8vh;
background-color: rgb(41, 98, 100);
}
.footer .git{
display: flex;
width: 8rem;
height: 4rem;
}
.footer a{
display: flex;
font-size: 1.8rem;
color: white;
text-decoration: none;
cursor: pointer;
}
.footer p{
font-size: 1.8rem;
color: white;
} | css/mediana16.css | *{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
height: 100vh;
background: url(../Imagenes/figueras-ge.jpg);
}
html{
font-size: 62.5%;
}
.header h1{
color: purple;
display: flex;
justify-content: center;
padding: 3rem;
font-size: 4rem;
}
.header p{
display: flex;
justify-content: center;
font-size: 2.5rem;
margin-left: 2rem;
margin-bottom: 6rem;
}
.header--nav__img{
width: 6rem;
height: 4rem;
margin: 2rem;
}
.header--nav{
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 8vh;
background-color: rgb(41, 98, 100);
}
.header--nav li:hover {
background: purple;
}
.header--nav .menu li{
font-size: 1.8rem;
padding: .3rem;
cursor: pointer;
}
.header--nav ul{
list-style: none;
}
.menu > li{
position: relative;
display: inline-block;
}
.menu > li > a{
display: block;
font-size: 2rem;
padding: .5rem;
color: white;
text-decoration: none;
}
.menu li a:hover{
color: black;
transition: all .3s;
}
/* Sub-menu */
.submenu{
display: none;
position: absolute;
background: rgb(160, 157, 157);
width: 9rem;
padding: .4rem;
transition: opacity 1.5s;
}
.submenu li a{
display: block;
font-size: 2rem;
padding: .4rem;
text-decoration: none;
color: white;
}
.menu li:hover > .submenu{
display: block;
}
.titulo h1{
color: white;
display: flex;
justify-content: center;
padding: 3rem;
font-size: 4rem;
}
.titulo p{
display: flex;
justify-content: center;
color: white;
font-size: 2.8rem;
margin-left: 2rem;
margin-bottom: 1rem;
}
.card{
display: flex;
flex-wrap: wrap;
justify-content: center
}
.card-1, .card-2{
display: flex;
width: 34rem;
height: 45rem;
border-radius: 2rem;
padding: 2rem;
box-shadow: 0.5rem 0.5rem 1rem 0.5rem rgba(128, 61, 131, 0.397);
background-color: rgb(198, 232, 233);
margin: 2rem;
}
.card-1 .sec1 h2{
font-size: 2.7rem;
margin-bottom: 1.5rem;
color: purple;
}
.card-1 .sec1 p{
font-size: 2.2rem;
margin-bottom: 3rem;
}
.card-1 label{
font-size: 2.2rem;
}
.card-1 .sec1 #values{
width: 28rem;
height: 3rem;
font-size: 1.8rem;
margin-top: 0.5rem;
margin-bottom: 1rem;
}
.botones button{
display: flex;
justify-content: center;
margin: 3rem auto;
}
.card-1 button{
width: 20rem;
height: 4rem;
border: solid purple;
border-radius: 0.8rem;
font-size: 1.8rem;
padding: .8rem;
margin-top: 2rem;
margin-bottom: 1rem;
cursor: pointer;
}
.card-1 .card-2 .card-3 .card-4 .card-5 .card-6 .card-7, button:hover {
background-color: rgb(160, 157, 157);
}
.capsula{
display: flex;
flex-direction: column;
margin: auto;
}
.card-2 #resultLista{
width: 28rem;
height: 10rem;
font-size: 2rem;
border: solid blue;
border-radius: 1rem;
padding: 1rem;
margin-bottom: .4rem;
}
.card-2 #resultPromedio{
width: 28rem;
height: 8rem;
font-size: 2rem;
border: solid black;
color: purple;
border-radius: 1rem;
padding: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
.card-2 #re{
font-size: 2.2rem;
margin-top: 1.5rem;
margin-bottom: 2rem;
}
.card-2 #resultadoFinal{
width: 28rem;
height: 4rem;
font-size: 2rem;
border: solid red;
border-radius: 1rem;
background-color: rgb(214, 145, 211);
padding: .7rem;
}
.footer{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
width: 100%;
height: 8vh;
background-color: rgb(41, 98, 100);
}
.footer .git{
display: flex;
width: 8rem;
height: 4rem;
}
.footer a{
display: flex;
font-size: 1.8rem;
color: white;
text-decoration: none;
cursor: pointer;
}
.footer p{
font-size: 1.8rem;
color: white;
} | 0.48121 | 0.068787 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background-color: #fff;
}
.side-navbar {
width: 180px;
height: 100%;
position: fixed;
margin-left: -300px;
background-color: #100901;
transition: 0.5s;
flex-shrink: 0;
border: solid rgba(0, 0, 0, .15);
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}
.my-container {
transition: 0.4s;
}
.active-nav {
margin-left: 0;
}
/* for main section */
.active-cont {
margin-left: 180px;
}
#menu-btn {
background-color: #100901;
color: #fff;
margin-left: -61px;
position: fixed;
width: auto;
height: auto;
}
.my-container input {
border-radius: 2rem;
padding: 2px 20px;
}
.bi {
vertical-align: -.125em;
pointer-events: none;
fill: currentColor;
}
.dropdown-toggle { outline: 0; }
.nav-flush .nav-link {
border-radius: 0;
}
.btn-toggle {
display: inline-flex;
align-items: center;
padding: .25rem .5rem;
font-weight: 600;
color:#fff;
background-color: transparent;
border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus,
.btn-toggle:hover {
background-color: #ffffff26;
}
.btn-toggle::before {
width: 1.25em;
line-height: 0;
content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='white' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
transition: transform .35s ease;
transform-origin: .5em 50%;
}
.btn-toggle[aria-expanded="true"] {
color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
transform: rotate(90deg);
}
.btn-toggle-nav a {
display: inline-flex;
padding: .1875rem .5rem;
margin-top: .125rem;
margin-left: 1.25rem;
text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus,
.btn-toggle-nav a:hover {
background-color: #ffffff26;
}
.scrollarea {
overflow-y: auto;
}
.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }
#info-row {
position: sticky;
top: 0;
background:#eee;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 10px; /* Place the button at the bottom of the page */
right: 10px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: black; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 10px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
} | public/stylesheets/style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background-color: #fff;
}
.side-navbar {
width: 180px;
height: 100%;
position: fixed;
margin-left: -300px;
background-color: #100901;
transition: 0.5s;
flex-shrink: 0;
border: solid rgba(0, 0, 0, .15);
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}
.my-container {
transition: 0.4s;
}
.active-nav {
margin-left: 0;
}
/* for main section */
.active-cont {
margin-left: 180px;
}
#menu-btn {
background-color: #100901;
color: #fff;
margin-left: -61px;
position: fixed;
width: auto;
height: auto;
}
.my-container input {
border-radius: 2rem;
padding: 2px 20px;
}
.bi {
vertical-align: -.125em;
pointer-events: none;
fill: currentColor;
}
.dropdown-toggle { outline: 0; }
.nav-flush .nav-link {
border-radius: 0;
}
.btn-toggle {
display: inline-flex;
align-items: center;
padding: .25rem .5rem;
font-weight: 600;
color:#fff;
background-color: transparent;
border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus,
.btn-toggle:hover {
background-color: #ffffff26;
}
.btn-toggle::before {
width: 1.25em;
line-height: 0;
content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='white' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
transition: transform .35s ease;
transform-origin: .5em 50%;
}
.btn-toggle[aria-expanded="true"] {
color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
transform: rotate(90deg);
}
.btn-toggle-nav a {
display: inline-flex;
padding: .1875rem .5rem;
margin-top: .125rem;
margin-left: 1.25rem;
text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus,
.btn-toggle-nav a:hover {
background-color: #ffffff26;
}
.scrollarea {
overflow-y: auto;
}
.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }
#info-row {
position: sticky;
top: 0;
background:#eee;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 10px; /* Place the button at the bottom of the page */
right: 10px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: black; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 10px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
} | 0.372391 | 0.103386 |
@font-face {
font-family: droid;
src: url(DroidNaskh-Regular.ttf) format("truetype");
}
@font-face {
font-family: bcnasim;
src: url(IRANSansWeb_Light.woff2) format("woff");
}
body {
direction: rtl;
margin: 0px;
padding: 0px;
font: 300 12px bcnasim;
}
#panel-cover {
position: fixed;
top: 0px;
left: 0px;
/*background-image: url(../../upload/site/image/backgr.jpg);*/
background-color: black;
background-position: center center;
background-size: cover;
z-index: -101;
width: 100%;
height: 100%;
opacity: .9;
}
#panel-cover2 {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .9);
z-index: -100;
}
#sar {
height: 0px;
color: white;
display: none;
}
#sar h1 {
padding: 0px;
margin: 0px;
line-height: 100px;
}
.panel-box {
background-color: #f9f9f9;
background-color: #f9fcfc;
background-color: rgba(150,150,150, .01);
color: black;
padding: 0px;
margin: 0px;
box-sizing: border-box;
transition: background-color 0.18s linear;
-webkit-transition: background-color 0.18s linear;
-moz-transition: background-color 0.18s linear;
-o-transition: background-color 0.18s linear;
-ms-transition: background-color 0.18s linear;
border: 1px solid rgba(150,150,150, .1);
position: relative;
}
.panel-box:hover {
text-shadow: 0px 0px 2px black;
background-color: rgba(150,150,150, .15);
}
.panel-box h3, .panel-box h4 {
text-align: center;
font-size: 12px;
}
.panel-box img {
width: 100px;
height: 100px;
}
.panel-box-loading {
position: absolute;
top: 5px;
left: 5px;
display: inline;
}
.panel-box-button {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
color: white;
z-index: 100;
cursor: pointer;
}
#copyright {
padding: 20px 10px;
text-align: right;
direction: ltr;
position: fixed;
width: 100%;
bottom: 0px;
left: 0px;
color: white;
font-weight: bold;
}
#task-content-close {
position: absolute;
right: 5px;
top: 5px;
background-color: rgba(200,0,0, .8);
color: white;
padding: 0px 10px;
cursor: pointer;
transition: border-radius .3s ease-in-out;
border-radius: 2px;
z-index: 201;
display: none;
}
#task-content-close:hover {
background-color: rgba(200,0,0, .9);
border-radius: 25px;
}
#task-content {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .1);
z-index: 200;
display: none;
padding: 5px;
color: white;
overflow-y: scroll;
}
.endpage {
height: 250px;
}
textarea {
font-family: bcnasim;
}
/**
*
* PANEL -> ARTICLES
*
*/
.nav-article {
padding: 5px;
margin-bottom: 10px;
}
.nav-article ul {
list-style-type: none;
color: white;
padding: 0px;
margin: 0px;
}
.nav-article ul li {
display: inline;
}
.nav-article ul li a {
color: black;
border: 1px solid black;
border-radius: 2px;
padding: 5px;
background-color: #eee;
} | style/site/cite.css | @font-face {
font-family: droid;
src: url(DroidNaskh-Regular.ttf) format("truetype");
}
@font-face {
font-family: bcnasim;
src: url(IRANSansWeb_Light.woff2) format("woff");
}
body {
direction: rtl;
margin: 0px;
padding: 0px;
font: 300 12px bcnasim;
}
#panel-cover {
position: fixed;
top: 0px;
left: 0px;
/*background-image: url(../../upload/site/image/backgr.jpg);*/
background-color: black;
background-position: center center;
background-size: cover;
z-index: -101;
width: 100%;
height: 100%;
opacity: .9;
}
#panel-cover2 {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .9);
z-index: -100;
}
#sar {
height: 0px;
color: white;
display: none;
}
#sar h1 {
padding: 0px;
margin: 0px;
line-height: 100px;
}
.panel-box {
background-color: #f9f9f9;
background-color: #f9fcfc;
background-color: rgba(150,150,150, .01);
color: black;
padding: 0px;
margin: 0px;
box-sizing: border-box;
transition: background-color 0.18s linear;
-webkit-transition: background-color 0.18s linear;
-moz-transition: background-color 0.18s linear;
-o-transition: background-color 0.18s linear;
-ms-transition: background-color 0.18s linear;
border: 1px solid rgba(150,150,150, .1);
position: relative;
}
.panel-box:hover {
text-shadow: 0px 0px 2px black;
background-color: rgba(150,150,150, .15);
}
.panel-box h3, .panel-box h4 {
text-align: center;
font-size: 12px;
}
.panel-box img {
width: 100px;
height: 100px;
}
.panel-box-loading {
position: absolute;
top: 5px;
left: 5px;
display: inline;
}
.panel-box-button {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
color: white;
z-index: 100;
cursor: pointer;
}
#copyright {
padding: 20px 10px;
text-align: right;
direction: ltr;
position: fixed;
width: 100%;
bottom: 0px;
left: 0px;
color: white;
font-weight: bold;
}
#task-content-close {
position: absolute;
right: 5px;
top: 5px;
background-color: rgba(200,0,0, .8);
color: white;
padding: 0px 10px;
cursor: pointer;
transition: border-radius .3s ease-in-out;
border-radius: 2px;
z-index: 201;
display: none;
}
#task-content-close:hover {
background-color: rgba(200,0,0, .9);
border-radius: 25px;
}
#task-content {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0,0,0, .1);
z-index: 200;
display: none;
padding: 5px;
color: white;
overflow-y: scroll;
}
.endpage {
height: 250px;
}
textarea {
font-family: bcnasim;
}
/**
*
* PANEL -> ARTICLES
*
*/
.nav-article {
padding: 5px;
margin-bottom: 10px;
}
.nav-article ul {
list-style-type: none;
color: white;
padding: 0px;
margin: 0px;
}
.nav-article ul li {
display: inline;
}
.nav-article ul li a {
color: black;
border: 1px solid black;
border-radius: 2px;
padding: 5px;
background-color: #eee;
} | 0.351089 | 0.121191 |
@tailwind base;
@tailwind components;
html,
body {
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
@supports (-webkit-overflow-scrolling: touch) { .bg-fixed { background-attachment: scroll !important; } }
nav {
align-items: baseline;
margin-top: 4px;
}
nav p {
margin-bottom: 0;
}
p a,
p a:hover,
p a:focus {
color: inherit;
text-decoration: underline;
}
@media (min-width: 768px) {
h2.md\:text-5xl {
line-height: 1.2;
}
}
@font-face {
font-family: "Forum-Regular";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local("Forum-Regular"), local("Forum-Regular"),
url("/font-files/Forum-Regular.woff") format("woff2");
}
.bg-policy-background {
background-size: 38%;
}
.bg-home-cover {
background-position: 67% bottom;
}
.bg-media-cover {
background-size: 430%;
background-position: left 817%;
}
.white-spacer {
height: 160px;
width: 40%;
}
.bg-repeat-table-1 {
background: #926868 !important;
}
.bg-repeat-table-2{
background: #7F7353 !important;
}
.bg-repeat-table-3{
background: #607C5C !important;
}
.bg-repeat-table-4{
background: #5B7B80 !important;
}
.bg-repeat-table-5{
background: #7E6E8C !important;
}
.bg-repeat-table-6{
background: #5E4557 !important;
}
.text-repeat-table-1 {
color: #926868 !important;
}
.text-repeat-table-2{
color: #7F7353 !important;
}
.text-repeat-table-3{
color: #607C5C !important;
}
.text-repeat-table-4{
color: #5B7B80 !important;
}
.text-repeat-table-5{
color: #7E6E8C !important;
}
.text-repeat-table-6{
color: #5E4557 !important;
}
.border-gray-500 {
border-color: #b1b1b1 !important;
}
.border-repeat-table-1 {
border-color: #926868 !important;
}
.border-repeat-table-2{
border-color: #7F7353 !important;
}
.border-repeat-table-3{
border-color: #607C5C !important;
}
.border-repeat-table-4{
border-color: #5B7B80 !important;
}
.border-repeat-table-5{
border-color: #7E6E8C !important;
}
.border-repeat-table-6{
border-color: #5E4557 !important;
}
.font-forum {
font-family: "Forum-Regular";
}
.slick-next:before, .slick-prev:before {
font-size: 57px;
line-height: 1;
opacity: 1;
}
@media (max-width: 1023px) {
.container {
padding: 0 1.75rem;
}
}
/* Carousel */
.bumper-left {
background-image: url(/images/icons/bumper-left.svg);
background-size: 130%;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
.bumper-right {
background-image: url(/images/icons/bumper-right.svg);
background-size: 130%;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
/* Table CSS */
#tableContainer__shell {
min-width: 1024px;
}
.highlight--right {
right: 0;
width: 57%
}
.highlight--left {
right: 27.5%;
width: 55.5%;
}
.vs--left {
right: 57%;
transform: translateX(50%);
}
.vs--right {
right: 28%;
transform: translateX(50%);
}
/* Table CSS */
.bg-parallax {
background-size: auto 133%;
}
@media (min-width: 1024px) {
.bg-parallax {
background-size: 125%;
}
}
/* Ant Design Overrides */
.ant-collapse-header,
.ant-collapse-content-box {
padding-left: 0 !important;
padding-right: 0 !important;
}
.ant-pagination-item,
.ant-pagination-item-link {
border-width: 0 !important;
}
.ant-pagination-item:hover a,
.ant-pagination-item-active a,
.ant-pagination-item a:focus-visible,
.ant-pagination-prev:hover .ant-pagination-item-link:not([disabled]),
.ant-pagination-next:hover .ant-pagination-item-link:not([disabled]),
.ant-pagination-prev:focus-visible .ant-pagination-item-link:not([disabled]),
.ant-pagination-next:focus-visible .ant-pagination-item-link:not([disabled]),
.ant-select-single:not(.ant-select-open) .ant-select-arrow {
color: black !important;
}
.ant-pagination-item a:focus-visible,
.ant-pagination-prev .ant-pagination-item-link:focus-visible,
.ant-pagination-next .ant-pagination-item-link:focus-visible {
outline: rgba(0, 0, 0, 0.85) !important;
}
.ant-select:not(.ant-select-customize-input) .ant-select-selector {
border-color: rgba(0, 0, 0, 0.85) !important;
}
.ant-select-arrow {
transition: all 0.3s;
}
.ant-progress {
position: relative;
}
.ant-progress-text {
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.ant-image-preview-img-wrapper::before {
display: inline-block;
width: 1px;
height: 0% !important;
margin-right: -1px !important;
content: '';
}
.ant-image-preview-img {
margin: auto;
max-height: 95% !important;
}
/* Loader */
.repeat-spinner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 20;
display: flex;
text-indent: -999999px;
background-color: white;
}
.repeat-spinner:after {
content: "";
width: 10em;
height: 10em;
margin: auto;
position: relative;
border: 1.5em solid #ec6c0a;
border-left: 1.5em solid #ec6c0a80;
border-radius: 50%;
transform: translateZ(0);
animation: repeatSpinner 1s infinite linear;
}
@keyframes repeatSpinner {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/*! purgecss end ignore */
@tailwind utilities;
@layer utilities {
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
@variants responsive {
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}
}
.vs-active {
@apply bg-black text-white;
}
.vs-inactive {
@apply bg-white text-black;
}
a.primary-link {
@apply text-repeat-burnt border-b border-repeat-burnt;
text-decoration: none;
} | styles/globals.css | @tailwind base;
@tailwind components;
html,
body {
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
@supports (-webkit-overflow-scrolling: touch) { .bg-fixed { background-attachment: scroll !important; } }
nav {
align-items: baseline;
margin-top: 4px;
}
nav p {
margin-bottom: 0;
}
p a,
p a:hover,
p a:focus {
color: inherit;
text-decoration: underline;
}
@media (min-width: 768px) {
h2.md\:text-5xl {
line-height: 1.2;
}
}
@font-face {
font-family: "Forum-Regular";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local("Forum-Regular"), local("Forum-Regular"),
url("/font-files/Forum-Regular.woff") format("woff2");
}
.bg-policy-background {
background-size: 38%;
}
.bg-home-cover {
background-position: 67% bottom;
}
.bg-media-cover {
background-size: 430%;
background-position: left 817%;
}
.white-spacer {
height: 160px;
width: 40%;
}
.bg-repeat-table-1 {
background: #926868 !important;
}
.bg-repeat-table-2{
background: #7F7353 !important;
}
.bg-repeat-table-3{
background: #607C5C !important;
}
.bg-repeat-table-4{
background: #5B7B80 !important;
}
.bg-repeat-table-5{
background: #7E6E8C !important;
}
.bg-repeat-table-6{
background: #5E4557 !important;
}
.text-repeat-table-1 {
color: #926868 !important;
}
.text-repeat-table-2{
color: #7F7353 !important;
}
.text-repeat-table-3{
color: #607C5C !important;
}
.text-repeat-table-4{
color: #5B7B80 !important;
}
.text-repeat-table-5{
color: #7E6E8C !important;
}
.text-repeat-table-6{
color: #5E4557 !important;
}
.border-gray-500 {
border-color: #b1b1b1 !important;
}
.border-repeat-table-1 {
border-color: #926868 !important;
}
.border-repeat-table-2{
border-color: #7F7353 !important;
}
.border-repeat-table-3{
border-color: #607C5C !important;
}
.border-repeat-table-4{
border-color: #5B7B80 !important;
}
.border-repeat-table-5{
border-color: #7E6E8C !important;
}
.border-repeat-table-6{
border-color: #5E4557 !important;
}
.font-forum {
font-family: "Forum-Regular";
}
.slick-next:before, .slick-prev:before {
font-size: 57px;
line-height: 1;
opacity: 1;
}
@media (max-width: 1023px) {
.container {
padding: 0 1.75rem;
}
}
/* Carousel */
.bumper-left {
background-image: url(/images/icons/bumper-left.svg);
background-size: 130%;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
.bumper-right {
background-image: url(/images/icons/bumper-right.svg);
background-size: 130%;
background-position: center;
background-repeat: no-repeat;
cursor: pointer;
}
/* Table CSS */
#tableContainer__shell {
min-width: 1024px;
}
.highlight--right {
right: 0;
width: 57%
}
.highlight--left {
right: 27.5%;
width: 55.5%;
}
.vs--left {
right: 57%;
transform: translateX(50%);
}
.vs--right {
right: 28%;
transform: translateX(50%);
}
/* Table CSS */
.bg-parallax {
background-size: auto 133%;
}
@media (min-width: 1024px) {
.bg-parallax {
background-size: 125%;
}
}
/* Ant Design Overrides */
.ant-collapse-header,
.ant-collapse-content-box {
padding-left: 0 !important;
padding-right: 0 !important;
}
.ant-pagination-item,
.ant-pagination-item-link {
border-width: 0 !important;
}
.ant-pagination-item:hover a,
.ant-pagination-item-active a,
.ant-pagination-item a:focus-visible,
.ant-pagination-prev:hover .ant-pagination-item-link:not([disabled]),
.ant-pagination-next:hover .ant-pagination-item-link:not([disabled]),
.ant-pagination-prev:focus-visible .ant-pagination-item-link:not([disabled]),
.ant-pagination-next:focus-visible .ant-pagination-item-link:not([disabled]),
.ant-select-single:not(.ant-select-open) .ant-select-arrow {
color: black !important;
}
.ant-pagination-item a:focus-visible,
.ant-pagination-prev .ant-pagination-item-link:focus-visible,
.ant-pagination-next .ant-pagination-item-link:focus-visible {
outline: rgba(0, 0, 0, 0.85) !important;
}
.ant-select:not(.ant-select-customize-input) .ant-select-selector {
border-color: rgba(0, 0, 0, 0.85) !important;
}
.ant-select-arrow {
transition: all 0.3s;
}
.ant-progress {
position: relative;
}
.ant-progress-text {
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.ant-image-preview-img-wrapper::before {
display: inline-block;
width: 1px;
height: 0% !important;
margin-right: -1px !important;
content: '';
}
.ant-image-preview-img {
margin: auto;
max-height: 95% !important;
}
/* Loader */
.repeat-spinner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 20;
display: flex;
text-indent: -999999px;
background-color: white;
}
.repeat-spinner:after {
content: "";
width: 10em;
height: 10em;
margin: auto;
position: relative;
border: 1.5em solid #ec6c0a;
border-left: 1.5em solid #ec6c0a80;
border-radius: 50%;
transform: translateZ(0);
animation: repeatSpinner 1s infinite linear;
}
@keyframes repeatSpinner {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/*! purgecss end ignore */
@tailwind utilities;
@layer utilities {
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
@variants responsive {
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}
}
.vs-active {
@apply bg-black text-white;
}
.vs-inactive {
@apply bg-white text-black;
}
a.primary-link {
@apply text-repeat-burnt border-b border-repeat-burnt;
text-decoration: none;
} | 0.501465 | 0.089018 |
.gfont span.variants, .gfont span.subsets
{
display:none;
}
.font-delete
{
position: absolute;
right: 0;
top: 0;
cursor: pointer;
padding: 8px 5px;
}
.font-delete:hover
{
color: #e14d43;
}
.font-delete i
{
height: 100%;
}
.font-delete i:before
{
vertical-align: sub;
}
.selected-font-top
{
position: relative;
}
.selected-font-top.have-variants
{
cursor:pointer;
}
.selected-font-top
{
padding: 5px 10px;
background: #F7F7F7;
background: -webkit-linear-gradient(#FAFAFA, #F3F3F3);
background: -o-linear-gradient(#FAFAFA, #F3F3F3);
background: -moz-linear-gradient(#FAFAFA, #F3F3F3);
background: linear-gradient(#FAFAFA, #F3F3F3);
}
.selected-font-top.fopened
{
border-bottom: 1px solid #ECECEC;
}
.selected-font-content
{
display: none;
padding: 15px 10px;
background: #FDFDFD;
position: relative;
}
.selected-font-content .spinner.fspinner {
bottom: 23px;
right: 10px;
position: absolute;
float: right !important;
}
.fspinner-show
{
float: left;
display: block;
visibility:visible;
}
/*Fixed*/
.wrap {
position: relative;
}
.nav {
background: #fff;
border: 1px solid #e9e9e9;
padding: 8px 12px;
margin: 15px 0 17px;
display: block;
width: 100%;
box-sizing: border-box;
}
.fonts-list {
width: 65%;
float: left;
}
.gfont {
border: 1px solid #dcdcdc;
margin: 0 3px 10px 0;
background: #fff;
position: relative;
-moz-box-shadow: 0 1px 1px #e1e1e1;
-webkit-box-shadow: 0 1px 1px #eee;
-o-box-shadow: 0 1px 1px #eee;
box-shadow: 0 1px 1px #eee;
padding: 8px 10px;
}
.gfont div.font-header,
.fonts-selected-list div.font-header
{
margin: 0;
float: left;
font-size: 17px;
line-height: 34px;
}
.fonts-selected-list {
overflow-y: auto;
max-height: 91%;
margin: 0;
padding:0;
width: 360px;
float:right;
background: #fff;
border: 1px solid #dcdcdc;
-moz-box-shadow: 0px 3px 3px #D6D6D6;
-webkit-box-shadow: 0px 3px 3px #D6D6D6;
-o-box-shadow: 0px 3px 3px #D6D6D6;
box-shadow: 0px 3px 3px #D6D6D6;
}
#fonts-selected-wrapper
{
margin-top: 0.5em;
border-top: 1px solid #F0F0F0;
padding: 10px;
}
#fonts-selected-wrapper .selected-font
{
background: #F1F1F1;
margin-bottom: 7px;
position: relative;
border: 1px solid #ECECEC;
}
#fonts-selected-wrapper .selected-font:last-child {
margin-bottom: 0;
}
.fonts-selected-list h3
{
margin:5px;
padding: 8px 10px;
}
.font-variant input
{
vertical-align: bottom;
margin-right: 8px;
}
input.button.update-google-font-button {
float: left;
display: block;
width: 100%;
margin: 10px 0 0;
padding: 3px 0;
clear: both;
-mox-box-sizing: content-box;
box-sizing: content-box;
-webkit-transition: all 0.218s linear;
-moz-transition: all 0.218s linear;
transition: all 0.218s linear;
background: #04a4cc;
border-color: #037c9a;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);
}
input.button.update-google-font-button:focus,
input.button.update-google-font-button:hover,
input.button.update-google-font-button:active {
outline: none;
background: #0490b3;
border-color: #036881;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);
}
.font-variant, .font-subset
{
display: inline-block;
font-size: 14px;
margin: 0 0 6px;
min-width: 100px;
}
.uagffixed {
position: fixed;
top: 50px;
right: 20px;
z-index: 999999999;
margin: 0 !important;
float:none;
}
@media all and (max-width: 1200px) {
.fonts-selected-list,
.uagffixed {
width: 23%;
}
}
/*Customizations*/
.wrap.uavc-gfont .add-new-h2,
.wrap.uavc-gfont .add-new-h2:active {
padding: 6px 10px;
color: #0074a2;
}
.wrap.uavc-gfont .add-new-h2:hover{
background: #2ea2cc;
color: #fff;
}
.wrap.uavc-gfont input#refresh-google-fonts:focus {
outline: none;
cursor: pointer;
}
.wrap.uavc-gfont .nav {
position: relative;
min-width: 255px;
border: 1px solid #e5e5e5;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04);
box-shadow: 0 1px 1px rgba(0,0,0,.04);
background: #fff;
margin-top: 10px;
}
.wrap.uavc-gfont input#search_gfont {
max-width: 50%;
width: 320px;
padding: 5px 7px !important;
font-size: 13px;
line-height: 1.5em !important;
font-weight: 600;
}
/*buttons*/
.wrap.uavc-gfont .add-google-font,
.google-font-message-buttons
{
cursor: pointer;
padding: 8px 12px;
text-align: center;
font-size: 12px;
min-width: 111px;
text-align: center;
background: #2ea2cc;
color: #fff;
border: 1px solid #0074a2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
text-decoration: none;
-webkit-transition: all 0.218s;
-moz-transition: all 0.218s;
transition: all 0.218s;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.google-font-confirmation .google-font-message-buttons {
min-width: 70px;
background: #D6D6D6;
color: #4d4d4d;
font-weight: 700;
border: 1px solid #C2C2C2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(182, 182, 182, 0.5),0 1px 0 rgba(0,0,0,.15);
}
.wrap.uavc-gfont .add-google-font:hover,
.wrap.uavc-gfont .add-google-font:active,
.wrap.uavc-gfont .add-google-font:focus,
.google-font-message-buttons:hover,
.google-font-message-buttons:active,
.google-font-message-buttons:focus {
background: #1e8cbe;
border-color: #0074a2;
color: #fff;
outline: none;
}
.wrap.uavc-gfont .font-added,
.wrap.uavc-gfont .font-added:active,
.wrap.uavc-gfont .font-added:focus,
.wrap.uavc-gfont .font-added:hover {
cursor: not-allowed;
background: #738e96;
border-color: #4D707A;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #8EAAB3,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #8EAAB3,0 1px 0 rgba(0,0,0,.15);
}
.fonts-selected-list .dashicons.dashicons-arrow-down {
margin-left: 15px;
margin-top: 3px;
font-size: 27px;
}
.font-delete:before {
content: "Remove";
position: absolute;
right: 20px;
top: 11px;
background: #e14d43;
border: 1px solid #D54036;
color: #fff;
padding: 2px 5px;
opacity: 0;
-webkit-transition: all 300ms ease-in;
-moz-transition: all 300ms ease-in;
transition: all 300ms ease-in;
}
.font-delete:hover:before {
right: 30px;
opacity: 1;
}
.google-font-overlay
{
position:fixed;
top:0;
left:0;
background:rgba(0,0,0,0.6);
width: 100%;
height: 100%;
z-index: 999999999;
}
.google-font-confirmation
{
position: fixed;
top: 40%;
left: 0;
right: 0;
margin: 0 auto;
width: 420px;
max-width: 90%;
padding: 35px 35px 15px;
background: white;
border: 1px solid #525252;
border-radius: 5px;
box-shadow: 0px 0px 7px #525252;
z-index: 99999999999;
}
.google-font-message .google-font-message-buttons:first-child {
margin-right: 20px;
/*
background: #e14d43;
border-color: #d02a21;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);
*/
background: #D6D6D6;
color: #333;
border: 1px solid #C2C2C2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(182, 182, 182, 0.5),0 1px 0 rgba(0,0,0,.15);
}
.google-font-message .google-font-message-buttons:first-child:hover {
background: #dd362d;
border-color: #ba251e;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);
}
.google-font-confirmation-header h3
{
margin: 0;
padding: 0px 8px;
text-align: center;
}
.google-font-message
{
padding: 25px 0 10px;
display: block;
margin: 0 auto;
width: 220px;
}
.gfont-anchor-buttons
{
text-decoration: none;
position: absolute;
top: 10px;
right: 20px;
}
.gfont-anchor-buttons i
{
font-size: 28px;
}
#vc-gf-msg .updated
{
padding:10px;
}
.selected-font-subset-wrapper {
margin-top: 5px;
padding-top: 10px;
border-top: 1px solid #F7F7F7;
} | web/app/plugins/Ultimate_VC_Addons/admin/css/google-fonts-admin.css | .gfont span.variants, .gfont span.subsets
{
display:none;
}
.font-delete
{
position: absolute;
right: 0;
top: 0;
cursor: pointer;
padding: 8px 5px;
}
.font-delete:hover
{
color: #e14d43;
}
.font-delete i
{
height: 100%;
}
.font-delete i:before
{
vertical-align: sub;
}
.selected-font-top
{
position: relative;
}
.selected-font-top.have-variants
{
cursor:pointer;
}
.selected-font-top
{
padding: 5px 10px;
background: #F7F7F7;
background: -webkit-linear-gradient(#FAFAFA, #F3F3F3);
background: -o-linear-gradient(#FAFAFA, #F3F3F3);
background: -moz-linear-gradient(#FAFAFA, #F3F3F3);
background: linear-gradient(#FAFAFA, #F3F3F3);
}
.selected-font-top.fopened
{
border-bottom: 1px solid #ECECEC;
}
.selected-font-content
{
display: none;
padding: 15px 10px;
background: #FDFDFD;
position: relative;
}
.selected-font-content .spinner.fspinner {
bottom: 23px;
right: 10px;
position: absolute;
float: right !important;
}
.fspinner-show
{
float: left;
display: block;
visibility:visible;
}
/*Fixed*/
.wrap {
position: relative;
}
.nav {
background: #fff;
border: 1px solid #e9e9e9;
padding: 8px 12px;
margin: 15px 0 17px;
display: block;
width: 100%;
box-sizing: border-box;
}
.fonts-list {
width: 65%;
float: left;
}
.gfont {
border: 1px solid #dcdcdc;
margin: 0 3px 10px 0;
background: #fff;
position: relative;
-moz-box-shadow: 0 1px 1px #e1e1e1;
-webkit-box-shadow: 0 1px 1px #eee;
-o-box-shadow: 0 1px 1px #eee;
box-shadow: 0 1px 1px #eee;
padding: 8px 10px;
}
.gfont div.font-header,
.fonts-selected-list div.font-header
{
margin: 0;
float: left;
font-size: 17px;
line-height: 34px;
}
.fonts-selected-list {
overflow-y: auto;
max-height: 91%;
margin: 0;
padding:0;
width: 360px;
float:right;
background: #fff;
border: 1px solid #dcdcdc;
-moz-box-shadow: 0px 3px 3px #D6D6D6;
-webkit-box-shadow: 0px 3px 3px #D6D6D6;
-o-box-shadow: 0px 3px 3px #D6D6D6;
box-shadow: 0px 3px 3px #D6D6D6;
}
#fonts-selected-wrapper
{
margin-top: 0.5em;
border-top: 1px solid #F0F0F0;
padding: 10px;
}
#fonts-selected-wrapper .selected-font
{
background: #F1F1F1;
margin-bottom: 7px;
position: relative;
border: 1px solid #ECECEC;
}
#fonts-selected-wrapper .selected-font:last-child {
margin-bottom: 0;
}
.fonts-selected-list h3
{
margin:5px;
padding: 8px 10px;
}
.font-variant input
{
vertical-align: bottom;
margin-right: 8px;
}
input.button.update-google-font-button {
float: left;
display: block;
width: 100%;
margin: 10px 0 0;
padding: 3px 0;
clear: both;
-mox-box-sizing: content-box;
box-sizing: content-box;
-webkit-transition: all 0.218s linear;
-moz-transition: all 0.218s linear;
transition: all 0.218s linear;
background: #04a4cc;
border-color: #037c9a;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);
}
input.button.update-google-font-button:focus,
input.button.update-google-font-button:hover,
input.button.update-google-font-button:active {
outline: none;
background: #0490b3;
border-color: #036881;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);
}
.font-variant, .font-subset
{
display: inline-block;
font-size: 14px;
margin: 0 0 6px;
min-width: 100px;
}
.uagffixed {
position: fixed;
top: 50px;
right: 20px;
z-index: 999999999;
margin: 0 !important;
float:none;
}
@media all and (max-width: 1200px) {
.fonts-selected-list,
.uagffixed {
width: 23%;
}
}
/*Customizations*/
.wrap.uavc-gfont .add-new-h2,
.wrap.uavc-gfont .add-new-h2:active {
padding: 6px 10px;
color: #0074a2;
}
.wrap.uavc-gfont .add-new-h2:hover{
background: #2ea2cc;
color: #fff;
}
.wrap.uavc-gfont input#refresh-google-fonts:focus {
outline: none;
cursor: pointer;
}
.wrap.uavc-gfont .nav {
position: relative;
min-width: 255px;
border: 1px solid #e5e5e5;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04);
box-shadow: 0 1px 1px rgba(0,0,0,.04);
background: #fff;
margin-top: 10px;
}
.wrap.uavc-gfont input#search_gfont {
max-width: 50%;
width: 320px;
padding: 5px 7px !important;
font-size: 13px;
line-height: 1.5em !important;
font-weight: 600;
}
/*buttons*/
.wrap.uavc-gfont .add-google-font,
.google-font-message-buttons
{
cursor: pointer;
padding: 8px 12px;
text-align: center;
font-size: 12px;
min-width: 111px;
text-align: center;
background: #2ea2cc;
color: #fff;
border: 1px solid #0074a2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
text-decoration: none;
-webkit-transition: all 0.218s;
-moz-transition: all 0.218s;
transition: all 0.218s;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.google-font-confirmation .google-font-message-buttons {
min-width: 70px;
background: #D6D6D6;
color: #4d4d4d;
font-weight: 700;
border: 1px solid #C2C2C2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(182, 182, 182, 0.5),0 1px 0 rgba(0,0,0,.15);
}
.wrap.uavc-gfont .add-google-font:hover,
.wrap.uavc-gfont .add-google-font:active,
.wrap.uavc-gfont .add-google-font:focus,
.google-font-message-buttons:hover,
.google-font-message-buttons:active,
.google-font-message-buttons:focus {
background: #1e8cbe;
border-color: #0074a2;
color: #fff;
outline: none;
}
.wrap.uavc-gfont .font-added,
.wrap.uavc-gfont .font-added:active,
.wrap.uavc-gfont .font-added:focus,
.wrap.uavc-gfont .font-added:hover {
cursor: not-allowed;
background: #738e96;
border-color: #4D707A;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #8EAAB3,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #8EAAB3,0 1px 0 rgba(0,0,0,.15);
}
.fonts-selected-list .dashicons.dashicons-arrow-down {
margin-left: 15px;
margin-top: 3px;
font-size: 27px;
}
.font-delete:before {
content: "Remove";
position: absolute;
right: 20px;
top: 11px;
background: #e14d43;
border: 1px solid #D54036;
color: #fff;
padding: 2px 5px;
opacity: 0;
-webkit-transition: all 300ms ease-in;
-moz-transition: all 300ms ease-in;
transition: all 300ms ease-in;
}
.font-delete:hover:before {
right: 30px;
opacity: 1;
}
.google-font-overlay
{
position:fixed;
top:0;
left:0;
background:rgba(0,0,0,0.6);
width: 100%;
height: 100%;
z-index: 999999999;
}
.google-font-confirmation
{
position: fixed;
top: 40%;
left: 0;
right: 0;
margin: 0 auto;
width: 420px;
max-width: 90%;
padding: 35px 35px 15px;
background: white;
border: 1px solid #525252;
border-radius: 5px;
box-shadow: 0px 0px 7px #525252;
z-index: 99999999999;
}
.google-font-message .google-font-message-buttons:first-child {
margin-right: 20px;
/*
background: #e14d43;
border-color: #d02a21;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);
*/
background: #D6D6D6;
color: #333;
border: 1px solid #C2C2C2;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(182, 182, 182, 0.5),0 1px 0 rgba(0,0,0,.15);
}
.google-font-message .google-font-message-buttons:first-child:hover {
background: #dd362d;
border-color: #ba251e;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);
}
.google-font-confirmation-header h3
{
margin: 0;
padding: 0px 8px;
text-align: center;
}
.google-font-message
{
padding: 25px 0 10px;
display: block;
margin: 0 auto;
width: 220px;
}
.gfont-anchor-buttons
{
text-decoration: none;
position: absolute;
top: 10px;
right: 20px;
}
.gfont-anchor-buttons i
{
font-size: 28px;
}
#vc-gf-msg .updated
{
padding:10px;
}
.selected-font-subset-wrapper {
margin-top: 5px;
padding-top: 10px;
border-top: 1px solid #F7F7F7;
} | 0.143158 | 0.062245 |
.page-transition {
position: relative;
width: 100%;
height: 100%;
-webkit-animation-delay: .2s;
-moz-animation-delay: .2s;
animation-delay: .2s;
perspective: 1200px;
transform-style: preserve-3d;
}
/* move from / to */
.pt-page-moveFromLeft-init {
-webkit-animation: moveFromLeft .6s ease both;
-moz-animation: moveFromLeft .6s ease both;
animation: moveFromLeft .6s ease both;
}
.pt-page-moveFromRight-init {
-webkit-animation: moveFromRight .6s ease both;
-moz-animation: moveFromRight .6s ease both;
animation: moveFromRight .6s ease both;
}
.pt-page-moveFromTop-init {
-webkit-animation: moveFromTop .6s ease both;
-moz-animation: moveFromTop .6s ease both;
animation: moveFromTop .6s ease both;
}
.pt-page-moveFromBottom-init {
-webkit-animation: moveFromBottom .6s ease both;
-moz-animation: moveFromBottom .6s ease both;
animation: moveFromBottom .6s ease both;
}
/* fade */
.pt-page-fade-init {
-webkit-animation: fade .7s ease both;
-moz-animation: fade .7s ease both;
animation: fade .7s ease both;
}
/* move from / to and fade */
.pt-page-moveFromLeftFade-init {
-webkit-animation: moveFromLeftFade .7s ease both;
-moz-animation: moveFromLeftFade .7s ease both;
animation: moveFromLeftFade .7s ease both;
}
.pt-page-moveFromRightFade-init {
-webkit-animation: moveFromRightFade .7s ease both;
-moz-animation: moveFromRightFade .7s ease both;
animation: moveFromRightFade .7s ease both;
}
.pt-page-moveFromTopFade-init {
-webkit-animation: moveFromTopFade .7s ease both;
-moz-animation: moveFromTopFade .7s ease both;
animation: moveFromTopFade .7s ease both;
}
.pt-page-moveFromBottomFade-init {
-webkit-animation: moveFromBottomFade .7s ease both;
-moz-animation: moveFromBottomFade .7s ease both;
animation: moveFromBottomFade .7s ease both;
}
/********************************* keyframes **************************************/
/* move from / to */
@-webkit-keyframes moveFromLeft {
from {
-webkit-transform: translateX(-100%);
}
}
@-moz-keyframes moveFromLeft {
from {
-moz-transform: translateX(-100%);
}
}
@keyframes moveFromLeft {
from {
transform: translateX(-100%);
}
}
@-webkit-keyframes moveFromRight {
from {
-webkit-transform: translateX(100%);
}
}
@-moz-keyframes moveFromRight {
from {
-moz-transform: translateX(100%);
}
}
@keyframes moveFromRight {
from {
transform: translateX(100%);
}
}
@-webkit-keyframes moveFromTop {
from {
-webkit-transform: translateY(-100%);
}
}
@-moz-keyframes moveFromTop {
from {
-moz-transform: translateY(-100%);
}
}
@keyframes moveFromTop {
from {
transform: translateY(-100%);
}
}
@-webkit-keyframes moveFromBottom {
from {
-webkit-transform: translateY(100%);
}
}
@-moz-keyframes moveFromBottom {
from {
-moz-transform: translateY(100%);
}
}
@keyframes moveFromBottom {
from {
transform: translateY(100%);
}
}
/* fade */
@-webkit-keyframes fade {
to {
opacity: .3;
}
}
@-moz-keyframes fade {
to {
opacity: .3;
}
}
@keyframes fade {
to {
opacity: .3;
}
}
/* move from / to and fade */
@-webkit-keyframes moveFromLeftFade {
from {
-webkit-transform: translateX(-100%);
opacity: .3;
}
}
@-moz-keyframes moveFromLeftFade {
from {
-moz-transform: translateX(-100%);
opacity: .3;
}
}
@keyframes moveFromLeftFade {
from {
transform: translateX(-100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromRightFade {
from {
-webkit-transform: translateX(100%);
opacity: .3;
}
}
@-moz-keyframes moveFromRightFade {
from {
-moz-transform: translateX(100%);
opacity: .3;
}
}
@keyframes moveFromRightFade {
from {
transform: translateX(100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromTopFade {
from {
-webkit-transform: translateY(-100%);
opacity: .3;
}
}
@-moz-keyframes moveFromTopFade {
from {
-moz-transform: translateY(-100%);
opacity: .3;
}
}
@keyframes moveFromTopFade {
from {
transform: translateY(-100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromBottomFade {
from {
-webkit-transform: translateY(100%);
opacity: .3;
}
}
@-moz-keyframes moveFromBottomFade {
from {
-moz-transform: translateY(100%);
opacity: .3;
}
}
@keyframes moveFromBottomFade {
from {
transform: translateY(100%);
opacity: .3;
}
}
/* scale and fade */
.pt-page-scaleUp-init {
-webkit-animation: scaleUp .7s ease both;
-moz-animation: scaleUp .7s ease both;
animation: scaleUp .7s ease both;
}
.pt-page-scaleUpCenter-init {
-webkit-animation: scaleUpCenter .4s ease-out both;
-moz-animation: scaleUpCenter .4s ease-out both;
animation: scaleUpCenter .4s ease-out both;
}
/********************************* keyframes **************************************/
/* scale and fade */
@-webkit-keyframes scaleUp {
from {
-webkit-transform: scale(.8);
opacity: 0;
}
}
@-moz-keyframes scaleUp {
from {
-moz-transform: scale(.8);
opacity: 0;
}
}
@keyframes scaleUp {
from {
transform: scale(.8);
opacity: 0;
}
}
@-webkit-keyframes scaleUpCenter {
from {
-webkit-transform: scale(.7);
opacity: 0;
}
}
@-moz-keyframes scaleUpCenter {
from {
-moz-transform: scale(.7);
opacity: 0;
}
}
@keyframes scaleUpCenter {
from {
transform: scale(.7);
opacity: 0;
}
}
/* flip */
.pt-page-flipInLeft-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInLeft .5s both ease-out;
-moz-animation: flipInLeft .5s both ease-out;
animation: flipInLeft .5s both ease-out;
}
.pt-page-flipInRight-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInRight .5s both ease-out;
-moz-animation: flipInRight .5s both ease-out;
animation: flipInRight .5s both ease-out;
}
.pt-page-flipInBottom-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInBottom .5s both ease-out;
-moz-animation: flipInBottom .5s both ease-out;
animation: flipInBottom .5s both ease-out;
}
.pt-page-flipInTop-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInTop .5s both ease-out;
-moz-animation: flipInTop .5s both ease-out;
animation: flipInTop .5s both ease-out;
}
/* pull */
.pt-page-rotatePullRight-init {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePullRight .5s both ease;
-moz-animation: rotatePullRight .5s both ease;
animation: rotatePullRight .5s both ease;
}
.pt-page-rotatePullLeft-init {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-animation: rotatePullLeft .5s both ease;
-moz-animation: rotatePullLeft .5s both ease;
animation: rotatePullLeft .5s both ease;
}
.pt-page-rotatePullTop-init {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: rotatePullTop .5s both ease;
-moz-animation: rotatePullTop .5s both ease;
animation: rotatePullTop .5s both ease;
}
.pt-page-rotatePullBottom-init {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePullBottom .5s both ease;
-moz-animation: rotatePullBottom .5s both ease;
animation: rotatePullBottom .5s both ease;
}
/* unfold */
.pt-page-rotateUnfoldLeft-init {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotateUnfoldLeft .7s both ease;
-moz-animation: rotateUnfoldLeft .7s both ease;
animation: rotateUnfoldLeft .7s both ease;
}
.pt-page-rotateUnfoldRight-init {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-animation: rotateUnfoldRight .7s both ease;
-moz-animation: rotateUnfoldRight .7s both ease;
animation: rotateUnfoldRight .7s both ease;
}
.pt-page-rotateUnfoldTop-init {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotateUnfoldTop .7s both ease;
-moz-animation: rotateUnfoldTop .7s both ease;
animation: rotateUnfoldTop .7s both ease;
}
.pt-page-rotateUnfoldBottom-init {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: rotateUnfoldBottom .7s both ease;
-moz-animation: rotateUnfoldBottom .7s both ease;
animation: rotateUnfoldBottom .7s both ease;
}
@-webkit-keyframes flipInLeft {
from {
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@-moz-keyframes flipInLeft {
from {
-moz-transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@keyframes flipInLeft {
from {
transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInRight {
from {
-webkit-transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@-moz-keyframes flipInRight {
from {
-moz-transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@keyframes flipInRight {
from {
transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInBottom {
from {
-webkit-transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@-moz-keyframes flipInBottom {
from {
-moz-transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@keyframes flipInBottom {
from {
transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInTop {
from {
-webkit-transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
@-moz-keyframes flipInTop {
from {
-moz-transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
@keyframes flipInTop {
from {
transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
/* pull */
@-webkit-keyframes rotatePullRight {
from {
-webkit-transform: rotateY(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullRight {
from {
-moz-transform: rotateY(-90deg);
opacity: 0;
}
}
@keyframes rotatePullRight {
from {
transform: rotateY(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullLeft {
from {
-webkit-transform: rotateY(90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullLeft {
from {
-moz-transform: rotateY(90deg);
opacity: 0;
}
}
@keyframes rotatePullLeft {
from {
transform: rotateY(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullTop {
from {
-webkit-transform: rotateX(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullTop {
from {
-moz-transform: rotateX(-90deg);
opacity: 0;
}
}
@keyframes rotatePullTop {
from {
transform: rotateX(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullBottom {
from {
-webkit-transform: rotateX(90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullBottom {
from {
-moz-transform: rotateX(90deg);
opacity: 0;
}
}
@keyframes rotatePullBottom {
from {
transform: rotateX(90deg);
opacity: 0;
}
}
/* unfold */
@-webkit-keyframes rotateUnfoldLeft {
from {
-webkit-transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldLeft {
from {
-moz-transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldLeft {
from {
transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldRight {
from {
-webkit-transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldRight {
from {
-moz-transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldRight {
from {
transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldTop {
from {
-webkit-transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldTop {
from {
-moz-transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldTop {
from {
transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldBottom {
from {
-webkit-transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldBottom {
from {
-moz-transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldBottom {
from {
transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
/* animation delay classes */
.pt-page-delay100-init {
-webkit-animation-delay: .1s;
-moz-animation-delay: .1s;
animation-delay: .1s;
}
.pt-page-delay180-init {
-webkit-animation-delay: .180s;
-moz-animation-delay: .180s;
animation-delay: .180s;
}
.pt-page-delay200-init {
-webkit-animation-delay: .2s;
-moz-animation-delay: .2s;
animation-delay: .2s;
}
.pt-page-delay300-init {
-webkit-animation-delay: .3s;
-moz-animation-delay: .3s;
animation-delay: .3s;
}
.pt-page-delay400-init {
-webkit-animation-delay: .4s;
-moz-animation-delay: .4s;
animation-delay: .4s;
}
.pt-page-delay500-init {
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
animation-delay: .5s;
}
.pt-page-delay700-init {
-webkit-animation-delay: .7s;
-moz-animation-delay: .7s;
animation-delay: .7s;
}
.pt-page-delay1000-init {
-webkit-animation-delay: 1s;
-moz-animation-delay: 1s;
animation-delay: 1s;
} | assets/helpers/page-transitions.css |
.page-transition {
position: relative;
width: 100%;
height: 100%;
-webkit-animation-delay: .2s;
-moz-animation-delay: .2s;
animation-delay: .2s;
perspective: 1200px;
transform-style: preserve-3d;
}
/* move from / to */
.pt-page-moveFromLeft-init {
-webkit-animation: moveFromLeft .6s ease both;
-moz-animation: moveFromLeft .6s ease both;
animation: moveFromLeft .6s ease both;
}
.pt-page-moveFromRight-init {
-webkit-animation: moveFromRight .6s ease both;
-moz-animation: moveFromRight .6s ease both;
animation: moveFromRight .6s ease both;
}
.pt-page-moveFromTop-init {
-webkit-animation: moveFromTop .6s ease both;
-moz-animation: moveFromTop .6s ease both;
animation: moveFromTop .6s ease both;
}
.pt-page-moveFromBottom-init {
-webkit-animation: moveFromBottom .6s ease both;
-moz-animation: moveFromBottom .6s ease both;
animation: moveFromBottom .6s ease both;
}
/* fade */
.pt-page-fade-init {
-webkit-animation: fade .7s ease both;
-moz-animation: fade .7s ease both;
animation: fade .7s ease both;
}
/* move from / to and fade */
.pt-page-moveFromLeftFade-init {
-webkit-animation: moveFromLeftFade .7s ease both;
-moz-animation: moveFromLeftFade .7s ease both;
animation: moveFromLeftFade .7s ease both;
}
.pt-page-moveFromRightFade-init {
-webkit-animation: moveFromRightFade .7s ease both;
-moz-animation: moveFromRightFade .7s ease both;
animation: moveFromRightFade .7s ease both;
}
.pt-page-moveFromTopFade-init {
-webkit-animation: moveFromTopFade .7s ease both;
-moz-animation: moveFromTopFade .7s ease both;
animation: moveFromTopFade .7s ease both;
}
.pt-page-moveFromBottomFade-init {
-webkit-animation: moveFromBottomFade .7s ease both;
-moz-animation: moveFromBottomFade .7s ease both;
animation: moveFromBottomFade .7s ease both;
}
/********************************* keyframes **************************************/
/* move from / to */
@-webkit-keyframes moveFromLeft {
from {
-webkit-transform: translateX(-100%);
}
}
@-moz-keyframes moveFromLeft {
from {
-moz-transform: translateX(-100%);
}
}
@keyframes moveFromLeft {
from {
transform: translateX(-100%);
}
}
@-webkit-keyframes moveFromRight {
from {
-webkit-transform: translateX(100%);
}
}
@-moz-keyframes moveFromRight {
from {
-moz-transform: translateX(100%);
}
}
@keyframes moveFromRight {
from {
transform: translateX(100%);
}
}
@-webkit-keyframes moveFromTop {
from {
-webkit-transform: translateY(-100%);
}
}
@-moz-keyframes moveFromTop {
from {
-moz-transform: translateY(-100%);
}
}
@keyframes moveFromTop {
from {
transform: translateY(-100%);
}
}
@-webkit-keyframes moveFromBottom {
from {
-webkit-transform: translateY(100%);
}
}
@-moz-keyframes moveFromBottom {
from {
-moz-transform: translateY(100%);
}
}
@keyframes moveFromBottom {
from {
transform: translateY(100%);
}
}
/* fade */
@-webkit-keyframes fade {
to {
opacity: .3;
}
}
@-moz-keyframes fade {
to {
opacity: .3;
}
}
@keyframes fade {
to {
opacity: .3;
}
}
/* move from / to and fade */
@-webkit-keyframes moveFromLeftFade {
from {
-webkit-transform: translateX(-100%);
opacity: .3;
}
}
@-moz-keyframes moveFromLeftFade {
from {
-moz-transform: translateX(-100%);
opacity: .3;
}
}
@keyframes moveFromLeftFade {
from {
transform: translateX(-100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromRightFade {
from {
-webkit-transform: translateX(100%);
opacity: .3;
}
}
@-moz-keyframes moveFromRightFade {
from {
-moz-transform: translateX(100%);
opacity: .3;
}
}
@keyframes moveFromRightFade {
from {
transform: translateX(100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromTopFade {
from {
-webkit-transform: translateY(-100%);
opacity: .3;
}
}
@-moz-keyframes moveFromTopFade {
from {
-moz-transform: translateY(-100%);
opacity: .3;
}
}
@keyframes moveFromTopFade {
from {
transform: translateY(-100%);
opacity: .3;
}
}
@-webkit-keyframes moveFromBottomFade {
from {
-webkit-transform: translateY(100%);
opacity: .3;
}
}
@-moz-keyframes moveFromBottomFade {
from {
-moz-transform: translateY(100%);
opacity: .3;
}
}
@keyframes moveFromBottomFade {
from {
transform: translateY(100%);
opacity: .3;
}
}
/* scale and fade */
.pt-page-scaleUp-init {
-webkit-animation: scaleUp .7s ease both;
-moz-animation: scaleUp .7s ease both;
animation: scaleUp .7s ease both;
}
.pt-page-scaleUpCenter-init {
-webkit-animation: scaleUpCenter .4s ease-out both;
-moz-animation: scaleUpCenter .4s ease-out both;
animation: scaleUpCenter .4s ease-out both;
}
/********************************* keyframes **************************************/
/* scale and fade */
@-webkit-keyframes scaleUp {
from {
-webkit-transform: scale(.8);
opacity: 0;
}
}
@-moz-keyframes scaleUp {
from {
-moz-transform: scale(.8);
opacity: 0;
}
}
@keyframes scaleUp {
from {
transform: scale(.8);
opacity: 0;
}
}
@-webkit-keyframes scaleUpCenter {
from {
-webkit-transform: scale(.7);
opacity: 0;
}
}
@-moz-keyframes scaleUpCenter {
from {
-moz-transform: scale(.7);
opacity: 0;
}
}
@keyframes scaleUpCenter {
from {
transform: scale(.7);
opacity: 0;
}
}
/* flip */
.pt-page-flipInLeft-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInLeft .5s both ease-out;
-moz-animation: flipInLeft .5s both ease-out;
animation: flipInLeft .5s both ease-out;
}
.pt-page-flipInRight-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInRight .5s both ease-out;
-moz-animation: flipInRight .5s both ease-out;
animation: flipInRight .5s both ease-out;
}
.pt-page-flipInBottom-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInBottom .5s both ease-out;
-moz-animation: flipInBottom .5s both ease-out;
animation: flipInBottom .5s both ease-out;
}
.pt-page-flipInTop-init {
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInTop .5s both ease-out;
-moz-animation: flipInTop .5s both ease-out;
animation: flipInTop .5s both ease-out;
}
/* pull */
.pt-page-rotatePullRight-init {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePullRight .5s both ease;
-moz-animation: rotatePullRight .5s both ease;
animation: rotatePullRight .5s both ease;
}
.pt-page-rotatePullLeft-init {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-animation: rotatePullLeft .5s both ease;
-moz-animation: rotatePullLeft .5s both ease;
animation: rotatePullLeft .5s both ease;
}
.pt-page-rotatePullTop-init {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: rotatePullTop .5s both ease;
-moz-animation: rotatePullTop .5s both ease;
animation: rotatePullTop .5s both ease;
}
.pt-page-rotatePullBottom-init {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePullBottom .5s both ease;
-moz-animation: rotatePullBottom .5s both ease;
animation: rotatePullBottom .5s both ease;
}
/* unfold */
.pt-page-rotateUnfoldLeft-init {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotateUnfoldLeft .7s both ease;
-moz-animation: rotateUnfoldLeft .7s both ease;
animation: rotateUnfoldLeft .7s both ease;
}
.pt-page-rotateUnfoldRight-init {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-animation: rotateUnfoldRight .7s both ease;
-moz-animation: rotateUnfoldRight .7s both ease;
animation: rotateUnfoldRight .7s both ease;
}
.pt-page-rotateUnfoldTop-init {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotateUnfoldTop .7s both ease;
-moz-animation: rotateUnfoldTop .7s both ease;
animation: rotateUnfoldTop .7s both ease;
}
.pt-page-rotateUnfoldBottom-init {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: rotateUnfoldBottom .7s both ease;
-moz-animation: rotateUnfoldBottom .7s both ease;
animation: rotateUnfoldBottom .7s both ease;
}
@-webkit-keyframes flipInLeft {
from {
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@-moz-keyframes flipInLeft {
from {
-moz-transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@keyframes flipInLeft {
from {
transform: translateZ(-1000px) rotateY(-90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInRight {
from {
-webkit-transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@-moz-keyframes flipInRight {
from {
-moz-transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@keyframes flipInRight {
from {
transform: translateZ(-1000px) rotateY(90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInBottom {
from {
-webkit-transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@-moz-keyframes flipInBottom {
from {
-moz-transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@keyframes flipInBottom {
from {
transform: translateZ(-1000px) rotateX(-90deg);
opacity: .2;
}
}
@-webkit-keyframes flipInTop {
from {
-webkit-transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
@-moz-keyframes flipInTop {
from {
-moz-transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
@keyframes flipInTop {
from {
transform: translateZ(-1000px) rotateX(90deg);
opacity: .2;
}
}
/* pull */
@-webkit-keyframes rotatePullRight {
from {
-webkit-transform: rotateY(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullRight {
from {
-moz-transform: rotateY(-90deg);
opacity: 0;
}
}
@keyframes rotatePullRight {
from {
transform: rotateY(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullLeft {
from {
-webkit-transform: rotateY(90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullLeft {
from {
-moz-transform: rotateY(90deg);
opacity: 0;
}
}
@keyframes rotatePullLeft {
from {
transform: rotateY(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullTop {
from {
-webkit-transform: rotateX(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullTop {
from {
-moz-transform: rotateX(-90deg);
opacity: 0;
}
}
@keyframes rotatePullTop {
from {
transform: rotateX(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotatePullBottom {
from {
-webkit-transform: rotateX(90deg);
opacity: 0;
}
}
@-moz-keyframes rotatePullBottom {
from {
-moz-transform: rotateX(90deg);
opacity: 0;
}
}
@keyframes rotatePullBottom {
from {
transform: rotateX(90deg);
opacity: 0;
}
}
/* unfold */
@-webkit-keyframes rotateUnfoldLeft {
from {
-webkit-transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldLeft {
from {
-moz-transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldLeft {
from {
transform: translateX(-100%) rotateY(-90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldRight {
from {
-webkit-transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldRight {
from {
-moz-transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldRight {
from {
transform: translateX(100%) rotateY(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldTop {
from {
-webkit-transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldTop {
from {
-moz-transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldTop {
from {
transform: translateY(-100%) rotateX(90deg);
opacity: 0;
}
}
@-webkit-keyframes rotateUnfoldBottom {
from {
-webkit-transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateUnfoldBottom {
from {
-moz-transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
@keyframes rotateUnfoldBottom {
from {
transform: translateY(100%) rotateX(-90deg);
opacity: 0;
}
}
/* animation delay classes */
.pt-page-delay100-init {
-webkit-animation-delay: .1s;
-moz-animation-delay: .1s;
animation-delay: .1s;
}
.pt-page-delay180-init {
-webkit-animation-delay: .180s;
-moz-animation-delay: .180s;
animation-delay: .180s;
}
.pt-page-delay200-init {
-webkit-animation-delay: .2s;
-moz-animation-delay: .2s;
animation-delay: .2s;
}
.pt-page-delay300-init {
-webkit-animation-delay: .3s;
-moz-animation-delay: .3s;
animation-delay: .3s;
}
.pt-page-delay400-init {
-webkit-animation-delay: .4s;
-moz-animation-delay: .4s;
animation-delay: .4s;
}
.pt-page-delay500-init {
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
animation-delay: .5s;
}
.pt-page-delay700-init {
-webkit-animation-delay: .7s;
-moz-animation-delay: .7s;
animation-delay: .7s;
}
.pt-page-delay1000-init {
-webkit-animation-delay: 1s;
-moz-animation-delay: 1s;
animation-delay: 1s;
} | 0.439507 | 0.047713 |
:root{
--cor1: #fff;
--cor2: rgb(221, 221, 221);
--cor3: #333;
--cor4: rgb(255, 196, 0);
--cor5: rgb(67, 51, 160);
}
*{
margin: 0px;
padding: 0px;
}
body{
font-family: ;
background-color: var(--cor2);
}
header{
background-color: var(--cor3);
max-width: 900px;
margin: auto;
box-shadow: 0px 0px 6px var(--cor3);
}
header > div{
width: 120px;
height: 120px;
background-color: yellow;
background-image: url('../imagens/perfil1B.jpg');
background-size: 120px;
border-radius: 50%;
transition: 1s;
margin: auto;
margin-top: -60px;
border: 6px solid var(--cor1)
}
header > div:hover{
background-image: url('../imagens/perfil1A.jpg');
background-size: 120px;
transition: 2s;
border: 6px solid var(--cor4);
box-shadow: 0px 0px 15px var(--cor4);
}
header > h1{
background-color: var(--cor3);
height: 200px;
color: var(--cor2);
text-align: center;
padding-top: 100px;
font-family: cursive;
}
/* menu */
nav{
background-color: var(--cor3);
}
ul li{
list-style: none;
display: inline-block;
padding: 20px;
}
ul li a{
color: var(--cor4);
text-decoration: none;
font-size: 1.5em;
}
ul li a:hover{
background-color:var(--cor4);
padding: 20px;
color: var( --cor3);
transition: 0.3s;
}
main{
max-width: 900px;
background-color: var(--cor1);
margin: auto;
}
footer{
background-color: var(--cor3);
height: 50px;
text-align: center;
color: var(--cor1);
}
footer a{
color: var(--cor1);
text-decoration: none;
}
footer a:hover{
color: var(--cor4);
text-decoration: underline;
}
/* curriculum */
article{
padding: 20px;
}
article > h2{
padding-top: 20px;
transition: 1s;
color: var(--cor7);
border-bottom: 2px solid var(--cor5);
width: 160px;
transition: 1s;
}
article > h2:hover{
width: 100%;
transition: 1s;
color: var(--cor5);
border-bottom: 2px solid var(--cor2);
}
article >{
padding-top: 10px;
}
article ol{
padding-left: 30px;
padding-top: 10px;
}
article ol li{
padding: 5px;
}
article ol li:hover{
text-decoration: underline;
color: var(--cor4);
} | alunos/gustavocastro/css/style.css | :root{
--cor1: #fff;
--cor2: rgb(221, 221, 221);
--cor3: #333;
--cor4: rgb(255, 196, 0);
--cor5: rgb(67, 51, 160);
}
*{
margin: 0px;
padding: 0px;
}
body{
font-family: ;
background-color: var(--cor2);
}
header{
background-color: var(--cor3);
max-width: 900px;
margin: auto;
box-shadow: 0px 0px 6px var(--cor3);
}
header > div{
width: 120px;
height: 120px;
background-color: yellow;
background-image: url('../imagens/perfil1B.jpg');
background-size: 120px;
border-radius: 50%;
transition: 1s;
margin: auto;
margin-top: -60px;
border: 6px solid var(--cor1)
}
header > div:hover{
background-image: url('../imagens/perfil1A.jpg');
background-size: 120px;
transition: 2s;
border: 6px solid var(--cor4);
box-shadow: 0px 0px 15px var(--cor4);
}
header > h1{
background-color: var(--cor3);
height: 200px;
color: var(--cor2);
text-align: center;
padding-top: 100px;
font-family: cursive;
}
/* menu */
nav{
background-color: var(--cor3);
}
ul li{
list-style: none;
display: inline-block;
padding: 20px;
}
ul li a{
color: var(--cor4);
text-decoration: none;
font-size: 1.5em;
}
ul li a:hover{
background-color:var(--cor4);
padding: 20px;
color: var( --cor3);
transition: 0.3s;
}
main{
max-width: 900px;
background-color: var(--cor1);
margin: auto;
}
footer{
background-color: var(--cor3);
height: 50px;
text-align: center;
color: var(--cor1);
}
footer a{
color: var(--cor1);
text-decoration: none;
}
footer a:hover{
color: var(--cor4);
text-decoration: underline;
}
/* curriculum */
article{
padding: 20px;
}
article > h2{
padding-top: 20px;
transition: 1s;
color: var(--cor7);
border-bottom: 2px solid var(--cor5);
width: 160px;
transition: 1s;
}
article > h2:hover{
width: 100%;
transition: 1s;
color: var(--cor5);
border-bottom: 2px solid var(--cor2);
}
article >{
padding-top: 10px;
}
article ol{
padding-left: 30px;
padding-top: 10px;
}
article ol li{
padding: 5px;
}
article ol li:hover{
text-decoration: underline;
color: var(--cor4);
} | 0.346431 | 0.135546 |
.pmeta_bubble_bg {
background: rgb(229, 236, 249); margin-bottom: 0.6em;
}
.pmeta {
text-align: left;
}
.pmeta th {
vertical-align: top;
}
.pmeta td {
vertical-align: top;
}
.pmeta ul {
margin: 0px; padding: 0px;
}
.pmeta li {
padding: 0px 0px 2px; list-style-type: none;
}
#wikipage {
background: rgb(248, 248, 248); padding-bottom: 10px;
}
#wikipage #wikimaincol {
border: 1px solid rgb(204, 204, 204); border-image: none;
}
#wikimaincol {
padding: 5px 25px 10px 10px; min-width: 64em; background-color: rgb(255, 255, 255);
}
#wikiheader {
padding-top: 10px; margin-bottom: 12px;
}
#wikicontent h1 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h2 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h3 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h1 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h2 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h3 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h3 {
margin: 0px;
}
#wikipreview h3 {
margin: 0px;
}
#wikicontent ul {
padding-left: 25px; max-width: 62em;
}
#wikipreview ul {
padding-left: 25px; max-width: 62em;
}
#wikicontent ol {
padding-left: 25px; max-width: 62em;
}
#wikipreview ol {
padding-left: 25px; max-width: 62em;
}
#wikicontent li {
margin-bottom: 0.3em;
}
#wikipreview li {
margin-bottom: 0.3em;
}
#wikicontent p {
line-height: 1.25em; max-width: 64em;
}
#wikipreview p {
line-height: 1.25em; max-width: 64em;
}
#wikicontent hr {
width: 100%; color: rgb(204, 204, 204); background-color: rgb(204, 204, 204);
}
#wikipreview hr {
width: 100%; color: rgb(204, 204, 204); background-color: rgb(204, 204, 204);
}
#wikicontent img {
max-width: 100%;
}
#wikipreview img {
max-width: 100%;
}
#wikiauthor {
text-align: right; clear: both; font-size: x-small;
}
.wikitable {
border: 1px solid rgb(204, 204, 204); border-image: none; border-spacing: 0;
}
.gadget-title {
margin-bottom: 2px;
}
a.section_anchor::before {
content: "\00B6";
}
a.section_anchor {
font-size: 85%; font-weight: lighter; text-decoration: none; margin-left: 0.7em; display: none;
}
h1:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h2:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h3:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h4:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h5:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h6:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h1 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h2 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h3 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h4 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h5 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h6 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
#wikicontent code {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
tt {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikicontent pre {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikipreview code {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
tt {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikipreview pre {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
pre.prettyprint {
padding: 0.5em; overflow: auto; font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%;
}
#wikicontent pre.prettyprint {
max-width: 70em; background-color: rgb(238, 238, 238);
}
#wikipreview pre.prettyprint {
max-width: 70em; background-color: rgb(238, 238, 238);
}
#wikicontent blockquote {
max-width: 60em;
}
#wikipreview blockquote {
max-width: 60em;
}
blockquote {
margin: 20px;
}
.issuedescription pre {
white-space: pre-wrap;
}
.issuecomment pre {
white-space: pre-wrap;
}
.prettyprint .str {
color: rgb(0, 136, 0);
}
.prettyprint .kwd {
color: rgb(0, 0, 136);
}
.prettyprint .com {
color: rgb(136, 0, 0);
}
.prettyprint .typ {
color: rgb(102, 0, 102);
}
.prettyprint .lit {
color: rgb(0, 102, 102);
}
.prettyprint .pun {
color: rgb(102, 102, 0);
}
.prettyprint .pln {
color: rgb(0, 0, 0);
}
.prettyprint .tag {
color: rgb(0, 0, 136);
}
.prettyprint .atn {
color: rgb(102, 0, 102);
}
.prettyprint .atv {
color: rgb(0, 136, 0);
}
.prettyprint .dec {
color: rgb(102, 0, 102);
}
@media print
{
.prettyprint .str {
color: rgb(0, 102, 0);
}
.prettyprint .kwd {
color: rgb(0, 0, 102); font-weight: bold;
}
.prettyprint .com {
color: rgb(102, 0, 0); font-style: italic;
}
.prettyprint .typ {
color: rgb(68, 0, 68); font-weight: bold;
}
.prettyprint .lit {
color: rgb(0, 68, 68);
}
.prettyprint .pun {
color: rgb(68, 68, 0);
}
.prettyprint .pln {
color: rgb(0, 0, 0);
}
.prettyprint .tag {
color: rgb(0, 0, 102); font-weight: bold;
}
.prettyprint .atn {
color: rgb(68, 0, 68);
}
.prettyprint .atv {
color: rgb(0, 102, 0);
}
}
.closed_ref {
text-decoration: line-through;
}
.notes {
background: rgb(255, 255, 204); border-width: 0px 1px 1px 0px; border-style: solid; border-color: rgb(153, 153, 153); padding: 2px; border-image: none; width: 818px;
}
.rowmajor {
width: 700px;
}
.rowmajor th {
text-align: right;
}
.labelediting input {
margin: 0px 3px 4px 0px;
}
.labelediting input {
color: rgb(0, 102, 0);
}
.collapse .ifExpand {
display: none;
}
.expand .ifCollapse {
display: none;
}
.inplace input {
width: 100%;
}
.inplace td {
border: 0px currentColor; border-image: none;
}
#issueheader {
background: rgb(229, 236, 249); margin: 0.5em 0px 0em; border: 3px solid rgb(229, 236, 249); border-image: none;
}
#issueheader td {
background: rgb(229, 236, 249);
}
.closed_colors #issueheader {
background: rgb(221, 221, 221); border-color: rgb(221, 221, 221);
}
.closed_colors #issueheader td {
background: rgb(221, 221, 221);
}
.issuepage {
margin-top: 0px;
}
.issuepage td {
padding: 0.5em 0.5em 0.5em 0px;
}
.issuecomment {
padding-top: 0.5em; border-top-color: rgb(229, 236, 249); border-top-width: 3px; border-top-style: solid;
}
.closed_colors .issuecomment {
border-color: rgb(221, 221, 221);
}
.role_label {
padding: 2px 4px; border-radius: 3px; color: white; line-height: 14px; font-size: 75%; font-weight: bold; display: inline-block; background-color: rgb(136, 170, 238);
}
.issuedescription pre {
padding-left: 0.7em; max-width: 80em;
}
.issuecomment pre {
padding-left: 0.7em; max-width: 80em;
}
.issuedescription pre b {
padding: 3px 0px; font-size: 110%; font-weight: bolder;
}
.issuecomment pre b {
padding: 3px 0px; font-size: 110%; font-weight: bolder;
}
.author {
padding-left: 0.7em;
}
#issuemeta {
width: 12em; font-size: 95%; vertical-align: top; border-right-color: rgb(229, 236, 249); border-right-width: 3px; border-right-style: solid;
}
.closed_colors #issuemeta {
border-color: rgb(221, 221, 221);
}
#issuemeta table tr.hover a {
text-decoration: underline;
}
#issuemeta table td {
margin: 0px; padding: 5px 0px 0px;
}
#issuemeta table th {
margin: 0px; padding: 5px 0px 0px;
}
.rel_issues a {
white-space: nowrap;
}
.issue_restrictions {
padding: 2px 4px; border: 1px solid rgb(204, 204, 204); border-image: none; min-width: 14em; background-color: rgb(249, 237, 190);
}
.issue_restrictions .restrictions_header {
padding: 0px 0px 2px; text-align: center; font-weight: bold;
}
.issue_restrictions ul {
margin: 0px; padding: 0px 2px; list-style-position: inside;
}
.issue_restrictions .other_restriction {
white-space: nowrap;
}
.oldvalue {
color: rgb(102, 102, 102); font-style: italic; left-margin: 1em;
}
.updates {
background: rgb(229, 236, 249); margin: 1em 0px 0.5em 0.7em; width: 80%; font-size: 90%;
}
.closed_colors .updates {
background: rgb(200, 200, 200);
}
.fakelink {
color: rgb(0, 0, 204); text-decoration: underline; white-space: nowrap; cursor: pointer;
}
.undef {
color: rgb(102, 102, 102);
}
table.advquery {
border: 3px solid rgb(229, 236, 249); border-image: none;
}
table.issueimport {
border: 3px solid rgb(229, 236, 249); border-image: none;
}
table.advquery td {
padding: 2px; white-space: nowrap;
}
table.issueimport td {
padding: 2px; white-space: nowrap;
}
.focus td {
background: rgb(229, 236, 249);
}
.eg {
color: rgb(102, 102, 102); font-size: 90%;
}
#submit {
font-weight: bold;
}
div td .novel {
color: rgb(68, 51, 0);
}
div td .blockingsubmit {
color: rgb(170, 0, 51);
}
div td .exclconflict {
color: rgb(170, 0, 51);
}
div td .questionmark {
color: rgb(170, 0, 51);
}
.delcom {
background: rgb(232, 232, 232);
}
.numberentry {
text-align: right;
}
.pscolumnl {
border-right-color: rgb(233, 233, 233); border-right-width: 2px; border-right-style: solid; min-width: 15em;
}
.pscontent {
width: 100%; vertical-align: top;
}
.psicon {
padding-top: 5px; padding-left: 5px;
}
.psdescription {
padding: 0px 10px !important; width: 100%;
}
.pslist {
margin: 0px; padding-left: 34px; list-style-type: none;
}
.phead {
margin: 5px 5px 4px; padding: 3px 6px; height: 15px; font-weight: bold; white-space: nowrap; background-color: rgb(229, 237, 249);
}
.pfeatured {
background-color: rgb(221, 248, 204);
}
.psmeta {
margin: 0px 5px 0px 0px; padding: 0px;
}
.psline {
margin: 5px 5px 10px 10px; border: 0px currentColor; border-image: none; height: 1px; background-color: rgb(233, 233, 233);
}
.psgap {
height: 1em;
}
.nowrap {
white-space: nowrap;
}
#derived_labels_target .label {
font-weight: bold;
}
#derived_labels_target .label:hover {
text-decoration: none;
} | outlog003 (1)/ph_detail.css | .pmeta_bubble_bg {
background: rgb(229, 236, 249); margin-bottom: 0.6em;
}
.pmeta {
text-align: left;
}
.pmeta th {
vertical-align: top;
}
.pmeta td {
vertical-align: top;
}
.pmeta ul {
margin: 0px; padding: 0px;
}
.pmeta li {
padding: 0px 0px 2px; list-style-type: none;
}
#wikipage {
background: rgb(248, 248, 248); padding-bottom: 10px;
}
#wikipage #wikimaincol {
border: 1px solid rgb(204, 204, 204); border-image: none;
}
#wikimaincol {
padding: 5px 25px 10px 10px; min-width: 64em; background-color: rgb(255, 255, 255);
}
#wikiheader {
padding-top: 10px; margin-bottom: 12px;
}
#wikicontent h1 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h2 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h3 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h1 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h2 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikipreview h3 {
background: none; border: 0px currentColor; border-image: none; padding-left: 0px; max-width: 700px;
}
#wikicontent h3 {
margin: 0px;
}
#wikipreview h3 {
margin: 0px;
}
#wikicontent ul {
padding-left: 25px; max-width: 62em;
}
#wikipreview ul {
padding-left: 25px; max-width: 62em;
}
#wikicontent ol {
padding-left: 25px; max-width: 62em;
}
#wikipreview ol {
padding-left: 25px; max-width: 62em;
}
#wikicontent li {
margin-bottom: 0.3em;
}
#wikipreview li {
margin-bottom: 0.3em;
}
#wikicontent p {
line-height: 1.25em; max-width: 64em;
}
#wikipreview p {
line-height: 1.25em; max-width: 64em;
}
#wikicontent hr {
width: 100%; color: rgb(204, 204, 204); background-color: rgb(204, 204, 204);
}
#wikipreview hr {
width: 100%; color: rgb(204, 204, 204); background-color: rgb(204, 204, 204);
}
#wikicontent img {
max-width: 100%;
}
#wikipreview img {
max-width: 100%;
}
#wikiauthor {
text-align: right; clear: both; font-size: x-small;
}
.wikitable {
border: 1px solid rgb(204, 204, 204); border-image: none; border-spacing: 0;
}
.gadget-title {
margin-bottom: 2px;
}
a.section_anchor::before {
content: "\00B6";
}
a.section_anchor {
font-size: 85%; font-weight: lighter; text-decoration: none; margin-left: 0.7em; display: none;
}
h1:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h2:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h3:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h4:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h5:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h6:hover a.section_anchor {
color: rgb(187, 187, 187); display: inline;
}
h1 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h2 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h3 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h4 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h5 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
h6 a.section_anchor:hover {
color: rgb(51, 51, 204);
}
#wikicontent code {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
tt {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikicontent pre {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikipreview code {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
tt {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
#wikipreview pre {
font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%; max-width: 66em;
}
pre.prettyprint {
padding: 0.5em; overflow: auto; font-family: Monaco, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Lucida Console", monospace; font-size: 93%;
}
#wikicontent pre.prettyprint {
max-width: 70em; background-color: rgb(238, 238, 238);
}
#wikipreview pre.prettyprint {
max-width: 70em; background-color: rgb(238, 238, 238);
}
#wikicontent blockquote {
max-width: 60em;
}
#wikipreview blockquote {
max-width: 60em;
}
blockquote {
margin: 20px;
}
.issuedescription pre {
white-space: pre-wrap;
}
.issuecomment pre {
white-space: pre-wrap;
}
.prettyprint .str {
color: rgb(0, 136, 0);
}
.prettyprint .kwd {
color: rgb(0, 0, 136);
}
.prettyprint .com {
color: rgb(136, 0, 0);
}
.prettyprint .typ {
color: rgb(102, 0, 102);
}
.prettyprint .lit {
color: rgb(0, 102, 102);
}
.prettyprint .pun {
color: rgb(102, 102, 0);
}
.prettyprint .pln {
color: rgb(0, 0, 0);
}
.prettyprint .tag {
color: rgb(0, 0, 136);
}
.prettyprint .atn {
color: rgb(102, 0, 102);
}
.prettyprint .atv {
color: rgb(0, 136, 0);
}
.prettyprint .dec {
color: rgb(102, 0, 102);
}
@media print
{
.prettyprint .str {
color: rgb(0, 102, 0);
}
.prettyprint .kwd {
color: rgb(0, 0, 102); font-weight: bold;
}
.prettyprint .com {
color: rgb(102, 0, 0); font-style: italic;
}
.prettyprint .typ {
color: rgb(68, 0, 68); font-weight: bold;
}
.prettyprint .lit {
color: rgb(0, 68, 68);
}
.prettyprint .pun {
color: rgb(68, 68, 0);
}
.prettyprint .pln {
color: rgb(0, 0, 0);
}
.prettyprint .tag {
color: rgb(0, 0, 102); font-weight: bold;
}
.prettyprint .atn {
color: rgb(68, 0, 68);
}
.prettyprint .atv {
color: rgb(0, 102, 0);
}
}
.closed_ref {
text-decoration: line-through;
}
.notes {
background: rgb(255, 255, 204); border-width: 0px 1px 1px 0px; border-style: solid; border-color: rgb(153, 153, 153); padding: 2px; border-image: none; width: 818px;
}
.rowmajor {
width: 700px;
}
.rowmajor th {
text-align: right;
}
.labelediting input {
margin: 0px 3px 4px 0px;
}
.labelediting input {
color: rgb(0, 102, 0);
}
.collapse .ifExpand {
display: none;
}
.expand .ifCollapse {
display: none;
}
.inplace input {
width: 100%;
}
.inplace td {
border: 0px currentColor; border-image: none;
}
#issueheader {
background: rgb(229, 236, 249); margin: 0.5em 0px 0em; border: 3px solid rgb(229, 236, 249); border-image: none;
}
#issueheader td {
background: rgb(229, 236, 249);
}
.closed_colors #issueheader {
background: rgb(221, 221, 221); border-color: rgb(221, 221, 221);
}
.closed_colors #issueheader td {
background: rgb(221, 221, 221);
}
.issuepage {
margin-top: 0px;
}
.issuepage td {
padding: 0.5em 0.5em 0.5em 0px;
}
.issuecomment {
padding-top: 0.5em; border-top-color: rgb(229, 236, 249); border-top-width: 3px; border-top-style: solid;
}
.closed_colors .issuecomment {
border-color: rgb(221, 221, 221);
}
.role_label {
padding: 2px 4px; border-radius: 3px; color: white; line-height: 14px; font-size: 75%; font-weight: bold; display: inline-block; background-color: rgb(136, 170, 238);
}
.issuedescription pre {
padding-left: 0.7em; max-width: 80em;
}
.issuecomment pre {
padding-left: 0.7em; max-width: 80em;
}
.issuedescription pre b {
padding: 3px 0px; font-size: 110%; font-weight: bolder;
}
.issuecomment pre b {
padding: 3px 0px; font-size: 110%; font-weight: bolder;
}
.author {
padding-left: 0.7em;
}
#issuemeta {
width: 12em; font-size: 95%; vertical-align: top; border-right-color: rgb(229, 236, 249); border-right-width: 3px; border-right-style: solid;
}
.closed_colors #issuemeta {
border-color: rgb(221, 221, 221);
}
#issuemeta table tr.hover a {
text-decoration: underline;
}
#issuemeta table td {
margin: 0px; padding: 5px 0px 0px;
}
#issuemeta table th {
margin: 0px; padding: 5px 0px 0px;
}
.rel_issues a {
white-space: nowrap;
}
.issue_restrictions {
padding: 2px 4px; border: 1px solid rgb(204, 204, 204); border-image: none; min-width: 14em; background-color: rgb(249, 237, 190);
}
.issue_restrictions .restrictions_header {
padding: 0px 0px 2px; text-align: center; font-weight: bold;
}
.issue_restrictions ul {
margin: 0px; padding: 0px 2px; list-style-position: inside;
}
.issue_restrictions .other_restriction {
white-space: nowrap;
}
.oldvalue {
color: rgb(102, 102, 102); font-style: italic; left-margin: 1em;
}
.updates {
background: rgb(229, 236, 249); margin: 1em 0px 0.5em 0.7em; width: 80%; font-size: 90%;
}
.closed_colors .updates {
background: rgb(200, 200, 200);
}
.fakelink {
color: rgb(0, 0, 204); text-decoration: underline; white-space: nowrap; cursor: pointer;
}
.undef {
color: rgb(102, 102, 102);
}
table.advquery {
border: 3px solid rgb(229, 236, 249); border-image: none;
}
table.issueimport {
border: 3px solid rgb(229, 236, 249); border-image: none;
}
table.advquery td {
padding: 2px; white-space: nowrap;
}
table.issueimport td {
padding: 2px; white-space: nowrap;
}
.focus td {
background: rgb(229, 236, 249);
}
.eg {
color: rgb(102, 102, 102); font-size: 90%;
}
#submit {
font-weight: bold;
}
div td .novel {
color: rgb(68, 51, 0);
}
div td .blockingsubmit {
color: rgb(170, 0, 51);
}
div td .exclconflict {
color: rgb(170, 0, 51);
}
div td .questionmark {
color: rgb(170, 0, 51);
}
.delcom {
background: rgb(232, 232, 232);
}
.numberentry {
text-align: right;
}
.pscolumnl {
border-right-color: rgb(233, 233, 233); border-right-width: 2px; border-right-style: solid; min-width: 15em;
}
.pscontent {
width: 100%; vertical-align: top;
}
.psicon {
padding-top: 5px; padding-left: 5px;
}
.psdescription {
padding: 0px 10px !important; width: 100%;
}
.pslist {
margin: 0px; padding-left: 34px; list-style-type: none;
}
.phead {
margin: 5px 5px 4px; padding: 3px 6px; height: 15px; font-weight: bold; white-space: nowrap; background-color: rgb(229, 237, 249);
}
.pfeatured {
background-color: rgb(221, 248, 204);
}
.psmeta {
margin: 0px 5px 0px 0px; padding: 0px;
}
.psline {
margin: 5px 5px 10px 10px; border: 0px currentColor; border-image: none; height: 1px; background-color: rgb(233, 233, 233);
}
.psgap {
height: 1em;
}
.nowrap {
white-space: nowrap;
}
#derived_labels_target .label {
font-weight: bold;
}
#derived_labels_target .label:hover {
text-decoration: none;
} | 0.425009 | 0.103794 |
.discussion {
&__heading {
display: flex;
padding: 22px 0 8px;
margin: 0 17px 0 20px;
border-bottom: solid 2px var(--silver2);
&-item {
&:first-child {
width: 21px;
min-width: 21px;
max-width: 21px;
}
&:nth-child(2) {
width: 540px;
min-width: 540px;
max-width: 540px;
@media (max-width: 1199px) {
width: 342px;
max-width: 342px;
min-width: 342px;
}
}
}
&_active {
margin-bottom: 8px;
.discussion__heading-item {
&:nth-child(2) {
width: unset;
min-width: unset;
max-width: unset;
@media (max-width: 1199px) {
width: 100%;
min-width: 100%;
max-width: 100%;
}
}
&:nth-child(3) {
display: none;
}
}
}
}
&__item {
position: relative;
z-index: 1;
display: flex;
align-items: center;
padding: 12px 0px 13px 21px;
border-bottom: 1px solid var(--silver2);
cursor: pointer;
margin-right: 11px;
&:hover, &_active {
background-color: var(--grey);
margin-left: -17px;
padding-left: 35px;
padding-right: 11px;
margin-right: 0;
border-left: 3px solid var(--twilight);
border-bottom: 1px solid transparent;
.discussion__item-arrow-icon {
color: var(--carnation2);
}
}
&_opened {
.discussion__info {
width: calc(100% - 60px);
min-width: calc(100% - 60px);
}
}
&-arrow-icon {
width: 11px;
height: 9px;
color: var(--cool_grey);
transform: rotate(-90deg);
cursor: pointer;
&:hover {
color: var(--carnation2);
}
&:active {
color: var(--lipstick);
}
&_active {
color: var(--reddish_pink);
}
}
&-setting-icon {
width: 54px;
height: 40px;
color: var(--reddish_pink);
cursor: pointer;
&:hover {
color: var(--carnation2);
}
&:active {
color: var(--lipstick);
}
&.is-open {
transform: scale(1, -1);
}
}
&-open-sidebar {
padding: 12px 5px;
cursor: pointer;
&:hover {
.discussion__item-arrow-icon {
color: var(--carnation2);
}
}
}
}
&__info {
width: 540px;
min-width: 540px;
max-width: 540px;
@media (max-width: 1199px) {
width: 342px;
max-width: 342px;
min-width: 342px;
}
&-name {
}
&-number {
}
}
&__hidden-items {
display: flex;
align-items: center;
}
&__author {
width: 276px;
&-name {
}
&-date-time {
}
}
&__functional-elements {
display: flex;
align-items: center;
width: 116px;
}
&__functions {
width: 16px;
margin-right: 20px;
&-icon {
width: 15px;
height: 15px;
color: var(--cool_grey);
}
}
&__comment {
color: var(--cool_grey);
width: 35px;
margin-right: 13px;
&:hover,
&:focus,
&:active {
text-decoration: none;
}
&-icon {
color: var(--cool_grey);
width: 14px;
margin: 2px 4px 0 0;
&:hover {
color: var(--carnation2);
}
}
&-quantity {
top: 0;
}
}
&__favorites {
width: 15px;
height: 15px;
margin-right: 18px;
position: relative;
&-icon {
position: absolute;
top: 0;
width: 15px;
height: 15px;
cursor: pointer;
color: var(--twilight);
&:hover {
color: var(--carnation2);
}
}
}
&__messages {
min-width: 20px;
height: 20px;
font-size: 11px;
background: var(--twilight);
color: var(--white);
border-radius: 50%;
padding: 2px 1px 0 0;
text-align: center;
margin-right: 13px;
&_active {
background: var(--reddish_pink);
}
&_empty {
background: transparent;
pointer-events: none;
}
}
} | src/containers/IntranetContainer/Discussion/Discussion/style.css | .discussion {
&__heading {
display: flex;
padding: 22px 0 8px;
margin: 0 17px 0 20px;
border-bottom: solid 2px var(--silver2);
&-item {
&:first-child {
width: 21px;
min-width: 21px;
max-width: 21px;
}
&:nth-child(2) {
width: 540px;
min-width: 540px;
max-width: 540px;
@media (max-width: 1199px) {
width: 342px;
max-width: 342px;
min-width: 342px;
}
}
}
&_active {
margin-bottom: 8px;
.discussion__heading-item {
&:nth-child(2) {
width: unset;
min-width: unset;
max-width: unset;
@media (max-width: 1199px) {
width: 100%;
min-width: 100%;
max-width: 100%;
}
}
&:nth-child(3) {
display: none;
}
}
}
}
&__item {
position: relative;
z-index: 1;
display: flex;
align-items: center;
padding: 12px 0px 13px 21px;
border-bottom: 1px solid var(--silver2);
cursor: pointer;
margin-right: 11px;
&:hover, &_active {
background-color: var(--grey);
margin-left: -17px;
padding-left: 35px;
padding-right: 11px;
margin-right: 0;
border-left: 3px solid var(--twilight);
border-bottom: 1px solid transparent;
.discussion__item-arrow-icon {
color: var(--carnation2);
}
}
&_opened {
.discussion__info {
width: calc(100% - 60px);
min-width: calc(100% - 60px);
}
}
&-arrow-icon {
width: 11px;
height: 9px;
color: var(--cool_grey);
transform: rotate(-90deg);
cursor: pointer;
&:hover {
color: var(--carnation2);
}
&:active {
color: var(--lipstick);
}
&_active {
color: var(--reddish_pink);
}
}
&-setting-icon {
width: 54px;
height: 40px;
color: var(--reddish_pink);
cursor: pointer;
&:hover {
color: var(--carnation2);
}
&:active {
color: var(--lipstick);
}
&.is-open {
transform: scale(1, -1);
}
}
&-open-sidebar {
padding: 12px 5px;
cursor: pointer;
&:hover {
.discussion__item-arrow-icon {
color: var(--carnation2);
}
}
}
}
&__info {
width: 540px;
min-width: 540px;
max-width: 540px;
@media (max-width: 1199px) {
width: 342px;
max-width: 342px;
min-width: 342px;
}
&-name {
}
&-number {
}
}
&__hidden-items {
display: flex;
align-items: center;
}
&__author {
width: 276px;
&-name {
}
&-date-time {
}
}
&__functional-elements {
display: flex;
align-items: center;
width: 116px;
}
&__functions {
width: 16px;
margin-right: 20px;
&-icon {
width: 15px;
height: 15px;
color: var(--cool_grey);
}
}
&__comment {
color: var(--cool_grey);
width: 35px;
margin-right: 13px;
&:hover,
&:focus,
&:active {
text-decoration: none;
}
&-icon {
color: var(--cool_grey);
width: 14px;
margin: 2px 4px 0 0;
&:hover {
color: var(--carnation2);
}
}
&-quantity {
top: 0;
}
}
&__favorites {
width: 15px;
height: 15px;
margin-right: 18px;
position: relative;
&-icon {
position: absolute;
top: 0;
width: 15px;
height: 15px;
cursor: pointer;
color: var(--twilight);
&:hover {
color: var(--carnation2);
}
}
}
&__messages {
min-width: 20px;
height: 20px;
font-size: 11px;
background: var(--twilight);
color: var(--white);
border-radius: 50%;
padding: 2px 1px 0 0;
text-align: center;
margin-right: 13px;
&_active {
background: var(--reddish_pink);
}
&_empty {
background: transparent;
pointer-events: none;
}
}
} | 0.546738 | 0.161949 |
@charset "utf-8";
/*.public*/
.main {
margin: 0 auto;
width: 980px;
}
a {
blr: expression(this.onFocus=this.blur())
}
/* IE*/
a {
outline: none;
}
/*firefox*/
.main_history {
padding: 10px 0;
height:auto;
position: relative;
}
/*history*/
.history {
background: url(../images/line04.gif) repeat-y 147px 0;
/*overflow: hidden;*/
position: relative;
left: 10px;
}
.history-date {
overflow: hidden;
}
.history-date h2 {
background: url(../images/icon06.png) transparent no-repeat 118px 0;
height: 59px;
font-size: 25px;
font-weight: normal;
padding-left: 15px;
margin-bottom: 40px;
}
.history-date h2.first {
position: relative;
left: 0;
top: -18px;
z-index: 99;
}
.history-date h2 a {
color: #00bbff;
display: inline-block;
*display: inline;
zoom: 1;
background: url(../images/icon08.gif) no-repeat right 50%;
padding-right: 17px;
margin: 21px 97px 0 0;
}
.history-date h2 a:hover {
text-decoration: none;
}
.history-date h2 img {
vertical-align: -5px;
}
.history-date h2.date02 {
background: none;
}
.history-date ul {
}
.history-date ul li {
background: url(../images/icon07.png) no-repeat 140px 0;
padding-bottom: 60px;
zoom: 1;
}
.history-date ul li.last {
padding-bottom: 0;
}
.history-date ul li:after {
content: " ";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.history-date ul li h3 {
float: left;
width: 138px;
/* text-align: right; */
padding-left: 4px;
color: #c3c3c3;
font: normal 18px/16px Arial;
position: relative;
top: -53px;
}
.history-date ul li h3 a{
font-size: 16px;
position: relative;
top: -4px;
}
.history-date ul li h3 span {
display: block;
color: #d0d0d0;
font-size: 12px;
}
.history-date ul li dl {
/* float: left; */
/* padding-left: 41px; */
margin-top: -5px;
margin-left: 220px;
margin-right: 20px;
position: relative;
}
.history_div{
position: absolute;
left: 147px;
}
.history-date ul li dl dt {
font-size: 20px;
color: #737373;
}
.history-date ul li dl dt span {
display: block;
color: #787878;
font-size: 12px;
}
.history-date ul li.green h3 {
color: #1db702;
}
.history-date ul li.green h3 span {
color: #a8dda3;
}
.history-date ul li.green dl {
margin-top: -8px;
}
.history-date ul li.green dl dt {
font-size: 14px;
line-height: 28px;
position: relative;
top: -73px;
left: 117px;
}
.history-date ul li.green dl dt a {
/*background:url(../images/icon09.gif) no-repeat 0 0; width:19px; height:16px;*/
display: inline-block;
*display: inline;
zoom: 1;
overflow: hidden;
vertical-align: middle;
margin-left: 12px;
}
.history-date ul li.green dl dd {
padding-top: 20px;
}
.history-date ul li.green dl dd img {
float: left;
}
.history-date ul li.green dl dd p {
overflow: hidden;
zoom: 1;
line-height: 21px;
color: #787878;
}
.history-date h2.first .more-history {
font-size: 16px;
background: transparent;
margin-left: 30px;
}
.history-date h2.first .more-history:hover {
text-decoration: underline;
}
* body .history-date ul li dl dt {
_font-size: 12px !important;
_font-weight: bold;
}
* body .history-date ul li dl dt span {
_font-weight: normal !important;
}
* body .history-date ul li.green dl dt a {
_background: transparent !important;
*background: transparent !important;
*font-size: 12px !important;
_font-weight: normal !important;
}
.line_history {
height: 1px;
background:url("../images/branch_ico.png") no-repeat;
/*-webkit-transform: rotate(-25deg);*/
width: 33px;
position: absolute;
left: 5px;
top: -40px;
height: 46px;
}
.line_history i {
position: relative;
top: -19px;
left: 11px;
font-style: normal;
}
.history_text{
position: relative;
/*left: 46px;*/
top: -40px;
font-size: 14px;
background: #fff;
padding: 5px;
border-radius: 5px;
box-shadow: 0 0 3px rgba(0,0,0,.2);
line-height: 24px;
margin: 0;
margin-left: 46px;
margin-right: 20px;
}
.history_text p{
width: 100%;
}
.history_text label{
color: #000;
font-weight: bold;
}
.history-date ul li h3 span.history_time{
color: #a1a1a1;
}
.left_line{
width: 93%;
height: 1px;
background: #1db702;
display: inline-block;
position: absolute;
right: 6px;
top: 59px;
}
.history-date ul li.first_li{
border-bottom: 1px solid #4cb158;
padding-bottom: 0;
position: relative;
}
.arrow-time{
background: url("../images/arrow_time.png") no-repeat;
width: 16px;
height: 16px;
display: inline-block;
position: absolute;
right: 5px;
bottom: -10px;
/*background-size: 85%;*/
}
.source_address{
font-size: 14px;
}
.first_li .line_history{
background: transparent;
}
.first_li .history_text {
position: relative;
/*left: 33px;*/
top: -40px;
font-size: 14px;
background: transparent;
padding: 5px 10px;
border-radius: 5px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0);
line-height: 24px;
width: 98%;
margin-left: 38px;
}
.history-date ul li.first_li h3{
position: absolute;
top: -32px;
} | docs/sourcecodes/OpenBridge-passos-ui/ob-paasos-web/src/main/webapp/assets/css/history.css | @charset "utf-8";
/*.public*/
.main {
margin: 0 auto;
width: 980px;
}
a {
blr: expression(this.onFocus=this.blur())
}
/* IE*/
a {
outline: none;
}
/*firefox*/
.main_history {
padding: 10px 0;
height:auto;
position: relative;
}
/*history*/
.history {
background: url(../images/line04.gif) repeat-y 147px 0;
/*overflow: hidden;*/
position: relative;
left: 10px;
}
.history-date {
overflow: hidden;
}
.history-date h2 {
background: url(../images/icon06.png) transparent no-repeat 118px 0;
height: 59px;
font-size: 25px;
font-weight: normal;
padding-left: 15px;
margin-bottom: 40px;
}
.history-date h2.first {
position: relative;
left: 0;
top: -18px;
z-index: 99;
}
.history-date h2 a {
color: #00bbff;
display: inline-block;
*display: inline;
zoom: 1;
background: url(../images/icon08.gif) no-repeat right 50%;
padding-right: 17px;
margin: 21px 97px 0 0;
}
.history-date h2 a:hover {
text-decoration: none;
}
.history-date h2 img {
vertical-align: -5px;
}
.history-date h2.date02 {
background: none;
}
.history-date ul {
}
.history-date ul li {
background: url(../images/icon07.png) no-repeat 140px 0;
padding-bottom: 60px;
zoom: 1;
}
.history-date ul li.last {
padding-bottom: 0;
}
.history-date ul li:after {
content: " ";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.history-date ul li h3 {
float: left;
width: 138px;
/* text-align: right; */
padding-left: 4px;
color: #c3c3c3;
font: normal 18px/16px Arial;
position: relative;
top: -53px;
}
.history-date ul li h3 a{
font-size: 16px;
position: relative;
top: -4px;
}
.history-date ul li h3 span {
display: block;
color: #d0d0d0;
font-size: 12px;
}
.history-date ul li dl {
/* float: left; */
/* padding-left: 41px; */
margin-top: -5px;
margin-left: 220px;
margin-right: 20px;
position: relative;
}
.history_div{
position: absolute;
left: 147px;
}
.history-date ul li dl dt {
font-size: 20px;
color: #737373;
}
.history-date ul li dl dt span {
display: block;
color: #787878;
font-size: 12px;
}
.history-date ul li.green h3 {
color: #1db702;
}
.history-date ul li.green h3 span {
color: #a8dda3;
}
.history-date ul li.green dl {
margin-top: -8px;
}
.history-date ul li.green dl dt {
font-size: 14px;
line-height: 28px;
position: relative;
top: -73px;
left: 117px;
}
.history-date ul li.green dl dt a {
/*background:url(../images/icon09.gif) no-repeat 0 0; width:19px; height:16px;*/
display: inline-block;
*display: inline;
zoom: 1;
overflow: hidden;
vertical-align: middle;
margin-left: 12px;
}
.history-date ul li.green dl dd {
padding-top: 20px;
}
.history-date ul li.green dl dd img {
float: left;
}
.history-date ul li.green dl dd p {
overflow: hidden;
zoom: 1;
line-height: 21px;
color: #787878;
}
.history-date h2.first .more-history {
font-size: 16px;
background: transparent;
margin-left: 30px;
}
.history-date h2.first .more-history:hover {
text-decoration: underline;
}
* body .history-date ul li dl dt {
_font-size: 12px !important;
_font-weight: bold;
}
* body .history-date ul li dl dt span {
_font-weight: normal !important;
}
* body .history-date ul li.green dl dt a {
_background: transparent !important;
*background: transparent !important;
*font-size: 12px !important;
_font-weight: normal !important;
}
.line_history {
height: 1px;
background:url("../images/branch_ico.png") no-repeat;
/*-webkit-transform: rotate(-25deg);*/
width: 33px;
position: absolute;
left: 5px;
top: -40px;
height: 46px;
}
.line_history i {
position: relative;
top: -19px;
left: 11px;
font-style: normal;
}
.history_text{
position: relative;
/*left: 46px;*/
top: -40px;
font-size: 14px;
background: #fff;
padding: 5px;
border-radius: 5px;
box-shadow: 0 0 3px rgba(0,0,0,.2);
line-height: 24px;
margin: 0;
margin-left: 46px;
margin-right: 20px;
}
.history_text p{
width: 100%;
}
.history_text label{
color: #000;
font-weight: bold;
}
.history-date ul li h3 span.history_time{
color: #a1a1a1;
}
.left_line{
width: 93%;
height: 1px;
background: #1db702;
display: inline-block;
position: absolute;
right: 6px;
top: 59px;
}
.history-date ul li.first_li{
border-bottom: 1px solid #4cb158;
padding-bottom: 0;
position: relative;
}
.arrow-time{
background: url("../images/arrow_time.png") no-repeat;
width: 16px;
height: 16px;
display: inline-block;
position: absolute;
right: 5px;
bottom: -10px;
/*background-size: 85%;*/
}
.source_address{
font-size: 14px;
}
.first_li .line_history{
background: transparent;
}
.first_li .history_text {
position: relative;
/*left: 33px;*/
top: -40px;
font-size: 14px;
background: transparent;
padding: 5px 10px;
border-radius: 5px;
box-shadow: 0 0 3px rgba(0, 0, 0, 0);
line-height: 24px;
width: 98%;
margin-left: 38px;
}
.history-date ul li.first_li h3{
position: absolute;
top: -32px;
} | 0.349755 | 0.04975 |
body {
background-color: #263238;
color: #c8c8c8;
}
.container {
margin: auto 25%;
}
#flex-container-main {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
height: 500px;
}
#input-output-container {
display: flex;
justify-content: space-between;
width: 100%;
}
#input, #output {
width: 47.5%;
height: 400px;
border: none;
background-color: #1e272c;
color: #c8c8c8;
}
#copy-btn {
align-self: flex-end;
}
#graph-container {
display: none;
flex-direction: column;
justify-content: space-between;
}
#grid-container {
display: none;
flex-direction: column;
justify-content: space-between;
}
#return-btn {
align-self: flex-start;
margin-bottom: 20px;
}
#grid {
border: 1px solid black;
border-collapse: collapse;
}
#grid tr:nth-child(2n) {
background-color: #1a2042;
}
#grid td {
padding: 5px;
text-align: center;
}
.btn {
padding: 15px;
border-radius: 5px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
.option-1 {
padding: 8px;
border-radius: 2px;
cursor: pointer;
transition: 0.2s;
border: 1px solid #01579b;
}
.option-1:hover {
background-color: #01579b;
color: #ffffff;
}
.controlButton {
display: flex;
flex-direction: row;
margin: 0 12px;
padding: 0;
border-radius: 2px;
border: 1px solid #01579b;
cursor: pointer;
}
.controlButton label {
padding: 8px;
cursor: pointer;
}
.controlButton input {
padding: 8px;
cursor: pointer;
transition: 0.2s;
border-width: 0 0 0 1px;
border-style: solid;
border-color: #01579b;
background-color: #1e272c;
color: #c8c8c8;
width: 50px;
}
.controlButton input:focus {
background-color: #1a2042;
}
#monosub-input {
display: block;
position: relative;
width: 190px;
font-family: Consolas, 'Courier New', monospace;
}
.pers-plac-input .actual-text-input {
z-index: 1;
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
background-color: transparent;
font-family: Consolas, 'Courier New', monospace;
width: 90%;
}
#monosub-input:focus {
background-color: #1a2042;
}
.controlButton div:last-child {
padding: 8px;
border-width: 0 0 0 1px;
border-style: solid;
border-color: #01579b;
}
.controlButton div:last-child:hover {
background-color: #01579b;
color: #ffffff;
}
.keyword-input {
width: 100px !important;
}
body {
margin: 0;
} | css/main_style.css | body {
background-color: #263238;
color: #c8c8c8;
}
.container {
margin: auto 25%;
}
#flex-container-main {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
height: 500px;
}
#input-output-container {
display: flex;
justify-content: space-between;
width: 100%;
}
#input, #output {
width: 47.5%;
height: 400px;
border: none;
background-color: #1e272c;
color: #c8c8c8;
}
#copy-btn {
align-self: flex-end;
}
#graph-container {
display: none;
flex-direction: column;
justify-content: space-between;
}
#grid-container {
display: none;
flex-direction: column;
justify-content: space-between;
}
#return-btn {
align-self: flex-start;
margin-bottom: 20px;
}
#grid {
border: 1px solid black;
border-collapse: collapse;
}
#grid tr:nth-child(2n) {
background-color: #1a2042;
}
#grid td {
padding: 5px;
text-align: center;
}
.btn {
padding: 15px;
border-radius: 5px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
.option-1 {
padding: 8px;
border-radius: 2px;
cursor: pointer;
transition: 0.2s;
border: 1px solid #01579b;
}
.option-1:hover {
background-color: #01579b;
color: #ffffff;
}
.controlButton {
display: flex;
flex-direction: row;
margin: 0 12px;
padding: 0;
border-radius: 2px;
border: 1px solid #01579b;
cursor: pointer;
}
.controlButton label {
padding: 8px;
cursor: pointer;
}
.controlButton input {
padding: 8px;
cursor: pointer;
transition: 0.2s;
border-width: 0 0 0 1px;
border-style: solid;
border-color: #01579b;
background-color: #1e272c;
color: #c8c8c8;
width: 50px;
}
.controlButton input:focus {
background-color: #1a2042;
}
#monosub-input {
display: block;
position: relative;
width: 190px;
font-family: Consolas, 'Courier New', monospace;
}
.pers-plac-input .actual-text-input {
z-index: 1;
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
background-color: transparent;
font-family: Consolas, 'Courier New', monospace;
width: 90%;
}
#monosub-input:focus {
background-color: #1a2042;
}
.controlButton div:last-child {
padding: 8px;
border-width: 0 0 0 1px;
border-style: solid;
border-color: #01579b;
}
.controlButton div:last-child:hover {
background-color: #01579b;
color: #ffffff;
}
.keyword-input {
width: 100px !important;
}
body {
margin: 0;
} | 0.499512 | 0.070945 |
*,
*::before,
*::after {
box-sizing: border-box;
}
ul[class],
ol[class] {
padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
margin: 0;
}
html {
scroll-behavior: smooth;
}
body {
min-height: 100vh;
text-rendering: optimizeSpeed;
line-height: 1.5;
}
ul[class],
ol[class] {
list-style: none;
}
a:not([class]) {
text-decoration-skip-ink: auto;
}
img {
max-width: 100%;
display: block;
}
article > * + * {
margin-top: 1em;
}
input,
button,
textarea,
select {
font: inherit;
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
/* --------------------------------------------------------------- */
/* Variables */
:root {
/* Fonts */
--font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-serif: "Iowan Old Style", "Apple Garamond", Baskerville,
"Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-mono: Consolas, monaco, "Ubuntu Mono", "Liberation Mono", "Courier New",
Courier, monospace;
--color-black: #000;
--color-near-black: #0f1112;
--color-dark-gray: #33393c;
--color-mid-gray: #4b5358;
--color-gray: #8d9ca7;
--color-silver: #999;
--color-light-silver: #a2b4c0;
--color-moon-gray: #dfe5e9;
--color-light-gray: #e7ecf0;
--color-near-white: #f1f2f3;
--color-white: #fff;
--color-dark-red: #e7040f;
--color-red: #fd2222;
--color-light-red: #ff725c;
--color-orange: #ff6300;
--color-gold: #ffb700;
--color-yellow: #ffd700;
--color-light-yellow: #fbf1a9;
--color-purple: #5e2ca5;
--color-light-purple: #a463f2;
--color-dark-pink: #d5008f;
--color-hot-pink: #ff41b4;
--color-pink: #ff80cc;
--color-light-pink: #ffa3d7;
--color-dark-green: #137752;
--color-green: #0fd70b;
--color-light-green: #9eebcf;
--color-navy: #001b44;
--color-dark-blue: #2026a2;
--color-blue: #2b44ff;
--color-light-blue: #8bb0ff;
--color-lightest-blue: #e0eaff;
--color-washed-blue: #f6fffe;
--color-washed-green: #e8fdf5;
--color-washed-yellow: #fffceb;
--color-washed-red: #ffdfdf;
--color-white-90: rgba(255, 255, 255, 0.9);
--color-white-80: rgba(255, 255, 255, 0.8);
--color-white-70: rgba(255, 255, 255, 0.7);
--color-white-60: rgba(255, 255, 255, 0.6);
--color-white-50: rgba(255, 255, 255, 0.5);
--color-white-40: rgba(255, 255, 255, 0.4);
--color-white-30: rgba(255, 255, 255, 0.3);
--color-white-20: rgba(255, 255, 255, 0.2);
--color-white-10: rgba(255, 255, 255, 0.1);
--color-white-05: rgba(255, 255, 255, 0.05);
--color-black-90: rgba(0, 0, 0, 0.9);
--color-black-80: rgba(0, 0, 0, 0.8);
--color-black-70: rgba(0, 0, 0, 0.7);
--color-black-60: rgba(0, 0, 0, 0.6);
--color-black-50: rgba(0, 0, 0, 0.5);
--color-black-40: rgba(0, 0, 0, 0.4);
--color-black-30: rgba(0, 0, 0, 0.3);
--color-black-20: rgba(0, 0, 0, 0.2);
--color-black-10: rgba(0, 0, 0, 0.1);
--color-black-05: rgba(0, 0, 0, 0.05);
/* Color tokens */
--color--primary: var(--color-blue);
--color--secondary: var(--color-dark-blue);
--color--tertiary: var(--color-gray);
--color--positive: var(--color-green);
--color--destructive: var(--color-red);
/* Sizing */
--section-max-width: 800px;
--input-height: 42px;
--input-height-small: 36px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
/* Light theme color assignment */
--color-text-base: var(--color-black);
--color-text-alt: var(--color-mid-gray);
--color-text-inverted: var(--color-white);
--color-text-hint: var(--color-gray);
--color-text-primary: var(--color--primary);
--color-text-secondary: var(--color--secondary);
--color-text-tertiary: var(--color--tertiary);
--color-text-positive: var(--color--positive);
--color-text-destructive: var(--color--destructive);
--color-bg-body: var(--color-white);
--color-bg-base: var(--color-white);
--color-bg-alt: var(--color-near-white);
--color-bg-alt-2: var(--color-light-gray);
--color-bg-inverted: var(--color-black);
--color-bg-header: var(--color-bg-body);
--color-bg-modal: var(--color-bg-body);
--color-bg-modal-overlay: var(--color--secondary);
--color-bg-chat: var(--color-bg-body);
--color-bg-chat-bubble: var(--color-bg-alt);
--color-bg-player: var(--color-bg-alt);
--color-bg-placeholder: var(--color-near-white);
--color-bg-button: var(--color-near-white);
--color-bg-button-active: var();
--color-bg-button-focus: var();
--color-bg-button-hover: var();
--color-bg-button-inverted: var();
--color-bg-button-inverted-active: var();
--color-bg-button-inverted-focus: var();
--color-bg-button-inverted-hover: var();
--color-bg-button-primary-default: var(--color--primary);
--color-bg-button-primary-active: var();
--color-bg-button-primary-hover: var();
--color-bg-button-secondary-default: var(--color-near-white);
--color-bg-button-secondary-active: var();
--color-bg-button-secondary-hover: var();
--color-bg-button-floating: var(--color--primary);
--color-bg-button-floating-active: var();
--color-bg-button-floating-focus: var();
--color-bg-button-floating-hover: var(--color--secondary);
--color-bg-input: var(--color-near-white);
--color-bg-input-focus: var();
--color-bg-notice-success: var(--color--positive);
--color-bg-notice-error: var(--color--destructive);
--color-border-base: var(--color-moon-gray);
--color-border-error: var(--color--destructive);
--grid-2-columns: 1fr 1fr;
--grid-3-columns: 1fr 1fr 1fr;
--grid-4-columns: 1fr 1fr 1fr 1fr;
--grid-trio-columns: 1fr 3fr 1fr 1fr;
}
/* Mediaqueries */
@media (prefers-color-scheme: dark) {
:root {
/* --color--primary: var(--color--primary-dark);
--color--secondary: var(--color--secondary-dark);
--color--tertiary: var(--color--tertiary-dark); */
}
}
@media (max-width: 480px) {
/* Smaller Screens */
:root {
--section-max-width: 800px;
--input-height: 42px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
--grid-2-columns: 1fr;
--grid-3-columns: 1fr;
--grid-4-columns: 1fr;
--grid-trio-columns: 1fr 1fr 1fr 1fr;
}
}
@media (min-width: 480px) and (max-width: 767px) {
/* Small Screens */
:root {
--section-max-width: 800px;
--input-height: 42px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
--grid-2-columns: 1fr 1fr;
--grid-3-columns: 1fr 1fr 1fr;
--grid-4-columns: 1fr 1fr;
--grid-trio-columns: 1fr 2fr 1fr 1fr;
}
}
@media (min-width: 767px) {
/* Large Screens */
}
/* --------------------------------------------------------------- */
/* Style */
html {
font-size: 62.5%;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: var(--color-text-base);
background: var(--color-bg-base);
line-height: 1.5;
}
body {
font-family: var(--font-sans);
font-size: 1.6rem;
}
::selection {
background: var(--color--primary);
color: var(--color-text-inverted);
}
a {
color: var(--color--primary);
text-decoration: none;
}
a:hover {
color: var(--color--secondary);
}
/* Section */
section {
max-width: var(--section-max-width);
margin: 0 auto;
}
h1,
.h1 {
font-size: 2.4rem;
}
h2,
.h2 {
font-size: 1.8rem;
}
h3,
.h3 {
font-size: 1.6rem;
font-weight: 300;
}
ul {
margin: 0;
padding: 1rem 0;
list-style-position: inside;
}
ul li {
margin: 0;
}
em {
font-weight: 300;
font-size: 1.4rem;
}
.formatted-text h1 {
margin-bottom: 0.5rem;
}
.formatted-text h2 {
margin-bottom: 0.5rem;
}
.formatted-text h3 {
margin-bottom: 0.5rem;
}
.formatted-text ul {
margin-bottom: 0.5rem;
}
.formatted-text p {
margin-bottom: 0.5rem;
}
.formatted-text p:last-child {
margin-bottom: 0;
}
/* Utility - Text */
.color-base {
color: var(--color-text-base);
}
.color-alt {
color: var(--color-text-alt);
}
.color-inverted {
color: var(--color-text-inverted);
}
.color-hint {
color: var(--color-text-hint);
}
.color-primary {
color: var(--color-text-primary);
}
.color-secondary {
color: var(--color-text-secondary);
}
.color-tertiary {
color: var(--color-text-tertiary);
}
.color-positive {
color: var(--color-text-positive);
}
.color-destructive {
color: var(--color-text-destructive);
}
.color-black {
color: var(--color-black);
}
.color-near-black {
color: var(--color-near-black);
}
.color-dark-gray {
color: var(--color-dark-gray);
}
.color-mid-gray {
color: var(--color-mid-gray);
}
.color-gray {
color: var(--color-gray);
}
.color-silver {
color: var(--color-silver);
}
.color-light-silver {
color: var(--color-light-silver);
}
.color-moon-gray {
color: var(--color-moon-gray);
}
.color-light-gray {
color: var(--color-light-gray);
}
.color-near-white {
color: var(--color-near-white);
}
.color-white {
color: var(--color-white);
}
.color-dark-red {
color: var(--color-dark-red);
}
.color-red {
color: var(--color-red);
}
.color-light-red {
color: var(--color-light-red);
}
.color-orange {
color: var(--color-orange);
}
.color-gold {
color: var(--color-gold);
}
.color-yellow {
color: var(--color-yellow);
}
.color-light-yellow {
color: var(--color-light-yellow);
}
.color-purple {
color: var(--color-purple);
}
.color-light-purple {
color: var(--color-light-purple);
}
.color-dark-pink {
color: var(--color-dark-pink);
}
.color-hot-pink {
color: var(--color-hot-pink);
}
.color-pink {
color: var(--color-pink);
}
.color-light-pink {
color: var(--color-light-pink);
}
.color-dark-green {
color: var(--color-dark-green);
}
.color-green {
color: var(--color-green);
}
.color-light-green {
color: var(--color-light-green);
}
.color-navy {
color: var(--color-navy);
}
.color-dark-blue {
color: var(--color-dark-blue);
}
.color-blue {
color: var(--color-blue);
}
.color-light-blue {
color: var(--color-light-blue);
}
.color-lightest-blue {
color: var(--color-lightest-blue);
}
.color-washed-blue {
color: var(--color-washed-blue);
}
.color-washed-green {
color: var(--color-washed-green);
}
.color-washed-yellow {
color: var(--color-washed-yellow);
}
.color-washed-red {
color: var(--color-washed-red);
}
/* Utility - Background */
.bg-body {
background-color: var(--color-bg-body);
}
.bg-base {
background-color: var(--color-bg-base);
}
.bg-alt {
background-color: var(--color-bg-alt);
}
.bg-alt-2 {
background-color: var(--color-bg-alt-2);
}
.bg-inverted {
background-color: var(--color-bg-inverted);
}
.bg-black {
background-color: var(--color-black);
}
.bg-near-black {
background-color: var(--color-near-black);
}
.bg-dark-gray {
background-color: var(--color-dark-gray);
}
.bg-mid-gray {
background-color: var(--color-mid-gray);
}
.bg-gray {
background-color: var(--color-gray);
}
.bg-silver {
background-color: var(--color-silver);
}
.bg-light-silver {
background-color: var(--color-light-silver);
}
.bg-moon-gray {
background-color: var(--color-moon-gray);
}
.bg-light-gray {
background-color: var(--color-light-gray);
}
.bg-near-white {
background-color: var(--color-near-white);
}
.bg-white {
background-color: var(--color-white);
}
.bg-dark-red {
background-color: var(--color-dark-red);
}
.bg-red {
background-color: var(--color-red);
}
.bg-light-red {
background-color: var(--color-light-red);
}
.bg-orange {
background-color: var(--color-orange);
}
.bg-gold {
background-color: var(--color-gold);
}
.bg-yellow {
background-color: var(--color-yellow);
}
.bg-light-yellow {
background-color: var(--color-light-yellow);
}
.bg-purple {
background-color: var(--color-purple);
}
.bg-light-purple {
background-color: var(--color-light-purple);
}
.bg-dark-pink {
background-color: var(--color-dark-pink);
}
.bg-hot-pink {
background-color: var(--color-hot-pink);
}
.bg-pink {
background-color: var(--color-pink);
}
.bg-light-pink {
background-color: var(--color-light-pink);
}
.bg-dark-green {
background-color: var(--color-dark-green);
}
.bg-green {
background-color: var(--color-green);
}
.bg-light-green {
background-color: var(--color-light-green);
}
.bg-navy {
background-color: var(--color-navy);
}
.bg-dark-blue {
background-color: var(--color-dark-blue);
}
.bg-blue {
background-color: var(--color-blue);
}
.bg-light-blue {
background-color: var(--color-light-blue);
}
.bg-lightest-blue {
background-color: var(--color-lightest-blue);
}
.bg-washed-blue {
background-color: var(--color-washed-blue);
}
.bg-washed-green {
background-color: var(--color-washed-green);
}
.bg-washed-yellow {
background-color: var(--color-washed-yellow);
}
.bg-washed-red {
background-color: var(--color-washed-red);
}
/* Utility - Radius */
.br-all {
border-radius: var(--radius);
}
/* Utility - Padding */
.pd-0 {
padding: 0;
}
.pd-05 {
padding: 0.5rem;
}
.pd-1 {
padding: 1rem;
}
.pd-15 {
padding: 1.5rem;
}
.pd-2 {
padding: 2rem;
}
.pd-25 {
padding: 2.5rem;
}
.pd-3 {
padding: 3rem;
}
.pd-35 {
padding: 3.5rem;
}
.pd-4 {
padding: 4rem;
}
.pd-5 {
padding: 5rem;
}
.pd-x-0 {
padding-left: 0;
padding-right: 0;
}
.pd-x-05 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.pd-x-1 {
padding-left: 1rem;
padding-right: 1rem;
}
.pd-x-15 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.pd-x-2 {
padding-left: 2rem;
padding-right: 2rem;
}
.pd-x-25 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.pd-x-3 {
padding-left: 3rem;
padding-right: 3rem;
}
.pd-x-35 {
padding-left: 3.5rem;
padding-right: 3rem;
}
.pd-x-4 {
padding-left: 4rem;
padding-right: 4rem;
}
.pd-x-5 {
padding-left: 5rem;
padding-right: 5rem;
}
.pd-y-0 {
padding-top: 0;
padding-bottom: 0;
}
.pd-y-05 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.pd-y-1 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.pd-y-15 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.pd-y-2 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.pd-y-25 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.pd-y-3 {
padding-top: 3rem;
padding-bottom: 3rem;
}
.pd-y-35 {
padding-top: 3.5rem;
padding-bottom: 3rem;
}
.pd-y-4 {
padding-top: 4rem;
padding-bottom: 4rem;
}
.pd-y-5 {
padding-top: 5rem;
padding-bottom: 5rem;
}
.pd-t-0 {
padding-top: 0;
}
.pd-t-05 {
padding-top: 0.5rem;
}
.pd-t-1 {
padding-top: 1rem;
}
.pd-t-15 {
padding-top: 1.5rem;
}
.pd-t-2 {
padding-top: 2rem;
}
.pd-t-25 {
padding-top: 2.5rem;
}
.pd-t-3 {
padding-top: 3rem;
}
.pd-t-35 {
padding-top: 3.5rem;
}
.pd-t-4 {
padding-top: 4rem;
}
.pd-t-5 {
padding-top: 5rem;
}
.pd-r-0 {
padding-right: 0;
}
.pd-r-05 {
padding-right: 0.5rem;
}
.pd-r-1 {
padding-right: 1rem;
}
.pd-r-15 {
padding-right: 1.5rem;
}
.pd-r-2 {
padding-right: 2rem;
}
.pd-r-25 {
padding-right: 2.5rem;
}
.pd-r-3 {
padding-right: 3rem;
}
.pd-r-35 {
padding-right: 3.5rem;
}
.pd-r-4 {
padding-right: 4rem;
}
.pd-r-5 {
padding-right: 5rem;
}
.pd-b-0 {
padding-bottom: 0;
}
.pd-b-05 {
padding-bottom: 0.5rem;
}
.pd-b-1 {
padding-bottom: 1rem;
}
.pd-b-15 {
padding-bottom: 1.5rem;
}
.pd-b-2 {
padding-bottom: 2rem;
}
.pd-b-25 {
padding-bottom: 2.5rem;
}
.pd-b-3 {
padding-bottom: 3rem;
}
.pd-b-35 {
padding-bottom: 3.5rem;
}
.pd-b-4 {
padding-bottom: 4rem;
}
.pd-b-5 {
padding-bottom: 5rem;
}
.pd-l-0 {
padding-left: 0;
}
.pd-l-05 {
padding-left: 0.5rem;
}
.pd-l-1 {
padding-left: 1rem;
}
.pd-l-15 {
padding-left: 1.5rem;
}
.pd-l-2 {
padding-left: 2rem;
}
.pd-l-25 {
padding-left: 2.5rem;
}
.pd-l-3 {
padding-left: 3rem;
}
.pd-l-35 {
padding-left: 3.5rem;
}
.pd-l-4 {
padding-left: 4rem;
}
.pd-l-5 {
padding-left: 5rem;
}
/* Utility - Margin */
.mg-0 {
margin: 0;
}
.mg-05 {
margin: 0.5rem;
}
.mg-1 {
margin: 1rem;
}
.mg-15 {
margin: 1.5rem;
}
.mg-2 {
margin: 2rem;
}
.mg-25 {
margin: 2.5rem;
}
.mg-3 {
margin: 3rem;
}
.mg-35 {
margin: 3.5rem;
}
.mg-4 {
margin: 4rem;
}
.mg-5 {
margin: 5rem;
}
.mg-x-0 {
margin-left: 0;
margin-right: 0;
}
.mg-x-05 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.mg-x-1 {
margin-left: 1rem;
margin-right: 1rem;
}
.mg-x-15 {
margin-left: 1.5rem;
margin-right: 1.5rem;
}
.mg-x-2 {
margin-left: 2rem;
margin-right: 2rem;
}
.mg-x-25 {
margin-left: 2.5rem;
margin-right: 2.5rem;
}
.mg-x-3 {
margin-left: 3rem;
margin-right: 3rem;
}
.mg-x-35 {
margin-left: 3.5rem;
margin-right: 3rem;
}
.mg-x-4 {
margin-left: 4rem;
margin-right: 4rem;
}
.mg-x-5 {
margin-left: 5rem;
margin-right: 5rem;
}
.mg-y-0 {
margin-top: 0;
margin-bottom: 0;
}
.mg-y-05 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.mg-y-1 {
margin-top: 1rem;
margin-bottom: 1rem;
}
.mg-y-15 {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.mg-y-2 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.mg-y-25 {
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}
.mg-y-3 {
margin-top: 3rem;
margin-bottom: 3rem;
}
.mg-y-35 {
margin-top: 3.5rem;
margin-bottom: 3rem;
}
.mg-y-4 {
margin-top: 4rem;
margin-bottom: 4rem;
}
.mg-y-5 {
margin-top: 5rem;
margin-bottom: 5rem;
}
.mg-t-0 {
margin-top: 0;
}
.mg-t-05 {
margin-top: 0.5rem;
}
.mg-t-1 {
margin-top: 1rem;
}
.mg-t-15 {
margin-top: 1.5rem;
}
.mg-t-2 {
margin-top: 2rem;
}
.mg-t-25 {
margin-top: 2.5rem;
}
.mg-t-3 {
margin-top: 3rem;
}
.mg-t-35 {
margin-top: 3.5rem;
}
.mg-t-4 {
margin-top: 4rem;
}
.mg-t-5 {
margin-top: 5rem;
}
.mg-r-0 {
margin-right: 0;
}
.mg-r-05 {
margin-right: 0.5rem;
}
.mg-r-1 {
margin-right: 1rem;
}
.mg-r-15 {
margin-right: 1.5rem;
}
.mg-r-2 {
margin-right: 2rem;
}
.mg-r-25 {
margin-right: 2.5rem;
}
.mg-r-3 {
margin-right: 3rem;
}
.mg-r-35 {
margin-right: 3.5rem;
}
.mg-r-4 {
margin-right: 4rem;
}
.mg-r-5 {
margin-right: 5rem;
}
.mg-b-0 {
margin-bottom: 0;
}
.mg-b-05 {
margin-bottom: 0.5rem;
}
.mg-b-1 {
margin-bottom: 1rem;
}
.mg-b-15 {
margin-bottom: 1.5rem;
}
.mg-b-2 {
margin-bottom: 2rem;
}
.mg-b-25 {
margin-bottom: 2.5rem;
}
.mg-b-3 {
margin-bottom: 3rem;
}
.mg-b-35 {
margin-bottom: 3.5rem;
}
.mg-b-4 {
margin-bottom: 4rem;
}
.mg-b-5 {
margin-bottom: 5rem;
}
.mg-l-0 {
margin-left: 0;
}
.mg-l-05 {
margin-left: 0.5rem;
}
.mg-l-1 {
margin-left: 1rem;
}
.mg-l-15 {
margin-left: 1.5rem;
}
.mg-l-2 {
margin-left: 2rem;
}
.mg-l-25 {
margin-left: 2.5rem;
}
.mg-l-3 {
margin-left: 3rem;
}
.mg-l-35 {
margin-left: 3.5rem;
}
.mg-l-4 {
margin-left: 4rem;
}
.mg-l-5 {
margin-left: 5rem;
}
/* Utility - Flex */
.fl {
display: flex;
}
.fl-inline {
display: inline-flex;
}
.fl-row {
flex-direction: row;
} /* Default */
.fl-row-rev {
flex-direction: row-reverse;
}
.fl-col {
flex-direction: column;
}
.fl-col-rev {
flex-direction: column-reverse;
}
.fl-nowrap {
flex-wrap: nowrap;
} /* Default */
.fl-wrap {
flex-wrap: wrap;
}
.fl-wrap-rev {
flex-wrap: wrap-reverse;
}
.fl-j-start {
justify-content: flex-start;
} /* Default */
.fl-j-end {
justify-content: flex-end;
}
.fl-j-center {
justify-content: center;
}
.fl-j-around {
justify-content: space-around;
}
.fl-j-between {
justify-content: space-between;
}
.fl-a-stretch {
align-items: stretch;
} /* Default */
.fl-a-start {
align-items: flex-start;
}
.fl-a-center {
align-items: center;
}
.fl-a-end {
align-items: flex-end;
}
.fl-a-baseline {
align-items: baseline;
}
.fl-grow-0 {
flex-grow: 0;
} /* Default */
.fl-grow-1 {
flex-grow: 1;
}
.fl-shrink-1 {
flex-shrink: 1;
} /* Default */
.fl-shrink-0 {
flex-shrink: 0;
}
.fl-b-auto {
flex-basis: auto;
} /* Default */
.fl-b-0 {
flex-basis: 0;
}
.fl-a-auto {
align-self: auto;
} /* Default */
.fl-a-start {
align-self: flex-start;
}
.fl-a-center {
align-self: center;
}
.fl-a-end {
align-self: flex-end;
}
.fl-a-stretch {
align-self: stretch;
}
.fl-a-baseline {
align-self: baseline;
}
/* Utility - Position */
.pos-absolute {
position: absolute !important;
}
.pos-fixed {
position: fixed !important;
}
.pos-relative {
position: relative !important;
}
.top-0 {
top: 0 !important;
}
.bottom-0 {
bottom: 0 !important;
}
/* Utility - Width/Height */
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.screen-width {
width: 100vw;
}
.screen-height {
height: 100vh;
}
/* Blur */
.blur {
filter: blur(70px);
}
/* Overflow */
.no-overflow {
overflow: hidden;
}
/* Grid */
.grid {
width: 100%;
display: grid;
grid-gap: 1rem;
}
.grid.grid--2 {
grid-template-columns: 1fr 1fr;
}
.grid.grid--3 {
grid-template-columns: 1fr 1fr 1fr;
}
.grid.grid--4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid.grid--trio {
grid-template-columns: 1fr 3fr 1fr 1fr;
}
/* Responsive Grid */
.grid--responsive.grid--2 {
grid-template-columns: var(--grid-2-columns);
}
.grid--responsive.grid--3 {
grid-template-columns: var(--grid-3-columns);
}
.grid--responsive.grid--4 {
grid-template-columns: var(--grid-4-columns);
}
.grid--responsive.grid--trio {
grid-template-columns: var(--grid-trio-columns);
}
/* Header bar */
header {
height: var(--header-height);
box-shadow: 0 1px 0 0 var(--color-border-base);
position: sticky;
top: 0;
left: 0;
right: 0;
padding: 0 2rem;
background: var(--color-bg-header);
z-index: 10;
}
header h1 {
font-size: 16px;
font-weight: 800;
line-height: var(--header-height);
}
/* Modal */
.modal {
width: 100%;
height: 100vh;
position: relative;
display: grid;
place-items: center;
}
.modal__el {
width: 570px;
position: relative;
z-index: 2;
background: var(--color-bg-modal);
display: flex;
flex-direction: column;
padding: 2rem;
}
.modal__overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: var(--color-bg-modal-overlay);
opacity: 0.9;
}
/* Code */
code,
pre,
kbd,
samp {
font-family: var(--font-mono);
}
.codeblock {
padding: 1rem;
color: var(--color-text-alt);
background: var(--color-bg-placeholder);
border-radius: var(--radius);
}
/* Placeholder blocks */
.placeholder {
min-height: 180px;
background: var(--color-bg-placeholder);
border-radius: var(--radius);
}
/* Aspect ratio */
.aspect-169 {
padding-top: 56.25%;
height: 0;
overflow: hidden;
}
.player {
background: var(--color-bg-player);
}
/* Buttons & Forms */
form {
display: flex;
flex-direction: column;
align-items: flex-start;
}
fieldset {
width: 100%;
border: 0;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
fieldset input,
fieldset textarea,
fieldset select,
fieldset button {
width: 100%;
margin-bottom: 1rem;
}
label {
font-weight: 500;
}
label span {
font-weight: 200;
}
button {
border: 2px solid transparent;
outline: none;
appearance: none;
cursor: pointer;
-webkit-appearance: none;
border-radius: var(--radius-small);
}
input,
select,
textarea {
border: 2px solid transparent;
outline: none;
appearance: none;
resize: none;
-webkit-appearance: none;
padding: 1rem;
background: var(--color-bg-input);
border-radius: var(--radius-small);
}
a.btn {
display: inline-block;
line-height: var(--input-height);
border-radius: var(--radius-small);
}
.btn,
button,
select,
input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
height: var(--input-height);
}
input:focus,
textarea:focus,
.btn:focus,
.btn:active {
border: 2px solid var(--color--primary);
}
select {
padding: 0 20px 0 10px;
position: relative;
}
select:focus,
select:active {
border: 2px solid var(--color--primary);
}
.btn.rounded,
input.rounded {
border-radius: var(--input-height);
}
.btn {
font-weight: 500;
background: var(--color-bg-button);
border: 2px solid transparent;
}
.btn--small {
height: var(--input-height-small);
}
a.btn--small {
line-height: calc(var(--input-height-small) - 4px);
}
.btn--primary {
background: var(--color-bg-button-primary-default);
color: var(--color-text-inverted);
}
.btn--primary:hover,
.btn--primary:focus {
background: var(--color--secondary);
}
.btn--secondary {
background: var(--color-bg-button-secondary-default);
color: var(--color-text-base);
}
.btn--destruct {
background: var(--color--destructive);
color: var(--color-text-inverted);
}
.btn--confirm {
background: var(--color--positive);
}
.btn--floating {
width: var(--btn-floating-size);
height: var(--btn-floating-size);
background: var(--color-bg-button-floating);
border-radius: var(--btn-floating-size);
color: var(--color-text-inverted);
display: flex;
align-items: center;
position: absolute;
bottom: 2rem;
right: 2rem;
}
.btn--floating svg {
width: var(--btn-floating-icon-size);
height: var(--btn-floating-icon-size);
fill: var(--color-text-inverted);
}
.btn--floating:hover,
.btn--floating:focus {
background: var(--color-bg-button-floating-hover);
}
.btn--fixed {
position: fixed;
}
.btn--pad {
padding: 0 1.2rem;
}
/* Interactive */
.interactive {
cursor: pointer;
border: 2px solid transparent;
display: flex;
padding: 1rem;
flex-direction: column;
color: var(--color-text-base);
overflow: hidden;
}
.interactive strong,
.interactive span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.interactive:focus,
.interactive:hover {
background: var(--color-bg-button);
color: var(--color-bg-button-primary-default);
}
.interactive:focus {
border: 2px solid var(--color--primary);
outline: none;
}
.interactive--active,
.interactive--active:hover,
.interactive--active:focus {
background: var(--color-bg-button-primary-default);
color: var(--color-text-inverted);
}
/* Notices */
.notice {
border-radius: var(--radius-small);
position: absolute;
top: 1.5rem;
right: 1.5rem;
}
.notice__content {
display: flex;
padding: 1.5rem 2rem;
font-weight: 600;
}
.notice--success {
background: var(--color-bg-notice-success);
}
.notice--error {
background: var(--color-bg-notice-error);
color: var(--color-text-inverted);
}
.notice__icon {
margin-right: 1rem;
}
/* Chat */
.chat-wrapper {
position: relative;
padding-bottom: calc(var(--input-height) + 30px);
display: flex;
flex-direction: column;
align-items: flex-start;
}
.chat-line {
padding: 12px 15px;
background: var(--color-bg-chat-bubble);
border-radius: var(--input-height);
display: flex;
margin: 0 0 5px 0;
}
.chat-line p {
display: inline;
font-weight: normal;
}
.chat-line .username {
font-weight: 800;
padding-right: 0.1rem;
}
.composer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 15px 0;
background: var(--color-bg-chat);
}
.composer input {
width: 100%;
}
/* Icons */
.icon {
fill: var(--color-text-base);
}
.icon--inverted {
fill: var(--color-text-inverted);
}
.icon--success {
fill: var(--color--positive);
}
.icon--error {
fill: var(--color--destructive);
}
.icon--14 {
width: 14px;
height: 14px;
}
.icon--24 {
width: 24px;
height: 24px;
}
.icon--36 {
width: 36px;
height: 36px;
}
.icon--48 {
width: 48px;
height: 48px;
} | web-ui/src/index.css | *,
*::before,
*::after {
box-sizing: border-box;
}
ul[class],
ol[class] {
padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
margin: 0;
}
html {
scroll-behavior: smooth;
}
body {
min-height: 100vh;
text-rendering: optimizeSpeed;
line-height: 1.5;
}
ul[class],
ol[class] {
list-style: none;
}
a:not([class]) {
text-decoration-skip-ink: auto;
}
img {
max-width: 100%;
display: block;
}
article > * + * {
margin-top: 1em;
}
input,
button,
textarea,
select {
font: inherit;
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
/* --------------------------------------------------------------- */
/* Variables */
:root {
/* Fonts */
--font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-serif: "Iowan Old Style", "Apple Garamond", Baskerville,
"Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-mono: Consolas, monaco, "Ubuntu Mono", "Liberation Mono", "Courier New",
Courier, monospace;
--color-black: #000;
--color-near-black: #0f1112;
--color-dark-gray: #33393c;
--color-mid-gray: #4b5358;
--color-gray: #8d9ca7;
--color-silver: #999;
--color-light-silver: #a2b4c0;
--color-moon-gray: #dfe5e9;
--color-light-gray: #e7ecf0;
--color-near-white: #f1f2f3;
--color-white: #fff;
--color-dark-red: #e7040f;
--color-red: #fd2222;
--color-light-red: #ff725c;
--color-orange: #ff6300;
--color-gold: #ffb700;
--color-yellow: #ffd700;
--color-light-yellow: #fbf1a9;
--color-purple: #5e2ca5;
--color-light-purple: #a463f2;
--color-dark-pink: #d5008f;
--color-hot-pink: #ff41b4;
--color-pink: #ff80cc;
--color-light-pink: #ffa3d7;
--color-dark-green: #137752;
--color-green: #0fd70b;
--color-light-green: #9eebcf;
--color-navy: #001b44;
--color-dark-blue: #2026a2;
--color-blue: #2b44ff;
--color-light-blue: #8bb0ff;
--color-lightest-blue: #e0eaff;
--color-washed-blue: #f6fffe;
--color-washed-green: #e8fdf5;
--color-washed-yellow: #fffceb;
--color-washed-red: #ffdfdf;
--color-white-90: rgba(255, 255, 255, 0.9);
--color-white-80: rgba(255, 255, 255, 0.8);
--color-white-70: rgba(255, 255, 255, 0.7);
--color-white-60: rgba(255, 255, 255, 0.6);
--color-white-50: rgba(255, 255, 255, 0.5);
--color-white-40: rgba(255, 255, 255, 0.4);
--color-white-30: rgba(255, 255, 255, 0.3);
--color-white-20: rgba(255, 255, 255, 0.2);
--color-white-10: rgba(255, 255, 255, 0.1);
--color-white-05: rgba(255, 255, 255, 0.05);
--color-black-90: rgba(0, 0, 0, 0.9);
--color-black-80: rgba(0, 0, 0, 0.8);
--color-black-70: rgba(0, 0, 0, 0.7);
--color-black-60: rgba(0, 0, 0, 0.6);
--color-black-50: rgba(0, 0, 0, 0.5);
--color-black-40: rgba(0, 0, 0, 0.4);
--color-black-30: rgba(0, 0, 0, 0.3);
--color-black-20: rgba(0, 0, 0, 0.2);
--color-black-10: rgba(0, 0, 0, 0.1);
--color-black-05: rgba(0, 0, 0, 0.05);
/* Color tokens */
--color--primary: var(--color-blue);
--color--secondary: var(--color-dark-blue);
--color--tertiary: var(--color-gray);
--color--positive: var(--color-green);
--color--destructive: var(--color-red);
/* Sizing */
--section-max-width: 800px;
--input-height: 42px;
--input-height-small: 36px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
/* Light theme color assignment */
--color-text-base: var(--color-black);
--color-text-alt: var(--color-mid-gray);
--color-text-inverted: var(--color-white);
--color-text-hint: var(--color-gray);
--color-text-primary: var(--color--primary);
--color-text-secondary: var(--color--secondary);
--color-text-tertiary: var(--color--tertiary);
--color-text-positive: var(--color--positive);
--color-text-destructive: var(--color--destructive);
--color-bg-body: var(--color-white);
--color-bg-base: var(--color-white);
--color-bg-alt: var(--color-near-white);
--color-bg-alt-2: var(--color-light-gray);
--color-bg-inverted: var(--color-black);
--color-bg-header: var(--color-bg-body);
--color-bg-modal: var(--color-bg-body);
--color-bg-modal-overlay: var(--color--secondary);
--color-bg-chat: var(--color-bg-body);
--color-bg-chat-bubble: var(--color-bg-alt);
--color-bg-player: var(--color-bg-alt);
--color-bg-placeholder: var(--color-near-white);
--color-bg-button: var(--color-near-white);
--color-bg-button-active: var();
--color-bg-button-focus: var();
--color-bg-button-hover: var();
--color-bg-button-inverted: var();
--color-bg-button-inverted-active: var();
--color-bg-button-inverted-focus: var();
--color-bg-button-inverted-hover: var();
--color-bg-button-primary-default: var(--color--primary);
--color-bg-button-primary-active: var();
--color-bg-button-primary-hover: var();
--color-bg-button-secondary-default: var(--color-near-white);
--color-bg-button-secondary-active: var();
--color-bg-button-secondary-hover: var();
--color-bg-button-floating: var(--color--primary);
--color-bg-button-floating-active: var();
--color-bg-button-floating-focus: var();
--color-bg-button-floating-hover: var(--color--secondary);
--color-bg-input: var(--color-near-white);
--color-bg-input-focus: var();
--color-bg-notice-success: var(--color--positive);
--color-bg-notice-error: var(--color--destructive);
--color-border-base: var(--color-moon-gray);
--color-border-error: var(--color--destructive);
--grid-2-columns: 1fr 1fr;
--grid-3-columns: 1fr 1fr 1fr;
--grid-4-columns: 1fr 1fr 1fr 1fr;
--grid-trio-columns: 1fr 3fr 1fr 1fr;
}
/* Mediaqueries */
@media (prefers-color-scheme: dark) {
:root {
/* --color--primary: var(--color--primary-dark);
--color--secondary: var(--color--secondary-dark);
--color--tertiary: var(--color--tertiary-dark); */
}
}
@media (max-width: 480px) {
/* Smaller Screens */
:root {
--section-max-width: 800px;
--input-height: 42px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
--grid-2-columns: 1fr;
--grid-3-columns: 1fr;
--grid-4-columns: 1fr;
--grid-trio-columns: 1fr 1fr 1fr 1fr;
}
}
@media (min-width: 480px) and (max-width: 767px) {
/* Small Screens */
:root {
--section-max-width: 800px;
--input-height: 42px;
--radius: 10px;
--radius-small: 4px;
--header-height: 50px;
--btn-floating-size: 56px;
--btn-floating-icon-size: 40px;
--grid-2-columns: 1fr 1fr;
--grid-3-columns: 1fr 1fr 1fr;
--grid-4-columns: 1fr 1fr;
--grid-trio-columns: 1fr 2fr 1fr 1fr;
}
}
@media (min-width: 767px) {
/* Large Screens */
}
/* --------------------------------------------------------------- */
/* Style */
html {
font-size: 62.5%;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: var(--color-text-base);
background: var(--color-bg-base);
line-height: 1.5;
}
body {
font-family: var(--font-sans);
font-size: 1.6rem;
}
::selection {
background: var(--color--primary);
color: var(--color-text-inverted);
}
a {
color: var(--color--primary);
text-decoration: none;
}
a:hover {
color: var(--color--secondary);
}
/* Section */
section {
max-width: var(--section-max-width);
margin: 0 auto;
}
h1,
.h1 {
font-size: 2.4rem;
}
h2,
.h2 {
font-size: 1.8rem;
}
h3,
.h3 {
font-size: 1.6rem;
font-weight: 300;
}
ul {
margin: 0;
padding: 1rem 0;
list-style-position: inside;
}
ul li {
margin: 0;
}
em {
font-weight: 300;
font-size: 1.4rem;
}
.formatted-text h1 {
margin-bottom: 0.5rem;
}
.formatted-text h2 {
margin-bottom: 0.5rem;
}
.formatted-text h3 {
margin-bottom: 0.5rem;
}
.formatted-text ul {
margin-bottom: 0.5rem;
}
.formatted-text p {
margin-bottom: 0.5rem;
}
.formatted-text p:last-child {
margin-bottom: 0;
}
/* Utility - Text */
.color-base {
color: var(--color-text-base);
}
.color-alt {
color: var(--color-text-alt);
}
.color-inverted {
color: var(--color-text-inverted);
}
.color-hint {
color: var(--color-text-hint);
}
.color-primary {
color: var(--color-text-primary);
}
.color-secondary {
color: var(--color-text-secondary);
}
.color-tertiary {
color: var(--color-text-tertiary);
}
.color-positive {
color: var(--color-text-positive);
}
.color-destructive {
color: var(--color-text-destructive);
}
.color-black {
color: var(--color-black);
}
.color-near-black {
color: var(--color-near-black);
}
.color-dark-gray {
color: var(--color-dark-gray);
}
.color-mid-gray {
color: var(--color-mid-gray);
}
.color-gray {
color: var(--color-gray);
}
.color-silver {
color: var(--color-silver);
}
.color-light-silver {
color: var(--color-light-silver);
}
.color-moon-gray {
color: var(--color-moon-gray);
}
.color-light-gray {
color: var(--color-light-gray);
}
.color-near-white {
color: var(--color-near-white);
}
.color-white {
color: var(--color-white);
}
.color-dark-red {
color: var(--color-dark-red);
}
.color-red {
color: var(--color-red);
}
.color-light-red {
color: var(--color-light-red);
}
.color-orange {
color: var(--color-orange);
}
.color-gold {
color: var(--color-gold);
}
.color-yellow {
color: var(--color-yellow);
}
.color-light-yellow {
color: var(--color-light-yellow);
}
.color-purple {
color: var(--color-purple);
}
.color-light-purple {
color: var(--color-light-purple);
}
.color-dark-pink {
color: var(--color-dark-pink);
}
.color-hot-pink {
color: var(--color-hot-pink);
}
.color-pink {
color: var(--color-pink);
}
.color-light-pink {
color: var(--color-light-pink);
}
.color-dark-green {
color: var(--color-dark-green);
}
.color-green {
color: var(--color-green);
}
.color-light-green {
color: var(--color-light-green);
}
.color-navy {
color: var(--color-navy);
}
.color-dark-blue {
color: var(--color-dark-blue);
}
.color-blue {
color: var(--color-blue);
}
.color-light-blue {
color: var(--color-light-blue);
}
.color-lightest-blue {
color: var(--color-lightest-blue);
}
.color-washed-blue {
color: var(--color-washed-blue);
}
.color-washed-green {
color: var(--color-washed-green);
}
.color-washed-yellow {
color: var(--color-washed-yellow);
}
.color-washed-red {
color: var(--color-washed-red);
}
/* Utility - Background */
.bg-body {
background-color: var(--color-bg-body);
}
.bg-base {
background-color: var(--color-bg-base);
}
.bg-alt {
background-color: var(--color-bg-alt);
}
.bg-alt-2 {
background-color: var(--color-bg-alt-2);
}
.bg-inverted {
background-color: var(--color-bg-inverted);
}
.bg-black {
background-color: var(--color-black);
}
.bg-near-black {
background-color: var(--color-near-black);
}
.bg-dark-gray {
background-color: var(--color-dark-gray);
}
.bg-mid-gray {
background-color: var(--color-mid-gray);
}
.bg-gray {
background-color: var(--color-gray);
}
.bg-silver {
background-color: var(--color-silver);
}
.bg-light-silver {
background-color: var(--color-light-silver);
}
.bg-moon-gray {
background-color: var(--color-moon-gray);
}
.bg-light-gray {
background-color: var(--color-light-gray);
}
.bg-near-white {
background-color: var(--color-near-white);
}
.bg-white {
background-color: var(--color-white);
}
.bg-dark-red {
background-color: var(--color-dark-red);
}
.bg-red {
background-color: var(--color-red);
}
.bg-light-red {
background-color: var(--color-light-red);
}
.bg-orange {
background-color: var(--color-orange);
}
.bg-gold {
background-color: var(--color-gold);
}
.bg-yellow {
background-color: var(--color-yellow);
}
.bg-light-yellow {
background-color: var(--color-light-yellow);
}
.bg-purple {
background-color: var(--color-purple);
}
.bg-light-purple {
background-color: var(--color-light-purple);
}
.bg-dark-pink {
background-color: var(--color-dark-pink);
}
.bg-hot-pink {
background-color: var(--color-hot-pink);
}
.bg-pink {
background-color: var(--color-pink);
}
.bg-light-pink {
background-color: var(--color-light-pink);
}
.bg-dark-green {
background-color: var(--color-dark-green);
}
.bg-green {
background-color: var(--color-green);
}
.bg-light-green {
background-color: var(--color-light-green);
}
.bg-navy {
background-color: var(--color-navy);
}
.bg-dark-blue {
background-color: var(--color-dark-blue);
}
.bg-blue {
background-color: var(--color-blue);
}
.bg-light-blue {
background-color: var(--color-light-blue);
}
.bg-lightest-blue {
background-color: var(--color-lightest-blue);
}
.bg-washed-blue {
background-color: var(--color-washed-blue);
}
.bg-washed-green {
background-color: var(--color-washed-green);
}
.bg-washed-yellow {
background-color: var(--color-washed-yellow);
}
.bg-washed-red {
background-color: var(--color-washed-red);
}
/* Utility - Radius */
.br-all {
border-radius: var(--radius);
}
/* Utility - Padding */
.pd-0 {
padding: 0;
}
.pd-05 {
padding: 0.5rem;
}
.pd-1 {
padding: 1rem;
}
.pd-15 {
padding: 1.5rem;
}
.pd-2 {
padding: 2rem;
}
.pd-25 {
padding: 2.5rem;
}
.pd-3 {
padding: 3rem;
}
.pd-35 {
padding: 3.5rem;
}
.pd-4 {
padding: 4rem;
}
.pd-5 {
padding: 5rem;
}
.pd-x-0 {
padding-left: 0;
padding-right: 0;
}
.pd-x-05 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.pd-x-1 {
padding-left: 1rem;
padding-right: 1rem;
}
.pd-x-15 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.pd-x-2 {
padding-left: 2rem;
padding-right: 2rem;
}
.pd-x-25 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.pd-x-3 {
padding-left: 3rem;
padding-right: 3rem;
}
.pd-x-35 {
padding-left: 3.5rem;
padding-right: 3rem;
}
.pd-x-4 {
padding-left: 4rem;
padding-right: 4rem;
}
.pd-x-5 {
padding-left: 5rem;
padding-right: 5rem;
}
.pd-y-0 {
padding-top: 0;
padding-bottom: 0;
}
.pd-y-05 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.pd-y-1 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.pd-y-15 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.pd-y-2 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.pd-y-25 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.pd-y-3 {
padding-top: 3rem;
padding-bottom: 3rem;
}
.pd-y-35 {
padding-top: 3.5rem;
padding-bottom: 3rem;
}
.pd-y-4 {
padding-top: 4rem;
padding-bottom: 4rem;
}
.pd-y-5 {
padding-top: 5rem;
padding-bottom: 5rem;
}
.pd-t-0 {
padding-top: 0;
}
.pd-t-05 {
padding-top: 0.5rem;
}
.pd-t-1 {
padding-top: 1rem;
}
.pd-t-15 {
padding-top: 1.5rem;
}
.pd-t-2 {
padding-top: 2rem;
}
.pd-t-25 {
padding-top: 2.5rem;
}
.pd-t-3 {
padding-top: 3rem;
}
.pd-t-35 {
padding-top: 3.5rem;
}
.pd-t-4 {
padding-top: 4rem;
}
.pd-t-5 {
padding-top: 5rem;
}
.pd-r-0 {
padding-right: 0;
}
.pd-r-05 {
padding-right: 0.5rem;
}
.pd-r-1 {
padding-right: 1rem;
}
.pd-r-15 {
padding-right: 1.5rem;
}
.pd-r-2 {
padding-right: 2rem;
}
.pd-r-25 {
padding-right: 2.5rem;
}
.pd-r-3 {
padding-right: 3rem;
}
.pd-r-35 {
padding-right: 3.5rem;
}
.pd-r-4 {
padding-right: 4rem;
}
.pd-r-5 {
padding-right: 5rem;
}
.pd-b-0 {
padding-bottom: 0;
}
.pd-b-05 {
padding-bottom: 0.5rem;
}
.pd-b-1 {
padding-bottom: 1rem;
}
.pd-b-15 {
padding-bottom: 1.5rem;
}
.pd-b-2 {
padding-bottom: 2rem;
}
.pd-b-25 {
padding-bottom: 2.5rem;
}
.pd-b-3 {
padding-bottom: 3rem;
}
.pd-b-35 {
padding-bottom: 3.5rem;
}
.pd-b-4 {
padding-bottom: 4rem;
}
.pd-b-5 {
padding-bottom: 5rem;
}
.pd-l-0 {
padding-left: 0;
}
.pd-l-05 {
padding-left: 0.5rem;
}
.pd-l-1 {
padding-left: 1rem;
}
.pd-l-15 {
padding-left: 1.5rem;
}
.pd-l-2 {
padding-left: 2rem;
}
.pd-l-25 {
padding-left: 2.5rem;
}
.pd-l-3 {
padding-left: 3rem;
}
.pd-l-35 {
padding-left: 3.5rem;
}
.pd-l-4 {
padding-left: 4rem;
}
.pd-l-5 {
padding-left: 5rem;
}
/* Utility - Margin */
.mg-0 {
margin: 0;
}
.mg-05 {
margin: 0.5rem;
}
.mg-1 {
margin: 1rem;
}
.mg-15 {
margin: 1.5rem;
}
.mg-2 {
margin: 2rem;
}
.mg-25 {
margin: 2.5rem;
}
.mg-3 {
margin: 3rem;
}
.mg-35 {
margin: 3.5rem;
}
.mg-4 {
margin: 4rem;
}
.mg-5 {
margin: 5rem;
}
.mg-x-0 {
margin-left: 0;
margin-right: 0;
}
.mg-x-05 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.mg-x-1 {
margin-left: 1rem;
margin-right: 1rem;
}
.mg-x-15 {
margin-left: 1.5rem;
margin-right: 1.5rem;
}
.mg-x-2 {
margin-left: 2rem;
margin-right: 2rem;
}
.mg-x-25 {
margin-left: 2.5rem;
margin-right: 2.5rem;
}
.mg-x-3 {
margin-left: 3rem;
margin-right: 3rem;
}
.mg-x-35 {
margin-left: 3.5rem;
margin-right: 3rem;
}
.mg-x-4 {
margin-left: 4rem;
margin-right: 4rem;
}
.mg-x-5 {
margin-left: 5rem;
margin-right: 5rem;
}
.mg-y-0 {
margin-top: 0;
margin-bottom: 0;
}
.mg-y-05 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.mg-y-1 {
margin-top: 1rem;
margin-bottom: 1rem;
}
.mg-y-15 {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.mg-y-2 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.mg-y-25 {
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}
.mg-y-3 {
margin-top: 3rem;
margin-bottom: 3rem;
}
.mg-y-35 {
margin-top: 3.5rem;
margin-bottom: 3rem;
}
.mg-y-4 {
margin-top: 4rem;
margin-bottom: 4rem;
}
.mg-y-5 {
margin-top: 5rem;
margin-bottom: 5rem;
}
.mg-t-0 {
margin-top: 0;
}
.mg-t-05 {
margin-top: 0.5rem;
}
.mg-t-1 {
margin-top: 1rem;
}
.mg-t-15 {
margin-top: 1.5rem;
}
.mg-t-2 {
margin-top: 2rem;
}
.mg-t-25 {
margin-top: 2.5rem;
}
.mg-t-3 {
margin-top: 3rem;
}
.mg-t-35 {
margin-top: 3.5rem;
}
.mg-t-4 {
margin-top: 4rem;
}
.mg-t-5 {
margin-top: 5rem;
}
.mg-r-0 {
margin-right: 0;
}
.mg-r-05 {
margin-right: 0.5rem;
}
.mg-r-1 {
margin-right: 1rem;
}
.mg-r-15 {
margin-right: 1.5rem;
}
.mg-r-2 {
margin-right: 2rem;
}
.mg-r-25 {
margin-right: 2.5rem;
}
.mg-r-3 {
margin-right: 3rem;
}
.mg-r-35 {
margin-right: 3.5rem;
}
.mg-r-4 {
margin-right: 4rem;
}
.mg-r-5 {
margin-right: 5rem;
}
.mg-b-0 {
margin-bottom: 0;
}
.mg-b-05 {
margin-bottom: 0.5rem;
}
.mg-b-1 {
margin-bottom: 1rem;
}
.mg-b-15 {
margin-bottom: 1.5rem;
}
.mg-b-2 {
margin-bottom: 2rem;
}
.mg-b-25 {
margin-bottom: 2.5rem;
}
.mg-b-3 {
margin-bottom: 3rem;
}
.mg-b-35 {
margin-bottom: 3.5rem;
}
.mg-b-4 {
margin-bottom: 4rem;
}
.mg-b-5 {
margin-bottom: 5rem;
}
.mg-l-0 {
margin-left: 0;
}
.mg-l-05 {
margin-left: 0.5rem;
}
.mg-l-1 {
margin-left: 1rem;
}
.mg-l-15 {
margin-left: 1.5rem;
}
.mg-l-2 {
margin-left: 2rem;
}
.mg-l-25 {
margin-left: 2.5rem;
}
.mg-l-3 {
margin-left: 3rem;
}
.mg-l-35 {
margin-left: 3.5rem;
}
.mg-l-4 {
margin-left: 4rem;
}
.mg-l-5 {
margin-left: 5rem;
}
/* Utility - Flex */
.fl {
display: flex;
}
.fl-inline {
display: inline-flex;
}
.fl-row {
flex-direction: row;
} /* Default */
.fl-row-rev {
flex-direction: row-reverse;
}
.fl-col {
flex-direction: column;
}
.fl-col-rev {
flex-direction: column-reverse;
}
.fl-nowrap {
flex-wrap: nowrap;
} /* Default */
.fl-wrap {
flex-wrap: wrap;
}
.fl-wrap-rev {
flex-wrap: wrap-reverse;
}
.fl-j-start {
justify-content: flex-start;
} /* Default */
.fl-j-end {
justify-content: flex-end;
}
.fl-j-center {
justify-content: center;
}
.fl-j-around {
justify-content: space-around;
}
.fl-j-between {
justify-content: space-between;
}
.fl-a-stretch {
align-items: stretch;
} /* Default */
.fl-a-start {
align-items: flex-start;
}
.fl-a-center {
align-items: center;
}
.fl-a-end {
align-items: flex-end;
}
.fl-a-baseline {
align-items: baseline;
}
.fl-grow-0 {
flex-grow: 0;
} /* Default */
.fl-grow-1 {
flex-grow: 1;
}
.fl-shrink-1 {
flex-shrink: 1;
} /* Default */
.fl-shrink-0 {
flex-shrink: 0;
}
.fl-b-auto {
flex-basis: auto;
} /* Default */
.fl-b-0 {
flex-basis: 0;
}
.fl-a-auto {
align-self: auto;
} /* Default */
.fl-a-start {
align-self: flex-start;
}
.fl-a-center {
align-self: center;
}
.fl-a-end {
align-self: flex-end;
}
.fl-a-stretch {
align-self: stretch;
}
.fl-a-baseline {
align-self: baseline;
}
/* Utility - Position */
.pos-absolute {
position: absolute !important;
}
.pos-fixed {
position: fixed !important;
}
.pos-relative {
position: relative !important;
}
.top-0 {
top: 0 !important;
}
.bottom-0 {
bottom: 0 !important;
}
/* Utility - Width/Height */
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.screen-width {
width: 100vw;
}
.screen-height {
height: 100vh;
}
/* Blur */
.blur {
filter: blur(70px);
}
/* Overflow */
.no-overflow {
overflow: hidden;
}
/* Grid */
.grid {
width: 100%;
display: grid;
grid-gap: 1rem;
}
.grid.grid--2 {
grid-template-columns: 1fr 1fr;
}
.grid.grid--3 {
grid-template-columns: 1fr 1fr 1fr;
}
.grid.grid--4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid.grid--trio {
grid-template-columns: 1fr 3fr 1fr 1fr;
}
/* Responsive Grid */
.grid--responsive.grid--2 {
grid-template-columns: var(--grid-2-columns);
}
.grid--responsive.grid--3 {
grid-template-columns: var(--grid-3-columns);
}
.grid--responsive.grid--4 {
grid-template-columns: var(--grid-4-columns);
}
.grid--responsive.grid--trio {
grid-template-columns: var(--grid-trio-columns);
}
/* Header bar */
header {
height: var(--header-height);
box-shadow: 0 1px 0 0 var(--color-border-base);
position: sticky;
top: 0;
left: 0;
right: 0;
padding: 0 2rem;
background: var(--color-bg-header);
z-index: 10;
}
header h1 {
font-size: 16px;
font-weight: 800;
line-height: var(--header-height);
}
/* Modal */
.modal {
width: 100%;
height: 100vh;
position: relative;
display: grid;
place-items: center;
}
.modal__el {
width: 570px;
position: relative;
z-index: 2;
background: var(--color-bg-modal);
display: flex;
flex-direction: column;
padding: 2rem;
}
.modal__overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: var(--color-bg-modal-overlay);
opacity: 0.9;
}
/* Code */
code,
pre,
kbd,
samp {
font-family: var(--font-mono);
}
.codeblock {
padding: 1rem;
color: var(--color-text-alt);
background: var(--color-bg-placeholder);
border-radius: var(--radius);
}
/* Placeholder blocks */
.placeholder {
min-height: 180px;
background: var(--color-bg-placeholder);
border-radius: var(--radius);
}
/* Aspect ratio */
.aspect-169 {
padding-top: 56.25%;
height: 0;
overflow: hidden;
}
.player {
background: var(--color-bg-player);
}
/* Buttons & Forms */
form {
display: flex;
flex-direction: column;
align-items: flex-start;
}
fieldset {
width: 100%;
border: 0;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
fieldset input,
fieldset textarea,
fieldset select,
fieldset button {
width: 100%;
margin-bottom: 1rem;
}
label {
font-weight: 500;
}
label span {
font-weight: 200;
}
button {
border: 2px solid transparent;
outline: none;
appearance: none;
cursor: pointer;
-webkit-appearance: none;
border-radius: var(--radius-small);
}
input,
select,
textarea {
border: 2px solid transparent;
outline: none;
appearance: none;
resize: none;
-webkit-appearance: none;
padding: 1rem;
background: var(--color-bg-input);
border-radius: var(--radius-small);
}
a.btn {
display: inline-block;
line-height: var(--input-height);
border-radius: var(--radius-small);
}
.btn,
button,
select,
input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
height: var(--input-height);
}
input:focus,
textarea:focus,
.btn:focus,
.btn:active {
border: 2px solid var(--color--primary);
}
select {
padding: 0 20px 0 10px;
position: relative;
}
select:focus,
select:active {
border: 2px solid var(--color--primary);
}
.btn.rounded,
input.rounded {
border-radius: var(--input-height);
}
.btn {
font-weight: 500;
background: var(--color-bg-button);
border: 2px solid transparent;
}
.btn--small {
height: var(--input-height-small);
}
a.btn--small {
line-height: calc(var(--input-height-small) - 4px);
}
.btn--primary {
background: var(--color-bg-button-primary-default);
color: var(--color-text-inverted);
}
.btn--primary:hover,
.btn--primary:focus {
background: var(--color--secondary);
}
.btn--secondary {
background: var(--color-bg-button-secondary-default);
color: var(--color-text-base);
}
.btn--destruct {
background: var(--color--destructive);
color: var(--color-text-inverted);
}
.btn--confirm {
background: var(--color--positive);
}
.btn--floating {
width: var(--btn-floating-size);
height: var(--btn-floating-size);
background: var(--color-bg-button-floating);
border-radius: var(--btn-floating-size);
color: var(--color-text-inverted);
display: flex;
align-items: center;
position: absolute;
bottom: 2rem;
right: 2rem;
}
.btn--floating svg {
width: var(--btn-floating-icon-size);
height: var(--btn-floating-icon-size);
fill: var(--color-text-inverted);
}
.btn--floating:hover,
.btn--floating:focus {
background: var(--color-bg-button-floating-hover);
}
.btn--fixed {
position: fixed;
}
.btn--pad {
padding: 0 1.2rem;
}
/* Interactive */
.interactive {
cursor: pointer;
border: 2px solid transparent;
display: flex;
padding: 1rem;
flex-direction: column;
color: var(--color-text-base);
overflow: hidden;
}
.interactive strong,
.interactive span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.interactive:focus,
.interactive:hover {
background: var(--color-bg-button);
color: var(--color-bg-button-primary-default);
}
.interactive:focus {
border: 2px solid var(--color--primary);
outline: none;
}
.interactive--active,
.interactive--active:hover,
.interactive--active:focus {
background: var(--color-bg-button-primary-default);
color: var(--color-text-inverted);
}
/* Notices */
.notice {
border-radius: var(--radius-small);
position: absolute;
top: 1.5rem;
right: 1.5rem;
}
.notice__content {
display: flex;
padding: 1.5rem 2rem;
font-weight: 600;
}
.notice--success {
background: var(--color-bg-notice-success);
}
.notice--error {
background: var(--color-bg-notice-error);
color: var(--color-text-inverted);
}
.notice__icon {
margin-right: 1rem;
}
/* Chat */
.chat-wrapper {
position: relative;
padding-bottom: calc(var(--input-height) + 30px);
display: flex;
flex-direction: column;
align-items: flex-start;
}
.chat-line {
padding: 12px 15px;
background: var(--color-bg-chat-bubble);
border-radius: var(--input-height);
display: flex;
margin: 0 0 5px 0;
}
.chat-line p {
display: inline;
font-weight: normal;
}
.chat-line .username {
font-weight: 800;
padding-right: 0.1rem;
}
.composer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 15px 0;
background: var(--color-bg-chat);
}
.composer input {
width: 100%;
}
/* Icons */
.icon {
fill: var(--color-text-base);
}
.icon--inverted {
fill: var(--color-text-inverted);
}
.icon--success {
fill: var(--color--positive);
}
.icon--error {
fill: var(--color--destructive);
}
.icon--14 {
width: 14px;
height: 14px;
}
.icon--24 {
width: 24px;
height: 24px;
}
.icon--36 {
width: 36px;
height: 36px;
}
.icon--48 {
width: 48px;
height: 48px;
} | 0.46223 | 0.097907 |
:root {
--accent-color: #297373;
--table-gap: 6px;
--border-radius: 2px;
}
.content-builder {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 1rem;
color: #979696;
}
.content-builder h2 {
margin-bottom: 14px;
}
.content-builder label {
display: block;
margin-bottom: var(--table-gap);
}
.content-builder label,
.content-table > div:first-child {
text-transform: lowercase;
font-size: 14px;
color: #297373;
}
.content-builder input[type="text"],
.content-builder input[type="submit"],
.content-builder select,
.content-builder button {
height: 30px;
font-family: inherit;
border-radius: var(--border-radius);
border: none;
outline: none;
}
.content-builder input[type="text"],
.content-builder select {
background-color: #585858;
border: none;
}
.content-builder input[type="submit"],
.content-builder button {
background-color: var(--accent-color);
color: #fff;
padding-left: 6px;
padding-right: 6px;
cursor: pointer;
}
.button-col button {
background-color: #1d1b1d;
}
.content-builder input[type="text"] {
padding-left: 6px;
}
.content-table {
display: flex;
flex-direction: column;
row-gap: var(--table-gap);
margin-top: 20px;
margin-bottom: .5rem;
}
.content-table > div {
display: flex;
flex-direction: row;
column-gap: var(--table-gap);
}
.content-table .name-col {
flex-grow: 1;
}
.content-table .type-col {
width: 10rem;
}
.content-table .button-col {
width: 100px;
}
.selectType {
margin-top: -.5rem;
}
.additionalInputs {
align-items: center;
}
.content-table input[type="text"],
.content-table select {
width: 100%;
}
.content-builder .button-group > * {
margin-right: var(--table-gap);
}
div.form-error {
margin-top: calc(var(--table-gap) * 2);
font-size: 12px;
color: #bd5555;
}
.form-error ul {
list-style-type: none;
}
.rowBuilder {
align-items: center;
}
/* Inner Sidebar */
.contentBuilderSidebar {
width: 15rem;
border-right: 1px solid #39393A;
height: 100%;
padding-top: 3rem;
}
.contentBuilderSidebarCollections {
overflow-y: auto;
max-height: 55%;
scrollbar-width: none;
}
.contentBuilderSidebarCollections::-webkit-scrollbar {
width: 0;
}
.contentBuilderContainer {
position: fixed;
top: 2.5rem;
left: 14rem;
max-width: calc(100% - 14rem);
font-family: 'Poppins', sans-serif;
height: 100%;
}
.contentBuilderSidebarTool {
color: #819494;
width: 100%;
height: 2.5rem;
padding-top: .5rem;
display: flex;
cursor: pointer;
}
.contentBuilderSidebarTool:hover {
background-color: #343636;
cursor: pointer;
}
.contentBuilderAddCollectionPlus {
margin-right: .5rem;
margin-left: 2rem;
}
.contentBuilderSidebarToolActive {
color: #297373;
}
.activeConfigContainer {
position: fixed;
top: 3.5rem;
left: 29rem;
max-width: calc(100% - 28rem);
font-family: 'Poppins', sans-serif;
height: 100%;
}
/* New Field Popup */
.fieldPopupContainer {
position: fixed;
left: 50%;
top: 30%;
z-index: 2;
background-color: #212021;
height: 20rem;
width: 20rem;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
border-radius: 3px;
box-shadow: 3px 3px 3px #212021;
}
.newFieldPopupLabel {
margin-top: 1rem;
color: #297373;
font-size: .8rem;
}
.newFieldPopupInput, .dataType {
height: 1.7rem;
width: 10rem;
margin-right: 5rem;
margin-top: .5rem;
border-radius: 3px;
background-color: #819494;
opacity: 0.5;
border: none;
text-indent: .2rem;
}
.addFieldPopupHeader {
color: #819494;
margin-top: 1rem;
opacity: 0.6;
}
.fieldPopupForm {
display: flex;
flex-direction: column;
}
.fieldPopupBtnContainer {
display: flex;
align-self: flex-end;
margin-right: 1rem;
margin-bottom: 1rem;
}
.fieldPopupCancel {
font-size: .8rem;
color: #8a128a;
margin-right: 1rem;
margin-top: .5rem;
}
.fieldPopupCancel:hover {
text-decoration: underline;
cursor: pointer;
}
.fieldPopupBtn {
cursor: pointer;
width: fit-content;
padding: .5rem;
height: 2rem;
border-radius: 5px;
background-color: #212021;
border: 1px solid #ad814b;
color: #ad814b;
}
.fieldPopupBtn:hover {
border: 1px solid #819494;
color: #819494;
}
.fieldPopupBtn:focus {
outline: 0;
}
.popupLoader {
margin-top: .4rem;
}
.addSuccessSVG {
fill: #297373;
margin-right: 1rem;
margin-top: .4rem;
}
/* Field Edit */
.fieldEditContainer {
position: fixed;
top: 3.5rem;
left: 30rem;
width: calc(100% - 30rem);
font-family: 'Poppins', sans-serif;
}
.fieldEditHeader {
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 1.5rem;
padding-top: 1rem;
}
.fieldEditDetails {
display: flex;
flex-direction: column;
margin-left: 1rem;
}
.fieldEditName {
font-size: 1.5rem;
color: #819494;
opacity: 0.6;
}
.fieldEditCollection {
font-size: 0.7rem;
color: #819494;
opacity: 0.3;
margin-top: -0.3rem;
margin-left: 0.2rem;
}
.fieldEditBtnContainer {
display: flex;
justify-content: center;
align-items: center;
width: fit-content;
height: fit-content;
}
.fieldEditBtn {
cursor: pointer;
margin-right: 2rem;
width: 5rem;
padding: .5rem;
height: 2rem;
border-radius: 5px;
background-color: #2e2d2e;
border: 1px solid #ad814b;
color: #ad814b;
}
.fieldEditBtn:focus {
outline: 0;
}
.fieldEditBtn:hover {
border: 1px solid #819494;
color: #819494;
}
.fieldEditForm {
margin-left: 3rem;
}
.fieldEditDeleteContainer {
display: flex;
} | client/static/contentBuilder.css |
:root {
--accent-color: #297373;
--table-gap: 6px;
--border-radius: 2px;
}
.content-builder {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 1rem;
color: #979696;
}
.content-builder h2 {
margin-bottom: 14px;
}
.content-builder label {
display: block;
margin-bottom: var(--table-gap);
}
.content-builder label,
.content-table > div:first-child {
text-transform: lowercase;
font-size: 14px;
color: #297373;
}
.content-builder input[type="text"],
.content-builder input[type="submit"],
.content-builder select,
.content-builder button {
height: 30px;
font-family: inherit;
border-radius: var(--border-radius);
border: none;
outline: none;
}
.content-builder input[type="text"],
.content-builder select {
background-color: #585858;
border: none;
}
.content-builder input[type="submit"],
.content-builder button {
background-color: var(--accent-color);
color: #fff;
padding-left: 6px;
padding-right: 6px;
cursor: pointer;
}
.button-col button {
background-color: #1d1b1d;
}
.content-builder input[type="text"] {
padding-left: 6px;
}
.content-table {
display: flex;
flex-direction: column;
row-gap: var(--table-gap);
margin-top: 20px;
margin-bottom: .5rem;
}
.content-table > div {
display: flex;
flex-direction: row;
column-gap: var(--table-gap);
}
.content-table .name-col {
flex-grow: 1;
}
.content-table .type-col {
width: 10rem;
}
.content-table .button-col {
width: 100px;
}
.selectType {
margin-top: -.5rem;
}
.additionalInputs {
align-items: center;
}
.content-table input[type="text"],
.content-table select {
width: 100%;
}
.content-builder .button-group > * {
margin-right: var(--table-gap);
}
div.form-error {
margin-top: calc(var(--table-gap) * 2);
font-size: 12px;
color: #bd5555;
}
.form-error ul {
list-style-type: none;
}
.rowBuilder {
align-items: center;
}
/* Inner Sidebar */
.contentBuilderSidebar {
width: 15rem;
border-right: 1px solid #39393A;
height: 100%;
padding-top: 3rem;
}
.contentBuilderSidebarCollections {
overflow-y: auto;
max-height: 55%;
scrollbar-width: none;
}
.contentBuilderSidebarCollections::-webkit-scrollbar {
width: 0;
}
.contentBuilderContainer {
position: fixed;
top: 2.5rem;
left: 14rem;
max-width: calc(100% - 14rem);
font-family: 'Poppins', sans-serif;
height: 100%;
}
.contentBuilderSidebarTool {
color: #819494;
width: 100%;
height: 2.5rem;
padding-top: .5rem;
display: flex;
cursor: pointer;
}
.contentBuilderSidebarTool:hover {
background-color: #343636;
cursor: pointer;
}
.contentBuilderAddCollectionPlus {
margin-right: .5rem;
margin-left: 2rem;
}
.contentBuilderSidebarToolActive {
color: #297373;
}
.activeConfigContainer {
position: fixed;
top: 3.5rem;
left: 29rem;
max-width: calc(100% - 28rem);
font-family: 'Poppins', sans-serif;
height: 100%;
}
/* New Field Popup */
.fieldPopupContainer {
position: fixed;
left: 50%;
top: 30%;
z-index: 2;
background-color: #212021;
height: 20rem;
width: 20rem;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
border-radius: 3px;
box-shadow: 3px 3px 3px #212021;
}
.newFieldPopupLabel {
margin-top: 1rem;
color: #297373;
font-size: .8rem;
}
.newFieldPopupInput, .dataType {
height: 1.7rem;
width: 10rem;
margin-right: 5rem;
margin-top: .5rem;
border-radius: 3px;
background-color: #819494;
opacity: 0.5;
border: none;
text-indent: .2rem;
}
.addFieldPopupHeader {
color: #819494;
margin-top: 1rem;
opacity: 0.6;
}
.fieldPopupForm {
display: flex;
flex-direction: column;
}
.fieldPopupBtnContainer {
display: flex;
align-self: flex-end;
margin-right: 1rem;
margin-bottom: 1rem;
}
.fieldPopupCancel {
font-size: .8rem;
color: #8a128a;
margin-right: 1rem;
margin-top: .5rem;
}
.fieldPopupCancel:hover {
text-decoration: underline;
cursor: pointer;
}
.fieldPopupBtn {
cursor: pointer;
width: fit-content;
padding: .5rem;
height: 2rem;
border-radius: 5px;
background-color: #212021;
border: 1px solid #ad814b;
color: #ad814b;
}
.fieldPopupBtn:hover {
border: 1px solid #819494;
color: #819494;
}
.fieldPopupBtn:focus {
outline: 0;
}
.popupLoader {
margin-top: .4rem;
}
.addSuccessSVG {
fill: #297373;
margin-right: 1rem;
margin-top: .4rem;
}
/* Field Edit */
.fieldEditContainer {
position: fixed;
top: 3.5rem;
left: 30rem;
width: calc(100% - 30rem);
font-family: 'Poppins', sans-serif;
}
.fieldEditHeader {
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 1.5rem;
padding-top: 1rem;
}
.fieldEditDetails {
display: flex;
flex-direction: column;
margin-left: 1rem;
}
.fieldEditName {
font-size: 1.5rem;
color: #819494;
opacity: 0.6;
}
.fieldEditCollection {
font-size: 0.7rem;
color: #819494;
opacity: 0.3;
margin-top: -0.3rem;
margin-left: 0.2rem;
}
.fieldEditBtnContainer {
display: flex;
justify-content: center;
align-items: center;
width: fit-content;
height: fit-content;
}
.fieldEditBtn {
cursor: pointer;
margin-right: 2rem;
width: 5rem;
padding: .5rem;
height: 2rem;
border-radius: 5px;
background-color: #2e2d2e;
border: 1px solid #ad814b;
color: #ad814b;
}
.fieldEditBtn:focus {
outline: 0;
}
.fieldEditBtn:hover {
border: 1px solid #819494;
color: #819494;
}
.fieldEditForm {
margin-left: 3rem;
}
.fieldEditDeleteContainer {
display: flex;
} | 0.394434 | 0.084644 |
@charset "utf-8";
/* let's clear some floats */
.clearfix::before,
.clearfix::after {
display: table;
content: " ";
}
.clearfix::after {
clear: both;
}
.hide {
display: none;
}
.none {
display: none;
}
.text-overflow-ellipsis {
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
/*border-1px 部分*/
.border-1px {
position: relative;
}
.border-1px::before,
.border-1px::after {
position: absolute;
left: 0;
display: block;
width: 100%;
content: " ";
border-top: 1px solid #c8c7cc;
}
.border-1px::before {
top: 0;
display: none;
}
.border-1px::after {
bottom: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
.border-1px::after,
.border-1px::before {
-webkit-transform: scaleY(0.7);
-ms-transform: scaleY(0.7);
transform: scaleY(0.7);
-webkit-transform-origin: 0 0;
}
.border-1px::after {
-webkit-transform-origin: left bottom;
}
}
@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
.border-1px::after,
.border-1px::before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.ui-border-1px {
position: relative;
}
.ui-border-1px::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
content: "";
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
pointer-events: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
.ui-border-1px::after {
position: absolute;
top: 0;
right: -100%;
bottom: -100%;
left: 0;
display: block;
content: "";
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
pointer-events: none;
}
}
/*
HTML5 Reset :: style.css
----------------------------------------------------------
We have learned much from/been inspired by/taken code where offered from:
<NAME> :: http://meyerweb.com
HTML5 Doctor :: http://html5doctor.com
and the HTML5 Boilerplate :: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body {
font-family: "Microsoft YaHei", -apple-system-font, "\9ED1\4F53", "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
-webkit-user-select: none;
-webkit-user-drag: none;
}
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
border: 0;
background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
display: block;
}
/* Removes webkit border when the element is on focus */
a,
a:active,
a:focus,
button,
button:active,
input,
input:focus,
select,
select:focus,
textarea,
textarea:focus {
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
/* Handle box-sizing while better addressing child elements:
http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
Note: keeping IMG here will cause problems if you're using foreground images as sprites.
If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
max-width: 100%;
}
/* force a vertical scrollbar to prevent a jumpy page */
html {
overflow-y: scroll;
}
/* we use a lot of ULs that aren't bulleted.
don't forget to restore the bullets within content. */
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
content: "";
content: none;
}
a {
padding: 0;
margin: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
del {
text-decoration: line-through;
}
abbr[title],
dfn[title] {
cursor: help;
border-bottom: 1px dotted #000;
}
/* tables still need cellspacing="0" in the markup */
table {
border-spacing: 0;
border-collapse: collapse;
}
th {
font-weight: bold;
vertical-align: bottom;
}
td {
font-weight: normal;
vertical-align: top;
}
hr {
display: block;
height: 1px;
padding: 0;
margin: 1em 0;
border: 0;
border-top: 1px solid #ccc;
}
input,
select {
vertical-align: middle;
}
pre {
white-space: pre;
/* CSS2 */
white-space: pre-wrap;
/* CSS 2.1 */
white-space: pre-line;
/* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word;
/* IE */
}
input[type="radio"] {
vertical-align: text-bottom;
}
input[type="checkbox"] {
vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
vertical-align: baseline;
}
.ie6 input {
vertical-align: text-bottom;
}
select,
input,
textarea {
font: 99% sans-serif;
}
table {
font: 100%;
font-size: inherit;
}
small {
font-size: 85%;
}
strong {
font-weight: bold;
}
td,
td img {
vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
margin: 0;
}
/* make buttons play nice in IE */
button,
input[type=button] {
width: auto;
overflow: visible;
}
/* scale images in IE7 more attractively */
.ie7 img {
-ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover
(commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/*
LESS variables are information about icon's compiled state, stored under its original file name
.icon-home {
width: @icon-home-width;
}
The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;
At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables
.icon-home {
.sprite-width(@icon-home);
}
.icon-email {
.sprite(@icon-email);
}
Example usage in HTML:
`display: block` sprite:
<div class="icon-home"></div>
To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:
// CSS
.icon {
display: inline-block;
}
// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
but can be overridden inside of LESS
This must be run when you have at least 2 sprites.
If run with a single sprite, then there will be reference errors.
.sprites(@spritesheet-sprites);
*/
html,
body {
height: 100%;
width: 100%;
}
body {
background-color: #f8f9fb;
}
.content-wrap {
position: absolute;
height: 100%;
width: 100%;
}
.info-name-text {
display: block;
} | test/demo/demo01/index.css | @charset "utf-8";
/* let's clear some floats */
.clearfix::before,
.clearfix::after {
display: table;
content: " ";
}
.clearfix::after {
clear: both;
}
.hide {
display: none;
}
.none {
display: none;
}
.text-overflow-ellipsis {
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
/*border-1px 部分*/
.border-1px {
position: relative;
}
.border-1px::before,
.border-1px::after {
position: absolute;
left: 0;
display: block;
width: 100%;
content: " ";
border-top: 1px solid #c8c7cc;
}
.border-1px::before {
top: 0;
display: none;
}
.border-1px::after {
bottom: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
.border-1px::after,
.border-1px::before {
-webkit-transform: scaleY(0.7);
-ms-transform: scaleY(0.7);
transform: scaleY(0.7);
-webkit-transform-origin: 0 0;
}
.border-1px::after {
-webkit-transform-origin: left bottom;
}
}
@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
.border-1px::after,
.border-1px::before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.ui-border-1px {
position: relative;
}
.ui-border-1px::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
content: "";
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
pointer-events: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
.ui-border-1px::after {
position: absolute;
top: 0;
right: -100%;
bottom: -100%;
left: 0;
display: block;
content: "";
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
pointer-events: none;
}
}
/*
HTML5 Reset :: style.css
----------------------------------------------------------
We have learned much from/been inspired by/taken code where offered from:
<NAME> :: http://meyerweb.com
HTML5 Doctor :: http://html5doctor.com
and the HTML5 Boilerplate :: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body {
font-family: "Microsoft YaHei", -apple-system-font, "\9ED1\4F53", "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
-webkit-user-select: none;
-webkit-user-drag: none;
}
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
border: 0;
background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
display: block;
}
/* Removes webkit border when the element is on focus */
a,
a:active,
a:focus,
button,
button:active,
input,
input:focus,
select,
select:focus,
textarea,
textarea:focus {
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
/* Handle box-sizing while better addressing child elements:
http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
Note: keeping IMG here will cause problems if you're using foreground images as sprites.
If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
max-width: 100%;
}
/* force a vertical scrollbar to prevent a jumpy page */
html {
overflow-y: scroll;
}
/* we use a lot of ULs that aren't bulleted.
don't forget to restore the bullets within content. */
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
content: "";
content: none;
}
a {
padding: 0;
margin: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
del {
text-decoration: line-through;
}
abbr[title],
dfn[title] {
cursor: help;
border-bottom: 1px dotted #000;
}
/* tables still need cellspacing="0" in the markup */
table {
border-spacing: 0;
border-collapse: collapse;
}
th {
font-weight: bold;
vertical-align: bottom;
}
td {
font-weight: normal;
vertical-align: top;
}
hr {
display: block;
height: 1px;
padding: 0;
margin: 1em 0;
border: 0;
border-top: 1px solid #ccc;
}
input,
select {
vertical-align: middle;
}
pre {
white-space: pre;
/* CSS2 */
white-space: pre-wrap;
/* CSS 2.1 */
white-space: pre-line;
/* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word;
/* IE */
}
input[type="radio"] {
vertical-align: text-bottom;
}
input[type="checkbox"] {
vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
vertical-align: baseline;
}
.ie6 input {
vertical-align: text-bottom;
}
select,
input,
textarea {
font: 99% sans-serif;
}
table {
font: 100%;
font-size: inherit;
}
small {
font-size: 85%;
}
strong {
font-weight: bold;
}
td,
td img {
vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
margin: 0;
}
/* make buttons play nice in IE */
button,
input[type=button] {
width: auto;
overflow: visible;
}
/* scale images in IE7 more attractively */
.ie7 img {
-ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover
(commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/*
LESS variables are information about icon's compiled state, stored under its original file name
.icon-home {
width: @icon-home-width;
}
The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;
At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables
.icon-home {
.sprite-width(@icon-home);
}
.icon-email {
.sprite(@icon-email);
}
Example usage in HTML:
`display: block` sprite:
<div class="icon-home"></div>
To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:
// CSS
.icon {
display: inline-block;
}
// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
but can be overridden inside of LESS
This must be run when you have at least 2 sprites.
If run with a single sprite, then there will be reference errors.
.sprites(@spritesheet-sprites);
*/
html,
body {
height: 100%;
width: 100%;
}
body {
background-color: #f8f9fb;
}
.content-wrap {
position: absolute;
height: 100%;
width: 100%;
}
.info-name-text {
display: block;
} | 0.371935 | 0.06767 |
html, body {
min-height: 100vh;
}
.animateOpacity {
transition: 1s opacity ease-in-out;
}
.my-animate {
transition: 0.5s all ease-in-out;
}
.my-alert-body {
position: absolute;
}
.my-alert-no-opacity {
opacity: 0;
}
#notification_container {
position: fixed;
top: 1rem;
left: 50%;
max-width: 50ch;
height: auto;
opacity: 1;
z-index: 1; /* needs to be over everything */
transform: translate(-50%, 0);
}
#confirmation_container {
position: fixed;
display: flex;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
transition: backdropFilter 0.2s ease-in-out, opacity 0.1s ease-in-out, zIndex 0.4s ease-in-out;
z-index: -999;
backdrop-filter: blur(0px);
background-color: #00000040;
opacity: 0;
}
#confirmation_container.show {
backdrop-filter: blur(10px);
opacity: 1;
z-index: 100;
}
#confirmation_container #confirmation_main {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: stretch;
justify-content: space-between;
min-width: 50ch;
max-width: 60ch;
min-height: 20ch;
opacity: 0;
z-index: -999;
backdrop-filter: blur(0px);
transition: all 0.3s ease-in-out, zIndex 0.6s ease-in-out;
}
#confirmation_container #confirmation_main.show {
opacity: 1;
z-index: 100;
backdrop-filter: blur(30px);
}
@media (max-width: 52ch) {
#confirmation_main {
min-width: calc(100% - 2ch);
}
}
@media (max-height: 20ch) {
#confirmation_main {
min-height: calc(100% - 2ch);
}
}
#confirmation_main_buttons {
display: flex;
flex-wrap: wrap;
}
.loader-container {
position: fixed;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: -999;
background-color: black;
transition: opacity 1s ease-in-out;
}
main {
height: 100vh;
}
/* Overriding Boostrap */
.nav-item {
/* 9999px isn't specific. It just needs to be really big */
max-height: 9999px;
overflow: hidden;
transition: all .3s ease;
}
.nav-item.disabled {
max-height: 0;
}
/* Password Manager CSS */
.my-initial-pane {
display: none;
}
.my-initial-pane.my-initial-pane-open {
display: unset;
}
#home_pane main {
border-left:1px solid lightgray;
} | css/my.css | html, body {
min-height: 100vh;
}
.animateOpacity {
transition: 1s opacity ease-in-out;
}
.my-animate {
transition: 0.5s all ease-in-out;
}
.my-alert-body {
position: absolute;
}
.my-alert-no-opacity {
opacity: 0;
}
#notification_container {
position: fixed;
top: 1rem;
left: 50%;
max-width: 50ch;
height: auto;
opacity: 1;
z-index: 1; /* needs to be over everything */
transform: translate(-50%, 0);
}
#confirmation_container {
position: fixed;
display: flex;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
transition: backdropFilter 0.2s ease-in-out, opacity 0.1s ease-in-out, zIndex 0.4s ease-in-out;
z-index: -999;
backdrop-filter: blur(0px);
background-color: #00000040;
opacity: 0;
}
#confirmation_container.show {
backdrop-filter: blur(10px);
opacity: 1;
z-index: 100;
}
#confirmation_container #confirmation_main {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: stretch;
justify-content: space-between;
min-width: 50ch;
max-width: 60ch;
min-height: 20ch;
opacity: 0;
z-index: -999;
backdrop-filter: blur(0px);
transition: all 0.3s ease-in-out, zIndex 0.6s ease-in-out;
}
#confirmation_container #confirmation_main.show {
opacity: 1;
z-index: 100;
backdrop-filter: blur(30px);
}
@media (max-width: 52ch) {
#confirmation_main {
min-width: calc(100% - 2ch);
}
}
@media (max-height: 20ch) {
#confirmation_main {
min-height: calc(100% - 2ch);
}
}
#confirmation_main_buttons {
display: flex;
flex-wrap: wrap;
}
.loader-container {
position: fixed;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: -999;
background-color: black;
transition: opacity 1s ease-in-out;
}
main {
height: 100vh;
}
/* Overriding Boostrap */
.nav-item {
/* 9999px isn't specific. It just needs to be really big */
max-height: 9999px;
overflow: hidden;
transition: all .3s ease;
}
.nav-item.disabled {
max-height: 0;
}
/* Password Manager CSS */
.my-initial-pane {
display: none;
}
.my-initial-pane.my-initial-pane-open {
display: unset;
}
#home_pane main {
border-left:1px solid lightgray;
} | 0.432782 | 0.060891 |
.top-container{
visibility: visible;
animation-name: fadeInUp;
background: rgba(18,126,129,1);
background: -moz-linear-gradient(top, rgba(18,126,129,1) 0%, rgba(18,127,130,1) 1%, rgba(0,230,180,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(18,126,129,1)), color-stop(1%, rgba(18,127,130,1)), color-stop(100%, rgba(0,230,180,1)));
background: -webkit-linear-gradient(top, rgba(18,126,129,1) 0%, rgba(18,127,130,1) 1%, rgba(0,230,180,1) 100%);
display: table;
width: 100%;
height: 700%;
-webkit-background-size: cover;
color: white;
padding-top: 90px;
padding-bottom: 70px;
}
.Container-foot{
background-color: #666666;
padding-bottom: 1px;
margin-top: 600px;
width: 100%;
}
.Subheading2{
background-color:floralwhite;
padding-top: 60px;
margin-top: 10
width: 100%;
}
.Subheading1{
background-color:floralwhite;
padding-top: 6px;
width: 100%;
}
.column-right {
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.column-bottom{
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.column-bottom-right{
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
[class*='column-'] {
float: left;
padding-right: 30px;
padding-bottom: 270px;
margin-left: 70px;
margin-bottom: 20px;
box-shadow: 0 2px 9px 0 rgba(0,0,2,0.4);
transition: 0.3s;
border-radius: 5px;
}
/************************************Second grid of video tags******/
.col-1-2 {
width: 28%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.col-1-4 {
width: 28%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
[class*='col-'] {
float: left;
padding-right: 40px;
padding-bottom: 140px;
margin-left: 30px;
margin-bottom: 20px;
box-shadow: 0 2px 9px 0 rgba(0,0,2,0.4);
transition: 0.3s;
border-radius: 5px;
}
/***-----------------------------------Style by ID--------------------***/
#point7,#point8,#point9{
position: relative;
left:20px;
width:220px;
margin:0 0 50px 0;
font-family:sans-serif;
font-size: 17px;
}
#se-Thesis{
position: relative;
left:120px;
bottom: 400px;
}
#picThesis{
position: relative;
width:80px;
height: 400px;
left:40px;
bottom: 40px;
}
#Thesis{
position: relative;
left:69px;
bottom: 25px;
}
#SEButton2{
background-color: dimgrey;
position:absolute;
left: 640px;
top:1070px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton3{
background-color: dimgrey;
position:absolute;
top:1070px;
left:1130px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#Systems-Project{
position: relative;
left:69px;
bottom: 25px;
}
#cloud{
position: relative;
width:300px;
left:30px;
bottom: 40px;
}
#SEButton1{
background-color: dimgrey;
position:absolute;
left: 190px;
top:1070px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#ears{
position: relative;
width:320px;
left:30px;
bottom: 40px;
}
#SoftwareDesign{
position: relative;
left:69px;
bottom: 25px;
}
#Goals{
text-align: center;
}
#logo img {
float: left;
left: 129px;
width:43px;
margin-left: 17px;
}
body {
margin: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 25px;
color: #666666;
background-color:floralwhite;
}
#emailMe{
color: ghostwhite;
text-decoration: none;
}
#Email{
color:whitesmoke;
text-align: center
}
#Title {
font-size: 55px;
padding-left: 200px;
}
#Quote{
padding-left: 260px;
}
#Copyright{
text-align: center;
color: #fff;
font-size: 17px;
font-weight: bold;
letter-spacing: -1px;
text-decoration: none;
}
/***-----------------------------------Style by Pesudo-Classes------------***/
#SEButton1:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
left: 190px;
top:1070px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton2:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
left: 640px;
top:1070px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton3:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
top:1070px;
left:1130px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
header a:hover {
color:#38e395;
text-decoration: none;
}
/***-----------------------------------Style by Tag--------------------***/
video{
min-width: 100%;
min-height: 100%;
position: relative;
bottom:30px;
}
div section ul li{
position: relative;
bottom:22px;
left:22px;
margin:0 0 10px 0;
font-family:sans-serif;
font-size: 17px;
}
header a {
color: #fff;
font-size: 17px;
font-weight: bold;
letter-spacing: -1px;
text-decoration: none;
}
header {
background: #2e343d;
padding-top: 28px;
padding-right: 0px;
padding-bottom: 20px;
padding-left: 0px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
}
header nav li {
list-style-type: none;
float: left;
margin-left: 46px;
}
ul{
list-style-type: none;
margin: 0;
padding: 0;
display: block;
background-color: #2e343d;
}
li {
float: left;
border-right:1px ;
}
hr{
height: 12px;
border: 0;
box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
} | CSS/Projects-CSS.css |
.top-container{
visibility: visible;
animation-name: fadeInUp;
background: rgba(18,126,129,1);
background: -moz-linear-gradient(top, rgba(18,126,129,1) 0%, rgba(18,127,130,1) 1%, rgba(0,230,180,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(18,126,129,1)), color-stop(1%, rgba(18,127,130,1)), color-stop(100%, rgba(0,230,180,1)));
background: -webkit-linear-gradient(top, rgba(18,126,129,1) 0%, rgba(18,127,130,1) 1%, rgba(0,230,180,1) 100%);
display: table;
width: 100%;
height: 700%;
-webkit-background-size: cover;
color: white;
padding-top: 90px;
padding-bottom: 70px;
}
.Container-foot{
background-color: #666666;
padding-bottom: 1px;
margin-top: 600px;
width: 100%;
}
.Subheading2{
background-color:floralwhite;
padding-top: 60px;
margin-top: 10
width: 100%;
}
.Subheading1{
background-color:floralwhite;
padding-top: 6px;
width: 100%;
}
.column-right {
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.column-bottom{
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.column-bottom-right{
width: 25%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
[class*='column-'] {
float: left;
padding-right: 30px;
padding-bottom: 270px;
margin-left: 70px;
margin-bottom: 20px;
box-shadow: 0 2px 9px 0 rgba(0,0,2,0.4);
transition: 0.3s;
border-radius: 5px;
}
/************************************Second grid of video tags******/
.col-1-2 {
width: 28%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
.col-1-4 {
width: 28%;
margin-top: 40px;
height: 200px;
background-color:#fbf1e3;
}
[class*='col-'] {
float: left;
padding-right: 40px;
padding-bottom: 140px;
margin-left: 30px;
margin-bottom: 20px;
box-shadow: 0 2px 9px 0 rgba(0,0,2,0.4);
transition: 0.3s;
border-radius: 5px;
}
/***-----------------------------------Style by ID--------------------***/
#point7,#point8,#point9{
position: relative;
left:20px;
width:220px;
margin:0 0 50px 0;
font-family:sans-serif;
font-size: 17px;
}
#se-Thesis{
position: relative;
left:120px;
bottom: 400px;
}
#picThesis{
position: relative;
width:80px;
height: 400px;
left:40px;
bottom: 40px;
}
#Thesis{
position: relative;
left:69px;
bottom: 25px;
}
#SEButton2{
background-color: dimgrey;
position:absolute;
left: 640px;
top:1070px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton3{
background-color: dimgrey;
position:absolute;
top:1070px;
left:1130px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#Systems-Project{
position: relative;
left:69px;
bottom: 25px;
}
#cloud{
position: relative;
width:300px;
left:30px;
bottom: 40px;
}
#SEButton1{
background-color: dimgrey;
position:absolute;
left: 190px;
top:1070px;
border: none;
color: white;
padding: 3px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#ears{
position: relative;
width:320px;
left:30px;
bottom: 40px;
}
#SoftwareDesign{
position: relative;
left:69px;
bottom: 25px;
}
#Goals{
text-align: center;
}
#logo img {
float: left;
left: 129px;
width:43px;
margin-left: 17px;
}
body {
margin: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 25px;
color: #666666;
background-color:floralwhite;
}
#emailMe{
color: ghostwhite;
text-decoration: none;
}
#Email{
color:whitesmoke;
text-align: center
}
#Title {
font-size: 55px;
padding-left: 200px;
}
#Quote{
padding-left: 260px;
}
#Copyright{
text-align: center;
color: #fff;
font-size: 17px;
font-weight: bold;
letter-spacing: -1px;
text-decoration: none;
}
/***-----------------------------------Style by Pesudo-Classes------------***/
#SEButton1:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
left: 190px;
top:1070px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton2:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
left: 640px;
top:1070px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#SEButton3:hover {
box-shadow: 0 6px 8px 0 rgba(0,0,0,0.18),0 17px 50px 0 rgba(0,0,0,0.13);
background-color: #03d089;
position:absolute;
top:1070px;
left:1130px;
border: none;
color: white;
padding: 10px 42px;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
header a:hover {
color:#38e395;
text-decoration: none;
}
/***-----------------------------------Style by Tag--------------------***/
video{
min-width: 100%;
min-height: 100%;
position: relative;
bottom:30px;
}
div section ul li{
position: relative;
bottom:22px;
left:22px;
margin:0 0 10px 0;
font-family:sans-serif;
font-size: 17px;
}
header a {
color: #fff;
font-size: 17px;
font-weight: bold;
letter-spacing: -1px;
text-decoration: none;
}
header {
background: #2e343d;
padding-top: 28px;
padding-right: 0px;
padding-bottom: 20px;
padding-left: 0px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
}
header nav li {
list-style-type: none;
float: left;
margin-left: 46px;
}
ul{
list-style-type: none;
margin: 0;
padding: 0;
display: block;
background-color: #2e343d;
}
li {
float: left;
border-right:1px ;
}
hr{
height: 12px;
border: 0;
box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
} | 0.309024 | 0.047448 |
body {
margin: 0px;
padding: 0px;
}
*,
body {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #000000;
font-size: 16px;
line-height: 26px;
}
a:hover {
text-decoration: none;
}
.btn-primary {
background-color: #F15A24;
border-color: #F15A24;
}
.btn-primary:hover {
background-color: #EEE8DC;
border-color: #F15A24;
color: #F15A24;
}
.btn-secondary {
background-color: #0F1C2F;
border-color: #0F1C2F;
}
button:focus {
outline: none;
}
a {
color: #F15A24;
text-decoration: none;
}
a:hover {
color: #101d30;
}
h3 {
font-size: 28px;
font-weight: 600;
}
button.btn:focus {
outline: none;
box-shadow: none;
}
.btn-primary.focus,
.btn-primary:focus {
color: #fff;
background-color: #ff9f7d;
border-color: #ff9f7d;
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 24%);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #ff9f7d;
border-color: #ff9f7d;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 24%);
}
.bg-primary {
background-color: #F15A24 !important;
}
/***************************END*************************/
.top-header {
background-color: #0F1C2F;
padding: 10px 0;
}
.header-no {
color: #fff;
}
.header-no i {
color: #fff;
}
.soccial-icons ul li a {
color: #fff;
display: block;
margin-right: 10px;
font-size: 18px;
}
.soccial-icons ul li a:hover {
color: #F15A24;
}
header {
padding: 10px 0;
background: #fff;
}
header .navbar {
padding: 0px;
}
.navbar-brand img {
max-width: 200px;
}
header .navbar-nav li a:hover {
color: #F15A24;
}
header .navbar-nav li a {
font-size: 16px;
font-weight: 600;
color: #000;
margin: 0 10px;
}
.login-btn a.btn i {
color: #fff;
}
.login-btn a.btn span {
text-transform: uppercase;
font-weight: 600;
color: #fff;
}
.login-btn a.btn:hover span,
.login-btn a.btn:hover i {
color: #F15A24;
}
.navbar-toggler-icon:before {
content: "\f0c9";
font-family: "FontAwesome";
}
.hero-section {
background: url(../images/hero-bg.png) top center;
background-size: 100% 100%;
min-height: 624px;
}
.hero-slider {
padding: 74px 0 40px 0;
}
.hero-slider .item {
position: relative;
}
.hero-slides-img {
position: absolute;
width: 490px;
height: 460px;
right: 9%;
top: 0;
border-radius: 100px 0 150px 0;
overflow: hidden;
border: 10px solid rgb(555 555 555 / 66%);
}
.hero-slides-text {
padding-right: 650px;
min-height: 460px;
padding-top: 80px;
padding-left: 9%;
}
.hero-slides-text h2 {
color: #fff;
font-size: 38px;
font-weight: 700;
line-height: 50px;
}
.owl-dots button.owl-dot span {
height: 20px;
width: 20px;
border-radius: 50%;
background: rgb(555 555 555 / 55%);
display: inline-block;
margin: 0 5px;
}
.owl-dots button.owl-dot.active span {
background: #0F1C2F;
}
.owl-dots {
margin-top: 50px;
text-align: center;
}
.featured-box {
display: inline-block;
width: 130px;
}
.featured-box img {
max-width: 100%;
}
/********************Featured in**************/
.fearturedin {
background: #F3F3F3;
padding: 15px 0;
}
.fearturedin h4 {
font-size: 20px;
text-transform: uppercase;
color: rgb(15 28 47 / 56%);
font-weight: 600;
}
.section-heading h2 {
font-size: 44px;
color: #000;
text-align: center;
font-weight: 700;
}
.section-heading h2 span {
text-transform: uppercase;
color: #F15A24;
display: block;
font-weight: 700;
}
.section-heading small {
font-size: 16px;
display: block;
font-weight: 400;
}
/************Testimonials*******************/
.testimonials-slider .item {
padding: 60px 10px 10px 10px;
}
.testimonials-box {
background: #fff;
padding: 80px 15px 10px 15px;
border-radius: 4px;
position: relative;
text-align: center;
min-height: 333px;
box-shadow: 0 3px 10px rgb(0 0 0 / 12%);
}
.testimonials-box .user-image {
position: absolute;
width: 116px;
height: 116px;
left: 0;
right: 0;
margin: 0 auto;
top: -50px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #3764EB;
}
.testimonials-box h3 {
font-weight: 700;
font-size: 24px;
margin-bottom: 0;
}
.testimonials-box i {
font-size: 13px;
color: rgb(0 0 0 / 64%);
}
.quotebox {
background: #F15A24;
border-radius: 50%;
width: 49px;
height: 49px;
margin: 10px auto;
line-height: 55px;
}
.quotebox i {
font-size: 24px;
color: #fff;
}
.testimonials-slider .owl-dots {
margin-top: 10px;
text-align: center;
}
.testimonials-slider .owl-dots button.owl-dot span {
height: 7px;
width: 20px;
border-radius: 7px;
background: rgb(0 0 0 / 30%);
display: inline-block;
margin: 0 5px;
}
.testimonials-slider .owl-dots button.owl-dot.active span {
background: #0F1C2F;
}
/***********Services*****************/
.services-container {
background: #0F1C2F url(../images/bg-left.png) no-repeat left bottom;
}
.services-container p {
color: #fff;
}
.services-container h2 {
color: #fff;
}
.services-container h2 small {
color: #fff;
}
.services-box {
position: relative;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 0 #F15A24;
min-height: 200px;
overflow: hidden;
margin-bottom: 40px;
}
.service-img img {
width: 100%;
transition: transform .2s;
}
.service-img {
overflow: hidden;
}
.services-box h3 {
font-size: 17px;
font-weight: 700;
text-align: center;
padding: 15px;
text-transform: uppercase;
line-height: 26px;
}
.service-overlal {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(241 90 36 / 95%);
transform: translateY(130%);
transition-timing-function: ease-in;
transition: 0.2s;
opacity: 0;
}
.services-box:hover .service-overlal {
transition: 0.25s;
transition-timing-function: ease-out;
transform: translateY(0);
opacity: 1;
}
.services-box:hover img {
transform: scale(1.2);
}
.startnow-section {
background: #F15A24;
}
.startnow-section h2 {
color: #fff;
font-weight: 700;
font-size: 36px;
line-height: 44px;
}
.start-btn .btn {
border-radius: 2px;
color: #F15A24;
font-size: 20px;
text-transform: uppercase;
font-weight: 600;
min-width: 200px;
padding: 10px 15px;
box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.start-btn i {
color: #F15A24;
}
.success-con .services-box {
margin-bottom: 0;
margin-top: 30px;
border: 1px solid #eee;
}
/************************Footer*******************/
footer {
background: #0F1C2F;
padding: 50px 0 0 0;
}
.left-col a {
font-size: 18px;
font-weight: 700;
}
footer p {
color: #fff;
font-size: 14px;
}
.footer-col ul li {
padding: 5px 0;
}
.footer-col ul li a {
color: #fff;
font-size: 14px;
display: block;
}
.footer-col ul li a:hover {
color: #F15A24;
}
footer h4 {
color: #fff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
}
.footer-bottom {
padding: 15px;
color: #fff;
font-size: 14px;
border-top: 1px solid #344661;
}
.navbar-brand {
padding: 0;
}
.bread-container .breadcrumb {
background: transparent;
}
.bread-container .breadcrumb-item a {
font-weight: 600;
}
footer .left-col a:hover {
color: #fff;
}
/***********************inner pages********************/
.bg-dark {
background: #0f1c2f url(../images/bg-left.png) no-repeat left bottom !important;
background-size: 100% 100%;
padding: 20px;
border-radius: 10px;
}
.service-list-box {
position: relative;
border-radius: 10px;
margin-bottom: 50px;
}
.service-images-list-right {
position: absolute;
right: 20px;
top: 20px;
width: 322px;
height: 241px;
overflow: hidden;
border-radius: 0px 100px 0px 100px;
border: 5px solid rgb(255 255 255 / 50%);
}
.service-images-list-right img {
width: 100%;
}
.service-list-text-right {
min-height: 241px;
padding-right: 350px;
}
.service-list-text-right h3 {
font-size: 26px;
text-transform: uppercase;
color: #fff;
font-weight: 700;
}
.service-list-text-right p {
color: #fff;
}
.service-list-box .d-flex {
min-height: 241px;
}
.service-list-box .btn-primary {
text-transform: uppercase;
font-weight: 600;
margin-top: 20px;
}
.service-images-list-left {
position: absolute;
left: 0px;
top: 0px;
width: 322px;
height: 241px;
overflow: hidden;
border-radius: 0px 100px 0px 100px;
box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 19%);
border: 5px solid rgb(255 255 255 / 50%);
}
.service-images-list-left img {
width: 100%;
}
.service-list-text-left {
min-height: 241px;
padding-left: 350px;
}
.service-list-text-left h3 {
font-size: 26px;
text-transform: uppercase;
font-weight: 700;
}
.d-image-w {
width: 100%;
min-width: 485px;
}
.s-d-top p {
color: #fff;
}
.s-d-top img {
border: 7px solid #fff;
}
.services-p-con h4 {
font-weight: 700;
font-size: 18px;
text-transform: uppercase;
}
.services-p-con h3 {
margin-bottom: 20px;
text-transform: uppercase;
}
.sechule-call-btn {
background: #F15A24;
padding: 40px 0;
text-align: center;
}
.sechule-call-btn h2 {
font-size: 28px;
text-transform: uppercase;
color: #fff;
padding: 0 100px;
line-height: 38px;
}
.sechule-call-btn .btn-secondary {
text-transform: uppercase;
font-size: 20px;
font-weight: 600;
border-color: #fff;
border-radius: 2px;
padding: 10px 30px;
margin-top: 20px;
}
.sechule-call-btn .btn-secondary i {
color: #fff;
}
.sechule-call-btn .btn-secondary:hover {
background-color: #F15A24;
color: #fff;
}
.faq-container h3 {
text-align: center;
}
.faq-container .card-header {
background: transparent;
}
.faq-container .card-header button.btn {
display: block;
padding: 0;
width: 100%;
text-align: left;
font-weight: 600;
position: relative;
}
.faq-container .card {
border-radius: 0;
}
.card-header .btn.collapsed::before {
content: "\f107";
position: absolute;
right: 0;
font-family: "FontAwesome";
font-size: 24px;
top: -8px;
}
.card-header .btn:before {
content: "\f106";
position: absolute;
right: 0;
font-family: "FontAwesome";
font-size: 24px;
top: -8px;
}
.schedule-call-container {
background: url(../images/bg-left-1.png) no-repeat bottom left;
}
.schedule-call-container .container,
.signup-container .container {
max-width: 992px;
}
.schedulecall-con {
background: #fff;
padding: 0;
border-radius: 4px;
}
.schedulecall-con h3 {
font-size: 20px;
font-weight: 600;
}
.form-left-panel {
padding: 30px;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: url(../images/form-bg.png) no-repeat bottom center;
background-size: 100% auto;
}
.left-img {
position: absolute;
bottom: 40px;
left: 0;
right: 0;
text-align: center;
}
.left-img img {
max-width: 100%;
}
.form-left-panel h2 {
font-size: 38px;
color: #fff;
text-transform: uppercase;
text-transform: uppercase;
font-weight: 700;
}
.form-left-panel h2 span {
display: block;
font-size: 22px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
}
.schedulecall-con label {
font-weight: 500;
}
.schedulecall-con .form-control {
font-size: 15px;
}
label.custom-control-label {
font-weight: 400;
font-size: 15px;
}
.discovercall label {
font-weight: 500;
font-size: 16px;
}
.custom-control-input:checked~.custom-control-label::before {
color: #fff;
border-color: #f15a24;
background-color: #f15a24;
}
.custom-control-input:focus~.custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 22%);
}
.charLim {
text-align: right;
font-size: 12px;
font-style: italic;
color: #999;
}
.charLim span {
font-size: 12px;
color: #999;
}
.selected-price {
padding: 5px 15px;
margin-bottom: 10px;
border-radius: 4px;
background: #fbe7df;
}
.submit-btn {
margin-bottom: 20px;
margin-top: 20px;
}
.submit-btn .btn {
padding: 7px 25px;
text-transform: uppercase;
font-weight: 600;
}
.question-count {
position: absolute;
right: 0;
background: #f15a24;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 30px;
font-weight: 600;
color: #fff;
top: 5px;
}
.sep-line {
border-bottom: 1px solid #eee;
height: 1px;
margin: 0 0 20px;
}
.sign-right {
min-height: 500px;
}
.signup-container .container {
max-width: 992px;
}
.signup-box h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 25px;
}
.signup-box .form-control {
font-size: 14px;
}
.signin-link {
text-align: center;
font-size: 14px;
color: #999;
margin: 20px 0 30px 0;
}
.signin-link a {
font-weight: 700;
}
.signbox-left {
padding-right: 68px;
position: relative;
}
.signbox-left h3 {
font-size: 26px;
line-height: 34px;
font-weight: 700;
color: #999;
}
.signbox-left .signup-img {
position: absolute;
bottom: -20px;
left: -60px;
right: 0px;
width: 250px;
margin: 0 auto;
}
.signbox-left .signup-img img {
max-width: 100%;
}
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: #ffcbb9;
outline: 0;
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 19%);
}
button.close {
position: absolute;
right: 8px;
top: 7px;
}
button.close span {
font-size: 44px;
}
#credit-modal {
text-align: center;
}
#credit-modal .btn-primary {
text-transform: uppercase;
font-weight: 600;
font-size: 14px;
}
.thanks-payment .steps-c {
text-transform: uppercase;
text-align: center;
color: #F15A24;
font-weight: 700;
margin: 20px 0 15px 0;
font-size: 20px;
}
.thanks-payment .thanks-txt {
font-weight: 500;
text-align: center;
}
.thanks-payment .thanks-txt span {
text-transform: uppercase;
font-weight: 700;
color: lightgreen;
}
.downarrow {
background: #0f1c2f;
width: 40px;
height: 40px;
border-radius: 100%;
text-align: center;
margin: 20px auto;
}
.downarrow i {
font-size: 20px;
line-height: 40px;
color: #fff;
}
.thanks-payment .btn-primary {
padding: 10px 25px;
text-transform: uppercase;
font-weight: 700;
}
.thanks-payment h3 {
text-align: center;
font-size: 24px;
font-weight: 700;
margin: 0 0 20px 0;
padding: 0 100px;
}
.thanks-payment .btn-primary i {
color: #fff;
font-size: 18px;
}
.arrow-moving {
animation: slide1 1s ease-in-out infinite;
}
.arrow-moving2 {
animation: slide2 1s ease-in-out infinite;
margin-right: 10px;
}
@keyframes slide1 {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(0px, 10px);
}
}
@keyframes slide2 {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(10px, 0px);
}
}
.user-dropdown .dropdown-toggle::after {
content: none;
}
.user-dropdown .dropdown-toggle {
background: transparent;
border-radius: 50%;
width: 40px;
height: 40px;
border: 1px solid #707070;
overflow: hidden;
padding: 0;
}
.user-dropdown .dropdown-toggle img {
width: 40px;
height: 40px;
}
.user-dropdown .dropdown-menu i {
width: 20px;
margin-right: 5px;
}
.user-dropdown .dropdown-menu .dropdown-item {
padding: .25rem 1rem;
}
.user-dropdown .logout-btn,
.user-dropdown .logout-btn i {
color: #ff0000;
}
.testimonials-con .container {
max-width: 850px;
}
#sync1 .item {
background: #f15a24;
padding: 10px;
color: #FFF;
border-radius: 3px;
text-align: center;
margin-bottom: 20px;
}
#sync2 .item {
background: #C9C9C9;
margin: 5px;
color: #FFF;
border-radius: 50%;
text-align: center;
cursor: pointer;
width: 80px;
height: 80px;
line-height: 80px;
overflow: hidden;
}
#sync2 .item img {
max-width: 100%;
}
#sync2 .synced .item {
border: 5px solid #f15a24;
}
.text-testimonial {
padding: 80px 80px;
color: #fff;
font-size: 22px;
font-weight: 600;
line-height: 30px;
min-height: 338px;
}
.text-testimonial .fa-quote-left {
position: absolute;
left: 40px;
top: 20px;
color: rgb(255 255 255 / 27%);
font-size: 100px;
}
.text-testimonial h4 {
font-weight: 700;
margin-top: 30px;
color: #fff;
margin-bottom: 0;
}
.text-testimonial span {
color: #fff;
font-style: italic;
}
.navigation-thumbs {
position: relative;
}
.navigation-thumbs .owl-nav {
text-align: center;
}
.navigation-thumbs .owl-nav button span {
width: 40px;
height: 40px;
background: #f15a24;
display: inline-block;
text-align: center;
line-height: 32px;
color: #fff;
border-radius: 50%;
margin: 20px 7px 0 7px;
font-size: 40px;
}
.faq-container.profile-container {
min-height: 400px;
}
.profile-container .container {
max-width: 991px;
}
.faq-container.profile-container .card-header.read-responce {
background: #f1f1f1;
}
.faq-container.profile-container .card-header .btn.collapsed::before {
color: rgb(0 0 0 / 13%);
}
.user-boxes {
background-color: #ffffff !important;
margin-bottom: 20px;
}
.user-image {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
left: 0;
top: 0;
}
.user-txt {
padding-left: 70px;
min-height: 50px;
}
.user-txt p {
margin-bottom: 0px;
font-weight: 600;
margin-top: -5px;
}
.user-links ul li a {
display: block;
padding: 10px 20px;
color: #000;
border-bottom: 1px solid #eee;
margin-bottom: 10px;
}
.user-links ul li a i {
font-size: 20px;
color: #f15a24;
margin-right: 7px;
width: 25px;
float: left;
margin-top: 2px;
}
.user-links ul li:last-child a {
margin-bottom: 0;
border-bottom: 0;
padding-bottom: 0;
}
.user-links ul li a.logout-btn {
color: #f15a24;
}
.user-links ul li a:hover {
color: #f15a24;
}
.user-infor h4 {
font-size: 18px;
margin-bottom: 15px;
}
.user-infor h4 a {
display: inline-block;
margin-left: 20px;
font-size: 14px;
font-weight: 500;
}
.user-infor .form-control {
height: 50px;
border-radius: 0;
}
.responces-qa .card-header .btn.collapsed::before,
.responces-qa .card-header .btn:before {
content: none;
}
.responces-qa .card-header {
padding: 10px 60px 10px 10px;
}
.responces-qa .card-header .responce-date {
position: absolute;
right: 10px;
top: 10px;
font-size: 12px;
font-weight: 600;
color: #f15a24;
}
.responces-qa .card-header button.btn {
font-weight: 500 !important;
}
.msg-info ul li {
font-size: 14px;
color: #999;
}
.msg-info .unread {
float: left;
margin-right: 7px;
width: 15px;
height: 15px;
border-radius: 50%;
border: 1px solid #eee;
background-color: #fff;
margin-top: 6px;
}
.msg-info .read {
background-color: #eee;
width: 15px;
height: 15px;
border-radius: 50%;
border: 1px solid #eee;
float: left;
margin-right: 7px;
margin-top: 6px;
}
.user-boxes h3 {
font-size: 22px;
margin-bottom: 30px;
text-align: left;
}
.min-height-380 {
min-height: 380px !important;
}
.creadit-bal {
font-size: 15px;
font-weight: 500;
}
.creadit-bal span {
display: block;
color: #9ec500;
font-weight: 700;
font-size: 24px;
margin-top: 7px;
}
.mycreadits .btn-primary,
.cha-pass-btn .btn-primary {
border-radius: 0;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
margin-top: 15px;
}
.notes {
font-style: italic;
margin-top: 30px;
font-size: 13px;
line-height: 19px;
color: #666;
}
.notes strong {
font-size: 13px;
}
.form-control::placeholder {
font-size: 14px;
font-style: italic;
}
.notification-box {
position: relative;
width: 30px;
text-align: center;
margin-right: 20px;
}
.notification-box i {
font-size: 20px;
line-height: 40px;
}
.notif-count {
position: absolute;
right: 0;
top: 0;
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ff0000;
color: #fff;
line-height: 15px;
font-size: 12px;
font-weight: 600;
}
#question_form {
min-height: 380px;
}
/**************About us******************/
.about-section {
margin-top: 40px;
background: #0f1c2f;
padding: 30px;
border-radius: 10px;
}
.about-section p,
.about-section ul li {
color: #fff;
}
.about-section img {
border: 15px solid rgb(255 255 255 / 48%);
}
.about-section ul li {
margin: 10px 0;
}
.about-section ul.list-unstyled {
list-style: inside;
}
.about-video {
background: #fff;
padding: 20px;
border-radius: 10px;
margin-bottom: 50px;
}
.about-video iframe {
width: 100%;
min-height: 500px;
}
.or-plan {
width: 35px;
height: 35px;
margin: 20px auto;
background: #f15a24;
color: #fff;
font-weight: 700;
border-radius: 50%;
text-align: center;
line-height: 35px;
box-shadow: 0 0 5px #f15a2485;
font-size: 14px;
}
#payment-row h4 {
font-size: 16px;
margin: 0 0 20px 0;
text-align: center;
}
.payment-plan {
background: #eee8dc;
padding: 10px 15px;
border-radius: 4px;
}
/**********************************/
.payment-container .container {
max-width: 480px;
}
.payment-container h6 {
font-weight: normal;
background: #ffece6;
padding: 5px 15px;
border-radius: 2px;
margin-bottom: 10px;
}
.payment-container strong {
color: #f15a24;
}
.payment-container h3 {
font-size: 20px;
}
.border-box {
border: 1px solid #eee;
padding: 10px 10px;
}
.ordertable th {
font-weight: bold;
}
.ordertable .table {
margin-bottom: 0;
}
.ordertable table.table td {
border-top: 0px;
}
.payment-container .btn-primary {
font-weight: 600;
text-transform: uppercase;
}
.ordertable.border-box {
background: #fbf1ee;
border: 0;
}
/**********************************/
@media (max-width:991px) {
.login-btn a.btn span {
display: none;
}
.navbar-brand img {
max-width: 180px;
}
.navbar-toggler {
height: 34px;
}
.navbar-toggler span {
font-size: 26px;
color: #0f1c2f;
}
.section-heading h2 {
font-size: 32px;
}
.startnow-section h2 {
font-size: 26px;
line-height: 34px;
margin-bottom: 26px;
}
.hero-slides-img {
width: 100%;
position: static;
height: auto;
right: 0;
border-radius: 0;
}
.hero-slides-text {
padding-right: 0;
min-height: auto;
padding-top: 10px;
padding-left: 0;
}
.hero-slides-text h2 {
font-size: 24px;
line-height: 32px;
}
.hero-section {
min-height: auto;
background: #F15A24;
}
.hero-slider {
padding: 24px 0 24px 0;
}
.owl-dots {
margin-top: 20px;
}
.service-images-list-right,
.service-images-list-left {
position: static;
width: 100%;
border-radius: 0;
height: auto;
}
.service-list-box .d-flex {
position: static;
top: 0;
bottom: 0;
}
.service-list-text-right {
min-height: auto;
padding-right: 0;
margin-top: 25px;
}
.service-list-text-left {
min-height: auto;
padding-left: 0;
margin-top: 25px;
}
.service-list-box {
border-radius: 4px;
}
.service-list-box .btn-primary {
margin-top: 10px;
}
.service-list-box .d-flex {
min-height: auto;
}
.sechule-call-btn h2 {
font-size: 24px;
line-height: 34px;
padding: 0;
}
.mobile-none {
display: none !important;
}
.sign-right {
min-height: auto;
}
.schedule-call-container .container,
.signup-container .container {
max-width: 640px;
}
}
@media (max-width:767px) {
.signup-container .signup-box {
background: none;
}
.services-p-con h3 {
font-size: 24px;
}
.sechule-call-btn .btn-secondary {
padding: 10px 15px;
}
.schedulecall-con label {
line-height: 1.5;
}
.custom-control {
margin: 7px 0;
}
.thanks-payment h3 {
padding: 0;
font-size: 22px;
}
}
.cus_active {
background: #F15A24;
color: #ffffff !important;
}
.cus_menu {
text-decoration: overline;
color: #ff5722 !important;
}
.or-plan {
width: 35px;
height: 35px;
margin: 20px auto;
background: #f15a24;
color: #fff;
font-weight: 700;
border-radius: 50%;
text-align: center;
line-height: 35px;
box-shadow: 0 0 5px #f15a2485;
font-size: 14px;
}
#payment-row h4 {
font-size: 16px;
margin: 0 0 20px 0;
text-align: center;
}
.payment-plan {
background: #eee8dc;
padding: 10px 15px;
border-radius: 4px;
} | public/front/css/style1707.css | body {
margin: 0px;
padding: 0px;
}
*,
body {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #000000;
font-size: 16px;
line-height: 26px;
}
a:hover {
text-decoration: none;
}
.btn-primary {
background-color: #F15A24;
border-color: #F15A24;
}
.btn-primary:hover {
background-color: #EEE8DC;
border-color: #F15A24;
color: #F15A24;
}
.btn-secondary {
background-color: #0F1C2F;
border-color: #0F1C2F;
}
button:focus {
outline: none;
}
a {
color: #F15A24;
text-decoration: none;
}
a:hover {
color: #101d30;
}
h3 {
font-size: 28px;
font-weight: 600;
}
button.btn:focus {
outline: none;
box-shadow: none;
}
.btn-primary.focus,
.btn-primary:focus {
color: #fff;
background-color: #ff9f7d;
border-color: #ff9f7d;
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 24%);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
color: #fff;
background-color: #ff9f7d;
border-color: #ff9f7d;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 24%);
}
.bg-primary {
background-color: #F15A24 !important;
}
/***************************END*************************/
.top-header {
background-color: #0F1C2F;
padding: 10px 0;
}
.header-no {
color: #fff;
}
.header-no i {
color: #fff;
}
.soccial-icons ul li a {
color: #fff;
display: block;
margin-right: 10px;
font-size: 18px;
}
.soccial-icons ul li a:hover {
color: #F15A24;
}
header {
padding: 10px 0;
background: #fff;
}
header .navbar {
padding: 0px;
}
.navbar-brand img {
max-width: 200px;
}
header .navbar-nav li a:hover {
color: #F15A24;
}
header .navbar-nav li a {
font-size: 16px;
font-weight: 600;
color: #000;
margin: 0 10px;
}
.login-btn a.btn i {
color: #fff;
}
.login-btn a.btn span {
text-transform: uppercase;
font-weight: 600;
color: #fff;
}
.login-btn a.btn:hover span,
.login-btn a.btn:hover i {
color: #F15A24;
}
.navbar-toggler-icon:before {
content: "\f0c9";
font-family: "FontAwesome";
}
.hero-section {
background: url(../images/hero-bg.png) top center;
background-size: 100% 100%;
min-height: 624px;
}
.hero-slider {
padding: 74px 0 40px 0;
}
.hero-slider .item {
position: relative;
}
.hero-slides-img {
position: absolute;
width: 490px;
height: 460px;
right: 9%;
top: 0;
border-radius: 100px 0 150px 0;
overflow: hidden;
border: 10px solid rgb(555 555 555 / 66%);
}
.hero-slides-text {
padding-right: 650px;
min-height: 460px;
padding-top: 80px;
padding-left: 9%;
}
.hero-slides-text h2 {
color: #fff;
font-size: 38px;
font-weight: 700;
line-height: 50px;
}
.owl-dots button.owl-dot span {
height: 20px;
width: 20px;
border-radius: 50%;
background: rgb(555 555 555 / 55%);
display: inline-block;
margin: 0 5px;
}
.owl-dots button.owl-dot.active span {
background: #0F1C2F;
}
.owl-dots {
margin-top: 50px;
text-align: center;
}
.featured-box {
display: inline-block;
width: 130px;
}
.featured-box img {
max-width: 100%;
}
/********************Featured in**************/
.fearturedin {
background: #F3F3F3;
padding: 15px 0;
}
.fearturedin h4 {
font-size: 20px;
text-transform: uppercase;
color: rgb(15 28 47 / 56%);
font-weight: 600;
}
.section-heading h2 {
font-size: 44px;
color: #000;
text-align: center;
font-weight: 700;
}
.section-heading h2 span {
text-transform: uppercase;
color: #F15A24;
display: block;
font-weight: 700;
}
.section-heading small {
font-size: 16px;
display: block;
font-weight: 400;
}
/************Testimonials*******************/
.testimonials-slider .item {
padding: 60px 10px 10px 10px;
}
.testimonials-box {
background: #fff;
padding: 80px 15px 10px 15px;
border-radius: 4px;
position: relative;
text-align: center;
min-height: 333px;
box-shadow: 0 3px 10px rgb(0 0 0 / 12%);
}
.testimonials-box .user-image {
position: absolute;
width: 116px;
height: 116px;
left: 0;
right: 0;
margin: 0 auto;
top: -50px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #3764EB;
}
.testimonials-box h3 {
font-weight: 700;
font-size: 24px;
margin-bottom: 0;
}
.testimonials-box i {
font-size: 13px;
color: rgb(0 0 0 / 64%);
}
.quotebox {
background: #F15A24;
border-radius: 50%;
width: 49px;
height: 49px;
margin: 10px auto;
line-height: 55px;
}
.quotebox i {
font-size: 24px;
color: #fff;
}
.testimonials-slider .owl-dots {
margin-top: 10px;
text-align: center;
}
.testimonials-slider .owl-dots button.owl-dot span {
height: 7px;
width: 20px;
border-radius: 7px;
background: rgb(0 0 0 / 30%);
display: inline-block;
margin: 0 5px;
}
.testimonials-slider .owl-dots button.owl-dot.active span {
background: #0F1C2F;
}
/***********Services*****************/
.services-container {
background: #0F1C2F url(../images/bg-left.png) no-repeat left bottom;
}
.services-container p {
color: #fff;
}
.services-container h2 {
color: #fff;
}
.services-container h2 small {
color: #fff;
}
.services-box {
position: relative;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 0 #F15A24;
min-height: 200px;
overflow: hidden;
margin-bottom: 40px;
}
.service-img img {
width: 100%;
transition: transform .2s;
}
.service-img {
overflow: hidden;
}
.services-box h3 {
font-size: 17px;
font-weight: 700;
text-align: center;
padding: 15px;
text-transform: uppercase;
line-height: 26px;
}
.service-overlal {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(241 90 36 / 95%);
transform: translateY(130%);
transition-timing-function: ease-in;
transition: 0.2s;
opacity: 0;
}
.services-box:hover .service-overlal {
transition: 0.25s;
transition-timing-function: ease-out;
transform: translateY(0);
opacity: 1;
}
.services-box:hover img {
transform: scale(1.2);
}
.startnow-section {
background: #F15A24;
}
.startnow-section h2 {
color: #fff;
font-weight: 700;
font-size: 36px;
line-height: 44px;
}
.start-btn .btn {
border-radius: 2px;
color: #F15A24;
font-size: 20px;
text-transform: uppercase;
font-weight: 600;
min-width: 200px;
padding: 10px 15px;
box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.start-btn i {
color: #F15A24;
}
.success-con .services-box {
margin-bottom: 0;
margin-top: 30px;
border: 1px solid #eee;
}
/************************Footer*******************/
footer {
background: #0F1C2F;
padding: 50px 0 0 0;
}
.left-col a {
font-size: 18px;
font-weight: 700;
}
footer p {
color: #fff;
font-size: 14px;
}
.footer-col ul li {
padding: 5px 0;
}
.footer-col ul li a {
color: #fff;
font-size: 14px;
display: block;
}
.footer-col ul li a:hover {
color: #F15A24;
}
footer h4 {
color: #fff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
}
.footer-bottom {
padding: 15px;
color: #fff;
font-size: 14px;
border-top: 1px solid #344661;
}
.navbar-brand {
padding: 0;
}
.bread-container .breadcrumb {
background: transparent;
}
.bread-container .breadcrumb-item a {
font-weight: 600;
}
footer .left-col a:hover {
color: #fff;
}
/***********************inner pages********************/
.bg-dark {
background: #0f1c2f url(../images/bg-left.png) no-repeat left bottom !important;
background-size: 100% 100%;
padding: 20px;
border-radius: 10px;
}
.service-list-box {
position: relative;
border-radius: 10px;
margin-bottom: 50px;
}
.service-images-list-right {
position: absolute;
right: 20px;
top: 20px;
width: 322px;
height: 241px;
overflow: hidden;
border-radius: 0px 100px 0px 100px;
border: 5px solid rgb(255 255 255 / 50%);
}
.service-images-list-right img {
width: 100%;
}
.service-list-text-right {
min-height: 241px;
padding-right: 350px;
}
.service-list-text-right h3 {
font-size: 26px;
text-transform: uppercase;
color: #fff;
font-weight: 700;
}
.service-list-text-right p {
color: #fff;
}
.service-list-box .d-flex {
min-height: 241px;
}
.service-list-box .btn-primary {
text-transform: uppercase;
font-weight: 600;
margin-top: 20px;
}
.service-images-list-left {
position: absolute;
left: 0px;
top: 0px;
width: 322px;
height: 241px;
overflow: hidden;
border-radius: 0px 100px 0px 100px;
box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 19%);
border: 5px solid rgb(255 255 255 / 50%);
}
.service-images-list-left img {
width: 100%;
}
.service-list-text-left {
min-height: 241px;
padding-left: 350px;
}
.service-list-text-left h3 {
font-size: 26px;
text-transform: uppercase;
font-weight: 700;
}
.d-image-w {
width: 100%;
min-width: 485px;
}
.s-d-top p {
color: #fff;
}
.s-d-top img {
border: 7px solid #fff;
}
.services-p-con h4 {
font-weight: 700;
font-size: 18px;
text-transform: uppercase;
}
.services-p-con h3 {
margin-bottom: 20px;
text-transform: uppercase;
}
.sechule-call-btn {
background: #F15A24;
padding: 40px 0;
text-align: center;
}
.sechule-call-btn h2 {
font-size: 28px;
text-transform: uppercase;
color: #fff;
padding: 0 100px;
line-height: 38px;
}
.sechule-call-btn .btn-secondary {
text-transform: uppercase;
font-size: 20px;
font-weight: 600;
border-color: #fff;
border-radius: 2px;
padding: 10px 30px;
margin-top: 20px;
}
.sechule-call-btn .btn-secondary i {
color: #fff;
}
.sechule-call-btn .btn-secondary:hover {
background-color: #F15A24;
color: #fff;
}
.faq-container h3 {
text-align: center;
}
.faq-container .card-header {
background: transparent;
}
.faq-container .card-header button.btn {
display: block;
padding: 0;
width: 100%;
text-align: left;
font-weight: 600;
position: relative;
}
.faq-container .card {
border-radius: 0;
}
.card-header .btn.collapsed::before {
content: "\f107";
position: absolute;
right: 0;
font-family: "FontAwesome";
font-size: 24px;
top: -8px;
}
.card-header .btn:before {
content: "\f106";
position: absolute;
right: 0;
font-family: "FontAwesome";
font-size: 24px;
top: -8px;
}
.schedule-call-container {
background: url(../images/bg-left-1.png) no-repeat bottom left;
}
.schedule-call-container .container,
.signup-container .container {
max-width: 992px;
}
.schedulecall-con {
background: #fff;
padding: 0;
border-radius: 4px;
}
.schedulecall-con h3 {
font-size: 20px;
font-weight: 600;
}
.form-left-panel {
padding: 30px;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: url(../images/form-bg.png) no-repeat bottom center;
background-size: 100% auto;
}
.left-img {
position: absolute;
bottom: 40px;
left: 0;
right: 0;
text-align: center;
}
.left-img img {
max-width: 100%;
}
.form-left-panel h2 {
font-size: 38px;
color: #fff;
text-transform: uppercase;
text-transform: uppercase;
font-weight: 700;
}
.form-left-panel h2 span {
display: block;
font-size: 22px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
}
.schedulecall-con label {
font-weight: 500;
}
.schedulecall-con .form-control {
font-size: 15px;
}
label.custom-control-label {
font-weight: 400;
font-size: 15px;
}
.discovercall label {
font-weight: 500;
font-size: 16px;
}
.custom-control-input:checked~.custom-control-label::before {
color: #fff;
border-color: #f15a24;
background-color: #f15a24;
}
.custom-control-input:focus~.custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 22%);
}
.charLim {
text-align: right;
font-size: 12px;
font-style: italic;
color: #999;
}
.charLim span {
font-size: 12px;
color: #999;
}
.selected-price {
padding: 5px 15px;
margin-bottom: 10px;
border-radius: 4px;
background: #fbe7df;
}
.submit-btn {
margin-bottom: 20px;
margin-top: 20px;
}
.submit-btn .btn {
padding: 7px 25px;
text-transform: uppercase;
font-weight: 600;
}
.question-count {
position: absolute;
right: 0;
background: #f15a24;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 30px;
font-weight: 600;
color: #fff;
top: 5px;
}
.sep-line {
border-bottom: 1px solid #eee;
height: 1px;
margin: 0 0 20px;
}
.sign-right {
min-height: 500px;
}
.signup-container .container {
max-width: 992px;
}
.signup-box h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 25px;
}
.signup-box .form-control {
font-size: 14px;
}
.signin-link {
text-align: center;
font-size: 14px;
color: #999;
margin: 20px 0 30px 0;
}
.signin-link a {
font-weight: 700;
}
.signbox-left {
padding-right: 68px;
position: relative;
}
.signbox-left h3 {
font-size: 26px;
line-height: 34px;
font-weight: 700;
color: #999;
}
.signbox-left .signup-img {
position: absolute;
bottom: -20px;
left: -60px;
right: 0px;
width: 250px;
margin: 0 auto;
}
.signbox-left .signup-img img {
max-width: 100%;
}
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: #ffcbb9;
outline: 0;
box-shadow: 0 0 0 0.2rem rgb(241 90 36 / 19%);
}
button.close {
position: absolute;
right: 8px;
top: 7px;
}
button.close span {
font-size: 44px;
}
#credit-modal {
text-align: center;
}
#credit-modal .btn-primary {
text-transform: uppercase;
font-weight: 600;
font-size: 14px;
}
.thanks-payment .steps-c {
text-transform: uppercase;
text-align: center;
color: #F15A24;
font-weight: 700;
margin: 20px 0 15px 0;
font-size: 20px;
}
.thanks-payment .thanks-txt {
font-weight: 500;
text-align: center;
}
.thanks-payment .thanks-txt span {
text-transform: uppercase;
font-weight: 700;
color: lightgreen;
}
.downarrow {
background: #0f1c2f;
width: 40px;
height: 40px;
border-radius: 100%;
text-align: center;
margin: 20px auto;
}
.downarrow i {
font-size: 20px;
line-height: 40px;
color: #fff;
}
.thanks-payment .btn-primary {
padding: 10px 25px;
text-transform: uppercase;
font-weight: 700;
}
.thanks-payment h3 {
text-align: center;
font-size: 24px;
font-weight: 700;
margin: 0 0 20px 0;
padding: 0 100px;
}
.thanks-payment .btn-primary i {
color: #fff;
font-size: 18px;
}
.arrow-moving {
animation: slide1 1s ease-in-out infinite;
}
.arrow-moving2 {
animation: slide2 1s ease-in-out infinite;
margin-right: 10px;
}
@keyframes slide1 {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(0px, 10px);
}
}
@keyframes slide2 {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(10px, 0px);
}
}
.user-dropdown .dropdown-toggle::after {
content: none;
}
.user-dropdown .dropdown-toggle {
background: transparent;
border-radius: 50%;
width: 40px;
height: 40px;
border: 1px solid #707070;
overflow: hidden;
padding: 0;
}
.user-dropdown .dropdown-toggle img {
width: 40px;
height: 40px;
}
.user-dropdown .dropdown-menu i {
width: 20px;
margin-right: 5px;
}
.user-dropdown .dropdown-menu .dropdown-item {
padding: .25rem 1rem;
}
.user-dropdown .logout-btn,
.user-dropdown .logout-btn i {
color: #ff0000;
}
.testimonials-con .container {
max-width: 850px;
}
#sync1 .item {
background: #f15a24;
padding: 10px;
color: #FFF;
border-radius: 3px;
text-align: center;
margin-bottom: 20px;
}
#sync2 .item {
background: #C9C9C9;
margin: 5px;
color: #FFF;
border-radius: 50%;
text-align: center;
cursor: pointer;
width: 80px;
height: 80px;
line-height: 80px;
overflow: hidden;
}
#sync2 .item img {
max-width: 100%;
}
#sync2 .synced .item {
border: 5px solid #f15a24;
}
.text-testimonial {
padding: 80px 80px;
color: #fff;
font-size: 22px;
font-weight: 600;
line-height: 30px;
min-height: 338px;
}
.text-testimonial .fa-quote-left {
position: absolute;
left: 40px;
top: 20px;
color: rgb(255 255 255 / 27%);
font-size: 100px;
}
.text-testimonial h4 {
font-weight: 700;
margin-top: 30px;
color: #fff;
margin-bottom: 0;
}
.text-testimonial span {
color: #fff;
font-style: italic;
}
.navigation-thumbs {
position: relative;
}
.navigation-thumbs .owl-nav {
text-align: center;
}
.navigation-thumbs .owl-nav button span {
width: 40px;
height: 40px;
background: #f15a24;
display: inline-block;
text-align: center;
line-height: 32px;
color: #fff;
border-radius: 50%;
margin: 20px 7px 0 7px;
font-size: 40px;
}
.faq-container.profile-container {
min-height: 400px;
}
.profile-container .container {
max-width: 991px;
}
.faq-container.profile-container .card-header.read-responce {
background: #f1f1f1;
}
.faq-container.profile-container .card-header .btn.collapsed::before {
color: rgb(0 0 0 / 13%);
}
.user-boxes {
background-color: #ffffff !important;
margin-bottom: 20px;
}
.user-image {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
left: 0;
top: 0;
}
.user-txt {
padding-left: 70px;
min-height: 50px;
}
.user-txt p {
margin-bottom: 0px;
font-weight: 600;
margin-top: -5px;
}
.user-links ul li a {
display: block;
padding: 10px 20px;
color: #000;
border-bottom: 1px solid #eee;
margin-bottom: 10px;
}
.user-links ul li a i {
font-size: 20px;
color: #f15a24;
margin-right: 7px;
width: 25px;
float: left;
margin-top: 2px;
}
.user-links ul li:last-child a {
margin-bottom: 0;
border-bottom: 0;
padding-bottom: 0;
}
.user-links ul li a.logout-btn {
color: #f15a24;
}
.user-links ul li a:hover {
color: #f15a24;
}
.user-infor h4 {
font-size: 18px;
margin-bottom: 15px;
}
.user-infor h4 a {
display: inline-block;
margin-left: 20px;
font-size: 14px;
font-weight: 500;
}
.user-infor .form-control {
height: 50px;
border-radius: 0;
}
.responces-qa .card-header .btn.collapsed::before,
.responces-qa .card-header .btn:before {
content: none;
}
.responces-qa .card-header {
padding: 10px 60px 10px 10px;
}
.responces-qa .card-header .responce-date {
position: absolute;
right: 10px;
top: 10px;
font-size: 12px;
font-weight: 600;
color: #f15a24;
}
.responces-qa .card-header button.btn {
font-weight: 500 !important;
}
.msg-info ul li {
font-size: 14px;
color: #999;
}
.msg-info .unread {
float: left;
margin-right: 7px;
width: 15px;
height: 15px;
border-radius: 50%;
border: 1px solid #eee;
background-color: #fff;
margin-top: 6px;
}
.msg-info .read {
background-color: #eee;
width: 15px;
height: 15px;
border-radius: 50%;
border: 1px solid #eee;
float: left;
margin-right: 7px;
margin-top: 6px;
}
.user-boxes h3 {
font-size: 22px;
margin-bottom: 30px;
text-align: left;
}
.min-height-380 {
min-height: 380px !important;
}
.creadit-bal {
font-size: 15px;
font-weight: 500;
}
.creadit-bal span {
display: block;
color: #9ec500;
font-weight: 700;
font-size: 24px;
margin-top: 7px;
}
.mycreadits .btn-primary,
.cha-pass-btn .btn-primary {
border-radius: 0;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
margin-top: 15px;
}
.notes {
font-style: italic;
margin-top: 30px;
font-size: 13px;
line-height: 19px;
color: #666;
}
.notes strong {
font-size: 13px;
}
.form-control::placeholder {
font-size: 14px;
font-style: italic;
}
.notification-box {
position: relative;
width: 30px;
text-align: center;
margin-right: 20px;
}
.notification-box i {
font-size: 20px;
line-height: 40px;
}
.notif-count {
position: absolute;
right: 0;
top: 0;
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ff0000;
color: #fff;
line-height: 15px;
font-size: 12px;
font-weight: 600;
}
#question_form {
min-height: 380px;
}
/**************About us******************/
.about-section {
margin-top: 40px;
background: #0f1c2f;
padding: 30px;
border-radius: 10px;
}
.about-section p,
.about-section ul li {
color: #fff;
}
.about-section img {
border: 15px solid rgb(255 255 255 / 48%);
}
.about-section ul li {
margin: 10px 0;
}
.about-section ul.list-unstyled {
list-style: inside;
}
.about-video {
background: #fff;
padding: 20px;
border-radius: 10px;
margin-bottom: 50px;
}
.about-video iframe {
width: 100%;
min-height: 500px;
}
.or-plan {
width: 35px;
height: 35px;
margin: 20px auto;
background: #f15a24;
color: #fff;
font-weight: 700;
border-radius: 50%;
text-align: center;
line-height: 35px;
box-shadow: 0 0 5px #f15a2485;
font-size: 14px;
}
#payment-row h4 {
font-size: 16px;
margin: 0 0 20px 0;
text-align: center;
}
.payment-plan {
background: #eee8dc;
padding: 10px 15px;
border-radius: 4px;
}
/**********************************/
.payment-container .container {
max-width: 480px;
}
.payment-container h6 {
font-weight: normal;
background: #ffece6;
padding: 5px 15px;
border-radius: 2px;
margin-bottom: 10px;
}
.payment-container strong {
color: #f15a24;
}
.payment-container h3 {
font-size: 20px;
}
.border-box {
border: 1px solid #eee;
padding: 10px 10px;
}
.ordertable th {
font-weight: bold;
}
.ordertable .table {
margin-bottom: 0;
}
.ordertable table.table td {
border-top: 0px;
}
.payment-container .btn-primary {
font-weight: 600;
text-transform: uppercase;
}
.ordertable.border-box {
background: #fbf1ee;
border: 0;
}
/**********************************/
@media (max-width:991px) {
.login-btn a.btn span {
display: none;
}
.navbar-brand img {
max-width: 180px;
}
.navbar-toggler {
height: 34px;
}
.navbar-toggler span {
font-size: 26px;
color: #0f1c2f;
}
.section-heading h2 {
font-size: 32px;
}
.startnow-section h2 {
font-size: 26px;
line-height: 34px;
margin-bottom: 26px;
}
.hero-slides-img {
width: 100%;
position: static;
height: auto;
right: 0;
border-radius: 0;
}
.hero-slides-text {
padding-right: 0;
min-height: auto;
padding-top: 10px;
padding-left: 0;
}
.hero-slides-text h2 {
font-size: 24px;
line-height: 32px;
}
.hero-section {
min-height: auto;
background: #F15A24;
}
.hero-slider {
padding: 24px 0 24px 0;
}
.owl-dots {
margin-top: 20px;
}
.service-images-list-right,
.service-images-list-left {
position: static;
width: 100%;
border-radius: 0;
height: auto;
}
.service-list-box .d-flex {
position: static;
top: 0;
bottom: 0;
}
.service-list-text-right {
min-height: auto;
padding-right: 0;
margin-top: 25px;
}
.service-list-text-left {
min-height: auto;
padding-left: 0;
margin-top: 25px;
}
.service-list-box {
border-radius: 4px;
}
.service-list-box .btn-primary {
margin-top: 10px;
}
.service-list-box .d-flex {
min-height: auto;
}
.sechule-call-btn h2 {
font-size: 24px;
line-height: 34px;
padding: 0;
}
.mobile-none {
display: none !important;
}
.sign-right {
min-height: auto;
}
.schedule-call-container .container,
.signup-container .container {
max-width: 640px;
}
}
@media (max-width:767px) {
.signup-container .signup-box {
background: none;
}
.services-p-con h3 {
font-size: 24px;
}
.sechule-call-btn .btn-secondary {
padding: 10px 15px;
}
.schedulecall-con label {
line-height: 1.5;
}
.custom-control {
margin: 7px 0;
}
.thanks-payment h3 {
padding: 0;
font-size: 22px;
}
}
.cus_active {
background: #F15A24;
color: #ffffff !important;
}
.cus_menu {
text-decoration: overline;
color: #ff5722 !important;
}
.or-plan {
width: 35px;
height: 35px;
margin: 20px auto;
background: #f15a24;
color: #fff;
font-weight: 700;
border-radius: 50%;
text-align: center;
line-height: 35px;
box-shadow: 0 0 5px #f15a2485;
font-size: 14px;
}
#payment-row h4 {
font-size: 16px;
margin: 0 0 20px 0;
text-align: center;
}
.payment-plan {
background: #eee8dc;
padding: 10px 15px;
border-radius: 4px;
} | 0.451327 | 0.085175 |
code[class*="language-"],
pre[class*="language-"] {
color: #e1ffbb;
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
font-size: 0.95em;
text-align: left;
white-space:pre-wrap;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
code[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
pre[class*="language-"]::-moz-selection {
background: #073642;
}
code[class*="language-"] ::selection,
code[class*="language-"]::selection,
pre[class*="language-"] ::selection,
pre[class*="language-"]::selection {
background: #073642;
}
pre[class*="language-"] {
padding: 2em 1.8em 3em 1.9em;
margin: .5em 0;
overflow: visible;
border-radius: 0.8em;
padding-left: 1.7em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
/* background-color: #25384a; */
background: linear-gradient(19deg,rgb(62 69 88),rgb(54 60 75))
}
:not(pre) > code[class*="language-"] {
padding: 0.1em;
border-radius: 0.3em;
}
.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
color: #cdccd4;
padding: 4px 11px;
background: #4b5f5f78;
}
.token.punctuation {
color: rgb(102 126 181/98%);
font-size: .9em;
padding: 0 1px;
}
.namespace {
opacity: 0.7;
}
.token.boolean,
.token.constant,
.token.deleted,
.token.property,
.token.symbol,
.token.tag {
color: #d4d4d4;
}
.token.number{
color:#ff8080;
}
.token.attr-name,
.token.builtin,
.token.char,
.token.inserted,
.token.selector,
.token.string,
.token.url {
color: #fffb5c;
/* text-shadow: #ecff85 0px 0px 1px, #c1fff9 0px 0px 1px, 0px 0px 18px rgb(73 40 255); */
}
.token.entity {
color: #657b83;
background: #eee8d5;
}
.token.operator {
color: #ffdcaf;
font-size: 1.15em;
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #b2dccf;
}
.token.class-name,
.token.function {
color: #5cb3ff;
}
.token.important,
.token.regex,
.token.variable {
color: #cb4b16;
}
.token.bold,
.token.important {
font-weight: 700;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
} | css/prismjs/theme.min.css | code[class*="language-"],
pre[class*="language-"] {
color: #e1ffbb;
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
font-size: 0.95em;
text-align: left;
white-space:pre-wrap;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
code[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
pre[class*="language-"]::-moz-selection {
background: #073642;
}
code[class*="language-"] ::selection,
code[class*="language-"]::selection,
pre[class*="language-"] ::selection,
pre[class*="language-"]::selection {
background: #073642;
}
pre[class*="language-"] {
padding: 2em 1.8em 3em 1.9em;
margin: .5em 0;
overflow: visible;
border-radius: 0.8em;
padding-left: 1.7em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
/* background-color: #25384a; */
background: linear-gradient(19deg,rgb(62 69 88),rgb(54 60 75))
}
:not(pre) > code[class*="language-"] {
padding: 0.1em;
border-radius: 0.3em;
}
.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
color: #cdccd4;
padding: 4px 11px;
background: #4b5f5f78;
}
.token.punctuation {
color: rgb(102 126 181/98%);
font-size: .9em;
padding: 0 1px;
}
.namespace {
opacity: 0.7;
}
.token.boolean,
.token.constant,
.token.deleted,
.token.property,
.token.symbol,
.token.tag {
color: #d4d4d4;
}
.token.number{
color:#ff8080;
}
.token.attr-name,
.token.builtin,
.token.char,
.token.inserted,
.token.selector,
.token.string,
.token.url {
color: #fffb5c;
/* text-shadow: #ecff85 0px 0px 1px, #c1fff9 0px 0px 1px, 0px 0px 18px rgb(73 40 255); */
}
.token.entity {
color: #657b83;
background: #eee8d5;
}
.token.operator {
color: #ffdcaf;
font-size: 1.15em;
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #b2dccf;
}
.token.class-name,
.token.function {
color: #5cb3ff;
}
.token.important,
.token.regex,
.token.variable {
color: #cb4b16;
}
.token.bold,
.token.important {
font-weight: 700;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
} | 0.425247 | 0.103794 |
@keyframes rev-block {
0% {
left: 0;
width: 0%; }
50% {
left: 0;
width: 100%; }
100% {
left: 100%;
width: 0%; } }
@keyframes appear-text {
0% {
opacity: 0; }
100% {
opacity: 1; } }
/* ------------------------------------------- */
/* COLOR VARIABLES
/* ------------------------------------------- */
/* GREY SHADES */
/* B & W */
/* COLORS FOR SECTIONS BACKGROUNDS */
/* ------------------------------------------- */
/* GRID VARIABLES
/* ------------------------------------------- */
/* ------------------------------------------- */
/* FONT
/* ------------------------------------------- */
/* ------------------------------------------- */
/* CLAERFIX MIXIN FOR THE GRID
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MIXIN THAT CENTERS THE ELEMENTS TO VH
/* ------------------------------------------- */
/* ------------------------------------------- */
/* CENTERS THE BUTTONS
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MEDIA QUERIES | SHORTCUT VERSION
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MEDIA QUERY MANAGER
/* ------------------------------------------- */
/* // SIZES / DEVICES \\
0 - 600px > Phone
600 - 900px > Tablet Portrait
900 - 1200px > Tablet Landscape
[1200 - 18009 is where our normal style apply
1800px + >Big Desktop
1em = 16px - KIM
*/
/* // BREAKPOINT NAMES \\
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
*/
/* - BASE FOLDER FILES - */
/* ------------------------------------------- */
/* BODY TYPOGRAHPY SETUP
/* ------------------------------------------- */
body {
font-family: 'Lato', 'Arial', 'sans-serif';
font-weight: 400;
/*font-size: 16px;*/
line-height: 1.7;
color: #777; }
/* ------------------------------------------- */
/* HEADING PRIMARY | TEXT / STYLE H1
/* ------------------------------------------- */
.heading-1 {
color: #fff;
text-transform: uppercase;
backface-visibility: hidden;
margin-bottom: 6rem; }
.heading-1--main {
display: block;
font-size: 6rem;
font-weight: 400;
/* -- ANIMATION IMPLEMENTATION -- */
animation-name: moveInLeft;
animation-duration: 2s;
animation-timing-function: ease-out; }
@media (max-width: 37.5em) {
.heading-1--main {
letter-spacing: 1rem;
font-size: 5rem; } }
.heading-1--sub {
display: block;
font-size: 2rem;
font-weight: 700;
letter-spacing: 1.75rem;
/* -- ANIMATION IMPLEMENTATION -- */
animation-name: moveInRight;
animation-duration: 2s;
animation-timing-function: ease-out; }
@media (max-width: 37.5em) {
.heading-1--sub {
letter-spacing: .5rem; } }
/* ------------------------------------------- */
/* HEADING SECONDARY | TEXT / STYLE H2
/* ------------------------------------------- */
.heading-2 {
font-size: 3.5rem;
text-transform: uppercase;
font-weight: 700;
display: inline-block;
background-image: linear-gradient(to right, #09383E, #051d20);
-webkit-background-clip: text;
color: transparent;
/*letter-spacing: .2rem;
transition: all .2s; */
/*
&:hover {
transform: skewY(2deg);
} */ }
@media (max-width: 56.25em) {
.heading-2 {
font-size: 3rem; } }
@media (max-width: 37.5em) {
.heading-2 {
font-size: 2.5rem; } }
/* --------------------------------------------- */
/* HEADING TERTIARY + PARAGRAPH| TEXT / STYLE H3/P
/* --------------------------------------------- */
.heading-3 {
font-size: 1.6rem;
font-weight: 700;
text-transform: uppercase; }
@media (max-width: 37.5em) {
.heading-3 {
text-align: center; } }
.heading-4 {
font-weight: 400;
font-size: 1.9rem; }
.heading-4--light {
color: #f7f7f7; }
.heading-4--dark {
color: #777; }
.paragraph {
font-size: 1.6rem; }
.paragraph:not(:last-child) {
margin-bottom: 3rem; }
.section-text {
font-size: 2.1rem;
text-transform: uppercase;
letter-spacing: .3rem;
color: #0b454d;
justify-content: center;
display: grid;
grid-template-columns: 20% max-content 20%;
grid-column-gap: 1.5rem;
align-items: center; }
.section-text::before, .section-text::after {
content: "";
height: .1rem;
display: block;
background-color: currentColor; }
@media only screen and (max-width: 50em) {
.section-text {
grid-template-columns: 10% max-content 10%; } }
@media only screen and (max-width: 37.5em) {
.section-text {
grid-template-columns: 5% max-content 5%; } }
@media only screen and (max-width: 25em) {
.section-text {
grid-template-columns: 1% max-content 1%; } }
/* ------------------------------------------------ */
/* HEADING SECONDARY BOX EFFECT | FEATURES SECTION
/* ------------------------------------------------ */
.section-features__heading {
padding: 1.2rem;
transition: all 500ms;
position: relative; }
/* ------------------------------------------- */
/* BASIC SETUP
/* ------------------------------------------- */
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit; }
html {
box-sizing: border-box;
/* DEFINES WHAT REM IS */
font-size: 62.5%;
/* Takes 62.5% of the default font size (16px). 100 / 16 = 62.5 */
/* || 1rem = 10px; 10px/16px = 62.5% || */ }
@media (max-width: 37.5em) {
html {
font-size: 50%; } }
@media (max-width: 75em) {
html {
font-size: 56.25%; } }
@media (max-width: 56.25em) {
html {
font-size: 50%; } }
@media (min-width: 112.5em) {
html {
font-size: 75%; } }
@media (max-width: 56.25em) {
body {
padding: 0; } }
/* .container {
display: grid;
grid-template-rows: 80vh min-content 40vw repeat(3, min-content);
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
// CONTENT WILL BE DISPLAYED (RESPONSIVE) BETWEEN ITS MINIMUM CONTENT AND 1400px
// TWO 1fr's ARE THE EMPTY COLUMNS THAT CENTERS REST OF THE PAGES CONTENT
// SIDEBAR-START | SIDEBAR-END is the sidebar option
// FULL-START | FULL-END is the content that goes from the begining of the VW to the end of the VW
// CENTER-START | CENTER-END is the content that is centered for the VW
// * --- MEDIA QUERIES --- * \\
@media only screen and (max-width: $bp-largest) {
display: grid;
grid-template-rows: 6rem 80vh min-content 40vw repeat(3, min-content);
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
}
// * --- MEDIA QUERIES --- * \\
@media only screen and (max-width: $bp-medium) {
display: grid;
grid-template-rows: 6rem calc(100vh - 6rem); // USE CALC TO "MERGE" NAVIGATION ON TOP AND HEADER INTO THE ONE SECTION
}
} */
/* ---------------------------------------------------------- */
/* U-CENTER-TEXT CLASS IN ABOUT SECTION | CENTERING THE TEXT
/* ---------------------------------------------------------- */
.ct {
text-align: center !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-SMALL CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.-mb-s {
margin-bottom: 1.5rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-MEDIUM CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mb-m {
margin-bottom: 4rem !important; }
@media (max-width: 56.25em) {
.mb-m {
margin-bottom: 3rem !important; } }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-BIG CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mb-b {
margin-bottom: 8rem !important; }
@media (max-width: 56.25em) {
.mb-b {
margin-bottom: 5rem !important; } }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-SMALL CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-s {
margin-top: 2rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-MEDIUM CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-m {
margin-top: 5rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-BIG CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-b {
margin-top: 8rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-HUGE CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-h {
margin-top: 10rem !important; }
/* - COMPONENTS FOLDER FILES - */
/* ------------------------------------------- */
/* BUTTON TEXT | ABOUT US
/* ------------------------------------------- */
.btn-text:link, .btn-text:visited {
font-size: 1.6rem;
color: #fff;
display: inline-block;
text-decoration: none;
border-bottom: 0.1rem solid #09383E;
padding: .3rem;
transition: all .2s;
position: relative; }
.btn-text:hover {
background-color: #0b454d;
color: #fff;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
transform: translateY(-2px); }
.btn-text:active {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
transform: translateY(0); }
@media (max-width: 37.5em) {
.btn-text {
position: absolute;
top: 0;
left: 1rem; } }
/* ------------------------------------------- */
/* BUTTON EXPLORE | HEADER
/* ------------------------------------------- */
.btn {
position: relative;
display: inline-block;
color: #fff;
font-size: 1.4rem;
font-family: 'Josefin Sans';
text-decoration: none;
margin: 3rem 0;
border: 0.2rem solid #0b454d;
padding: 1.5rem 6rem;
text-transform: uppercase;
overflow: hidden;
transition: all 1s ease; }
.btn::before {
content: "";
background: #0b454d;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.6s ease;
z-index: -1; }
.btn-explore::before {
width: 100%;
height: 0;
transform: translate(-50%, -50%) rotate(-45deg); }
.btn-explore:hover::before {
height: 360%; }
/* ------------------------------------------- */
/* FEATURES
/* ------------------------------------------- */
.container-2 {
display: grid;
grid-template-rows: min-content;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 24rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.section-features {
margin: 15rem 0;
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
grid-gap: 6rem;
align-items: start; }
.feature {
display: grid;
grid-template-columns: min-content 1fr;
grid-row-gap: 1.5rem;
grid-column-gap: 2.5rem; }
.feature__icon {
fill: #0b454d;
width: 4.5rem;
height: 4.5rem;
transform: translateY(-1rem);
grid-row: 1 / span 2; }
.feature__text {
font-size: 1.7rem; }
/* ------------------------------------------- */
/* GOOGLE MAPS BOX
/* ------------------------------------------- */
.map-box {
width: 100%;
height: 60rem;
position: relative; }
.map {
width: 100%;
height: 60rem;
position: relative;
z-index: 999; }
/* ------------------------------------------- */
/* PLACES OF INTEREST
/* ------------------------------------------- */
.container-3 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: 48rem; }
@media only screen and (max-width: 50em) {
.container-3 {
margin-bottom: -10rem; } }
@media only screen and (max-width: 37.5em) {
.container-3 {
margin-bottom: 140rem; } }
@media only screen and (max-width: 33.25em) {
.container-3 {
margin-bottom: 130rem; } }
@media only screen and (max-width: 31.25em) {
.container-3 {
margin-bottom: 135rem; } }
/*.section-poi {
// CSS GRID SETUP \\
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 15rem);
//grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
grid-gap: 6rem; // CREATES A GAP BETWEEN THE ELEMENTS IN THE GRID COLS
align-items: start;
} */
.poi {
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(8, 5vw);
grid-gap: 6rem; }
@media only screen and (max-width: 37.5em) {
.poi {
grid-template-columns: repat(16, 1fr);
grid-template-rows: repeat(24, 5vw); } }
.poi > * {
color: #fff;
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.8); }
.poi--1 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-5.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 6;
grid-column: 1 / 10;
grid-template-rows: repeat(16, 5vw); }
.poi--1__heading {
font-size: 2.5rem; }
.poi--1__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--1__content {
padding-top: 5rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--1 {
grid-row: 1 / 6;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.poi--1 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--1 {
grid-column: 1 / 7; } }
.poi--2 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-6.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 4;
grid-column: 10 / 17;
grid-template-rows: repeat(4, 5vw); }
.poi--2__heading {
font-size: 2.5rem; }
.poi--2__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--2__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--2 {
grid-row: 6 / 12;
grid-column: 1 / 12;
grid-template-rows: repeat(8, 5vw); } }
@media only screen and (max-width: 33.25em) {
.poi--2 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--2 {
grid-column: 1 / 7; } }
.poi--3 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-7.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 6 / 9;
grid-column: 1 / 10;
grid-template-rows: repeat(4, 5vw); }
.poi--3__heading {
font-size: 2.5rem; }
.poi--3__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--3__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--3 {
grid-row: 12 / 18;
grid-column: 1 / 12;
grid-template-rows: repeat(8, 5vw); } }
@media only screen and (max-width: 33.25em) {
.poi--3 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--3 {
grid-column: 1 / 7; } }
.poi--4 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-4.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 4 / -1;
grid-column: 10 / 17;
grid-template-rows: repeat(8, 5vw); }
.poi--4__heading {
font-size: 2.5rem; }
.poi--4__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--4__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--4 {
grid-row: 18 / 24;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.poi--4 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--4 {
grid-column: 1 / 7; } }
/* ------------------------------------------- */
/* MISCELLANEOUS PLACES OF INTEREST
/* ------------------------------------------- */
.container-4 {
display: grid;
grid-template-rows: 30vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: 5rem; }
@media only screen and (max-width: 86.875em) {
.container-4 {
margin-bottom: 5rem; } }
@media only screen and (max-width: 37.5em) {
.container-4 {
margin-bottom: 85rem; } }
.m-poi {
display: grid;
grid-template-columns: repeat(18, 1fr);
grid-template-rows: repeat(2, 5vw);
justify-content: start;
grid-gap: 6rem; }
@media only screen and (max-width: 37.5em) {
.m-poi {
grid-template-rows: repeat(2, 5vw);
grid-template-columns: repeat(18, 1fr); } }
.m-poi > * {
color: #fff;
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.8); }
.m-poi--1 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/eat.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 1 / 7; }
.m-poi--1__heading {
font-size: 2.5rem; }
.m-poi--1__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--1__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--1 {
grid-row: 1 / 6;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--1 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--1 {
grid-column: 1 / 7; } }
.m-poi--2 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/shop.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 7 / 13; }
@media only screen and (max-width: 37.5em) {
.m-poi--2 {
grid-row: 6 / 11;
grid-column: 1 / -1; } }
.m-poi--2__heading {
font-size: 2.5rem; }
.m-poi--2__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--2__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--2 {
grid-row: 6 / 12;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--2 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--2 {
grid-column: 1 / 7; } }
.m-poi--3 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/relax.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 13 / 19; }
@media only screen and (max-width: 37.5em) {
.m-poi--3 {
grid-row: 11 / 16;
grid-column: 1 / -1; } }
.m-poi--3__heading {
font-size: 2.5rem; }
.m-poi--3__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--3__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--3 {
grid-row: 12 / 18;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--3 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--3 {
grid-column: 1 / 7; } }
/* ------------------------------------------- */
/* TESTIMONIALS
/* ------------------------------------------- */
.container-5 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: -5rem; }
@media only screen and (max-width: 62.5em) {
.container-5 {
margin-bottom: -20rem; } }
@media only screen and (max-width: 50em) {
.container-5 {
margin-bottom: -50rem;
padding-right: 5rem; } }
@media only screen and (max-width: 37.5em) {
.container-5 {
margin-bottom: 110rem; } }
@media only screen and (max-width: 31.25em) {
.container-5 {
margin-bottom: 80rem; } }
@media only screen and (max-width: 28.125em) {
.container-5 {
margin-bottom: 65rem; } }
@media only screen and (max-width: 25em) {
.container-5 {
margin-bottom: 55rem; } }
.block {
display: grid;
justify-content: start;
grid-column-gap: 6rem;
grid-template-rows: repeat(6, 5vw);
grid-template-columns: repeat(22, 1fr); }
@media only screen and (max-width: 37.5em) {
.block {
grid-template-rows: repeat(48, 5vw); } }
.block > * {
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center; }
.block--1 {
display: grid;
grid-row: 1 / 4;
grid-column: 4 / 10;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 86.875em) {
.block--1 {
grid-column: 3 / 9; } }
@media only screen and (max-width: 75em) {
.block--1 {
grid-column: 2 / 8; } }
@media only screen and (max-width: 62.5em) {
.block--1 {
grid-column: 2 / 6; } }
@media only screen and (max-width: 50em) {
.block--1 {
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.block--1 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 31.25em) {
.block--1 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--1 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--1 {
grid-column: 2 / 8; } }
.block--2 {
display: grid;
grid-row: 1 / 4;
grid-column: 9 / 15;
background-image: url(../images/user-2.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--2 {
grid-column: 8 / 14; } }
@media only screen and (max-width: 75em) {
.block--2 {
grid-column: 7 / 13; } }
@media only screen and (max-width: 62.5em) {
.block--2 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 50em) {
.block--2 {
grid-column: 5 / 9; } }
@media only screen and (max-width: 37.5em) {
.block--2 {
grid-row: 4 / 11;
grid-column: 4 / 11;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--2 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--2 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--2 {
grid-column: 2 / 8; } }
.block--3 {
display: grid;
grid-row: 1 / 4;
grid-column: 14 / 20;
justify-self: center;
align-self: center;
padding: 0 1.5rem; }
@media only screen and (max-width: 86.875em) {
.block--3 {
grid-column: 13 / 19; } }
@media only screen and (max-width: 75em) {
.block--3 {
grid-column: 12 / 18; } }
@media only screen and (max-width: 62.5em) {
.block--3 {
grid-column: 9 / 14; } }
@media only screen and (max-width: 50em) {
.block--3 {
grid-column: 9 / 13; } }
@media only screen and (max-width: 37.5em) {
.block--3 {
grid-column: 5 / 10;
grid-row: 12 / 15; } }
@media only screen and (max-width: 31.25em) {
.block--3 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--3 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--3 {
grid-column: 2 / 8; } }
.block--4 {
display: grid;
grid-row: 1 / 4;
grid-column: 19 / 25;
background-image: url(../images/user-1.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--4 {
grid-column: 18 / 24; } }
@media only screen and (max-width: 75em) {
.block--4 {
grid-column: 17 / 23; } }
@media only screen and (max-width: 62.5em) {
.block--4 {
grid-column: 13 / 18; } }
@media only screen and (max-width: 50em) {
.block--4 {
grid-column: 13 / 17; } }
@media only screen and (max-width: 37.5em) {
.block--4 {
grid-row: 16 / 23;
grid-column: 4 / 11;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--4 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--4 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--4 {
grid-column: 2 / 8; } }
.block--5 {
display: grid;
grid-row: 4 / 7;
grid-column: 4 / 10;
background-image: url(../images/user-3.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--5 {
grid-column: 3 / 9; } }
@media only screen and (max-width: 75em) {
.block--5 {
grid-column: 2 / 8; } }
@media only screen and (max-width: 62.5em) {
.block--5 {
grid-column: 2 / 6; } }
@media only screen and (max-width: 50em) {
.block--5 {
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.block--5 {
grid-column: 4 / 11;
grid-row: 29 / 36;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--5 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--5 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--5 {
grid-column: 2 / 8; } }
.block--6 {
display: grid;
grid-row: 4 / 7;
grid-column: 9 / 15;
justify-self: center;
align-self: center;
padding: 0 1.5rem;
padding-top: 2rem; }
@media only screen and (max-width: 86.875em) {
.block--6 {
grid-column: 8 / 14; } }
@media only screen and (max-width: 75em) {
.block--6 {
grid-column: 7 / 13; } }
@media only screen and (max-width: 62.5em) {
.block--6 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 50em) {
.block--6 {
grid-column: 5 / 9; } }
@media only screen and (max-width: 37.5em) {
.block--6 {
grid-column: 5 / 10;
grid-row: 23 / 30; } }
@media only screen and (max-width: 31.25em) {
.block--6 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--6 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--6 {
grid-column: 2 / 8; } }
.block--7 {
display: grid;
grid-row: 4 / 7;
grid-column: 14 / 20;
background-image: url(../images/user-4.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--7 {
grid-column: 13 / 19; } }
@media only screen and (max-width: 75em) {
.block--7 {
grid-column: 12 / 18; } }
@media only screen and (max-width: 62.5em) {
.block--7 {
grid-column: 9 / 14; } }
@media only screen and (max-width: 50em) {
.block--7 {
grid-column: 9 / 13; } }
@media only screen and (max-width: 37.5em) {
.block--7 {
grid-column: 4 / 11;
grid-row: 42 / 49;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--7 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--7 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--7 {
grid-column: 2 / 8; } }
.block--8 {
display: grid;
grid-row: 4 / 7;
grid-column: 19 / 25;
justify-self: center;
align-self: center;
padding: 0 1.5rem;
padding-top: 2rem; }
@media only screen and (max-width: 86.875em) {
.block--8 {
grid-column: 18 / 24; } }
@media only screen and (max-width: 75em) {
.block--8 {
grid-column: 17 / 23; } }
@media only screen and (max-width: 62.5em) {
.block--8 {
grid-column: 13 / 18; } }
@media only screen and (max-width: 50em) {
.block--8 {
grid-column: 13 / 17; } }
@media only screen and (max-width: 37.5em) {
.block--8 {
grid-column: 5 / 10;
grid-row: 37 / 41; } }
@media only screen and (max-width: 31.25em) {
.block--8 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--8 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--8 {
grid-column: 2 / 8; } }
/* ------------------------------------------- */
/* TEXT REVEAL
/* ------------------------------------------- */
.rev-block {
position: relative; }
.rev-block span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 1.4s; }
.rev-block::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 1s; }
.rev-block-2 {
position: relative; }
.rev-block-2 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 2.4s; }
.rev-block-2::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 2s; }
.rev-block-3 {
position: relative; }
.rev-block-3 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 3.4s; }
.rev-block-3::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 3s; }
.rev-block-4 {
position: relative; }
.rev-block-4 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 4.4s; }
.rev-block-4::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 4s; }
/* - LAYOUT FOLDER FILES - */
/* ------------------------------------------- */
/* FOOTER
/* ------------------------------------------- */
.container-6 {
display: grid;
grid-template-rows: min-content;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.footer {
background-color: #051d20;
grid-column: full-start / full-end;
padding: 8rem; }
.footer__list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
grid-gap: 2rem;
align-items: center; }
.footer__link:link, .footer__link:visited {
font-size: 1.4rem;
color: #fff;
text-decoration: none;
font-family: 'Josefin Sans';
text-transform: uppercase;
text-align: center;
padding: 1.5rem;
display: block;
transition: all .2s; }
.footer__link:hover, .footer__link:active {
background-color: rgba(255, 255, 255, 0.05);
transform: translateY(-0.3rem); }
.footer__copyright {
font-size: 1.4rem;
color: #eee;
margin-top: 6rem;
text-align: center; }
/* ------------------------------------------- */
/* HEADER
/* ------------------------------------------- */
.container-1 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.header {
grid-column: full-start / full-end;
background-image: linear-gradient(rgba(9, 56, 62, 0.63), rgba(5, 29, 32, 0.83)), url(../images/header.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
padding: 20vh;
z-index: 2;
display: grid;
grid-row-gap: 1.5rem;
grid-template-rows: 1fr min-content minmax(6rem, min-content) 1fr;
grid-template-columns: minmax(min-content, max-content);
justify-content: center; }
@media only screen and (max-width: 50em) {
.header {
grid-column: 1 / -1; } }
@media only screen and (max-width: 37.5em) {
.header {
padding: 5rem; } }
.header__heading {
color: #fff;
font-size: 7.5rem;
font-weight: 300;
font-family: 'Josefin Sans';
text-transform: uppercase;
text-align: center; }
@media only screen and (max-width: 37.5em) {
.header__heading {
font-size: 4.5rem; } }
.header__button {
justify-self: center;
margin-left: 2.5rem; }
/* ------------------------------------------- */
/* NAVIGATION
/* ------------------------------------------- */
.navigation__checkbox {
display: none; }
.navigation__button {
background-color: #fff;
height: 7rem;
width: 7rem;
position: fixed;
top: 6rem;
right: 6rem;
border-radius: 50%;
z-index: 2000;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer; }
@media (max-width: 56.25em) {
.navigation__button {
top: 4rem;
right: 4rem; } }
@media (max-width: 37.5em) {
.navigation__button {
top: 3.5rem;
right: 3.5rem; } }
.navigation__background {
height: 6rem;
width: 6rem;
border-radius: 50%;
position: fixed;
top: 6.5rem;
right: 6.5rem;
background-image: radial-gradient(rgba(9, 56, 62, 0.9), rgba(5, 29, 32, 0.9));
z-index: 1000;
-webkit-transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
@media (max-width: 56.25em) {
.navigation__background {
top: 4.5rem;
right: 4.5rem; } }
@media (max-width: 37.5em) {
.navigation__background {
top: 3.5rem;
right: 3.5rem; } }
.navigation__nav {
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 1500;
opacity: 0;
width: 0;
-webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
transition: all 0.8s all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.navigation__list {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
list-style: none;
text-align: center;
width: 100%; }
.navigation__item {
margin: 1rem; }
.navigation__link:link, .navigation__link:visited {
display: inline-block;
font-size: 3rem;
font-weight: 300;
padding: 1rem 2rem;
color: #fff;
text-decoration: none;
text-transform: uppercase;
background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
background-size: 228%;
transition: all .4s; }
.navigation__link:hover, .navigation__link:active {
background-position: 100%;
color: #0b454d;
transform: translateX(1rem); }
.navigation__span-num {
margin-right: 1.5rem;
display: inline-block; }
.navigation__checkbox:checked ~ .navigation__background {
transform: scale(80); }
.navigation__checkbox:checked ~ .navigation__nav {
opacity: 1;
width: 100%; }
.navigation__icon {
position: relative;
margin-top: 3.5rem; }
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
width: 3rem;
height: 2px;
background-color: #333;
display: inline-block; }
.navigation__icon::before, .navigation__icon::after {
content: "";
position: absolute;
left: 0;
transition: all .2s; }
.navigation__icon::before {
top: -.8rem; }
.navigation__icon::after {
top: .8rem; }
.navigation__button:hover .navigation__icon::before {
top: -1rem; }
.navigation__button:hover .navigation__icon::after {
top: 1rem; }
.navigation__checkbox:checked + .navigation__button .navigation__icon {
background-color: transparent; }
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
top: 0;
transform: rotate(45deg); }
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
top: 0;
transform: rotate(-45deg); }
/* - PAGES FOLDER FILES - */
/* ------------------------------------------- */
/* ABOUT US | SECTION | HOME PAGE
/* ------------------------------------------- */
.section-about {
grid-column: center-start / center-end;
display: grid; }
.section-about__heading {
text-align: center;
font-size: 3.5rem;
text-transform: uppercase; }
.section-about__text {
display: grid;
grid-template-columns: 1fr max-content;
grid-row-gap: 1.5rem;
grid-column-gap: 2.5rem;
text-align: center;
padding: 0 5rem; }
/* ------------------------------------------- */
/* PLACES OF INTEREST | SECTION | HOME PAGE
/* ------------------------------------------- */
.section-poi {
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(60rem, 1fr)); }
/* ----------------------------------------------------- */
/* MISCELLANEOUS PLACES OF INTEREST | SECTION | HOME PAGE
/* ----------------------------------------------------- */
.section-m-poi {
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(60rem, 1fr)); }
/* ----------------------------------------------------- */
/* NYC QUOTE | SECTION | HOME PAGE
/* ----------------------------------------------------- */
/*.container-7 {
display: grid;
grid-template-rows: 60vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
} */
.section-quote {
display: grid;
grid-template-rows: repeat(6, 5vw);
grid-template-columns: repeat(24, 5vw);
overflow-x: hidden; }
.section-quote__text {
font-weight: 300;
font-size: 3.6rem;
display: grid;
grid-row: 2 / 3;
grid-column: 4 / 20; }
@media only screen and (max-width: 86.875em) {
.section-quote__text {
grid-column: 2 / 21; } }
@media only screen and (max-width: 37.5em) {
.section-quote__text {
font-size: 1.4rem;
padding: 0 6rem; } }
.section-quote__name {
font-weight: 300;
font-family: 'Josefin Sans';
display: grid;
grid-row: 3 / 4;
grid-column: 18 / 21;
font-size: 1.8rem; }
@media only screen and (max-width: 50em) {
.section-quote__name {
grid-row: 5 / 6;
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.section-quote__name {
font-size: 1.3rem;
grid-column: 10 / 14; } }
.section-quote__img {
display: grid;
grid-row: 4 / 9;
grid-column: 14 / -1; }
@media only screen and (max-width: 37.5em) {
.section-quote__img {
max-width: 200%;
max-height: 200%;
grid-column: 1 / -1; } } | resources/css3/style.css | @keyframes rev-block {
0% {
left: 0;
width: 0%; }
50% {
left: 0;
width: 100%; }
100% {
left: 100%;
width: 0%; } }
@keyframes appear-text {
0% {
opacity: 0; }
100% {
opacity: 1; } }
/* ------------------------------------------- */
/* COLOR VARIABLES
/* ------------------------------------------- */
/* GREY SHADES */
/* B & W */
/* COLORS FOR SECTIONS BACKGROUNDS */
/* ------------------------------------------- */
/* GRID VARIABLES
/* ------------------------------------------- */
/* ------------------------------------------- */
/* FONT
/* ------------------------------------------- */
/* ------------------------------------------- */
/* CLAERFIX MIXIN FOR THE GRID
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MIXIN THAT CENTERS THE ELEMENTS TO VH
/* ------------------------------------------- */
/* ------------------------------------------- */
/* CENTERS THE BUTTONS
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MEDIA QUERIES | SHORTCUT VERSION
/* ------------------------------------------- */
/* ------------------------------------------- */
/* MEDIA QUERY MANAGER
/* ------------------------------------------- */
/* // SIZES / DEVICES \\
0 - 600px > Phone
600 - 900px > Tablet Portrait
900 - 1200px > Tablet Landscape
[1200 - 18009 is where our normal style apply
1800px + >Big Desktop
1em = 16px - KIM
*/
/* // BREAKPOINT NAMES \\
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
*/
/* - BASE FOLDER FILES - */
/* ------------------------------------------- */
/* BODY TYPOGRAHPY SETUP
/* ------------------------------------------- */
body {
font-family: 'Lato', 'Arial', 'sans-serif';
font-weight: 400;
/*font-size: 16px;*/
line-height: 1.7;
color: #777; }
/* ------------------------------------------- */
/* HEADING PRIMARY | TEXT / STYLE H1
/* ------------------------------------------- */
.heading-1 {
color: #fff;
text-transform: uppercase;
backface-visibility: hidden;
margin-bottom: 6rem; }
.heading-1--main {
display: block;
font-size: 6rem;
font-weight: 400;
/* -- ANIMATION IMPLEMENTATION -- */
animation-name: moveInLeft;
animation-duration: 2s;
animation-timing-function: ease-out; }
@media (max-width: 37.5em) {
.heading-1--main {
letter-spacing: 1rem;
font-size: 5rem; } }
.heading-1--sub {
display: block;
font-size: 2rem;
font-weight: 700;
letter-spacing: 1.75rem;
/* -- ANIMATION IMPLEMENTATION -- */
animation-name: moveInRight;
animation-duration: 2s;
animation-timing-function: ease-out; }
@media (max-width: 37.5em) {
.heading-1--sub {
letter-spacing: .5rem; } }
/* ------------------------------------------- */
/* HEADING SECONDARY | TEXT / STYLE H2
/* ------------------------------------------- */
.heading-2 {
font-size: 3.5rem;
text-transform: uppercase;
font-weight: 700;
display: inline-block;
background-image: linear-gradient(to right, #09383E, #051d20);
-webkit-background-clip: text;
color: transparent;
/*letter-spacing: .2rem;
transition: all .2s; */
/*
&:hover {
transform: skewY(2deg);
} */ }
@media (max-width: 56.25em) {
.heading-2 {
font-size: 3rem; } }
@media (max-width: 37.5em) {
.heading-2 {
font-size: 2.5rem; } }
/* --------------------------------------------- */
/* HEADING TERTIARY + PARAGRAPH| TEXT / STYLE H3/P
/* --------------------------------------------- */
.heading-3 {
font-size: 1.6rem;
font-weight: 700;
text-transform: uppercase; }
@media (max-width: 37.5em) {
.heading-3 {
text-align: center; } }
.heading-4 {
font-weight: 400;
font-size: 1.9rem; }
.heading-4--light {
color: #f7f7f7; }
.heading-4--dark {
color: #777; }
.paragraph {
font-size: 1.6rem; }
.paragraph:not(:last-child) {
margin-bottom: 3rem; }
.section-text {
font-size: 2.1rem;
text-transform: uppercase;
letter-spacing: .3rem;
color: #0b454d;
justify-content: center;
display: grid;
grid-template-columns: 20% max-content 20%;
grid-column-gap: 1.5rem;
align-items: center; }
.section-text::before, .section-text::after {
content: "";
height: .1rem;
display: block;
background-color: currentColor; }
@media only screen and (max-width: 50em) {
.section-text {
grid-template-columns: 10% max-content 10%; } }
@media only screen and (max-width: 37.5em) {
.section-text {
grid-template-columns: 5% max-content 5%; } }
@media only screen and (max-width: 25em) {
.section-text {
grid-template-columns: 1% max-content 1%; } }
/* ------------------------------------------------ */
/* HEADING SECONDARY BOX EFFECT | FEATURES SECTION
/* ------------------------------------------------ */
.section-features__heading {
padding: 1.2rem;
transition: all 500ms;
position: relative; }
/* ------------------------------------------- */
/* BASIC SETUP
/* ------------------------------------------- */
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit; }
html {
box-sizing: border-box;
/* DEFINES WHAT REM IS */
font-size: 62.5%;
/* Takes 62.5% of the default font size (16px). 100 / 16 = 62.5 */
/* || 1rem = 10px; 10px/16px = 62.5% || */ }
@media (max-width: 37.5em) {
html {
font-size: 50%; } }
@media (max-width: 75em) {
html {
font-size: 56.25%; } }
@media (max-width: 56.25em) {
html {
font-size: 50%; } }
@media (min-width: 112.5em) {
html {
font-size: 75%; } }
@media (max-width: 56.25em) {
body {
padding: 0; } }
/* .container {
display: grid;
grid-template-rows: 80vh min-content 40vw repeat(3, min-content);
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
// CONTENT WILL BE DISPLAYED (RESPONSIVE) BETWEEN ITS MINIMUM CONTENT AND 1400px
// TWO 1fr's ARE THE EMPTY COLUMNS THAT CENTERS REST OF THE PAGES CONTENT
// SIDEBAR-START | SIDEBAR-END is the sidebar option
// FULL-START | FULL-END is the content that goes from the begining of the VW to the end of the VW
// CENTER-START | CENTER-END is the content that is centered for the VW
// * --- MEDIA QUERIES --- * \\
@media only screen and (max-width: $bp-largest) {
display: grid;
grid-template-rows: 6rem 80vh min-content 40vw repeat(3, min-content);
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
}
// * --- MEDIA QUERIES --- * \\
@media only screen and (max-width: $bp-medium) {
display: grid;
grid-template-rows: 6rem calc(100vh - 6rem); // USE CALC TO "MERGE" NAVIGATION ON TOP AND HEADER INTO THE ONE SECTION
}
} */
/* ---------------------------------------------------------- */
/* U-CENTER-TEXT CLASS IN ABOUT SECTION | CENTERING THE TEXT
/* ---------------------------------------------------------- */
.ct {
text-align: center !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-SMALL CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.-mb-s {
margin-bottom: 1.5rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-MEDIUM CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mb-m {
margin-bottom: 4rem !important; }
@media (max-width: 56.25em) {
.mb-m {
margin-bottom: 3rem !important; } }
/* ---------------------------------------------------------- */
/* U-MARGIN-BOTTOM-BIG CLASS IN ABOUT SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mb-b {
margin-bottom: 8rem !important; }
@media (max-width: 56.25em) {
.mb-b {
margin-bottom: 5rem !important; } }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-SMALL CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-s {
margin-top: 2rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-MEDIUM CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-m {
margin-top: 5rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-BIG CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-b {
margin-top: 8rem !important; }
/* ---------------------------------------------------------- */
/* U-MARGIN-TOP-HUGE CLASS IN TOURS SECTION | POSITION THE TEXT
/* ---------------------------------------------------------- */
.mt-h {
margin-top: 10rem !important; }
/* - COMPONENTS FOLDER FILES - */
/* ------------------------------------------- */
/* BUTTON TEXT | ABOUT US
/* ------------------------------------------- */
.btn-text:link, .btn-text:visited {
font-size: 1.6rem;
color: #fff;
display: inline-block;
text-decoration: none;
border-bottom: 0.1rem solid #09383E;
padding: .3rem;
transition: all .2s;
position: relative; }
.btn-text:hover {
background-color: #0b454d;
color: #fff;
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
transform: translateY(-2px); }
.btn-text:active {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
transform: translateY(0); }
@media (max-width: 37.5em) {
.btn-text {
position: absolute;
top: 0;
left: 1rem; } }
/* ------------------------------------------- */
/* BUTTON EXPLORE | HEADER
/* ------------------------------------------- */
.btn {
position: relative;
display: inline-block;
color: #fff;
font-size: 1.4rem;
font-family: 'Josefin Sans';
text-decoration: none;
margin: 3rem 0;
border: 0.2rem solid #0b454d;
padding: 1.5rem 6rem;
text-transform: uppercase;
overflow: hidden;
transition: all 1s ease; }
.btn::before {
content: "";
background: #0b454d;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.6s ease;
z-index: -1; }
.btn-explore::before {
width: 100%;
height: 0;
transform: translate(-50%, -50%) rotate(-45deg); }
.btn-explore:hover::before {
height: 360%; }
/* ------------------------------------------- */
/* FEATURES
/* ------------------------------------------- */
.container-2 {
display: grid;
grid-template-rows: min-content;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 24rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.section-features {
margin: 15rem 0;
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
grid-gap: 6rem;
align-items: start; }
.feature {
display: grid;
grid-template-columns: min-content 1fr;
grid-row-gap: 1.5rem;
grid-column-gap: 2.5rem; }
.feature__icon {
fill: #0b454d;
width: 4.5rem;
height: 4.5rem;
transform: translateY(-1rem);
grid-row: 1 / span 2; }
.feature__text {
font-size: 1.7rem; }
/* ------------------------------------------- */
/* GOOGLE MAPS BOX
/* ------------------------------------------- */
.map-box {
width: 100%;
height: 60rem;
position: relative; }
.map {
width: 100%;
height: 60rem;
position: relative;
z-index: 999; }
/* ------------------------------------------- */
/* PLACES OF INTEREST
/* ------------------------------------------- */
.container-3 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: 48rem; }
@media only screen and (max-width: 50em) {
.container-3 {
margin-bottom: -10rem; } }
@media only screen and (max-width: 37.5em) {
.container-3 {
margin-bottom: 140rem; } }
@media only screen and (max-width: 33.25em) {
.container-3 {
margin-bottom: 130rem; } }
@media only screen and (max-width: 31.25em) {
.container-3 {
margin-bottom: 135rem; } }
/*.section-poi {
// CSS GRID SETUP \\
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 15rem);
//grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
grid-gap: 6rem; // CREATES A GAP BETWEEN THE ELEMENTS IN THE GRID COLS
align-items: start;
} */
.poi {
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(8, 5vw);
grid-gap: 6rem; }
@media only screen and (max-width: 37.5em) {
.poi {
grid-template-columns: repat(16, 1fr);
grid-template-rows: repeat(24, 5vw); } }
.poi > * {
color: #fff;
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.8); }
.poi--1 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-5.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 6;
grid-column: 1 / 10;
grid-template-rows: repeat(16, 5vw); }
.poi--1__heading {
font-size: 2.5rem; }
.poi--1__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--1__content {
padding-top: 5rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--1 {
grid-row: 1 / 6;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.poi--1 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--1 {
grid-column: 1 / 7; } }
.poi--2 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-6.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 4;
grid-column: 10 / 17;
grid-template-rows: repeat(4, 5vw); }
.poi--2__heading {
font-size: 2.5rem; }
.poi--2__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--2__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--2 {
grid-row: 6 / 12;
grid-column: 1 / 12;
grid-template-rows: repeat(8, 5vw); } }
@media only screen and (max-width: 33.25em) {
.poi--2 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--2 {
grid-column: 1 / 7; } }
.poi--3 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-7.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 6 / 9;
grid-column: 1 / 10;
grid-template-rows: repeat(4, 5vw); }
.poi--3__heading {
font-size: 2.5rem; }
.poi--3__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--3__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--3 {
grid-row: 12 / 18;
grid-column: 1 / 12;
grid-template-rows: repeat(8, 5vw); } }
@media only screen and (max-width: 33.25em) {
.poi--3 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--3 {
grid-column: 1 / 7; } }
.poi--4 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/nyc-4.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 4 / -1;
grid-column: 10 / 17;
grid-template-rows: repeat(8, 5vw); }
.poi--4__heading {
font-size: 2.5rem; }
.poi--4__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.poi--4__content {
padding-top: 15rem;
grid-row: 6 / 7; } }
@media only screen and (max-width: 37.5em) {
.poi--4 {
grid-row: 18 / 24;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.poi--4 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.poi--4 {
grid-column: 1 / 7; } }
/* ------------------------------------------- */
/* MISCELLANEOUS PLACES OF INTEREST
/* ------------------------------------------- */
.container-4 {
display: grid;
grid-template-rows: 30vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: 5rem; }
@media only screen and (max-width: 86.875em) {
.container-4 {
margin-bottom: 5rem; } }
@media only screen and (max-width: 37.5em) {
.container-4 {
margin-bottom: 85rem; } }
.m-poi {
display: grid;
grid-template-columns: repeat(18, 1fr);
grid-template-rows: repeat(2, 5vw);
justify-content: start;
grid-gap: 6rem; }
@media only screen and (max-width: 37.5em) {
.m-poi {
grid-template-rows: repeat(2, 5vw);
grid-template-columns: repeat(18, 1fr); } }
.m-poi > * {
color: #fff;
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.8); }
.m-poi--1 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/eat.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 1 / 7; }
.m-poi--1__heading {
font-size: 2.5rem; }
.m-poi--1__content {
grid-row: 4 / 5;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--1__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--1 {
grid-row: 1 / 6;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--1 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--1 {
grid-column: 1 / 7; } }
.m-poi--2 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/shop.jpeg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 7 / 13; }
@media only screen and (max-width: 37.5em) {
.m-poi--2 {
grid-row: 6 / 11;
grid-column: 1 / -1; } }
.m-poi--2__heading {
font-size: 2.5rem; }
.m-poi--2__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--2__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--2 {
grid-row: 6 / 12;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--2 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--2 {
grid-column: 1 / 7; } }
.m-poi--3 {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/relax.jpg);
background-size: cover;
background-position: center;
display: grid;
grid-row: 1 / 3;
grid-column: 13 / 19; }
@media only screen and (max-width: 37.5em) {
.m-poi--3 {
grid-row: 11 / 16;
grid-column: 1 / -1; } }
.m-poi--3__heading {
font-size: 2.5rem; }
.m-poi--3__content {
grid-row: 3 / 4;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 37.5em) {
.m-poi--3__content {
justify-self: center;
align-self: start; } }
@media only screen and (max-width: 37.5em) {
.m-poi--3 {
grid-row: 12 / 18;
grid-column: 1 / 12; } }
@media only screen and (max-width: 33.25em) {
.m-poi--3 {
grid-column: 2 / 9; } }
@media only screen and (max-width: 25em) {
.m-poi--3 {
grid-column: 1 / 7; } }
/* ------------------------------------------- */
/* TESTIMONIALS
/* ------------------------------------------- */
.container-5 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
margin-bottom: -5rem; }
@media only screen and (max-width: 62.5em) {
.container-5 {
margin-bottom: -20rem; } }
@media only screen and (max-width: 50em) {
.container-5 {
margin-bottom: -50rem;
padding-right: 5rem; } }
@media only screen and (max-width: 37.5em) {
.container-5 {
margin-bottom: 110rem; } }
@media only screen and (max-width: 31.25em) {
.container-5 {
margin-bottom: 80rem; } }
@media only screen and (max-width: 28.125em) {
.container-5 {
margin-bottom: 65rem; } }
@media only screen and (max-width: 25em) {
.container-5 {
margin-bottom: 55rem; } }
.block {
display: grid;
justify-content: start;
grid-column-gap: 6rem;
grid-template-rows: repeat(6, 5vw);
grid-template-columns: repeat(22, 1fr); }
@media only screen and (max-width: 37.5em) {
.block {
grid-template-rows: repeat(48, 5vw); } }
.block > * {
font-family: 'Josefin Sans';
font-weight: 300;
text-align: center; }
.block--1 {
display: grid;
grid-row: 1 / 4;
grid-column: 4 / 10;
justify-self: center;
align-self: center; }
@media only screen and (max-width: 86.875em) {
.block--1 {
grid-column: 3 / 9; } }
@media only screen and (max-width: 75em) {
.block--1 {
grid-column: 2 / 8; } }
@media only screen and (max-width: 62.5em) {
.block--1 {
grid-column: 2 / 6; } }
@media only screen and (max-width: 50em) {
.block--1 {
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.block--1 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 31.25em) {
.block--1 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--1 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--1 {
grid-column: 2 / 8; } }
.block--2 {
display: grid;
grid-row: 1 / 4;
grid-column: 9 / 15;
background-image: url(../images/user-2.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--2 {
grid-column: 8 / 14; } }
@media only screen and (max-width: 75em) {
.block--2 {
grid-column: 7 / 13; } }
@media only screen and (max-width: 62.5em) {
.block--2 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 50em) {
.block--2 {
grid-column: 5 / 9; } }
@media only screen and (max-width: 37.5em) {
.block--2 {
grid-row: 4 / 11;
grid-column: 4 / 11;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--2 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--2 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--2 {
grid-column: 2 / 8; } }
.block--3 {
display: grid;
grid-row: 1 / 4;
grid-column: 14 / 20;
justify-self: center;
align-self: center;
padding: 0 1.5rem; }
@media only screen and (max-width: 86.875em) {
.block--3 {
grid-column: 13 / 19; } }
@media only screen and (max-width: 75em) {
.block--3 {
grid-column: 12 / 18; } }
@media only screen and (max-width: 62.5em) {
.block--3 {
grid-column: 9 / 14; } }
@media only screen and (max-width: 50em) {
.block--3 {
grid-column: 9 / 13; } }
@media only screen and (max-width: 37.5em) {
.block--3 {
grid-column: 5 / 10;
grid-row: 12 / 15; } }
@media only screen and (max-width: 31.25em) {
.block--3 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--3 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--3 {
grid-column: 2 / 8; } }
.block--4 {
display: grid;
grid-row: 1 / 4;
grid-column: 19 / 25;
background-image: url(../images/user-1.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--4 {
grid-column: 18 / 24; } }
@media only screen and (max-width: 75em) {
.block--4 {
grid-column: 17 / 23; } }
@media only screen and (max-width: 62.5em) {
.block--4 {
grid-column: 13 / 18; } }
@media only screen and (max-width: 50em) {
.block--4 {
grid-column: 13 / 17; } }
@media only screen and (max-width: 37.5em) {
.block--4 {
grid-row: 16 / 23;
grid-column: 4 / 11;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--4 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--4 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--4 {
grid-column: 2 / 8; } }
.block--5 {
display: grid;
grid-row: 4 / 7;
grid-column: 4 / 10;
background-image: url(../images/user-3.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--5 {
grid-column: 3 / 9; } }
@media only screen and (max-width: 75em) {
.block--5 {
grid-column: 2 / 8; } }
@media only screen and (max-width: 62.5em) {
.block--5 {
grid-column: 2 / 6; } }
@media only screen and (max-width: 50em) {
.block--5 {
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.block--5 {
grid-column: 4 / 11;
grid-row: 29 / 36;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--5 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--5 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--5 {
grid-column: 2 / 8; } }
.block--6 {
display: grid;
grid-row: 4 / 7;
grid-column: 9 / 15;
justify-self: center;
align-self: center;
padding: 0 1.5rem;
padding-top: 2rem; }
@media only screen and (max-width: 86.875em) {
.block--6 {
grid-column: 8 / 14; } }
@media only screen and (max-width: 75em) {
.block--6 {
grid-column: 7 / 13; } }
@media only screen and (max-width: 62.5em) {
.block--6 {
grid-column: 5 / 10; } }
@media only screen and (max-width: 50em) {
.block--6 {
grid-column: 5 / 9; } }
@media only screen and (max-width: 37.5em) {
.block--6 {
grid-column: 5 / 10;
grid-row: 23 / 30; } }
@media only screen and (max-width: 31.25em) {
.block--6 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--6 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--6 {
grid-column: 2 / 8; } }
.block--7 {
display: grid;
grid-row: 4 / 7;
grid-column: 14 / 20;
background-image: url(../images/user-4.jpeg);
background-size: cover;
background-position: center;
box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3); }
@media only screen and (max-width: 86.875em) {
.block--7 {
grid-column: 13 / 19; } }
@media only screen and (max-width: 75em) {
.block--7 {
grid-column: 12 / 18; } }
@media only screen and (max-width: 62.5em) {
.block--7 {
grid-column: 9 / 14; } }
@media only screen and (max-width: 50em) {
.block--7 {
grid-column: 9 / 13; } }
@media only screen and (max-width: 37.5em) {
.block--7 {
grid-column: 4 / 11;
grid-row: 42 / 49;
box-shadow: 0rem 0.3rem 2rem rgba(0, 0, 0, 0.3); } }
@media only screen and (max-width: 31.25em) {
.block--7 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--7 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--7 {
grid-column: 2 / 8; } }
.block--8 {
display: grid;
grid-row: 4 / 7;
grid-column: 19 / 25;
justify-self: center;
align-self: center;
padding: 0 1.5rem;
padding-top: 2rem; }
@media only screen and (max-width: 86.875em) {
.block--8 {
grid-column: 18 / 24; } }
@media only screen and (max-width: 75em) {
.block--8 {
grid-column: 17 / 23; } }
@media only screen and (max-width: 62.5em) {
.block--8 {
grid-column: 13 / 18; } }
@media only screen and (max-width: 50em) {
.block--8 {
grid-column: 13 / 17; } }
@media only screen and (max-width: 37.5em) {
.block--8 {
grid-column: 5 / 10;
grid-row: 37 / 41; } }
@media only screen and (max-width: 31.25em) {
.block--8 {
grid-column: 4 / 9; } }
@media only screen and (max-width: 25em) {
.block--8 {
grid-column: 3 / 8; } }
@media only screen and (max-width: 23.75em) {
.block--8 {
grid-column: 2 / 8; } }
/* ------------------------------------------- */
/* TEXT REVEAL
/* ------------------------------------------- */
.rev-block {
position: relative; }
.rev-block span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 1.4s; }
.rev-block::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 1s; }
.rev-block-2 {
position: relative; }
.rev-block-2 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 2.4s; }
.rev-block-2::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 2s; }
.rev-block-3 {
position: relative; }
.rev-block-3 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 3.4s; }
.rev-block-3::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 3s; }
.rev-block-4 {
position: relative; }
.rev-block-4 span {
opacity: 0;
animation: appear-text 0.0001s linear forwards;
animation-delay: 4.4s; }
.rev-block-4::after {
content: "";
top: 0;
left: 0%;
position: absolute;
width: 0%;
height: 100%;
background: #0b454d;
animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
animation-delay: 4s; }
/* - LAYOUT FOLDER FILES - */
/* ------------------------------------------- */
/* FOOTER
/* ------------------------------------------- */
.container-6 {
display: grid;
grid-template-rows: min-content;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.footer {
background-color: #051d20;
grid-column: full-start / full-end;
padding: 8rem; }
.footer__list {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
grid-gap: 2rem;
align-items: center; }
.footer__link:link, .footer__link:visited {
font-size: 1.4rem;
color: #fff;
text-decoration: none;
font-family: 'Josefin Sans';
text-transform: uppercase;
text-align: center;
padding: 1.5rem;
display: block;
transition: all .2s; }
.footer__link:hover, .footer__link:active {
background-color: rgba(255, 255, 255, 0.05);
transform: translateY(-0.3rem); }
.footer__copyright {
font-size: 1.4rem;
color: #eee;
margin-top: 6rem;
text-align: center; }
/* ------------------------------------------- */
/* HEADER
/* ------------------------------------------- */
.container-1 {
display: grid;
grid-template-rows: 80vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
.header {
grid-column: full-start / full-end;
background-image: linear-gradient(rgba(9, 56, 62, 0.63), rgba(5, 29, 32, 0.83)), url(../images/header.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
padding: 20vh;
z-index: 2;
display: grid;
grid-row-gap: 1.5rem;
grid-template-rows: 1fr min-content minmax(6rem, min-content) 1fr;
grid-template-columns: minmax(min-content, max-content);
justify-content: center; }
@media only screen and (max-width: 50em) {
.header {
grid-column: 1 / -1; } }
@media only screen and (max-width: 37.5em) {
.header {
padding: 5rem; } }
.header__heading {
color: #fff;
font-size: 7.5rem;
font-weight: 300;
font-family: 'Josefin Sans';
text-transform: uppercase;
text-align: center; }
@media only screen and (max-width: 37.5em) {
.header__heading {
font-size: 4.5rem; } }
.header__button {
justify-self: center;
margin-left: 2.5rem; }
/* ------------------------------------------- */
/* NAVIGATION
/* ------------------------------------------- */
.navigation__checkbox {
display: none; }
.navigation__button {
background-color: #fff;
height: 7rem;
width: 7rem;
position: fixed;
top: 6rem;
right: 6rem;
border-radius: 50%;
z-index: 2000;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer; }
@media (max-width: 56.25em) {
.navigation__button {
top: 4rem;
right: 4rem; } }
@media (max-width: 37.5em) {
.navigation__button {
top: 3.5rem;
right: 3.5rem; } }
.navigation__background {
height: 6rem;
width: 6rem;
border-radius: 50%;
position: fixed;
top: 6.5rem;
right: 6.5rem;
background-image: radial-gradient(rgba(9, 56, 62, 0.9), rgba(5, 29, 32, 0.9));
z-index: 1000;
-webkit-transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
@media (max-width: 56.25em) {
.navigation__background {
top: 4.5rem;
right: 4.5rem; } }
@media (max-width: 37.5em) {
.navigation__background {
top: 3.5rem;
right: 3.5rem; } }
.navigation__nav {
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 1500;
opacity: 0;
width: 0;
-webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
transition: all 0.8s all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.navigation__list {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
list-style: none;
text-align: center;
width: 100%; }
.navigation__item {
margin: 1rem; }
.navigation__link:link, .navigation__link:visited {
display: inline-block;
font-size: 3rem;
font-weight: 300;
padding: 1rem 2rem;
color: #fff;
text-decoration: none;
text-transform: uppercase;
background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
background-size: 228%;
transition: all .4s; }
.navigation__link:hover, .navigation__link:active {
background-position: 100%;
color: #0b454d;
transform: translateX(1rem); }
.navigation__span-num {
margin-right: 1.5rem;
display: inline-block; }
.navigation__checkbox:checked ~ .navigation__background {
transform: scale(80); }
.navigation__checkbox:checked ~ .navigation__nav {
opacity: 1;
width: 100%; }
.navigation__icon {
position: relative;
margin-top: 3.5rem; }
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
width: 3rem;
height: 2px;
background-color: #333;
display: inline-block; }
.navigation__icon::before, .navigation__icon::after {
content: "";
position: absolute;
left: 0;
transition: all .2s; }
.navigation__icon::before {
top: -.8rem; }
.navigation__icon::after {
top: .8rem; }
.navigation__button:hover .navigation__icon::before {
top: -1rem; }
.navigation__button:hover .navigation__icon::after {
top: 1rem; }
.navigation__checkbox:checked + .navigation__button .navigation__icon {
background-color: transparent; }
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
top: 0;
transform: rotate(45deg); }
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
top: 0;
transform: rotate(-45deg); }
/* - PAGES FOLDER FILES - */
/* ------------------------------------------- */
/* ABOUT US | SECTION | HOME PAGE
/* ------------------------------------------- */
.section-about {
grid-column: center-start / center-end;
display: grid; }
.section-about__heading {
text-align: center;
font-size: 3.5rem;
text-transform: uppercase; }
.section-about__text {
display: grid;
grid-template-columns: 1fr max-content;
grid-row-gap: 1.5rem;
grid-column-gap: 2.5rem;
text-align: center;
padding: 0 5rem; }
/* ------------------------------------------- */
/* PLACES OF INTEREST | SECTION | HOME PAGE
/* ------------------------------------------- */
.section-poi {
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(60rem, 1fr)); }
/* ----------------------------------------------------- */
/* MISCELLANEOUS PLACES OF INTEREST | SECTION | HOME PAGE
/* ----------------------------------------------------- */
.section-m-poi {
display: grid;
grid-column: center-start / center-end;
grid-template-columns: repeat(auto-fit, minmax(60rem, 1fr)); }
/* ----------------------------------------------------- */
/* NYC QUOTE | SECTION | HOME PAGE
/* ----------------------------------------------------- */
/*.container-7 {
display: grid;
grid-template-rows: 60vh;
grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end] ) [center-end] minmax(6rem, 1fr) [full-end];
} */
.section-quote {
display: grid;
grid-template-rows: repeat(6, 5vw);
grid-template-columns: repeat(24, 5vw);
overflow-x: hidden; }
.section-quote__text {
font-weight: 300;
font-size: 3.6rem;
display: grid;
grid-row: 2 / 3;
grid-column: 4 / 20; }
@media only screen and (max-width: 86.875em) {
.section-quote__text {
grid-column: 2 / 21; } }
@media only screen and (max-width: 37.5em) {
.section-quote__text {
font-size: 1.4rem;
padding: 0 6rem; } }
.section-quote__name {
font-weight: 300;
font-family: 'Josefin Sans';
display: grid;
grid-row: 3 / 4;
grid-column: 18 / 21;
font-size: 1.8rem; }
@media only screen and (max-width: 50em) {
.section-quote__name {
grid-row: 5 / 6;
grid-column: 2 / 5; } }
@media only screen and (max-width: 37.5em) {
.section-quote__name {
font-size: 1.3rem;
grid-column: 10 / 14; } }
.section-quote__img {
display: grid;
grid-row: 4 / 9;
grid-column: 14 / -1; }
@media only screen and (max-width: 37.5em) {
.section-quote__img {
max-width: 200%;
max-height: 200%;
grid-column: 1 / -1; } } | 0.345878 | 0.049154 |
input.inputText,
input.inputPassword,
input.inputSearch,
input.inputDate,
textarea {
color: #666;
border-color: #999 #bbb #bbb #bbb;
border-style: solid;
border-width: 1px;
padding: 3px 4px;
margin: 0;
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#fff, #cecece);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#cecece), to(#fff));
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
textarea {
line-height: 1.5;
}
input.inputText:focus,
input.inputPassword:focus,
input.inputSearch:focus,
input.inputDate:focus,
textarea:focus {
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#fff, #dedede);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#dedede), to(#fff));
-webkit-box-shadow: 0 0 3px #c2deff;
-moz-box-shadow: 0 0 3px #c2deff;
box-shadow: 0 0 3px #c2deff;
border-color: #82a7d4;
color: #000;
outline: none
}
input.inputText[disabled],
input.inputPassword[disabled],
input.inputSearch[disabled],
input.inputDate[disabled],
textarea[disabled] {
color: #999;
background-color: #f4f4f4;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#f4f4f4, #c4c4c4);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#c4c4c4), to(#f4f4f4));
}
/* Selects */
select {
margin-top: 2px;
}
option {
width: auto;
}
/* Input lists */
.inputList {
padding-bottom: 6px;
}
.inputList li {
padding-left: 24px;
position: relative;
padding-bottom: 6px;
list-style-type: none;
}
.inputList input {
position: absolute;
top: 0;
left: 0;
}
.ie6 .inputList input {
left: -24px;
}
.inputList label {
overflow: visible;
height: auto;
padding: 0;
}
/* Fieldsets and legends */
.visibleFieldset {
border: 1px solid #ddd;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
padding: 12px 12px 0 12px;
margin-bottom: 12px;
}
.visibleFieldset:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .visibleFieldset, .ie7 .visibleFieldset { zoom: 1; }
legend {
font-weight: 700;
color: #999;
}
.ie6 legend {
margin-bottom: 10px;
}
/* Paragraph */
form p { padding: 0 0 12px; }
form p:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 form p, .ie7 form p { zoom: 1; }
/* Labels */
label,
.label {
display: block;
padding-bottom: 2px;
height: 18px;
overflow: hidden;
}
/* Inline errors */
.errorArea input.inputText,
.errorArea input.inputPassword,
.errorArea input.inputSearch,
.errorArea input.inputDate,
.errorArea textarea {
border: 1px solid #d00c00;
}
.errorArea label,
.errorArea .label {
color: #d00c00;
}
.errorArea input.inputText:focus,
.errorArea input.inputPassword:focus,
.errorArea input.inputSearch:focus,
.errorArea input.inputDate:focus {
-webkit-box-shadow: 0 0 3px #d00c00;
-moz-box-shadow: 0 0 3px #d00c00;
box-shadow: 0 0 3px #d00c00;
}
.errorArea .inlineError,
.errorArea .formError {
font-size: 11px;
line-height: 1.636;
color: #d00c00;
display: block;
height: 18px;
overflow: hidden;
white-space: nowrap;
clear: left;
text-overflow: ellipsis;
}
/* Help texts */
.helpTxt {
font-size: 11px;
line-height: 1.636;
color: #999;
display: block;
height: 18px;
overflow: hidden;
white-space: nowrap;
clear: left;
text-overflow: ellipsis;
}
/* Form grid control */
/* One-fourth width */
.tinyInput input.inputText,
.tinyInput input.inputPassword,
.tinyInput input.tinyInput,
.tinyInput input.inputDate {
width: 16px;
}
.tinyInput select,
.alignBlocks p.tinyInput,
.alignFields p.tinyInput,
.alignFields .tinyInput .helpTxt {
width: 26px;
}
/* Half width */
.smallInput input.inputText,
.smallInput input.inputPassword,
.smallInput input.inputSearch,
.smallInput input.inputDate {
width: 52px;
}
.smallInput select,
.alignBlocks p.smallInput,
.alignFields p.smallInput,
.alignFields .smallInput .helpTxt {
width: 62px;
}
/* Normal width */
input.inputText,
input.inputPassword,
input.inputSearch,
input.inputDate {
width: 124px;
}
select,
.alignBlocks p,
.alignFields p,
.alignFields p .helpTxt,
.horizontal label,
.horizontal .label,
.horizontal .oneLiner :first-child label,
.horizontal .oneLiner :first-child .label,
.horizontal .oneLiner .firstChild label,
.horizontal .oneLiner .firstChild .label {
width: 134px;
}
/* Two-third width */
.mediumInput input.inputText,
.mediumInput input.inputPassword,
.mediumInput input.inputSearch,
.mediumInput input.inputDate {
width: 196px;
}
.mediumInput select,
.alignBlocks p.mediumInput,
.alignFields p.mediumInput,
.alignFields .mediumInput .helpTxt {
width: 206px;
}
/* Double width */
.bigInput input.inputText,
.bigInput input.inputPassword,
.bigInput input.inputSearch,
.bigInput input.inputDate,
textarea {
width: 268px;
}
.bigInput select,
.alignBlocks p.bigInput,
.alignFields p.bigInput,
.alignFields .bigInput .helpTxt {
width: 278px;
}
/* Left padding (horizontal) */
.horizontal .alignBlocks,
.horizontal .alignFields,
.horizontal .alignButtons,
.horizontal .helpTxt,
.horizontal .inlineError,
.horizontal .formError {
padding-left: 134px; /* This value should be the same as the width value in "Normal width" */
}
/* Left margin (horizontal) */
.horizontal input.inputSubmit,
.horizontal input.inputButton,
.horizontal button,
.horizontal a.button {
margin-left: 134px; /* This value should be the same as the width value in "Normal width" */
}
/* Maximum width for inputlist (horizontal) */
.horizontal .inputList li label {
width: 278px; /* This value should be the same as the width value in "Double width" */
}
/* Floating elements */
/* Floating blocks */
.alignBlocks {
position: relative;
left: -5px;
padding-bottom: 12px;
}
.alignBlocks:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignBlocks, .ie7 .alignBlocks { zoom: 1; }
.alignBlocks p {
padding: 0 5px;
overflow: hidden;
float: left;
}
/* Floating fields */
.alignFields {
position: relative;
padding-bottom: 12px;
}
.alignFields:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignFields, .ie7 .alignFields { zoom: 1; }
.alignFields label {
position: absolute;
top: 0;
left: 0;
}
.alignFields input,
.alignFields select {
float: left;
}
.ie6 .alignFields input,
.ie6 .alignFields select,
.ie7 .alignFields input,
.ie7 .alignFields select {
float: none;
}
.alignFields p {
padding: 20px 12px 0 0;
float: left;
}
/* Floating buttons */
.alignButtons {
padding-bottom: 12px;
}
.alignButtons:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignButtons, .ie7 .alignButtons { zoom: 1; }
.alignButtons p {
float: left;
padding-right: 4px;
padding-bottom: 0;
}
/* Oneliners */
.oneLiner {
padding-bottom: 12px;
}
.oneLiner:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .oneLiner, .ie7 .oneLiner { zoom: 1; }
.oneLiner p {
float: left;
padding: 0 6px 0 0;
}
.oneLiner label {
float: left;
padding-right: 6px;
}
.oneLiner input,
.oneLiner select {
float: left;
}
.oneLiner .inputList {
padding-bottom: 0;
}
.ie6 .oneLiner .inputList input {
left: 0;
}
.oneLiner .inputList li {
float: left;
padding-bottom: 0;
}
/* Horizontal */
.horizontal label,
.horizontal .label {
float: left;
}
/* Floating blocks */
.horizontal .alignBlocks .helpTxt,
.horizontal .alignBlocks .inlineError,
.horizontal .alignBlocks .formError {
padding-left: 0;
}
/* Floating fields */
.horizontal .alignFields .helpTxt,
.horizontal .alignFields .inlineError,
.horizontal .alignFields .formError {
padding-left: 0;
}
.horizontal .alignFields p {
padding-top: 0;
}
.horizontal .alignFields label {
top: 2px;
}
/* Floating buttons */
.horizontal .alignButtons input.inputSubmit,
.horizontal .alignButtons input.inputButton,
.horizontal .alignButtons button,
.horizontal .alignButtons a.button,
.horizontal .alignFields input.inputSubmit,
.horizontal .alignFields input.inputButton,
.horizontal .alignFields button,
.horizontal .alignFields a.button,
.horizontal .alignBlocks input.inputSubmit,
.horizontal .alignBlocks input.inputButton,
.horizontal .alignBlocks button,
.horizontal .alignBlocks a.button {
margin-left: 0;
}
/* Inputlists */
.horizontal .inputList:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .horizontal .inputList, .ie7 .horizontal .inputList { zoom: 1; }
.horizontal .inputList ul {
float: left;
}
.horizontal .inputList li label {
float: none;
}
/* Oneliners */
.horizontal .oneLiner label,
.horizontal .oneLiner .label {
width: auto;
padding: 2px 6px 2px 0;
}
.horizontal .oneLiner :first-child label,
.horizontal .oneLiner :first-child .label,
.horizontal .oneLiner .firstChild label,
.horizontal .oneLiner .firstChild .label {
padding: 2px 0;
}
.horizontal .formSectionContent .oneLiner :first-child label,
.horizontal .formSectionContent .oneLiner :first-child .label,
.horizontal .formSectionContent .oneLiner .firstChild label,
.horizontal .formSectionContent .oneLiner .firstChild .label {
width: auto;
padding: 2px 6px 2px 0;
}
.horizontal .oneLiner input.inputSubmit,
.horizontal .oneLiner input.inputButton,
.horizontal .oneLiner button,
.horizontal .oneLiner a.button {
margin-left: 0;
}
.horizontal .oneLiner .inputList {
float: left;
}
.horizontal .oneLiner .inputList li label {
width: auto;
}
/* Form sections */
.formSection {
padding: 0 0 8px 0;
}
.formSection:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .formSection, .ie7 .formSection { zoom: 1; }
.formSection p {
padding-bottom: 2px;
}
.formSection .oneLiner p {
padding-bottom: 0;
}
.horizontal .formSectionContent {
padding-bottom: 4px;
float: left;
}
.horizontal .formSectionContent .alignBlocks,
.horizontal .formSectionContent .alignFields,
.horizontal .formSectionContent .alignButtons,
.horizontal .formSectionContent .helpTxt,
.horizontal .formSectionContent .inlineError,
.horizontal .formSectionContent .formError {
padding-left: 0;
}
/* Messages */
.message {
padding: 12px 12px 0 12px;
border: 1px solid #ddd;
margin-bottom: 24px;
border-color: #ddd;
color: #333;
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#fff, #f8f8f8);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#fff));
-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
}
.message .close:link,
.message .close:visited {
display: block;
position: absolute;
overflow: hidden;
padding: 4px;
top: 4px;
right: 4px;
height: 8px;
width: 8px;
border: 0;
text-indent: -9999px;
background: url(../images/close.png) no-repeat 4px 4px;
opacity: .50;
filter: alpha(opacity=50);
-ms-filter: "alpha(opacity=50)";
-khtml-opacity: .50;
-moz-opacity: .50;
}
.message .close:hover,
.message .close:active,
.message .close:focus {
opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "alpha(opacity=100)";
-khtml-opacity: 1;
-moz-opacity: 1;
}
/* Error messages */
.error {
border-color: #8b0800;
color: #fae7e6;
background-color: #d00c00;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#d00c00, #b80900);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b80900), to(#d00c00));
}
.error h1,
.error h2,
.error h3,
.error h4 {
color: #fff;
}
.error a {
color: #fff;
border-color: #df5c54;
}
.error a:link,
.error a:visited {
color: #fff;
border-color: #df5c54;
}
.error a:hover,
.error a:active,
.error a:focus {
color: #fff;
border-color: #fff;
}
/* Success messages */
.success {
border-color: #4c721f;
color: #f1f7eb;
background-color: #72aa2e;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#72aa2e, #65a01c);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#65a01c), to(#72aa2e));
}
.success h1,
.success h2,
.success h3,
.success h4 {
color: #fff;
}
.success a {
color: #fff;
border-color: #a0c673;
}
.success a:link,
.success a:visited {
color: #fff;
border-color: #a0c673;
}
.success a:hover,
.success a:active,
.success a:focus {
color: #fff;
border-color: #fff;
}
/* Notice messages */
.notice {
border-color: #e6901e;
color: #332d1c;
background-color: #ffe38a;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#ffe38a, #ffce58);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffce58), to(#ffe38a));
}
.notice h1,
.notice h2,
.notice h3,
.notice h4 {
color: #000;
}
.notice a {
color: #000;
border-color: #ab985d;
}
.notice a:link,
.notice a:visited {
color: #000;
border-color: #ab985d;
}
.notice a:hover,
.notice a:active,
.notice a:focus {
color: #000;
border-color: #000;
}
/* Buttons */
input.inputSubmit,
input.inputButton,
button,
a.button,
a.button:link,
a.button:visited {
font: 700 11px/1.636 Arial, sans-serif;
color: #fff;
background: #366eac;
background: -moz-linear-gradient(top, #6facf1 0%, #366eac 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6facf1), color-stop(100%,#366eac));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6FACF1', endColorstr='#366EAC',GradientType=0 )chroma(color=#000000);
border: 1px solid #366eac;
padding: 3px;
cursor: pointer;
overflow: visible;
white-space: nowrap;
text-align: center;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin: 0;
}
button::-moz-focus-inner{ padding: 0; border: 0 }
@media screen and (-webkit-min-device-pixel-ratio:0) {
input.inputSubmit,
input.inputButton,
button {
padding: 2px 3px;
}
}
.ie6 input.inputSubmit,
.ie6 input.inputButton,
.ie6 button {
margin-top: -1px;
padding: 1px 3px;
}
.ie7 input.inputSubmit,
.ie7 input.inputButton,
.ie7 button {
padding: 1px 3px 0 3px;
}
.ie8 input.inputSubmit,
.ie8 input.inputButton,
.ie8 button {
padding: 2px 3px;
}
input.inputSubmit:hover,
input.inputButton:hover,
input.buttonHover,
button:hover,
button.buttonHover,
a.button:hover,
a.button:active,
a.button:focus {
background: #2d5c91;
background: -moz-linear-gradient(top, #366eac 0%, #6facf1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#366eac), color-stop(100%,#6facf1));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#366EAC', endColorstr='#6FACF1',GradientType=0 )chroma(color=#000000);
}
input.inputSubmit[disabled="disabled"],
input.inputButton[disabled="disabled"],
button[disabled="disabled"],
a.disabledButton {
cursor: default;
opacity: .50;
filter: alpha(opacity=50);
-ms-filter: "alpha(opacity=50)";
-khtml-opacity: .50;
-moz-opacity: .50;
}
a.button,
a.button:link,
a.button:visited {
float: left;
text-decoration: none;
padding: 2px 6px;
} | Core/Layout/Css/forms.css |
input.inputText,
input.inputPassword,
input.inputSearch,
input.inputDate,
textarea {
color: #666;
border-color: #999 #bbb #bbb #bbb;
border-style: solid;
border-width: 1px;
padding: 3px 4px;
margin: 0;
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#fff, #cecece);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#cecece), to(#fff));
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
textarea {
line-height: 1.5;
}
input.inputText:focus,
input.inputPassword:focus,
input.inputSearch:focus,
input.inputDate:focus,
textarea:focus {
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#fff, #dedede);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#dedede), to(#fff));
-webkit-box-shadow: 0 0 3px #c2deff;
-moz-box-shadow: 0 0 3px #c2deff;
box-shadow: 0 0 3px #c2deff;
border-color: #82a7d4;
color: #000;
outline: none
}
input.inputText[disabled],
input.inputPassword[disabled],
input.inputSearch[disabled],
input.inputDate[disabled],
textarea[disabled] {
color: #999;
background-color: #f4f4f4;
background-image: none;
background-image: -moz-linear-gradient(0% 3px 90deg,#f4f4f4, #c4c4c4);
background-image: -webkit-gradient(linear, 0% 0%, 0% 3, from(#c4c4c4), to(#f4f4f4));
}
/* Selects */
select {
margin-top: 2px;
}
option {
width: auto;
}
/* Input lists */
.inputList {
padding-bottom: 6px;
}
.inputList li {
padding-left: 24px;
position: relative;
padding-bottom: 6px;
list-style-type: none;
}
.inputList input {
position: absolute;
top: 0;
left: 0;
}
.ie6 .inputList input {
left: -24px;
}
.inputList label {
overflow: visible;
height: auto;
padding: 0;
}
/* Fieldsets and legends */
.visibleFieldset {
border: 1px solid #ddd;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
padding: 12px 12px 0 12px;
margin-bottom: 12px;
}
.visibleFieldset:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .visibleFieldset, .ie7 .visibleFieldset { zoom: 1; }
legend {
font-weight: 700;
color: #999;
}
.ie6 legend {
margin-bottom: 10px;
}
/* Paragraph */
form p { padding: 0 0 12px; }
form p:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 form p, .ie7 form p { zoom: 1; }
/* Labels */
label,
.label {
display: block;
padding-bottom: 2px;
height: 18px;
overflow: hidden;
}
/* Inline errors */
.errorArea input.inputText,
.errorArea input.inputPassword,
.errorArea input.inputSearch,
.errorArea input.inputDate,
.errorArea textarea {
border: 1px solid #d00c00;
}
.errorArea label,
.errorArea .label {
color: #d00c00;
}
.errorArea input.inputText:focus,
.errorArea input.inputPassword:focus,
.errorArea input.inputSearch:focus,
.errorArea input.inputDate:focus {
-webkit-box-shadow: 0 0 3px #d00c00;
-moz-box-shadow: 0 0 3px #d00c00;
box-shadow: 0 0 3px #d00c00;
}
.errorArea .inlineError,
.errorArea .formError {
font-size: 11px;
line-height: 1.636;
color: #d00c00;
display: block;
height: 18px;
overflow: hidden;
white-space: nowrap;
clear: left;
text-overflow: ellipsis;
}
/* Help texts */
.helpTxt {
font-size: 11px;
line-height: 1.636;
color: #999;
display: block;
height: 18px;
overflow: hidden;
white-space: nowrap;
clear: left;
text-overflow: ellipsis;
}
/* Form grid control */
/* One-fourth width */
.tinyInput input.inputText,
.tinyInput input.inputPassword,
.tinyInput input.tinyInput,
.tinyInput input.inputDate {
width: 16px;
}
.tinyInput select,
.alignBlocks p.tinyInput,
.alignFields p.tinyInput,
.alignFields .tinyInput .helpTxt {
width: 26px;
}
/* Half width */
.smallInput input.inputText,
.smallInput input.inputPassword,
.smallInput input.inputSearch,
.smallInput input.inputDate {
width: 52px;
}
.smallInput select,
.alignBlocks p.smallInput,
.alignFields p.smallInput,
.alignFields .smallInput .helpTxt {
width: 62px;
}
/* Normal width */
input.inputText,
input.inputPassword,
input.inputSearch,
input.inputDate {
width: 124px;
}
select,
.alignBlocks p,
.alignFields p,
.alignFields p .helpTxt,
.horizontal label,
.horizontal .label,
.horizontal .oneLiner :first-child label,
.horizontal .oneLiner :first-child .label,
.horizontal .oneLiner .firstChild label,
.horizontal .oneLiner .firstChild .label {
width: 134px;
}
/* Two-third width */
.mediumInput input.inputText,
.mediumInput input.inputPassword,
.mediumInput input.inputSearch,
.mediumInput input.inputDate {
width: 196px;
}
.mediumInput select,
.alignBlocks p.mediumInput,
.alignFields p.mediumInput,
.alignFields .mediumInput .helpTxt {
width: 206px;
}
/* Double width */
.bigInput input.inputText,
.bigInput input.inputPassword,
.bigInput input.inputSearch,
.bigInput input.inputDate,
textarea {
width: 268px;
}
.bigInput select,
.alignBlocks p.bigInput,
.alignFields p.bigInput,
.alignFields .bigInput .helpTxt {
width: 278px;
}
/* Left padding (horizontal) */
.horizontal .alignBlocks,
.horizontal .alignFields,
.horizontal .alignButtons,
.horizontal .helpTxt,
.horizontal .inlineError,
.horizontal .formError {
padding-left: 134px; /* This value should be the same as the width value in "Normal width" */
}
/* Left margin (horizontal) */
.horizontal input.inputSubmit,
.horizontal input.inputButton,
.horizontal button,
.horizontal a.button {
margin-left: 134px; /* This value should be the same as the width value in "Normal width" */
}
/* Maximum width for inputlist (horizontal) */
.horizontal .inputList li label {
width: 278px; /* This value should be the same as the width value in "Double width" */
}
/* Floating elements */
/* Floating blocks */
.alignBlocks {
position: relative;
left: -5px;
padding-bottom: 12px;
}
.alignBlocks:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignBlocks, .ie7 .alignBlocks { zoom: 1; }
.alignBlocks p {
padding: 0 5px;
overflow: hidden;
float: left;
}
/* Floating fields */
.alignFields {
position: relative;
padding-bottom: 12px;
}
.alignFields:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignFields, .ie7 .alignFields { zoom: 1; }
.alignFields label {
position: absolute;
top: 0;
left: 0;
}
.alignFields input,
.alignFields select {
float: left;
}
.ie6 .alignFields input,
.ie6 .alignFields select,
.ie7 .alignFields input,
.ie7 .alignFields select {
float: none;
}
.alignFields p {
padding: 20px 12px 0 0;
float: left;
}
/* Floating buttons */
.alignButtons {
padding-bottom: 12px;
}
.alignButtons:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .alignButtons, .ie7 .alignButtons { zoom: 1; }
.alignButtons p {
float: left;
padding-right: 4px;
padding-bottom: 0;
}
/* Oneliners */
.oneLiner {
padding-bottom: 12px;
}
.oneLiner:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .oneLiner, .ie7 .oneLiner { zoom: 1; }
.oneLiner p {
float: left;
padding: 0 6px 0 0;
}
.oneLiner label {
float: left;
padding-right: 6px;
}
.oneLiner input,
.oneLiner select {
float: left;
}
.oneLiner .inputList {
padding-bottom: 0;
}
.ie6 .oneLiner .inputList input {
left: 0;
}
.oneLiner .inputList li {
float: left;
padding-bottom: 0;
}
/* Horizontal */
.horizontal label,
.horizontal .label {
float: left;
}
/* Floating blocks */
.horizontal .alignBlocks .helpTxt,
.horizontal .alignBlocks .inlineError,
.horizontal .alignBlocks .formError {
padding-left: 0;
}
/* Floating fields */
.horizontal .alignFields .helpTxt,
.horizontal .alignFields .inlineError,
.horizontal .alignFields .formError {
padding-left: 0;
}
.horizontal .alignFields p {
padding-top: 0;
}
.horizontal .alignFields label {
top: 2px;
}
/* Floating buttons */
.horizontal .alignButtons input.inputSubmit,
.horizontal .alignButtons input.inputButton,
.horizontal .alignButtons button,
.horizontal .alignButtons a.button,
.horizontal .alignFields input.inputSubmit,
.horizontal .alignFields input.inputButton,
.horizontal .alignFields button,
.horizontal .alignFields a.button,
.horizontal .alignBlocks input.inputSubmit,
.horizontal .alignBlocks input.inputButton,
.horizontal .alignBlocks button,
.horizontal .alignBlocks a.button {
margin-left: 0;
}
/* Inputlists */
.horizontal .inputList:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .horizontal .inputList, .ie7 .horizontal .inputList { zoom: 1; }
.horizontal .inputList ul {
float: left;
}
.horizontal .inputList li label {
float: none;
}
/* Oneliners */
.horizontal .oneLiner label,
.horizontal .oneLiner .label {
width: auto;
padding: 2px 6px 2px 0;
}
.horizontal .oneLiner :first-child label,
.horizontal .oneLiner :first-child .label,
.horizontal .oneLiner .firstChild label,
.horizontal .oneLiner .firstChild .label {
padding: 2px 0;
}
.horizontal .formSectionContent .oneLiner :first-child label,
.horizontal .formSectionContent .oneLiner :first-child .label,
.horizontal .formSectionContent .oneLiner .firstChild label,
.horizontal .formSectionContent .oneLiner .firstChild .label {
width: auto;
padding: 2px 6px 2px 0;
}
.horizontal .oneLiner input.inputSubmit,
.horizontal .oneLiner input.inputButton,
.horizontal .oneLiner button,
.horizontal .oneLiner a.button {
margin-left: 0;
}
.horizontal .oneLiner .inputList {
float: left;
}
.horizontal .oneLiner .inputList li label {
width: auto;
}
/* Form sections */
.formSection {
padding: 0 0 8px 0;
}
.formSection:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .formSection, .ie7 .formSection { zoom: 1; }
.formSection p {
padding-bottom: 2px;
}
.formSection .oneLiner p {
padding-bottom: 0;
}
.horizontal .formSectionContent {
padding-bottom: 4px;
float: left;
}
.horizontal .formSectionContent .alignBlocks,
.horizontal .formSectionContent .alignFields,
.horizontal .formSectionContent .alignButtons,
.horizontal .formSectionContent .helpTxt,
.horizontal .formSectionContent .inlineError,
.horizontal .formSectionContent .formError {
padding-left: 0;
}
/* Messages */
.message {
padding: 12px 12px 0 12px;
border: 1px solid #ddd;
margin-bottom: 24px;
border-color: #ddd;
color: #333;
background-color: #fff;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#fff, #f8f8f8);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#fff));
-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
}
.message .close:link,
.message .close:visited {
display: block;
position: absolute;
overflow: hidden;
padding: 4px;
top: 4px;
right: 4px;
height: 8px;
width: 8px;
border: 0;
text-indent: -9999px;
background: url(../images/close.png) no-repeat 4px 4px;
opacity: .50;
filter: alpha(opacity=50);
-ms-filter: "alpha(opacity=50)";
-khtml-opacity: .50;
-moz-opacity: .50;
}
.message .close:hover,
.message .close:active,
.message .close:focus {
opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "alpha(opacity=100)";
-khtml-opacity: 1;
-moz-opacity: 1;
}
/* Error messages */
.error {
border-color: #8b0800;
color: #fae7e6;
background-color: #d00c00;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#d00c00, #b80900);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b80900), to(#d00c00));
}
.error h1,
.error h2,
.error h3,
.error h4 {
color: #fff;
}
.error a {
color: #fff;
border-color: #df5c54;
}
.error a:link,
.error a:visited {
color: #fff;
border-color: #df5c54;
}
.error a:hover,
.error a:active,
.error a:focus {
color: #fff;
border-color: #fff;
}
/* Success messages */
.success {
border-color: #4c721f;
color: #f1f7eb;
background-color: #72aa2e;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#72aa2e, #65a01c);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#65a01c), to(#72aa2e));
}
.success h1,
.success h2,
.success h3,
.success h4 {
color: #fff;
}
.success a {
color: #fff;
border-color: #a0c673;
}
.success a:link,
.success a:visited {
color: #fff;
border-color: #a0c673;
}
.success a:hover,
.success a:active,
.success a:focus {
color: #fff;
border-color: #fff;
}
/* Notice messages */
.notice {
border-color: #e6901e;
color: #332d1c;
background-color: #ffe38a;
background-image: none;
background-image: -moz-linear-gradient(0% 100% 90deg,#ffe38a, #ffce58);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffce58), to(#ffe38a));
}
.notice h1,
.notice h2,
.notice h3,
.notice h4 {
color: #000;
}
.notice a {
color: #000;
border-color: #ab985d;
}
.notice a:link,
.notice a:visited {
color: #000;
border-color: #ab985d;
}
.notice a:hover,
.notice a:active,
.notice a:focus {
color: #000;
border-color: #000;
}
/* Buttons */
input.inputSubmit,
input.inputButton,
button,
a.button,
a.button:link,
a.button:visited {
font: 700 11px/1.636 Arial, sans-serif;
color: #fff;
background: #366eac;
background: -moz-linear-gradient(top, #6facf1 0%, #366eac 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6facf1), color-stop(100%,#366eac));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6FACF1', endColorstr='#366EAC',GradientType=0 )chroma(color=#000000);
border: 1px solid #366eac;
padding: 3px;
cursor: pointer;
overflow: visible;
white-space: nowrap;
text-align: center;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
margin: 0;
}
button::-moz-focus-inner{ padding: 0; border: 0 }
@media screen and (-webkit-min-device-pixel-ratio:0) {
input.inputSubmit,
input.inputButton,
button {
padding: 2px 3px;
}
}
.ie6 input.inputSubmit,
.ie6 input.inputButton,
.ie6 button {
margin-top: -1px;
padding: 1px 3px;
}
.ie7 input.inputSubmit,
.ie7 input.inputButton,
.ie7 button {
padding: 1px 3px 0 3px;
}
.ie8 input.inputSubmit,
.ie8 input.inputButton,
.ie8 button {
padding: 2px 3px;
}
input.inputSubmit:hover,
input.inputButton:hover,
input.buttonHover,
button:hover,
button.buttonHover,
a.button:hover,
a.button:active,
a.button:focus {
background: #2d5c91;
background: -moz-linear-gradient(top, #366eac 0%, #6facf1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#366eac), color-stop(100%,#6facf1));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#366EAC', endColorstr='#6FACF1',GradientType=0 )chroma(color=#000000);
}
input.inputSubmit[disabled="disabled"],
input.inputButton[disabled="disabled"],
button[disabled="disabled"],
a.disabledButton {
cursor: default;
opacity: .50;
filter: alpha(opacity=50);
-ms-filter: "alpha(opacity=50)";
-khtml-opacity: .50;
-moz-opacity: .50;
}
a.button,
a.button:link,
a.button:visited {
float: left;
text-decoration: none;
padding: 2px 6px;
} | 0.339828 | 0.113703 |
* {
font-family: 'Nunito', sans-serif;
}
html {
--color-primary-dark: #E35602;
--color-primary-regular: #F75C00;
--color-primary-ligth: #F37214;
--color-secondary-dark: #001634;
--color-secondary-regular: #001A3E;
--color-secondary-ligth: #00265C;
--color-tertiary-dark: #13947B;
--color-tertiary-regular: #2ED9B8;
--color-tertiary-ligth: #67DBC5;
--color-white-dark: #F9F9F9;
--color-white-regular: #F7F6F5;
--color-white-ligth: #F4F0EB;
--color-black-dark: #151515;
--color-black-regular: #242424;
--color-error: #E77F70;
--color-sucess: #BFFE58;
--color-warning: #F9D75F;
color: var(--color-white-ligth);
}
* {
font-family: 'Nunito', sans-serif;
}
/* HEADER--------------------------------------------------------- */
.nav-item {
margin-left: 20px;
}
hr {
width: 920px;
color: #fff;
}
html {
overflow-x: hidden;
}
.herosection {
background-color: var(--color-primary-ligth);
color: #fff;
}
.herosection section article div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 700px;
}
.herosection section article div a {
width: 400px;
text-decoration: none;
}
.herosection section article div a button {
width: 300px;
}
.steps {
background-color: var(--color-secondary-ligth);
color: #fff;
}
.steps button {
font-size: 24px;
color: var(--color-white-regular);
background-color: var(--color-primary-regular);
padding: 15px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
width: 305px;
height: 49px;
margin: 50px auto;
}
.steps a {
text-decoration: none;
}
.services {
background-color: var(--color-tertiary-ligth);
color: #fff;
height: 680px;
}
.dimension_img {
width: 530px;
height: 339px;
margin: 40px;
margin-left: 150px;
}
.dimension_text {
font-weight: 700;
font-size: 76px;
color: var(--color-white-regular);
width: 700px;
margin-top: 10px;
margin-left: 30px;
}
.dimension_btn {
font-size: 24px;
color: var(--color-white-regular);
background-color: var(--color-secondary-ligth);
padding: 15px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 256px;
height: 56px;
}
.dimension_btn2 {
font-size: 24px;
color: var(--color-white-regular);
background-color: transparent;
border: 2px solid var(--color-tertiary-regular);
padding: 19px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 256px;
height: 56px;
}
.dimension_text_nav {
font-family: 'Roboto' sans-serif;
font-size: 20px;
line-height: 35px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
background-color: var(--color-primary-regular);
}
.dimension_text_nav a {
color: #fff !important;
}
/* inicio SERVICOS--------------------------------------------------------- */
.conheca_servicos {
width: 80%;
height: 100vh;
padding: 0, 8%;
margin: 0 auto;
}
.conheca_servicos div h2 {
font-weight: 700;
font-size: 57px;
color: var(--color-white-regular);
font-family: 'Nunito';
color: var(--color-secondary-regular);
}
.conheca_servicos h2 {
text-align: center;
padding-top: 10%;
font-family: 'Roboto',sans-serif;
}
.row_servicos {
display: -ms-grid;
display: grid;
-ms-grid-columns: (minmax(170px, 1fr))[auto-fit];
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
grid-gap: 30px;
}
/* Como funciona */
.como_funciona {
width: 1000px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: 200px;
margin-top: 50px;
}
.como_funciona > .row > .dimension {
margin-top: 62px;
}
.como_funciona div > p {
width: 300px;
font-size: 20px;
}
.como_funciona div > h2 {
margin-bottom: 20px;
}
/* */
.servico_blue img {
width: 86px;
height: 86px;
}
.servico_blue {
background-color: var(--color-secondary-ligth);
text-align: center;
padding: 25px 10px;
border-radius: 14px;
font-size: 14px;
-webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
cursor: pointer;
color: #fff;
-webkit-transform: translate(12px, 50%);
transform: translate(12px, 50%);
}
.servico_orange {
background-color: var(--color-primary-ligth);
text-align: center;
padding: 25px 10px;
border-radius: 14px;
font-size: 14px;
-webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
cursor: pointer;
color: #fff;
-webkit-transform: translate(12px, 50%);
transform: translate(12px, 50%);
}
.servico:hover {
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
color: #fff;
}
/* fim SERVICOS--------------------------------------------------------- */
/* inic---VANTAGENS------------------------------------------------------ */
.vantagens {
width: 80%;
padding: 0, 8%;
margin: 0px auto;
}
.vantagens h2 {
font-weight: 700;
font-size: 57px;
color: var(--color-white-regular);
color: var(--color-primary-regular);
}
.vantagens .cards_container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.vantagens .card {
width: 400px;
height: 300px;
border-radius: 20px;
background-color: gray;
margin-right: 70px;
left: 30px;
}
.vantagens .card .img {
height: 55%;
}
.vantagens .card .text {
height: 47%;
background-color: var(--color-secondary-ligth);
border-radius: 0px 0px 20px 20px;
margin: -1px;
color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
}
.vantagens .card .text p {
margin: 0px 10px;
width: 210px;
}
/* fim VANTAGENS--------------------------------------------------------- */
footer {
width: 100%;
min-height: 150px;
background-color: var(--color-primary-ligth);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 50px;
color: #fff;
}
footer .boxs {
max-width: 500px;
min-height: 150px;
padding: 80px;
}
footer .boxs a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
footer .boxs i {
color: var(--color-primary-ligth);
margin-top: 14px;
font-size: 40px;
}
footer .boxs .icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -85px;
}
footer .boxs .redes {
width: 67px;
height: 67px;
background-color: var(--color-white-regular);
margin: 20px;
border-radius: 20px;
}
.boxs h2 {
font-weight: 700;
font-size: 24px;
color: var(--color-white-regular);
margin-bottom: 60px;
}
.boxs ul {
margin: 10px 0px;
list-style: none;
}
.boxs a {
text-decoration: none;
color: #fff;
}
.boxs p {
text-align: justify;
cursor: pointer;
}
.footer {
width: 100%;
height: 70px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #fff3f3;
padding: 0px 2px;
}
.rodape {
font-weight: 700;
font-size: 16px;
color: var(--color-white-regular);
line-height: 170%;
margin-bottom: 12px;
text-align: center;
background-color: var(--color-secondary-regular);
color: white;
margin: 0;
}
[data-step] {
opacity: 0;
-webkit-transition: .4s;
transition: .4s;
}
[data-step="left"] {
-webkit-transform: translate3d(-50px, 0, 0);
transform: translate3d(-50px, 0, 0);
}
[data-step="right"] {
-webkit-transform: translate3d(50px, 0, 0);
transform: translate3d(50px, 0, 0);
}
[data-step="top"] {
-webkit-transform: translate3d(0, -50px, 0);
transform: translate3d(0, -50px, 0);
}
[data-step].animate {
opacity: 1;
-webkit-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
/*# sourceMappingURL=style.css.map */ | Demoday/style.css | * {
font-family: 'Nunito', sans-serif;
}
html {
--color-primary-dark: #E35602;
--color-primary-regular: #F75C00;
--color-primary-ligth: #F37214;
--color-secondary-dark: #001634;
--color-secondary-regular: #001A3E;
--color-secondary-ligth: #00265C;
--color-tertiary-dark: #13947B;
--color-tertiary-regular: #2ED9B8;
--color-tertiary-ligth: #67DBC5;
--color-white-dark: #F9F9F9;
--color-white-regular: #F7F6F5;
--color-white-ligth: #F4F0EB;
--color-black-dark: #151515;
--color-black-regular: #242424;
--color-error: #E77F70;
--color-sucess: #BFFE58;
--color-warning: #F9D75F;
color: var(--color-white-ligth);
}
* {
font-family: 'Nunito', sans-serif;
}
/* HEADER--------------------------------------------------------- */
.nav-item {
margin-left: 20px;
}
hr {
width: 920px;
color: #fff;
}
html {
overflow-x: hidden;
}
.herosection {
background-color: var(--color-primary-ligth);
color: #fff;
}
.herosection section article div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 700px;
}
.herosection section article div a {
width: 400px;
text-decoration: none;
}
.herosection section article div a button {
width: 300px;
}
.steps {
background-color: var(--color-secondary-ligth);
color: #fff;
}
.steps button {
font-size: 24px;
color: var(--color-white-regular);
background-color: var(--color-primary-regular);
padding: 15px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
width: 305px;
height: 49px;
margin: 50px auto;
}
.steps a {
text-decoration: none;
}
.services {
background-color: var(--color-tertiary-ligth);
color: #fff;
height: 680px;
}
.dimension_img {
width: 530px;
height: 339px;
margin: 40px;
margin-left: 150px;
}
.dimension_text {
font-weight: 700;
font-size: 76px;
color: var(--color-white-regular);
width: 700px;
margin-top: 10px;
margin-left: 30px;
}
.dimension_btn {
font-size: 24px;
color: var(--color-white-regular);
background-color: var(--color-secondary-ligth);
padding: 15px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 256px;
height: 56px;
}
.dimension_btn2 {
font-size: 24px;
color: var(--color-white-regular);
background-color: transparent;
border: 2px solid var(--color-tertiary-regular);
padding: 19px 24px;
margin: 20px;
border-radius: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 256px;
height: 56px;
}
.dimension_text_nav {
font-family: 'Roboto' sans-serif;
font-size: 20px;
line-height: 35px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
background-color: var(--color-primary-regular);
}
.dimension_text_nav a {
color: #fff !important;
}
/* inicio SERVICOS--------------------------------------------------------- */
.conheca_servicos {
width: 80%;
height: 100vh;
padding: 0, 8%;
margin: 0 auto;
}
.conheca_servicos div h2 {
font-weight: 700;
font-size: 57px;
color: var(--color-white-regular);
font-family: 'Nunito';
color: var(--color-secondary-regular);
}
.conheca_servicos h2 {
text-align: center;
padding-top: 10%;
font-family: 'Roboto',sans-serif;
}
.row_servicos {
display: -ms-grid;
display: grid;
-ms-grid-columns: (minmax(170px, 1fr))[auto-fit];
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
grid-gap: 30px;
}
/* Como funciona */
.como_funciona {
width: 1000px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: 200px;
margin-top: 50px;
}
.como_funciona > .row > .dimension {
margin-top: 62px;
}
.como_funciona div > p {
width: 300px;
font-size: 20px;
}
.como_funciona div > h2 {
margin-bottom: 20px;
}
/* */
.servico_blue img {
width: 86px;
height: 86px;
}
.servico_blue {
background-color: var(--color-secondary-ligth);
text-align: center;
padding: 25px 10px;
border-radius: 14px;
font-size: 14px;
-webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
cursor: pointer;
color: #fff;
-webkit-transform: translate(12px, 50%);
transform: translate(12px, 50%);
}
.servico_orange {
background-color: var(--color-primary-ligth);
text-align: center;
padding: 25px 10px;
border-radius: 14px;
font-size: 14px;
-webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 12px 0px;
cursor: pointer;
color: #fff;
-webkit-transform: translate(12px, 50%);
transform: translate(12px, 50%);
}
.servico:hover {
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
color: #fff;
}
/* fim SERVICOS--------------------------------------------------------- */
/* inic---VANTAGENS------------------------------------------------------ */
.vantagens {
width: 80%;
padding: 0, 8%;
margin: 0px auto;
}
.vantagens h2 {
font-weight: 700;
font-size: 57px;
color: var(--color-white-regular);
color: var(--color-primary-regular);
}
.vantagens .cards_container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.vantagens .card {
width: 400px;
height: 300px;
border-radius: 20px;
background-color: gray;
margin-right: 70px;
left: 30px;
}
.vantagens .card .img {
height: 55%;
}
.vantagens .card .text {
height: 47%;
background-color: var(--color-secondary-ligth);
border-radius: 0px 0px 20px 20px;
margin: -1px;
color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
}
.vantagens .card .text p {
margin: 0px 10px;
width: 210px;
}
/* fim VANTAGENS--------------------------------------------------------- */
footer {
width: 100%;
min-height: 150px;
background-color: var(--color-primary-ligth);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 50px;
color: #fff;
}
footer .boxs {
max-width: 500px;
min-height: 150px;
padding: 80px;
}
footer .boxs a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
footer .boxs i {
color: var(--color-primary-ligth);
margin-top: 14px;
font-size: 40px;
}
footer .boxs .icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -85px;
}
footer .boxs .redes {
width: 67px;
height: 67px;
background-color: var(--color-white-regular);
margin: 20px;
border-radius: 20px;
}
.boxs h2 {
font-weight: 700;
font-size: 24px;
color: var(--color-white-regular);
margin-bottom: 60px;
}
.boxs ul {
margin: 10px 0px;
list-style: none;
}
.boxs a {
text-decoration: none;
color: #fff;
}
.boxs p {
text-align: justify;
cursor: pointer;
}
.footer {
width: 100%;
height: 70px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #fff3f3;
padding: 0px 2px;
}
.rodape {
font-weight: 700;
font-size: 16px;
color: var(--color-white-regular);
line-height: 170%;
margin-bottom: 12px;
text-align: center;
background-color: var(--color-secondary-regular);
color: white;
margin: 0;
}
[data-step] {
opacity: 0;
-webkit-transition: .4s;
transition: .4s;
}
[data-step="left"] {
-webkit-transform: translate3d(-50px, 0, 0);
transform: translate3d(-50px, 0, 0);
}
[data-step="right"] {
-webkit-transform: translate3d(50px, 0, 0);
transform: translate3d(50px, 0, 0);
}
[data-step="top"] {
-webkit-transform: translate3d(0, -50px, 0);
transform: translate3d(0, -50px, 0);
}
[data-step].animate {
opacity: 1;
-webkit-transform: translate3d(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
}
/*# sourceMappingURL=style.css.map */ | 0.306838 | 0.069321 |
@media (min-width:890px) and (max-width:1440px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 30% 30% 30%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
}
@media (min-width:414px) and (max-width:890px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 45% 45%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
}
@media (min-width:100px) and (max-width:413px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 30% 30% 30%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
} | css/gallery.css | @media (min-width:890px) and (max-width:1440px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 30% 30% 30%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
}
@media (min-width:414px) and (max-width:890px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 45% 45%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
}
@media (min-width:100px) and (max-width:413px)
{
.p_f_g{
width: 100%;
margin: 0px auto;
margin-top: 40px;
display: grid;
grid-template-columns: 30% 30% 30%;
grid-column-gap: 1em;
grid-row-gap: 1em;
}
.product
{
padding: 10px 10px;
border: 1px solid w;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#p_f_div
{
width: 80%;
padding: 16px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
margin: 0px auto;
margin-top: 200px;
margin-bottom: 30px;
}
#p_f_h
{
font-size: 30px;
font-weight: bolder;
color: grey;
}
.p_i_g
{
overflow: hidden;
display: inline-block;
height: 200px;
}
.p_i_g img
{
cursor: pointer;
transition: transform .5s ease;
}
.p_i_g:hover img
{
transform: scale(1.5);
}
/*
#prs_h_f
{
color: #07c8eb;
}
*/
} | 0.203233 | 0.151184 |
body {
font-family: "Times New Roman", Times, serif;
margin: 0;
width: 100%;
}
.nav {
position: fixed;
display: block;
width: 100%;
height: 40px;
top: 0;
border-bottom: 1px solid rgba(128, 128, 128, 0.8);
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.08);
background-color: white;
z-index: 1;
}
.flex-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.img-logo {
width: 250px;
height: 50px;
margin-left: 170px;
cursor: pointer;
}
.btn {
cursor: pointer;
background-color: rgb(86, 123, 149);
border: 1px solid rgb(50, 104, 145);
font-weight: bold;
color: white;
}
.icon {
width: 15px;
opacity: 0.7;
cursor: pointer;
}
.nav > .btn-container {
margin-right: 27px;
}
.nav > .btn-container .btn-nav {
height: 31.5px;
border-radius: 3px;
margin: auto 2px;
padding-top: 6px;
padding-left: 12px;
padding-right: 12px;
font-size: 11px;
}
.nav > .icon-container > .icon {
padding: 10px;
}
main {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 60px;
}
.flex-column {
display: flex;
flex-direction: column;
}
.main-img {
align-items: center;
width: 945px;
}
.main-img > .title {
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
font-size: 23px;
text-align: left;
justify-self: flex-start;
line-height: 50px;
}
.img-section > img {
width: 100%;
}
.main-img > .img > img {
width: 945px;
margin-top: -10px;
}
.op {
opacity: 0.6;
}
.main-img > .figcaption {
align-self: flex-start;
width: 700px;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
line-height: 20px;
}
.main-img > .figcaption > small {
font-size: 11px;
font-weight: lighter;
}
a {
text-decoration: none;
color: inherit;
}
.author {
margin-top: 1px;
margin-bottom: -13px;
text-align: right;
font-size: 11px;
}
main > .author {
align-self: flex-start;
font-family: Arial, Helvetica, sans-serif;
width: 600px;
font-size: 15px;
margin: 15px auto auto auto;
}
.inf > a {
color: #326891;
}
.footer-bottom > a {
padding: 8px;
}
main > .author > a {
text-decoration: underline gray;
font-size: 100px;
border: 1px solid black;
background-color: red;
}
.date {
width: 600px;
height: 50px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
justify-content: space-between;
}
.icons-div {
width: 250px;
justify-content: space-between;
}
.icons-div > i {
padding: 6px 3.5px 1px 8px;
height: 20px;
opacity: 1;
}
.icons-div > .bg {
background-color: rgba(128, 128, 128, 0.2);
border-radius: 50%;
}
.icons-div > .bg:hover {
background-color: white;
border: 2px solid rgba(128, 128, 128, 0.5);
}
.text {
display: block;
position: inherit;
width: 600px;
line-height: 27px;
font-size: 22px;
font-weight: 300;
opacity: 0.85;
}
.inf {
width: 200px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 10px;
padding-top: 15px;
padding-bottom: 25px;
border-bottom: 1px solid gray;
border-top: 1px solid gray;
}
.titles {
font-weight: bold;
font-size: 14px;
opacity: 0.9;
width: 600px;
text-align: left;
}
.txt {
width: 940px;
font-size: 16px;
line-height: 15px;
}
.txt > h3 {
opacity: 1;
margin-bottom: -8px;
}
.aside-main {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
position: absolute;
right: 0;
top: 1500px;
margin-right: 15px;
width: 260px;
}
.aside-main > h3 {
border-bottom: 1px solid gray;
padding: 2px;
padding-bottom: 10px;
margin-bottom: 0;
font-size: 14px;
}
.elt1 {
justify-content: flex-start;
margin-bottom: 5px;
font-size: 12px;
font-family: Georgia, 'Times New Roman', Times, serif;
opacity: 0.9;
}
.elt1 > a:hover {
text-decoration: underline;
}
.elt1 > .aside-img {
height: 80px;
margin-right: 5px;
cursor: pointer;
}
.grid {
width: 100%;
display: grid;
grid-template-columns: repeat(4, 23%);
grid-gap: 2%;
justify-content: space-evenly;
font-size: 12px;
}
.grid > .grid-item > .grid-img {
width: 200px;
height: 150px;
justify-self: center;
}
.grid > .grid-item {
line-height: 15px;
color: black;
opacity: 1;
}
.expand > a > b {
margin-right: 20px;
}
.grid > .grid-item > p > b {
font-weight: 900;
color: black;
opacity: 1;
}
.line {
width: 60px;
height: 1px;
background-color: black;
margin-top: 50px;
}
.txt > p {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: 400;
}
.vid-div {
width: 600px;
margin-bottom: 10px;
}
.video {
width: 100%;
}
.img-section {
width: 600px;
}
.section-footer {
width: 600px;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
.footer-btns {
width: 600px;
height: 40px;
justify-content: space-between;
}
.footer-btns > .btn {
width: 330px;
height: 35px;
border-radius: 3px;
}
.footer-btns > .icons-div {
width: 180px;
}
.bottom-section {
padding-top: 30px;
width: 90%;
height: 100%;
display: grid;
grid-template-columns: 74% 24%;
grid-template-rows: 69% 29%;
grid-template-areas: "more most" "editor most";
}
.grid-footer-section {
border-top: 1px solid gray;
margin-top: 30px;
margin-right: 30px;
padding-top: 50px;
grid-area: more;
display: grid;
grid-template-columns: 32% 32% 32%;
grid-template-rows: 45% 45%;
grid-gap: 35px;
grid-row-gap: 50px;
justify-content: space-between;
}
.small {
font-size: 12px;
}
.time {
margin-top: -10px;
font-family: Arial, Helvetica, sans-serif;
}
.li {
font-size: 17.5px;
line-height: 18px;
cursor: pointer;
}
.li:hover {
color: rgb(90, 90, 90);
}
.grid-footer-section > .grid-footer-item {
line-height: 15px;
}
.grid-footer-section > .grid-footer-item > img {
width: 275px;
cursor: pointer;
}
.editors-footer {
grid-area: editor;
display: grid;
border-top: 1px solid gray;
margin-top: 30px;
margin-right: 30px;
padding-top: 50px;
grid-template-columns: 32% 32% 32%;
grid-gap: 20px;
justify-content: space-between;
}
.editors-footer > .editors-footer-item {
width: 273px;
height: 280px;
}
.editors-footer > .editors-footer-item > img {
width: 273px;
cursor: pointer;
}
.aside-bottom {
grid-area: most;
display: flex;
height: 885px;
flex-direction: column;
justify-content: space-evenly;
margin-top: 13.5%;
margin-left: 7%;
}
.aside-bottom > h2 {
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
margin-top: 8px;
padding-top: 22px;
border-top: 1px solid gray;
}
.aside-bottom > .elt {
border-top: 0.5px solid black;
border-bottom: 0.5px solid white;
padding-top: 21px;
padding-bottom: 21px;
}
.last {
font-size: 17px;
}
.last:hover {
color: rgb(90, 90, 90);
}
.footer-line {
height: 1px;
width: 90%;
border-top: 2px solid rgba(128, 128, 128, 0.2);
border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.footer {
width: 90%;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-nav {
width: 100%;
align-items: center;
justify-self: center;
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 11px;
color: #326891;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.footer-nav > .img-logo {
margin: 0;
margin-left: -15px;
width: 212px;
height: 42px;
}
.list-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
font-family: Arial, Helvetica, sans-serif;
}
.footer-list {
font-size: 11px;
line-height: 25px;
font-weight: bold;
}
.footer-list > .list-title {
margin-bottom: -10px;
}
.footer-list > ul {
list-style: none;
font-size: 12px;
margin-left: -40px;
}
.subscribe {
border-left: 1px solid gray;
padding-left: 10px;
}
.hr {
height: 10px;
border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.footer-bottom {
width: 100%;
display: flex;
font-size: 11px;
opacity: 0.8;
justify-content: center;
padding-bottom: 15px;
margin-top: 10px;
border-top: 1px solid rgba(128, 128, 128, 0.5);
}
.fixed-section {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
width: 100%;
cursor: pointer;
border-top: 1px solid black;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
bottom: 0;
}
.par {
margin-right: -5%;
}
.expand {
padding: 10px;
padding-top: 15px;
right: 0;
justify-self: self-end;
margin-right: 6%;
margin-left: -9%;
font-size: 12px;
}
.list-item {
font-weight: 700;
}
.footer-bottom > a:hover {
text-decoration: underline;
} | style/style.css | body {
font-family: "Times New Roman", Times, serif;
margin: 0;
width: 100%;
}
.nav {
position: fixed;
display: block;
width: 100%;
height: 40px;
top: 0;
border-bottom: 1px solid rgba(128, 128, 128, 0.8);
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.08);
background-color: white;
z-index: 1;
}
.flex-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.img-logo {
width: 250px;
height: 50px;
margin-left: 170px;
cursor: pointer;
}
.btn {
cursor: pointer;
background-color: rgb(86, 123, 149);
border: 1px solid rgb(50, 104, 145);
font-weight: bold;
color: white;
}
.icon {
width: 15px;
opacity: 0.7;
cursor: pointer;
}
.nav > .btn-container {
margin-right: 27px;
}
.nav > .btn-container .btn-nav {
height: 31.5px;
border-radius: 3px;
margin: auto 2px;
padding-top: 6px;
padding-left: 12px;
padding-right: 12px;
font-size: 11px;
}
.nav > .icon-container > .icon {
padding: 10px;
}
main {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 60px;
}
.flex-column {
display: flex;
flex-direction: column;
}
.main-img {
align-items: center;
width: 945px;
}
.main-img > .title {
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
font-size: 23px;
text-align: left;
justify-self: flex-start;
line-height: 50px;
}
.img-section > img {
width: 100%;
}
.main-img > .img > img {
width: 945px;
margin-top: -10px;
}
.op {
opacity: 0.6;
}
.main-img > .figcaption {
align-self: flex-start;
width: 700px;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
line-height: 20px;
}
.main-img > .figcaption > small {
font-size: 11px;
font-weight: lighter;
}
a {
text-decoration: none;
color: inherit;
}
.author {
margin-top: 1px;
margin-bottom: -13px;
text-align: right;
font-size: 11px;
}
main > .author {
align-self: flex-start;
font-family: Arial, Helvetica, sans-serif;
width: 600px;
font-size: 15px;
margin: 15px auto auto auto;
}
.inf > a {
color: #326891;
}
.footer-bottom > a {
padding: 8px;
}
main > .author > a {
text-decoration: underline gray;
font-size: 100px;
border: 1px solid black;
background-color: red;
}
.date {
width: 600px;
height: 50px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
justify-content: space-between;
}
.icons-div {
width: 250px;
justify-content: space-between;
}
.icons-div > i {
padding: 6px 3.5px 1px 8px;
height: 20px;
opacity: 1;
}
.icons-div > .bg {
background-color: rgba(128, 128, 128, 0.2);
border-radius: 50%;
}
.icons-div > .bg:hover {
background-color: white;
border: 2px solid rgba(128, 128, 128, 0.5);
}
.text {
display: block;
position: inherit;
width: 600px;
line-height: 27px;
font-size: 22px;
font-weight: 300;
opacity: 0.85;
}
.inf {
width: 200px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 10px;
padding-top: 15px;
padding-bottom: 25px;
border-bottom: 1px solid gray;
border-top: 1px solid gray;
}
.titles {
font-weight: bold;
font-size: 14px;
opacity: 0.9;
width: 600px;
text-align: left;
}
.txt {
width: 940px;
font-size: 16px;
line-height: 15px;
}
.txt > h3 {
opacity: 1;
margin-bottom: -8px;
}
.aside-main {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
position: absolute;
right: 0;
top: 1500px;
margin-right: 15px;
width: 260px;
}
.aside-main > h3 {
border-bottom: 1px solid gray;
padding: 2px;
padding-bottom: 10px;
margin-bottom: 0;
font-size: 14px;
}
.elt1 {
justify-content: flex-start;
margin-bottom: 5px;
font-size: 12px;
font-family: Georgia, 'Times New Roman', Times, serif;
opacity: 0.9;
}
.elt1 > a:hover {
text-decoration: underline;
}
.elt1 > .aside-img {
height: 80px;
margin-right: 5px;
cursor: pointer;
}
.grid {
width: 100%;
display: grid;
grid-template-columns: repeat(4, 23%);
grid-gap: 2%;
justify-content: space-evenly;
font-size: 12px;
}
.grid > .grid-item > .grid-img {
width: 200px;
height: 150px;
justify-self: center;
}
.grid > .grid-item {
line-height: 15px;
color: black;
opacity: 1;
}
.expand > a > b {
margin-right: 20px;
}
.grid > .grid-item > p > b {
font-weight: 900;
color: black;
opacity: 1;
}
.line {
width: 60px;
height: 1px;
background-color: black;
margin-top: 50px;
}
.txt > p {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: 400;
}
.vid-div {
width: 600px;
margin-bottom: 10px;
}
.video {
width: 100%;
}
.img-section {
width: 600px;
}
.section-footer {
width: 600px;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
.footer-btns {
width: 600px;
height: 40px;
justify-content: space-between;
}
.footer-btns > .btn {
width: 330px;
height: 35px;
border-radius: 3px;
}
.footer-btns > .icons-div {
width: 180px;
}
.bottom-section {
padding-top: 30px;
width: 90%;
height: 100%;
display: grid;
grid-template-columns: 74% 24%;
grid-template-rows: 69% 29%;
grid-template-areas: "more most" "editor most";
}
.grid-footer-section {
border-top: 1px solid gray;
margin-top: 30px;
margin-right: 30px;
padding-top: 50px;
grid-area: more;
display: grid;
grid-template-columns: 32% 32% 32%;
grid-template-rows: 45% 45%;
grid-gap: 35px;
grid-row-gap: 50px;
justify-content: space-between;
}
.small {
font-size: 12px;
}
.time {
margin-top: -10px;
font-family: Arial, Helvetica, sans-serif;
}
.li {
font-size: 17.5px;
line-height: 18px;
cursor: pointer;
}
.li:hover {
color: rgb(90, 90, 90);
}
.grid-footer-section > .grid-footer-item {
line-height: 15px;
}
.grid-footer-section > .grid-footer-item > img {
width: 275px;
cursor: pointer;
}
.editors-footer {
grid-area: editor;
display: grid;
border-top: 1px solid gray;
margin-top: 30px;
margin-right: 30px;
padding-top: 50px;
grid-template-columns: 32% 32% 32%;
grid-gap: 20px;
justify-content: space-between;
}
.editors-footer > .editors-footer-item {
width: 273px;
height: 280px;
}
.editors-footer > .editors-footer-item > img {
width: 273px;
cursor: pointer;
}
.aside-bottom {
grid-area: most;
display: flex;
height: 885px;
flex-direction: column;
justify-content: space-evenly;
margin-top: 13.5%;
margin-left: 7%;
}
.aside-bottom > h2 {
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
margin-top: 8px;
padding-top: 22px;
border-top: 1px solid gray;
}
.aside-bottom > .elt {
border-top: 0.5px solid black;
border-bottom: 0.5px solid white;
padding-top: 21px;
padding-bottom: 21px;
}
.last {
font-size: 17px;
}
.last:hover {
color: rgb(90, 90, 90);
}
.footer-line {
height: 1px;
width: 90%;
border-top: 2px solid rgba(128, 128, 128, 0.2);
border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.footer {
width: 90%;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-nav {
width: 100%;
align-items: center;
justify-self: center;
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 11px;
color: #326891;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.footer-nav > .img-logo {
margin: 0;
margin-left: -15px;
width: 212px;
height: 42px;
}
.list-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
font-family: Arial, Helvetica, sans-serif;
}
.footer-list {
font-size: 11px;
line-height: 25px;
font-weight: bold;
}
.footer-list > .list-title {
margin-bottom: -10px;
}
.footer-list > ul {
list-style: none;
font-size: 12px;
margin-left: -40px;
}
.subscribe {
border-left: 1px solid gray;
padding-left: 10px;
}
.hr {
height: 10px;
border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.footer-bottom {
width: 100%;
display: flex;
font-size: 11px;
opacity: 0.8;
justify-content: center;
padding-bottom: 15px;
margin-top: 10px;
border-top: 1px solid rgba(128, 128, 128, 0.5);
}
.fixed-section {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
width: 100%;
cursor: pointer;
border-top: 1px solid black;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
bottom: 0;
}
.par {
margin-right: -5%;
}
.expand {
padding: 10px;
padding-top: 15px;
right: 0;
justify-self: self-end;
margin-right: 6%;
margin-left: -9%;
font-size: 12px;
}
.list-item {
font-weight: 700;
}
.footer-bottom > a:hover {
text-decoration: underline;
} | 0.491944 | 0.064271 |
/*MagicZoom*/
.MagicThumb-caption{padding: 2px 8px!important;}
/* classes geradas dinamicamente:being */
.FCCorGrid{}
.FCAdicional1Grid{}
.FCAdicional2Grid{}
.FCAdicional3Grid{}
.FCAdicionalD1Grid{}
.FCAdicionalD2Grid{}
.FCAdicionalD3Grid{}
/* classes geradas dinamicamente:end */
.FCNameProductGrid{font-size:20px; margin:10px 0;}
.FCPriceGrid{width:100%; height:auto; min-height:40px;}
.FCCodProdGrid{font-weight:normal; display:block; margin: 0;}
.FCGridMain {font-family: OpenSansRegular,Helvetica,Arial,sans-serif !important;}
.FCGridMain #idDivGridImg{min-height:350px; padding:0px; float:left;}
.FCGridMain #idDivGridImg img{max-width:250px; max-height:100%; height:100%; border:1px solid #ccc; padding: 20px 10px 0 10px!important;}
.FCContentGrid{height:auto; position:relative; float:left; text-align: left !important;}
.FCGridMain .FCDescritorGrid{min-width: 30px; min-height:30px; display: block; text-align: center; border: 1px solid #dddddd; padding: 5px; margin: 0; line-height:17px;}
.FCBoxGrid{position: relative; width:100%; height:auto !important; min-height: 40px; display: table; text-align:left; border: 0px solid #ccc; font-size:13px; padding: 5px; margin-bottom:5px;}
.FCDescritorGridDisabled .FCDescritorGrid{background: #ddd; color: #686868; cursor:not-allowed;}
.FCSelectedGrid{border-color: #5c60b4; background:#3e98e4;}
.FCSelectedGrid span{background:#dddddd;}
.FCStepGrid{min-height:40px; display: block; text-align: left; border: 0; padding: 0; }
.FCStepGridNumber{width: 25px; height: 25px; line-height:15px; display: inline-block; float:left; padding:5px 0px 0px 0px; border-radius:50%; background:#D9334B; color:#ffffff; text-align:center; margin: 0 13px 0 0px;}
.FCOptionSelected{display: inline-block;font-weight:bold;padding:6px 0;}
.FCStepGridTitle{display: inline-block; padding:6px 0; float:left; margin:0 5px;}
.FCStepGridTitle.FCTitQtyInc{margin-left:5px;}
.FCSoldOutLabel span{background:#eee; color:#ccc;}
.FCSoldOutLabel .FCFlagEsgotadoGrid{width: 18px; position: absolute; margin: 0; bottom:-8px; right: -8px; background: #e17600; font-size: 11px; color: #fff; line-height: 12px; padding: 0px; border: 2px solid #ccc; border-radius: 8px; height: 18px; text-align: center !important; z-index:1;}
.FCSoldOutLabel:hover{border-color:#f56217 !important;}
.FCBoxGrid.FCResumeProduct{ padding:10px 0 !important;}
.FCDescritorGridActivated{cursor: pointer;}
.FCDescritorGridActivated:hover{border-color:#3e98e4;}
.FCCheckedGrid{width:16px; height:16px; position:absolute; background:url('../../images/checkedgrid.svg') no-repeat; z-index:1; top:-5px; right:-3px; display:none;}
.FCSelectedGrid .FCCheckedGrid{display:block;}
.FCGridBtnZoom{width: 160px;
background: #D9334B;
display: block;
padding: 7px 0;
text-align: center;
font-size: 15px;
margin: 5px auto;
border-radius: 15px;
color: #fff;}
.FCBtnEsgotadoGrid, .FCBtnConsultenos, .FCBtnComprarGrid, .FCBtnSelecioneGrid{max-width:300px; height:auto; position: relative; text-align:center; font-size:14px; font-weight:normal; cursor:pointer; margin:5px 0; padding: 5px 0; border-radius:5px; float: left; text-align: center; min-width: 150px; margin: 0 0px;}
.FCBtnEsgotadoGrid span{color:#ee4c1a;}
.FCBtnEsgotadoGrid span:hover{color:#ff0000;}
.FCBtnConsultenos{}
.FCBtnComprarGrid{}
.FCBtnSelecioneGrid{}
.FCDescritorContent{width:100%; height:auto; display: table; float:left; list-style: none;}
.FCDescritorContent li{height: 34px; position: relative; float:left;border: 2px solid transparent; margin:2px;}
.FCDescritorContent li:hover{}
/* Steps */
.FCFCBoxGridIncMult .FCStepGridNumber{margin-top: 4px;}
.FCFCBoxGridIncMult .FCStepGridTitle{padding: 9px 0;}
.FCBoxGridBuy .FCStepGridNumber{margin-top: 15px;}
/*Tooltip*/
.FCTooltipGrid{ position: absolute; width: 275px; top: 55px; left: 0px; font-size: 13px; padding: 10px 5px; background: #f53421; color: #ffffff; margin: 0px auto !important; z-index:1; -webkit-transition:visibility 0s linear 0.3s,opacity 0.5s linear; transition:visibility 0s linear 0.3s,opacity 0.5s linear;}
.FCTooltipGrid.On{ visibility:visible; opacity:1;}
.FCTooltipGrid.Off{visibility:hidden; opacity:0;}
/*incMult*/
.QTIncMultGrid{min-width:40px;}
/*descritores*/
.FCTxtGrid{width:100%; height:auto; position:relative; margin-bottom:10px;padding: 5px 10px;}
.FCGridAdicContent span{display:inline-block; padding:5px;}
.AdicItemCor{min-width:20px; display:inline-block; margin:0 3px; border:1px solid #ccc;}
.FCGridAdicContent.FCGridAdicProductList{float:left;}
/* CSS Grid v1 - 08.07.2015 */ | htm/css/FC_Grid_v1.css |
/*MagicZoom*/
.MagicThumb-caption{padding: 2px 8px!important;}
/* classes geradas dinamicamente:being */
.FCCorGrid{}
.FCAdicional1Grid{}
.FCAdicional2Grid{}
.FCAdicional3Grid{}
.FCAdicionalD1Grid{}
.FCAdicionalD2Grid{}
.FCAdicionalD3Grid{}
/* classes geradas dinamicamente:end */
.FCNameProductGrid{font-size:20px; margin:10px 0;}
.FCPriceGrid{width:100%; height:auto; min-height:40px;}
.FCCodProdGrid{font-weight:normal; display:block; margin: 0;}
.FCGridMain {font-family: OpenSansRegular,Helvetica,Arial,sans-serif !important;}
.FCGridMain #idDivGridImg{min-height:350px; padding:0px; float:left;}
.FCGridMain #idDivGridImg img{max-width:250px; max-height:100%; height:100%; border:1px solid #ccc; padding: 20px 10px 0 10px!important;}
.FCContentGrid{height:auto; position:relative; float:left; text-align: left !important;}
.FCGridMain .FCDescritorGrid{min-width: 30px; min-height:30px; display: block; text-align: center; border: 1px solid #dddddd; padding: 5px; margin: 0; line-height:17px;}
.FCBoxGrid{position: relative; width:100%; height:auto !important; min-height: 40px; display: table; text-align:left; border: 0px solid #ccc; font-size:13px; padding: 5px; margin-bottom:5px;}
.FCDescritorGridDisabled .FCDescritorGrid{background: #ddd; color: #686868; cursor:not-allowed;}
.FCSelectedGrid{border-color: #5c60b4; background:#3e98e4;}
.FCSelectedGrid span{background:#dddddd;}
.FCStepGrid{min-height:40px; display: block; text-align: left; border: 0; padding: 0; }
.FCStepGridNumber{width: 25px; height: 25px; line-height:15px; display: inline-block; float:left; padding:5px 0px 0px 0px; border-radius:50%; background:#D9334B; color:#ffffff; text-align:center; margin: 0 13px 0 0px;}
.FCOptionSelected{display: inline-block;font-weight:bold;padding:6px 0;}
.FCStepGridTitle{display: inline-block; padding:6px 0; float:left; margin:0 5px;}
.FCStepGridTitle.FCTitQtyInc{margin-left:5px;}
.FCSoldOutLabel span{background:#eee; color:#ccc;}
.FCSoldOutLabel .FCFlagEsgotadoGrid{width: 18px; position: absolute; margin: 0; bottom:-8px; right: -8px; background: #e17600; font-size: 11px; color: #fff; line-height: 12px; padding: 0px; border: 2px solid #ccc; border-radius: 8px; height: 18px; text-align: center !important; z-index:1;}
.FCSoldOutLabel:hover{border-color:#f56217 !important;}
.FCBoxGrid.FCResumeProduct{ padding:10px 0 !important;}
.FCDescritorGridActivated{cursor: pointer;}
.FCDescritorGridActivated:hover{border-color:#3e98e4;}
.FCCheckedGrid{width:16px; height:16px; position:absolute; background:url('../../images/checkedgrid.svg') no-repeat; z-index:1; top:-5px; right:-3px; display:none;}
.FCSelectedGrid .FCCheckedGrid{display:block;}
.FCGridBtnZoom{width: 160px;
background: #D9334B;
display: block;
padding: 7px 0;
text-align: center;
font-size: 15px;
margin: 5px auto;
border-radius: 15px;
color: #fff;}
.FCBtnEsgotadoGrid, .FCBtnConsultenos, .FCBtnComprarGrid, .FCBtnSelecioneGrid{max-width:300px; height:auto; position: relative; text-align:center; font-size:14px; font-weight:normal; cursor:pointer; margin:5px 0; padding: 5px 0; border-radius:5px; float: left; text-align: center; min-width: 150px; margin: 0 0px;}
.FCBtnEsgotadoGrid span{color:#ee4c1a;}
.FCBtnEsgotadoGrid span:hover{color:#ff0000;}
.FCBtnConsultenos{}
.FCBtnComprarGrid{}
.FCBtnSelecioneGrid{}
.FCDescritorContent{width:100%; height:auto; display: table; float:left; list-style: none;}
.FCDescritorContent li{height: 34px; position: relative; float:left;border: 2px solid transparent; margin:2px;}
.FCDescritorContent li:hover{}
/* Steps */
.FCFCBoxGridIncMult .FCStepGridNumber{margin-top: 4px;}
.FCFCBoxGridIncMult .FCStepGridTitle{padding: 9px 0;}
.FCBoxGridBuy .FCStepGridNumber{margin-top: 15px;}
/*Tooltip*/
.FCTooltipGrid{ position: absolute; width: 275px; top: 55px; left: 0px; font-size: 13px; padding: 10px 5px; background: #f53421; color: #ffffff; margin: 0px auto !important; z-index:1; -webkit-transition:visibility 0s linear 0.3s,opacity 0.5s linear; transition:visibility 0s linear 0.3s,opacity 0.5s linear;}
.FCTooltipGrid.On{ visibility:visible; opacity:1;}
.FCTooltipGrid.Off{visibility:hidden; opacity:0;}
/*incMult*/
.QTIncMultGrid{min-width:40px;}
/*descritores*/
.FCTxtGrid{width:100%; height:auto; position:relative; margin-bottom:10px;padding: 5px 10px;}
.FCGridAdicContent span{display:inline-block; padding:5px;}
.AdicItemCor{min-width:20px; display:inline-block; margin:0 3px; border:1px solid #ccc;}
.FCGridAdicContent.FCGridAdicProductList{float:left;}
/* CSS Grid v1 - 08.07.2015 */ | 0.242206 | 0.20351 |
ERROR: type should be string, got "https://www.w3schools.com/howto/howto_css_split_screen.asp */ \nbody{\n background-color: rgb(203, 163, 110);\n text-align: center;\n}\n\ntable {\n width: 100%;\n background-color: lightslategray;\n}\n\nth {\n text-transform: uppercase;\n}\n\n.normal{\n padding: 7px 10px 10px, 10px;\n letter-spacing: 0.lem;\n font-size: 90%;\n border-bottom: 2px solid black;\n border-top: 2px solid black;\n border-right: 2px solid black;\n border-left: 2px solid black;\n text-align: left;\n}\n\n.even {\n background-color: rgb(28, 118, 214);\n}\n\ntr:hover {\n background-color: darkslategray;\n}\n\n.case {\n padding: 7px 10px 10px, 10px;\n letter-spacing: 0.lem;\n font-size: 90%;\n border-bottom: 2px solid black;\n border-top: 2px solid black;\n border-right: 2px solid black;\n border-left: 2px solid black;\n text-align: right;\n}\n\n.split {\n height: 100%;\n width: 50%;\n position: fixed;\n z-index: 1;\n top: 0;\n overflow-x: hidden;\n padding-top: -10px;\n }\n\n .splitover {\n height: 100%;\n width: 50%;\n position: relative;\n z-index: 1;\n top: 0;\n overflow-x: hidden;\n padding-top: -10px;\n }\n\n /* Control the left side */\n .left {\n left: 0;\n background-color: rgb(203, 163, 110);\n }\n \n /* Control the right side */\n .right {\n right: 0;\n background-color: lightslategrey;\n }\n \n /* If you want the content centered horizontally and vertically */\n .centered {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-49%, -49%);\n }\n\n .info{\n border-style: dotted;\n border-width: 17%;\n border-color: black;\n border-radius: 5px;\n display: inline-block;\n ;\n }\n\n .symp{\n border-style: inset;\n border-width: .7em;\n border-color: black;\n background-color: lightslategrey;\n border-radius: 5px;\n display: inline-block;\n text-align: center;\n ;\n}\n\n.treat{\n border-style: inset;\n border-width: .7em;\n border-color: black;\n background-color: rgb(203, 163, 110);\n border-radius: 5px;\n display: inline-block;\n text-align: center;\n ;\n}\n\n.options{\n border-style: dotted;\n border-width: 17%;\n border-color: black;\n border-radius: 5px;\n display: inline-block;\n text-align: left;\n ;\n}\n\n #title{\n background-color: lightslategrey;\n font-size: 2.77em;\n border-radius: 49px;\n }\n\n #web_link{\n font-size:1.1em;\n }\n\n #author{ \n font-size: 2.2em;\n }\n\n #source{ \n font-size: 1.49em;\n }\n\n #fetch_date{\n font-size: smaller;\n }\n\n #article_preview{ \n font-size: x-large;\n }" | app/static/css/standard.css | ERROR: type should be string, got "https://www.w3schools.com/howto/howto_css_split_screen.asp */ \nbody{\n background-color: rgb(203, 163, 110);\n text-align: center;\n}\n\ntable {\n width: 100%;\n background-color: lightslategray;\n}\n\nth {\n text-transform: uppercase;\n}\n\n.normal{\n padding: 7px 10px 10px, 10px;\n letter-spacing: 0.lem;\n font-size: 90%;\n border-bottom: 2px solid black;\n border-top: 2px solid black;\n border-right: 2px solid black;\n border-left: 2px solid black;\n text-align: left;\n}\n\n.even {\n background-color: rgb(28, 118, 214);\n}\n\ntr:hover {\n background-color: darkslategray;\n}\n\n.case {\n padding: 7px 10px 10px, 10px;\n letter-spacing: 0.lem;\n font-size: 90%;\n border-bottom: 2px solid black;\n border-top: 2px solid black;\n border-right: 2px solid black;\n border-left: 2px solid black;\n text-align: right;\n}\n\n.split {\n height: 100%;\n width: 50%;\n position: fixed;\n z-index: 1;\n top: 0;\n overflow-x: hidden;\n padding-top: -10px;\n }\n\n .splitover {\n height: 100%;\n width: 50%;\n position: relative;\n z-index: 1;\n top: 0;\n overflow-x: hidden;\n padding-top: -10px;\n }\n\n /* Control the left side */\n .left {\n left: 0;\n background-color: rgb(203, 163, 110);\n }\n \n /* Control the right side */\n .right {\n right: 0;\n background-color: lightslategrey;\n }\n \n /* If you want the content centered horizontally and vertically */\n .centered {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-49%, -49%);\n }\n\n .info{\n border-style: dotted;\n border-width: 17%;\n border-color: black;\n border-radius: 5px;\n display: inline-block;\n ;\n }\n\n .symp{\n border-style: inset;\n border-width: .7em;\n border-color: black;\n background-color: lightslategrey;\n border-radius: 5px;\n display: inline-block;\n text-align: center;\n ;\n}\n\n.treat{\n border-style: inset;\n border-width: .7em;\n border-color: black;\n background-color: rgb(203, 163, 110);\n border-radius: 5px;\n display: inline-block;\n text-align: center;\n ;\n}\n\n.options{\n border-style: dotted;\n border-width: 17%;\n border-color: black;\n border-radius: 5px;\n display: inline-block;\n text-align: left;\n ;\n}\n\n #title{\n background-color: lightslategrey;\n font-size: 2.77em;\n border-radius: 49px;\n }\n\n #web_link{\n font-size:1.1em;\n }\n\n #author{ \n font-size: 2.2em;\n }\n\n #source{ \n font-size: 1.49em;\n }\n\n #fetch_date{\n font-size: smaller;\n }\n\n #article_preview{ \n font-size: x-large;\n }" | 0.635788 | 0.303461 |
html{
height: 100%;
}
body{
height: 100%;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 13px;
background-color: #1b64a0;
}
strong{
font-weight: 600;
}
.form-control, .btn{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.img_wrapper{
display: block;
position: relative;
margin: 0 auto;
color: #444;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 100%;
}
.img_show{
display: block;
width: 100%;
height: 100%;
position: relative;
background: #eee;
border: 1px solid transparent;
transition: border 0.12s linear;
-webkit-transition: border 0.12s linear;
-moz-transition: border 0.12s linear;
-ms-transition: border 0.12s linear;
-o-transition: border 0.12s linear;
}
.img_thumbnail{
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 1;
-webkit-transition: opacity .1s;
transition: opacity .1s;
border: none;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
-ms-border-radius: 0;
}
.img_centered{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform: translate(50%,50%);
-ms-transform: translate(50%,50%);
transform: translate(50%,50%);
}
.img_centered img{
position: absolute;
top: 0;
left: 0;
max-width: 100%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
img.landscape{
max-height: 100%;
max-width: inherit;
}
img.portrait{
max-width: 100%;
max-height: inherit;
}
textarea{
resize: vertical;
}
body.modal-open{
padding-right: 0!important;
}
.modal-open .modal{
padding-right: 0!important;
padding-left: 0!important;
}
.modal-backdrop.in{
filter: alpha(opacity=70);
opacity: .7;
}
.form-control{
height: 28px;
padding: 0 10px 2px 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
select.form-control.width_auto{
display: inline-block;
width: auto;
}
.form-control.input-lg{
height: 38px;
padding: 0px 10px 3px 10px;
font-size: 1.5em;
}
.form-control[type="color"]{
padding: 0 3px;
}
.form-control.input-sm{
padding: 1px 10px 3px 10px;
}
textarea.form-control{
padding: 5px 10px;
}
.btn{
height: 28px;
padding: 3px 12px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.btn-primary{
background: #0085ba;
border-color: #0073aa #006799 #006799;
color: #fff;
text-decoration: none;
}
.btn-primary:hover{
background: #008ec2;
border-color: #006799;
color: #fff;
}
.btn-default{
background-color: #f7f7f7;
}
.btn-default:hover{
border-color: #999;
color: #23282d;
}
.btn_inline{
display: inline-block;
vertical-align: top;
}
.input-sm, select.input-sm{
height: 29px;
}
input[type=radio], input[type=checkbox]{
border: 1px solid #b4b9be;
background: #fff;
color: #555;
clear: none;
cursor: pointer;
display: inline-block;
line-height: 0;
height: 16px;
margin: -4px 4px 0 0;
outline: 0;
padding: 0!important;
text-align: center;
vertical-align: middle;
width: 16px;
min-width: 16px;
-webkit-appearance: none;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-webkit-transition: .05s border-color ease-in-out;
transition: .05s border-color ease-in-out;
}
input[type=radio]:focus, input[type=checkbox]:focus{
outline: 0;
}
input[type=checkbox]:checked::before{
content: "\f147";
margin: -3px 0 0 -4px;
color: #1e8cbe;
}
input[type=radio]:checked::before, input[type=checkbox]:checked::before{
float: left;
display: inline-block;
vertical-align: middle;
width: 16px;
font: 400 21px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input[type=radio]{
-webkit-border-radius: 50%;
border-radius: 50%;
margin-right: 4px;
line-height: 10px;
}
input[type=radio]:checked::before{
content: "\2022";
text-indent: -9999px;
-webkit-border-radius: 50px;
border-radius: 50px;
font-size: 24px;
width: 6px;
height: 6px;
margin: 4px;
line-height: 16px;
background-color: #1e8cbe;
}
@-webkit-keyframes switchon{
from{left: 70px;}
to{left: 0;}
}
@keyframes switchon{
from{left: 70px;}
to{left: 0;}
}
@-webkit-keyframes switchoff{
from{margin-left: 0;}
to{margin-left: 70px;}
}
@keyframes switchoff{
from{margin-left: 0;}
to{margin-left: 70px;}
}
.switch_toggle{
display: block;
width: 144px;
height: 28px;
padding: 1px;
border: 1px solid #ccc;
border-radius: 2px;
background-color: #dcdcdc;
box-shadow: inset 0 0 4px 0 rgba(0,0,0,0.1);
overflow: hidden;
}
.switch_toggle input[type=radio]{
position: relative;
display: inline-block;
padding: 0;
margin: 0;
margin-right: -4px;
width: 70px;
height: 24px;
box-shadow: none;
border: none;
border-radius: 2px;
background-color: transparent;
}
.switch_toggle input[type=radio]::after{
content: attr(content);
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
text-align: center;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 13px;
line-height: 1;
padding: 4px 0;
color: #555;
background-color: transparent;
z-index: 99;
}
.switch_toggle input[type=radio]:checked::after{
color: #fff;
}
.switch_toggle input[type=radio]::before{
background-color: transparent;
margin: 0;
}
.switch_toggle input[type=radio].switch_on::before{
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
border-radius: 2px;
z-index: 99;
background-color: #999;
-webkit-animation-name: switchoff;
-webkit-animation-duration: 0.09s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: linear;
animation-name: switchoff;
animation-duration: 0.09s;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
.switch_toggle input[type=radio].switch_on:checked::before{
background-color: #0073AA;
-webkit-animation-name: switchon;
-webkit-animation-duration: 0.09s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: linear;
animation-name: switchon;
animation-duration: 0.09s;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
.header_top{
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 32px;
background-color: #1b64a0;
color: #eee;
z-index: 999;
}
.header_top_left{
float: left;
}
.header_top_left>ul{
float: left;
margin: 0;
padding: 0;
list-style: none;
}
.header_top_left>ul>li{
float: left;
}
.header_top_left>ul>li.li_drop_down{
position: relative;
}
.header_top_left>ul>li.li_drop_down:hover>a{
background-color: #32373c;
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down:hover>a>i{
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down{
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #32373c;
margin: 0;
padding: 0;
list-style: none;
padding: 6px 0;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li{
display: block;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a{
display: block;
min-width: 160px;
padding: 3px 10px;
color: rgba(240,245,250,.7);
text-decoration: none;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a:hover{
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down:hover ul.ul_drop_down{
display: block;
}
.header_top_left>ul>li>a{
float: left;
color: #eee;
text-decoration: none;
padding: 6px 8px;
}
.header_top_left>ul>li>a:hover{
background-color: #32373c;
color: #00b9eb;
}
.header_top_left>ul>li>a:hover i{
color: #00b9eb;
}
.header_top_left>ul>li>a>i{
color: rgba(240,245,250,.6);
}
.header_top_left>ul>li>a>i.site_home_icon{
margin-top: -2px;
}
.header_top_left>ul>li>a>.dropdown{
float: left;
}
.header_top_menu{
margin: 0;
padding: 0;
list-style: none;
}
.header_top_menu>li{
float: left;
}
.header_top_menu>li:hover{
background-color: #32373C;
}
.header_top_menu>li:hover>ul{
display: block;
}
.header_top_menu>li>a{
float: left;
display: block;
padding: 4px 10px 4px 10px;
color: #eee;
}
.header_top_menu>li>a>span{
float: left;
line-height: 22px;
}
.header_top_avatar{
float: left;
margin-left: 10px;
width: 24px;
height: 24px;
}
.header_top_dropdown{
position: relative;
}
.header_top_dropdown ul{
display: none;
margin: 0;
padding: 0;
list-style: none;
position: absolute;
top: 32px;
right: 0;
background-color: #32373C;
z-index: 999;
}
.header_profile{
position: relative;
min-height: 94px;
min-width: 250px;
padding: 15px;
padding-left: 94px;
}
.header_profile_avatar{
position: absolute;
top: 15px;
left: 15px;
width: 64px;
height: 64px;
}
.header_profile_info{
float: left;
}
.header_profile_info a{
float: left;
display: block;
width: 100%;
margin-bottom: 12px;
color: #eee;
text-decoration: none;
line-height: 1;
white-space: nowrap;
}
.header_profile_info a:last-child{
margin-bottom: 0;
}
.body_wrapper{
display: block;
width: 100%;
height: 100%;
padding-top: 32px;
background-color: #F1F1F1;
}
.admin_nav{
float: left;
width: 160px;
min-height: 100%;
margin-right: -160px;
background-color: #1b64a0;
}
.admin_nav.nav_fixed{
position: fixed;
top: 32px;
left: 0;
}
.body_wrapper.collapsed .admin_nav{
width: 35px;
}
.admin_page{
display: block;
width: 100%;
height: 100%;
padding-left: 160px;
background-color: #1b64a0;
}
.body_wrapper.collapsed .admin_page{
padding-left: 35px;
}
.admin_nav_area{
margin-top: 10px;
margin-bottom: 60px;
}
.admin_nav_ul{
margin: 0;
padding: 0;
list-style: none;
font-size: 14px;
}
.admin_nav_ul>li{
display: block;
}
.admin_nav_ul>li>a{
display: block;
padding: 7px 7px 7px 7px;
color: #eee;
text-decoration: none;
}
.admin_nav_ul>li>a>i{
color: rgba(240,245,250,0.6);
}
.admin_nav_ul>li>a>span{
margin-left: 3px;
}
.admin_nav_ul>li>a .admin_menu_badge{
display: inline-block;
vertical-align: top;
padding: 0px 5px;
min-width: 17px;
height: 17px;
margin-left: 3px;
margin-top: 2px;
font-size: 12px;
font-weight: normal;
text-align: center;
background-color: #D54E21;
color: #fff;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
-o-border-radius: 18px;
-ms-border-radius: 18px;
border-radius: 18px;
text-indent: 1px;
}
.admin_nav_ul>li>a .admin_menu_badge.blue{
background-color: #CA4A1F;
}
.admin_nav_ul>li.active>a .admin_menu_badge.blue{
background-color: #00b9eb;
}
.collapsed .admin_nav_ul>li>a .admin_menu_badge{
display: none;
}
.admin_nav_ul>li.active>a{
position: relative;
background-color: #0073AA;
color: #fff;
}
.admin_nav_ul>li.active>a>i{
color: #fff;
}
.admin_nav_ul>li.active>a::after{
right: 0;
border: 8px solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-right-color: #f1f1f1;
top: 50%;
margin-top: -8px;
}
.body_wrapper.collapsed .admin_nav .admin_nav_ul>li.active>a::after{
border-width: 4px;
margin-top: -4px;
}
.admin_nav_li{
position: relative;
}
.admin_nav_li:hover>a{
background-color: #191E23;
color: #00b9eb;
}
.admin_nav_li.has_sub_menu::after{
right: 0;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-width: 8px;
border-right-color: #32373c;
top: 10px;
z-index: 999;
}
.admin_nav_li.has_sub_menu::after{
border-width: 4px;
margin-top: 3px;
}
.admin_nav_ul .sub_menu{
display: none;
position: absolute;
top: 0;
left: 100%;
min-width: 160px;
margin: 0;
padding: 7px 0 8px;
list-style: none;
background-color: #1A7AD1;
z-index: 999999;
}
.admin_nav_ul .sub_menu.active{
display: block;
}
.admin_nav_ul ul>li{
display: block;
}
.admin_nav_ul ul>li>a{
display: block;
font-size: 13px;
color: rgba(240,245,250,.7);
padding: 3px 10px;
text-decoration: none;
white-space: nowrap;
}
.admin_nav_ul ul>li>a:hover{
color: #00b9eb;
}
.admin_nav_li.active ul{
display: block;
position: static;
}
.body_wrapper.collapsed .admin_nav_li.active ul{
display: none;
position: absolute;
}
.body_wrapper.collapsed .admin_nav_li.active ul.active{
display: block;
}
.admin_nav_ul ul>li.active>a{
color: #fff;
font-weight: 600;
}
#collapse_button{
display: block;
padding: 7px 7px 7px 7px;
color: #eee;
text-decoration: none;
cursor: pointer;
}
#collapse_button:hover{
background-color: #191E23;
}
#collapse_button:hover span{
color: #00b9eb;
}
#collapse_button i{
color: rgba(240,245,250,0.6);
}
#collapse_button .collapse-button-icon::before{
content: "\f148";
display: inline-block;
width: 20px;
height: 20px;
font-size: 20px;
line-height: 1;
font-family: dashicons;
text-decoration: inherit;
font-weight: 400;
font-style: normal;
vertical-align: top;
text-align: center;
-webkit-transition: color .1s ease-in 0;
transition: color .1s ease-in 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: all .1s ease-in-out;
}
.body_wrapper.collapsed #collapse_button .collapse-button-icon::before{
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
#collapse_button span{
margin-left: 3px;
}
.body_wrapper.collapsed .admin_nav .admin_nav_li span{
display: none;
}
.admin_page_wrapper{
display: block;
width: 100%;
padding: 0 5px;
background-color: #f1f1f1;
}
.content_wrapper{
float: left;
width: 100%;
margin-bottom: 50px;
}
.page_title{
float: left;
display: block;
width: 100%;
padding: 20px 0;
}
.page_title h1, .page_title h2, .page_title h3{
float: left;
margin: 0;
font-size: 23px;
font-weight: 400;
margin-right: 15px;
}
.page_title_highlight{
color: #0073AA;
}
.button_title{
float: left;
text-decoration: none;
background-color: #fff;
color: #333;
padding: 4px 10px;
font-weight: 600;
color: #0073AA;
border: 1px solid #ccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.button_title:hover{
text-decoration: none;
background-color: #0073AA;
color: #fff;
border-color: #006391;
}
.button_title .dashicons-plus{
line-height: 1.1;
}
.page_content{
float: left;
display: block;
width: 100%;
}
.table_filter{
display: block;
width: 100%;
margin-bottom: 10px;
}
.table_filter ul{
float: left;
margin: 0;
padding: 0;
list-style: none;
}
.table_filter ul>li{
float: left;
border-left: 1px solid #666;
line-height: 0.7;
}
.table_filter ul>li:first-child{
border-left: none;
}
.table_filter ul>li:first-child a{
padding-left: 0;
}
.table_filter ul>li>a{
float: left;
padding: 2px 7px;
text-decoration: none;
color: #0073aa;
}
.table_filter ul>li>a:hover{
color: #00a0d2;
}
.table_filter ul>li.active>a{
font-weight: 600;
color: #000;
}
.table_filter ul>li>a span{
color: #555d66;
font-weight: normal;
}
.table_top_actions{
display: block;
width: 100%;
}
.table_top_actions_left{
float: left;
margin-bottom: 5px;
text-align: left
}
.table_top_actions_right{
float: right;
margin-bottom: 5px;
text-align: right;
}
.search_loading{
display: none;
float: left;
margin-top: 4px;
margin-right: 5px;
}
.table_search{
float: left;
position: relative;
}
.table_search .clear_search{
position: absolute;
top: 0;
left: 171px;
text-align: center;
width: 28px;
height: 28px;
color: #555;
font-size: 14px;
color: #0073AA;
cursor: pointer;
line-height: 29px;
z-index: 99;
}
.table_search input{
float: left;
width: 200px;
padding-right: 28px;
}
.table_search button{
float: left;
margin-left: 5px;
}
.table_bottom_actions{
display: block;
width: 100%;
}
.pagination{
margin-top: 5px;
margin-bottom: 15px;
}
.table_bottom_actions_left{
display: none!important;
float: left;
margin-top: 5px;
text-align: left;
}
.table_actions{
float: left;
}
.table_actions select{
float: left;
margin-right: 5px;
width: 150px;
}
.table_actions button{
float: left;
}
.table_items{
float: left;
margin-top: 10px;
margin-right: 10px;
}
.table_bottom_actions_right{
float: right;
text-align: right;
}
.table_paginate{
float: left;
display: block;
width: 100%;
text-align: right;
}
.pagination>li:first-child>a, .pagination>li:first-child>span{
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.pagination>li:last-child>a, .pagination>li:last-child>span{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover{
background-color: #0073AA;
}
.pagination>li>a, .pagination>li>span{
font-size: 14px;
}
.table{
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
background-color: #fff;
margin-bottom: 0;
}
.table>thead>tr>th, .table>thead>tr>td{
border-bottom: 2px solid #ddd;
font-size: 14px;
font-weight: normal;
}
.table>tfoot>tr>th, .table>tfoot>tr>td{
border-top: 2px solid #ddd;
font-size: 14px;
font-weight: normal;
}
.table>tbody>tr>td, .table>tbody>tr>th{
border-top-color: #eee;
}
.table>tbody>tr:nth-child(2n+1){
background-color: #f9f9f9;
}
.table_checkbox{
width: 37px;
}
.table_id{
width: 70px;
}
.table_title{
display: block;
width: 100%;
}
.table_title a{
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
ul.table_title_actions{
display: block;
opacity: 0;
height: 18px;
width: 100%;
margin: 0;
padding: 0;
margin-top: 3px;
list-style: none;
}
.table>tbody>tr:hover ul.table_title_actions{
opacity: 1;
}
ul.table_title_actions>li{
float: left;
padding: 0 5px;
border-right: 1px solid #ddd;
line-height: 1;
}
ul.table_title_actions>li:first-child{
padding-left: 0;
}
ul.table_title_actions>li:last-child{
border: none;
}
ul.table_title_actions>li>a{
text-decoration: none;
}
.action_delete, .action_red{
color: #a00;
}
.action_delete:hover, .action_red:hover{
color: #ff0000;
}
.action_orange, .action_orange:hover{
color: #d98500;
}
.action_green, .action_green:hover{
color: #006505;
}
.admin_table{
width: 100%;
}
.admin_table>tbody>tr>th{
font-size: 14px;
font-weight: 600;
width: 200px;
vertical-align: top;
text-align: left;
padding: 15px 10px 15px 0;
line-height: 1.3;
}
.admin_table>tbody>tr>td{
margin-bottom: 9px;
padding: 10px;
line-height: 1.3;
vertical-align: middle;
}
.admin_table>tbody>tr>td .form-control{
width: 25em;
}
.admin_table>tbody>tr>td select.form-control{
width: auto;
}
.admin_table>tbody>tr>td .form-control.width_68{
display: inline-block;
width: 68px;
}
.admin_table>tbody>tr>td .form-control.width_15em{
display: inline-block;
width: 15em;
}
.admin_table>tbody>tr>td .input_addition{
display: block;
margin-top: 5px;
}
.admin_table>tbody>tr>td label{
margin: 0;
font-size: 14px;
font-weight: normal;
}
.admin_table>tbody>tr>th.normal{
font-weight: normal;
}
.admin_table>tbody>tr>th label{
margin: 0;
font-size: 14px;
font-weight: 600;
}
.underline{
text-decoration: underline;
}
.admin_table>tbody>tr>th label a{
font-weight: normal;
text-decoration: underline;
}
.admin_table_subject{
display: block;
margin: 0;
font-size: 17px;
font-weight: 600;
}
.admin_table code{
display: inline-block;
margin: 0 1px;
padding: 3px 5px 2px;
width: auto;
font-family: Consolas,Monaco,monospace;
background-color: rgba(0,0,0,.07);
color: #333;
}
.admin_table_comment{
display: block;
margin: 0;
margin-top: 15px;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_single{
display: block;
margin: 0;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_ul{
display: block;
width: 100%;
margin-top: 15px;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_ul ul{
margin-left: 2em;
padding: 0;
list-style: square;
}
.admin_table_comment_ul ul>li{
margin-bottom: 6px;
}
.admin_table_comment_ul ul>li>a{
text-decoration: underline;
}
.admin_table strong{
font-weight: 500;
}
.admin_table textarea{
font-weight: normal;
}
.admin_table .ping_sites{
font-family: Consolas,Monaco,monospace;
unicode-bidi: embed;
}
.admin_table>tbody>tr>th.padding_top_9{
padding-top: 9px;
}
.admin_table>tbody>tr>td .form_group{
margin-bottom: 10px;
}
.admin_table>tbody>tr>td .form_group p{
line-height: 1.5;
}
.admin_table>tbody>tr>td .form-control.full_width{
width: 100%;
}
.inline{
display: inline-block;
}
.input_note{
display: block;
clear: both;
margin: 0;
margin-top: 3px;
font-size: 13px;
font-weight: normal;
}
.input_note.control_width{
width: 27em;
}
.msg_error{
display: block;
clear: both;
margin: 0;
margin-top: 3px;
font-size: 13px;
font-weight: normal;
color: #ff0000;
}
.page_option{
float: left;
position: relative;
width: 100%;
}
.page_option .notify{
background-color: #fff;
border-left: 4px solid transparent;
line-height: 1;
padding: 10px 40px 12px 10px;
font-size: 13px;
font-weight: 400;
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-o-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}
.page_option .notify.success{
border-left-color: #46b450;
}
.page_option .notify.error{
border-left-color: #ff0000;
}
.page_option .close_notify{
color: #666;
border-radius: 99px;
position: absolute;
top: 50%;
right: 0;
margin-top: -23px;
padding: 9px;
}
.form_title{
font-size: 1.1em;
}
.form-group label{
font-weight: normal;
}
.form-group label i{
line-height: 0.7;
}
.width_auto{
width: auto;
}
/* POSTS */
.page_layout{
position: relative;
display: block;
width: 100%;
padding-right: 300px;
}
.page_layout .left_wrapper{
float: left;
display: block;
width: 100%;
}
.page_layout .right_wrapper{
float: right;
margin-right: -300px;
width: 280px;
}
.x_panel{
display: block;
width: 100%;
border: 1px solid #e5e5e5;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
margin-bottom: 20px;
padding: 0;
line-height: 1;
}
.x_panel p.note{
line-height: 1.5;
}
.x_panel.x_none{
background: transparent;
box-shadow: none;
border: none;
}
.x_panel.x_bottom_none{
margin-bottom: 0;
}
.x_title{
position: relative;
display: block;
width: 100%;
padding: 10px;
border-bottom: 1px solid #eee;
}
.x_none .x_title{
padding: 0;
border: none;
}
.x_title.x_title_none{
padding: 0;
border: none;
}
.x_title.x_title_none .radio{
display: block;
padding: 0 10px 0 30px;
}
.x_title.x_title_none .radio label{
padding: 8px 0 10px 0;
}
.x_title h1, .x_title h2, .x_title h3, .x_title h4{
display: block;
width: 100%;
margin: 0;
font-size: 14px;
font-weight: 600;
}
.x_content{
position: relative;
display: block;
width: 100%;
padding: 10px;
}
.x_content.x_content_none{
background-color: transparent;
padding: 0;
}
.x_content .table.border_none, .x_content .table.border_none td{
border: none;
}
.x_content p{
line-height: 1.3;
}
.x_none .x_content{
padding: 0;
}
.x_footer{
position: relative;
display: block;
width: 100%;
padding: 10px;
background-color: #F5F5F5;
border-top: 1px solid #ddd;
}
.x_none .x_footer{
background: transparent;
border: none;
padding: 0;
}
.x_title .radio{
margin: 0;
padding: 0;
}
.x_title .radio label{
display: block;
width: 100%;
cursor: pointer;
font-weight: 500;
font-size: 15px;
}
.x_title .radio input{
margin-top: 1px;
}
.x_title .radio span{
vertical-align: middle;
}
.post_show_all_categories{
max-height: 300px;
overflow-y: auto;
border: 1px solid #eee;
padding: 10px;
}
.post_show_all_categories table{
width: 100%;
}
.post_show_all_categories td{
vertical-align: top;
padding: 3px 0;
}
.post_show_all_categories input[type="checkbox"]{
margin-top: 0;
margin-right: -20px;
vertical-align: top;
}
.post_show_all_categories td label{
font-weight: normal;
cursor: pointer;
vertical-align: top;
padding-left: 23px;
line-height: 1.3;
}
.post_image_choose_from_library, .open_show_tag_feature_area, .open_add_new_category_area{
display: inline-block;
text-decoration: underline;
margin-bottom: 4px;
font-weight: 500;
}
.post_gallery_image .post_image_choose_from_library{
padding: 5px 5px 0 5px;
}
.add_new_category_area{
display: none;
margin-top: 15px;
}
.add_new_category_area.open{
display: block;
}
.post_show_all_categories tr.primary label{
font-weight: 600;
}
.post_show_all_categories td:nth-child(2){
text-align: right;
padding: 3px 5px;
}
.post_add_new_tag .input-group{
margin-bottom: 10px;
}
.bottom_none{
margin-bottom: 0;
}
.post_show_tag_add_new{
margin: 0;
padding: 0;
list-style: none;
}
.post_show_tag_add_new>li{
display: inline-block;
margin-right: 10px;
margin-top: 10px;
}
.post_show_tag_add_new i{
width: 14px;
height: 14px;
text-align: center;
border-radius: 999px;
cursor: pointer;
font-size: 1.1em;
color: #fff;
background-color: #b4b9be;
line-height: 1;
}
.post_show_tag_add_new i:hover{
background-color: #ff0000;
}
.show_tag_feature_area{
display: none;
margin-top: 5px;
border: 1px solid #e5e5e5;
padding: 8px 10px 10px 10px;
background-color: #fff;
}
.show_tag_feature_area.open{
display: block;
}
.post_single_image .img_wrapper{
height: 150px;
}
.bottom_five{
margin-bottom: 5px;
}
.nav-tabs{
border-bottom-color: #ccc;
}
.nav-tabs>li>a{
padding: 7px 10px;
line-height: 19px;
color: #555;
font-size: 14px;
font-weight: 600;
border-radius: 0;
background-color: #E5E5E5;
border: 1px solid #ccc;
text-decoration: none;
}
.nav-tabs>li>a:hover{
border-color: #ccc;
background-color: #fff;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
background-color: #F1F1F1;
border-color: #ccc;
border-bottom-color: transparent;
color: #000;
}
.tab_border .nav-tabs>li.active>a, .tab_border .nav-tabs>li.active>a:focus, .tab_border .nav-tabs>li.active>a:hover{
background-color: #fff;
}
.tab_border .nav-tabs>li>a{
border-radius: 0;
}
.tab_border .tab-content{
padding: 10px;
background-color: #fff;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.tab_border .tab-content.no_padding{
padding: 0;
}
.seo_preview{
font-family: Arial, sans-serif;
font-size: 14px;
}
.seo_preview .preview_title{
color: #1a0dab;
font-size: 18px;
margin-top: 5px;
margin-bottom: 5px;
}
.seo_preview .preview_link{
color: #006621;
margin-bottom: 5px;
}
.seo_preview .preview_description{
color: #545454;
font-size: small;
}
.seo_progress{
height: 8px;
margin-top: 5px;
margin-bottom: 10px;
border-radius: 0;
}
.seo_progress .progress-bar-warning{
background-color: #ee7c1b;
}
.seo_progress .progress-bar-success{
background-color: #7ad03a;
}
.show_gallery_images{
float: left;
width: 100%;
}
.show_gallery_images .img_wrapper{
float: left;
width: 33.333333333%;
height: 89px;
}
.gallery_close_image{
position: absolute;
z-index: 999;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
background-color: rgba(132, 132, 132, 0.3);
opacity: 0.4;
text-align: center;
line-height: 92px;
padding: 29px;
}
.gallery_close_image button{
margin-top: 30px;
width: 20px;
height: 20px;
padding: 0;
text-align: center;
font-size: 24px;
border: none;
color: #e00000;
background-color: transparent;
overflow: hidden;
outline: none;
}
.gallery_close_image:hover{
background-color: rgba(132, 132, 132, 0.5);
opacity: 1;
}
.remove_featured_image{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(132, 132, 132, 0.3);
opacity: 0.4;
text-align: center;
line-height: 130px;
}
.remove_featured_image button{
width: 27px;
height: 27px;
padding: 0;
text-align: center;
border: none;
color: #e00000;
background-color: transparent;
overflow: hidden;
outline: none;
margin-top: 60px;
}
.remove_featured_image button i{
width: 27px;
height: 27px;
font-size: 28px;
}
.remove_featured_image:hover{
background-color: rgba(132, 132, 132, 0.5);
opacity: 1;
}
/* END POSTS */
.set_input_image{
vertical-align: bottom;
}
.set_input_image .img_wrapper{
float: left;
width: 70px;
height: 70px;
}
.set_input_image .open_img_lib{
display: inline-block;
margin-left: 15px;
line-height: 65px;
font-weight: 600;
text-decoration: underline;
}
.set_input_image .remove_featured_image button{
margin-top: 22px;
}
/* PROFILE */
.set_user_avatar .img_wrapper{
float: left;
width: 100px;
height: 100px;
}
.set_user_avatar .remove_featured_image{
line-height: 84px;
}
.set_user_avatar .open_img_lib{
font-weight: 500;
text-decoration: underline;
}
/* END PROFILE */
/* PAGE TABS LINKS */
.page_tab_link{
border-bottom: 1px solid #ccc;
}
.page_tab_link ul{
float: left;
margin: 0;
margin-top: -10px;
padding: 0;
list-style: none;
}
.page_tab_link ul>li{
float: left;
margin-top: 10px;
margin-right: 10px;
}
.page_tab_link ul>li>a{
padding: 7px 10px;
line-height: 32px;
color: #555;
font-size: 14px;
font-weight: 600;
border-radius: 0;
background-color: #E5E5E5;
border: 1px solid #ccc;
text-decoration: none;
}
.page_tab_link ul>li>a:hover{
background-color: #fff;
}
.page_tab_link ul>li.active>a, .page_tab_link ul>li.active>a:focus, .page_tab_link ul>li.active>a:hover{
border-color: #ccc;
border-bottom-color: transparent;
background-color: #F1F1F1;
color: #000;
}
.page_tab_content{
padding-top: 20px;
}
.select_menu_area{
}
.select_menu_area .dropdown-menu{
border-radius: 0;
}
.select_menu_area label{
float: left;
font-weight: normal;
margin-top: 7px;
margin-right: 10px;
}
.select_menu_area label a{
font-weight: normal;
text-decoration: underline;
}
.select_menu_area .dropdown{
float: left;
margin-right: 10px;
}
.sidebar_left{
display: block;
margin-left: 300px;
}
.sidebar_left_sidebar{
display: inline;
width: 280px;
margin-left: -300px;
clear: both;
float: left;
padding-top: 0;
}
.sidebar_left_content{
float: left;
width: 100%;
}
.manage_menu_area{
display: block;
width: 100%;
border: 1px solid #e5e5e5;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
margin-bottom: 20px;
padding: 0;
line-height: 1;
}
.manage_menu_title{
border-bottom: 1px solid #ddd;
background-color: #F5F5F5;
padding: 10px;
}
.manage_menu_title label{
display: inline-block;
margin-right: 10px;
font-weight: normal;
}
.manage_menu_title input.form-control{
display: inline-block;
min-width: 270px;
width: auto;
}
.manage_menu_content{
padding: 10px;
min-height: 80px;
}
.manage_menu_content .manage_menu_content_title{
display: block;
margin-top: 10px;
font-size: 1.3em;
font-weight: 600;
color: #23282d;
}
.manage_menu_content .manage_menu_content_note{
display: block;
margin-bottom: 10px;
}
.manage_menu_footer{
border-top: 1px solid #ddd;
background-color: #F5F5F5;
padding: 10px;
}
.manage_menu_footer .action_delete{
float: left;
margin-top: 5px;
text-decoration: underline;
}
.sidebar_accordion .panel-default>.panel-heading{
padding: 0;
}
.sidebar_accordion .panel-title>.small,
.sidebar_accordion .panel-title>.small>a,
.sidebar_accordion .panel-title>a,
.sidebar_accordion .panel-title>small,
.sidebar_accordion .panel-title>small>a{
display: block;
padding: 10px 15px;
font-size: 14px;
text-decoration: none;
background-color: #f5f5f5;
}
.sidebar_accordion .panel-title>.small.collapsed,
.sidebar_accordion .panel-title>.small>a.collapsed,
.sidebar_accordion .panel-title>a.collapsed,
.sidebar_accordion .panel-title>small.collapsed,
.sidebar_accordion .panel-title>small>a.collapsed{
background-color: #ffffff;
}
.sidebar_accordion .panel-title>.small:hover,
.sidebar_accordion .panel-title>.small>a:hover,
.sidebar_accordion .panel-title>a:hover,
.sidebar_accordion .panel-title>small:hover,
.sidebar_accordion .panel-title>small>a:hover{
background-color: #f5f5f5;
}
.sidebar_accordion .panel-group .panel{
border-radius: 0;
border-top: none;
border-bottom: 1px solid #ddd;
}
.sidebar_accordion .panel-group .panel:first-child{
border-top: 1px solid #ddd;
}
.sidebar_accordion .panel-group .panel+.panel{
margin-top: 0;
}
.sidebar_accordion .add_item_button{
margin-top: 15px;
}
.sidebar_accordion .form-group.form_horizontal{
position: relative;
padding-left: 62px;
}
.sidebar_accordion .form-group.form_horizontal label{
position: absolute;
top: 6px;
left: 0;
}
.sidebar_accordion .form-group.form_horizontal input{
}
.menu_display_locations{
display: block;
width: 100%;
margin-top: 15px;
margin-bottom: 15px;
}
.menu_display_locations table{
width: 100%;
}
.menu_display_locations th{
width: 20%;
font-weight: normal;
font-style: italic;
vertical-align: top;
}
.menu_display_locations td{
width: 80%;
}
.menu_display_locations td label{
font-weight: normal;
}
.menu_display_locations td .form-group{
margin-bottom: 5px;
margin-top: 2px;
}
#list_menu_items{
float: left;
display: block;
width: 100%;
margin-top: 5px;
margin-bottom: 10px;
}
/* END PAGE TABS LINKS */
.seo_point{
display: inline-block;
width: 12px;
height: 12px;
background-color: #bbb;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
-o-border-radius: 12px;
-ms-border-radius: 12px;
border-radius: 12px;
}
.seo_point.bad{
background-color: #cc0000;
}
.seo_point.normal{
background-color: #ff8a00;
}
.seo_point.good{
background-color: #06bc00;
}
.post_comment_columns{
float: left;
}
.post_comment_columns a{
position: relative;
display: inline-block;
background-color: #72777c;
padding: 2px 7px 3px 7px;
min-width: 24px;
text-align: center;
color: #fff;
text-decoration: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
.post_comment_columns a span{
position: absolute;
top: -5px;
left: 100%;
margin-left: -5px;
padding: 0 5px;
min-width: 7px;
height: 19px;
border: 2px solid #fff;
border-radius: 11px;
background: #ca4a1f;
color: #fff;
font-size: 9px;
line-height: 15px;
text-align: center;
}
.post_comment_columns:after{
content: "";
display: block;
margin-left: 8px;
width: 0;
height: 0;
border-top: 5px solid #72777c;
border-right: 5px solid transparent;
}
.post_comment_columns:hover a{
background-color: #0073aa;
}
.post_comment_columns:hover:after{
border-top-color: #0073aa;
}
.font_small{
font-size: 12px;
}
#loading{
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 9999999;
background-color: rgba(0,0,0,0.6);
}
#loading img{
display: block;
width: 40px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px;
}
.footer{
display: block;
width: 100%;
background-color: #F1F1F1;
}
.footer .copyright{
display: block;
text-align: right;
padding: 20px;
font-size: 13px;
}
@media screen and (max-width: 767px){
.header_top{
height: 46px;
}
.header_top_left>ul>li>a{
padding: 0;
}
.header_top_left>ul>li>a>i.dashicons, .header_top_left>ul>li>a>i.dashicons:before{
display: block;
text-indent: 0;
font: 400 32px/1 dashicons;
speak: none;
width: 52px;
height: 46px;
text-align: center;
line-height: 52px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.header_top_left>ul>li>a>i.site_home_icon, .header_top_left>ul>li>a>i.site_home_icon:before{
margin-top: 0;
line-height: 45px;
}
#admin_menu_toggle .ab-icon, #admin_menu_toggle .ab-icon:before{
width: 52px;
height: 46px;
content: "\f228";
display: inline-block;
float: left;
font: 400 40px/45px dashicons;
vertical-align: middle;
outline: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 0;
border: none;
text-align: center;
text-decoration: none;
box-sizing: border-box;
}
.header_top_menu>li>a{
width: 46px;
height: 46px;
padding: 8px 0;
}
.header_top_avatar{
width: 30px;
height: 30px;
}
.header_top_dropdown ul{
position: fixed;
left: 0;
right: 0;
top: 46px;
padding: 10px 0 15px 0;
}
.header_profile_info{
display: block;
width: 100%;
}
.header_profile{
padding: 0;
}
.header_profile_info a{
padding: 10px 15px;
margin: 0;
font-size: 16px;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down{
position: fixed;
top: 46px;
left: 0;
right: 0;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a{
font-size: 16px;
}
.admin_nav_ul>li>a{
font-size: 16px;
}
.admin_nav_ul ul>li>a{
font-size: 16px;
}
.body_wrapper{
padding-top: 0;
margin-top: 46px;
overflow-x: hidden;
}
.body_wrapper.collapsed{
padding-left: 0;
}
.body_wrapper.collapsed .admin_nav{
display: none;
width: 0;
}
.admin_nav.nav_fixed{
position: absolute;
top: 0;
}
.admin_page_wrapper{
padding: 0;
min-height: 100%;
}
.body_wrapper.collapsed .admin_nav.nav_fixed{
left: -35px;
}
.admin_page{
padding-left: 160px;
}
.body_wrapper.collapsed .admin_page{
padding-left: 0;
}
.container-fluid{
padding: 0 10px;
}
.admin_table>tbody>tr>th{
display: block;
width: 100%;
padding: 0;
}
.admin_table>tbody>tr>td{
display: block;
padding: 5px 0;
}
.admin_table>tbody>tr>td .form-control{
width: 100%;
}
.page_layout{
padding: 0;
}
.page_layout .right_wrapper {
float: left;
display: block;
width: 100%;
margin-right: 0;
}
.admin_table_subject{
margin-bottom: 15px;
}
.admin_table_comment{
margin-bottom: 15px;
}
.admin_table .btn_inline{
margin-top: 5px;
}
} | public/contents/admin/css/style.css | html{
height: 100%;
}
body{
height: 100%;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 13px;
background-color: #1b64a0;
}
strong{
font-weight: 600;
}
.form-control, .btn{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
.img_wrapper{
display: block;
position: relative;
margin: 0 auto;
color: #444;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 100%;
}
.img_show{
display: block;
width: 100%;
height: 100%;
position: relative;
background: #eee;
border: 1px solid transparent;
transition: border 0.12s linear;
-webkit-transition: border 0.12s linear;
-moz-transition: border 0.12s linear;
-ms-transition: border 0.12s linear;
-o-transition: border 0.12s linear;
}
.img_thumbnail{
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 1;
-webkit-transition: opacity .1s;
transition: opacity .1s;
border: none;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
-ms-border-radius: 0;
}
.img_centered{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform: translate(50%,50%);
-ms-transform: translate(50%,50%);
transform: translate(50%,50%);
}
.img_centered img{
position: absolute;
top: 0;
left: 0;
max-width: 100%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
img.landscape{
max-height: 100%;
max-width: inherit;
}
img.portrait{
max-width: 100%;
max-height: inherit;
}
textarea{
resize: vertical;
}
body.modal-open{
padding-right: 0!important;
}
.modal-open .modal{
padding-right: 0!important;
padding-left: 0!important;
}
.modal-backdrop.in{
filter: alpha(opacity=70);
opacity: .7;
}
.form-control{
height: 28px;
padding: 0 10px 2px 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
select.form-control.width_auto{
display: inline-block;
width: auto;
}
.form-control.input-lg{
height: 38px;
padding: 0px 10px 3px 10px;
font-size: 1.5em;
}
.form-control[type="color"]{
padding: 0 3px;
}
.form-control.input-sm{
padding: 1px 10px 3px 10px;
}
textarea.form-control{
padding: 5px 10px;
}
.btn{
height: 28px;
padding: 3px 12px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.btn-primary{
background: #0085ba;
border-color: #0073aa #006799 #006799;
color: #fff;
text-decoration: none;
}
.btn-primary:hover{
background: #008ec2;
border-color: #006799;
color: #fff;
}
.btn-default{
background-color: #f7f7f7;
}
.btn-default:hover{
border-color: #999;
color: #23282d;
}
.btn_inline{
display: inline-block;
vertical-align: top;
}
.input-sm, select.input-sm{
height: 29px;
}
input[type=radio], input[type=checkbox]{
border: 1px solid #b4b9be;
background: #fff;
color: #555;
clear: none;
cursor: pointer;
display: inline-block;
line-height: 0;
height: 16px;
margin: -4px 4px 0 0;
outline: 0;
padding: 0!important;
text-align: center;
vertical-align: middle;
width: 16px;
min-width: 16px;
-webkit-appearance: none;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-webkit-transition: .05s border-color ease-in-out;
transition: .05s border-color ease-in-out;
}
input[type=radio]:focus, input[type=checkbox]:focus{
outline: 0;
}
input[type=checkbox]:checked::before{
content: "\f147";
margin: -3px 0 0 -4px;
color: #1e8cbe;
}
input[type=radio]:checked::before, input[type=checkbox]:checked::before{
float: left;
display: inline-block;
vertical-align: middle;
width: 16px;
font: 400 21px/1 dashicons;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input[type=radio]{
-webkit-border-radius: 50%;
border-radius: 50%;
margin-right: 4px;
line-height: 10px;
}
input[type=radio]:checked::before{
content: "\2022";
text-indent: -9999px;
-webkit-border-radius: 50px;
border-radius: 50px;
font-size: 24px;
width: 6px;
height: 6px;
margin: 4px;
line-height: 16px;
background-color: #1e8cbe;
}
@-webkit-keyframes switchon{
from{left: 70px;}
to{left: 0;}
}
@keyframes switchon{
from{left: 70px;}
to{left: 0;}
}
@-webkit-keyframes switchoff{
from{margin-left: 0;}
to{margin-left: 70px;}
}
@keyframes switchoff{
from{margin-left: 0;}
to{margin-left: 70px;}
}
.switch_toggle{
display: block;
width: 144px;
height: 28px;
padding: 1px;
border: 1px solid #ccc;
border-radius: 2px;
background-color: #dcdcdc;
box-shadow: inset 0 0 4px 0 rgba(0,0,0,0.1);
overflow: hidden;
}
.switch_toggle input[type=radio]{
position: relative;
display: inline-block;
padding: 0;
margin: 0;
margin-right: -4px;
width: 70px;
height: 24px;
box-shadow: none;
border: none;
border-radius: 2px;
background-color: transparent;
}
.switch_toggle input[type=radio]::after{
content: attr(content);
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
text-align: center;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size: 13px;
line-height: 1;
padding: 4px 0;
color: #555;
background-color: transparent;
z-index: 99;
}
.switch_toggle input[type=radio]:checked::after{
color: #fff;
}
.switch_toggle input[type=radio]::before{
background-color: transparent;
margin: 0;
}
.switch_toggle input[type=radio].switch_on::before{
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
border-radius: 2px;
z-index: 99;
background-color: #999;
-webkit-animation-name: switchoff;
-webkit-animation-duration: 0.09s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: linear;
animation-name: switchoff;
animation-duration: 0.09s;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
.switch_toggle input[type=radio].switch_on:checked::before{
background-color: #0073AA;
-webkit-animation-name: switchon;
-webkit-animation-duration: 0.09s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: linear;
animation-name: switchon;
animation-duration: 0.09s;
animation-fill-mode: forwards;
animation-timing-function: linear;
}
.header_top{
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 32px;
background-color: #1b64a0;
color: #eee;
z-index: 999;
}
.header_top_left{
float: left;
}
.header_top_left>ul{
float: left;
margin: 0;
padding: 0;
list-style: none;
}
.header_top_left>ul>li{
float: left;
}
.header_top_left>ul>li.li_drop_down{
position: relative;
}
.header_top_left>ul>li.li_drop_down:hover>a{
background-color: #32373c;
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down:hover>a>i{
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down{
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #32373c;
margin: 0;
padding: 0;
list-style: none;
padding: 6px 0;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li{
display: block;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a{
display: block;
min-width: 160px;
padding: 3px 10px;
color: rgba(240,245,250,.7);
text-decoration: none;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a:hover{
color: #00b9eb;
}
.header_top_left>ul>li.li_drop_down:hover ul.ul_drop_down{
display: block;
}
.header_top_left>ul>li>a{
float: left;
color: #eee;
text-decoration: none;
padding: 6px 8px;
}
.header_top_left>ul>li>a:hover{
background-color: #32373c;
color: #00b9eb;
}
.header_top_left>ul>li>a:hover i{
color: #00b9eb;
}
.header_top_left>ul>li>a>i{
color: rgba(240,245,250,.6);
}
.header_top_left>ul>li>a>i.site_home_icon{
margin-top: -2px;
}
.header_top_left>ul>li>a>.dropdown{
float: left;
}
.header_top_menu{
margin: 0;
padding: 0;
list-style: none;
}
.header_top_menu>li{
float: left;
}
.header_top_menu>li:hover{
background-color: #32373C;
}
.header_top_menu>li:hover>ul{
display: block;
}
.header_top_menu>li>a{
float: left;
display: block;
padding: 4px 10px 4px 10px;
color: #eee;
}
.header_top_menu>li>a>span{
float: left;
line-height: 22px;
}
.header_top_avatar{
float: left;
margin-left: 10px;
width: 24px;
height: 24px;
}
.header_top_dropdown{
position: relative;
}
.header_top_dropdown ul{
display: none;
margin: 0;
padding: 0;
list-style: none;
position: absolute;
top: 32px;
right: 0;
background-color: #32373C;
z-index: 999;
}
.header_profile{
position: relative;
min-height: 94px;
min-width: 250px;
padding: 15px;
padding-left: 94px;
}
.header_profile_avatar{
position: absolute;
top: 15px;
left: 15px;
width: 64px;
height: 64px;
}
.header_profile_info{
float: left;
}
.header_profile_info a{
float: left;
display: block;
width: 100%;
margin-bottom: 12px;
color: #eee;
text-decoration: none;
line-height: 1;
white-space: nowrap;
}
.header_profile_info a:last-child{
margin-bottom: 0;
}
.body_wrapper{
display: block;
width: 100%;
height: 100%;
padding-top: 32px;
background-color: #F1F1F1;
}
.admin_nav{
float: left;
width: 160px;
min-height: 100%;
margin-right: -160px;
background-color: #1b64a0;
}
.admin_nav.nav_fixed{
position: fixed;
top: 32px;
left: 0;
}
.body_wrapper.collapsed .admin_nav{
width: 35px;
}
.admin_page{
display: block;
width: 100%;
height: 100%;
padding-left: 160px;
background-color: #1b64a0;
}
.body_wrapper.collapsed .admin_page{
padding-left: 35px;
}
.admin_nav_area{
margin-top: 10px;
margin-bottom: 60px;
}
.admin_nav_ul{
margin: 0;
padding: 0;
list-style: none;
font-size: 14px;
}
.admin_nav_ul>li{
display: block;
}
.admin_nav_ul>li>a{
display: block;
padding: 7px 7px 7px 7px;
color: #eee;
text-decoration: none;
}
.admin_nav_ul>li>a>i{
color: rgba(240,245,250,0.6);
}
.admin_nav_ul>li>a>span{
margin-left: 3px;
}
.admin_nav_ul>li>a .admin_menu_badge{
display: inline-block;
vertical-align: top;
padding: 0px 5px;
min-width: 17px;
height: 17px;
margin-left: 3px;
margin-top: 2px;
font-size: 12px;
font-weight: normal;
text-align: center;
background-color: #D54E21;
color: #fff;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
-o-border-radius: 18px;
-ms-border-radius: 18px;
border-radius: 18px;
text-indent: 1px;
}
.admin_nav_ul>li>a .admin_menu_badge.blue{
background-color: #CA4A1F;
}
.admin_nav_ul>li.active>a .admin_menu_badge.blue{
background-color: #00b9eb;
}
.collapsed .admin_nav_ul>li>a .admin_menu_badge{
display: none;
}
.admin_nav_ul>li.active>a{
position: relative;
background-color: #0073AA;
color: #fff;
}
.admin_nav_ul>li.active>a>i{
color: #fff;
}
.admin_nav_ul>li.active>a::after{
right: 0;
border: 8px solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-right-color: #f1f1f1;
top: 50%;
margin-top: -8px;
}
.body_wrapper.collapsed .admin_nav .admin_nav_ul>li.active>a::after{
border-width: 4px;
margin-top: -4px;
}
.admin_nav_li{
position: relative;
}
.admin_nav_li:hover>a{
background-color: #191E23;
color: #00b9eb;
}
.admin_nav_li.has_sub_menu::after{
right: 0;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-width: 8px;
border-right-color: #32373c;
top: 10px;
z-index: 999;
}
.admin_nav_li.has_sub_menu::after{
border-width: 4px;
margin-top: 3px;
}
.admin_nav_ul .sub_menu{
display: none;
position: absolute;
top: 0;
left: 100%;
min-width: 160px;
margin: 0;
padding: 7px 0 8px;
list-style: none;
background-color: #1A7AD1;
z-index: 999999;
}
.admin_nav_ul .sub_menu.active{
display: block;
}
.admin_nav_ul ul>li{
display: block;
}
.admin_nav_ul ul>li>a{
display: block;
font-size: 13px;
color: rgba(240,245,250,.7);
padding: 3px 10px;
text-decoration: none;
white-space: nowrap;
}
.admin_nav_ul ul>li>a:hover{
color: #00b9eb;
}
.admin_nav_li.active ul{
display: block;
position: static;
}
.body_wrapper.collapsed .admin_nav_li.active ul{
display: none;
position: absolute;
}
.body_wrapper.collapsed .admin_nav_li.active ul.active{
display: block;
}
.admin_nav_ul ul>li.active>a{
color: #fff;
font-weight: 600;
}
#collapse_button{
display: block;
padding: 7px 7px 7px 7px;
color: #eee;
text-decoration: none;
cursor: pointer;
}
#collapse_button:hover{
background-color: #191E23;
}
#collapse_button:hover span{
color: #00b9eb;
}
#collapse_button i{
color: rgba(240,245,250,0.6);
}
#collapse_button .collapse-button-icon::before{
content: "\f148";
display: inline-block;
width: 20px;
height: 20px;
font-size: 20px;
line-height: 1;
font-family: dashicons;
text-decoration: inherit;
font-weight: 400;
font-style: normal;
vertical-align: top;
text-align: center;
-webkit-transition: color .1s ease-in 0;
transition: color .1s ease-in 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: all .1s ease-in-out;
}
.body_wrapper.collapsed #collapse_button .collapse-button-icon::before{
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
#collapse_button span{
margin-left: 3px;
}
.body_wrapper.collapsed .admin_nav .admin_nav_li span{
display: none;
}
.admin_page_wrapper{
display: block;
width: 100%;
padding: 0 5px;
background-color: #f1f1f1;
}
.content_wrapper{
float: left;
width: 100%;
margin-bottom: 50px;
}
.page_title{
float: left;
display: block;
width: 100%;
padding: 20px 0;
}
.page_title h1, .page_title h2, .page_title h3{
float: left;
margin: 0;
font-size: 23px;
font-weight: 400;
margin-right: 15px;
}
.page_title_highlight{
color: #0073AA;
}
.button_title{
float: left;
text-decoration: none;
background-color: #fff;
color: #333;
padding: 4px 10px;
font-weight: 600;
color: #0073AA;
border: 1px solid #ccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-o-border-radius: 2px;
-ms-border-radius: 2px;
border-radius: 2px;
}
.button_title:hover{
text-decoration: none;
background-color: #0073AA;
color: #fff;
border-color: #006391;
}
.button_title .dashicons-plus{
line-height: 1.1;
}
.page_content{
float: left;
display: block;
width: 100%;
}
.table_filter{
display: block;
width: 100%;
margin-bottom: 10px;
}
.table_filter ul{
float: left;
margin: 0;
padding: 0;
list-style: none;
}
.table_filter ul>li{
float: left;
border-left: 1px solid #666;
line-height: 0.7;
}
.table_filter ul>li:first-child{
border-left: none;
}
.table_filter ul>li:first-child a{
padding-left: 0;
}
.table_filter ul>li>a{
float: left;
padding: 2px 7px;
text-decoration: none;
color: #0073aa;
}
.table_filter ul>li>a:hover{
color: #00a0d2;
}
.table_filter ul>li.active>a{
font-weight: 600;
color: #000;
}
.table_filter ul>li>a span{
color: #555d66;
font-weight: normal;
}
.table_top_actions{
display: block;
width: 100%;
}
.table_top_actions_left{
float: left;
margin-bottom: 5px;
text-align: left
}
.table_top_actions_right{
float: right;
margin-bottom: 5px;
text-align: right;
}
.search_loading{
display: none;
float: left;
margin-top: 4px;
margin-right: 5px;
}
.table_search{
float: left;
position: relative;
}
.table_search .clear_search{
position: absolute;
top: 0;
left: 171px;
text-align: center;
width: 28px;
height: 28px;
color: #555;
font-size: 14px;
color: #0073AA;
cursor: pointer;
line-height: 29px;
z-index: 99;
}
.table_search input{
float: left;
width: 200px;
padding-right: 28px;
}
.table_search button{
float: left;
margin-left: 5px;
}
.table_bottom_actions{
display: block;
width: 100%;
}
.pagination{
margin-top: 5px;
margin-bottom: 15px;
}
.table_bottom_actions_left{
display: none!important;
float: left;
margin-top: 5px;
text-align: left;
}
.table_actions{
float: left;
}
.table_actions select{
float: left;
margin-right: 5px;
width: 150px;
}
.table_actions button{
float: left;
}
.table_items{
float: left;
margin-top: 10px;
margin-right: 10px;
}
.table_bottom_actions_right{
float: right;
text-align: right;
}
.table_paginate{
float: left;
display: block;
width: 100%;
text-align: right;
}
.pagination>li:first-child>a, .pagination>li:first-child>span{
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.pagination>li:last-child>a, .pagination>li:last-child>span{
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover{
background-color: #0073AA;
}
.pagination>li>a, .pagination>li>span{
font-size: 14px;
}
.table{
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
background-color: #fff;
margin-bottom: 0;
}
.table>thead>tr>th, .table>thead>tr>td{
border-bottom: 2px solid #ddd;
font-size: 14px;
font-weight: normal;
}
.table>tfoot>tr>th, .table>tfoot>tr>td{
border-top: 2px solid #ddd;
font-size: 14px;
font-weight: normal;
}
.table>tbody>tr>td, .table>tbody>tr>th{
border-top-color: #eee;
}
.table>tbody>tr:nth-child(2n+1){
background-color: #f9f9f9;
}
.table_checkbox{
width: 37px;
}
.table_id{
width: 70px;
}
.table_title{
display: block;
width: 100%;
}
.table_title a{
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
ul.table_title_actions{
display: block;
opacity: 0;
height: 18px;
width: 100%;
margin: 0;
padding: 0;
margin-top: 3px;
list-style: none;
}
.table>tbody>tr:hover ul.table_title_actions{
opacity: 1;
}
ul.table_title_actions>li{
float: left;
padding: 0 5px;
border-right: 1px solid #ddd;
line-height: 1;
}
ul.table_title_actions>li:first-child{
padding-left: 0;
}
ul.table_title_actions>li:last-child{
border: none;
}
ul.table_title_actions>li>a{
text-decoration: none;
}
.action_delete, .action_red{
color: #a00;
}
.action_delete:hover, .action_red:hover{
color: #ff0000;
}
.action_orange, .action_orange:hover{
color: #d98500;
}
.action_green, .action_green:hover{
color: #006505;
}
.admin_table{
width: 100%;
}
.admin_table>tbody>tr>th{
font-size: 14px;
font-weight: 600;
width: 200px;
vertical-align: top;
text-align: left;
padding: 15px 10px 15px 0;
line-height: 1.3;
}
.admin_table>tbody>tr>td{
margin-bottom: 9px;
padding: 10px;
line-height: 1.3;
vertical-align: middle;
}
.admin_table>tbody>tr>td .form-control{
width: 25em;
}
.admin_table>tbody>tr>td select.form-control{
width: auto;
}
.admin_table>tbody>tr>td .form-control.width_68{
display: inline-block;
width: 68px;
}
.admin_table>tbody>tr>td .form-control.width_15em{
display: inline-block;
width: 15em;
}
.admin_table>tbody>tr>td .input_addition{
display: block;
margin-top: 5px;
}
.admin_table>tbody>tr>td label{
margin: 0;
font-size: 14px;
font-weight: normal;
}
.admin_table>tbody>tr>th.normal{
font-weight: normal;
}
.admin_table>tbody>tr>th label{
margin: 0;
font-size: 14px;
font-weight: 600;
}
.underline{
text-decoration: underline;
}
.admin_table>tbody>tr>th label a{
font-weight: normal;
text-decoration: underline;
}
.admin_table_subject{
display: block;
margin: 0;
font-size: 17px;
font-weight: 600;
}
.admin_table code{
display: inline-block;
margin: 0 1px;
padding: 3px 5px 2px;
width: auto;
font-family: Consolas,Monaco,monospace;
background-color: rgba(0,0,0,.07);
color: #333;
}
.admin_table_comment{
display: block;
margin: 0;
margin-top: 15px;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_single{
display: block;
margin: 0;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_ul{
display: block;
width: 100%;
margin-top: 15px;
font-size: 13px;
font-weight: normal;
}
.admin_table_comment_ul ul{
margin-left: 2em;
padding: 0;
list-style: square;
}
.admin_table_comment_ul ul>li{
margin-bottom: 6px;
}
.admin_table_comment_ul ul>li>a{
text-decoration: underline;
}
.admin_table strong{
font-weight: 500;
}
.admin_table textarea{
font-weight: normal;
}
.admin_table .ping_sites{
font-family: Consolas,Monaco,monospace;
unicode-bidi: embed;
}
.admin_table>tbody>tr>th.padding_top_9{
padding-top: 9px;
}
.admin_table>tbody>tr>td .form_group{
margin-bottom: 10px;
}
.admin_table>tbody>tr>td .form_group p{
line-height: 1.5;
}
.admin_table>tbody>tr>td .form-control.full_width{
width: 100%;
}
.inline{
display: inline-block;
}
.input_note{
display: block;
clear: both;
margin: 0;
margin-top: 3px;
font-size: 13px;
font-weight: normal;
}
.input_note.control_width{
width: 27em;
}
.msg_error{
display: block;
clear: both;
margin: 0;
margin-top: 3px;
font-size: 13px;
font-weight: normal;
color: #ff0000;
}
.page_option{
float: left;
position: relative;
width: 100%;
}
.page_option .notify{
background-color: #fff;
border-left: 4px solid transparent;
line-height: 1;
padding: 10px 40px 12px 10px;
font-size: 13px;
font-weight: 400;
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-o-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}
.page_option .notify.success{
border-left-color: #46b450;
}
.page_option .notify.error{
border-left-color: #ff0000;
}
.page_option .close_notify{
color: #666;
border-radius: 99px;
position: absolute;
top: 50%;
right: 0;
margin-top: -23px;
padding: 9px;
}
.form_title{
font-size: 1.1em;
}
.form-group label{
font-weight: normal;
}
.form-group label i{
line-height: 0.7;
}
.width_auto{
width: auto;
}
/* POSTS */
.page_layout{
position: relative;
display: block;
width: 100%;
padding-right: 300px;
}
.page_layout .left_wrapper{
float: left;
display: block;
width: 100%;
}
.page_layout .right_wrapper{
float: right;
margin-right: -300px;
width: 280px;
}
.x_panel{
display: block;
width: 100%;
border: 1px solid #e5e5e5;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
margin-bottom: 20px;
padding: 0;
line-height: 1;
}
.x_panel p.note{
line-height: 1.5;
}
.x_panel.x_none{
background: transparent;
box-shadow: none;
border: none;
}
.x_panel.x_bottom_none{
margin-bottom: 0;
}
.x_title{
position: relative;
display: block;
width: 100%;
padding: 10px;
border-bottom: 1px solid #eee;
}
.x_none .x_title{
padding: 0;
border: none;
}
.x_title.x_title_none{
padding: 0;
border: none;
}
.x_title.x_title_none .radio{
display: block;
padding: 0 10px 0 30px;
}
.x_title.x_title_none .radio label{
padding: 8px 0 10px 0;
}
.x_title h1, .x_title h2, .x_title h3, .x_title h4{
display: block;
width: 100%;
margin: 0;
font-size: 14px;
font-weight: 600;
}
.x_content{
position: relative;
display: block;
width: 100%;
padding: 10px;
}
.x_content.x_content_none{
background-color: transparent;
padding: 0;
}
.x_content .table.border_none, .x_content .table.border_none td{
border: none;
}
.x_content p{
line-height: 1.3;
}
.x_none .x_content{
padding: 0;
}
.x_footer{
position: relative;
display: block;
width: 100%;
padding: 10px;
background-color: #F5F5F5;
border-top: 1px solid #ddd;
}
.x_none .x_footer{
background: transparent;
border: none;
padding: 0;
}
.x_title .radio{
margin: 0;
padding: 0;
}
.x_title .radio label{
display: block;
width: 100%;
cursor: pointer;
font-weight: 500;
font-size: 15px;
}
.x_title .radio input{
margin-top: 1px;
}
.x_title .radio span{
vertical-align: middle;
}
.post_show_all_categories{
max-height: 300px;
overflow-y: auto;
border: 1px solid #eee;
padding: 10px;
}
.post_show_all_categories table{
width: 100%;
}
.post_show_all_categories td{
vertical-align: top;
padding: 3px 0;
}
.post_show_all_categories input[type="checkbox"]{
margin-top: 0;
margin-right: -20px;
vertical-align: top;
}
.post_show_all_categories td label{
font-weight: normal;
cursor: pointer;
vertical-align: top;
padding-left: 23px;
line-height: 1.3;
}
.post_image_choose_from_library, .open_show_tag_feature_area, .open_add_new_category_area{
display: inline-block;
text-decoration: underline;
margin-bottom: 4px;
font-weight: 500;
}
.post_gallery_image .post_image_choose_from_library{
padding: 5px 5px 0 5px;
}
.add_new_category_area{
display: none;
margin-top: 15px;
}
.add_new_category_area.open{
display: block;
}
.post_show_all_categories tr.primary label{
font-weight: 600;
}
.post_show_all_categories td:nth-child(2){
text-align: right;
padding: 3px 5px;
}
.post_add_new_tag .input-group{
margin-bottom: 10px;
}
.bottom_none{
margin-bottom: 0;
}
.post_show_tag_add_new{
margin: 0;
padding: 0;
list-style: none;
}
.post_show_tag_add_new>li{
display: inline-block;
margin-right: 10px;
margin-top: 10px;
}
.post_show_tag_add_new i{
width: 14px;
height: 14px;
text-align: center;
border-radius: 999px;
cursor: pointer;
font-size: 1.1em;
color: #fff;
background-color: #b4b9be;
line-height: 1;
}
.post_show_tag_add_new i:hover{
background-color: #ff0000;
}
.show_tag_feature_area{
display: none;
margin-top: 5px;
border: 1px solid #e5e5e5;
padding: 8px 10px 10px 10px;
background-color: #fff;
}
.show_tag_feature_area.open{
display: block;
}
.post_single_image .img_wrapper{
height: 150px;
}
.bottom_five{
margin-bottom: 5px;
}
.nav-tabs{
border-bottom-color: #ccc;
}
.nav-tabs>li>a{
padding: 7px 10px;
line-height: 19px;
color: #555;
font-size: 14px;
font-weight: 600;
border-radius: 0;
background-color: #E5E5E5;
border: 1px solid #ccc;
text-decoration: none;
}
.nav-tabs>li>a:hover{
border-color: #ccc;
background-color: #fff;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
background-color: #F1F1F1;
border-color: #ccc;
border-bottom-color: transparent;
color: #000;
}
.tab_border .nav-tabs>li.active>a, .tab_border .nav-tabs>li.active>a:focus, .tab_border .nav-tabs>li.active>a:hover{
background-color: #fff;
}
.tab_border .nav-tabs>li>a{
border-radius: 0;
}
.tab_border .tab-content{
padding: 10px;
background-color: #fff;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.tab_border .tab-content.no_padding{
padding: 0;
}
.seo_preview{
font-family: Arial, sans-serif;
font-size: 14px;
}
.seo_preview .preview_title{
color: #1a0dab;
font-size: 18px;
margin-top: 5px;
margin-bottom: 5px;
}
.seo_preview .preview_link{
color: #006621;
margin-bottom: 5px;
}
.seo_preview .preview_description{
color: #545454;
font-size: small;
}
.seo_progress{
height: 8px;
margin-top: 5px;
margin-bottom: 10px;
border-radius: 0;
}
.seo_progress .progress-bar-warning{
background-color: #ee7c1b;
}
.seo_progress .progress-bar-success{
background-color: #7ad03a;
}
.show_gallery_images{
float: left;
width: 100%;
}
.show_gallery_images .img_wrapper{
float: left;
width: 33.333333333%;
height: 89px;
}
.gallery_close_image{
position: absolute;
z-index: 999;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
background-color: rgba(132, 132, 132, 0.3);
opacity: 0.4;
text-align: center;
line-height: 92px;
padding: 29px;
}
.gallery_close_image button{
margin-top: 30px;
width: 20px;
height: 20px;
padding: 0;
text-align: center;
font-size: 24px;
border: none;
color: #e00000;
background-color: transparent;
overflow: hidden;
outline: none;
}
.gallery_close_image:hover{
background-color: rgba(132, 132, 132, 0.5);
opacity: 1;
}
.remove_featured_image{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(132, 132, 132, 0.3);
opacity: 0.4;
text-align: center;
line-height: 130px;
}
.remove_featured_image button{
width: 27px;
height: 27px;
padding: 0;
text-align: center;
border: none;
color: #e00000;
background-color: transparent;
overflow: hidden;
outline: none;
margin-top: 60px;
}
.remove_featured_image button i{
width: 27px;
height: 27px;
font-size: 28px;
}
.remove_featured_image:hover{
background-color: rgba(132, 132, 132, 0.5);
opacity: 1;
}
/* END POSTS */
.set_input_image{
vertical-align: bottom;
}
.set_input_image .img_wrapper{
float: left;
width: 70px;
height: 70px;
}
.set_input_image .open_img_lib{
display: inline-block;
margin-left: 15px;
line-height: 65px;
font-weight: 600;
text-decoration: underline;
}
.set_input_image .remove_featured_image button{
margin-top: 22px;
}
/* PROFILE */
.set_user_avatar .img_wrapper{
float: left;
width: 100px;
height: 100px;
}
.set_user_avatar .remove_featured_image{
line-height: 84px;
}
.set_user_avatar .open_img_lib{
font-weight: 500;
text-decoration: underline;
}
/* END PROFILE */
/* PAGE TABS LINKS */
.page_tab_link{
border-bottom: 1px solid #ccc;
}
.page_tab_link ul{
float: left;
margin: 0;
margin-top: -10px;
padding: 0;
list-style: none;
}
.page_tab_link ul>li{
float: left;
margin-top: 10px;
margin-right: 10px;
}
.page_tab_link ul>li>a{
padding: 7px 10px;
line-height: 32px;
color: #555;
font-size: 14px;
font-weight: 600;
border-radius: 0;
background-color: #E5E5E5;
border: 1px solid #ccc;
text-decoration: none;
}
.page_tab_link ul>li>a:hover{
background-color: #fff;
}
.page_tab_link ul>li.active>a, .page_tab_link ul>li.active>a:focus, .page_tab_link ul>li.active>a:hover{
border-color: #ccc;
border-bottom-color: transparent;
background-color: #F1F1F1;
color: #000;
}
.page_tab_content{
padding-top: 20px;
}
.select_menu_area{
}
.select_menu_area .dropdown-menu{
border-radius: 0;
}
.select_menu_area label{
float: left;
font-weight: normal;
margin-top: 7px;
margin-right: 10px;
}
.select_menu_area label a{
font-weight: normal;
text-decoration: underline;
}
.select_menu_area .dropdown{
float: left;
margin-right: 10px;
}
.sidebar_left{
display: block;
margin-left: 300px;
}
.sidebar_left_sidebar{
display: inline;
width: 280px;
margin-left: -300px;
clear: both;
float: left;
padding-top: 0;
}
.sidebar_left_content{
float: left;
width: 100%;
}
.manage_menu_area{
display: block;
width: 100%;
border: 1px solid #e5e5e5;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
margin-bottom: 20px;
padding: 0;
line-height: 1;
}
.manage_menu_title{
border-bottom: 1px solid #ddd;
background-color: #F5F5F5;
padding: 10px;
}
.manage_menu_title label{
display: inline-block;
margin-right: 10px;
font-weight: normal;
}
.manage_menu_title input.form-control{
display: inline-block;
min-width: 270px;
width: auto;
}
.manage_menu_content{
padding: 10px;
min-height: 80px;
}
.manage_menu_content .manage_menu_content_title{
display: block;
margin-top: 10px;
font-size: 1.3em;
font-weight: 600;
color: #23282d;
}
.manage_menu_content .manage_menu_content_note{
display: block;
margin-bottom: 10px;
}
.manage_menu_footer{
border-top: 1px solid #ddd;
background-color: #F5F5F5;
padding: 10px;
}
.manage_menu_footer .action_delete{
float: left;
margin-top: 5px;
text-decoration: underline;
}
.sidebar_accordion .panel-default>.panel-heading{
padding: 0;
}
.sidebar_accordion .panel-title>.small,
.sidebar_accordion .panel-title>.small>a,
.sidebar_accordion .panel-title>a,
.sidebar_accordion .panel-title>small,
.sidebar_accordion .panel-title>small>a{
display: block;
padding: 10px 15px;
font-size: 14px;
text-decoration: none;
background-color: #f5f5f5;
}
.sidebar_accordion .panel-title>.small.collapsed,
.sidebar_accordion .panel-title>.small>a.collapsed,
.sidebar_accordion .panel-title>a.collapsed,
.sidebar_accordion .panel-title>small.collapsed,
.sidebar_accordion .panel-title>small>a.collapsed{
background-color: #ffffff;
}
.sidebar_accordion .panel-title>.small:hover,
.sidebar_accordion .panel-title>.small>a:hover,
.sidebar_accordion .panel-title>a:hover,
.sidebar_accordion .panel-title>small:hover,
.sidebar_accordion .panel-title>small>a:hover{
background-color: #f5f5f5;
}
.sidebar_accordion .panel-group .panel{
border-radius: 0;
border-top: none;
border-bottom: 1px solid #ddd;
}
.sidebar_accordion .panel-group .panel:first-child{
border-top: 1px solid #ddd;
}
.sidebar_accordion .panel-group .panel+.panel{
margin-top: 0;
}
.sidebar_accordion .add_item_button{
margin-top: 15px;
}
.sidebar_accordion .form-group.form_horizontal{
position: relative;
padding-left: 62px;
}
.sidebar_accordion .form-group.form_horizontal label{
position: absolute;
top: 6px;
left: 0;
}
.sidebar_accordion .form-group.form_horizontal input{
}
.menu_display_locations{
display: block;
width: 100%;
margin-top: 15px;
margin-bottom: 15px;
}
.menu_display_locations table{
width: 100%;
}
.menu_display_locations th{
width: 20%;
font-weight: normal;
font-style: italic;
vertical-align: top;
}
.menu_display_locations td{
width: 80%;
}
.menu_display_locations td label{
font-weight: normal;
}
.menu_display_locations td .form-group{
margin-bottom: 5px;
margin-top: 2px;
}
#list_menu_items{
float: left;
display: block;
width: 100%;
margin-top: 5px;
margin-bottom: 10px;
}
/* END PAGE TABS LINKS */
.seo_point{
display: inline-block;
width: 12px;
height: 12px;
background-color: #bbb;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
-o-border-radius: 12px;
-ms-border-radius: 12px;
border-radius: 12px;
}
.seo_point.bad{
background-color: #cc0000;
}
.seo_point.normal{
background-color: #ff8a00;
}
.seo_point.good{
background-color: #06bc00;
}
.post_comment_columns{
float: left;
}
.post_comment_columns a{
position: relative;
display: inline-block;
background-color: #72777c;
padding: 2px 7px 3px 7px;
min-width: 24px;
text-align: center;
color: #fff;
text-decoration: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
}
.post_comment_columns a span{
position: absolute;
top: -5px;
left: 100%;
margin-left: -5px;
padding: 0 5px;
min-width: 7px;
height: 19px;
border: 2px solid #fff;
border-radius: 11px;
background: #ca4a1f;
color: #fff;
font-size: 9px;
line-height: 15px;
text-align: center;
}
.post_comment_columns:after{
content: "";
display: block;
margin-left: 8px;
width: 0;
height: 0;
border-top: 5px solid #72777c;
border-right: 5px solid transparent;
}
.post_comment_columns:hover a{
background-color: #0073aa;
}
.post_comment_columns:hover:after{
border-top-color: #0073aa;
}
.font_small{
font-size: 12px;
}
#loading{
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: 9999999;
background-color: rgba(0,0,0,0.6);
}
#loading img{
display: block;
width: 40px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px;
}
.footer{
display: block;
width: 100%;
background-color: #F1F1F1;
}
.footer .copyright{
display: block;
text-align: right;
padding: 20px;
font-size: 13px;
}
@media screen and (max-width: 767px){
.header_top{
height: 46px;
}
.header_top_left>ul>li>a{
padding: 0;
}
.header_top_left>ul>li>a>i.dashicons, .header_top_left>ul>li>a>i.dashicons:before{
display: block;
text-indent: 0;
font: 400 32px/1 dashicons;
speak: none;
width: 52px;
height: 46px;
text-align: center;
line-height: 52px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.header_top_left>ul>li>a>i.site_home_icon, .header_top_left>ul>li>a>i.site_home_icon:before{
margin-top: 0;
line-height: 45px;
}
#admin_menu_toggle .ab-icon, #admin_menu_toggle .ab-icon:before{
width: 52px;
height: 46px;
content: "\f228";
display: inline-block;
float: left;
font: 400 40px/45px dashicons;
vertical-align: middle;
outline: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 0;
border: none;
text-align: center;
text-decoration: none;
box-sizing: border-box;
}
.header_top_menu>li>a{
width: 46px;
height: 46px;
padding: 8px 0;
}
.header_top_avatar{
width: 30px;
height: 30px;
}
.header_top_dropdown ul{
position: fixed;
left: 0;
right: 0;
top: 46px;
padding: 10px 0 15px 0;
}
.header_profile_info{
display: block;
width: 100%;
}
.header_profile{
padding: 0;
}
.header_profile_info a{
padding: 10px 15px;
margin: 0;
font-size: 16px;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down{
position: fixed;
top: 46px;
left: 0;
right: 0;
}
.header_top_left>ul>li.li_drop_down ul.ul_drop_down>li>a{
font-size: 16px;
}
.admin_nav_ul>li>a{
font-size: 16px;
}
.admin_nav_ul ul>li>a{
font-size: 16px;
}
.body_wrapper{
padding-top: 0;
margin-top: 46px;
overflow-x: hidden;
}
.body_wrapper.collapsed{
padding-left: 0;
}
.body_wrapper.collapsed .admin_nav{
display: none;
width: 0;
}
.admin_nav.nav_fixed{
position: absolute;
top: 0;
}
.admin_page_wrapper{
padding: 0;
min-height: 100%;
}
.body_wrapper.collapsed .admin_nav.nav_fixed{
left: -35px;
}
.admin_page{
padding-left: 160px;
}
.body_wrapper.collapsed .admin_page{
padding-left: 0;
}
.container-fluid{
padding: 0 10px;
}
.admin_table>tbody>tr>th{
display: block;
width: 100%;
padding: 0;
}
.admin_table>tbody>tr>td{
display: block;
padding: 5px 0;
}
.admin_table>tbody>tr>td .form-control{
width: 100%;
}
.page_layout{
padding: 0;
}
.page_layout .right_wrapper {
float: left;
display: block;
width: 100%;
margin-right: 0;
}
.admin_table_subject{
margin-bottom: 15px;
}
.admin_table_comment{
margin-bottom: 15px;
}
.admin_table .btn_inline{
margin-top: 5px;
}
} | 0.318061 | 0.054929 |
@charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 <NAME>
*/
.fp-enabled body,.mfp-arrow,.owl-carousel,.owl-carousel .owl-item,.owl-theme .owl-dots,.owl-theme .owl-nav,html.fp-enabled {
-webkit-tap-highlight-color: transparent
}
.hamburger--3dx .hamburger-box,.hamburger--3dx-r .hamburger-box,.hamburger--3dxy .hamburger-box,.hamburger--3dxy-r .hamburger-box,.hamburger--3dy .hamburger-box,.hamburger--3dy-r .hamburger-box {
perspective: 80px
}
.fp-controlArrow,.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
cursor: pointer;
-khtml-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none
}
#fp-nav ul li a,.fp-slidesNav ul li a,.mfp-close,.mm-listview a,.mm-listview a:hover,.mm-navbar a,.mm-navbar a:hover {
text-decoration: none
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
@-webkit-keyframes bounce {
0%,100%,20%,53%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
40%,43% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0)
}
70% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-15px,0);
transform: translate3d(0,-15px,0)
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0)
}
}
@keyframes bounce {
0%,100%,20%,53%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
40%,43% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0)
}
70% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-15px,0);
transform: translate3d(0,-15px,0)
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0)
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom
}
@-webkit-keyframes flash {
0%,100%,50% {
opacity: 1
}
25%,75% {
opacity: 0
}
}
@keyframes flash {
0%,100%,50% {
opacity: 1
}
25%,75% {
opacity: 0
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash
}
@-webkit-keyframes pulse {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
50% {
-webkit-transform: scale3d(1.05,1.05,1.05);
transform: scale3d(1.05,1.05,1.05)
}
}
@keyframes pulse {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
50% {
-webkit-transform: scale3d(1.05,1.05,1.05);
transform: scale3d(1.05,1.05,1.05)
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse
}
@-webkit-keyframes rubberBand {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
30% {
-webkit-transform: scale3d(1.25,.75,1);
transform: scale3d(1.25,.75,1)
}
40% {
-webkit-transform: scale3d(.75,1.25,1);
transform: scale3d(.75,1.25,1)
}
50% {
-webkit-transform: scale3d(1.15,.85,1);
transform: scale3d(1.15,.85,1)
}
65% {
-webkit-transform: scale3d(.95,1.05,1);
transform: scale3d(.95,1.05,1)
}
75% {
-webkit-transform: scale3d(1.05,.95,1);
transform: scale3d(1.05,.95,1)
}
}
@keyframes rubberBand {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
30% {
-webkit-transform: scale3d(1.25,.75,1);
transform: scale3d(1.25,.75,1)
}
40% {
-webkit-transform: scale3d(.75,1.25,1);
transform: scale3d(.75,1.25,1)
}
50% {
-webkit-transform: scale3d(1.15,.85,1);
transform: scale3d(1.15,.85,1)
}
65% {
-webkit-transform: scale3d(.95,1.05,1);
transform: scale3d(.95,1.05,1)
}
75% {
-webkit-transform: scale3d(1.05,.95,1);
transform: scale3d(1.05,.95,1)
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand
}
@-webkit-keyframes shake {
0%,100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
10%,30%,50%,70%,90% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
20%,40%,60%,80% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
}
@keyframes shake {
0%,100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
10%,30%,50%,70%,90% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
20%,40%,60%,80% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0,0,1,15deg);
transform: rotate3d(0,0,1,15deg)
}
40% {
-webkit-transform: rotate3d(0,0,1,-10deg);
transform: rotate3d(0,0,1,-10deg)
}
60% {
-webkit-transform: rotate3d(0,0,1,5deg);
transform: rotate3d(0,0,1,5deg)
}
80% {
-webkit-transform: rotate3d(0,0,1,-5deg);
transform: rotate3d(0,0,1,-5deg)
}
100% {
-webkit-transform: rotate3d(0,0,1,0deg);
transform: rotate3d(0,0,1,0deg)
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0,0,1,15deg);
transform: rotate3d(0,0,1,15deg)
}
40% {
-webkit-transform: rotate3d(0,0,1,-10deg);
transform: rotate3d(0,0,1,-10deg)
}
60% {
-webkit-transform: rotate3d(0,0,1,5deg);
transform: rotate3d(0,0,1,5deg)
}
80% {
-webkit-transform: rotate3d(0,0,1,-5deg);
transform: rotate3d(0,0,1,-5deg)
}
100% {
-webkit-transform: rotate3d(0,0,1,0deg);
transform: rotate3d(0,0,1,0deg)
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing
}
@-webkit-keyframes tada {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
10%,20% {
-webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
}
30%,50%,70%,90% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
}
40%,60%,80% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
}
}
@keyframes tada {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
10%,20% {
-webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
}
30%,50%,70%,90% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
}
40%,60%,80% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada
}
@-webkit-keyframes wobble {
0%,100% {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
}
30% {
-webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
}
45% {
-webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
}
60% {
-webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
}
75% {
-webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
}
}
@keyframes wobble {
0%,100% {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
}
30% {
-webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
}
45% {
-webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
}
60% {
-webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
}
75% {
-webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes bounceIn {
0%,100%,20%,40%,60%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
20% {
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
40% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03,1.03,1.03);
transform: scale3d(1.03,1.03,1.03)
}
80% {
-webkit-transform: scale3d(.97,.97,.97);
transform: scale3d(.97,.97,.97)
}
100% {
opacity: 1;
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
}
@keyframes bounceIn {
0%,100%,20%,40%,60%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
20% {
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
40% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03,1.03,1.03);
transform: scale3d(1.03,1.03,1.03)
}
80% {
-webkit-transform: scale3d(.97,.97,.97);
transform: scale3d(.97,.97,.97)
}
100% {
opacity: 1;
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s
}
.bounceOut,.flipOutX {
-webkit-animation-duration: .75s
}
@-webkit-keyframes bounceInDown {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,-3000px,0);
transform: translate3d(0,-3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,25px,0);
transform: translate3d(0,25px,0)
}
75% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
90% {
-webkit-transform: translate3d(0,5px,0);
transform: translate3d(0,5px,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInDown {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,-3000px,0);
transform: translate3d(0,-3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,25px,0);
transform: translate3d(0,25px,0)
}
75% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
90% {
-webkit-transform: translate3d(0,5px,0);
transform: translate3d(0,5px,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px,0,0);
transform: translate3d(-3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px,0,0);
transform: translate3d(25px,0,0)
}
75% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
90% {
-webkit-transform: translate3d(5px,0,0);
transform: translate3d(5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInLeft {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px,0,0);
transform: translate3d(-3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px,0,0);
transform: translate3d(25px,0,0)
}
75% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
90% {
-webkit-transform: translate3d(5px,0,0);
transform: translate3d(5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px,0,0);
transform: translate3d(3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px,0,0);
transform: translate3d(-25px,0,0)
}
75% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
90% {
-webkit-transform: translate3d(-5px,0,0);
transform: translate3d(-5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInRight {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px,0,0);
transform: translate3d(3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px,0,0);
transform: translate3d(-25px,0,0)
}
75% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
90% {
-webkit-transform: translate3d(-5px,0,0);
transform: translate3d(-5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,3000px,0);
transform: translate3d(0,3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
75% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
90% {
-webkit-transform: translate3d(0,-5px,0);
transform: translate3d(0,-5px,0)
}
100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
@keyframes bounceInUp {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,3000px,0);
transform: translate3d(0,3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
75% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
90% {
-webkit-transform: translate3d(0,-5px,0);
transform: translate3d(0,-5px,0)
}
100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
50%,55% {
opacity: 1;
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
50%,55% {
opacity: 1;
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
animation-duration: .75s
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px,0,0);
transform: translate3d(20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px,0,0);
transform: translate3d(20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px,0,0);
transform: translate3d(-20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px,0,0);
transform: translate3d(-20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1
}
100% {
opacity: 0
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
}
@keyframes fadeOutDown {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
}
@keyframes fadeOutRight {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
}
@keyframes fadeOutUp {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
transform: perspective(400px) rotate3d(0,1,0,-360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(.95,.95,.95);
transform: perspective(400px) scale3d(.95,.95,.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
transform: perspective(400px) rotate3d(0,1,0,-360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(.95,.95,.95);
transform: perspective(400px) scale3d(.95,.95,.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
transform: perspective(400px) rotate3d(1,0,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
transform: perspective(400px) rotate3d(1,0,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
transform: perspective(400px) rotate3d(1,0,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
transform: perspective(400px) rotate3d(1,0,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInX {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipInX;
animation-name: flipInX
}
.flipInY,.flipOutX {
-webkit-backface-visibility: visible!important
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
transform: perspective(400px) rotate3d(0,1,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
transform: perspective(400px) rotate3d(0,1,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
transform: perspective(400px) rotate3d(0,1,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
transform: perspective(400px) rotate3d(0,1,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
transform: perspective(400px) rotate3d(0,1,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
transform: perspective(400px) rotate3d(0,1,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInY {
backface-visibility: visible!important;
-webkit-animation-name: flipInY;
animation-name: flipInY
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
opacity: 0
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
opacity: 0
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
animation-duration: .75s;
backface-visibility: visible!important
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
transform: perspective(400px) rotate3d(0,1,0,-15deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
opacity: 0
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
transform: perspective(400px) rotate3d(0,1,0,-15deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
opacity: 0
}
}
.flipOutY {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
-webkit-animation-duration: .75s;
animation-duration: .75s
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%,0,0) skewX(-30deg);
transform: translate3d(100%,0,0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%,0,0) skewX(-30deg);
transform: translate3d(100%,0,0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity: 1
}
100% {
-webkit-transform: translate3d(100%,0,0) skewX(30deg);
transform: translate3d(100%,0,0) skewX(30deg);
opacity: 0
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1
}
100% {
-webkit-transform: translate3d(100%,0,0) skewX(30deg);
transform: translate3d(100%,0,0) skewX(30deg);
opacity: 0
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,-200deg);
transform: rotate3d(0,0,1,-200deg);
opacity: 0
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,-200deg);
transform: rotate3d(0,0,1,-200deg);
opacity: 0
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-90deg);
transform: rotate3d(0,0,1,-90deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-90deg);
transform: rotate3d(0,0,1,-90deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,200deg);
transform: rotate3d(0,0,1,200deg);
opacity: 0
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,200deg);
transform: rotate3d(0,0,1,200deg);
opacity: 0
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,90deg);
transform: rotate3d(0,0,1,90deg);
opacity: 0
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,90deg);
transform: rotate3d(0,0,1,90deg);
opacity: 0
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%,60% {
-webkit-transform: rotate3d(0,0,1,80deg);
transform: rotate3d(0,0,1,80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%,80% {
-webkit-transform: rotate3d(0,0,1,60deg);
transform: rotate3d(0,0,1,60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
100% {
-webkit-transform: translate3d(0,700px,0);
transform: translate3d(0,700px,0);
opacity: 0
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%,60% {
-webkit-transform: rotate3d(0,0,1,80deg);
transform: rotate3d(0,0,1,80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%,80% {
-webkit-transform: rotate3d(0,0,1,60deg);
transform: rotate3d(0,0,1,60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
100% {
-webkit-transform: translate3d(0,700px,0);
transform: translate3d(0,700px,0);
opacity: 0
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn
}
@-webkit-keyframes rollOut {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
}
}
@keyframes rollOut {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
100% {
opacity: 0
}
}
@keyframes zoomOut {
0% {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
100% {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px,0,0);
transform: scale(.1) translate3d(-2000px,0,0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px,0,0);
transform: scale(.1) translate3d(-2000px,0,0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px,0,0);
transform: scale(.1) translate3d(2000px,0,0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px,0,0);
transform: scale(.1) translate3d(2000px,0,0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%)
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%)
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%)
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%)
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%)
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%)
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp
}
/*!
* fullPage 2.9.4
* https://github.com/alvarotrigo/fullPage.js
* MIT licensed
*
* Copyright (C) 2013 alvarot<EMAIL>.<EMAIL> - A project by <NAME>
*/
.fp-enabled body,html.fp-enabled {
margin: 0;
padding: 0;
overflow: hidden
}
#superContainer {
height: 100%;
position: relative;
-ms-touch-action: none;
touch-action: none
}
.fp-section {
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.fp-slide {
float: left
}
.fp-slide,.fp-slidesContainer {
height: 100%;
display: block
}
.fp-slides {
z-index: 1;
height: 100%;
overflow: hidden;
position: relative;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out
}
.fp-section.fp-table,.fp-slide.fp-table {
display: table;
table-layout: fixed;
width: 100%
}
.fp-tableCell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%
}
.fp-slidesContainer {
float: left;
position: relative
}
.fp-controlArrow {
position: absolute;
z-index: 4;
top: 50%;
width: 0;
height: 0;
border-style: solid;
margin-top: -38px;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
#fp-nav,.fp-slidesNav {
opacity: 1;
-webkit-transform: translate3d(0,0,0)
}
.fp-controlArrow.fp-prev {
left: 15px;
width: 0;
border-width: 38.5px 34px 38.5px 0;
border-color: transparent #fff transparent transparent
}
.fp-controlArrow.fp-next {
right: 15px;
border-width: 38.5px 0 38.5px 34px;
border-color: transparent transparent transparent #fff
}
.fp-scrollable {
overflow: hidden;
position: relative
}
.fp-scroller {
overflow: hidden
}
.iScrollIndicator {
border: 0!important
}
.fp-notransition {
-webkit-transition: none!important;
transition: none!important
}
#fp-nav {
position: fixed;
z-index: 99;
margin-top: -32px;
top: 50%
}
#fp-nav.right {
right: 17px
}
#fp-nav.left {
left: 17px
}
.fp-slidesNav {
position: absolute;
z-index: 4;
left: 50%;
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.fp-slidesNav.bottom {
bottom: 17px
}
.fp-slidesNav.top {
top: 17px
}
#fp-nav ul,.fp-slidesNav ul {
margin: 0;
padding: 0
}
#fp-nav ul li,.fp-slidesNav ul li {
display: block;
width: 14px;
height: 13px;
margin: 7px;
position: relative
}
.fp-slidesNav ul li {
display: inline-block
}
#fp-nav ul li a,.fp-slidesNav ul li a {
display: block;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer
}
#fp-nav ul li a.active span,#fp-nav ul li:hover a.active span,.fp-slidesNav ul li a.active span,.fp-slidesNav ul li:hover a.active span {
height: 12px;
width: 12px;
margin: -6px 0 0 -6px;
border-radius: 100%
}
#fp-nav ul li a span,.fp-slidesNav ul li a span {
border-radius: 50%;
position: absolute;
z-index: 1;
height: 4px;
width: 4px;
border: 0;
background: #fff;
left: 50%;
top: 50%;
margin: -2px 0 0 -2px;
-webkit-transition: all .1s ease-in-out;
-moz-transition: all .1s ease-in-out;
-o-transition: all .1s ease-in-out;
transition: all .1s ease-in-out
}
#fp-nav ul li:hover a span,.fp-slidesNav ul li:hover a span {
width: 10px;
height: 10px;
margin: -5px 0 0 -5px
}
#fp-nav ul li .fp-tooltip {
position: absolute;
top: -2px;
color: #fff;
font-size: 14px;
font-family: arial,helvetica,sans-serif;
white-space: nowrap;
max-width: 220px;
overflow: hidden;
display: block;
opacity: 0;
width: 0;
cursor: pointer
}
#fp-nav ul li:hover .fp-tooltip,#fp-nav.fp-show-active a.active+.fp-tooltip {
-webkit-transition: opacity .2s ease-in;
transition: opacity .2s ease-in;
width: auto;
opacity: 1
}
#fp-nav ul li .fp-tooltip.right {
right: 20px
}
#fp-nav ul li .fp-tooltip.left {
left: 20px
}
.fp-auto-height .fp-slide,.fp-auto-height .fp-tableCell,.fp-auto-height.fp-section,.fp-responsive .fp-auto-height-responsive .fp-slide,.fp-responsive .fp-auto-height-responsive .fp-tableCell,.fp-responsive .fp-auto-height-responsive.fp-section {
height: auto!important
}
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.custom-icon {
font-size:24px;
color:#ffffff;
}
.hamburger {
padding: 0;
display: inline-block;
cursor: pointer;
transition-property: opacity,filter;
transition-duration: .15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible
}
.hamburger--emphatic,.hamburger--emphatic-r,.mfp-bg {
overflow: hidden
}
.hamburger:hover {
opacity: .7
}
.hamburger-box {
width: 30px;
height: 24px;
display: inline-block;
position: relative
}
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px
}
.hamburger-inner,.hamburger-inner::after,.hamburger-inner::before {
width: 30px;
height: 4px;
background-color: #3BCCBB;
border-radius: 0;
position: absolute;
transition-property: transform;
transition-duration: .15s;
transition-timing-function: ease;
}
.hamburger-inner::after,.hamburger-inner::before {
content: "";
display: block;
}
.hamburger-inner::before {
top: -10px
}
.hamburger-inner::after {
bottom: -10px
}
.hamburger--3dx .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx .hamburger-inner::after,.hamburger--3dx .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx.is-active .hamburger-inner {
background-color: transparent;
transform: rotateY(180deg)
}
.hamburger--3dx.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dx.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dx-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx-r .hamburger-inner::after,.hamburger--3dx-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateY(-180deg)
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dy .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy .hamburger-inner::after,.hamburger--3dy .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(-180deg)
}
.hamburger--3dy.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dy.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dy-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy-r .hamburger-inner::after,.hamburger--3dy-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg)
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dxy .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy .hamburger-inner::after,.hamburger--3dxy .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg)
}
.hamburger--3dxy.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dxy.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dxy-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy-r .hamburger-inner::after,.hamburger--3dxy-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg)
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--arrow.is-active .hamburger-inner::before {
transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrow.is-active .hamburger-inner::after {
transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrow-r.is-active .hamburger-inner::before {
transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowalt .hamburger-inner::before {
transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt .hamburger-inner::after {
transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
top: 0;
transform: translate3d(-8px,-10px,0) rotate(-45deg) scale(.7,1);
transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
bottom: 0;
transform: translate3d(-8px,10px,0) rotate(45deg) scale(.7,1);
transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt-r .hamburger-inner::before {
transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt-r .hamburger-inner::after {
transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
top: 0;
transform: translate3d(8px,-10px,0) rotate(45deg) scale(.7,1);
transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
bottom: 0;
transform: translate3d(8px,10px,0) rotate(-45deg) scale(.7,1);
transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowturn.is-active .hamburger-inner {
transform: rotate(-180deg)
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
transform: rotate(-180deg)
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner::after,.hamburger--boring .hamburger-inner::before {
transition-property: none
}
.hamburger--boring.is-active .hamburger-inner {
transform: rotate(45deg)
}
.hamburger--boring.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--boring.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg)
}
.hamburger--collapse .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: .13s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear
}
.hamburger--collapse .hamburger-inner::before {
transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(-45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear
}
.hamburger--collapse.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-90deg);
transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse-r .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: .13s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse-r .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear
}
.hamburger--collapse-r .hamburger-inner::before {
transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse-r.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(90deg);
transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1)
}
.hamburger--elastic .hamburger-inner {
top: 2px;
transition-duration: 275ms;
transition-timing-function: cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic .hamburger-inner::before {
top: 10px;
transition: opacity 125ms 275ms ease
}
.hamburger--elastic .hamburger-inner::after {
top: 20px;
transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(135deg);
transition-delay: 75ms
}
.hamburger--elastic.is-active .hamburger-inner::before {
transition-delay: 0s;
opacity: 0
}
.hamburger--elastic.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(-270deg);
transition-delay: 75ms
}
.hamburger--elastic-r .hamburger-inner {
top: 2px;
transition-duration: 275ms;
transition-timing-function: cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic-r .hamburger-inner::before {
top: 10px;
transition: opacity 125ms 275ms ease
}
.hamburger--elastic-r .hamburger-inner::after {
top: 20px;
transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic-r.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(-135deg);
transition-delay: 75ms
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
transition-delay: 0s;
opacity: 0
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(270deg);
transition-delay: 75ms
}
.hamburger--emphatic .hamburger-inner {
transition: background-color 125ms 175ms ease-in
}
.hamburger--emphatic .hamburger-inner::before {
left: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in
}
.hamburger--emphatic .hamburger-inner::after {
top: 10px;
right: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in
}
.hamburger--emphatic.is-active .hamburger-inner {
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent
}
.hamburger--emphatic.is-active .hamburger-inner::before {
left: -80px;
top: -80px;
transform: translate3d(80px,80px,0) rotate(45deg);
transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic.is-active .hamburger-inner::after {
right: -80px;
top: -80px;
transform: translate3d(-80px,80px,0) rotate(-45deg);
transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic-r .hamburger-inner {
transition: background-color 125ms 175ms ease-in
}
.hamburger--emphatic-r .hamburger-inner::before {
left: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in
}
.hamburger--emphatic-r .hamburger-inner::after {
top: 10px;
right: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in
}
.hamburger--emphatic-r.is-active .hamburger-inner {
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
left: -80px;
top: 80px;
transform: translate3d(80px,-80px,0) rotate(-45deg);
transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
right: -80px;
top: 80px;
transform: translate3d(-80px,-80px,0) rotate(45deg);
transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--minus .hamburger-inner::after,.hamburger--minus .hamburger-inner::before {
transition: bottom 80ms 0s ease-out,top 80ms 0s ease-out,opacity 0s linear
}
.hamburger--minus.is-active .hamburger-inner::after,.hamburger--minus.is-active .hamburger-inner::before {
opacity: 0;
transition: bottom 80ms ease-out,top 80ms ease-out,opacity 0s 80ms linear
}
.hamburger--slider .hamburger-inner::before,.hamburger--slider-r .hamburger-inner::before {
transition-property: transform,opacity;
transition-timing-function: ease;
transition-duration: .15s
}
.hamburger--minus.is-active .hamburger-inner::before {
top: 0
}
.hamburger--minus.is-active .hamburger-inner::after {
bottom: 0
}
.hamburger--slider .hamburger-inner {
top: 2px
}
.hamburger--slider .hamburger-inner::before {
top: 10px
}
.hamburger--slider .hamburger-inner::after {
top: 20px
}
.hamburger--slider.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--slider.is-active .hamburger-inner::before {
transform: rotate(-45deg) translate3d(-5.71px,-6px,0);
opacity: 0
}
.hamburger--slider.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(-90deg)
}
.hamburger--slider-r .hamburger-inner {
top: 2px
}
.hamburger--slider-r .hamburger-inner::before {
top: 10px
}
.hamburger--slider-r .hamburger-inner::after {
top: 20px
}
.hamburger--slider-r.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(-45deg)
}
.hamburger--slider-r.is-active .hamburger-inner::before {
transform: rotate(45deg) translate3d(5.71px,-6px,0);
opacity: 0
}
.hamburger--slider-r.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(90deg)
}
.hamburger--spin .hamburger-inner {
transition-duration: .22s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin .hamburger-inner::before {
transition: top .1s .25s ease-in,opacity .1s ease-in
}
.hamburger--spin .hamburger-inner::after {
transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin.is-active .hamburger-inner {
transform: rotate(225deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top .1s ease-out,opacity .1s .12s ease-out
}
.hamburger--spin.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg);
transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin-r .hamburger-inner {
transition-duration: .22s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin-r .hamburger-inner::before {
transition: top .1s .25s ease-in,opacity .1s ease-in
}
.hamburger--spin-r .hamburger-inner::after {
transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin-r.is-active .hamburger-inner {
transform: rotate(-225deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin-r.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top .1s ease-out,opacity .1s .12s ease-out
}
.hamburger--spin-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(90deg);
transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--spring .hamburger-inner {
top: 2px;
transition: background-color 0s .13s linear
}
.hamburger--spring .hamburger-inner::before {
top: 10px;
transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring .hamburger-inner::after {
top: 20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring.is-active .hamburger-inner {
transition-delay: .22s;
background-color: transparent
}
.hamburger--spring.is-active .hamburger-inner::before {
top: 0;
transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--spring.is-active .hamburger-inner::after {
top: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
transform: translate3d(0,10px,0) rotate(-45deg)
}
.hamburger--spring-r .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: 0s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring-r .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity 0s linear
}
.hamburger--spring-r .hamburger-inner::before {
transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring-r.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(-45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spring-r.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s .22s linear
}
.hamburger--spring-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(90deg);
transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand .hamburger-inner {
transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear
}
.hamburger--stand .hamburger-inner::before {
transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand .hamburger-inner::after {
transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand.is-active .hamburger-inner {
transform: rotate(90deg);
background-color: transparent;
transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear
}
.hamburger--stand.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-45deg);
transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(45deg);
transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand-r .hamburger-inner {
transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear
}
.hamburger--stand-r .hamburger-inner::before {
transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand-r .hamburger-inner::after {
transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand-r.is-active .hamburger-inner {
transform: rotate(-90deg);
background-color: transparent;
transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear
}
.hamburger--stand-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-45deg);
transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(45deg);
transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--squeeze .hamburger-inner {
transition-duration: 75ms;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--squeeze .hamburger-inner::before {
transition: top 75ms .12s ease,opacity 75ms ease
}
.hamburger--squeeze .hamburger-inner::after {
transition: bottom 75ms .12s ease,transform 75ms cubic-bezier(.55,.055,.675,.19)
}
.hamburger--squeeze.is-active .hamburger-inner {
transform: rotate(45deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--squeeze.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top 75ms ease,opacity 75ms .12s ease
}
.hamburger--squeeze.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg);
transition: bottom 75ms ease,transform 75ms .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--vortex .hamburger-inner {
transition-duration: .2s;
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex .hamburger-inner::after,.hamburger--vortex .hamburger-inner::before {
transition-duration: 0s;
transition-delay: .1s;
transition-timing-function: linear
}
.hamburger--vortex .hamburger-inner::before {
transition-property: top,opacity
}
.hamburger--vortex .hamburger-inner::after {
transition-property: bottom,transform
}
.hamburger--vortex.is-active .hamburger-inner {
transform: rotate(765deg);
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex.is-active .hamburger-inner::after,.hamburger--vortex.is-active .hamburger-inner::before {
transition-delay: 0s
}
.hamburger--vortex.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--vortex.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(90deg)
}
.hamburger--vortex-r .hamburger-inner {
transition-duration: .2s;
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex-r .hamburger-inner::after,.hamburger--vortex-r .hamburger-inner::before {
transition-duration: 0s;
transition-delay: .1s;
transition-timing-function: linear
}
.hamburger--vortex-r .hamburger-inner::before {
transition-property: top,opacity
}
.hamburger--vortex-r .hamburger-inner::after {
transition-property: bottom,transform
}
.hamburger--vortex-r.is-active .hamburger-inner {
transform: rotate(-765deg);
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex-r.is-active .hamburger-inner::after,.hamburger--vortex-r.is-active .hamburger-inner::before {
transition-delay: 0s
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg)
}
.owl-carousel {
display: none;
width: 100%;
position: relative;
z-index: 1
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden
}
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0
}
.mfp-arrow:after,.mfp-arrow:before,.mfp-container:before,.mfp-figure:after,.mm-listview .mm-next:before,.mm-listview>li:not(.mm-divider):after,.mm-next:after,.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before,.mm-prev:before {
content: ''
}
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
-webkit-transform: translate3d(0,0,0)
}
.owl-carousel .owl-item,.owl-carousel .owl-wrapper {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0)
}
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-touch-callout: none
}
.owl-carousel .owl-item img {
display: block;
width: 100%
}
.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled {
display: none
}
.no-js .owl-carousel,.owl-carousel.owl-loaded {
display: block
}
.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
cursor: hand;
user-select: none
}
.owl-carousel.owl-loading {
opacity: 0;
display: block
}
.owl-carousel.owl-hidden {
opacity: 0
}
.owl-carousel.owl-refresh .owl-item {
visibility: hidden
}
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.owl-carousel.owl-grab {
cursor: move;
cursor: grab
}
.owl-carousel.owl-rtl {
direction: rtl
}
.owl-carousel.owl-rtl .owl-item {
float: right
}
.owl-carousel .animated {
animation-duration: 1s;
animation-fill-mode: both
}
.owl-carousel .owl-animated-in {
z-index: 0
}
.owl-carousel .owl-animated-out {
z-index: 1
}
.owl-carousel .fadeOut {
animation-name: fadeOut
}
@keyframes fadeOut {
0% {
opacity: 1
}
100% {
opacity: 0
}
}
.owl-height {
transition: height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity .4s ease
}
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d
}
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000
}
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3,1.3);
transform: scale(1.3,1.3)
}
.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn {
display: none
}
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity .4s ease
}
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%
}
.mfp-bg,.mfp-wrap {
position: fixed;
left: 0;
top: 0
}
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center
}
.owl-theme .owl-nav [class*=owl-] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: #869791;
color: #FFF;
text-decoration: none
}
.owl-theme .owl-nav .disabled {
opacity: .5;
cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px
}
.owl-theme .owl-dots {
text-align: center
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom:1}
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px
}
.mfp-bg,.mfp-container,.mfp-wrap {
width: 100%;
height: 100%
}
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
background: #869791
}
.mfp-bg {
z-index: 999999;
background: #0b0b0b;
opacity: .8
}
.mfp-wrap {
z-index: 9999999;
outline: 0!important;
-webkit-backface-visibility: hidden
}
.mfp-container {
text-align: center;
position: absolute;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box
}
.mfp-container:before {
display: inline-block;
height: 100%;
vertical-align: middle
}
.mfp-align-top .mfp-container:before {
display: none
}
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045
}
.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content {
width: 100%;
cursor: auto
}
.mfp-ajax-cur {
cursor: progress
}
.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out
}
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in
}
.mfp-auto-cursor .mfp-content {
cursor: auto
}
.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none
}
.mfp-loading.mfp-figure {
display: none
}
.mfp-hide {
display: none!important
}
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -.8em;
left: 8px;
right: 8px;
z-index: 1044
}
.mfp-preloader a {
color: #CCC
}
.mfp-close,.mfp-preloader a:hover {
color: #FFF
}
.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader {
display: none
}
button.mfp-arrow,button.mfp-close {
overflow: visible;
cursor: pointer;
background: 0 0;
border: 0;
-webkit-appearance: none;
display: block;
outline: 0;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation
}
.mfp-figure:after,.mfp-iframe-scaler iframe {
box-shadow: 0 0 8px rgba(0,0,0,.6);
position: absolute;
left: 0
}
button::-moz-focus-inner {
padding: 0;
border: 0
}
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-align: center;
opacity: .65;
padding: 0 0 18px 10px;
font-style: normal;
font-size: 28px;
font-family: Arial,Baskerville,monospace
}
.mfp-close:focus,.mfp-close:hover {
opacity: 1
}
.mfp-close:active {
top: 1px
}
.mfp-close-btn-in .mfp-close {
color: #333
}
.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap
}
.mfp-figure,img.mfp-img {
line-height: 0
}
.mfp-arrow {
position: absolute;
opacity: .65;
margin: -55px 0 0;
top: 50%;
padding: 0;
width: 90px;
height: 110px
}
.mfp-arrow:active {
margin-top: -54px
}
.mfp-arrow:focus,.mfp-arrow:hover {
opacity: 1
}
.mfp-arrow:after,.mfp-arrow:before {
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: inset transparent
}
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px
}
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: .7
}
.mfp-arrow-left {
left: 0
}
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px
}
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F
}
.mfp-arrow-right {
right: 0
}
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px
}
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px
}
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px
}
.mfp-image-holder .mfp-content,img.mfp-img {
max-width: 100%
}
.mfp-iframe-holder .mfp-close {
top: -40px
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%
}
.mfp-iframe-scaler iframe {
display: block;
top: 0;
width: 100%;
height: 100%;
background: #000
}
.mfp-figure:after,img.mfp-img {
width: auto;
height: auto;
display: block
}
img.mfp-img {
box-sizing: border-box;
padding: 40px 0;
margin: 0 auto
}
.mfp-figure:after {
top: 40px;
bottom: 40px;
right: 0;
z-index: -1;
background: #444
}
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px
}
.mfp-figure figure {
margin: 0
}
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto
}
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer
}
@media screen and (max-width: 800px) and (orientation:landscape),screen and (max-height:300px) {
.mfp-img-mobile .mfp-image-holder {
padding-left:0;
padding-right: 0
}
.mfp-img-mobile img.mfp-img {
padding: 0
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px
}
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0,0,0,.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0
}
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px
}
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0,0,0,.6);
position: fixed;
text-align: center;
padding: 0
}
}
.mm-menu,.mm-panels,.mm-panels>.mm-panel {
margin: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
box-sizing: border-box
}
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform:scale(.75);
transform: scale(.75)
}
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0
}
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%
}
.mfp-container {
padding-left: 6px;
padding-right: 6px
}
}
.mm-hidden {
display: none!important
}
.mm-menu,.mm-panels>.mm-panel:not(.mm-hidden) {
display: block
}
.mm-wrapper {
overflow-x: hidden;
position: relative
}
.mm-btn,.mm-menu,.mm-navbar,.mm-next:after,.mm-panels,.mm-panels>.mm-panel,.mm-prev:before {
position: absolute;
top: 0
}
.mm-menu {
padding: 0
}
.mm-panels,.mm-panels>.mm-panel {
background: inherit;
border-color: inherit
}
.mm-btn,.mm-panel.mm-highest {
z-index: 1
}
.mm-panels {
overflow: hidden
}
.mm-panel {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left
}
.mm-panel.mm-opened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-panel.mm-subopened {
-webkit-transform: translate(-30%,0);
-ms-transform: translate(-30%,0);
transform: translate(-30%,0);
-webkit-transform: translate3d(-30%,0,0);
transform: translate3d(-30%,0,0)
}
.mm-panel.mm-noanimation {
-webkit-transition: none!important;
transition: none!important
}
.mm-menu.mm-fx-menu-zoom,.mm-slideout {
-webkit-transition: -webkit-transform .4s ease
}
.mm-panel.mm-noanimation.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-panels>.mm-panel {
-webkit-overflow-scrolling: touch;
overflow: scroll;
overflow-x: hidden;
overflow-y: auto;
padding: 0 20px
}
.mm-panels>.mm-panel.mm-hasnavbar {
padding-top: 40px
}
.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before {
display: block;
height: 20px
}
.mm-vertical .mm-panel {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important
}
.mm-listview .mm-vertical .mm-panel,.mm-vertical .mm-listview .mm-panel {
display: none;
padding: 10px 0 10px 10px
}
.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
border-color: transparent
}
.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel {
display: block
}
.mm-listview>li.mm-vertical>.mm-next,.mm-vertical .mm-listview>li>.mm-next {
box-sizing: border-box;
height: 40px;
bottom: auto
}
.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
right: 19px
}
.mm-btn {
box-sizing: border-box;
width: 40px;
height: 40px
}
.mm-clear:after,.mm-clear:before,.mm-close:after,.mm-close:before {
content: '';
border: 2px solid transparent;
display: block;
width: 5px;
height: 5px;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg)
}
.mm-clear:before,.mm-close:before {
border-right: none;
border-bottom: none;
right: 18px
}
.mm-clear:after,.mm-close:after {
border-left: none;
border-top: none;
right: 25px
}
.mm-next:after,.mm-prev:before {
border-top: 2px solid transparent;
border-left: 2px solid transparent;
display: block;
width: 8px;
height: 8px;
margin: auto;
bottom: 0
}
.mm-prev:before {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-next:after {
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
right: 23px;
left: auto
}
.mm-navbar {
border-bottom: 1px solid;
border-color: inherit;
text-align: center;
line-height: 20px;
height: 40px;
padding: 0 40px;
margin: 0;
left: 0;
right: 0
}
.mm-navbar>* {
display: block;
padding: 10px 0
}
.mm-navbar .mm-title {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.mm-navbar .mm-btn:first-child {
left: 0
}
.mm-navbar .mm-btn:last-child {
text-align: right;
right: 0
}
.mm-panel .mm-navbar {
display: none
}
.mm-panel.mm-hasnavbar .mm-navbar {
display: block
}
.mm-listview,.mm-listview>li {
list-style: none;
display: block;
padding: 0;
margin: 0
}
.mm-listview {
font: inherit;
font-size: 14px;
line-height: 20px
}
.mm-listview>li {
position: relative
}
.mm-listview>li,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before,.mm-listview>li:after {
border-color: inherit
}
.mm-listview>li>a,.mm-listview>li>span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
color: inherit;
display: block;
padding: 10px 10px 10px 20px;
margin: 0
}
.mm-listview>li:not(.mm-divider):after {
border-bottom-width: 1px;
border-bottom-style: solid;
display: block;
position: absolute;
right: 0;
bottom: 0;
left: 20px
}
.mm-listview .mm-next {
background: rgba(3,2,1,0);
width: 50px;
padding: 0;
position: absolute;
right: 0;
top: 0;
bottom: 0;
z-index: 2
}
.mm-listview .mm-next:before {
border-left-width: 1px;
border-left-style: solid;
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0
}
.mm-listview .mm-next+a,.mm-listview .mm-next+span {
margin-right: 50px
}
.mm-listview .mm-next.mm-fullsubopen {
width: 100%
}
.mm-listview .mm-next.mm-fullsubopen:before {
border-left: none
}
.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span {
padding-right: 50px;
margin-right: 0
}
.mm-panels>.mm-panel>.mm-listview {
margin: 20px -20px
}
.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
margin-top: -20px
}
.mm-menu {
background: #f3f3f3;
border-color: rgba(0,0,0,.1);
color: rgba(0,0,0,.75)
}
.mm-menu .mm-navbar a,.mm-menu .mm-navbar>* {
color: rgba(0,0,0,.3)
}
.mm-menu .mm-btn:after,.mm-menu .mm-btn:before {
border-color: rgba(0,0,0,.3)
}
.mm-menu .mm-listview {
border-color: rgba(0,0,0,.1)
}
.mm-menu .mm-listview>li .mm-next:after {
border-color: rgba(0,0,0,.3)
}
.mm-menu .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(255,255,255,.5);
tap-highlight-color: rgba(255,255,255,.5)
}
.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span {
background: rgba(255,255,255,.5)
}
.mm-menu .mm-divider,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(0,0,0,.05)
}
.mm-page {
box-sizing: border-box;
position: relative
}
.mm-slideout {
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
z-index: 1
}
html.mm-opened {
overflow-x: hidden;
position: relative
}
html.mm-blocking,html.mm-blocking body {
overflow: hidden
}
html.mm-background .mm-page {
background: inherit
}
#mm-blocker {
background: rgba(3,2,1,0);
display: none;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 2
}
html.mm-blocking #mm-blocker {
display: block
}
.mm-menu.mm-offcanvas {
z-index: 0;
display: none;
position: fixed;
width: 80%;
min-width: 140px;
max-width: 440px
}
.mm-menu.mm-iconbar,.mm-menu.mm-offcanvas.mm-opened {
display: block
}
.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
z-index: 10
}
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(440px,0);
-ms-transform: translate(440px,0);
transform: translate(440px,0);
-webkit-transform: translate3d(440px,0,0);
transform: translate3d(440px,0,0)
}
}
.mm-sronly {
border: 0!important;
clip: rect(1px,1px,1px,1px)!important;
-webkit-clip-path: inset(50%)!important;
clip-path: inset(50%)!important;
white-space: nowrap!important;
width: 1px!important;
height: 1px!important;
padding: 0!important;
overflow: hidden!important;
position: absolute!important
}
.mm-menu .mm-listview.mm-border-none>li:after,.mm-menu .mm-listview>li.mm-border-none:after,.mm-menu.mm-border-none .mm-listview>li:after {
content: none
}
.mm-menu .mm-listview.mm-border-full>li:after,.mm-menu .mm-listview>li.mm-border-full:after,.mm-menu.mm-border-full .mm-listview>li:after {
left: 0!important
}
.mm-menu .mm-listview.mm-border-offset>li:after,.mm-menu .mm-listview>li.mm-border-offset:after,.mm-menu.mm-border-offset .mm-listview>li:after {
right: 20px
}
.mm-menu.mm-offcanvas.mm-fullscreen {
width: 100%;
min-width: 140px;
max-width: 10000px
}
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
@media all and (max-width: 140px) {
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 10000px) {
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(10000px,0);
-ms-transform: translate(10000px,0);
transform: translate(10000px,0);
-webkit-transform: translate3d(10000px,0,0);
transform: translate3d(10000px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
@media all and (max-width: 140px) {
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 10000px) {
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(-10000px,0);
-ms-transform: translate(-10000px,0);
transform: translate(-10000px,0);
-webkit-transform: translate3d(-10000px,0,0);
transform: translate3d(-10000px,0,0)
}
}
.mm-menu.mm-offcanvas.mm-fullscreen.mm-bottom,.mm-menu.mm-offcanvas.mm-fullscreen.mm-top {
height: 100%;
min-height: 140px;
max-height: 10000px
}
.mm-menu.mm-fx-menu-zoom {
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease
}
html.mm-opened .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
transform: scale(.7,.7) translate3d(-30%,0,0);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center
}
html.mm-opening .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
html.mm-right.mm-opened .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(.7,.7) translate3d(30%,0,0);
transform: scale(.7,.7) translate3d(30%,0,0);
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center
}
html.mm-right.mm-opening .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
.mm-menu.mm-fx-menu-slide {
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease
}
html.mm-opened .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(-30%,0);
-ms-transform: translate(-30%,0);
transform: translate(-30%,0);
-webkit-transform: translate3d(-30%,0,0);
transform: translate3d(-30%,0,0)
}
html.mm-opening .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
html.mm-right.mm-opened .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(30%,0);
-ms-transform: translate(30%,0);
transform: translate(30%,0);
-webkit-transform: translate3d(30%,0,0);
transform: translate3d(30%,0,0)
}
html.mm-right.mm-opening .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-fx-menu-fade {
opacity: 0;
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease
}
html.mm-opening .mm-menu.mm-fx-menu-fade {
opacity: 1
}
.mm-menu .mm-fx-panels-none.mm-panel,.mm-menu.mm-fx-panels-none .mm-panel {
-webkit-transition-property: none;
transition-property: none
}
.mm-menu .mm-fx-panels-none.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-none .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel,.mm-menu.mm-fx-panels-zoom .mm-panel {
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
-webkit-transform: scale(1.5,1.5) translate3d(100%,0,0);
transform: scale(1.5,1.5) translate3d(100%,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel.mm-opened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-opened {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-subopened {
-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
transform: scale(.7,.7) translate3d(-30%,0,0)
}
.mm-menu .mm-fx-panels-slide-0.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-0 .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-slide-100.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-100 .mm-panel.mm-subopened {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu .mm-fx-panels-slide-up.mm-panel,.mm-menu.mm-fx-panels-slide-up .mm-panel {
-webkit-transform: translate(0,100%);
-ms-transform: translate(0,100%);
transform: translate(0,100%);
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-opened,.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-opened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li {
-webkit-transition: none .4s ease;
transition: none .4s ease
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(1) {
-webkit-transition-delay: 50ms;
transition-delay: 50ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(2) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(3) {
-webkit-transition-delay: 150ms;
transition-delay: 150ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(4) {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(5) {
-webkit-transition-delay: 250ms;
transition-delay: 250ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(6) {
-webkit-transition-delay: .3s;
transition-delay: .3s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(7) {
-webkit-transition-delay: 350ms;
transition-delay: 350ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(8) {
-webkit-transition-delay: .4s;
transition-delay: .4s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(9) {
-webkit-transition-delay: 450ms;
transition-delay: 450ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(10) {
-webkit-transition-delay: .5s;
transition-delay: .5s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(11) {
-webkit-transition-delay: 550ms;
transition-delay: 550ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(12) {
-webkit-transition-delay: .6s;
transition-delay: .6s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(13) {
-webkit-transition-delay: 650ms;
transition-delay: 650ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(14) {
-webkit-transition-delay: .7s;
transition-delay: .7s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(15) {
-webkit-transition-delay: 750ms;
transition-delay: 750ms
}
.mm-menu.mm-fx-listitems-slide .mm-listview>li {
-webkit-transition-property: opacity,-webkit-transform;
transition-property: opacity,-webkit-transform;
transition-property: transform,opacity;
transition-property: transform,opacity,-webkit-transform;
-webkit-transform: translate(50%,0);
-ms-transform: translate(50%,0);
transform: translate(50%,0);
-webkit-transform: translate3d(50%,0,0);
transform: translate3d(50%,0,0);
opacity: 0
}
html.mm-opening .mm-menu.mm-fx-listitems-slide .mm-panel.mm-opened .mm-listview>li {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1
}
.mm-menu.mm-fx-listitems-fade .mm-listview>li {
-webkit-transition-property: opacity;
transition-property: opacity;
opacity: 0
}
html.mm-opening .mm-menu.mm-fx-listitems-fade .mm-panel.mm-opened .mm-listview>li {
opacity: 1
}
.mm-menu.mm-fx-listitems-drop .mm-listview>li {
-webkit-transition-property: opacity,top;
transition-property: opacity,top;
opacity: 0;
top: -25%
}
html.mm-opening .mm-menu.mm-fx-listitems-drop .mm-panel.mm-opened .mm-listview>li {
opacity: 1;
top: 0
}
html.mm-iconbar body {
overflow-x: hidden
}
html.mm-iconbar .mm-page {
background: inherit;
min-height: 100vh
}
html.mm-iconbar .mm-slideout {
box-sizing: border-box;
padding-right: 60px;
-webkit-transform: translate(60px,0);
-ms-transform: translate(60px,0);
transform: translate(60px,0);
-webkit-transform: translate3d(60px,0,0);
transform: translate3d(60px,0,0)
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify:after,.mm-menu .mm-panels>.mm-panel.mm-listview-justify:before,.mm-menu.mm-listview-justify .mm-panels>.mm-panel:after,.mm-menu.mm-listview-justify .mm-panels>.mm-panel:before {
content: none;
display: none
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
height: 100%;
margin-top: 0;
margin-bottom: 0
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li {
-webkit-box-flex: 1;
-webkit-flex: 1 0 auto;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
min-height: 40px
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li:not(.mm-divider),.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider) {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>a:not(.mm-next),.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>span,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>a:not(.mm-next),.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>span {
box-sizing: border-box;
-webkit-box-flex: 1;
-webkit-flex: 1 0 auto;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
.mm-listview-small .mm-listview>li>a:not(.mm-next),.mm-listview-small .mm-listview>li>span {
padding: 7px 10px 7px 20px
}
.mm-listview-small .mm-listview>li.mm-vertical>.mm-next,.mm-listview-small .mm-vertical>.mm-listview>li>.mm-next {
height: 34px
}
.mm-listview-large .mm-listview>li>a:not(.mm-next),.mm-listview-large .mm-listview>li>span {
padding: 15px 10px 15px 20px
}
.mm-listview-large .mm-listview>li.mm-vertical>.mm-next,.mm-listview-large .mm-vertical>.mm-listview>li>.mm-next {
height: 50px
}
.mm-listview-huge .mm-listview>li>a:not(.mm-next),.mm-listview-huge .mm-listview>li>span {
padding: 20px 10px 20px 20px
}
.mm-listview-huge .mm-listview>li.mm-vertical>.mm-next,.mm-listview-huge .mm-vertical>.mm-listview>li>.mm-next {
height: 60px
}
.mm-listview .mm-divider {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
font-size: 10px;
text-transform: uppercase;
text-indent: 20px;
line-height: 25px
}
.mm-listview .mm-spacer {
padding-top: 40px
}
.mm-listview .mm-spacer>.mm-next {
top: 40px
}
.mm-listview .mm-spacer.mm-divider {
padding-top: 25px
}
.mm-listview .mm-inset {
list-style: disc inside;
padding: 0 10px 15px 40px;
margin: 0
}
.mm-listview .mm-inset>li {
padding: 5px 0
}
.mm-menu .mm-listview.mm-multiline>li>a,.mm-menu .mm-listview.mm-multiline>li>span,.mm-menu .mm-listview>li.mm-multiline>a,.mm-menu .mm-listview>li.mm-multiline>span,.mm-menu.mm-multiline .mm-listview>li>a,.mm-menu.mm-multiline .mm-listview>li>span {
text-overflow: clip;
white-space: normal
}
.mm-divider>span,.mm-navbar .mm-breadcrumbs {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker {
opacity: 0
}
html.mm-opening .mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker {
opacity: .3;
-webkit-transition: opacity .4s ease .4s;
transition: opacity .4s ease .4s
}
.mm-menu.mm-opened.mm-pagedim~#mm-blocker {
background: inherit
}
.mm-menu.mm-opened.mm-pagedim-white~#mm-blocker {
background: #fff
}
.mm-menu.mm-opened.mm-pagedim-black~#mm-blocker {
background: #000
}
.mm-menu.mm-popup {
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
opacity: 0;
box-shadow: 0 2px 10px rgba(0,0,0,.3);
height: 80%;
min-height: 140px;
max-height: 880px;
top: 50%;
left: 50%;
bottom: auto;
right: auto;
z-index: 2;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0)
}
.mm-menu.mm-popup.mm-opened~.mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important;
z-index: 0
}
.mm-menu.mm-popup.mm-opened~#mm-blocker {
-webkit-transition-delay: 0s!important;
transition-delay: 0s!important;
z-index: 1
}
html.mm-opening .mm-menu.mm-popup {
opacity: 1
}
.mm-menu.mm-offcanvas.mm-right {
left: auto
}
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(-440px,0);
-ms-transform: translate(-440px,0);
transform: translate(-440px,0);
-webkit-transform: translate3d(-440px,0,0);
transform: translate3d(-440px,0,0)
}
}
html.mm-front .mm-slideout,html.mm-widescreen .mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important
}
html.mm-front .mm-slideout {
transform: none!important;
z-index: 0
}
html.mm-front #mm-blocker {
z-index: 1
}
html.mm-front .mm-menu.mm-offcanvas {
z-index: 2
}
.mm-menu.mm-offcanvas.mm-front,.mm-menu.mm-offcanvas.mm-next {
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu.mm-offcanvas.mm-front.mm-right,.mm-menu.mm-offcanvas.mm-next.mm-right {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-menu.mm-offcanvas.mm-top {
-webkit-transform: translate(0,-100%);
-ms-transform: translate(0,-100%);
transform: translate(0,-100%);
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
.mm-menu.mm-offcanvas.mm-bottom {
-webkit-transform: translate(0,100%);
-ms-transform: translate(0,100%);
transform: translate(0,100%);
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
top: auto
}
.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top {
width: 100%;
min-width: 100%;
max-width: 100%;
height: 80%;
min-height: 140px;
max-height: 880px
}
html.mm-opening .mm-menu.mm-offcanvas.mm-front,html.mm-opening .mm-menu.mm-offcanvas.mm-next {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-shadow-page:after {
content: "";
display: block;
width: 20px;
height: 120%;
position: absolute;
left: 100%;
top: -10%;
z-index: 100;
-webkit-clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%)
}
.mm-menu.mm-shadow-page.mm-front:after,.mm-menu.mm-shadow-page.mm-next:after,.mm-menu.mm-shadow-page.mm-theme-black:after {
content: none;
display: none
}
.mm-menu.mm-shadow-page.mm-right:after {
left: auto;
right: 100%
}
.mm-menu.mm-shadow-page:after,.mm-menu.mm-shadow-panels .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 10px rgba(0,0,0,.3)
}
.mm-menu.mm-theme-dark {
background: #333;
border-color: rgba(0,0,0,.15);
color: rgba(255,255,255,.8)
}
.mm-menu.mm-theme-dark .mm-navbar a,.mm-menu.mm-theme-dark .mm-navbar>*,.mm-menu.mm-theme-dark em.mm-counter {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-btn:after,.mm-menu.mm-theme-dark .mm-btn:before {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-listview {
border-color: rgba(0,0,0,.15)
}
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(0,0,0,.1);
tap-highlight-color: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark .mm-divider,.mm-menu.mm-theme-dark .mm-fixeddivider span,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(255,255,255,.05)
}
.mm-menu.mm-theme-dark label.mm-check:before {
border-color: rgba(255,255,255,.8)
}
.mm-menu.mm-shadow-page.mm-theme-dark:after,.mm-menu.mm-shadow-panels.mm-theme-dark .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 20px rgba(0,0,0,.5)
}
.mm-menu.mm-theme-dark .mm-search input {
background: rgba(255,255,255,.3);
color: rgba(255,255,255,.8)
}
.mm-menu.mm-theme-dark .mm-indexer a,.mm-menu.mm-theme-dark .mm-noresultsmsg {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark label.mm-toggle {
background: rgba(0,0,0,.15)
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
background: #333
}
.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu.mm-theme-white {
background: #fff;
border-color: rgba(0,0,0,.1);
color: rgba(0,0,0,.6)
}
.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-keyboardfocus a:focus,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected:not(.mm-fullsubopen),.mm-menu.mm-theme-white .mm-divider,.mm-menu.mm-theme-white .mm-fixeddivider span,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(0,0,0,.05)
}
.mm-menu.mm-theme-white .mm-navbar a,.mm-menu.mm-theme-white .mm-navbar>*,.mm-menu.mm-theme-white em.mm-counter {
color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before {
border-color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-listview {
border-color: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after {
border-color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(0,0,0,.05);
tap-highlight-color: rgba(0,0,0,.05)
}
.mm-menu.mm-theme-white label.mm-check:before {
border-color: rgba(0,0,0,.6)
}
.mm-menu.mm-shadow-page.mm-theme-white:after,.mm-menu.mm-shadow-panels.mm-theme-white .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 10px rgba(0,0,0,.2)
}
.mm-menu.mm-theme-white .mm-search input {
background: rgba(0,0,0,.05);
color: rgba(0,0,0,.6)
}
.mm-menu.mm-theme-white .mm-indexer a,.mm-menu.mm-theme-white .mm-noresultsmsg {
color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white label.mm-toggle {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-white label.mm-toggle:before {
background: #fff
}
.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu.mm-theme-black {
background: #000;
border-color: rgba(255,255,255,.2);
color: rgba(255,255,255,.6)
}
.mm-menu.mm-theme-black .mm-navbar a,.mm-menu.mm-theme-black .mm-navbar>*,.mm-menu.mm-theme-black em.mm-counter {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-btn:after,.mm-menu.mm-theme-black .mm-btn:before {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-listview {
border-color: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black .mm-listview>li .mm-next:after {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(255,255,255,.3);
tap-highlight-color: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
background: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black .mm-divider,.mm-menu.mm-theme-black .mm-fixeddivider span,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black label.mm-check:before {
border-color: rgba(255,255,255,.6)
}
.mm-menu.mm-shadow-panels.mm-theme-black .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: false
}
.mm-menu.mm-theme-black .mm-search input {
background: rgba(255,255,255,.3);
color: rgba(255,255,255,.6)
}
.mm-menu.mm-theme-black .mm-indexer a,.mm-menu.mm-theme-black .mm-noresultsmsg {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black label.mm-toggle {
background: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black label.mm-toggle:before {
background: #000
}
.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu .mm-tileview.mm-listview:after,.mm-menu.mm-tileview .mm-listview:after {
content: '';
display: block;
clear: both
}
.mm-menu .mm-tileview.mm-listview>li>.mm-next:after,.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,.mm-menu.mm-tileview .mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-panel:after {
display: none;
content: none
}
.mm-menu .mm-tileview.mm-listview>li,.mm-menu.mm-tileview .mm-listview>li {
width: 50%;
height: 0;
padding: 50% 0 0;
float: left;
position: relative
}
.mm-menu .mm-tileview.mm-listview>li:after,.mm-menu.mm-tileview .mm-listview>li:after {
left: 0;
top: 0;
border-right-width: 1px;
border-right-style: solid;
z-index: -1
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs {
width: 12.5%;
padding-top: 12.5%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-s,.mm-menu.mm-tileview .mm-listview>li.mm-tile-s {
width: 25%;
padding-top: 25%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-l,.mm-menu.mm-tileview .mm-listview>li.mm-tile-l {
width: 75%;
padding-top: 75%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl {
width: 100%;
padding-top: 100%
}
.mm-menu .mm-tileview.mm-listview>li>a,.mm-menu .mm-tileview.mm-listview>li>span,.mm-menu.mm-tileview .mm-listview>li>a,.mm-menu.mm-tileview .mm-listview>li>span {
line-height: 1px;
text-align: center;
padding: 50% 10px 0;
margin: 0;
position: absolute;
top: 0;
right: 1px;
bottom: 1px;
left: 0
}
.mm-menu.mm-autoheight:not(.mm-offcanvas),html.mm-widescreen body {
position: relative
}
.mm-menu .mm-tileview.mm-listview>li>.mm-next,.mm-menu.mm-tileview .mm-listview>li>.mm-next {
width: auto
}
.mm-menu.mm-tileview .mm-panel {
padding-left: 0;
padding-right: 0
}
.mm-menu.mm-tileview .mm-listview {
margin: 0
}
html.mm-widescreen #mm-blocker {
display: none!important
}
html.mm-widescreen .mm-slideout {
transform: none!important;
width: 70%!important;
margin-left: 30%!important
}
html.mm-widescreen .mm-page {
background: inherit;
box-sizing: border-box
}
html.mm-widescreen.mm-blocking,html.mm-widescreen.mm-blocking body {
overflow: auto
}
.mm-menu.mm-widescreen {
border-right-width: 1px;
border-right-style: solid;
display: block!important;
width: 30%!important;
min-width: 0!important;
max-width: none!important;
top: 0!important;
right: auto!important;
bottom: 0!important;
left: 0!important;
z-index: 100!important;
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important
}
.mm-menu.mm-widescreen.mm-pageshadow:after {
content: none;
display: none
}
.mm-menu.mm-autoheight {
-webkit-transition: none .4s ease;
transition: none .4s ease;
-webkit-transition-property: height,-webkit-transform;
transition-property: height,-webkit-transform;
transition-property: transform,height;
transition-property: transform,height,-webkit-transform
}
.mm-menu.mm-measureheight .mm-panel.mm-vertical.mm-opened,.mm-menu.mm-measureheight .mm-panel:not(.mm-vertical) {
display: block!important
}
.mm-menu.mm-measureheight .mm-panels>.mm-panel {
bottom: auto!important;
height: auto!important
}
.mm-columns {
-webkit-transition-property: width;
transition-property: width
}
.mm-columns .mm-panels>.mm-panel {
right: auto;
-webkit-transition-property: width,-webkit-transform;
transition-property: width,-webkit-transform;
transition-property: width,transform;
transition-property: width,transform,-webkit-transform
}
.mm-columns .mm-panels>.mm-panel.mm-opened,.mm-columns .mm-panels>.mm-panel.mm-subopened {
border-left: 1px solid;
border-color: inherit;
display: block!important
}
.mm-columns .mm-panels>.mm-columns-0 {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-columns-0 .mm-panels>.mm-panel {
z-index: 0
}
.mm-columns-0 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-0 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-0 {
width: 80%;
min-width: 140px;
max-width: 0
}
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 0px) {
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 0px) {
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-1 {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-columns-1 .mm-panels>.mm-panel {
z-index: 1;
width: 100%
}
.mm-columns-1 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-1 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(200%,0);
-ms-transform: translate(200%,0);
transform: translate(200%,0);
-webkit-transform: translate3d(200%,0,0);
transform: translate3d(200%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-1 {
width: 80%;
min-width: 140px;
max-width: 440px
}
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(440px,0);
-ms-transform: translate(440px,0);
transform: translate(440px,0);
-webkit-transform: translate3d(440px,0,0);
transform: translate3d(440px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(-440px,0);
-ms-transform: translate(-440px,0);
transform: translate(-440px,0);
-webkit-transform: translate3d(-440px,0,0);
transform: translate3d(-440px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-2 {
-webkit-transform: translate(200%,0);
-ms-transform: translate(200%,0);
transform: translate(200%,0);
-webkit-transform: translate3d(200%,0,0);
transform: translate3d(200%,0,0)
}
.mm-columns-2 .mm-panels>.mm-panel {
z-index: 2;
width: 50%
}
.mm-columns-2 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-2 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(300%,0);
-ms-transform: translate(300%,0);
transform: translate(300%,0);
-webkit-transform: translate3d(300%,0,0);
transform: translate3d(300%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-2 {
width: 80%;
min-width: 140px;
max-width: 880px
}
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 1100px) {
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(880px,0);
-ms-transform: translate(880px,0);
transform: translate(880px,0);
-webkit-transform: translate3d(880px,0,0);
transform: translate3d(880px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 1100px) {
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(-880px,0);
-ms-transform: translate(-880px,0);
transform: translate(-880px,0);
-webkit-transform: translate3d(-880px,0,0);
transform: translate3d(-880px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-3 {
-webkit-transform: translate(300%,0);
-ms-transform: translate(300%,0);
transform: translate(300%,0);
-webkit-transform: translate3d(300%,0,0);
transform: translate3d(300%,0,0)
}
.mm-columns-3 .mm-panels>.mm-panel {
z-index: 3;
width: 33.34%
}
.mm-columns-3 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-3 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(400%,0);
-ms-transform: translate(400%,0);
transform: translate(400%,0);
-webkit-transform: translate3d(400%,0,0);
transform: translate3d(400%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-3 {
width: 80%;
min-width: 140px;
max-width: 1320px
}
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 1650px) {
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(1320px,0);
-ms-transform: translate(1320px,0);
transform: translate(1320px,0);
-webkit-transform: translate3d(1320px,0,0);
transform: translate3d(1320px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 1650px) {
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(-1320px,0);
-ms-transform: translate(-1320px,0);
transform: translate(-1320px,0);
-webkit-transform: translate3d(-1320px,0,0);
transform: translate3d(-1320px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-4 {
-webkit-transform: translate(400%,0);
-ms-transform: translate(400%,0);
transform: translate(400%,0);
-webkit-transform: translate3d(400%,0,0);
transform: translate3d(400%,0,0)
}
.mm-columns-4 .mm-panels>.mm-panel {
z-index: 4;
width: 25%
}
.mm-columns-4 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-4 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(500%,0);
-ms-transform: translate(500%,0);
transform: translate(500%,0);
-webkit-transform: translate3d(500%,0,0);
transform: translate3d(500%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-4 {
width: 80%;
min-width: 140px;
max-width: 1760px
}
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 2200px) {
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(1760px,0);
-ms-transform: translate(1760px,0);
transform: translate(1760px,0);
-webkit-transform: translate3d(1760px,0,0);
transform: translate3d(1760px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 2200px) {
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(-1760px,0);
-ms-transform: translate(-1760px,0);
transform: translate(-1760px,0);
-webkit-transform: translate3d(-1760px,0,0);
transform: translate3d(-1760px,0,0)
}
}
.mm-columns.mm-offcanvas.mm-bottom,.mm-columns.mm-offcanvas.mm-top {
width: 100%;
max-width: 100%;
min-width: 100%
}
html.mm-opening .mm-columns.mm-offcanvas.mm-front,html.mm-opening .mm-columns.mm-offcanvas.mm-next {
-webkit-transition-property: width,min-width,max-width,-webkit-transform;
transition-property: width,min-width,max-width,-webkit-transform;
transition-property: width,min-width,max-width,transform;
transition-property: width,min-width,max-width,transform,-webkit-transform
}
em.mm-counter {
font: inherit;
font-size: 14px;
font-style: normal;
text-indent: 0;
line-height: 20px;
display: block;
margin-top: -10px;
position: absolute;
right: 45px;
top: 50%
}
.mm-collapsed:not(.mm-uncollapsed),.mm-nosubresults>.mm-counter {
display: none
}
em.mm-counter+a.mm-next {
width: 90px
}
em.mm-counter+a.mm-next+a,em.mm-counter+a.mm-next+span {
margin-right: 90px
}
em.mm-counter+a.mm-fullsubopen {
padding-left: 0
}
.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span,em.mm-counter+a.mm-fullsubopen+a,em.mm-counter+a.mm-fullsubopen+span {
padding-right: 90px
}
.mm-vertical>.mm-counter {
top: 12px;
margin-top: 0
}
.mm-vertical.mm-spacer>.mm-counter {
margin-top: 40px
}
.mm-menu em.mm-counter {
color: rgba(0,0,0,.3)
}
.mm-divider>span {
padding: 0;
line-height: 25px
}
.mm-divider.mm-opened a.mm-next:after {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg)
}
.mm-fixeddivider {
background: inherit;
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 10;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-fixeddivider:after {
content: none!important;
display: none!important
}
.mm-hasdividers .mm-fixeddivider {
display: block
}
.mm-menu .mm-fixeddivider span {
background: rgba(0,0,0,.05)
}
html.mm-opened.mm-dragging .mm-menu,html.mm-opened.mm-dragging .mm-slideout {
-webkit-transition-duration: 0s;
transition-duration: 0s
}
.mm-menu.mm-dropdown {
box-shadow: 0 2px 10px rgba(0,0,0,.3);
height: 80%
}
html.mm-dropdown .mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important;
z-index: 0
}
html.mm-dropdown #mm-blocker {
-webkit-transition-delay: 0s!important;
transition-delay: 0s!important;
z-index: 1
}
html.mm-dropdown .mm-menu {
z-index: 2
}
html.mm-dropdown.mm-opened:not(.mm-opening) .mm-menu.mm-dropdown {
display: none
}
.mm-menu.mm-tip:before {
content: '';
background: inherit;
box-shadow: 0 2px 10px rgba(0,0,0,.3);
display: block;
width: 15px;
height: 15px;
position: absolute;
z-index: 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg)
}
.mm-menu.mm-tipleft:before {
left: 22px
}
.mm-menu.mm-tipright:before {
right: 22px
}
.mm-menu.mm-tiptop:before {
top: -8px
}
.mm-menu.mm-tipbottom:before {
bottom: -8px
}
.mm-iconpanel .mm-panels>.mm-panel {
-webkit-transition-property: left,-webkit-transform;
transition-property: left,-webkit-transform;
transition-property: transform,left;
transition-property: transform,left,-webkit-transform
}
.mm-iconpanel .mm-panels>.mm-panel.mm-opened,.mm-iconpanel .mm-panels>.mm-panel.mm-subopened {
border-left: 1px solid;
border-color: inherit;
display: block!important
}
.mm-iconpanel .mm-panels>.mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
left: 0
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
left: 40px
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
left: 80px
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
left: 120px
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
left: 160px
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
left: 200px
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
left: 240px
}
.mm-subblocker {
background: inherit;
opacity: 0;
display: block;
max-height: 100%;
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 3;
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease
}
.mm-subopened .mm-subblocker {
opacity: .6;
bottom: -100000px
}
.mm-keyboardfocus a:focus {
outline: 0
}
.mm-menu.mm-keyboardfocus a:focus {
background: rgba(255,255,255,.5)
}
.mm-navbars-bottom,.mm-navbars-top {
background: inherit;
border-color: inherit;
border-width: 0;
overflow: hidden;
position: absolute;
left: 0;
right: 0;
z-index: 3
}
.mm-navbars-bottom>.mm-navbar,.mm-navbars-top>.mm-navbar {
border: none;
padding: 0;
position: relative;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-navbars-top {
border-bottom-style: solid;
border-bottom-width: 1px;
top: 0
}
.mm-navbars-bottom {
border-top-style: solid;
border-top-width: 1px;
bottom: 0
}
.mm-navbar.mm-hasbtns {
padding: 0 40px
}
.mm-navbar[class*=mm-navbar-content-]>* {
box-sizing: border-box;
display: block;
float: left
}
.mm-navbar .mm-breadcrumbs {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
text-align: left;
padding: 0 0 0 17px
}
.mm-navbar .mm-breadcrumbs>* {
display: inline-block;
padding: 10px 3px
}
.mm-navbar .mm-breadcrumbs>a {
text-decoration: underline
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
margin-left: -40px
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs {
margin-left: 0;
padding-left: 0
}
.mm-hasnavbar-top-1 .mm-panels {
top: 40px
}
.mm-hasnavbar-top-2 .mm-panels {
top: 80px
}
.mm-hasnavbar-top-3 .mm-panels {
top: 120px
}
.mm-hasnavbar-top-4 .mm-panels {
top: 160px
}
.mm-hasnavbar-bottom-1 .mm-panels {
bottom: 40px
}
.mm-hasnavbar-bottom-2 .mm-panels {
bottom: 80px
}
.mm-hasnavbar-bottom-3 .mm-panels {
bottom: 120px
}
.mm-hasnavbar-bottom-4 .mm-panels {
bottom: 160px
}
.mm-navbar-size-2 {
height: 80px
}
.mm-navbar-size-3 {
height: 120px
}
.mm-navbar-size-4 {
height: 160px
}
.mm-navbar-content-2>* {
width: 50%
}
.mm-navbar-content-3>* {
width: 33.33%
}
.mm-navbar-content-4>* {
width: 25%
}
.mm-navbar-content-5>* {
width: 20%
}
.mm-navbar-content-6>* {
width: 16.67%
}
.mm-menu.mm-rtl {
direction: rtl
}
.mm-menu.mm-rtl.mm-offcanvas {
right: auto
}
.mm-menu.mm-rtl .mm-panel:not(.mm-opened) {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu.mm-rtl .mm-panel.mm-subopened {
-webkit-transform: translate(30%,0);
-ms-transform: translate(30%,0);
transform: translate(30%,0);
-webkit-transform: translate3d(30%,0,0);
transform: translate3d(30%,0,0)
}
.mm-menu.mm-rtl .mm-navbar .mm-btn:first-child {
left: auto;
right: 0
}
.mm-menu.mm-rtl .mm-navbar .mm-btn:last-child {
right: auto;
left: 0
}
.mm-menu.mm-rtl .mm-navbar .mm-next:after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-menu.mm-rtl .mm-navbar .mm-prev:before {
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
right: 23px;
left: auto
}
.mm-menu.mm-rtl .mm-listview>li:not(.mm-divider)::after {
left: 0;
right: 20px
}
.mm-menu.mm-rtl .mm-listview>li>a:not(.mm-next),.mm-menu.mm-rtl .mm-listview>li>span:not(.mm-next) {
padding-left: 10px;
padding-right: 20px!important;
margin-right: 0!important
}
.mm-menu.mm-rtl .mm-listview .mm-next {
right: auto;
left: 0
}
.mm-menu.mm-rtl .mm-listview .mm-next:before {
left: auto;
right: 0
}
.mm-menu.mm-rtl .mm-listview .mm-next:after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-menu.mm-rtl .mm-listview .mm-next+a,.mm-menu.mm-rtl .mm-listview .mm-next+span {
margin-left: 50px
}
.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+span {
padding-left: 50px
}
.mm-menu.mm-rtl em.mm-counter {
left: 45px;
right: auto
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+span {
margin-left: 90px
}
.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+span {
padding-left: 90px
}
.mm-menu.mm-rtl label.mm-check,.mm-menu.mm-rtl label.mm-toggle {
left: 20px;
right: auto!important
}
.mm-menu.mm-rtl label.mm-toggle+a,.mm-menu.mm-rtl label.mm-toggle+span {
padding-left: 80px
}
.mm-menu.mm-rtl label.mm-check+a,.mm-menu.mm-rtl label.mm-check+span {
padding-left: 60px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check,.mm-menu.mm-rtl a.mm-next+label.mm-toggle {
left: 60px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span {
margin-left: 50px
}
.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span {
padding-left: 70px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span {
padding-left: 50px
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle {
left: 100px
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+span,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+span {
margin-left: 90px
}
.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-] {
left: 0
}
.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-].mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel {
-webkit-transition-property: right,-webkit-transform;
transition-property: right,-webkit-transform;
transition-property: transform,right;
transition-property: transform,right,-webkit-transform
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-0 {
right: 0
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-1 {
right: 40px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-2 {
right: 80px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-3 {
right: 120px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-4 {
right: 160px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-5 {
right: 200px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-6 {
right: 240px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-opened {
border-left: none;
border-right: 1px solid;
border-color: inherit
}
.mm-search,.mm-search input {
box-sizing: border-box
}
.mm-search {
height: 40px;
padding: 7px 10px 0;
position: relative
}
.mm-search input {
border: none!important;
outline: 0!important;
box-shadow: none!important;
border-radius: 4px;
font: inherit;
font-size: 14px;
line-height: 26px;
display: block;
box-sizing: border-box;
width: 100%;
height: 26px;
min-height: 26px;
max-height: 26px;
margin: 0;
padding: 0 10px
}
.mm-search input::-ms-clear {
display: none
}
.mm-search .mm-clear,.mm-search .mm-next {
right: 0
}
.mm-panel>.mm-search {
width: 100%;
position: absolute;
top: 0;
left: 0
}
.mm-panel.mm-hassearch {
padding-top: 40px
}
.mm-panel.mm-hassearch.mm-hasnavbar {
padding-top: 80px
}
.mm-panel.mm-hassearch.mm-hasnavbar>.mm-search {
top: 40px
}
.mm-noresultsmsg {
text-align: center;
font-size: 21px;
padding: 40px 0
}
.mm-noresults .mm-indexer {
display: none!important
}
li.mm-nosubresults>a.mm-next {
display: none
}
li.mm-nosubresults>a.mm-next+a,li.mm-nosubresults>a.mm-next+span {
padding-right: 10px
}
.mm-menu .mm-search input {
background: rgba(0,0,0,.05);
color: rgba(0,0,0,.75)
}
.mm-menu .mm-indexer a,.mm-menu .mm-noresultsmsg {
color: rgba(0,0,0,.3)
}
.mm-indexer {
background: inherit;
text-align: center;
font-size: 12px;
box-sizing: border-box;
width: 20px;
position: absolute;
top: 0;
bottom: 0;
right: -100px;
z-index: 15;
-webkit-transition: right .4s ease;
transition: right .4s ease;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-indexer a {
text-decoration: none;
display: block;
height: 3.85%
}
.mm-indexer~.mm-panel.mm-hasindexer {
padding-right: 40px
}
.mm-hasindexer .mm-indexer {
right: 0
}
.mm-hasindexer .mm-fixeddivider {
right: 20px
}
.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen),.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a:not(.mm-fullsubopen) {
-webkit-transition: background .4s ease;
transition: background .4s ease
}
.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(255,255,255,.5)
}
input.mm-check,input.mm-toggle {
position: absolute;
left: -10000px
}
label.mm-check,label.mm-toggle {
margin: 0;
position: absolute;
top: 50%;
z-index: 2;
right: 20px
}
label.mm-check:before,label.mm-toggle:before {
content: '';
display: block
}
label.mm-toggle {
border-radius: 30px;
width: 50px;
height: 30px;
margin-top: -15px
}
label.mm-toggle:before {
border-radius: 30px;
width: 28px;
height: 28px;
margin: 1px
}
input.mm-toggle:checked~label.mm-toggle:before {
float: right
}
label.mm-check {
width: 30px;
height: 30px;
margin-top: -15px
}
label.mm-check:before {
border-left: 3px solid;
border-bottom: 3px solid;
width: 40%;
height: 20%;
margin: 25% 0 0 20%;
opacity: .1;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg)
}
input.mm-check:checked~label.mm-check:before {
opacity: 1
}
li.mm-vertical label.mm-check,li.mm-vertical label.mm-toggle {
bottom: auto;
margin-top: 0;
top: 5px
}
label.mm-toggle+a,label.mm-toggle+span {
padding-right: 80px
}
label.mm-check+a,label.mm-check+span {
padding-right: 60px
}
a.mm-next+label.mm-check,a.mm-next+label.mm-toggle {
right: 60px
}
a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span,a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
margin-right: 50px
}
a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
padding-right: 70px
}
a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span {
padding-right: 50px
}
em.mm-counter+a.mm-next+label.mm-check,em.mm-counter+a.mm-next+label.mm-toggle {
right: 100px
}
em.mm-counter+a.mm-next+label.mm-check+a,em.mm-counter+a.mm-next+label.mm-check+span,em.mm-counter+a.mm-next+label.mm-toggle+a,em.mm-counter+a.mm-next+label.mm-toggle+span {
margin-right: 90px
}
.mm-menu label.mm-toggle {
background: rgba(0,0,0,.1)
}
.mm-menu label.mm-toggle:before {
background: #f3f3f3
}
.mm-menu input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu label.mm-check:before {
border-color: rgba(0,0,0,.75)
} | resources/css/frontend/vendors.css | @charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 <NAME>
*/
.fp-enabled body,.mfp-arrow,.owl-carousel,.owl-carousel .owl-item,.owl-theme .owl-dots,.owl-theme .owl-nav,html.fp-enabled {
-webkit-tap-highlight-color: transparent
}
.hamburger--3dx .hamburger-box,.hamburger--3dx-r .hamburger-box,.hamburger--3dxy .hamburger-box,.hamburger--3dxy-r .hamburger-box,.hamburger--3dy .hamburger-box,.hamburger--3dy-r .hamburger-box {
perspective: 80px
}
.fp-controlArrow,.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
cursor: pointer;
-khtml-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none
}
#fp-nav ul li a,.fp-slidesNav ul li a,.mfp-close,.mm-listview a,.mm-listview a:hover,.mm-navbar a,.mm-navbar a:hover {
text-decoration: none
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
@-webkit-keyframes bounce {
0%,100%,20%,53%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
40%,43% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0)
}
70% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-15px,0);
transform: translate3d(0,-15px,0)
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0)
}
}
@keyframes bounce {
0%,100%,20%,53%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
40%,43% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0)
}
70% {
-webkit-transition-timing-function: cubic-bezier(.755,.050,.855,.060);
transition-timing-function: cubic-bezier(.755,.050,.855,.060);
-webkit-transform: translate3d(0,-15px,0);
transform: translate3d(0,-15px,0)
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0)
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom
}
@-webkit-keyframes flash {
0%,100%,50% {
opacity: 1
}
25%,75% {
opacity: 0
}
}
@keyframes flash {
0%,100%,50% {
opacity: 1
}
25%,75% {
opacity: 0
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash
}
@-webkit-keyframes pulse {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
50% {
-webkit-transform: scale3d(1.05,1.05,1.05);
transform: scale3d(1.05,1.05,1.05)
}
}
@keyframes pulse {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
50% {
-webkit-transform: scale3d(1.05,1.05,1.05);
transform: scale3d(1.05,1.05,1.05)
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse
}
@-webkit-keyframes rubberBand {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
30% {
-webkit-transform: scale3d(1.25,.75,1);
transform: scale3d(1.25,.75,1)
}
40% {
-webkit-transform: scale3d(.75,1.25,1);
transform: scale3d(.75,1.25,1)
}
50% {
-webkit-transform: scale3d(1.15,.85,1);
transform: scale3d(1.15,.85,1)
}
65% {
-webkit-transform: scale3d(.95,1.05,1);
transform: scale3d(.95,1.05,1)
}
75% {
-webkit-transform: scale3d(1.05,.95,1);
transform: scale3d(1.05,.95,1)
}
}
@keyframes rubberBand {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
30% {
-webkit-transform: scale3d(1.25,.75,1);
transform: scale3d(1.25,.75,1)
}
40% {
-webkit-transform: scale3d(.75,1.25,1);
transform: scale3d(.75,1.25,1)
}
50% {
-webkit-transform: scale3d(1.15,.85,1);
transform: scale3d(1.15,.85,1)
}
65% {
-webkit-transform: scale3d(.95,1.05,1);
transform: scale3d(.95,1.05,1)
}
75% {
-webkit-transform: scale3d(1.05,.95,1);
transform: scale3d(1.05,.95,1)
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand
}
@-webkit-keyframes shake {
0%,100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
10%,30%,50%,70%,90% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
20%,40%,60%,80% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
}
@keyframes shake {
0%,100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
10%,30%,50%,70%,90% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
20%,40%,60%,80% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0,0,1,15deg);
transform: rotate3d(0,0,1,15deg)
}
40% {
-webkit-transform: rotate3d(0,0,1,-10deg);
transform: rotate3d(0,0,1,-10deg)
}
60% {
-webkit-transform: rotate3d(0,0,1,5deg);
transform: rotate3d(0,0,1,5deg)
}
80% {
-webkit-transform: rotate3d(0,0,1,-5deg);
transform: rotate3d(0,0,1,-5deg)
}
100% {
-webkit-transform: rotate3d(0,0,1,0deg);
transform: rotate3d(0,0,1,0deg)
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0,0,1,15deg);
transform: rotate3d(0,0,1,15deg)
}
40% {
-webkit-transform: rotate3d(0,0,1,-10deg);
transform: rotate3d(0,0,1,-10deg)
}
60% {
-webkit-transform: rotate3d(0,0,1,5deg);
transform: rotate3d(0,0,1,5deg)
}
80% {
-webkit-transform: rotate3d(0,0,1,-5deg);
transform: rotate3d(0,0,1,-5deg)
}
100% {
-webkit-transform: rotate3d(0,0,1,0deg);
transform: rotate3d(0,0,1,0deg)
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing
}
@-webkit-keyframes tada {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
10%,20% {
-webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
}
30%,50%,70%,90% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
}
40%,60%,80% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
}
}
@keyframes tada {
0%,100% {
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
10%,20% {
-webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
}
30%,50%,70%,90% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
}
40%,60%,80% {
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada
}
@-webkit-keyframes wobble {
0%,100% {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
}
30% {
-webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
}
45% {
-webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
}
60% {
-webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
}
75% {
-webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
}
}
@keyframes wobble {
0%,100% {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
}
30% {
-webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
}
45% {
-webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
}
60% {
-webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
}
75% {
-webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes bounceIn {
0%,100%,20%,40%,60%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
20% {
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
40% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03,1.03,1.03);
transform: scale3d(1.03,1.03,1.03)
}
80% {
-webkit-transform: scale3d(.97,.97,.97);
transform: scale3d(.97,.97,.97)
}
100% {
opacity: 1;
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
}
@keyframes bounceIn {
0%,100%,20%,40%,60%,80% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
20% {
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
40% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03,1.03,1.03);
transform: scale3d(1.03,1.03,1.03)
}
80% {
-webkit-transform: scale3d(.97,.97,.97);
transform: scale3d(.97,.97,.97)
}
100% {
opacity: 1;
-webkit-transform: scale3d(1,1,1);
transform: scale3d(1,1,1)
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s
}
.bounceOut,.flipOutX {
-webkit-animation-duration: .75s
}
@-webkit-keyframes bounceInDown {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,-3000px,0);
transform: translate3d(0,-3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,25px,0);
transform: translate3d(0,25px,0)
}
75% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
90% {
-webkit-transform: translate3d(0,5px,0);
transform: translate3d(0,5px,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInDown {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,-3000px,0);
transform: translate3d(0,-3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,25px,0);
transform: translate3d(0,25px,0)
}
75% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
90% {
-webkit-transform: translate3d(0,5px,0);
transform: translate3d(0,5px,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px,0,0);
transform: translate3d(-3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px,0,0);
transform: translate3d(25px,0,0)
}
75% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
90% {
-webkit-transform: translate3d(5px,0,0);
transform: translate3d(5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInLeft {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px,0,0);
transform: translate3d(-3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px,0,0);
transform: translate3d(25px,0,0)
}
75% {
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0)
}
90% {
-webkit-transform: translate3d(5px,0,0);
transform: translate3d(5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px,0,0);
transform: translate3d(3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px,0,0);
transform: translate3d(-25px,0,0)
}
75% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
90% {
-webkit-transform: translate3d(-5px,0,0);
transform: translate3d(-5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInRight {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px,0,0);
transform: translate3d(3000px,0,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px,0,0);
transform: translate3d(-25px,0,0)
}
75% {
-webkit-transform: translate3d(10px,0,0);
transform: translate3d(10px,0,0)
}
90% {
-webkit-transform: translate3d(-5px,0,0);
transform: translate3d(-5px,0,0)
}
100% {
-webkit-transform: none;
transform: none
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,3000px,0);
transform: translate3d(0,3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
75% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
90% {
-webkit-transform: translate3d(0,-5px,0);
transform: translate3d(0,-5px,0)
}
100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
@keyframes bounceInUp {
0%,100%,60%,75%,90% {
-webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0,3000px,0);
transform: translate3d(0,3000px,0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
75% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
90% {
-webkit-transform: translate3d(0,-5px,0);
transform: translate3d(0,-5px,0)
}
100% {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
50%,55% {
opacity: 1;
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9,.9,.9);
transform: scale3d(.9,.9,.9)
}
50%,55% {
opacity: 1;
-webkit-transform: scale3d(1.1,1.1,1.1);
transform: scale3d(1.1,1.1,1.1)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
animation-duration: .75s
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0,10px,0);
transform: translate3d(0,10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,-20px,0);
transform: translate3d(0,-20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px,0,0);
transform: translate3d(20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px,0,0);
transform: translate3d(20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px,0,0);
transform: translate3d(-20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px,0,0);
transform: translate3d(-20px,0,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0)
}
40%,45% {
opacity: 1;
-webkit-transform: translate3d(0,20px,0);
transform: translate3d(0,20px,0)
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1
}
100% {
opacity: 0
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
}
@keyframes fadeOutDown {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,2000px,0);
transform: translate3d(0,2000px,0)
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px,0,0);
transform: translate3d(-2000px,0,0)
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
}
@keyframes fadeOutRight {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px,0,0);
transform: translate3d(2000px,0,0)
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
}
@keyframes fadeOutUp {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(0,-2000px,0);
transform: translate3d(0,-2000px,0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
transform: perspective(400px) rotate3d(0,1,0,-360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(.95,.95,.95);
transform: perspective(400px) scale3d(.95,.95,.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
transform: perspective(400px) rotate3d(0,1,0,-360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(.95,.95,.95);
transform: perspective(400px) scale3d(.95,.95,.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
transform: perspective(400px) rotate3d(1,0,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
transform: perspective(400px) rotate3d(1,0,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
transform: perspective(400px) rotate3d(1,0,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
transform: perspective(400px) rotate3d(1,0,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInX {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipInX;
animation-name: flipInX
}
.flipInY,.flipOutX {
-webkit-backface-visibility: visible!important
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
transform: perspective(400px) rotate3d(0,1,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
transform: perspective(400px) rotate3d(0,1,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
transform: perspective(400px) rotate3d(0,1,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
transform: perspective(400px) rotate3d(0,1,0,-20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
transform: perspective(400px) rotate3d(0,1,0,10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
transform: perspective(400px) rotate3d(0,1,0,-5deg)
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInY {
backface-visibility: visible!important;
-webkit-animation-name: flipInY;
animation-name: flipInY
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
opacity: 0
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
transform: perspective(400px) rotate3d(1,0,0,-20deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
transform: perspective(400px) rotate3d(1,0,0,90deg);
opacity: 0
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
animation-duration: .75s;
backface-visibility: visible!important
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
transform: perspective(400px) rotate3d(0,1,0,-15deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
opacity: 0
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
transform: perspective(400px) rotate3d(0,1,0,-15deg);
opacity: 1
}
100% {
-webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
transform: perspective(400px) rotate3d(0,1,0,90deg);
opacity: 0
}
}
.flipOutY {
-webkit-backface-visibility: visible!important;
backface-visibility: visible!important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
-webkit-animation-duration: .75s;
animation-duration: .75s
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%,0,0) skewX(-30deg);
transform: translate3d(100%,0,0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%,0,0) skewX(-30deg);
transform: translate3d(100%,0,0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity: 1
}
100% {
-webkit-transform: translate3d(100%,0,0) skewX(30deg);
transform: translate3d(100%,0,0) skewX(30deg);
opacity: 0
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1
}
100% {
-webkit-transform: translate3d(100%,0,0) skewX(30deg);
transform: translate3d(100%,0,0) skewX(30deg);
opacity: 0
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,-200deg);
transform: rotate3d(0,0,1,-200deg);
opacity: 0
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,-200deg);
transform: rotate3d(0,0,1,-200deg);
opacity: 0
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-90deg);
transform: rotate3d(0,0,1,-90deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-90deg);
transform: rotate3d(0,0,1,-90deg);
opacity: 0
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,200deg);
transform: rotate3d(0,0,1,200deg);
opacity: 0
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0,0,1,200deg);
transform: rotate3d(0,0,1,200deg);
opacity: 0
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,45deg);
transform: rotate3d(0,0,1,45deg);
opacity: 0
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0,0,1,-45deg);
transform: rotate3d(0,0,1,-45deg);
opacity: 0
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,90deg);
transform: rotate3d(0,0,1,90deg);
opacity: 0
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0,0,1,90deg);
transform: rotate3d(0,0,1,90deg);
opacity: 0
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%,60% {
-webkit-transform: rotate3d(0,0,1,80deg);
transform: rotate3d(0,0,1,80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%,80% {
-webkit-transform: rotate3d(0,0,1,60deg);
transform: rotate3d(0,0,1,60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
100% {
-webkit-transform: translate3d(0,700px,0);
transform: translate3d(0,700px,0);
opacity: 0
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%,60% {
-webkit-transform: rotate3d(0,0,1,80deg);
transform: rotate3d(0,0,1,80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%,80% {
-webkit-transform: rotate3d(0,0,1,60deg);
transform: rotate3d(0,0,1,60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
100% {
-webkit-transform: translate3d(0,700px,0);
transform: translate3d(0,700px,0);
opacity: 0
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn
}
@-webkit-keyframes rollOut {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
}
}
@keyframes rollOut {
0% {
opacity: 1
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
100% {
opacity: 0
}
}
@keyframes zoomOut {
0% {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3,.3,.3);
transform: scale3d(.3,.3,.3)
}
100% {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px,0,0);
transform: scale(.1) translate3d(-2000px,0,0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px,0,0);
transform: scale(.1) translate3d(-2000px,0,0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px,0,0);
transform: scale(.1) translate3d(2000px,0,0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px,0,0);
transform: scale(.1) translate3d(2000px,0,0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
animation-timing-function: cubic-bezier(.55,.055,.675,.19)
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
animation-timing-function: cubic-bezier(.175,.885,.32,1)
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%)
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%)
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%)
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%)
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%)
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%)
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0)
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%)
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp
}
/*!
* fullPage 2.9.4
* https://github.com/alvarotrigo/fullPage.js
* MIT licensed
*
* Copyright (C) 2013 alvarot<EMAIL>.<EMAIL> - A project by <NAME>
*/
.fp-enabled body,html.fp-enabled {
margin: 0;
padding: 0;
overflow: hidden
}
#superContainer {
height: 100%;
position: relative;
-ms-touch-action: none;
touch-action: none
}
.fp-section {
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.fp-slide {
float: left
}
.fp-slide,.fp-slidesContainer {
height: 100%;
display: block
}
.fp-slides {
z-index: 1;
height: 100%;
overflow: hidden;
position: relative;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out
}
.fp-section.fp-table,.fp-slide.fp-table {
display: table;
table-layout: fixed;
width: 100%
}
.fp-tableCell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%
}
.fp-slidesContainer {
float: left;
position: relative
}
.fp-controlArrow {
position: absolute;
z-index: 4;
top: 50%;
width: 0;
height: 0;
border-style: solid;
margin-top: -38px;
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
#fp-nav,.fp-slidesNav {
opacity: 1;
-webkit-transform: translate3d(0,0,0)
}
.fp-controlArrow.fp-prev {
left: 15px;
width: 0;
border-width: 38.5px 34px 38.5px 0;
border-color: transparent #fff transparent transparent
}
.fp-controlArrow.fp-next {
right: 15px;
border-width: 38.5px 0 38.5px 34px;
border-color: transparent transparent transparent #fff
}
.fp-scrollable {
overflow: hidden;
position: relative
}
.fp-scroller {
overflow: hidden
}
.iScrollIndicator {
border: 0!important
}
.fp-notransition {
-webkit-transition: none!important;
transition: none!important
}
#fp-nav {
position: fixed;
z-index: 99;
margin-top: -32px;
top: 50%
}
#fp-nav.right {
right: 17px
}
#fp-nav.left {
left: 17px
}
.fp-slidesNav {
position: absolute;
z-index: 4;
left: 50%;
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.fp-slidesNav.bottom {
bottom: 17px
}
.fp-slidesNav.top {
top: 17px
}
#fp-nav ul,.fp-slidesNav ul {
margin: 0;
padding: 0
}
#fp-nav ul li,.fp-slidesNav ul li {
display: block;
width: 14px;
height: 13px;
margin: 7px;
position: relative
}
.fp-slidesNav ul li {
display: inline-block
}
#fp-nav ul li a,.fp-slidesNav ul li a {
display: block;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer
}
#fp-nav ul li a.active span,#fp-nav ul li:hover a.active span,.fp-slidesNav ul li a.active span,.fp-slidesNav ul li:hover a.active span {
height: 12px;
width: 12px;
margin: -6px 0 0 -6px;
border-radius: 100%
}
#fp-nav ul li a span,.fp-slidesNav ul li a span {
border-radius: 50%;
position: absolute;
z-index: 1;
height: 4px;
width: 4px;
border: 0;
background: #fff;
left: 50%;
top: 50%;
margin: -2px 0 0 -2px;
-webkit-transition: all .1s ease-in-out;
-moz-transition: all .1s ease-in-out;
-o-transition: all .1s ease-in-out;
transition: all .1s ease-in-out
}
#fp-nav ul li:hover a span,.fp-slidesNav ul li:hover a span {
width: 10px;
height: 10px;
margin: -5px 0 0 -5px
}
#fp-nav ul li .fp-tooltip {
position: absolute;
top: -2px;
color: #fff;
font-size: 14px;
font-family: arial,helvetica,sans-serif;
white-space: nowrap;
max-width: 220px;
overflow: hidden;
display: block;
opacity: 0;
width: 0;
cursor: pointer
}
#fp-nav ul li:hover .fp-tooltip,#fp-nav.fp-show-active a.active+.fp-tooltip {
-webkit-transition: opacity .2s ease-in;
transition: opacity .2s ease-in;
width: auto;
opacity: 1
}
#fp-nav ul li .fp-tooltip.right {
right: 20px
}
#fp-nav ul li .fp-tooltip.left {
left: 20px
}
.fp-auto-height .fp-slide,.fp-auto-height .fp-tableCell,.fp-auto-height.fp-section,.fp-responsive .fp-auto-height-responsive .fp-slide,.fp-responsive .fp-auto-height-responsive .fp-tableCell,.fp-responsive .fp-auto-height-responsive.fp-section {
height: auto!important
}
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.custom-icon {
font-size:24px;
color:#ffffff;
}
.hamburger {
padding: 0;
display: inline-block;
cursor: pointer;
transition-property: opacity,filter;
transition-duration: .15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible
}
.hamburger--emphatic,.hamburger--emphatic-r,.mfp-bg {
overflow: hidden
}
.hamburger:hover {
opacity: .7
}
.hamburger-box {
width: 30px;
height: 24px;
display: inline-block;
position: relative
}
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px
}
.hamburger-inner,.hamburger-inner::after,.hamburger-inner::before {
width: 30px;
height: 4px;
background-color: #3BCCBB;
border-radius: 0;
position: absolute;
transition-property: transform;
transition-duration: .15s;
transition-timing-function: ease;
}
.hamburger-inner::after,.hamburger-inner::before {
content: "";
display: block;
}
.hamburger-inner::before {
top: -10px
}
.hamburger-inner::after {
bottom: -10px
}
.hamburger--3dx .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx .hamburger-inner::after,.hamburger--3dx .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx.is-active .hamburger-inner {
background-color: transparent;
transform: rotateY(180deg)
}
.hamburger--3dx.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dx.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dx-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx-r .hamburger-inner::after,.hamburger--3dx-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dx-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateY(-180deg)
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dy .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy .hamburger-inner::after,.hamburger--3dy .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(-180deg)
}
.hamburger--3dy.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dy.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dy-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy-r .hamburger-inner::after,.hamburger--3dy-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dy-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg)
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dxy .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy .hamburger-inner::after,.hamburger--3dxy .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg)
}
.hamburger--3dxy.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dxy.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--3dxy-r .hamburger-inner {
transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy-r .hamburger-inner::after,.hamburger--3dxy-r .hamburger-inner::before {
transition: transform 0s .1s cubic-bezier(.645,.045,.355,1)
}
.hamburger--3dxy-r.is-active .hamburger-inner {
background-color: transparent;
transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg)
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
transform: translate3d(0,-10px,0) rotate(-45deg)
}
.hamburger--arrow.is-active .hamburger-inner::before {
transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrow.is-active .hamburger-inner::after {
transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrow-r.is-active .hamburger-inner::before {
transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowalt .hamburger-inner::before {
transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt .hamburger-inner::after {
transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
top: 0;
transform: translate3d(-8px,-10px,0) rotate(-45deg) scale(.7,1);
transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
bottom: 0;
transform: translate3d(-8px,10px,0) rotate(45deg) scale(.7,1);
transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt-r .hamburger-inner::before {
transition: top .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt-r .hamburger-inner::after {
transition: bottom .1s .1s ease,transform .1s cubic-bezier(.165,.84,.44,1)
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
top: 0;
transform: translate3d(8px,-10px,0) rotate(45deg) scale(.7,1);
transition: top .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
bottom: 0;
transform: translate3d(8px,10px,0) rotate(-45deg) scale(.7,1);
transition: bottom .1s ease,transform .1s .1s cubic-bezier(.895,.03,.685,.22)
}
.hamburger--arrowturn.is-active .hamburger-inner {
transform: rotate(-180deg)
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
transform: translate3d(8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
transform: translate3d(8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
transform: rotate(-180deg)
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
transform: translate3d(-8px,0,0) rotate(-45deg) scale(.7,1)
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
transform: translate3d(-8px,0,0) rotate(45deg) scale(.7,1)
}
.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner::after,.hamburger--boring .hamburger-inner::before {
transition-property: none
}
.hamburger--boring.is-active .hamburger-inner {
transform: rotate(45deg)
}
.hamburger--boring.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--boring.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg)
}
.hamburger--collapse .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: .13s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear
}
.hamburger--collapse .hamburger-inner::before {
transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(-45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear
}
.hamburger--collapse.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-90deg);
transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse-r .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: .13s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse-r .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear
}
.hamburger--collapse-r .hamburger-inner::before {
transition: top .12s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--collapse-r.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .22s linear
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(90deg);
transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333),transform .13s .25s cubic-bezier(.215,.61,.355,1)
}
.hamburger--elastic .hamburger-inner {
top: 2px;
transition-duration: 275ms;
transition-timing-function: cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic .hamburger-inner::before {
top: 10px;
transition: opacity 125ms 275ms ease
}
.hamburger--elastic .hamburger-inner::after {
top: 20px;
transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(135deg);
transition-delay: 75ms
}
.hamburger--elastic.is-active .hamburger-inner::before {
transition-delay: 0s;
opacity: 0
}
.hamburger--elastic.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(-270deg);
transition-delay: 75ms
}
.hamburger--elastic-r .hamburger-inner {
top: 2px;
transition-duration: 275ms;
transition-timing-function: cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic-r .hamburger-inner::before {
top: 10px;
transition: opacity 125ms 275ms ease
}
.hamburger--elastic-r .hamburger-inner::after {
top: 20px;
transition: transform 275ms cubic-bezier(.68,-.55,.265,1.55)
}
.hamburger--elastic-r.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(-135deg);
transition-delay: 75ms
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
transition-delay: 0s;
opacity: 0
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(270deg);
transition-delay: 75ms
}
.hamburger--emphatic .hamburger-inner {
transition: background-color 125ms 175ms ease-in
}
.hamburger--emphatic .hamburger-inner::before {
left: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in
}
.hamburger--emphatic .hamburger-inner::after {
top: 10px;
right: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in
}
.hamburger--emphatic.is-active .hamburger-inner {
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent
}
.hamburger--emphatic.is-active .hamburger-inner::before {
left: -80px;
top: -80px;
transform: translate3d(80px,80px,0) rotate(45deg);
transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic.is-active .hamburger-inner::after {
right: -80px;
top: -80px;
transform: translate3d(-80px,80px,0) rotate(-45deg);
transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic-r .hamburger-inner {
transition: background-color 125ms 175ms ease-in
}
.hamburger--emphatic-r .hamburger-inner::before {
left: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,left 125ms 175ms ease-in
}
.hamburger--emphatic-r .hamburger-inner::after {
top: 10px;
right: 0;
transition: transform 125ms cubic-bezier(.6,.04,.98,.335),top 50ms 125ms linear,right 125ms 175ms ease-in
}
.hamburger--emphatic-r.is-active .hamburger-inner {
transition-delay: 0s;
transition-timing-function: ease-out;
background-color: transparent
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
left: -80px;
top: 80px;
transform: translate3d(80px,-80px,0) rotate(-45deg);
transition: left 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
right: -80px;
top: 80px;
transform: translate3d(-80px,-80px,0) rotate(45deg);
transition: right 125ms ease-out,top 50ms 125ms linear,transform 125ms 175ms cubic-bezier(.075,.82,.165,1)
}
.hamburger--minus .hamburger-inner::after,.hamburger--minus .hamburger-inner::before {
transition: bottom 80ms 0s ease-out,top 80ms 0s ease-out,opacity 0s linear
}
.hamburger--minus.is-active .hamburger-inner::after,.hamburger--minus.is-active .hamburger-inner::before {
opacity: 0;
transition: bottom 80ms ease-out,top 80ms ease-out,opacity 0s 80ms linear
}
.hamburger--slider .hamburger-inner::before,.hamburger--slider-r .hamburger-inner::before {
transition-property: transform,opacity;
transition-timing-function: ease;
transition-duration: .15s
}
.hamburger--minus.is-active .hamburger-inner::before {
top: 0
}
.hamburger--minus.is-active .hamburger-inner::after {
bottom: 0
}
.hamburger--slider .hamburger-inner {
top: 2px
}
.hamburger--slider .hamburger-inner::before {
top: 10px
}
.hamburger--slider .hamburger-inner::after {
top: 20px
}
.hamburger--slider.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--slider.is-active .hamburger-inner::before {
transform: rotate(-45deg) translate3d(-5.71px,-6px,0);
opacity: 0
}
.hamburger--slider.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(-90deg)
}
.hamburger--slider-r .hamburger-inner {
top: 2px
}
.hamburger--slider-r .hamburger-inner::before {
top: 10px
}
.hamburger--slider-r .hamburger-inner::after {
top: 20px
}
.hamburger--slider-r.is-active .hamburger-inner {
transform: translate3d(0,10px,0) rotate(-45deg)
}
.hamburger--slider-r.is-active .hamburger-inner::before {
transform: rotate(45deg) translate3d(5.71px,-6px,0);
opacity: 0
}
.hamburger--slider-r.is-active .hamburger-inner::after {
transform: translate3d(0,-20px,0) rotate(90deg)
}
.hamburger--spin .hamburger-inner {
transition-duration: .22s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin .hamburger-inner::before {
transition: top .1s .25s ease-in,opacity .1s ease-in
}
.hamburger--spin .hamburger-inner::after {
transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin.is-active .hamburger-inner {
transform: rotate(225deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top .1s ease-out,opacity .1s .12s ease-out
}
.hamburger--spin.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg);
transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin-r .hamburger-inner {
transition-duration: .22s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin-r .hamburger-inner::before {
transition: top .1s .25s ease-in,opacity .1s ease-in
}
.hamburger--spin-r .hamburger-inner::after {
transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spin-r.is-active .hamburger-inner {
transform: rotate(-225deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spin-r.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top .1s ease-out,opacity .1s .12s ease-out
}
.hamburger--spin-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(90deg);
transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--spring .hamburger-inner {
top: 2px;
transition: background-color 0s .13s linear
}
.hamburger--spring .hamburger-inner::before {
top: 10px;
transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring .hamburger-inner::after {
top: 20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring.is-active .hamburger-inner {
transition-delay: .22s;
background-color: transparent
}
.hamburger--spring.is-active .hamburger-inner::before {
top: 0;
transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
transform: translate3d(0,10px,0) rotate(45deg)
}
.hamburger--spring.is-active .hamburger-inner::after {
top: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1);
transform: translate3d(0,10px,0) rotate(-45deg)
}
.hamburger--spring-r .hamburger-inner {
top: auto;
bottom: 0;
transition-duration: .13s;
transition-delay: 0s;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring-r .hamburger-inner::after {
top: -20px;
transition: top .2s .2s cubic-bezier(.33333,.66667,.66667,1),opacity 0s linear
}
.hamburger--spring-r .hamburger-inner::before {
transition: top .1s .2s cubic-bezier(.33333,.66667,.66667,1),transform .13s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--spring-r.is-active .hamburger-inner {
transform: translate3d(0,-10px,0) rotate(-45deg);
transition-delay: .22s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--spring-r.is-active .hamburger-inner::after {
top: 0;
opacity: 0;
transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s .22s linear
}
.hamburger--spring-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(90deg);
transition: top .1s .15s cubic-bezier(.33333,0,.66667,.33333),transform .13s .22s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand .hamburger-inner {
transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear
}
.hamburger--stand .hamburger-inner::before {
transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand .hamburger-inner::after {
transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand.is-active .hamburger-inner {
transform: rotate(90deg);
background-color: transparent;
transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear
}
.hamburger--stand.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-45deg);
transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(45deg);
transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand-r .hamburger-inner {
transition: transform 75ms .15s cubic-bezier(.55,.055,.675,.19),background-color 0s 75ms linear
}
.hamburger--stand-r .hamburger-inner::before {
transition: top 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand-r .hamburger-inner::after {
transition: bottom 75ms 75ms ease-in,transform 75ms 0s cubic-bezier(.55,.055,.675,.19)
}
.hamburger--stand-r.is-active .hamburger-inner {
transform: rotate(-90deg);
background-color: transparent;
transition: transform 75ms 0s cubic-bezier(.215,.61,.355,1),background-color 0s .15s linear
}
.hamburger--stand-r.is-active .hamburger-inner::before {
top: 0;
transform: rotate(-45deg);
transition: top 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--stand-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(45deg);
transition: bottom 75ms .1s ease-out,transform 75ms .15s cubic-bezier(.215,.61,.355,1)
}
.hamburger--squeeze .hamburger-inner {
transition-duration: 75ms;
transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}
.hamburger--squeeze .hamburger-inner::before {
transition: top 75ms .12s ease,opacity 75ms ease
}
.hamburger--squeeze .hamburger-inner::after {
transition: bottom 75ms .12s ease,transform 75ms cubic-bezier(.55,.055,.675,.19)
}
.hamburger--squeeze.is-active .hamburger-inner {
transform: rotate(45deg);
transition-delay: .12s;
transition-timing-function: cubic-bezier(.215,.61,.355,1)
}
.hamburger--squeeze.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top 75ms ease,opacity 75ms .12s ease
}
.hamburger--squeeze.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg);
transition: bottom 75ms ease,transform 75ms .12s cubic-bezier(.215,.61,.355,1)
}
.hamburger--vortex .hamburger-inner {
transition-duration: .2s;
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex .hamburger-inner::after,.hamburger--vortex .hamburger-inner::before {
transition-duration: 0s;
transition-delay: .1s;
transition-timing-function: linear
}
.hamburger--vortex .hamburger-inner::before {
transition-property: top,opacity
}
.hamburger--vortex .hamburger-inner::after {
transition-property: bottom,transform
}
.hamburger--vortex.is-active .hamburger-inner {
transform: rotate(765deg);
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex.is-active .hamburger-inner::after,.hamburger--vortex.is-active .hamburger-inner::before {
transition-delay: 0s
}
.hamburger--vortex.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--vortex.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(90deg)
}
.hamburger--vortex-r .hamburger-inner {
transition-duration: .2s;
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex-r .hamburger-inner::after,.hamburger--vortex-r .hamburger-inner::before {
transition-duration: 0s;
transition-delay: .1s;
transition-timing-function: linear
}
.hamburger--vortex-r .hamburger-inner::before {
transition-property: top,opacity
}
.hamburger--vortex-r .hamburger-inner::after {
transition-property: bottom,transform
}
.hamburger--vortex-r.is-active .hamburger-inner {
transform: rotate(-765deg);
transition-timing-function: cubic-bezier(.19,1,.22,1)
}
.hamburger--vortex-r.is-active .hamburger-inner::after,.hamburger--vortex-r.is-active .hamburger-inner::before {
transition-delay: 0s
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
top: 0;
opacity: 0
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg)
}
.owl-carousel {
display: none;
width: 100%;
position: relative;
z-index: 1
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden
}
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0
}
.mfp-arrow:after,.mfp-arrow:before,.mfp-container:before,.mfp-figure:after,.mm-listview .mm-next:before,.mm-listview>li:not(.mm-divider):after,.mm-next:after,.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before,.mm-prev:before {
content: ''
}
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
-webkit-transform: translate3d(0,0,0)
}
.owl-carousel .owl-item,.owl-carousel .owl-wrapper {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0)
}
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-touch-callout: none
}
.owl-carousel .owl-item img {
display: block;
width: 100%
}
.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled {
display: none
}
.no-js .owl-carousel,.owl-carousel.owl-loaded {
display: block
}
.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
cursor: hand;
user-select: none
}
.owl-carousel.owl-loading {
opacity: 0;
display: block
}
.owl-carousel.owl-hidden {
opacity: 0
}
.owl-carousel.owl-refresh .owl-item {
visibility: hidden
}
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.owl-carousel.owl-grab {
cursor: move;
cursor: grab
}
.owl-carousel.owl-rtl {
direction: rtl
}
.owl-carousel.owl-rtl .owl-item {
float: right
}
.owl-carousel .animated {
animation-duration: 1s;
animation-fill-mode: both
}
.owl-carousel .owl-animated-in {
z-index: 0
}
.owl-carousel .owl-animated-out {
z-index: 1
}
.owl-carousel .fadeOut {
animation-name: fadeOut
}
@keyframes fadeOut {
0% {
opacity: 1
}
100% {
opacity: 0
}
}
.owl-height {
transition: height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity .4s ease
}
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d
}
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000
}
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3,1.3);
transform: scale(1.3,1.3)
}
.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn {
display: none
}
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity .4s ease
}
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%
}
.mfp-bg,.mfp-wrap {
position: fixed;
left: 0;
top: 0
}
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center
}
.owl-theme .owl-nav [class*=owl-] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: #869791;
color: #FFF;
text-decoration: none
}
.owl-theme .owl-nav .disabled {
opacity: .5;
cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px
}
.owl-theme .owl-dots {
text-align: center
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom:1}
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px
}
.mfp-bg,.mfp-container,.mfp-wrap {
width: 100%;
height: 100%
}
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
background: #869791
}
.mfp-bg {
z-index: 999999;
background: #0b0b0b;
opacity: .8
}
.mfp-wrap {
z-index: 9999999;
outline: 0!important;
-webkit-backface-visibility: hidden
}
.mfp-container {
text-align: center;
position: absolute;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box
}
.mfp-container:before {
display: inline-block;
height: 100%;
vertical-align: middle
}
.mfp-align-top .mfp-container:before {
display: none
}
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045
}
.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content {
width: 100%;
cursor: auto
}
.mfp-ajax-cur {
cursor: progress
}
.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out
}
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in
}
.mfp-auto-cursor .mfp-content {
cursor: auto
}
.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none
}
.mfp-loading.mfp-figure {
display: none
}
.mfp-hide {
display: none!important
}
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -.8em;
left: 8px;
right: 8px;
z-index: 1044
}
.mfp-preloader a {
color: #CCC
}
.mfp-close,.mfp-preloader a:hover {
color: #FFF
}
.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader {
display: none
}
button.mfp-arrow,button.mfp-close {
overflow: visible;
cursor: pointer;
background: 0 0;
border: 0;
-webkit-appearance: none;
display: block;
outline: 0;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation
}
.mfp-figure:after,.mfp-iframe-scaler iframe {
box-shadow: 0 0 8px rgba(0,0,0,.6);
position: absolute;
left: 0
}
button::-moz-focus-inner {
padding: 0;
border: 0
}
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-align: center;
opacity: .65;
padding: 0 0 18px 10px;
font-style: normal;
font-size: 28px;
font-family: Arial,Baskerville,monospace
}
.mfp-close:focus,.mfp-close:hover {
opacity: 1
}
.mfp-close:active {
top: 1px
}
.mfp-close-btn-in .mfp-close {
color: #333
}
.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap
}
.mfp-figure,img.mfp-img {
line-height: 0
}
.mfp-arrow {
position: absolute;
opacity: .65;
margin: -55px 0 0;
top: 50%;
padding: 0;
width: 90px;
height: 110px
}
.mfp-arrow:active {
margin-top: -54px
}
.mfp-arrow:focus,.mfp-arrow:hover {
opacity: 1
}
.mfp-arrow:after,.mfp-arrow:before {
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: inset transparent
}
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px
}
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: .7
}
.mfp-arrow-left {
left: 0
}
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px
}
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F
}
.mfp-arrow-right {
right: 0
}
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px
}
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px
}
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px
}
.mfp-image-holder .mfp-content,img.mfp-img {
max-width: 100%
}
.mfp-iframe-holder .mfp-close {
top: -40px
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%
}
.mfp-iframe-scaler iframe {
display: block;
top: 0;
width: 100%;
height: 100%;
background: #000
}
.mfp-figure:after,img.mfp-img {
width: auto;
height: auto;
display: block
}
img.mfp-img {
box-sizing: border-box;
padding: 40px 0;
margin: 0 auto
}
.mfp-figure:after {
top: 40px;
bottom: 40px;
right: 0;
z-index: -1;
background: #444
}
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px
}
.mfp-figure figure {
margin: 0
}
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto
}
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer
}
@media screen and (max-width: 800px) and (orientation:landscape),screen and (max-height:300px) {
.mfp-img-mobile .mfp-image-holder {
padding-left:0;
padding-right: 0
}
.mfp-img-mobile img.mfp-img {
padding: 0
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px
}
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0,0,0,.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0
}
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px
}
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0,0,0,.6);
position: fixed;
text-align: center;
padding: 0
}
}
.mm-menu,.mm-panels,.mm-panels>.mm-panel {
margin: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
box-sizing: border-box
}
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform:scale(.75);
transform: scale(.75)
}
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0
}
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%
}
.mfp-container {
padding-left: 6px;
padding-right: 6px
}
}
.mm-hidden {
display: none!important
}
.mm-menu,.mm-panels>.mm-panel:not(.mm-hidden) {
display: block
}
.mm-wrapper {
overflow-x: hidden;
position: relative
}
.mm-btn,.mm-menu,.mm-navbar,.mm-next:after,.mm-panels,.mm-panels>.mm-panel,.mm-prev:before {
position: absolute;
top: 0
}
.mm-menu {
padding: 0
}
.mm-panels,.mm-panels>.mm-panel {
background: inherit;
border-color: inherit
}
.mm-btn,.mm-panel.mm-highest {
z-index: 1
}
.mm-panels {
overflow: hidden
}
.mm-panel {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left
}
.mm-panel.mm-opened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-panel.mm-subopened {
-webkit-transform: translate(-30%,0);
-ms-transform: translate(-30%,0);
transform: translate(-30%,0);
-webkit-transform: translate3d(-30%,0,0);
transform: translate3d(-30%,0,0)
}
.mm-panel.mm-noanimation {
-webkit-transition: none!important;
transition: none!important
}
.mm-menu.mm-fx-menu-zoom,.mm-slideout {
-webkit-transition: -webkit-transform .4s ease
}
.mm-panel.mm-noanimation.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-panels>.mm-panel {
-webkit-overflow-scrolling: touch;
overflow: scroll;
overflow-x: hidden;
overflow-y: auto;
padding: 0 20px
}
.mm-panels>.mm-panel.mm-hasnavbar {
padding-top: 40px
}
.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before {
display: block;
height: 20px
}
.mm-vertical .mm-panel {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important
}
.mm-listview .mm-vertical .mm-panel,.mm-vertical .mm-listview .mm-panel {
display: none;
padding: 10px 0 10px 10px
}
.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
border-color: transparent
}
.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel {
display: block
}
.mm-listview>li.mm-vertical>.mm-next,.mm-vertical .mm-listview>li>.mm-next {
box-sizing: border-box;
height: 40px;
bottom: auto
}
.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
right: 19px
}
.mm-btn {
box-sizing: border-box;
width: 40px;
height: 40px
}
.mm-clear:after,.mm-clear:before,.mm-close:after,.mm-close:before {
content: '';
border: 2px solid transparent;
display: block;
width: 5px;
height: 5px;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg)
}
.mm-clear:before,.mm-close:before {
border-right: none;
border-bottom: none;
right: 18px
}
.mm-clear:after,.mm-close:after {
border-left: none;
border-top: none;
right: 25px
}
.mm-next:after,.mm-prev:before {
border-top: 2px solid transparent;
border-left: 2px solid transparent;
display: block;
width: 8px;
height: 8px;
margin: auto;
bottom: 0
}
.mm-prev:before {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-next:after {
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
right: 23px;
left: auto
}
.mm-navbar {
border-bottom: 1px solid;
border-color: inherit;
text-align: center;
line-height: 20px;
height: 40px;
padding: 0 40px;
margin: 0;
left: 0;
right: 0
}
.mm-navbar>* {
display: block;
padding: 10px 0
}
.mm-navbar .mm-title {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.mm-navbar .mm-btn:first-child {
left: 0
}
.mm-navbar .mm-btn:last-child {
text-align: right;
right: 0
}
.mm-panel .mm-navbar {
display: none
}
.mm-panel.mm-hasnavbar .mm-navbar {
display: block
}
.mm-listview,.mm-listview>li {
list-style: none;
display: block;
padding: 0;
margin: 0
}
.mm-listview {
font: inherit;
font-size: 14px;
line-height: 20px
}
.mm-listview>li {
position: relative
}
.mm-listview>li,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before,.mm-listview>li:after {
border-color: inherit
}
.mm-listview>li>a,.mm-listview>li>span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
color: inherit;
display: block;
padding: 10px 10px 10px 20px;
margin: 0
}
.mm-listview>li:not(.mm-divider):after {
border-bottom-width: 1px;
border-bottom-style: solid;
display: block;
position: absolute;
right: 0;
bottom: 0;
left: 20px
}
.mm-listview .mm-next {
background: rgba(3,2,1,0);
width: 50px;
padding: 0;
position: absolute;
right: 0;
top: 0;
bottom: 0;
z-index: 2
}
.mm-listview .mm-next:before {
border-left-width: 1px;
border-left-style: solid;
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0
}
.mm-listview .mm-next+a,.mm-listview .mm-next+span {
margin-right: 50px
}
.mm-listview .mm-next.mm-fullsubopen {
width: 100%
}
.mm-listview .mm-next.mm-fullsubopen:before {
border-left: none
}
.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span {
padding-right: 50px;
margin-right: 0
}
.mm-panels>.mm-panel>.mm-listview {
margin: 20px -20px
}
.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
margin-top: -20px
}
.mm-menu {
background: #f3f3f3;
border-color: rgba(0,0,0,.1);
color: rgba(0,0,0,.75)
}
.mm-menu .mm-navbar a,.mm-menu .mm-navbar>* {
color: rgba(0,0,0,.3)
}
.mm-menu .mm-btn:after,.mm-menu .mm-btn:before {
border-color: rgba(0,0,0,.3)
}
.mm-menu .mm-listview {
border-color: rgba(0,0,0,.1)
}
.mm-menu .mm-listview>li .mm-next:after {
border-color: rgba(0,0,0,.3)
}
.mm-menu .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(255,255,255,.5);
tap-highlight-color: rgba(255,255,255,.5)
}
.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span {
background: rgba(255,255,255,.5)
}
.mm-menu .mm-divider,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(0,0,0,.05)
}
.mm-page {
box-sizing: border-box;
position: relative
}
.mm-slideout {
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
z-index: 1
}
html.mm-opened {
overflow-x: hidden;
position: relative
}
html.mm-blocking,html.mm-blocking body {
overflow: hidden
}
html.mm-background .mm-page {
background: inherit
}
#mm-blocker {
background: rgba(3,2,1,0);
display: none;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 2
}
html.mm-blocking #mm-blocker {
display: block
}
.mm-menu.mm-offcanvas {
z-index: 0;
display: none;
position: fixed;
width: 80%;
min-width: 140px;
max-width: 440px
}
.mm-menu.mm-iconbar,.mm-menu.mm-offcanvas.mm-opened {
display: block
}
.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
z-index: 10
}
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(440px,0);
-ms-transform: translate(440px,0);
transform: translate(440px,0);
-webkit-transform: translate3d(440px,0,0);
transform: translate3d(440px,0,0)
}
}
.mm-sronly {
border: 0!important;
clip: rect(1px,1px,1px,1px)!important;
-webkit-clip-path: inset(50%)!important;
clip-path: inset(50%)!important;
white-space: nowrap!important;
width: 1px!important;
height: 1px!important;
padding: 0!important;
overflow: hidden!important;
position: absolute!important
}
.mm-menu .mm-listview.mm-border-none>li:after,.mm-menu .mm-listview>li.mm-border-none:after,.mm-menu.mm-border-none .mm-listview>li:after {
content: none
}
.mm-menu .mm-listview.mm-border-full>li:after,.mm-menu .mm-listview>li.mm-border-full:after,.mm-menu.mm-border-full .mm-listview>li:after {
left: 0!important
}
.mm-menu .mm-listview.mm-border-offset>li:after,.mm-menu .mm-listview>li.mm-border-offset:after,.mm-menu.mm-border-offset .mm-listview>li:after {
right: 20px
}
.mm-menu.mm-offcanvas.mm-fullscreen {
width: 100%;
min-width: 140px;
max-width: 10000px
}
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
@media all and (max-width: 140px) {
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 10000px) {
html.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(10000px,0);
-ms-transform: translate(10000px,0);
transform: translate(10000px,0);
-webkit-transform: translate3d(10000px,0,0);
transform: translate3d(10000px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
@media all and (max-width: 140px) {
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 10000px) {
html.mm-right.mm-opening .mm-menu.mm-fullscreen.mm-opened~.mm-slideout {
-webkit-transform:translate(-10000px,0);
-ms-transform: translate(-10000px,0);
transform: translate(-10000px,0);
-webkit-transform: translate3d(-10000px,0,0);
transform: translate3d(-10000px,0,0)
}
}
.mm-menu.mm-offcanvas.mm-fullscreen.mm-bottom,.mm-menu.mm-offcanvas.mm-fullscreen.mm-top {
height: 100%;
min-height: 140px;
max-height: 10000px
}
.mm-menu.mm-fx-menu-zoom {
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease
}
html.mm-opened .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
transform: scale(.7,.7) translate3d(-30%,0,0);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center
}
html.mm-opening .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
html.mm-right.mm-opened .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(.7,.7) translate3d(30%,0,0);
transform: scale(.7,.7) translate3d(30%,0,0);
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center
}
html.mm-right.mm-opening .mm-menu.mm-fx-menu-zoom {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
.mm-menu.mm-fx-menu-slide {
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease
}
html.mm-opened .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(-30%,0);
-ms-transform: translate(-30%,0);
transform: translate(-30%,0);
-webkit-transform: translate3d(-30%,0,0);
transform: translate3d(-30%,0,0)
}
html.mm-opening .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
html.mm-right.mm-opened .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(30%,0);
-ms-transform: translate(30%,0);
transform: translate(30%,0);
-webkit-transform: translate3d(30%,0,0);
transform: translate3d(30%,0,0)
}
html.mm-right.mm-opening .mm-menu.mm-fx-menu-slide {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-fx-menu-fade {
opacity: 0;
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease
}
html.mm-opening .mm-menu.mm-fx-menu-fade {
opacity: 1
}
.mm-menu .mm-fx-panels-none.mm-panel,.mm-menu.mm-fx-panels-none .mm-panel {
-webkit-transition-property: none;
transition-property: none
}
.mm-menu .mm-fx-panels-none.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-none .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel,.mm-menu.mm-fx-panels-zoom .mm-panel {
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
-webkit-transform: scale(1.5,1.5) translate3d(100%,0,0);
transform: scale(1.5,1.5) translate3d(100%,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel.mm-opened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-opened {
-webkit-transform: scale(1,1) translate3d(0,0,0);
transform: scale(1,1) translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-zoom.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-subopened {
-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
transform: scale(.7,.7) translate3d(-30%,0,0)
}
.mm-menu .mm-fx-panels-slide-0.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-0 .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu .mm-fx-panels-slide-100.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-100 .mm-panel.mm-subopened {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu .mm-fx-panels-slide-up.mm-panel,.mm-menu.mm-fx-panels-slide-up .mm-panel {
-webkit-transform: translate(0,100%);
-ms-transform: translate(0,100%);
transform: translate(0,100%);
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0)
}
.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-opened,.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-opened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li {
-webkit-transition: none .4s ease;
transition: none .4s ease
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(1) {
-webkit-transition-delay: 50ms;
transition-delay: 50ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(2) {
-webkit-transition-delay: .1s;
transition-delay: .1s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(3) {
-webkit-transition-delay: 150ms;
transition-delay: 150ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(4) {
-webkit-transition-delay: .2s;
transition-delay: .2s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(5) {
-webkit-transition-delay: 250ms;
transition-delay: 250ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(6) {
-webkit-transition-delay: .3s;
transition-delay: .3s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(7) {
-webkit-transition-delay: 350ms;
transition-delay: 350ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(8) {
-webkit-transition-delay: .4s;
transition-delay: .4s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(9) {
-webkit-transition-delay: 450ms;
transition-delay: 450ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(10) {
-webkit-transition-delay: .5s;
transition-delay: .5s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(11) {
-webkit-transition-delay: 550ms;
transition-delay: 550ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(12) {
-webkit-transition-delay: .6s;
transition-delay: .6s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(13) {
-webkit-transition-delay: 650ms;
transition-delay: 650ms
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(14) {
-webkit-transition-delay: .7s;
transition-delay: .7s
}
.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(15) {
-webkit-transition-delay: 750ms;
transition-delay: 750ms
}
.mm-menu.mm-fx-listitems-slide .mm-listview>li {
-webkit-transition-property: opacity,-webkit-transform;
transition-property: opacity,-webkit-transform;
transition-property: transform,opacity;
transition-property: transform,opacity,-webkit-transform;
-webkit-transform: translate(50%,0);
-ms-transform: translate(50%,0);
transform: translate(50%,0);
-webkit-transform: translate3d(50%,0,0);
transform: translate3d(50%,0,0);
opacity: 0
}
html.mm-opening .mm-menu.mm-fx-listitems-slide .mm-panel.mm-opened .mm-listview>li {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1
}
.mm-menu.mm-fx-listitems-fade .mm-listview>li {
-webkit-transition-property: opacity;
transition-property: opacity;
opacity: 0
}
html.mm-opening .mm-menu.mm-fx-listitems-fade .mm-panel.mm-opened .mm-listview>li {
opacity: 1
}
.mm-menu.mm-fx-listitems-drop .mm-listview>li {
-webkit-transition-property: opacity,top;
transition-property: opacity,top;
opacity: 0;
top: -25%
}
html.mm-opening .mm-menu.mm-fx-listitems-drop .mm-panel.mm-opened .mm-listview>li {
opacity: 1;
top: 0
}
html.mm-iconbar body {
overflow-x: hidden
}
html.mm-iconbar .mm-page {
background: inherit;
min-height: 100vh
}
html.mm-iconbar .mm-slideout {
box-sizing: border-box;
padding-right: 60px;
-webkit-transform: translate(60px,0);
-ms-transform: translate(60px,0);
transform: translate(60px,0);
-webkit-transform: translate3d(60px,0,0);
transform: translate3d(60px,0,0)
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify:after,.mm-menu .mm-panels>.mm-panel.mm-listview-justify:before,.mm-menu.mm-listview-justify .mm-panels>.mm-panel:after,.mm-menu.mm-listview-justify .mm-panels>.mm-panel:before {
content: none;
display: none
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
height: 100%;
margin-top: 0;
margin-bottom: 0
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li {
-webkit-box-flex: 1;
-webkit-flex: 1 0 auto;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
min-height: 40px
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li:not(.mm-divider),.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider) {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column
}
.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>a:not(.mm-next),.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>span,.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>a:not(.mm-next),.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>span {
box-sizing: border-box;
-webkit-box-flex: 1;
-webkit-flex: 1 0 auto;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
.mm-listview-small .mm-listview>li>a:not(.mm-next),.mm-listview-small .mm-listview>li>span {
padding: 7px 10px 7px 20px
}
.mm-listview-small .mm-listview>li.mm-vertical>.mm-next,.mm-listview-small .mm-vertical>.mm-listview>li>.mm-next {
height: 34px
}
.mm-listview-large .mm-listview>li>a:not(.mm-next),.mm-listview-large .mm-listview>li>span {
padding: 15px 10px 15px 20px
}
.mm-listview-large .mm-listview>li.mm-vertical>.mm-next,.mm-listview-large .mm-vertical>.mm-listview>li>.mm-next {
height: 50px
}
.mm-listview-huge .mm-listview>li>a:not(.mm-next),.mm-listview-huge .mm-listview>li>span {
padding: 20px 10px 20px 20px
}
.mm-listview-huge .mm-listview>li.mm-vertical>.mm-next,.mm-listview-huge .mm-vertical>.mm-listview>li>.mm-next {
height: 60px
}
.mm-listview .mm-divider {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
font-size: 10px;
text-transform: uppercase;
text-indent: 20px;
line-height: 25px
}
.mm-listview .mm-spacer {
padding-top: 40px
}
.mm-listview .mm-spacer>.mm-next {
top: 40px
}
.mm-listview .mm-spacer.mm-divider {
padding-top: 25px
}
.mm-listview .mm-inset {
list-style: disc inside;
padding: 0 10px 15px 40px;
margin: 0
}
.mm-listview .mm-inset>li {
padding: 5px 0
}
.mm-menu .mm-listview.mm-multiline>li>a,.mm-menu .mm-listview.mm-multiline>li>span,.mm-menu .mm-listview>li.mm-multiline>a,.mm-menu .mm-listview>li.mm-multiline>span,.mm-menu.mm-multiline .mm-listview>li>a,.mm-menu.mm-multiline .mm-listview>li>span {
text-overflow: clip;
white-space: normal
}
.mm-divider>span,.mm-navbar .mm-breadcrumbs {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
.mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker {
opacity: 0
}
html.mm-opening .mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker {
opacity: .3;
-webkit-transition: opacity .4s ease .4s;
transition: opacity .4s ease .4s
}
.mm-menu.mm-opened.mm-pagedim~#mm-blocker {
background: inherit
}
.mm-menu.mm-opened.mm-pagedim-white~#mm-blocker {
background: #fff
}
.mm-menu.mm-opened.mm-pagedim-black~#mm-blocker {
background: #000
}
.mm-menu.mm-popup {
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease;
opacity: 0;
box-shadow: 0 2px 10px rgba(0,0,0,.3);
height: 80%;
min-height: 140px;
max-height: 880px;
top: 50%;
left: 50%;
bottom: auto;
right: auto;
z-index: 2;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0)
}
.mm-menu.mm-popup.mm-opened~.mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important;
z-index: 0
}
.mm-menu.mm-popup.mm-opened~#mm-blocker {
-webkit-transition-delay: 0s!important;
transition-delay: 0s!important;
z-index: 1
}
html.mm-opening .mm-menu.mm-popup {
opacity: 1
}
.mm-menu.mm-offcanvas.mm-right {
left: auto
}
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-right.mm-opening .mm-menu.mm-opened~.mm-slideout {
-webkit-transform:translate(-440px,0);
-ms-transform: translate(-440px,0);
transform: translate(-440px,0);
-webkit-transform: translate3d(-440px,0,0);
transform: translate3d(-440px,0,0)
}
}
html.mm-front .mm-slideout,html.mm-widescreen .mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important
}
html.mm-front .mm-slideout {
transform: none!important;
z-index: 0
}
html.mm-front #mm-blocker {
z-index: 1
}
html.mm-front .mm-menu.mm-offcanvas {
z-index: 2
}
.mm-menu.mm-offcanvas.mm-front,.mm-menu.mm-offcanvas.mm-next {
-webkit-transition: -webkit-transform .4s ease;
transition: -webkit-transform .4s ease;
transition: transform .4s ease;
transition: transform .4s ease,-webkit-transform .4s ease;
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu.mm-offcanvas.mm-front.mm-right,.mm-menu.mm-offcanvas.mm-next.mm-right {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-menu.mm-offcanvas.mm-top {
-webkit-transform: translate(0,-100%);
-ms-transform: translate(0,-100%);
transform: translate(0,-100%);
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
.mm-menu.mm-offcanvas.mm-bottom {
-webkit-transform: translate(0,100%);
-ms-transform: translate(0,100%);
transform: translate(0,100%);
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
top: auto
}
.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top {
width: 100%;
min-width: 100%;
max-width: 100%;
height: 80%;
min-height: 140px;
max-height: 880px
}
html.mm-opening .mm-menu.mm-offcanvas.mm-front,html.mm-opening .mm-menu.mm-offcanvas.mm-next {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-shadow-page:after {
content: "";
display: block;
width: 20px;
height: 120%;
position: absolute;
left: 100%;
top: -10%;
z-index: 100;
-webkit-clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%);
clip-path: polygon(-20px 0,0 0,0 100%,-20px 100%)
}
.mm-menu.mm-shadow-page.mm-front:after,.mm-menu.mm-shadow-page.mm-next:after,.mm-menu.mm-shadow-page.mm-theme-black:after {
content: none;
display: none
}
.mm-menu.mm-shadow-page.mm-right:after {
left: auto;
right: 100%
}
.mm-menu.mm-shadow-page:after,.mm-menu.mm-shadow-panels .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 10px rgba(0,0,0,.3)
}
.mm-menu.mm-theme-dark {
background: #333;
border-color: rgba(0,0,0,.15);
color: rgba(255,255,255,.8)
}
.mm-menu.mm-theme-dark .mm-navbar a,.mm-menu.mm-theme-dark .mm-navbar>*,.mm-menu.mm-theme-dark em.mm-counter {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-btn:after,.mm-menu.mm-theme-dark .mm-btn:before {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-listview {
border-color: rgba(0,0,0,.15)
}
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-dark .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(0,0,0,.1);
tap-highlight-color: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark .mm-divider,.mm-menu.mm-theme-dark .mm-fixeddivider span,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(255,255,255,.05)
}
.mm-menu.mm-theme-dark label.mm-check:before {
border-color: rgba(255,255,255,.8)
}
.mm-menu.mm-shadow-page.mm-theme-dark:after,.mm-menu.mm-shadow-panels.mm-theme-dark .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 20px rgba(0,0,0,.5)
}
.mm-menu.mm-theme-dark .mm-search input {
background: rgba(255,255,255,.3);
color: rgba(255,255,255,.8)
}
.mm-menu.mm-theme-dark .mm-indexer a,.mm-menu.mm-theme-dark .mm-noresultsmsg {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-dark label.mm-toggle {
background: rgba(0,0,0,.15)
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
background: #333
}
.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu.mm-theme-white {
background: #fff;
border-color: rgba(0,0,0,.1);
color: rgba(0,0,0,.6)
}
.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-keyboardfocus a:focus,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected:not(.mm-fullsubopen),.mm-menu.mm-theme-white .mm-divider,.mm-menu.mm-theme-white .mm-fixeddivider span,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(0,0,0,.05)
}
.mm-menu.mm-theme-white .mm-navbar a,.mm-menu.mm-theme-white .mm-navbar>*,.mm-menu.mm-theme-white em.mm-counter {
color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before {
border-color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-listview {
border-color: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after {
border-color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(0,0,0,.05);
tap-highlight-color: rgba(0,0,0,.05)
}
.mm-menu.mm-theme-white label.mm-check:before {
border-color: rgba(0,0,0,.6)
}
.mm-menu.mm-shadow-page.mm-theme-white:after,.mm-menu.mm-shadow-panels.mm-theme-white .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: 0 0 10px rgba(0,0,0,.2)
}
.mm-menu.mm-theme-white .mm-search input {
background: rgba(0,0,0,.05);
color: rgba(0,0,0,.6)
}
.mm-menu.mm-theme-white .mm-indexer a,.mm-menu.mm-theme-white .mm-noresultsmsg {
color: rgba(0,0,0,.3)
}
.mm-menu.mm-theme-white label.mm-toggle {
background: rgba(0,0,0,.1)
}
.mm-menu.mm-theme-white label.mm-toggle:before {
background: #fff
}
.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu.mm-theme-black {
background: #000;
border-color: rgba(255,255,255,.2);
color: rgba(255,255,255,.6)
}
.mm-menu.mm-theme-black .mm-navbar a,.mm-menu.mm-theme-black .mm-navbar>*,.mm-menu.mm-theme-black em.mm-counter {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-btn:after,.mm-menu.mm-theme-black .mm-btn:before {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-listview {
border-color: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black .mm-listview>li .mm-next:after {
border-color: rgba(255,255,255,.4)
}
.mm-menu.mm-theme-black .mm-listview>li a:not(.mm-next) {
-webkit-tap-highlight-color: rgba(255,255,255,.3);
tap-highlight-color: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
background: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black .mm-divider,.mm-menu.mm-theme-black .mm-fixeddivider span,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
background: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black label.mm-check:before {
border-color: rgba(255,255,255,.6)
}
.mm-menu.mm-shadow-panels.mm-theme-black .mm-panel.mm-opened:nth-child(n+2) {
box-shadow: false
}
.mm-menu.mm-theme-black .mm-search input {
background: rgba(255,255,255,.3);
color: rgba(255,255,255,.6)
}
.mm-menu.mm-theme-black .mm-indexer a,.mm-menu.mm-theme-black .mm-noresultsmsg {
color: rgba(255,255,255,.4)
}
.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(255,255,255,.3)
}
.mm-menu.mm-theme-black label.mm-toggle {
background: rgba(255,255,255,.2)
}
.mm-menu.mm-theme-black label.mm-toggle:before {
background: #000
}
.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu .mm-tileview.mm-listview:after,.mm-menu.mm-tileview .mm-listview:after {
content: '';
display: block;
clear: both
}
.mm-menu .mm-tileview.mm-listview>li>.mm-next:after,.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,.mm-menu.mm-tileview .mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-panel:after {
display: none;
content: none
}
.mm-menu .mm-tileview.mm-listview>li,.mm-menu.mm-tileview .mm-listview>li {
width: 50%;
height: 0;
padding: 50% 0 0;
float: left;
position: relative
}
.mm-menu .mm-tileview.mm-listview>li:after,.mm-menu.mm-tileview .mm-listview>li:after {
left: 0;
top: 0;
border-right-width: 1px;
border-right-style: solid;
z-index: -1
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs {
width: 12.5%;
padding-top: 12.5%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-s,.mm-menu.mm-tileview .mm-listview>li.mm-tile-s {
width: 25%;
padding-top: 25%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-l,.mm-menu.mm-tileview .mm-listview>li.mm-tile-l {
width: 75%;
padding-top: 75%
}
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl {
width: 100%;
padding-top: 100%
}
.mm-menu .mm-tileview.mm-listview>li>a,.mm-menu .mm-tileview.mm-listview>li>span,.mm-menu.mm-tileview .mm-listview>li>a,.mm-menu.mm-tileview .mm-listview>li>span {
line-height: 1px;
text-align: center;
padding: 50% 10px 0;
margin: 0;
position: absolute;
top: 0;
right: 1px;
bottom: 1px;
left: 0
}
.mm-menu.mm-autoheight:not(.mm-offcanvas),html.mm-widescreen body {
position: relative
}
.mm-menu .mm-tileview.mm-listview>li>.mm-next,.mm-menu.mm-tileview .mm-listview>li>.mm-next {
width: auto
}
.mm-menu.mm-tileview .mm-panel {
padding-left: 0;
padding-right: 0
}
.mm-menu.mm-tileview .mm-listview {
margin: 0
}
html.mm-widescreen #mm-blocker {
display: none!important
}
html.mm-widescreen .mm-slideout {
transform: none!important;
width: 70%!important;
margin-left: 30%!important
}
html.mm-widescreen .mm-page {
background: inherit;
box-sizing: border-box
}
html.mm-widescreen.mm-blocking,html.mm-widescreen.mm-blocking body {
overflow: auto
}
.mm-menu.mm-widescreen {
border-right-width: 1px;
border-right-style: solid;
display: block!important;
width: 30%!important;
min-width: 0!important;
max-width: none!important;
top: 0!important;
right: auto!important;
bottom: 0!important;
left: 0!important;
z-index: 100!important;
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important
}
.mm-menu.mm-widescreen.mm-pageshadow:after {
content: none;
display: none
}
.mm-menu.mm-autoheight {
-webkit-transition: none .4s ease;
transition: none .4s ease;
-webkit-transition-property: height,-webkit-transform;
transition-property: height,-webkit-transform;
transition-property: transform,height;
transition-property: transform,height,-webkit-transform
}
.mm-menu.mm-measureheight .mm-panel.mm-vertical.mm-opened,.mm-menu.mm-measureheight .mm-panel:not(.mm-vertical) {
display: block!important
}
.mm-menu.mm-measureheight .mm-panels>.mm-panel {
bottom: auto!important;
height: auto!important
}
.mm-columns {
-webkit-transition-property: width;
transition-property: width
}
.mm-columns .mm-panels>.mm-panel {
right: auto;
-webkit-transition-property: width,-webkit-transform;
transition-property: width,-webkit-transform;
transition-property: width,transform;
transition-property: width,transform,-webkit-transform
}
.mm-columns .mm-panels>.mm-panel.mm-opened,.mm-columns .mm-panels>.mm-panel.mm-subopened {
border-left: 1px solid;
border-color: inherit;
display: block!important
}
.mm-columns .mm-panels>.mm-columns-0 {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-columns-0 .mm-panels>.mm-panel {
z-index: 0
}
.mm-columns-0 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-0 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-0 {
width: 80%;
min-width: 140px;
max-width: 0
}
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 0px) {
html.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 0px) {
html.mm-right.mm-opening .mm-menu.mm-columns-0.mm-opened~.mm-slideout {
-webkit-transform:translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-1 {
-webkit-transform: translate(100%,0);
-ms-transform: translate(100%,0);
transform: translate(100%,0);
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0)
}
.mm-columns-1 .mm-panels>.mm-panel {
z-index: 1;
width: 100%
}
.mm-columns-1 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-1 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(200%,0);
-ms-transform: translate(200%,0);
transform: translate(200%,0);
-webkit-transform: translate3d(200%,0,0);
transform: translate3d(200%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-1 {
width: 80%;
min-width: 140px;
max-width: 440px
}
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(440px,0);
-ms-transform: translate(440px,0);
transform: translate(440px,0);
-webkit-transform: translate3d(440px,0,0);
transform: translate3d(440px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 550px) {
html.mm-right.mm-opening .mm-menu.mm-columns-1.mm-opened~.mm-slideout {
-webkit-transform:translate(-440px,0);
-ms-transform: translate(-440px,0);
transform: translate(-440px,0);
-webkit-transform: translate3d(-440px,0,0);
transform: translate3d(-440px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-2 {
-webkit-transform: translate(200%,0);
-ms-transform: translate(200%,0);
transform: translate(200%,0);
-webkit-transform: translate3d(200%,0,0);
transform: translate3d(200%,0,0)
}
.mm-columns-2 .mm-panels>.mm-panel {
z-index: 2;
width: 50%
}
.mm-columns-2 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-2 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(300%,0);
-ms-transform: translate(300%,0);
transform: translate(300%,0);
-webkit-transform: translate3d(300%,0,0);
transform: translate3d(300%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-2 {
width: 80%;
min-width: 140px;
max-width: 880px
}
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 1100px) {
html.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(880px,0);
-ms-transform: translate(880px,0);
transform: translate(880px,0);
-webkit-transform: translate3d(880px,0,0);
transform: translate3d(880px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 1100px) {
html.mm-right.mm-opening .mm-menu.mm-columns-2.mm-opened~.mm-slideout {
-webkit-transform:translate(-880px,0);
-ms-transform: translate(-880px,0);
transform: translate(-880px,0);
-webkit-transform: translate3d(-880px,0,0);
transform: translate3d(-880px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-3 {
-webkit-transform: translate(300%,0);
-ms-transform: translate(300%,0);
transform: translate(300%,0);
-webkit-transform: translate3d(300%,0,0);
transform: translate3d(300%,0,0)
}
.mm-columns-3 .mm-panels>.mm-panel {
z-index: 3;
width: 33.34%
}
.mm-columns-3 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-3 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(400%,0);
-ms-transform: translate(400%,0);
transform: translate(400%,0);
-webkit-transform: translate3d(400%,0,0);
transform: translate3d(400%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-3 {
width: 80%;
min-width: 140px;
max-width: 1320px
}
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 1650px) {
html.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(1320px,0);
-ms-transform: translate(1320px,0);
transform: translate(1320px,0);
-webkit-transform: translate3d(1320px,0,0);
transform: translate3d(1320px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 1650px) {
html.mm-right.mm-opening .mm-menu.mm-columns-3.mm-opened~.mm-slideout {
-webkit-transform:translate(-1320px,0);
-ms-transform: translate(-1320px,0);
transform: translate(-1320px,0);
-webkit-transform: translate3d(-1320px,0,0);
transform: translate3d(-1320px,0,0)
}
}
.mm-columns .mm-panels>.mm-columns-4 {
-webkit-transform: translate(400%,0);
-ms-transform: translate(400%,0);
transform: translate(400%,0);
-webkit-transform: translate3d(400%,0,0);
transform: translate3d(400%,0,0)
}
.mm-columns-4 .mm-panels>.mm-panel {
z-index: 4;
width: 25%
}
.mm-columns-4 .mm-panels>.mm-panel else {
width: 100%
}
.mm-columns-4 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened) {
-webkit-transform: translate(500%,0);
-ms-transform: translate(500%,0);
transform: translate(500%,0);
-webkit-transform: translate3d(500%,0,0);
transform: translate3d(500%,0,0)
}
.mm-menu.mm-offcanvas.mm-columns-4 {
width: 80%;
min-width: 140px;
max-width: 1760px
}
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform: translate(80%,0);
-ms-transform: translate(80%,0);
transform: translate(80%,0);
-webkit-transform: translate3d(80%,0,0);
transform: translate3d(80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(140px,0);
-ms-transform: translate(140px,0);
transform: translate(140px,0);
-webkit-transform: translate3d(140px,0,0);
transform: translate3d(140px,0,0)
}
}
@media all and (min-width: 2200px) {
html.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(1760px,0);
-ms-transform: translate(1760px,0);
transform: translate(1760px,0);
-webkit-transform: translate3d(1760px,0,0);
transform: translate3d(1760px,0,0)
}
}
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform: translate(-80%,0);
-ms-transform: translate(-80%,0);
transform: translate(-80%,0);
-webkit-transform: translate3d(-80%,0,0);
transform: translate3d(-80%,0,0)
}
@media all and (max-width: 175px) {
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(-140px,0);
-ms-transform: translate(-140px,0);
transform: translate(-140px,0);
-webkit-transform: translate3d(-140px,0,0);
transform: translate3d(-140px,0,0)
}
}
@media all and (min-width: 2200px) {
html.mm-right.mm-opening .mm-menu.mm-columns-4.mm-opened~.mm-slideout {
-webkit-transform:translate(-1760px,0);
-ms-transform: translate(-1760px,0);
transform: translate(-1760px,0);
-webkit-transform: translate3d(-1760px,0,0);
transform: translate3d(-1760px,0,0)
}
}
.mm-columns.mm-offcanvas.mm-bottom,.mm-columns.mm-offcanvas.mm-top {
width: 100%;
max-width: 100%;
min-width: 100%
}
html.mm-opening .mm-columns.mm-offcanvas.mm-front,html.mm-opening .mm-columns.mm-offcanvas.mm-next {
-webkit-transition-property: width,min-width,max-width,-webkit-transform;
transition-property: width,min-width,max-width,-webkit-transform;
transition-property: width,min-width,max-width,transform;
transition-property: width,min-width,max-width,transform,-webkit-transform
}
em.mm-counter {
font: inherit;
font-size: 14px;
font-style: normal;
text-indent: 0;
line-height: 20px;
display: block;
margin-top: -10px;
position: absolute;
right: 45px;
top: 50%
}
.mm-collapsed:not(.mm-uncollapsed),.mm-nosubresults>.mm-counter {
display: none
}
em.mm-counter+a.mm-next {
width: 90px
}
em.mm-counter+a.mm-next+a,em.mm-counter+a.mm-next+span {
margin-right: 90px
}
em.mm-counter+a.mm-fullsubopen {
padding-left: 0
}
.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span,em.mm-counter+a.mm-fullsubopen+a,em.mm-counter+a.mm-fullsubopen+span {
padding-right: 90px
}
.mm-vertical>.mm-counter {
top: 12px;
margin-top: 0
}
.mm-vertical.mm-spacer>.mm-counter {
margin-top: 40px
}
.mm-menu em.mm-counter {
color: rgba(0,0,0,.3)
}
.mm-divider>span {
padding: 0;
line-height: 25px
}
.mm-divider.mm-opened a.mm-next:after {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg)
}
.mm-fixeddivider {
background: inherit;
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 10;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-fixeddivider:after {
content: none!important;
display: none!important
}
.mm-hasdividers .mm-fixeddivider {
display: block
}
.mm-menu .mm-fixeddivider span {
background: rgba(0,0,0,.05)
}
html.mm-opened.mm-dragging .mm-menu,html.mm-opened.mm-dragging .mm-slideout {
-webkit-transition-duration: 0s;
transition-duration: 0s
}
.mm-menu.mm-dropdown {
box-shadow: 0 2px 10px rgba(0,0,0,.3);
height: 80%
}
html.mm-dropdown .mm-slideout {
-webkit-transform: none!important;
-ms-transform: none!important;
transform: none!important;
z-index: 0
}
html.mm-dropdown #mm-blocker {
-webkit-transition-delay: 0s!important;
transition-delay: 0s!important;
z-index: 1
}
html.mm-dropdown .mm-menu {
z-index: 2
}
html.mm-dropdown.mm-opened:not(.mm-opening) .mm-menu.mm-dropdown {
display: none
}
.mm-menu.mm-tip:before {
content: '';
background: inherit;
box-shadow: 0 2px 10px rgba(0,0,0,.3);
display: block;
width: 15px;
height: 15px;
position: absolute;
z-index: 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg)
}
.mm-menu.mm-tipleft:before {
left: 22px
}
.mm-menu.mm-tipright:before {
right: 22px
}
.mm-menu.mm-tiptop:before {
top: -8px
}
.mm-menu.mm-tipbottom:before {
bottom: -8px
}
.mm-iconpanel .mm-panels>.mm-panel {
-webkit-transition-property: left,-webkit-transform;
transition-property: left,-webkit-transform;
transition-property: transform,left;
transition-property: transform,left,-webkit-transform
}
.mm-iconpanel .mm-panels>.mm-panel.mm-opened,.mm-iconpanel .mm-panels>.mm-panel.mm-subopened {
border-left: 1px solid;
border-color: inherit;
display: block!important
}
.mm-iconpanel .mm-panels>.mm-panel.mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
left: 0
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
left: 40px
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
left: 80px
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
left: 120px
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
left: 160px
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
left: 200px
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
left: 240px
}
.mm-subblocker {
background: inherit;
opacity: 0;
display: block;
max-height: 100%;
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 3;
-webkit-transition: opacity .4s ease;
transition: opacity .4s ease
}
.mm-subopened .mm-subblocker {
opacity: .6;
bottom: -100000px
}
.mm-keyboardfocus a:focus {
outline: 0
}
.mm-menu.mm-keyboardfocus a:focus {
background: rgba(255,255,255,.5)
}
.mm-navbars-bottom,.mm-navbars-top {
background: inherit;
border-color: inherit;
border-width: 0;
overflow: hidden;
position: absolute;
left: 0;
right: 0;
z-index: 3
}
.mm-navbars-bottom>.mm-navbar,.mm-navbars-top>.mm-navbar {
border: none;
padding: 0;
position: relative;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-navbars-top {
border-bottom-style: solid;
border-bottom-width: 1px;
top: 0
}
.mm-navbars-bottom {
border-top-style: solid;
border-top-width: 1px;
bottom: 0
}
.mm-navbar.mm-hasbtns {
padding: 0 40px
}
.mm-navbar[class*=mm-navbar-content-]>* {
box-sizing: border-box;
display: block;
float: left
}
.mm-navbar .mm-breadcrumbs {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
text-align: left;
padding: 0 0 0 17px
}
.mm-navbar .mm-breadcrumbs>* {
display: inline-block;
padding: 10px 3px
}
.mm-navbar .mm-breadcrumbs>a {
text-decoration: underline
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
margin-left: -40px
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs {
margin-left: 0;
padding-left: 0
}
.mm-hasnavbar-top-1 .mm-panels {
top: 40px
}
.mm-hasnavbar-top-2 .mm-panels {
top: 80px
}
.mm-hasnavbar-top-3 .mm-panels {
top: 120px
}
.mm-hasnavbar-top-4 .mm-panels {
top: 160px
}
.mm-hasnavbar-bottom-1 .mm-panels {
bottom: 40px
}
.mm-hasnavbar-bottom-2 .mm-panels {
bottom: 80px
}
.mm-hasnavbar-bottom-3 .mm-panels {
bottom: 120px
}
.mm-hasnavbar-bottom-4 .mm-panels {
bottom: 160px
}
.mm-navbar-size-2 {
height: 80px
}
.mm-navbar-size-3 {
height: 120px
}
.mm-navbar-size-4 {
height: 160px
}
.mm-navbar-content-2>* {
width: 50%
}
.mm-navbar-content-3>* {
width: 33.33%
}
.mm-navbar-content-4>* {
width: 25%
}
.mm-navbar-content-5>* {
width: 20%
}
.mm-navbar-content-6>* {
width: 16.67%
}
.mm-menu.mm-rtl {
direction: rtl
}
.mm-menu.mm-rtl.mm-offcanvas {
right: auto
}
.mm-menu.mm-rtl .mm-panel:not(.mm-opened) {
-webkit-transform: translate(-100%,0);
-ms-transform: translate(-100%,0);
transform: translate(-100%,0);
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0)
}
.mm-menu.mm-rtl .mm-panel.mm-subopened {
-webkit-transform: translate(30%,0);
-ms-transform: translate(30%,0);
transform: translate(30%,0);
-webkit-transform: translate3d(30%,0,0);
transform: translate3d(30%,0,0)
}
.mm-menu.mm-rtl .mm-navbar .mm-btn:first-child {
left: auto;
right: 0
}
.mm-menu.mm-rtl .mm-navbar .mm-btn:last-child {
right: auto;
left: 0
}
.mm-menu.mm-rtl .mm-navbar .mm-next:after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-menu.mm-rtl .mm-navbar .mm-prev:before {
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
right: 23px;
left: auto
}
.mm-menu.mm-rtl .mm-listview>li:not(.mm-divider)::after {
left: 0;
right: 20px
}
.mm-menu.mm-rtl .mm-listview>li>a:not(.mm-next),.mm-menu.mm-rtl .mm-listview>li>span:not(.mm-next) {
padding-left: 10px;
padding-right: 20px!important;
margin-right: 0!important
}
.mm-menu.mm-rtl .mm-listview .mm-next {
right: auto;
left: 0
}
.mm-menu.mm-rtl .mm-listview .mm-next:before {
left: auto;
right: 0
}
.mm-menu.mm-rtl .mm-listview .mm-next:after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
left: 23px;
right: auto
}
.mm-menu.mm-rtl .mm-listview .mm-next+a,.mm-menu.mm-rtl .mm-listview .mm-next+span {
margin-left: 50px
}
.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+span {
padding-left: 50px
}
.mm-menu.mm-rtl em.mm-counter {
left: 45px;
right: auto
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+span {
margin-left: 90px
}
.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+span {
padding-left: 90px
}
.mm-menu.mm-rtl label.mm-check,.mm-menu.mm-rtl label.mm-toggle {
left: 20px;
right: auto!important
}
.mm-menu.mm-rtl label.mm-toggle+a,.mm-menu.mm-rtl label.mm-toggle+span {
padding-left: 80px
}
.mm-menu.mm-rtl label.mm-check+a,.mm-menu.mm-rtl label.mm-check+span {
padding-left: 60px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check,.mm-menu.mm-rtl a.mm-next+label.mm-toggle {
left: 60px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span {
margin-left: 50px
}
.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span {
padding-left: 70px
}
.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span {
padding-left: 50px
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle {
left: 100px
}
.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+span,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+span {
margin-left: 90px
}
.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-] {
left: 0
}
.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-].mm-subopened {
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel {
-webkit-transition-property: right,-webkit-transform;
transition-property: right,-webkit-transform;
transition-property: transform,right;
transition-property: transform,right,-webkit-transform
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-0 {
right: 0
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-1 {
right: 40px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-2 {
right: 80px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-3 {
right: 120px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-4 {
right: 160px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-5 {
right: 200px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-6 {
right: 240px
}
.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-opened {
border-left: none;
border-right: 1px solid;
border-color: inherit
}
.mm-search,.mm-search input {
box-sizing: border-box
}
.mm-search {
height: 40px;
padding: 7px 10px 0;
position: relative
}
.mm-search input {
border: none!important;
outline: 0!important;
box-shadow: none!important;
border-radius: 4px;
font: inherit;
font-size: 14px;
line-height: 26px;
display: block;
box-sizing: border-box;
width: 100%;
height: 26px;
min-height: 26px;
max-height: 26px;
margin: 0;
padding: 0 10px
}
.mm-search input::-ms-clear {
display: none
}
.mm-search .mm-clear,.mm-search .mm-next {
right: 0
}
.mm-panel>.mm-search {
width: 100%;
position: absolute;
top: 0;
left: 0
}
.mm-panel.mm-hassearch {
padding-top: 40px
}
.mm-panel.mm-hassearch.mm-hasnavbar {
padding-top: 80px
}
.mm-panel.mm-hassearch.mm-hasnavbar>.mm-search {
top: 40px
}
.mm-noresultsmsg {
text-align: center;
font-size: 21px;
padding: 40px 0
}
.mm-noresults .mm-indexer {
display: none!important
}
li.mm-nosubresults>a.mm-next {
display: none
}
li.mm-nosubresults>a.mm-next+a,li.mm-nosubresults>a.mm-next+span {
padding-right: 10px
}
.mm-menu .mm-search input {
background: rgba(0,0,0,.05);
color: rgba(0,0,0,.75)
}
.mm-menu .mm-indexer a,.mm-menu .mm-noresultsmsg {
color: rgba(0,0,0,.3)
}
.mm-indexer {
background: inherit;
text-align: center;
font-size: 12px;
box-sizing: border-box;
width: 20px;
position: absolute;
top: 0;
bottom: 0;
right: -100px;
z-index: 15;
-webkit-transition: right .4s ease;
transition: right .4s ease;
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0)
}
.mm-indexer a {
text-decoration: none;
display: block;
height: 3.85%
}
.mm-indexer~.mm-panel.mm-hasindexer {
padding-right: 40px
}
.mm-hasindexer .mm-indexer {
right: 0
}
.mm-hasindexer .mm-fixeddivider {
right: 20px
}
.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen),.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a:not(.mm-fullsubopen) {
-webkit-transition: background .4s ease;
transition: background .4s ease
}
.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
background: rgba(255,255,255,.5)
}
input.mm-check,input.mm-toggle {
position: absolute;
left: -10000px
}
label.mm-check,label.mm-toggle {
margin: 0;
position: absolute;
top: 50%;
z-index: 2;
right: 20px
}
label.mm-check:before,label.mm-toggle:before {
content: '';
display: block
}
label.mm-toggle {
border-radius: 30px;
width: 50px;
height: 30px;
margin-top: -15px
}
label.mm-toggle:before {
border-radius: 30px;
width: 28px;
height: 28px;
margin: 1px
}
input.mm-toggle:checked~label.mm-toggle:before {
float: right
}
label.mm-check {
width: 30px;
height: 30px;
margin-top: -15px
}
label.mm-check:before {
border-left: 3px solid;
border-bottom: 3px solid;
width: 40%;
height: 20%;
margin: 25% 0 0 20%;
opacity: .1;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg)
}
input.mm-check:checked~label.mm-check:before {
opacity: 1
}
li.mm-vertical label.mm-check,li.mm-vertical label.mm-toggle {
bottom: auto;
margin-top: 0;
top: 5px
}
label.mm-toggle+a,label.mm-toggle+span {
padding-right: 80px
}
label.mm-check+a,label.mm-check+span {
padding-right: 60px
}
a.mm-next+label.mm-check,a.mm-next+label.mm-toggle {
right: 60px
}
a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span,a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
margin-right: 50px
}
a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
padding-right: 70px
}
a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span {
padding-right: 50px
}
em.mm-counter+a.mm-next+label.mm-check,em.mm-counter+a.mm-next+label.mm-toggle {
right: 100px
}
em.mm-counter+a.mm-next+label.mm-check+a,em.mm-counter+a.mm-next+label.mm-check+span,em.mm-counter+a.mm-next+label.mm-toggle+a,em.mm-counter+a.mm-next+label.mm-toggle+span {
margin-right: 90px
}
.mm-menu label.mm-toggle {
background: rgba(0,0,0,.1)
}
.mm-menu label.mm-toggle:before {
background: #f3f3f3
}
.mm-menu input.mm-toggle:checked~label.mm-toggle {
background: #4bd963
}
.mm-menu label.mm-check:before {
border-color: rgba(0,0,0,.75)
} | 0.493653 | 0.073065 |
.top {
display: flex;
flex-direction: row;
background-color: white;
color: orangered;
justify-content: space-between;
margin: 10px 0px 10px 0px;
}
.btn_top {
height: 28px;
border-color: orangered;
color: orangered;
}
.search {
width: 300px;
}
.top :hover {
color: red;
}
@keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-moz-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-o-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-webkit-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
.shop_name {
animation-name: shop_name;
animation-duration: 3s;
animation-iteration-count: infinite;
margin-left: 30px;
}
.menu {
display: flex;
flex-direction: row;
}
.btn_menu {
border: none;
color: blanchedalmond;
margin-left: 10px;
width: max-content;
background-color: darkgreen;
}
.menu_1 {
background-color: darkgreen;
display: flex;
align-items: baseline;
align-items: flex-start;
}
.menu_all {
background-color: darkgreen;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.menu_2 {
display: flex;
}
.menu_3 {
margin-top: 10px;
width: 180px;
}
.menu_4 {
width: 210px;
margin-top: 10px;
}
.dropdown-toggle {
margin-top: 10px;
}
.menu_book {
list-style: none;
float: left;
}
.product {
width: 20%;
}
.all_product {
display: flex;
flex-wrap: wrap;
flex-direction: row;
} | style.css | .top {
display: flex;
flex-direction: row;
background-color: white;
color: orangered;
justify-content: space-between;
margin: 10px 0px 10px 0px;
}
.btn_top {
height: 28px;
border-color: orangered;
color: orangered;
}
.search {
width: 300px;
}
.top :hover {
color: red;
}
@keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-moz-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-o-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
@-webkit-keyframes shop_name {
10% {
color: red;
}
50% {
color: rgb(243, 149, 149);
}
70% {
color: blue;
}
100% {
color: red;
}
}
.shop_name {
animation-name: shop_name;
animation-duration: 3s;
animation-iteration-count: infinite;
margin-left: 30px;
}
.menu {
display: flex;
flex-direction: row;
}
.btn_menu {
border: none;
color: blanchedalmond;
margin-left: 10px;
width: max-content;
background-color: darkgreen;
}
.menu_1 {
background-color: darkgreen;
display: flex;
align-items: baseline;
align-items: flex-start;
}
.menu_all {
background-color: darkgreen;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.menu_2 {
display: flex;
}
.menu_3 {
margin-top: 10px;
width: 180px;
}
.menu_4 {
width: 210px;
margin-top: 10px;
}
.dropdown-toggle {
margin-top: 10px;
}
.menu_book {
list-style: none;
float: left;
}
.product {
width: 20%;
}
.all_product {
display: flex;
flex-wrap: wrap;
flex-direction: row;
} | 0.670177 | 0.132094 |
@namespace url(http://www.w3.org/1999/xhtml);
/*no.18*/
@-moz-document domain("jinghua.cn") {
.index_ad_box{display:none !important;}
}
/*no.17*/
@-moz-document domain("xiaonei.com") {
#banner,#wpiroot{display:none !important;}
}
/*no.16*/
@-moz-document url-prefix("http://cn.ibtimes.com/"){
#sponsorbox{display:none !important;}
}
/*no.15*/
@-moz-document url-prefix("http://bbs.uubird.com/"),url-prefix("http://uubird.com/"){
#ad_text{display:none !important;}
}
/*no.14*/
@-moz-document url-prefix("http://www.dygod.com/"),url-prefix("http://dygod.com/"),url-prefix("http://www.dygod.cn/") {
.altbg2{display:none !important;}
}
/*no.13*/
@-moz-document url-prefix("http://qq.com") {
#QQCOM_Width3,#GustBook,#nav,.l,.adright,.cl,.content,.adright1,.adMArea,.adArea,
.footernew,#AdZoneRa,#AdZoneRb,#PicSpeek,#Adflashyk,#allBlog,#AdZoneRf,#AdZoneRe,
#AdZoneRd,#AdZoneLa,#AdZoneLc,#AdZoneLe,#StrongPic,#Reading,#nzttj,#ArtInfo,#CopyRight2006,
#adl01,#adm01,#imgSky,#newsReview,#Cmedia,#ppMenu,#ppMainDesc,#adAreaAInfo,#adArea{display:none !important;}
}
/*no.12*/
@-moz-document url-prefix("http://tianya.cn") {
#oNWsbY60p2WDfFfCrOcv,#logincopyArea{display:none!important}
}
/*no.11*/
@-moz-document url-prefix("http://sina.com.cn"),url-prefix("http://www.sina.com.cn"),url-prefix("http://sports.sina.com.cn"),url-prefix("http://blog.sina.com.cn/") {#dingtong,.left,#footer,#_leftBottomFlash{display:none !important}
}
/*no.10*/
@-moz-document url-prefix("http://www.ifeng.com/") {
.areaAd{display:none !important}
}
/*no.9*/
@-moz-document url-prefix("http://www.amazon.cn/") {
#StripeAds{display:none !important}
}
/*no.8*/
@-moz-document url-prefix("http://www.hao123.com"), url-prefix("http://hao123.com")
{#t2,.dc,.dh{display:none !important;}
}
/*no.7*/
@-moz-document url-prefix("http://cn.yahoo.com"){
.admod fixfloat,.side-b,#icast_container{display:none !important;}
}
/*no.6*/
@-moz-document domain("www.baidu.com") {
table[width="95%"],
table[width="5%"][align="right"],
a[href^="http://www.baidu.com/baidu.php?"],
a[href^="http://www.baidu.com/baidu.php?"] ~ *,
html body br{
display:none !important;
}
.p{margin-top:5px !important;margin-bottom:20px !important;}
font[size^="3"]{font-weight:700 !important;}
font[color^="#008000"]{display:block;}
font[size^="-1"]{width:900px !important;margin-bottom:20px !important;display:block;}
.f{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;
}
}
/*no.5*/
@-moz-document url-prefix("http://hi.baidu.com/"){
#m_comm_info a[href="http://www.baidu.com/search/whatisrss.html"]{display:none !important;}
#pet,#tip,.header,#msgPos,#msgRight{display:none! important;}
}
/*no.4*/
@-moz-document url-prefix("http://tieba.baidu.com"), url-prefix("http://post.baidu.com") {
HTML > BODY > DIV:first-child + FORM + DIV,
HTML > BODY > DIV:first-child + DIV + FORM + DIV,
#rightAd,.mod{ display: none !important; }
}
/*no.3*/
@-moz-document url-prefix(http://zhidao.baidu.com/)
{
#center>table{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 8px ! important;
margin: 8px 0px !important;}
}
/*no.2*/
@-moz-document url-prefix("http://news.baidu.com")
{div>table{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;}
a {text-decoration: none ! important; }
.p2,#DivPost,#ecad,#ecomAdDiv{display:none !important;}
}
/*no.1*/
@-moz-document url-prefix("http://mp3.baidu.com")
{#leftRes>table>tbody{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;}
a {text-decoration: none ! important; }
} | data/usercss/9002.user.css | @namespace url(http://www.w3.org/1999/xhtml);
/*no.18*/
@-moz-document domain("jinghua.cn") {
.index_ad_box{display:none !important;}
}
/*no.17*/
@-moz-document domain("xiaonei.com") {
#banner,#wpiroot{display:none !important;}
}
/*no.16*/
@-moz-document url-prefix("http://cn.ibtimes.com/"){
#sponsorbox{display:none !important;}
}
/*no.15*/
@-moz-document url-prefix("http://bbs.uubird.com/"),url-prefix("http://uubird.com/"){
#ad_text{display:none !important;}
}
/*no.14*/
@-moz-document url-prefix("http://www.dygod.com/"),url-prefix("http://dygod.com/"),url-prefix("http://www.dygod.cn/") {
.altbg2{display:none !important;}
}
/*no.13*/
@-moz-document url-prefix("http://qq.com") {
#QQCOM_Width3,#GustBook,#nav,.l,.adright,.cl,.content,.adright1,.adMArea,.adArea,
.footernew,#AdZoneRa,#AdZoneRb,#PicSpeek,#Adflashyk,#allBlog,#AdZoneRf,#AdZoneRe,
#AdZoneRd,#AdZoneLa,#AdZoneLc,#AdZoneLe,#StrongPic,#Reading,#nzttj,#ArtInfo,#CopyRight2006,
#adl01,#adm01,#imgSky,#newsReview,#Cmedia,#ppMenu,#ppMainDesc,#adAreaAInfo,#adArea{display:none !important;}
}
/*no.12*/
@-moz-document url-prefix("http://tianya.cn") {
#oNWsbY60p2WDfFfCrOcv,#logincopyArea{display:none!important}
}
/*no.11*/
@-moz-document url-prefix("http://sina.com.cn"),url-prefix("http://www.sina.com.cn"),url-prefix("http://sports.sina.com.cn"),url-prefix("http://blog.sina.com.cn/") {#dingtong,.left,#footer,#_leftBottomFlash{display:none !important}
}
/*no.10*/
@-moz-document url-prefix("http://www.ifeng.com/") {
.areaAd{display:none !important}
}
/*no.9*/
@-moz-document url-prefix("http://www.amazon.cn/") {
#StripeAds{display:none !important}
}
/*no.8*/
@-moz-document url-prefix("http://www.hao123.com"), url-prefix("http://hao123.com")
{#t2,.dc,.dh{display:none !important;}
}
/*no.7*/
@-moz-document url-prefix("http://cn.yahoo.com"){
.admod fixfloat,.side-b,#icast_container{display:none !important;}
}
/*no.6*/
@-moz-document domain("www.baidu.com") {
table[width="95%"],
table[width="5%"][align="right"],
a[href^="http://www.baidu.com/baidu.php?"],
a[href^="http://www.baidu.com/baidu.php?"] ~ *,
html body br{
display:none !important;
}
.p{margin-top:5px !important;margin-bottom:20px !important;}
font[size^="3"]{font-weight:700 !important;}
font[color^="#008000"]{display:block;}
font[size^="-1"]{width:900px !important;margin-bottom:20px !important;display:block;}
.f{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;
}
}
/*no.5*/
@-moz-document url-prefix("http://hi.baidu.com/"){
#m_comm_info a[href="http://www.baidu.com/search/whatisrss.html"]{display:none !important;}
#pet,#tip,.header,#msgPos,#msgRight{display:none! important;}
}
/*no.4*/
@-moz-document url-prefix("http://tieba.baidu.com"), url-prefix("http://post.baidu.com") {
HTML > BODY > DIV:first-child + FORM + DIV,
HTML > BODY > DIV:first-child + DIV + FORM + DIV,
#rightAd,.mod{ display: none !important; }
}
/*no.3*/
@-moz-document url-prefix(http://zhidao.baidu.com/)
{
#center>table{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 8px ! important;
margin: 8px 0px !important;}
}
/*no.2*/
@-moz-document url-prefix("http://news.baidu.com")
{div>table{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;}
a {text-decoration: none ! important; }
.p2,#DivPost,#ecad,#ecomAdDiv{display:none !important;}
}
/*no.1*/
@-moz-document url-prefix("http://mp3.baidu.com")
{#leftRes>table>tbody{width:100% !important;
margin-top:10px !important;
background-color: #FFDEAD ! important;
border-top: solid 1px #3366CC! important;
-moz-border-radius: 0px ! important;
padding: 10px 30px! important;
margin: 8px 0px !important;}
a {text-decoration: none ! important; }
} | 0.079435 | 0.072867 |
*{ outline: none;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
padding: 0;
margin: 0;
}
body{
overflow-x :hidden;
background: #151925;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,img {
border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-weight: normal;
font-style: normal;
}
ol,ul {
list-style: none;
}
caption,th {
text-align: left;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-size: 100%;
}
q:before,q:after {
content:'';
}
.l{float: left}
.r{float: right}
abbr,acronym { border: 0;
}
body { font-family: 'Microsoft YaHei', sans-serif; font-size: 12px; background-color: white; }
a{ text-decoration: none; outline: none; }
.onl_ie7{
display: none;width: 100%;height: 100%; background:url("../images/popBlack.png") repeat ;position: fixed;z-index: 7777777
}
.onl_ie7 p{text-align: center;margin-top: 25%;color: white;font-size: 20px}
.close_btn{position: absolute;right:10px;top:10px;cursor: pointer;}
.webAll{ min-width: 1000px; height: auto; background-color: #151925;}
.header{ background: url(../images/vv5/top.jpg) no-repeat top center; width: auto; height: 853px;margin-top: -1px;}
.pageZhengc{ background: url(../images/vv5/g1.jpg) no-repeat top center; width: auto; height: 497px;margin-top: -1px;}
.page_video{ background: url(../images/vv5/g4.jpg) no-repeat top center; width: auto; height: 595px;margin-top: -1px;}
.page_video .video { position: absolute; width:692px; height:389px; left:159px; top:113px; }
.page_video .vv5 { width:417px; height:215px; background: url(../images/vv5.png) no-repeat; position: absolute; left:699px; top:631px; }
.video video { width:100%; height:100%; border: 2px solid #e1bc70; }
.pagePic1{margin-top:-1px;background: url(../images/vv5/g5.jpg) no-repeat top center; width: auto; height: 589px;}
.g4_title { width:543px; height:102px; position: absolute; left:348px; top:0; z-index: 5; /*background: url(../images/vv5/g4_title.png) no-repeat;*/ }
.pageAdv{ /*background: url(../images/page_adv.jpg) no-repeat top center;*/ width: auto; height: 615px;}
.pageTable{ margin-top: -1px;background:#151925 url(../images/vv5/g6.jpg) no-repeat top center; width: auto; height: 902px; overflow: hidden; }
.pageDrive{ margin-top: -1px;background: url(../images/vv5/g2.jpg) no-repeat top center; width: auto; height: 637px;}
.page_news{ margin-top: -1px;background: url(../images/vv5/g3.jpg) no-repeat top center; width: auto; height: 726px;}
.foot{ width: auto; height: 630px;}
.footer { height:48px; background: url("../images/footer.jpg") center center no-repeat; }
.main{ width: 1004px; height: auto; margin: 0 auto; position: relative;}
.rotart-box{
overflow: hidden;
width:350px;
height:350px;
border-radius:50%;
position: relative;
top:157px;
left: 54px;
}
.rotary-xaun{
position: absolute;
width:100%;
height:100%;
background: url("../images/vv5/rotary_pan_xuan.png") no-repeat center center;
background-size: 100% 100%;
}
.rotary-btn{
cursor: pointer;
position: absolute;
left: 131px;
top:105px;
width:88px ;
height: 117px;
background: url("../images/vv5/zhen.png") no-repeat center center;
background-size: 100% 100%;
}
.rotate_txt1 { color:#ffffff; font-size:14px; width:471px; text-align: center; top:110px; font-style: italic; position: absolute; }
.rotate_txt2 { color:#ffffff; font-size:12px; width:471px; text-align: center; top:517px; font-style: italic; position: absolute; }
.rotate_txt2 p,.rotate_txt1 p { font-size:12px; line-height: 1.5; }
.rotate_txt1 i { color:#e1bc70; }
.rotate_txt2 .orange { color:#e1bc70; }
.rotate_txt2 .btn_about { text-decoration: underline; color:#ffffff; cursor: pointer;}
.page_news dt { font-style: italic; padding:0 10px; padding-bottom:10px; line-height: 1.5; font-size:12px;}
.page_news dd img { display: inline-block; }
.page_news dd { text-align: center;}
.page_news p { line-height: 1.3; font-size:12px; }
.page_news a { position: absolute; }
.page_news .a1 { width:285px; left:-30px; top:158px; }
.page_news .a2 { width:247px; left:353px; top:158px; }
.page_news .a3 { width:343px; left:687px; top:148px; }
.page_news .a3 dt { padding-bottom: 5px; }
.page_news .a4 { width:244px; left:185px; top:486px; }
.page_news .a5 { width:240px; left:564px; top:512px; }
.mainHeader{ width: 100%; min-width: 1000px; height: 300px; margin: 0 auto; position: relative;}
.mainHeader .hLoge1{ position: absolute; top: 20px; left: 10px;}
.mainHeader .hLoge2{ position: absolute; top: 20px; right: 10px;}
.mainLive{ position: absolute; width: 753px; height: 418px; top: 159px; left: 50%; margin-left: -376px; overflow: hidden;}
.mainLive img{ width: 100%; height: 100%; display: block;}
.mainLiveTit{ position: absolute; width: 333px; height: 112px; top: 0px; left: 110px; display: none;}
.mainLiveTit img{ width: 100%; height: 100%; display: block;}
.mainLive .jwPlayer{ display: none;}
.mainAdv{ position: absolute; width: 1018px; height: 380px; top: 182px; left: 50%; margin-left: -509px;}
.mainTableParent {
position: absolute;
width:700px;
height:480px;
z-index: 10;
background-color: #e1bc70;
left:152px; border:2px solid #ffdc52; top: 155px;
}
.mCustomScrollbar { }
.mainTable { position:absolute; left:0; top:0; width:100%;}
.mainTable table table { width:100% !important; }
.mainTable table table td { width:auto !important; text-align: left; }
.mainTable table table tr td:first-child { width:auto;}
.mainTable th{
width:168px; box-sizing: border-box; height:53px;text-align: center; font-size:18px;
background-color: #e1bc70;
color: #000000;
padding: 0 5px;}
.tDing { background-color: #e1bc70; box-sizing: border-box; padding-right:20px; }
.tDing table { width:100%;}
.tDing .th1 { width:172px;}
.mainTable tr td {
width:168px; height:25px; box-sizing: border-box; text-align: center; padding: 5px 10px;
background-color:#3f3055;
border:1px #423f3f solid; color: #f1f1f1 ;font-size: 12px; line-height: 25px;
}
.mainTable tr td:first-child { width:172px; }
#tableBox, #tableBox2, #tableBox3 {height: 422px;}
#tableBox table {}
.mainTable .tHead{ background-color: #1c1c1c;color: #ffffff;text-align: left;padding-left: 15px;font-weight: bolder}
.mainTable .tFoot{ text-align: left; padding: 10px;}
.mainTable .mCSB_draggerRail{background-color:#121212 ;display: block;left: 10px;height: 498px}
.mainTable .mCSB_container{}
.mainTable.w2 .tDing .th1,.mainTable.w2 tr td:first-child { width:230px; }
.mainTable.w2 th,.mainTable.w2 tr td { width:222px; }
.mainTable .mCSB_container table{ }
table td[colspan='4'] { text-align:left; }
.w2 table td[colspan='3'] { text-align:left; }
.table_nav { width:700px; top:-54px; border:2px solid #edd596; left:-2px; text-align: center; position: absolute; overflow: hidden; }
.table_nav span { width:33.333%; cursor: pointer; box-sizing: border-box; border:2px solid #2a1943; font-size:14px; line-height: 45px; background:#e1bc70; float:left; color:#000000; }
.table_nav span:nth-child(1) { border-right:0;}
.table_nav span:nth-child(2) { border-right:0;}
.table_nav span.active { background:#ffffff; color:#000000; }
.page_about { width:100%; height:100%; display: none; z-index: 1000; position: fixed; left:0; top:0; background-color:rgba(0,0,0,0.6); }
.about_cont { border:2px solid #e1bc70; box-sizing: border-box; color:#5e5e5e; width:600px; left:50%; top:50%; position: absolute; height:450px; background:#ffffff; left:50%; top:50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.about_cont dt { color:#e1bc70; font-size:17px; padding:10px 0; }
.about_cont p { font-size:14px; line-height: 1.5; }
.about_art { height:100%; width:100%; }
.about_scroll { position: absolute; left:10px; right:10px; top:30px; bottom:20px;}
.about_cont .quit { width:32px; height:32px; background: url(../images/close.jpg) no-repeat; background-size:cover; position: absolute; right:10px; top:10px; z-index: 10; cursor: pointer;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #3f3055;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background: #3f3055; width: 8px;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background: #3f3055;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #3f3055; }
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #3f3055; }
#testDrive{ position: absolute; width: 495px; height: auto; top: 170px; right: -30px;}
.pic1_box { width:696px; height:430px; position: absolute; left:157px; top:122px;}
.owl-pagination { display: none; }
.pageTable .er { position: absolute; left:245px; top:674px; text-align: center; font-size:12px; }
.pageTable .er p { padding-top:10px; }
.pic1_box .owl-prev, .pic1_box .owl-next, .pic2_box .owl-next, .pic2_box .owl-prev { overflow: hidden; text-indent: -999px; position: absolute; top:188px; }
.pic1_box .owl-prev, .pic2_box .owl-prev { width:29px; height:42px; background:url(../images/vv5/prev2.png) no-repeat; left:-50px; }
.pic1_box .owl-next, .pic2_box .owl-next { width:29px; height:42px; background:url(../images/vv5/next2.png) no-repeat; right:-50px; }
.pic2_box .owl-next, .pic2_box .owl-prev { top:150px; }
.pic2_box { width:549px; height:372px; position: absolute; right:2px; top:47px; /*-webkit-mask-image: url(../images/pic2_mask.png); mask-image: url(../images/pic2_mask.png);*/ }
.pic2_box_d { width:553px; height:378px; position: absolute; right:0px; top:45px; }
.pic2_box img { width:549px; height:372px; }
.pic2_dl { position: absolute; width:460px; left:35px; top:160px; color:#ffffff;}
.pic2_dl dl { display: none; }
.pic2_dl dt { font-size:30px; }
.pic2_dl dd { font-size:20px; padding-top:30px; }
.pic2_dl a { color:#ffffff; }
.vv7 { width:702px; height:411px; touch-action: none;pointer-events: none; position: absolute; top:600px; left:540px; background:url(../images/VV7.png) no-repeat; }
.mask{
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999998;
}
.mask_s{
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999998;
}
.aleart_bg{
background:url("../images/popBlack.png") repeat ;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.aleart{
background: #ffffff none repeat scroll 0 0;
border: 1px solid #c1c1c1;
border-radius: 8px;
cursor: pointer;
left: 50%;
margin-top: -25px;
position: absolute;
top: 50%;
z-index: 2;
height: auto;
padding: 10px;
line-height: 22px;
font-size: 16px;
text-align: center;
color: #000;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.aleart_succe {z-index: 7777;position: absolute;left: 0;margin-left: -305px;margin-top: -145px}
.showSuccess { width:100%; height:100%; display:none; position: fixed; left:0; top:0; z-index: 100; background:rgba(0,0,0,0.7); }
.show_suc_cont { width:620px; height:272px; position: absolute; left:50%; top:50%; margin:-135px 0 0 -310px; background:#ffffff url(../images/pop_logo.jpg) left top no-repeat; border:2px solid #e1bc70; }
.show_suc_cont .exit { width:32px; height:32px; position: absolute; right:10px; top:10px; background:url(../images/close.jpg) no-repeat; background-size: cover; cursor: pointer; }
.show_suc_cont dl { padding-top:70px; }
.show_suc_cont dt { font-size:30px; color:#484848; text-align: center; padding-bottom:20px; }
.show_suc_cont dd { font-size:16px; color:#484848; text-align: center;}
.layerSucce{
display: none;
background:url("../images/popBlack.png") repeat ;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 111;
}
.layerSucce .sCont{
position: absolute;
width: 578px;
height: 338px;
left: 50%;
top: 50%;
margin-left: -298px;
margin-top: -169px;
z-index: 132;
}
.layerSucce .sCont i{
width: 50px;
height: 50px;
position: absolute;
top: 50px;
right: 0px;
z-index: 15;
cursor: pointer;
}
.layerSucce .sCont img{
width: 100%;
height: 100%;
}
/**试驾表单**/
.car_form{width: auto;height: auto;}
.car_form .form-con{
padding: 5px 0px; clear: both;
overflow: hidden;
}
.car_form .form-con .form-conname{
width: 145px;
height: 35px;
color: #e1bd72;
font-size: 20px;
line-height: 30px;
letter-spacing: 3px;
font-weight: normal;
text-align: right;
padding-right: 7px;
float: left;
}
.car_form .form-con .form-conname.form-connames{letter-spacing: 8px;}
.car_form .form-con .sel{
height: 35px;
border: 1px solid #e1bd72;
float: left;
position: relative;
overflow: hidden;
}
.car_form .form-con .audi,.car_form .form-con .company,.car_form .form-con .phone{ width: 270px;}
.car_form .form-con .sel span,.car_form .form-con .sel p{
display: block;
width: 100%;
height: 35px;
font-size: 14px;
text-indent: 10px;
line-height: 35px;
background: url(../images/testDrive/page2_icon.jpg) no-repeat right top;
color: #ffffff;
}
.car_form .form-con .sel select{
height: 35px;
position: absolute;
top: -1px;
left: -1px;
opacity: 0;
filter:alpha(opacity=0);
border: none;
outline: none;
color: #000000;
}
.car_form .form-con .sel select option{
width: 100%;
}
.car_form .form-con .sel input{
height: 35px;
width: 100%;
border: none;
outline: none;
color: #ffffff;
font-size: 14px;
text-indent: 10px;
line-height: 30px;
background: none;
padding: 0px;
}
.car_form .form-con .province,.car_form .form-con .name{
width: 130px;
margin-right: 8px;
}
.car_form .form-con .audi select,.car_form .form-con .company select{
width: 100%;
}
.car_form .form-con .province select,.car_form .form-con .sex select{
width: 100%;
}
.car_form .form-con .city,.car_form .form-con .sex{
width: 130px;
}
.car_form .form-con .city select{
width: 100%;
}
.car_form .btn_submit{
cursor: pointer;
width: 209px;
height: 50px;
text-align: center;
display: block;
background: url("../images/testDrive/sub_btn.jpg") no-repeat;
border:none;
position: relative;
margin: 0 auto;
}
.car_form .form-desc{
height: auto;
font-size: 14px;
line-height: 20px;
color: #ffffff;
padding-left: 20px;
position: relative;
margin:20px 30px 30px 0;
clear: both;
}
.kuang{position: absolute; top: 3px; left: 2px;z-index: 2;opacity: 0;cursor: pointer}
.kuang_J{position: absolute; top: 3px; left: 2px;width: 11px;height:14px;background: url(../images/testDrive/pag2_k.png) no-repeat center bottom;z-index: 1}
.kuang_J.on{position: absolute; top: 3px; left: 2px;width: 11px;height: 14px;background: url("../images/testDrive/pag2_d.png") no-repeat center bottom;z-index: 1}
.iconPlay{ background: url(../images/icon_play.png); width: 55px; height: 55px; display: inline-block;}
.layer{ width: 100%; height: 100%; position: fixed; top: 0; left: 0; background: url(../images/popBlack.png); z-index: 99999; display: none;}
.layer .lClose{ width: 46px; height: 46px; position: absolute; right: 30px; top: 30px; cursor: pointer; background: url(../images/layer_close.png);}
.layer .lCont{ width: 900px; height: 400px; position: absolute; top: 50%; left: 50%; margin: -250px 0 0 -450px;}
#owlLunbo{width: 900px}
#owlLunbo .item{ width: 100%; height: auto;}
#owlLunbo .item img{ width: 100%; height: 100%; display: block;}
#owlLunbo .owl-buttons {
position: absolute;
top: 0;
left: 0;
z-index: 101;
width: 100%;
}
#owlLunbo .owl-buttons div.owl-prev, #owlLunbo .owl-buttons div.owl-next {
position: absolute;
top: 200px;
width: 26px;
height: 51px;
text-indent: 100px;
overflow: hidden;
}
#owlLunbo .owl-buttons div.owl-prev {
background: url(../images/vv5/prev2.png) no-repeat top center;
left: -30px;
}
#owlLunbo .owl-buttons div.owl-next {
background: url(../images/vv5/next2.png) no-repeat top center;
right: -30px;
}
#owlLunbo .owl-pagination{ display: none;}
#owlVideo{width: 502px;}
#owlVideo .owl-item{ width: 248px;}
#owlVideo .item{ width: 248px; height: auto;}
#owlVideo .item img{ width: 100%; height: 100%; display: block;}
#owlVideo .owl-buttons {
position: absolute;
top: 0;
left: 0;
z-index: 101;
width: 100%;
}
#owlVideo .owl-buttons div.owl-prev, #owlVideo .owl-buttons div.owl-next {
position: absolute;
top: 40px;
width: 26px;
height: 51px;
text-indent: 100px;
overflow: hidden;
}
.footer{
background: #d6cccc;
font-family: "Microsoft YaHei", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
color: #000;
padding-top: 10px;
box-sizing: content-box;
}
.footer p{
text-align: center;
font-size: 12px;
}
#fix-b{
display: inline-block;
width: 100%;
height: 58px;
line-height: 58px;
font-size: 24px;
text-align: center;
color: #efe6e6;
background-color: rgba(0,0,0,0.5);
position: fixed;
bottom: 0;
z-index: 99;
}
#fix-b:hover{
color: #daa7a7;
cursor: pointer;
background-color: rgba(0,0,0,0.7);
} | public/themes/txqc/public/assets/vv/css/vv5.css | *{ outline: none;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
padding: 0;
margin: 0;
}
body{
overflow-x :hidden;
background: #151925;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,img {
border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-weight: normal;
font-style: normal;
}
ol,ul {
list-style: none;
}
caption,th {
text-align: left;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-size: 100%;
}
q:before,q:after {
content:'';
}
.l{float: left}
.r{float: right}
abbr,acronym { border: 0;
}
body { font-family: 'Microsoft YaHei', sans-serif; font-size: 12px; background-color: white; }
a{ text-decoration: none; outline: none; }
.onl_ie7{
display: none;width: 100%;height: 100%; background:url("../images/popBlack.png") repeat ;position: fixed;z-index: 7777777
}
.onl_ie7 p{text-align: center;margin-top: 25%;color: white;font-size: 20px}
.close_btn{position: absolute;right:10px;top:10px;cursor: pointer;}
.webAll{ min-width: 1000px; height: auto; background-color: #151925;}
.header{ background: url(../images/vv5/top.jpg) no-repeat top center; width: auto; height: 853px;margin-top: -1px;}
.pageZhengc{ background: url(../images/vv5/g1.jpg) no-repeat top center; width: auto; height: 497px;margin-top: -1px;}
.page_video{ background: url(../images/vv5/g4.jpg) no-repeat top center; width: auto; height: 595px;margin-top: -1px;}
.page_video .video { position: absolute; width:692px; height:389px; left:159px; top:113px; }
.page_video .vv5 { width:417px; height:215px; background: url(../images/vv5.png) no-repeat; position: absolute; left:699px; top:631px; }
.video video { width:100%; height:100%; border: 2px solid #e1bc70; }
.pagePic1{margin-top:-1px;background: url(../images/vv5/g5.jpg) no-repeat top center; width: auto; height: 589px;}
.g4_title { width:543px; height:102px; position: absolute; left:348px; top:0; z-index: 5; /*background: url(../images/vv5/g4_title.png) no-repeat;*/ }
.pageAdv{ /*background: url(../images/page_adv.jpg) no-repeat top center;*/ width: auto; height: 615px;}
.pageTable{ margin-top: -1px;background:#151925 url(../images/vv5/g6.jpg) no-repeat top center; width: auto; height: 902px; overflow: hidden; }
.pageDrive{ margin-top: -1px;background: url(../images/vv5/g2.jpg) no-repeat top center; width: auto; height: 637px;}
.page_news{ margin-top: -1px;background: url(../images/vv5/g3.jpg) no-repeat top center; width: auto; height: 726px;}
.foot{ width: auto; height: 630px;}
.footer { height:48px; background: url("../images/footer.jpg") center center no-repeat; }
.main{ width: 1004px; height: auto; margin: 0 auto; position: relative;}
.rotart-box{
overflow: hidden;
width:350px;
height:350px;
border-radius:50%;
position: relative;
top:157px;
left: 54px;
}
.rotary-xaun{
position: absolute;
width:100%;
height:100%;
background: url("../images/vv5/rotary_pan_xuan.png") no-repeat center center;
background-size: 100% 100%;
}
.rotary-btn{
cursor: pointer;
position: absolute;
left: 131px;
top:105px;
width:88px ;
height: 117px;
background: url("../images/vv5/zhen.png") no-repeat center center;
background-size: 100% 100%;
}
.rotate_txt1 { color:#ffffff; font-size:14px; width:471px; text-align: center; top:110px; font-style: italic; position: absolute; }
.rotate_txt2 { color:#ffffff; font-size:12px; width:471px; text-align: center; top:517px; font-style: italic; position: absolute; }
.rotate_txt2 p,.rotate_txt1 p { font-size:12px; line-height: 1.5; }
.rotate_txt1 i { color:#e1bc70; }
.rotate_txt2 .orange { color:#e1bc70; }
.rotate_txt2 .btn_about { text-decoration: underline; color:#ffffff; cursor: pointer;}
.page_news dt { font-style: italic; padding:0 10px; padding-bottom:10px; line-height: 1.5; font-size:12px;}
.page_news dd img { display: inline-block; }
.page_news dd { text-align: center;}
.page_news p { line-height: 1.3; font-size:12px; }
.page_news a { position: absolute; }
.page_news .a1 { width:285px; left:-30px; top:158px; }
.page_news .a2 { width:247px; left:353px; top:158px; }
.page_news .a3 { width:343px; left:687px; top:148px; }
.page_news .a3 dt { padding-bottom: 5px; }
.page_news .a4 { width:244px; left:185px; top:486px; }
.page_news .a5 { width:240px; left:564px; top:512px; }
.mainHeader{ width: 100%; min-width: 1000px; height: 300px; margin: 0 auto; position: relative;}
.mainHeader .hLoge1{ position: absolute; top: 20px; left: 10px;}
.mainHeader .hLoge2{ position: absolute; top: 20px; right: 10px;}
.mainLive{ position: absolute; width: 753px; height: 418px; top: 159px; left: 50%; margin-left: -376px; overflow: hidden;}
.mainLive img{ width: 100%; height: 100%; display: block;}
.mainLiveTit{ position: absolute; width: 333px; height: 112px; top: 0px; left: 110px; display: none;}
.mainLiveTit img{ width: 100%; height: 100%; display: block;}
.mainLive .jwPlayer{ display: none;}
.mainAdv{ position: absolute; width: 1018px; height: 380px; top: 182px; left: 50%; margin-left: -509px;}
.mainTableParent {
position: absolute;
width:700px;
height:480px;
z-index: 10;
background-color: #e1bc70;
left:152px; border:2px solid #ffdc52; top: 155px;
}
.mCustomScrollbar { }
.mainTable { position:absolute; left:0; top:0; width:100%;}
.mainTable table table { width:100% !important; }
.mainTable table table td { width:auto !important; text-align: left; }
.mainTable table table tr td:first-child { width:auto;}
.mainTable th{
width:168px; box-sizing: border-box; height:53px;text-align: center; font-size:18px;
background-color: #e1bc70;
color: #000000;
padding: 0 5px;}
.tDing { background-color: #e1bc70; box-sizing: border-box; padding-right:20px; }
.tDing table { width:100%;}
.tDing .th1 { width:172px;}
.mainTable tr td {
width:168px; height:25px; box-sizing: border-box; text-align: center; padding: 5px 10px;
background-color:#3f3055;
border:1px #423f3f solid; color: #f1f1f1 ;font-size: 12px; line-height: 25px;
}
.mainTable tr td:first-child { width:172px; }
#tableBox, #tableBox2, #tableBox3 {height: 422px;}
#tableBox table {}
.mainTable .tHead{ background-color: #1c1c1c;color: #ffffff;text-align: left;padding-left: 15px;font-weight: bolder}
.mainTable .tFoot{ text-align: left; padding: 10px;}
.mainTable .mCSB_draggerRail{background-color:#121212 ;display: block;left: 10px;height: 498px}
.mainTable .mCSB_container{}
.mainTable.w2 .tDing .th1,.mainTable.w2 tr td:first-child { width:230px; }
.mainTable.w2 th,.mainTable.w2 tr td { width:222px; }
.mainTable .mCSB_container table{ }
table td[colspan='4'] { text-align:left; }
.w2 table td[colspan='3'] { text-align:left; }
.table_nav { width:700px; top:-54px; border:2px solid #edd596; left:-2px; text-align: center; position: absolute; overflow: hidden; }
.table_nav span { width:33.333%; cursor: pointer; box-sizing: border-box; border:2px solid #2a1943; font-size:14px; line-height: 45px; background:#e1bc70; float:left; color:#000000; }
.table_nav span:nth-child(1) { border-right:0;}
.table_nav span:nth-child(2) { border-right:0;}
.table_nav span.active { background:#ffffff; color:#000000; }
.page_about { width:100%; height:100%; display: none; z-index: 1000; position: fixed; left:0; top:0; background-color:rgba(0,0,0,0.6); }
.about_cont { border:2px solid #e1bc70; box-sizing: border-box; color:#5e5e5e; width:600px; left:50%; top:50%; position: absolute; height:450px; background:#ffffff; left:50%; top:50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.about_cont dt { color:#e1bc70; font-size:17px; padding:10px 0; }
.about_cont p { font-size:14px; line-height: 1.5; }
.about_art { height:100%; width:100%; }
.about_scroll { position: absolute; left:10px; right:10px; top:30px; bottom:20px;}
.about_cont .quit { width:32px; height:32px; background: url(../images/close.jpg) no-repeat; background-size:cover; position: absolute; right:10px; top:10px; z-index: 10; cursor: pointer;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #3f3055;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background: #3f3055; width: 8px;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background: #3f3055;}
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #3f3055; }
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mainTable .mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #3f3055; }
#testDrive{ position: absolute; width: 495px; height: auto; top: 170px; right: -30px;}
.pic1_box { width:696px; height:430px; position: absolute; left:157px; top:122px;}
.owl-pagination { display: none; }
.pageTable .er { position: absolute; left:245px; top:674px; text-align: center; font-size:12px; }
.pageTable .er p { padding-top:10px; }
.pic1_box .owl-prev, .pic1_box .owl-next, .pic2_box .owl-next, .pic2_box .owl-prev { overflow: hidden; text-indent: -999px; position: absolute; top:188px; }
.pic1_box .owl-prev, .pic2_box .owl-prev { width:29px; height:42px; background:url(../images/vv5/prev2.png) no-repeat; left:-50px; }
.pic1_box .owl-next, .pic2_box .owl-next { width:29px; height:42px; background:url(../images/vv5/next2.png) no-repeat; right:-50px; }
.pic2_box .owl-next, .pic2_box .owl-prev { top:150px; }
.pic2_box { width:549px; height:372px; position: absolute; right:2px; top:47px; /*-webkit-mask-image: url(../images/pic2_mask.png); mask-image: url(../images/pic2_mask.png);*/ }
.pic2_box_d { width:553px; height:378px; position: absolute; right:0px; top:45px; }
.pic2_box img { width:549px; height:372px; }
.pic2_dl { position: absolute; width:460px; left:35px; top:160px; color:#ffffff;}
.pic2_dl dl { display: none; }
.pic2_dl dt { font-size:30px; }
.pic2_dl dd { font-size:20px; padding-top:30px; }
.pic2_dl a { color:#ffffff; }
.vv7 { width:702px; height:411px; touch-action: none;pointer-events: none; position: absolute; top:600px; left:540px; background:url(../images/VV7.png) no-repeat; }
.mask{
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999998;
}
.mask_s{
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999998;
}
.aleart_bg{
background:url("../images/popBlack.png") repeat ;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.aleart{
background: #ffffff none repeat scroll 0 0;
border: 1px solid #c1c1c1;
border-radius: 8px;
cursor: pointer;
left: 50%;
margin-top: -25px;
position: absolute;
top: 50%;
z-index: 2;
height: auto;
padding: 10px;
line-height: 22px;
font-size: 16px;
text-align: center;
color: #000;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.aleart_succe {z-index: 7777;position: absolute;left: 0;margin-left: -305px;margin-top: -145px}
.showSuccess { width:100%; height:100%; display:none; position: fixed; left:0; top:0; z-index: 100; background:rgba(0,0,0,0.7); }
.show_suc_cont { width:620px; height:272px; position: absolute; left:50%; top:50%; margin:-135px 0 0 -310px; background:#ffffff url(../images/pop_logo.jpg) left top no-repeat; border:2px solid #e1bc70; }
.show_suc_cont .exit { width:32px; height:32px; position: absolute; right:10px; top:10px; background:url(../images/close.jpg) no-repeat; background-size: cover; cursor: pointer; }
.show_suc_cont dl { padding-top:70px; }
.show_suc_cont dt { font-size:30px; color:#484848; text-align: center; padding-bottom:20px; }
.show_suc_cont dd { font-size:16px; color:#484848; text-align: center;}
.layerSucce{
display: none;
background:url("../images/popBlack.png") repeat ;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 111;
}
.layerSucce .sCont{
position: absolute;
width: 578px;
height: 338px;
left: 50%;
top: 50%;
margin-left: -298px;
margin-top: -169px;
z-index: 132;
}
.layerSucce .sCont i{
width: 50px;
height: 50px;
position: absolute;
top: 50px;
right: 0px;
z-index: 15;
cursor: pointer;
}
.layerSucce .sCont img{
width: 100%;
height: 100%;
}
/**试驾表单**/
.car_form{width: auto;height: auto;}
.car_form .form-con{
padding: 5px 0px; clear: both;
overflow: hidden;
}
.car_form .form-con .form-conname{
width: 145px;
height: 35px;
color: #e1bd72;
font-size: 20px;
line-height: 30px;
letter-spacing: 3px;
font-weight: normal;
text-align: right;
padding-right: 7px;
float: left;
}
.car_form .form-con .form-conname.form-connames{letter-spacing: 8px;}
.car_form .form-con .sel{
height: 35px;
border: 1px solid #e1bd72;
float: left;
position: relative;
overflow: hidden;
}
.car_form .form-con .audi,.car_form .form-con .company,.car_form .form-con .phone{ width: 270px;}
.car_form .form-con .sel span,.car_form .form-con .sel p{
display: block;
width: 100%;
height: 35px;
font-size: 14px;
text-indent: 10px;
line-height: 35px;
background: url(../images/testDrive/page2_icon.jpg) no-repeat right top;
color: #ffffff;
}
.car_form .form-con .sel select{
height: 35px;
position: absolute;
top: -1px;
left: -1px;
opacity: 0;
filter:alpha(opacity=0);
border: none;
outline: none;
color: #000000;
}
.car_form .form-con .sel select option{
width: 100%;
}
.car_form .form-con .sel input{
height: 35px;
width: 100%;
border: none;
outline: none;
color: #ffffff;
font-size: 14px;
text-indent: 10px;
line-height: 30px;
background: none;
padding: 0px;
}
.car_form .form-con .province,.car_form .form-con .name{
width: 130px;
margin-right: 8px;
}
.car_form .form-con .audi select,.car_form .form-con .company select{
width: 100%;
}
.car_form .form-con .province select,.car_form .form-con .sex select{
width: 100%;
}
.car_form .form-con .city,.car_form .form-con .sex{
width: 130px;
}
.car_form .form-con .city select{
width: 100%;
}
.car_form .btn_submit{
cursor: pointer;
width: 209px;
height: 50px;
text-align: center;
display: block;
background: url("../images/testDrive/sub_btn.jpg") no-repeat;
border:none;
position: relative;
margin: 0 auto;
}
.car_form .form-desc{
height: auto;
font-size: 14px;
line-height: 20px;
color: #ffffff;
padding-left: 20px;
position: relative;
margin:20px 30px 30px 0;
clear: both;
}
.kuang{position: absolute; top: 3px; left: 2px;z-index: 2;opacity: 0;cursor: pointer}
.kuang_J{position: absolute; top: 3px; left: 2px;width: 11px;height:14px;background: url(../images/testDrive/pag2_k.png) no-repeat center bottom;z-index: 1}
.kuang_J.on{position: absolute; top: 3px; left: 2px;width: 11px;height: 14px;background: url("../images/testDrive/pag2_d.png") no-repeat center bottom;z-index: 1}
.iconPlay{ background: url(../images/icon_play.png); width: 55px; height: 55px; display: inline-block;}
.layer{ width: 100%; height: 100%; position: fixed; top: 0; left: 0; background: url(../images/popBlack.png); z-index: 99999; display: none;}
.layer .lClose{ width: 46px; height: 46px; position: absolute; right: 30px; top: 30px; cursor: pointer; background: url(../images/layer_close.png);}
.layer .lCont{ width: 900px; height: 400px; position: absolute; top: 50%; left: 50%; margin: -250px 0 0 -450px;}
#owlLunbo{width: 900px}
#owlLunbo .item{ width: 100%; height: auto;}
#owlLunbo .item img{ width: 100%; height: 100%; display: block;}
#owlLunbo .owl-buttons {
position: absolute;
top: 0;
left: 0;
z-index: 101;
width: 100%;
}
#owlLunbo .owl-buttons div.owl-prev, #owlLunbo .owl-buttons div.owl-next {
position: absolute;
top: 200px;
width: 26px;
height: 51px;
text-indent: 100px;
overflow: hidden;
}
#owlLunbo .owl-buttons div.owl-prev {
background: url(../images/vv5/prev2.png) no-repeat top center;
left: -30px;
}
#owlLunbo .owl-buttons div.owl-next {
background: url(../images/vv5/next2.png) no-repeat top center;
right: -30px;
}
#owlLunbo .owl-pagination{ display: none;}
#owlVideo{width: 502px;}
#owlVideo .owl-item{ width: 248px;}
#owlVideo .item{ width: 248px; height: auto;}
#owlVideo .item img{ width: 100%; height: 100%; display: block;}
#owlVideo .owl-buttons {
position: absolute;
top: 0;
left: 0;
z-index: 101;
width: 100%;
}
#owlVideo .owl-buttons div.owl-prev, #owlVideo .owl-buttons div.owl-next {
position: absolute;
top: 40px;
width: 26px;
height: 51px;
text-indent: 100px;
overflow: hidden;
}
.footer{
background: #d6cccc;
font-family: "Microsoft YaHei", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
color: #000;
padding-top: 10px;
box-sizing: content-box;
}
.footer p{
text-align: center;
font-size: 12px;
}
#fix-b{
display: inline-block;
width: 100%;
height: 58px;
line-height: 58px;
font-size: 24px;
text-align: center;
color: #efe6e6;
background-color: rgba(0,0,0,0.5);
position: fixed;
bottom: 0;
z-index: 99;
}
#fix-b:hover{
color: #daa7a7;
cursor: pointer;
background-color: rgba(0,0,0,0.7);
} | 0.361165 | 0.105165 |
body
{
margin: 0px !important;
}
.con
{
/*top: -10px;
left:-10px;*/
right:0px;
max-width: 100%;
height: 645px;
overflow: hidden;
margin: 0px;
padding: 0px;
position: relative;
z-index: 0;
}
.image
{
position: absolute;
max-width: 120%;
max-height:100%;
min-height: 100%;
max-height:100%;
width: 120%;
height: 100%;
margin: 0px;
padding: 0px;
-webkit-animation-name: r;
-webkit-animation-duration: 25s;
-webkit-animation-iteration-count: infinite ;
-moz-animation-name: r;
-moz-animation-duration: 25s;
-moz-animation-iteration-count: infinite ;
opacity: 0;
z-index: 0;
}
@-webkit-keyframes r
{
10% {opacity: 1;}
35% {opacity: 0;}
}
@-moz-keyframes r
{
10% {opacity: 1};
30% {opacity: 0};
}
/*.con span:nth-child(0){background-image:url('images/a.jpg'); -webkit-animation-delay: 0s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 0s; -moz-animation-timing-function: ease-in;}
*/.con span:nth-child(1){background-image:url('images/b.jpg'); -webkit-animation-delay: 0s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 5s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(2){background-image:url('images/c.jpg'); -webkit-animation-delay: 5s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 10s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(3){background-image:url('images/d.jpg'); -webkit-animation-delay: 10s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 15s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(4){background-image:url('images/e.jpg'); -webkit-animation-delay: 15s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 20s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(5){background-image:url('images/f.jpg'); -webkit-animation-delay: 20s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 25s; -moz-animation-timing-function: ease-in;} | slider.css | body
{
margin: 0px !important;
}
.con
{
/*top: -10px;
left:-10px;*/
right:0px;
max-width: 100%;
height: 645px;
overflow: hidden;
margin: 0px;
padding: 0px;
position: relative;
z-index: 0;
}
.image
{
position: absolute;
max-width: 120%;
max-height:100%;
min-height: 100%;
max-height:100%;
width: 120%;
height: 100%;
margin: 0px;
padding: 0px;
-webkit-animation-name: r;
-webkit-animation-duration: 25s;
-webkit-animation-iteration-count: infinite ;
-moz-animation-name: r;
-moz-animation-duration: 25s;
-moz-animation-iteration-count: infinite ;
opacity: 0;
z-index: 0;
}
@-webkit-keyframes r
{
10% {opacity: 1;}
35% {opacity: 0;}
}
@-moz-keyframes r
{
10% {opacity: 1};
30% {opacity: 0};
}
/*.con span:nth-child(0){background-image:url('images/a.jpg'); -webkit-animation-delay: 0s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 0s; -moz-animation-timing-function: ease-in;}
*/.con span:nth-child(1){background-image:url('images/b.jpg'); -webkit-animation-delay: 0s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 5s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(2){background-image:url('images/c.jpg'); -webkit-animation-delay: 5s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 10s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(3){background-image:url('images/d.jpg'); -webkit-animation-delay: 10s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 15s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(4){background-image:url('images/e.jpg'); -webkit-animation-delay: 15s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 20s; -moz-animation-timing-function: ease-in;}
.con span:nth-child(5){background-image:url('images/f.jpg'); -webkit-animation-delay: 20s; -webkit-animation-timing-function: ease-in; -moz-animation-delay: 25s; -moz-animation-timing-function: ease-in;} | 0.111798 | 0.030243 |
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background-color: #d9dcd6;
}
header {
padding: 1%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: #2a607c;
color: whitesmoke;
}
.header h1 {
display: inline-block;
font-size: 48px;
}
.header p {
font-size: 35px;
text-align: right;
}
/* Take care of the navigation bar */
nav {
display: flex;
justify-content: flex-start;
background-color: #2a607c;
padding-bottom: 10px;
margin-top: 30px;
margin-bottom: 20px;
}
nav li {
display: inline;
font-size: 17px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
padding: 7px;
margin: 10px;
border: solid black 1px;
border-radius: 25px;
}
/* Take care of the main image */
.hero {
height: 800px;
width: 100%;
margin-bottom: 25px;
background-image: url("../img/new-background.jpg");
background-size: cover;
background-position: center;
}
h2 {
font-size:35px
}
/* Take care of the colunm for the section about-me */
.column {
float: left;
padding: 10px;
height: 100px;
}
.left {
width: 15%;
border-right: #2a607c solid;
margin-bottom: 20px;
text-align: center;
}
.right {
width: 85%;
margin-bottom: 20px;
height:fit-content
}
.row:after {
content: "";
display: table;
clear: both;
}
h3 {
font-size:35px
}
/* Take care of the column in my-work section */
.column2 {
float: left;
padding: 10px;
height: 225px;
}
.left2 {
width: 15%;
border-right: #2a607c solid;
margin-top: 20px;
text-align:center
}
.right2 {
width: 85%;
margin-top: 20px;
display: flex;
}
.row2:after {
content: "";
display: table;
clear: both;
}
.column2 .card1 img {
width: 25%;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column2 .card1 img:hover {
filter: grayscale(0%);
width: 30%;
}
/* Take care of the column for the work 2 and 3 */
.column3 {
float: left;
padding: 10px;
height: 250px;
}
.left3 {
width: 15%;
border-right: #2a607c solid;
}
.right3 {
width: 85%;
display: flex;
}
.row3:after {
content: "";
display: table;
clear: both;
}
.column3 .card2 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column3 .card2 img:hover {
filter: grayscale(0%);
width: 60%;
}
.column3 .card3 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column3 .card3 img:hover {
filter: grayscale(0%);
width: 60%;
}
/* Take care of the column for the work 4 and 5 */
.column4 {
float: left;
padding: 10px;
height: 250px;
}
.left4 {
width: 15%;
border-right: #2a607c solid;
}
.right4 {
width: 85%;
display: flex;
}
.row4:after {
content: "";
display: table;
clear: both;
}
.column4 .card4 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column4 .card5 img:hover {
filter: grayscale(0%);
width: 60%;
}
.column4 .card5 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column4 .card4 img:hover {
filter: grayscale(0%);
width: 60%;
}
/* Take care of the footer */
footer {
background-color: #2a607c;
color: whitesmoke;
margin-top: 40px;
}
.footer {
text-align: center;
}
.footer, h1 {
font-size:25px
}
/* Take care of the design of the website for Screen-size phone */
@media screen and (max-width:375px) {
header {
text-align:center
}
nav li {
display:block;
font-size: 30px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
text-decoration-line: none;
padding: 7px;
margin: 10px;
border: none;
}
.column, .column2, .column3, .column4 {
width:auto
}
.left, .left1, .left2, .left3, .left4 {
border-right:none
}
}
/* Take care of the design of the website for Screen-size tablet */
@media screen and (max-width:768px) {
header {
text-align:center
}
.header p {
text-align:center
}
nav {
justify-content:center
}
nav li {
display:block;
font-size: 30px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
text-decoration-line: none;
padding: 7px;
margin: 10px;
border: none;
}
.column, .column2, .column3, .column4 {
width:auto
}
.left1, .left2, .left3, .left4 {
border-right:none
}
} | assets/style.css | * {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background-color: #d9dcd6;
}
header {
padding: 1%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: #2a607c;
color: whitesmoke;
}
.header h1 {
display: inline-block;
font-size: 48px;
}
.header p {
font-size: 35px;
text-align: right;
}
/* Take care of the navigation bar */
nav {
display: flex;
justify-content: flex-start;
background-color: #2a607c;
padding-bottom: 10px;
margin-top: 30px;
margin-bottom: 20px;
}
nav li {
display: inline;
font-size: 17px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
padding: 7px;
margin: 10px;
border: solid black 1px;
border-radius: 25px;
}
/* Take care of the main image */
.hero {
height: 800px;
width: 100%;
margin-bottom: 25px;
background-image: url("../img/new-background.jpg");
background-size: cover;
background-position: center;
}
h2 {
font-size:35px
}
/* Take care of the colunm for the section about-me */
.column {
float: left;
padding: 10px;
height: 100px;
}
.left {
width: 15%;
border-right: #2a607c solid;
margin-bottom: 20px;
text-align: center;
}
.right {
width: 85%;
margin-bottom: 20px;
height:fit-content
}
.row:after {
content: "";
display: table;
clear: both;
}
h3 {
font-size:35px
}
/* Take care of the column in my-work section */
.column2 {
float: left;
padding: 10px;
height: 225px;
}
.left2 {
width: 15%;
border-right: #2a607c solid;
margin-top: 20px;
text-align:center
}
.right2 {
width: 85%;
margin-top: 20px;
display: flex;
}
.row2:after {
content: "";
display: table;
clear: both;
}
.column2 .card1 img {
width: 25%;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column2 .card1 img:hover {
filter: grayscale(0%);
width: 30%;
}
/* Take care of the column for the work 2 and 3 */
.column3 {
float: left;
padding: 10px;
height: 250px;
}
.left3 {
width: 15%;
border-right: #2a607c solid;
}
.right3 {
width: 85%;
display: flex;
}
.row3:after {
content: "";
display: table;
clear: both;
}
.column3 .card2 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column3 .card2 img:hover {
filter: grayscale(0%);
width: 60%;
}
.column3 .card3 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column3 .card3 img:hover {
filter: grayscale(0%);
width: 60%;
}
/* Take care of the column for the work 4 and 5 */
.column4 {
float: left;
padding: 10px;
height: 250px;
}
.left4 {
width: 15%;
border-right: #2a607c solid;
}
.right4 {
width: 85%;
display: flex;
}
.row4:after {
content: "";
display: table;
clear: both;
}
.column4 .card4 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column4 .card5 img:hover {
filter: grayscale(0%);
width: 60%;
}
.column4 .card5 img {
width: 50%;
margin: 10px;
border-radius: 20px;
filter: grayscale(60%);
box-shadow:10px 10px 10px 5px grey
}
.column4 .card4 img:hover {
filter: grayscale(0%);
width: 60%;
}
/* Take care of the footer */
footer {
background-color: #2a607c;
color: whitesmoke;
margin-top: 40px;
}
.footer {
text-align: center;
}
.footer, h1 {
font-size:25px
}
/* Take care of the design of the website for Screen-size phone */
@media screen and (max-width:375px) {
header {
text-align:center
}
nav li {
display:block;
font-size: 30px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
text-decoration-line: none;
padding: 7px;
margin: 10px;
border: none;
}
.column, .column2, .column3, .column4 {
width:auto
}
.left, .left1, .left2, .left3, .left4 {
border-right:none
}
}
/* Take care of the design of the website for Screen-size tablet */
@media screen and (max-width:768px) {
header {
text-align:center
}
.header p {
text-align:center
}
nav {
justify-content:center
}
nav li {
display:block;
font-size: 30px;
}
nav a {
color: whitesmoke;
font-weight: bolder;
text-decoration-line: none;
padding: 7px;
margin: 10px;
border: none;
}
.column, .column2, .column3, .column4 {
width:auto
}
.left1, .left2, .left3, .left4 {
border-right:none
}
} | 0.434341 | 0.177954 |
.mint-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 2px;
border: 0;
box-sizing: border-box;
color: inherit;
display: block;
font-size: 28px;
height: 60px;
outline: 0;
overflow: hidden;
position: relative;
text-align: center
}
.mint-button::after {
background-color: rgba(0, 0, 0, .4);
content: " " !important;
opacity: 0;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute
}
.mint-button:not(.is-disabled):active::after {
opacity: 1
}
.mint-button.is-round {
border-radius: 30px
}
.mint-button.is-disabled {
opacity: .5
}
.mint-button-icon {
vertical-align: middle;
display: inline-block
}
.mint-button-text {
line-height: 1
}
.mint-button--text {
color: inherit;
font-size: inherit;
background-color: transparent;
box-shadow: none;
height: auto
}
.mint-button--default {
color: #666;
background-color: #f7f7f7;
box-shadow: 0 0 1px #eee
}
.mint-button--default.is-plain {
border: 1px solid #ccc;
background-color: transparent;
box-shadow: none;
color: #666
}
.mint-button--primary {
color: #fff;
background-color: #24b1b2
}
.mint-button--primary.is-plain {
border: 1px solid #24b1b2;
background-color: transparent;
color: #24b1b2
}
.mint-button--danger {
color: #fff;
background-color: #fa405e
}
.mint-button--danger.is-plain {
border: 1px solid #fa405e;
background-color: transparent;
color: #fa405e
}
.mint-button--extra-extra-small {
display: inline-block;
font-size: 24px;
padding: 0 24px;
height: 40px
}
.mint-button--extra-extra-small.is-round {
border-radius: 20px
}
.mint-button--extra-extra-small-text {
vertical-align: middle
}
.mint-button--extra-small {
display: inline-block;
font-size: 28px;
padding: 0 24px;
height: 50px
}
.mint-button--extra-small.is-round {
border-radius: 25px
}
.mint-button--extra-small-text {
vertical-align: middle
}
.mint-button--small {
display: inline-block;
font-size: 28px;
padding: 0 24px;
height: 60px
}
.mint-button--small.is-round {
border-radius: 30px
}
.mint-button--small-text {
vertical-align: middle
}
.mint-button--normal {
display: inline-block;
font-size: 28px;
padding: 0 42px;
height: 70px
}
.mint-button--normal.is-round {
border-radius: 35px
}
.mint-button--normal-text {
vertical-align: middle
}
.mint-button--medium {
display: inline-block;
font-size: 32px;
height: 90px;
width: 100%
}
.mint-button--medium.is-round {
border-radius: 45px
}
.mint-button--medium-text {
vertical-align: middle
}
.mint-button--large {
font-size: 32px;
display: block;
height: 100px;
width: 100%
}
.mint-button--large.is-round {
border-radius: 50px
} | lib/button/style.css | .mint-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 2px;
border: 0;
box-sizing: border-box;
color: inherit;
display: block;
font-size: 28px;
height: 60px;
outline: 0;
overflow: hidden;
position: relative;
text-align: center
}
.mint-button::after {
background-color: rgba(0, 0, 0, .4);
content: " " !important;
opacity: 0;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute
}
.mint-button:not(.is-disabled):active::after {
opacity: 1
}
.mint-button.is-round {
border-radius: 30px
}
.mint-button.is-disabled {
opacity: .5
}
.mint-button-icon {
vertical-align: middle;
display: inline-block
}
.mint-button-text {
line-height: 1
}
.mint-button--text {
color: inherit;
font-size: inherit;
background-color: transparent;
box-shadow: none;
height: auto
}
.mint-button--default {
color: #666;
background-color: #f7f7f7;
box-shadow: 0 0 1px #eee
}
.mint-button--default.is-plain {
border: 1px solid #ccc;
background-color: transparent;
box-shadow: none;
color: #666
}
.mint-button--primary {
color: #fff;
background-color: #24b1b2
}
.mint-button--primary.is-plain {
border: 1px solid #24b1b2;
background-color: transparent;
color: #24b1b2
}
.mint-button--danger {
color: #fff;
background-color: #fa405e
}
.mint-button--danger.is-plain {
border: 1px solid #fa405e;
background-color: transparent;
color: #fa405e
}
.mint-button--extra-extra-small {
display: inline-block;
font-size: 24px;
padding: 0 24px;
height: 40px
}
.mint-button--extra-extra-small.is-round {
border-radius: 20px
}
.mint-button--extra-extra-small-text {
vertical-align: middle
}
.mint-button--extra-small {
display: inline-block;
font-size: 28px;
padding: 0 24px;
height: 50px
}
.mint-button--extra-small.is-round {
border-radius: 25px
}
.mint-button--extra-small-text {
vertical-align: middle
}
.mint-button--small {
display: inline-block;
font-size: 28px;
padding: 0 24px;
height: 60px
}
.mint-button--small.is-round {
border-radius: 30px
}
.mint-button--small-text {
vertical-align: middle
}
.mint-button--normal {
display: inline-block;
font-size: 28px;
padding: 0 42px;
height: 70px
}
.mint-button--normal.is-round {
border-radius: 35px
}
.mint-button--normal-text {
vertical-align: middle
}
.mint-button--medium {
display: inline-block;
font-size: 32px;
height: 90px;
width: 100%
}
.mint-button--medium.is-round {
border-radius: 45px
}
.mint-button--medium-text {
vertical-align: middle
}
.mint-button--large {
font-size: 32px;
display: block;
height: 100px;
width: 100%
}
.mint-button--large.is-round {
border-radius: 50px
} | 0.464902 | 0.079961 |
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap");
/* todavía quiero esta fuente para mis navs */
/* es amatic */
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
/* oswald */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap");
/* roboto */
/* la importación de header, main, footer*/
.navbar {
font-family: "Amatic SC", cursive;
font-size: 30px;
font-weight: 800;
}
.navbar a {
font-weight: 2000;
}
.navbar a:hover {
color: teal !important;
}
.navbar .logo img:hover {
transform: scale(1.2);
}
.footer {
padding-top: 1px;
}
.footer .footer-menus ul {
list-style: none;
padding: 0;
}
.footer img:hover {
transform: scale(1.2);
}
.footer .social-links li {
list-style-type: none;
}
.indexito {
height: 40vh;
}
.indexito .btn a {
color: white;
}
.perrofeliz img {
width: 250px;
filter: grayscale(50%);
}
.mascotas img {
filter: grayscale(40%);
}
.misyvis {
color: #4A4C4F;
font-size: 20px;
font-weight: bold;
border: 2px solid black;
}
.misyvis p {
font-family: "Roboto", sans-serif;
}
.misyvis h2 {
font-family: "Oswald", sans-serif;
}
.container {
padding-top: 30px;
}
.mainUbicacion .ubica {
width: 100%;
}
.mainUbicacion .ubica .bodega {
overflow: hidden;
background: url(../img/bodega.jpg);
background-position: center center;
}
.mainContact {
color: white;
background: url(../img/contacto.jpg);
background-position: cover;
}
.mainContact .formita {
font-family: "Roboto", sans-serif;
font-weight: 1000;
font-size: 20px;
max-width: 100%;
margin: 10px;
position: center;
}
.mainAcerca {
background-color: #e3f2fd;
}
.info2 {
border: 2px solid #333536;
justify-content: center;
margin-bottom: 20px;
}
.info2 #image-sand {
width: 250px;
}
.info2 #image-sand:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.laGaleria {
justify-content: center;
margin-top: 40px;
}
.laGaleria .card {
background-color: #e3f2fd !important;
border: 1px solid grey !important;
}
.laGaleria .card img:hover {
-webkit-transform: scale(1.13);
transform: scale(1.13);
}
.info a {
font-weight: 580;
}
.videoyt iframe {
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
min-height: 500px;
}
/* manejo de tamaños del logo para los 3 tamaños */
/* tamaños para celu */
@media (min-width: 320px) {
.logo img {
width: 100px;
}
.address img {
width: 130px;
}
.mainContact {
min-height: 100vh;
}
.mainUbicacion iframe {
width: 300px;
height: 450px;
}
.indexito {
min-height: 50vh;
}
}
/* tamaños para tablet */
@media (min-width: 480px) {
.logo img {
width: 150px;
}
.address img {
width: 180px;
}
.mainContact {
height: 100vh;
}
.mainUbicacion iframe {
width: 400px;
height: 400px;
}
}
/* tamaños para desktop */
@media (min-width: 1024px) {
.logo img {
width: 150px;
}
.address img {
width: 180px;
}
.mainAcerca {
min-height: 120vh;
}
.mainContact {
height: 100vh;
}
.primera iframe {
width: 500px;
height: 300px;
}
.mainUbicacion {
width: 100%;
justify-content: center;
padding-bottom: 20px;
}
.mainUbicacion iframe {
width: 500px;
height: 500px;
}
}
/* de aquí en adelante, estilos para cosas específicas */
*::selection {
background-color: #7C7F82;
color: white;
}
html {
scroll-behavior: smooth;
}
h2, h3 {
font-family: "Oswald", sans-serif;
text-transform: capitalize;
}
a {
color: teal;
}
/*# sourceMappingURL=estilos.css.map */ | css/estilos.css | @charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap");
/* todavía quiero esta fuente para mis navs */
/* es amatic */
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
/* oswald */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap");
/* roboto */
/* la importación de header, main, footer*/
.navbar {
font-family: "Amatic SC", cursive;
font-size: 30px;
font-weight: 800;
}
.navbar a {
font-weight: 2000;
}
.navbar a:hover {
color: teal !important;
}
.navbar .logo img:hover {
transform: scale(1.2);
}
.footer {
padding-top: 1px;
}
.footer .footer-menus ul {
list-style: none;
padding: 0;
}
.footer img:hover {
transform: scale(1.2);
}
.footer .social-links li {
list-style-type: none;
}
.indexito {
height: 40vh;
}
.indexito .btn a {
color: white;
}
.perrofeliz img {
width: 250px;
filter: grayscale(50%);
}
.mascotas img {
filter: grayscale(40%);
}
.misyvis {
color: #4A4C4F;
font-size: 20px;
font-weight: bold;
border: 2px solid black;
}
.misyvis p {
font-family: "Roboto", sans-serif;
}
.misyvis h2 {
font-family: "Oswald", sans-serif;
}
.container {
padding-top: 30px;
}
.mainUbicacion .ubica {
width: 100%;
}
.mainUbicacion .ubica .bodega {
overflow: hidden;
background: url(../img/bodega.jpg);
background-position: center center;
}
.mainContact {
color: white;
background: url(../img/contacto.jpg);
background-position: cover;
}
.mainContact .formita {
font-family: "Roboto", sans-serif;
font-weight: 1000;
font-size: 20px;
max-width: 100%;
margin: 10px;
position: center;
}
.mainAcerca {
background-color: #e3f2fd;
}
.info2 {
border: 2px solid #333536;
justify-content: center;
margin-bottom: 20px;
}
.info2 #image-sand {
width: 250px;
}
.info2 #image-sand:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.laGaleria {
justify-content: center;
margin-top: 40px;
}
.laGaleria .card {
background-color: #e3f2fd !important;
border: 1px solid grey !important;
}
.laGaleria .card img:hover {
-webkit-transform: scale(1.13);
transform: scale(1.13);
}
.info a {
font-weight: 580;
}
.videoyt iframe {
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
min-height: 500px;
}
/* manejo de tamaños del logo para los 3 tamaños */
/* tamaños para celu */
@media (min-width: 320px) {
.logo img {
width: 100px;
}
.address img {
width: 130px;
}
.mainContact {
min-height: 100vh;
}
.mainUbicacion iframe {
width: 300px;
height: 450px;
}
.indexito {
min-height: 50vh;
}
}
/* tamaños para tablet */
@media (min-width: 480px) {
.logo img {
width: 150px;
}
.address img {
width: 180px;
}
.mainContact {
height: 100vh;
}
.mainUbicacion iframe {
width: 400px;
height: 400px;
}
}
/* tamaños para desktop */
@media (min-width: 1024px) {
.logo img {
width: 150px;
}
.address img {
width: 180px;
}
.mainAcerca {
min-height: 120vh;
}
.mainContact {
height: 100vh;
}
.primera iframe {
width: 500px;
height: 300px;
}
.mainUbicacion {
width: 100%;
justify-content: center;
padding-bottom: 20px;
}
.mainUbicacion iframe {
width: 500px;
height: 500px;
}
}
/* de aquí en adelante, estilos para cosas específicas */
*::selection {
background-color: #7C7F82;
color: white;
}
html {
scroll-behavior: smooth;
}
h2, h3 {
font-family: "Oswald", sans-serif;
text-transform: capitalize;
}
a {
color: teal;
}
/*# sourceMappingURL=estilos.css.map */ | 0.309337 | 0.091666 |
#nav {
list-style-type:none;
padding: 20px 5px 5px 20px;
width: 160px;
font-weight: bold;
float: left;
}
/* gives all anchor default color removes deocration of text prior */
a {
text-decoration: none;
color: #000033;
}
/* Creates bullets for all unordered list */
ul {
list-style-type: disc;
margin: 0;
padding-left: 0;
}
/* Removes bullets in nav only */
#wrapper #nav ul {
list-style-type: none;
}
/* add's hover effect on mouse over */
#wrapper #nav a:hover {
color: #ffffff;
font-size: 125%;
}
/* add's a little pop on clicking of link */
#wrapper #nav a:active {
font-size: 250%;
color: #000033;
}
/* Adds background image and color also font color and font family */
body {
background-image: url('../photos/background.jpg');
background-color: #FFFFFF;
color: #666666;
font-family: Verdana,Arial,sans-serif;
}
/* Sets css for the wrapper and all of it's content, gives color and box shadow with min and center aligned text and auto margin's*/
#wrapper {
background-color: #ff0000;
box-shadow: 10px 10px 5px #888888;
min-width: 960px;
position: center;
margin-left: 10%;
margin-right: 10%;
-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#1e1e1e'";
}
/* provides h1 an img, no-repeat (default is repeat) positions background to right with padding,height, color and doubles line hight */
h1 {
background-image: url('../photos/sand and surf logo.jpg');
background-repeat: no-repeat;
background-position: right;
padding-left: 20px;
height: 72px;
background-color: #000080;
color: #FFFFFF;
line-height: 200%;
margin-bottom:0;
font-family: Arial, sans-serif;
font-stretch: expanded;
}
/* h2 changes color light blue #3399cc and sets family font to georgia */
h2 {
color: #ff0000;
font-family: Georgia, Serif;
}
/* h3 changes color dark blue */
h3 {
color: #000033;
}
/* dt changes color dark blue */
dt {
color: #000033;
}
/* resort id changes color dark blue, and font size to 1.2em */
.resort {
color: #000033;
font-size: 1.2em;
}
/* adds 10px padding around footer section and changes font to .7em adds itlaic and center txt align */
/* clearing float*/
footer {
clear: both;
padding: 10px;
font-size: .70em;
font-style: italic;
text-align: center;
}
/* Simple padding for content allowing a rounded rap around look */
.content {
background-color: #ffffff;
padding-left: 20px;
padding-right: 20px;
margin-left: 160px;
padding-top: 1px;
}
/* configuring video float left with 20 padding */
.content img, .content video, .content embed {
float: left;
padding-right: 20px;
}
/* makes position of gallery relative */
#gallery {
position: relative;
}
/* 300 width and list style to none clearing it */
#gallery ul {
width: 300px;
list-style-type: none;
}
/* list item modifies float & display & padding but not sure if float is still needed */
#gallery li {
float: left;
display: inline;
padding: 10px;
}
/* boarder style to none for img*/
#gallery img {
border-style: none;
}
/* a tag text decor to none & color & italic added */
#gallery a {
text-decoration: none;
color: #333;
font-style: italic;
}
/* span to display none */
#gallery span {
display: none;
}
/* */
#gallery a:hover span {
display: block;
position: absolute;
top: 10px;
left: 340px;
text-align: center;
}
/* Removes default border style */
.img {
border-style:none;
}
/* Floats image to left and provides right padding of 20 px */
img {
float: left;
padding-right: 20px;
}
/* changes the unordered list style position to inside */
ul {
list-style-position: inside;
}
/* clears float */
.clear {
clear: left;
}
/* add new rule configur table */
table {
width: 600px;
margin: auto;
border-spacing: 0;
border: 1px solid #ff0000
}
/* configure odd table rows with light blue background color */
tr:nth-last-of-type(odd) {
background-color: #F5FAFC;
}
/* controles moved to left css form */
label{
float: left;
text-align: right;
width: 120px;
padding-right: 10px;
display: block;
}
/* modfies text dispaly block with bottom margin of 20px*/
input, textarea {
display: block;
margin-bottom: 20px;
}
/* ID mysubmit with margin left 130px */
#mySubmit{
margin-left: 130px;
}
/* format form width 350 px with padding 10px */
form {
width: 350px;
padding: 10px;
}
/* td text center border 1px dolor solid and 5px padding */
td { text-align: center;
border: 1px solid #ff0000;
padding: 5px;
}
/* th 1px solid color border and 5px padding */
th { border: 1px solid #ff0000;
padding: 5px;
}
/* creat class text left aligned */
.text {
text-align: left;
}
/* padding for form 30px bottom*/
form {
padding-bottom: 30px;
}
/* clearfloat id clearing left */
.clearfloat {
clear: left;
}
/* social ID with border 0 width 88 & height 88px */
.social {
border: 0;
width: 88px;
height: 88px;
} | css/sand.css | #nav {
list-style-type:none;
padding: 20px 5px 5px 20px;
width: 160px;
font-weight: bold;
float: left;
}
/* gives all anchor default color removes deocration of text prior */
a {
text-decoration: none;
color: #000033;
}
/* Creates bullets for all unordered list */
ul {
list-style-type: disc;
margin: 0;
padding-left: 0;
}
/* Removes bullets in nav only */
#wrapper #nav ul {
list-style-type: none;
}
/* add's hover effect on mouse over */
#wrapper #nav a:hover {
color: #ffffff;
font-size: 125%;
}
/* add's a little pop on clicking of link */
#wrapper #nav a:active {
font-size: 250%;
color: #000033;
}
/* Adds background image and color also font color and font family */
body {
background-image: url('../photos/background.jpg');
background-color: #FFFFFF;
color: #666666;
font-family: Verdana,Arial,sans-serif;
}
/* Sets css for the wrapper and all of it's content, gives color and box shadow with min and center aligned text and auto margin's*/
#wrapper {
background-color: #ff0000;
box-shadow: 10px 10px 5px #888888;
min-width: 960px;
position: center;
margin-left: 10%;
margin-right: 10%;
-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#1e1e1e'";
}
/* provides h1 an img, no-repeat (default is repeat) positions background to right with padding,height, color and doubles line hight */
h1 {
background-image: url('../photos/sand and surf logo.jpg');
background-repeat: no-repeat;
background-position: right;
padding-left: 20px;
height: 72px;
background-color: #000080;
color: #FFFFFF;
line-height: 200%;
margin-bottom:0;
font-family: Arial, sans-serif;
font-stretch: expanded;
}
/* h2 changes color light blue #3399cc and sets family font to georgia */
h2 {
color: #ff0000;
font-family: Georgia, Serif;
}
/* h3 changes color dark blue */
h3 {
color: #000033;
}
/* dt changes color dark blue */
dt {
color: #000033;
}
/* resort id changes color dark blue, and font size to 1.2em */
.resort {
color: #000033;
font-size: 1.2em;
}
/* adds 10px padding around footer section and changes font to .7em adds itlaic and center txt align */
/* clearing float*/
footer {
clear: both;
padding: 10px;
font-size: .70em;
font-style: italic;
text-align: center;
}
/* Simple padding for content allowing a rounded rap around look */
.content {
background-color: #ffffff;
padding-left: 20px;
padding-right: 20px;
margin-left: 160px;
padding-top: 1px;
}
/* configuring video float left with 20 padding */
.content img, .content video, .content embed {
float: left;
padding-right: 20px;
}
/* makes position of gallery relative */
#gallery {
position: relative;
}
/* 300 width and list style to none clearing it */
#gallery ul {
width: 300px;
list-style-type: none;
}
/* list item modifies float & display & padding but not sure if float is still needed */
#gallery li {
float: left;
display: inline;
padding: 10px;
}
/* boarder style to none for img*/
#gallery img {
border-style: none;
}
/* a tag text decor to none & color & italic added */
#gallery a {
text-decoration: none;
color: #333;
font-style: italic;
}
/* span to display none */
#gallery span {
display: none;
}
/* */
#gallery a:hover span {
display: block;
position: absolute;
top: 10px;
left: 340px;
text-align: center;
}
/* Removes default border style */
.img {
border-style:none;
}
/* Floats image to left and provides right padding of 20 px */
img {
float: left;
padding-right: 20px;
}
/* changes the unordered list style position to inside */
ul {
list-style-position: inside;
}
/* clears float */
.clear {
clear: left;
}
/* add new rule configur table */
table {
width: 600px;
margin: auto;
border-spacing: 0;
border: 1px solid #ff0000
}
/* configure odd table rows with light blue background color */
tr:nth-last-of-type(odd) {
background-color: #F5FAFC;
}
/* controles moved to left css form */
label{
float: left;
text-align: right;
width: 120px;
padding-right: 10px;
display: block;
}
/* modfies text dispaly block with bottom margin of 20px*/
input, textarea {
display: block;
margin-bottom: 20px;
}
/* ID mysubmit with margin left 130px */
#mySubmit{
margin-left: 130px;
}
/* format form width 350 px with padding 10px */
form {
width: 350px;
padding: 10px;
}
/* td text center border 1px dolor solid and 5px padding */
td { text-align: center;
border: 1px solid #ff0000;
padding: 5px;
}
/* th 1px solid color border and 5px padding */
th { border: 1px solid #ff0000;
padding: 5px;
}
/* creat class text left aligned */
.text {
text-align: left;
}
/* padding for form 30px bottom*/
form {
padding-bottom: 30px;
}
/* clearfloat id clearing left */
.clearfloat {
clear: left;
}
/* social ID with border 0 width 88 & height 88px */
.social {
border: 0;
width: 88px;
height: 88px;
} | 0.318591 | 0.071656 |
@import url(http://fonts.googleapis.com/css?family=PT+Sans);
body {
font-family: 'PT Sans', sans-serif;
scrollbar-arrow-color: #d0d0d0;
scrollbar-track-color: #f0f0f0;
scrollbar-darkshadow-color: #d0d0d0;
scrollbar-shadow-color: #d0d0d0;
scrollbar-face-color: #d0d0d0;
scrollbar-highlight-color: #d0d0d0;
scrollbar-3dlight-color: #d0d0d0;
}
::-webkit-scrollbar
{
width: 6px; /* for vertical scrollbars */
height: 6px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track
{
background: #f0f0f0;
}
::-webkit-scrollbar-thumb
{
background: #d0d0d0;
}
.monospace {
font-family: "Lucida Console", Monaco, monospace;
}
.top {
width: 100%;
height: 100%;
overflow: hidden;
}
.top > .main-content {
width: 80% !important;
height: inherit;
box-sizing: border-box;
display: inline-block;
}
.top > .main-content > md-content {
height: inherit;
box-sizing: border-box;
padding: 0;
}
.top > .main-content > md-content > md-tabs {
height: inherit;
box-sizing: border-box;
}
.top > .main-content .details {
padding: 2em 1em 0 1em;
}
.top > .main-content .release {
padding: 2em 1em 0 1em;
}
.top > .main-content .release .version {
margin-bottom: 1em;
font-size: larger;
font-weight: normal;
}
.top > .main-content .release .version .version-number {
font-weight: bold;
}
.top > .main-content .release .nuget-install {
padding-left: 2em;
}
.top > .main-content .release .nuget-install .nuget-install-command-wrapper {
width: 100%;
display: inline-block;
margin-top: .5em;
margin-bottom: 1em;
}
.top > .main-content .release .nuget-install .nuget-install-command-wrapper .nuget-install-command {
display: inline-block;
padding: .5em;
background-color: black;
color: white;
border: 1px solid #d0d0d0;
font-size: 125%;
}
.top > .main-content .release .release-notes > .title {
font-size: larger;
}
.top > .main-content .release .release-notes > .content {
margin-top: .5em;
font-style: italic;
}
.top > .main-content .license {
padding: 2em 1em 0 1em;
}
.top > .main-content .documentation {
padding: 2em 1em 0 1em;
}
.top > .sidebar {
float: right;
width: 20% !important;
height: 100%
overflow: hidden;
vertical-align: top;
padding: 1em .5em 0 .5em;
box-sizing: border-box;
}
.top > .sidebar > .project-title {
font-size: larger;
font-weight: bold;
}
.top > .sidebar a {
text-decoration: none;
}
.top > .sidebar > .owner-info {
margin-top: 2em;
}
.top > .sidebar > .owner-info > .owner-info-data {
width: 100%;
text-align: center;
}
.top > .sidebar > .owner-info > div > a > .logo > img {
width: 50%;
} | site/src/app/style.css | @import url(http://fonts.googleapis.com/css?family=PT+Sans);
body {
font-family: 'PT Sans', sans-serif;
scrollbar-arrow-color: #d0d0d0;
scrollbar-track-color: #f0f0f0;
scrollbar-darkshadow-color: #d0d0d0;
scrollbar-shadow-color: #d0d0d0;
scrollbar-face-color: #d0d0d0;
scrollbar-highlight-color: #d0d0d0;
scrollbar-3dlight-color: #d0d0d0;
}
::-webkit-scrollbar
{
width: 6px; /* for vertical scrollbars */
height: 6px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track
{
background: #f0f0f0;
}
::-webkit-scrollbar-thumb
{
background: #d0d0d0;
}
.monospace {
font-family: "Lucida Console", Monaco, monospace;
}
.top {
width: 100%;
height: 100%;
overflow: hidden;
}
.top > .main-content {
width: 80% !important;
height: inherit;
box-sizing: border-box;
display: inline-block;
}
.top > .main-content > md-content {
height: inherit;
box-sizing: border-box;
padding: 0;
}
.top > .main-content > md-content > md-tabs {
height: inherit;
box-sizing: border-box;
}
.top > .main-content .details {
padding: 2em 1em 0 1em;
}
.top > .main-content .release {
padding: 2em 1em 0 1em;
}
.top > .main-content .release .version {
margin-bottom: 1em;
font-size: larger;
font-weight: normal;
}
.top > .main-content .release .version .version-number {
font-weight: bold;
}
.top > .main-content .release .nuget-install {
padding-left: 2em;
}
.top > .main-content .release .nuget-install .nuget-install-command-wrapper {
width: 100%;
display: inline-block;
margin-top: .5em;
margin-bottom: 1em;
}
.top > .main-content .release .nuget-install .nuget-install-command-wrapper .nuget-install-command {
display: inline-block;
padding: .5em;
background-color: black;
color: white;
border: 1px solid #d0d0d0;
font-size: 125%;
}
.top > .main-content .release .release-notes > .title {
font-size: larger;
}
.top > .main-content .release .release-notes > .content {
margin-top: .5em;
font-style: italic;
}
.top > .main-content .license {
padding: 2em 1em 0 1em;
}
.top > .main-content .documentation {
padding: 2em 1em 0 1em;
}
.top > .sidebar {
float: right;
width: 20% !important;
height: 100%
overflow: hidden;
vertical-align: top;
padding: 1em .5em 0 .5em;
box-sizing: border-box;
}
.top > .sidebar > .project-title {
font-size: larger;
font-weight: bold;
}
.top > .sidebar a {
text-decoration: none;
}
.top > .sidebar > .owner-info {
margin-top: 2em;
}
.top > .sidebar > .owner-info > .owner-info-data {
width: 100%;
text-align: center;
}
.top > .sidebar > .owner-info > div > a > .logo > img {
width: 50%;
} | 0.361052 | 0.049497 |
.fadeIn, .fadeOut
{
overflow: hidden;
}
.fadeIn
{
visibility: visible;
opacity: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-ms-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}
.fadeOut
{
visibility: hidden;
opacity: 0;
-webkit-transition: visibility 0s .5s, opacity .5s ease-in-out;
-moz-transition: visibility 0s .5s, opacity .5s ease-in-out;
-ms-transition: visibility 0s .5s, opacity .5s ease-in-out;
-o-transition: visibility 0s .5s, opacity .5s ease-in-out;
transition: visibility 0s .5s, opacity .5s ease-in-out;
}
fieldset .pure-control-group .fadeOut
{
visibility: hidden;
opacity: 0;
-webkit-transition: visibility 0s .5s, opacity .5s ease-in-out;
-moz-transition: visibility 0s .5s, opacity .5s ease-in-out;
-ms-transition: visibility 0s .5s, opacity .5s ease-in-out;
-o-transition: visibility 0s .5s, opacity .5s ease-in-out;
transition: visibility 0s .5s, opacity .5s ease-in-out;
}
fieldset .pure-control-group .fadeIn
{
visibility: visible;
opacity: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-ms-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}
.fadeIn > div > legend > fieldset,
.fadeOut > div > legend > fieldset
{
}
.fadeOut > div
{
margin-top: -10000px;
-webkit-transition: margin-top 0s 2s;
-moz-transition: opacity 0s 2s;
-ms-transition: opacity 0s 2s;
-o-transition: opacity 0s 2s;
transition: opacity 0s 2s;
}
.pure-form fieldset
{
border-width: 0px;
margin: 0 auto;
max-width: 750px;
background-color: #fdf6e3;
padding-left: 40px;
padding-right: 40px;
padding-top: 25px;
padding-bottom: 25px;
-webkit-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
-moz-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
}
.pure-form legend
{
border: none;
padding-top: 0px;
}
legend span
{
visibility: hidden;
}
body
{
margin: 8px !important;
background-color:#eee8d5;
}
fieldset
{
margin-bottom: 1.5em !important;
}
#condition_title
{
text-align: center;
position: relative;
top: -25px;
}
#user_info_title
{
text-align: center;
position: relative;
top: -25px;
}
#center_title
{
text-align: center;
position: relative;
top: -25px;
}
.front_panel
{
border-width: 0px;
position:relative;
max-width: 750px;
text-align: center;
top: 10px;
margin: 0 auto;
background-color: #fdf6e3;
padding-left: 40px;
padding-right: 40px;
padding-top: 25px;
padding-bottom: 25px;
-webkit-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
-moz-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
}
.title
{
font-family: 'Lobster Two', cursive;
font-size: 75px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 80px;
}
.smallertitle
{
font-family: 'Lobster Two', cursive;
font-size: 70px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 20px;
}
.title a
{
font-family: 'Slabo 27px', serif;
font-size: 25px;
display: inline;
color:#f9f7f1;
background-color:#727272;
}
.title span
{
color:#C99D4C
}
.smalltitle
{
font-family: 'Lobster Two', cursive;
font-size: 30px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 80px;
}
.smalltitle a
{
font-family: 'Slabo 27px', serif;
font-size: 20px;
display: inline;
color:#f9f7f1;
background-color:#727272;
position: relative;
top: 15px;
}
.smalltitle span
{
color:#C99D4C
}
table
{
width: 400px;
margin: 0px auto;
}
h3
{
text-align: center;
position: relative;
top: -25px;
} | static/css/main.css | .fadeIn, .fadeOut
{
overflow: hidden;
}
.fadeIn
{
visibility: visible;
opacity: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-ms-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}
.fadeOut
{
visibility: hidden;
opacity: 0;
-webkit-transition: visibility 0s .5s, opacity .5s ease-in-out;
-moz-transition: visibility 0s .5s, opacity .5s ease-in-out;
-ms-transition: visibility 0s .5s, opacity .5s ease-in-out;
-o-transition: visibility 0s .5s, opacity .5s ease-in-out;
transition: visibility 0s .5s, opacity .5s ease-in-out;
}
fieldset .pure-control-group .fadeOut
{
visibility: hidden;
opacity: 0;
-webkit-transition: visibility 0s .5s, opacity .5s ease-in-out;
-moz-transition: visibility 0s .5s, opacity .5s ease-in-out;
-ms-transition: visibility 0s .5s, opacity .5s ease-in-out;
-o-transition: visibility 0s .5s, opacity .5s ease-in-out;
transition: visibility 0s .5s, opacity .5s ease-in-out;
}
fieldset .pure-control-group .fadeIn
{
visibility: visible;
opacity: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-ms-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}
.fadeIn > div > legend > fieldset,
.fadeOut > div > legend > fieldset
{
}
.fadeOut > div
{
margin-top: -10000px;
-webkit-transition: margin-top 0s 2s;
-moz-transition: opacity 0s 2s;
-ms-transition: opacity 0s 2s;
-o-transition: opacity 0s 2s;
transition: opacity 0s 2s;
}
.pure-form fieldset
{
border-width: 0px;
margin: 0 auto;
max-width: 750px;
background-color: #fdf6e3;
padding-left: 40px;
padding-right: 40px;
padding-top: 25px;
padding-bottom: 25px;
-webkit-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
-moz-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
}
.pure-form legend
{
border: none;
padding-top: 0px;
}
legend span
{
visibility: hidden;
}
body
{
margin: 8px !important;
background-color:#eee8d5;
}
fieldset
{
margin-bottom: 1.5em !important;
}
#condition_title
{
text-align: center;
position: relative;
top: -25px;
}
#user_info_title
{
text-align: center;
position: relative;
top: -25px;
}
#center_title
{
text-align: center;
position: relative;
top: -25px;
}
.front_panel
{
border-width: 0px;
position:relative;
max-width: 750px;
text-align: center;
top: 10px;
margin: 0 auto;
background-color: #fdf6e3;
padding-left: 40px;
padding-right: 40px;
padding-top: 25px;
padding-bottom: 25px;
-webkit-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
-moz-box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
box-shadow: -3px -3px 10px 0px rgba(50, 50, 50, 0.79);
}
.title
{
font-family: 'Lobster Two', cursive;
font-size: 75px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 80px;
}
.smallertitle
{
font-family: 'Lobster Two', cursive;
font-size: 70px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 20px;
}
.title a
{
font-family: 'Slabo 27px', serif;
font-size: 25px;
display: inline;
color:#f9f7f1;
background-color:#727272;
}
.title span
{
color:#C99D4C
}
.smalltitle
{
font-family: 'Lobster Two', cursive;
font-size: 30px;
color:#585858;
position: relative;
text-align: center;
display: block;
top: 80px;
}
.smalltitle a
{
font-family: 'Slabo 27px', serif;
font-size: 20px;
display: inline;
color:#f9f7f1;
background-color:#727272;
position: relative;
top: 15px;
}
.smalltitle span
{
color:#C99D4C
}
table
{
width: 400px;
margin: 0px auto;
}
h3
{
text-align: center;
position: relative;
top: -25px;
} | 0.372049 | 0.053132 |
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,700');
body {
overflow-x: hidden;
font-family: 'IBM Plex Sans', sans-serif;
}
/*Carrusel*/
.carousel-inner{
height: 60vh;
}
.carousel-item img{
filter: brightness(60%);
height: 60vh;
object-fit: cover;
}
.carousel-caption {
padding-bottom: 6%;
}
.breadcrumb{
margin:25px 0 -15px;
}
.carousel-caption h1 {
color: #fff;
margin-bottom: 0;
font-size: 60px;
line-height: 60px;
opacity: 0;
animation: entradaTitulo .9s ease .5s forwards;
}
@keyframes entradaTitulo {
from {
opacity: 0;
transform: translateX(25px);
}
to {
transform: translateX(0);
opacity: 1;
}
}
.carousel-caption .breadcrumb {
-webkit-border-radius: 0;
border-radius: 0;
background-color: transparent;
padding: 0;
margin: 25px 0 0;
display: inline-block;
opacity: 0;
animation: entradaBread 1s ease .6s forwards;
}
@keyframes entradaBread {
from {
opacity: 0;
transform: translateX(25px);
}
to {
transform: translateX(0);
opacity: 1;
}
}
.breadcrumb > li.breadcrumb-item {
font-size: 20px;
float: left;
color: #fff;
}
.black-layer ol.breadcrumb > li.breadcrumb-item {color: #fff;}
.breadcrumb-item + .breadcrumb-item::before {
content: ">";
color: #fff;
padding: 0;
margin: 0 12px;
font-size:16px;
}
/*Formulario*/
.container-formulario{
padding-top: 6vh;
padding-left: 10vh;
padding-right: 10vh;
}
.formulario-vol h1{
font-size: 40px;
font-weight: bold;
padding-top: 10px;
}
.formulario-vol hr{
width: 18%;
float: left;
}
textarea{
max-height: 40vh;
min-height: 20vh;
}
button{
margin-top: 20px;
margin-bottom: 20px;
}
.requisitos hr{
width: 30%;
float: left;
}
.requisitos h1{
font-size: 40px;
font-weight: bold;
padding-top: 10px;
}
.cnt-inf-lst {
float: left;
padding-left: 0;
list-style: none;
margin-top: 2vh;
margin-bottom: 2vh;
width: 100%;
}
.cnt-inf-lst > li {
position: relative;
padding-left: 50px;
line-height: 24px;
float: left;
width: 100%;
}
.cnt-inf-lst > li i {
position: absolute;
left: 0;
line-height: 30px;
font-size: 25px;
}
.cnt-inf-lst > li strong {
display: block;
font-weight: 400;
color: #222;
font-size: 24px;
margin-bottom: 7px;
}
.cnt-inf-lst > li + li {margin-top: 30px;}
.cnt-inf-lst > li > a,
.cnt-inf-lst > li > span {
display: block;
line-height: 22px;
}
/*Media Querie*/
@media screen and (max-width: 768px){
.container-formulario{
padding-top: 6vh;
padding-left: 10vh;
padding-right: 2vh;
}
} | public/sitioWeb/css/styleform.css | @import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,700');
body {
overflow-x: hidden;
font-family: 'IBM Plex Sans', sans-serif;
}
/*Carrusel*/
.carousel-inner{
height: 60vh;
}
.carousel-item img{
filter: brightness(60%);
height: 60vh;
object-fit: cover;
}
.carousel-caption {
padding-bottom: 6%;
}
.breadcrumb{
margin:25px 0 -15px;
}
.carousel-caption h1 {
color: #fff;
margin-bottom: 0;
font-size: 60px;
line-height: 60px;
opacity: 0;
animation: entradaTitulo .9s ease .5s forwards;
}
@keyframes entradaTitulo {
from {
opacity: 0;
transform: translateX(25px);
}
to {
transform: translateX(0);
opacity: 1;
}
}
.carousel-caption .breadcrumb {
-webkit-border-radius: 0;
border-radius: 0;
background-color: transparent;
padding: 0;
margin: 25px 0 0;
display: inline-block;
opacity: 0;
animation: entradaBread 1s ease .6s forwards;
}
@keyframes entradaBread {
from {
opacity: 0;
transform: translateX(25px);
}
to {
transform: translateX(0);
opacity: 1;
}
}
.breadcrumb > li.breadcrumb-item {
font-size: 20px;
float: left;
color: #fff;
}
.black-layer ol.breadcrumb > li.breadcrumb-item {color: #fff;}
.breadcrumb-item + .breadcrumb-item::before {
content: ">";
color: #fff;
padding: 0;
margin: 0 12px;
font-size:16px;
}
/*Formulario*/
.container-formulario{
padding-top: 6vh;
padding-left: 10vh;
padding-right: 10vh;
}
.formulario-vol h1{
font-size: 40px;
font-weight: bold;
padding-top: 10px;
}
.formulario-vol hr{
width: 18%;
float: left;
}
textarea{
max-height: 40vh;
min-height: 20vh;
}
button{
margin-top: 20px;
margin-bottom: 20px;
}
.requisitos hr{
width: 30%;
float: left;
}
.requisitos h1{
font-size: 40px;
font-weight: bold;
padding-top: 10px;
}
.cnt-inf-lst {
float: left;
padding-left: 0;
list-style: none;
margin-top: 2vh;
margin-bottom: 2vh;
width: 100%;
}
.cnt-inf-lst > li {
position: relative;
padding-left: 50px;
line-height: 24px;
float: left;
width: 100%;
}
.cnt-inf-lst > li i {
position: absolute;
left: 0;
line-height: 30px;
font-size: 25px;
}
.cnt-inf-lst > li strong {
display: block;
font-weight: 400;
color: #222;
font-size: 24px;
margin-bottom: 7px;
}
.cnt-inf-lst > li + li {margin-top: 30px;}
.cnt-inf-lst > li > a,
.cnt-inf-lst > li > span {
display: block;
line-height: 22px;
}
/*Media Querie*/
@media screen and (max-width: 768px){
.container-formulario{
padding-top: 6vh;
padding-left: 10vh;
padding-right: 2vh;
}
} | 0.358353 | 0.087994 |
/* begin: reset
todo: (heskew) pare down and combine with existing selectors where appropriate */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
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, font, 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 {
border:0;
font-size:100%;
margin:0;
padding:0;
vertical-align:baseline;
}
ol, ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
ins {
text-decoration:none;
}
del {
text-decoration:line-through;
}
table {
border-collapse:collapse;
border-spacing:0;
}
/* end: reset */
/* Base setup
----------------------------------------------------------*/
html {
background:#2d2f25;
color:#333;
}
body {
color:#333;
font-family:Segoe UI,Trebuchet,Arial,Sans-Serif;
font-size:62.5%; /* 10px */
line-height:1.6em;
margin:0 auto 1em;
min-width:94.6em; /* 946px */
padding:0;
}
/*todo: (heskew) find out why I need this...*/
button {
font-family:Segoe UI,Trebuchet,Arial,Sans-Serif;
font-size:1.01em;
}
body#preview {
min-width:0;
}
#content {
background:#fcfcfc;
}
/* Layout
number of columns: 24; actual width: 946; column width: 26; gutter width:14
| 24| 23| 22| 21| 20| 19| 18| 17| 16| 15| 14| 13| 12| 11| 10| 9| 8| 7| 6| 5| 4| 3| 2
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
.5g| 0.759| 0.793| 0.829| 0.870| 0.914| 0.963| 1.017| 1.079| 1.148| 1.226| 1.316| 1.420| 1.542| 1.687| 1.862| 2.077| 2.349| 2.703| 3.182| 3.867| 4.930| 6.796| 10.938
24|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
23| 95.770|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
22| 91.540| 95.583|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
21| 87.310| 91.166| 95.379|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
20| 83.080| 86.750| 90.758| 95.155|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
19| 78.850| 82.333| 86.137| 90.311| 94.909|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
18| 74.620| 77.916| 81.517| 85.466| 89.817| 94.635|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
17| 70.390| 73.499| 76.896| 80.621| 84.726| 89.271| 94.331|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
16| 66.161| 69.083| 72.275| 75.776| 79.634| 83.906| 88.663| 93.991|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
15| 61.931| 64.666| 67.654| 70.932| 74.543| 78.542| 82.994| 87.982| 93.607|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
14| 57.701| 60.249| 63.033| 66.087| 69.452| 73.177| 77.326| 81.972| 87.213| 93.170|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
13| 53.471| 55.832| 58.412| 61.242| 64.360| 67.813| 71.657| 75.963| 80.820| 86.340| 92.669|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
12| 49.241| 51.416| 53.791| 56.398| 59.269| 62.448| 65.988| 69.954| 74.426| 79.510| 85.338| 92.089|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
11| 45.011| 46.999| 49.171| 51.553| 54.178| 57.084| 60.320| 63.945| 68.033| 72.680| 78.008| 84.178| 91.410|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---
10| 40.781| 42.582| 44.550| 46.708| 49.086| 51.719| 54.651| 57.935| 61.639| 65.849| 70.677| 76.268| 82.819| 90.602|100.000| ---| ---| ---| ---| ---| ---| ---| ---
9| 36.551| 38.165| 39.929| 41.863| 43.995| 46.355| 48.983| 51.926| 55.246| 59.019| 63.346| 68.357| 74.229| 81.205| 89.628|100.000| ---| ---| ---| ---| ---| ---| ---
8| 32.321| 33.749| 35.308| 37.019| 38.903| 40.990| 43.314| 45.917| 48.852| 52.189| 56.015| 60.446| 65.639| 71.807| 79.255| 88.427|100.000| ---| ---| ---| ---| ---| ---
7| 28.091| 29.332| 30.687| 32.174| 33.812| 35.626| 37.645| 39.908| 42.459| 45.359| 48.684| 52.535| 57.048| 62.410| 68.883| 76.855| 86.913|100.000| ---| ---| ---| ---| ---
6| 23.861| 24.915| 26.066| 27.329| 28.721| 30.261| 31.977| 33.898| 36.066| 38.529| 41.353| 44.625| 48.458| 53.012| 58.511| 65.282| 73.826| 84.942|100.000| ---| ---| ---| ---
5| 19.631| 20.498| 21.445| 22.484| 23.629| 24.897| 26.308| 27.889| 29.672| 31.699| 34.023| 36.714| 39.868| 43.614| 48.138| 53.709| 60.738| 69.884| 82.273|100.000| ---| ---| ---
4| 15.401| 16.082| 16.825| 17.640| 18.538| 19.532| 20.640| 21.880| 23.279| 24.869| 26.692| 28.803| 31.278| 34.217| 37.766| 42.136| 47.651| 54.826| 64.545| 78.453|100.000| ---| ---
3| 11.171| 11.665| 12.204| 12.795| 13.446| 14.168| 14.971| 15.871| 16.885| 18.039| 19.361| 20.892| 22.687| 24.819| 27.394| 30.564| 34.564| 39.768| 46.818| 56.906| 72.535|100.000| ---
2| 6.941| 7.248| 7.583| 7.950| 8.355| 8.803| 9.302| 9.861| 10.492| 11.208| 12.030| 12.982| 14.097| 15.422| 17.021| 18.991| 21.477| 24.710| 29.091| 35.359| 45.070| 62.136|100.000
1| 2.711| 2.831| 2.962| 3.106| 3.264| 3.439| 3.634| 3.852| 4.098| 4.378| 4.699| 5.071| 5.507| 6.024| 6.649| 7.418| 8.389| 9.653| 11.364| 13.812| 17.606| 24.272| 39.063
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| 24| 23| 22| 21| 20| 19| 18| 17| 16| 15| 14| 13| 12| 11| 10| 9| 8| 7| 6| 5| 4| 3| 2
----------------------------------------------------------*/
#header, #footer {
width:100%;
}
#header {
overflow:hidden;
}
#content {
overflow:auto;
padding:1.4em;
background:#fcfcfc;
}
#main {
display:inline;
float:right;
width:83.08%;
}
#navigation {
display:inline;
float:left;
width:15.401%;
}
.wrapper, .sections {
overflow:hidden;
}
.sections .primary {
display:inline;
float:left;
width:74.543%;
}
.sections .secondary {
display:inline;
float:left;
margin-left:1.71%;
width:23.629%;
}
/* Headings and defaults
----------------------------------------------------------*/
h1, h2, h3, h4, h5, legend {
padding:.4em 0;
font-style: normal;
font-weight:normal;
}
h1 { font-size:2.6em; } /* 26px */
h2 { font-size:2.1em; } /* 21px */
h2 span { font-size:.57em; } /* 12px */
h3 { font-size:1.8em; } /* 18px */
h4 { font-size:1.6em; } /* 16px */
h5 { font-size:1.4em; } /* 14px */
h6, p, label, /*input, select,*/ .button,
.message, .validation-summary-errors,
table.items th, table.items td, table.items caption { font-size:1.4em; line-height:1.4em; } /* 14px */
table.items p, table.items label, table.items input, table.items .button { font-size:1em; line-height:1em; }
p .button { font-size:inherit; }
.meta, .hint { font-size:1.2em; } /* 12px */
/* Links
----------------------------------------------------------*/
a, a:link, a:visited,
form.link button {
color:#1e5d7d;
text-decoration:none;
}
form.link button {
height:1.3em;
}
a:hover, a:active, a:focus {
color:#1e5d7d;
text-decoration:underline;
}
form.link button:hover {
border-bottom:1px solid #1e5d7d;
}
/* Header - Branding and Login
----------------------------------------------------------*/
#header {
background:#2d2f25 url(images/backgroundHeader.gif) no-repeat bottom right;
height:50px;
}
#header #app {
float:left;
font-size:2.4em;
padding:.4em 0;
}
#header #app a {
background:url(images/orchardLogo.gif) no-repeat;
display:block;
height:60px;
margin:-11px 0 0 14px;
text-indent:-9999px;
width:105px;
}
#header #app a {
background:url(images/orchardLogo.gif) no-repeat;
display:block;
height:60px;
margin:-11px 0 0 14px;
text-indent:-9999px;
width:35px;
}
#site {
font-size:2em;
}
#site a, #site a:visited, #site a:active {
color:#fff;
float:left;
line-height:2.2em;
padding:0 0 0 6px;
position:relative;
}
#login {
font-size:1.5em;
color:#fff;
display:block;
float:right;
margin:16px 20px 0 0;
white-space:nowrap;
}
#login a, #login a:link, #login a:visited {
color:#fff;
padding:0;
}
#login a:hover, #login a:active, #login a:focus {
color:#ffea9b;
}
/* Navigation
----------------------------------------------------------*/
#navshortcut {
height:0;
overflow:hidden;
width:0;
}
#navigation li {
margin:7px 0 20px 0;
}
#navigation ul li {
border:0;
margin:0;
}
#navigation li h3 {
padding:0;
}
#navigation li h3 a, #navigation li h3 span {
border-bottom:1px solid #bdbcbc;
display:block;
padding:6px 4px 8px 8px;
}
#navigation li h3 a, #navigation li h3 a:link, #navigation li h3 a:visited {
color:inherit;
}
#navigation li h3 a:hover, #navigation li h3 a:active, #navigation li h3 a:focus {
text-decoration:none;
}
#navigation ul a, #navigation ul a:link, #navigation ul a:visited {
color:#2d2f25;
display:block;
font-size:1.4em;
height:28px;
line-height:28px;
padding:0 0 0 12px;
text-decoration:none;
}
#navigation ul a:hover, #navigation ul a:active, #navigation ul a:focus {
background:#f5f5f5;
color: #000;
text-decoration:underline;
}
/* Content
----------------------------------------------------------*/
#main h1 {
margin:0 0 1em;
}
#main h2, #main h3 {
margin:.5em 0;
}
#main p {
margin:0 0 1.5em;
}
#main .main.actions {
margin:0 0 1.4em;
}
#main .meta {
margin:-.4em 0 .4em;
}
#main form {
margin:.345em 0 1.38em;
}
#main form.inline {
margin:0;
}
#main h1, #main h2 {
border-bottom:1px solid #bdbcbc;
}
/* Confirmations, Messages and the like
----------------------------------------------------------*/
.message, .validation-summary-errors {
margin:10px 0 4px 0;
padding:4px;
}
span.message {
display:block;
margin:4px 0 4px 4px;
}
.message a {
font-weight:bold;
}
.confirmation.message {
background:#D1F2A5; /* green */
border:1px solid #BCD994;
}
.warning.message {
background:#fdf5bc; /* yellow */
border:1px solid #ffea9b;
}
/* todo: (heskew) what else (other inputs) needs this? */
.critical.message, .validation-summary-errors,
.input-validation-error.text-box, .input-validation-error.text {
border:1px solid #990808;
}
.critical.message, .validation-summary-errors {
background:#e68585; /* red */
color:#fff;
}
.info.message {
background:#e6f1c9; /* green */
border:1px solid #cfe493;
color:#062232;
}
.debug.message {
background:#eee;
border:1px dashed #D2D6C6;
color:#7a7a7a;
margin:20px 0 14px 0;
}
.debug.message:before {
content:"DEBUG » ";
}
/* Forms
----------------------------------------------------------*/
form.inline, form.inline fieldset { /* todo: (heskew) need something other than .inline ... */
display:inline;
}
form.inline fieldset {
margin:0;
}
fieldset.bulk.actions {
display:inline;
height:auto;
margin:0 1.4em 0 0;
padding-top:0;
}
legend {
font-size:1.6em;
font-weight:bold;
}
legend span {
font-weight:normal;
}
label {
display: block;
color:#4c4c4c;
font-weight:bold;
}
label.forcheckbox {
display:inline;
line-height:1.8em;
}
fieldset.bulk.actions label, label.sub {
display:inline;
}
label span {
font-weight:normal;
}
label input {
vertical-align:text-top;
}
.hint {
display:block;
}
.hint.forcheckbox {
text-indent:3ex; /* todo: (heskew) this might look out of place */
}
/* todo: (heskew) try to get .text on stuff like .text-box */
select, textarea, input.text, input.textMedium, input.text-box {
padding:2px;
border:1px solid #bdbcbc;
}
input.text, input.textMedium, input.text-box {
line-height:1.2em;
}
input.textMedium {
width:26em;
}
select:focus, textarea:focus, input.text:focus, input.text-box:focus {
border-color:#666d51;
}
input.check-box {
margin-left:0;
vertical-align:-.1em;
}
.permalink input {
background:transparent;
border-color:#EAE9D9;
border-style:dashed;
margin-left:0;
width:350px;
}
.permalink input:focus {
background:#FFF;
border-color:#666d51;
border-style:solid;
}
input.large.text, textarea, fieldset {
clear:both;
}
fieldset {
margin:0 0 1.3em 0;
padding:6px 0 0;
}
/* Settings page styles */
.settings fieldset {
margin:.5em 0;
padding:1em;
}
.orchard-media fieldset div, .settings fieldset div, .orchard-media .button, .settings .button {
margin:1em 0 .5em 1em;
}
.settings legend {
margin:0 0 -.4em 0;
}
/* todo: This style is the same as textMedium. Consolidate if possible */
.settings input.text, .settings input.text-box {
width:26em;
}
textarea {
min-height:8em;
}
#main input.large.text, #main textarea {
padding:4px;
width:99%;
}
#main .primary input.large.text, #main .primary textarea {
margin:0;
padding:4px;
width:98.8%;
}
/* todo: (heskew) move editor specific style elsewhere */
.primary .mceEditor {
display:block;
margin:0;
}
.secondary fieldset {
margin:.446% 0 .446% .446%;
padding:4px;
width:98.662%;
}
button, .button, .button:link, .button:visited {
background:#f5f5f5;
border:1px solid #999;
color:#2d2f25;
cursor:pointer;
text-align:center;
padding:0 .8em .1em;
}
button {
padding-top:.08em;
}
form.link button {
background:inherit;
border:0;
padding:0;
width:auto;
margin:-2px -3px 0;
}
.primaryAction, .primaryAction:link, .primaryAction:visited {
background:#4687ad;
border:1px solid #8f8f8f;
color:#fff;
}
button.remove, .remove.button, .remove.button:link, .remove.button:visited {
background-color:#DECCCA;
background-image:url(images/tableHeaderBackgroundRed.gif);
border-color:#d6c9c7;
color:#5c3732;
}
button:hover, .button:hover,
button:active, .button:active,
button:focus, .button:focus {
background:#ffac40;
border-color:#bb8b2d;
color:#fff;
text-decoration:none;
}
button:focus::-moz-focus-inner, .button:focus::-moz-focus-inner {
border-color:#8a8f7a;
}
button.remove:hover, .remove.button:hover,
button.remove:active, .remove.button:active,
button.remove:focus, .remove.button:focus {
background:#8f7c79;
border-color:#6e5551;
color:#faedeb;
}
button.remove:focus::-moz-focus-inner, .remove.button:focus::-moz-focus-inner {
border-color:#8f7c79;
}
.delete.button {
float:right;
}
.cancel {
margin:0 0 0 .93em;
}
.manage {
float:right;
margin:0 0 10px 8px;
overflow:hidden;
}
.actions {
height:2em;
overflow:hidden;
padding:.6em 0 .1em;
text-align:right;
}
.contentItems .actions li {
background:inherit;
border:0;
padding:0;
}
.actions .construct {
float:left;
}
.actions .destruct {
float:right;
}
.manage a.button {
float:right;
height:inherit;
margin-left:.3em;
}
/* Icon buttons
----------------------------------------------------------*/
.ibutton, .ibutton:link, .ibutton:visited,
button.ibutton, button.ibutton:hover, button.ibutton:focus, button.ibutton:active {
background:url(images/icons.png) 0 -20px;
border:0;
display:inline;
float:left;
height:17px;
overflow:hidden;
padding:0 0 0 17px;
width:0;
}
button.ibutton {
text-indent:-9999em;
}
.ibutton:hover, .ibutton:active, .ibutton:focus { background-position:0 0; }
.ibutton.remove,
.ibutton.remove:link,
.ibutton.remove:visited { background-position:-20px -20px; }
.ibutton.remove:hover, .ibutton.remove:active, .ibutton.remove:focus { background-position:-20px 0; }
.ibutton.view,
.ibutton.view:link,
.ibutton.view:visited { background-position:-40px -20px; }
.ibutton.view:hover, .ibutton.view:active, .ibutton.view:focus { background-position:-40px 0; }
.ibutton.add.page,
.ibutton.add.page:link,
.ibutton.add.page:visited { background-position:-60px -20px; }
.ibutton.add.page:hover, .ibutton.add.page:active, .ibutton.add.page:focus { background-position:-60px 0; }
.ibutton.edit,
.ibutton.edit:link,
.ibutton.edit:visited { background-position:-80px -20px; }
.ibutton.edit:hover, .ibutton.edit:active, .ibutton.edit:focus { background-position:-80px 0; }
.ibutton.publish,
.ibutton.publish:link,
.ibutton.publish:visited { background-position:-100px -20px; }
.ibutton.publish:hover, .ibutton.publish:active, .ibutton.publish:focus { background-position:-100px 0; }
.ibutton.blog,
.ibutton.blog:link,
.ibutton.blog:visited { background-position:-120px -20px; }
.ibutton.blog:hover, .ibutton.blog:active, .ibutton.blog:focus { background-position:-120px 0; }
/* todo: (heskew) needs attention */
.withActions {
overflow:hidden;
}
.withActions a {
display:inline;
float:left;
margin-right:7px;
}
/* Content item lists
----------------------------------------------------------*/
.contentItems {
background:#FFF;
margin:1.4em 0;
padding:2px;
}
.contentItems li {
background:#FFF;
border-bottom:1px solid #eaeaea;
margin:0;
overflow:hidden;
padding:.4em 1.4em;
}
.contentItems li.first {
background:#fff url(images/backgroundGradient.gif) repeat-x top left;
}
.contentItems li li.last {
border-bottom:0;
}
#main .contentItems li h3 {
border-bottom:0;
margin-top:0;
}
#main .contentItems li .actions {
color:#EAE9D9;
height:auto;
margin:-1.3em 0 0;
padding:0 0 .1em;
}
#main .contentItems li .actions .ibutton {
margin-right:6px;
}
#main .contentItems li .actions .destruct .ibutton {
margin-left:8px;
margin-right:0;
}
#main .contentItems li:hover .ibutton { background-position:0 0; }
#main .contentItems li:hover .ibutton.remove { background-position:-20px 0; }
#main .contentItems li:hover .ibutton.view { background-position:-40px 0; }
#main .contentItems li:hover .ibutton.add.page { background-position:-60px 0; }
#main .contentItems li:hover .ibutton.edit { background-position:-80px 0; }
#main .contentItems li:hover .ibutton.publish { background-position:-100px 0; }
#main .contentItems li:hover .ibutton.blog { background-position:-120px 0; }
/* (Items) Tables
----------------------------------------------------------*/
table.items {
background:#fff;
border:1px solid #eaeaea;
border-bottom:none;
border-collapse:separate;
border-spacing:0;
width:100%;
}
table.items caption {
padding:8px 0;
text-indent:0;
}
table.items col {
border-spacing:0;
display:table-column;
}
table.items colgroup
{
border-spacing:0;
display:table-column-group;
}
table.items tbody {
border-spacing:0;
vertical-align:middle;
}
table.items thead, table.items th {
background:#f5f5f5;
font-weight:700;
overflow:hidden;
text-align:left;
}
/* todo: (heskew) hook back up */
table.items tr.hover {
background-color:#f0f3d6;
}
table.items tr.critical {background:#e68585; border:inherit;}
table.items tr.warning {background:#fdf5bc; border:inherit;}
table.items th, table.items td {
border-bottom:1px solid #eaeaea;
border-spacing:0px;
display:table-cell;
padding:8px 12px;
vertical-align:middle;
}
/* todo: Find a better way to do this. These are a fix for buttons and label fonts becomming too large in a table.*/
table label {
font-size:1em;
}
table .button {
font-size:1em;
}
/* MISC.
todo: (heskew) pull out into relevant modules where appropriate
----------------------------------------------------------*/
/* Pages
----------------------------------------------------------*/
#main .templates p {
margin:0 0 .3em 0;
}
.templates li {
margin:.8em;
width:30%;
display: -moz-inline-stack;
display:inline-block;
vertical-align:top;
zoom:1;
*display: inline;
}
.templates .inline button {
font-size:1.2em;
}
.templates .wasFormInlineLink {
font-size:1.4em;
}
.templates p {
overflow:hidden;
}
.templates img, .themePreviewImage {
border:1px solid #e8e8e8;
height:200px;
margin:.27em 0 .93em 0;
display:block;
}
.previewImage {
border:1px solid #525e50;
height:50%;
width:50%;
}
.themes #main h2 {
margin:1em 0 0 0;
}
.themePreviewImage {
height:300px;
}
/* Rounded borders and other "works in some browsers" additions
----------------------------------------------------------
#content, #navigation li, button, .button,
table.items, textarea, input.text, input.text-box,
.contentItems, .message, .validation-summary-errors {
-moz-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
}
#navigation li h4 a {
-moz-border-radius:3px 3px 0 0;
-webkit-border-radius:3px 3px 0 0;
border-radius:3px 3px 0 0;
}*/
/* Added classes for new blog list layout
---------------------------------------------------------- */
.blogdescription {
margin-top:1em;
}
.summary {
overflow:auto;
padding:1.2em .4em;
}
.actions {
clear:right;
height:auto;
overflow:visible;
padding:0;
text-align:right;
}
.contentItems {
clear:both;
padding:0;
}
.properties {
float:left;
}
.blogs.contentItems .properties {
float:none;
}
#main .contentItems .properties h3 {
border-bottom:none;
margin:0;
padding:0;
}
.related{
font-size:1.4em;
float:right;
text-align:right;
}
/*todo: (heskew) cleanup */
.related .button {
font-size:1em;
}
/*end todo*/
.commentcount {
line-height:2em;
}
.contentItems .properties ul li{
border:0;
float:left;
padding:.8em 0;
font-size:1.4em;
background:inherit;
}
.icon {
margin:0 .2em -.2em .2em;
}
h3 .icon {
margin-bottom:-.05em;
}
.linkButton {
border:none;
padding:0;
background:none;
color:#1E5D7D;
}
.linkButton:hover {
background-color:Transparent;
text-decoration:underline;
color:#1E5D7D;
}
/* Added classes for new page list layout
---------------------------------------------------------- */
.pageList {
margin:0;
padding:0;
background:#FFFFFF url(images/backgroundGradient.gif) repeat-x scroll left top;
}
.orchard-pages .contentItems {
margin:1em 0 0 0;
padding:0;
}
.contentItems .properties ul.pageStatus {
margin:0.8em 0 0 2em;
}
.contentItems .properties ul.pageStatus li {
margin:0;
padding:0 0 .1em 0;
}
.properties h3 {
display:inline;
}
/* Added classes for media
---------------------------------------------------------- */
.breadCrumbs, .folderProperties {
float:left;
margin:-2em 0 0 0;
}
.folderProperties {
float:right;
}
/* ---------- Generic ---------- */
.clearBoth {
clear:both;
} | src/Orchard.Web/Themes/TheAdmin/Styles/site.css | /* begin: reset
todo: (heskew) pare down and combine with existing selectors where appropriate */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
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, font, 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 {
border:0;
font-size:100%;
margin:0;
padding:0;
vertical-align:baseline;
}
ol, ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
ins {
text-decoration:none;
}
del {
text-decoration:line-through;
}
table {
border-collapse:collapse;
border-spacing:0;
}
/* end: reset */
/* Base setup
----------------------------------------------------------*/
html {
background:#2d2f25;
color:#333;
}
body {
color:#333;
font-family:Segoe UI,Trebuchet,Arial,Sans-Serif;
font-size:62.5%; /* 10px */
line-height:1.6em;
margin:0 auto 1em;
min-width:94.6em; /* 946px */
padding:0;
}
/*todo: (heskew) find out why I need this...*/
button {
font-family:Segoe UI,Trebuchet,Arial,Sans-Serif;
font-size:1.01em;
}
body#preview {
min-width:0;
}
#content {
background:#fcfcfc;
}
/* Layout
number of columns: 24; actual width: 946; column width: 26; gutter width:14
| 24| 23| 22| 21| 20| 19| 18| 17| 16| 15| 14| 13| 12| 11| 10| 9| 8| 7| 6| 5| 4| 3| 2
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
.5g| 0.759| 0.793| 0.829| 0.870| 0.914| 0.963| 1.017| 1.079| 1.148| 1.226| 1.316| 1.420| 1.542| 1.687| 1.862| 2.077| 2.349| 2.703| 3.182| 3.867| 4.930| 6.796| 10.938
24|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
23| 95.770|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
22| 91.540| 95.583|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
21| 87.310| 91.166| 95.379|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
20| 83.080| 86.750| 90.758| 95.155|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
19| 78.850| 82.333| 86.137| 90.311| 94.909|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
18| 74.620| 77.916| 81.517| 85.466| 89.817| 94.635|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
17| 70.390| 73.499| 76.896| 80.621| 84.726| 89.271| 94.331|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
16| 66.161| 69.083| 72.275| 75.776| 79.634| 83.906| 88.663| 93.991|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
15| 61.931| 64.666| 67.654| 70.932| 74.543| 78.542| 82.994| 87.982| 93.607|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
14| 57.701| 60.249| 63.033| 66.087| 69.452| 73.177| 77.326| 81.972| 87.213| 93.170|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
13| 53.471| 55.832| 58.412| 61.242| 64.360| 67.813| 71.657| 75.963| 80.820| 86.340| 92.669|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
12| 49.241| 51.416| 53.791| 56.398| 59.269| 62.448| 65.988| 69.954| 74.426| 79.510| 85.338| 92.089|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---| ---
11| 45.011| 46.999| 49.171| 51.553| 54.178| 57.084| 60.320| 63.945| 68.033| 72.680| 78.008| 84.178| 91.410|100.000| ---| ---| ---| ---| ---| ---| ---| ---| ---
10| 40.781| 42.582| 44.550| 46.708| 49.086| 51.719| 54.651| 57.935| 61.639| 65.849| 70.677| 76.268| 82.819| 90.602|100.000| ---| ---| ---| ---| ---| ---| ---| ---
9| 36.551| 38.165| 39.929| 41.863| 43.995| 46.355| 48.983| 51.926| 55.246| 59.019| 63.346| 68.357| 74.229| 81.205| 89.628|100.000| ---| ---| ---| ---| ---| ---| ---
8| 32.321| 33.749| 35.308| 37.019| 38.903| 40.990| 43.314| 45.917| 48.852| 52.189| 56.015| 60.446| 65.639| 71.807| 79.255| 88.427|100.000| ---| ---| ---| ---| ---| ---
7| 28.091| 29.332| 30.687| 32.174| 33.812| 35.626| 37.645| 39.908| 42.459| 45.359| 48.684| 52.535| 57.048| 62.410| 68.883| 76.855| 86.913|100.000| ---| ---| ---| ---| ---
6| 23.861| 24.915| 26.066| 27.329| 28.721| 30.261| 31.977| 33.898| 36.066| 38.529| 41.353| 44.625| 48.458| 53.012| 58.511| 65.282| 73.826| 84.942|100.000| ---| ---| ---| ---
5| 19.631| 20.498| 21.445| 22.484| 23.629| 24.897| 26.308| 27.889| 29.672| 31.699| 34.023| 36.714| 39.868| 43.614| 48.138| 53.709| 60.738| 69.884| 82.273|100.000| ---| ---| ---
4| 15.401| 16.082| 16.825| 17.640| 18.538| 19.532| 20.640| 21.880| 23.279| 24.869| 26.692| 28.803| 31.278| 34.217| 37.766| 42.136| 47.651| 54.826| 64.545| 78.453|100.000| ---| ---
3| 11.171| 11.665| 12.204| 12.795| 13.446| 14.168| 14.971| 15.871| 16.885| 18.039| 19.361| 20.892| 22.687| 24.819| 27.394| 30.564| 34.564| 39.768| 46.818| 56.906| 72.535|100.000| ---
2| 6.941| 7.248| 7.583| 7.950| 8.355| 8.803| 9.302| 9.861| 10.492| 11.208| 12.030| 12.982| 14.097| 15.422| 17.021| 18.991| 21.477| 24.710| 29.091| 35.359| 45.070| 62.136|100.000
1| 2.711| 2.831| 2.962| 3.106| 3.264| 3.439| 3.634| 3.852| 4.098| 4.378| 4.699| 5.071| 5.507| 6.024| 6.649| 7.418| 8.389| 9.653| 11.364| 13.812| 17.606| 24.272| 39.063
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| 24| 23| 22| 21| 20| 19| 18| 17| 16| 15| 14| 13| 12| 11| 10| 9| 8| 7| 6| 5| 4| 3| 2
----------------------------------------------------------*/
#header, #footer {
width:100%;
}
#header {
overflow:hidden;
}
#content {
overflow:auto;
padding:1.4em;
background:#fcfcfc;
}
#main {
display:inline;
float:right;
width:83.08%;
}
#navigation {
display:inline;
float:left;
width:15.401%;
}
.wrapper, .sections {
overflow:hidden;
}
.sections .primary {
display:inline;
float:left;
width:74.543%;
}
.sections .secondary {
display:inline;
float:left;
margin-left:1.71%;
width:23.629%;
}
/* Headings and defaults
----------------------------------------------------------*/
h1, h2, h3, h4, h5, legend {
padding:.4em 0;
font-style: normal;
font-weight:normal;
}
h1 { font-size:2.6em; } /* 26px */
h2 { font-size:2.1em; } /* 21px */
h2 span { font-size:.57em; } /* 12px */
h3 { font-size:1.8em; } /* 18px */
h4 { font-size:1.6em; } /* 16px */
h5 { font-size:1.4em; } /* 14px */
h6, p, label, /*input, select,*/ .button,
.message, .validation-summary-errors,
table.items th, table.items td, table.items caption { font-size:1.4em; line-height:1.4em; } /* 14px */
table.items p, table.items label, table.items input, table.items .button { font-size:1em; line-height:1em; }
p .button { font-size:inherit; }
.meta, .hint { font-size:1.2em; } /* 12px */
/* Links
----------------------------------------------------------*/
a, a:link, a:visited,
form.link button {
color:#1e5d7d;
text-decoration:none;
}
form.link button {
height:1.3em;
}
a:hover, a:active, a:focus {
color:#1e5d7d;
text-decoration:underline;
}
form.link button:hover {
border-bottom:1px solid #1e5d7d;
}
/* Header - Branding and Login
----------------------------------------------------------*/
#header {
background:#2d2f25 url(images/backgroundHeader.gif) no-repeat bottom right;
height:50px;
}
#header #app {
float:left;
font-size:2.4em;
padding:.4em 0;
}
#header #app a {
background:url(images/orchardLogo.gif) no-repeat;
display:block;
height:60px;
margin:-11px 0 0 14px;
text-indent:-9999px;
width:105px;
}
#header #app a {
background:url(images/orchardLogo.gif) no-repeat;
display:block;
height:60px;
margin:-11px 0 0 14px;
text-indent:-9999px;
width:35px;
}
#site {
font-size:2em;
}
#site a, #site a:visited, #site a:active {
color:#fff;
float:left;
line-height:2.2em;
padding:0 0 0 6px;
position:relative;
}
#login {
font-size:1.5em;
color:#fff;
display:block;
float:right;
margin:16px 20px 0 0;
white-space:nowrap;
}
#login a, #login a:link, #login a:visited {
color:#fff;
padding:0;
}
#login a:hover, #login a:active, #login a:focus {
color:#ffea9b;
}
/* Navigation
----------------------------------------------------------*/
#navshortcut {
height:0;
overflow:hidden;
width:0;
}
#navigation li {
margin:7px 0 20px 0;
}
#navigation ul li {
border:0;
margin:0;
}
#navigation li h3 {
padding:0;
}
#navigation li h3 a, #navigation li h3 span {
border-bottom:1px solid #bdbcbc;
display:block;
padding:6px 4px 8px 8px;
}
#navigation li h3 a, #navigation li h3 a:link, #navigation li h3 a:visited {
color:inherit;
}
#navigation li h3 a:hover, #navigation li h3 a:active, #navigation li h3 a:focus {
text-decoration:none;
}
#navigation ul a, #navigation ul a:link, #navigation ul a:visited {
color:#2d2f25;
display:block;
font-size:1.4em;
height:28px;
line-height:28px;
padding:0 0 0 12px;
text-decoration:none;
}
#navigation ul a:hover, #navigation ul a:active, #navigation ul a:focus {
background:#f5f5f5;
color: #000;
text-decoration:underline;
}
/* Content
----------------------------------------------------------*/
#main h1 {
margin:0 0 1em;
}
#main h2, #main h3 {
margin:.5em 0;
}
#main p {
margin:0 0 1.5em;
}
#main .main.actions {
margin:0 0 1.4em;
}
#main .meta {
margin:-.4em 0 .4em;
}
#main form {
margin:.345em 0 1.38em;
}
#main form.inline {
margin:0;
}
#main h1, #main h2 {
border-bottom:1px solid #bdbcbc;
}
/* Confirmations, Messages and the like
----------------------------------------------------------*/
.message, .validation-summary-errors {
margin:10px 0 4px 0;
padding:4px;
}
span.message {
display:block;
margin:4px 0 4px 4px;
}
.message a {
font-weight:bold;
}
.confirmation.message {
background:#D1F2A5; /* green */
border:1px solid #BCD994;
}
.warning.message {
background:#fdf5bc; /* yellow */
border:1px solid #ffea9b;
}
/* todo: (heskew) what else (other inputs) needs this? */
.critical.message, .validation-summary-errors,
.input-validation-error.text-box, .input-validation-error.text {
border:1px solid #990808;
}
.critical.message, .validation-summary-errors {
background:#e68585; /* red */
color:#fff;
}
.info.message {
background:#e6f1c9; /* green */
border:1px solid #cfe493;
color:#062232;
}
.debug.message {
background:#eee;
border:1px dashed #D2D6C6;
color:#7a7a7a;
margin:20px 0 14px 0;
}
.debug.message:before {
content:"DEBUG » ";
}
/* Forms
----------------------------------------------------------*/
form.inline, form.inline fieldset { /* todo: (heskew) need something other than .inline ... */
display:inline;
}
form.inline fieldset {
margin:0;
}
fieldset.bulk.actions {
display:inline;
height:auto;
margin:0 1.4em 0 0;
padding-top:0;
}
legend {
font-size:1.6em;
font-weight:bold;
}
legend span {
font-weight:normal;
}
label {
display: block;
color:#4c4c4c;
font-weight:bold;
}
label.forcheckbox {
display:inline;
line-height:1.8em;
}
fieldset.bulk.actions label, label.sub {
display:inline;
}
label span {
font-weight:normal;
}
label input {
vertical-align:text-top;
}
.hint {
display:block;
}
.hint.forcheckbox {
text-indent:3ex; /* todo: (heskew) this might look out of place */
}
/* todo: (heskew) try to get .text on stuff like .text-box */
select, textarea, input.text, input.textMedium, input.text-box {
padding:2px;
border:1px solid #bdbcbc;
}
input.text, input.textMedium, input.text-box {
line-height:1.2em;
}
input.textMedium {
width:26em;
}
select:focus, textarea:focus, input.text:focus, input.text-box:focus {
border-color:#666d51;
}
input.check-box {
margin-left:0;
vertical-align:-.1em;
}
.permalink input {
background:transparent;
border-color:#EAE9D9;
border-style:dashed;
margin-left:0;
width:350px;
}
.permalink input:focus {
background:#FFF;
border-color:#666d51;
border-style:solid;
}
input.large.text, textarea, fieldset {
clear:both;
}
fieldset {
margin:0 0 1.3em 0;
padding:6px 0 0;
}
/* Settings page styles */
.settings fieldset {
margin:.5em 0;
padding:1em;
}
.orchard-media fieldset div, .settings fieldset div, .orchard-media .button, .settings .button {
margin:1em 0 .5em 1em;
}
.settings legend {
margin:0 0 -.4em 0;
}
/* todo: This style is the same as textMedium. Consolidate if possible */
.settings input.text, .settings input.text-box {
width:26em;
}
textarea {
min-height:8em;
}
#main input.large.text, #main textarea {
padding:4px;
width:99%;
}
#main .primary input.large.text, #main .primary textarea {
margin:0;
padding:4px;
width:98.8%;
}
/* todo: (heskew) move editor specific style elsewhere */
.primary .mceEditor {
display:block;
margin:0;
}
.secondary fieldset {
margin:.446% 0 .446% .446%;
padding:4px;
width:98.662%;
}
button, .button, .button:link, .button:visited {
background:#f5f5f5;
border:1px solid #999;
color:#2d2f25;
cursor:pointer;
text-align:center;
padding:0 .8em .1em;
}
button {
padding-top:.08em;
}
form.link button {
background:inherit;
border:0;
padding:0;
width:auto;
margin:-2px -3px 0;
}
.primaryAction, .primaryAction:link, .primaryAction:visited {
background:#4687ad;
border:1px solid #8f8f8f;
color:#fff;
}
button.remove, .remove.button, .remove.button:link, .remove.button:visited {
background-color:#DECCCA;
background-image:url(images/tableHeaderBackgroundRed.gif);
border-color:#d6c9c7;
color:#5c3732;
}
button:hover, .button:hover,
button:active, .button:active,
button:focus, .button:focus {
background:#ffac40;
border-color:#bb8b2d;
color:#fff;
text-decoration:none;
}
button:focus::-moz-focus-inner, .button:focus::-moz-focus-inner {
border-color:#8a8f7a;
}
button.remove:hover, .remove.button:hover,
button.remove:active, .remove.button:active,
button.remove:focus, .remove.button:focus {
background:#8f7c79;
border-color:#6e5551;
color:#faedeb;
}
button.remove:focus::-moz-focus-inner, .remove.button:focus::-moz-focus-inner {
border-color:#8f7c79;
}
.delete.button {
float:right;
}
.cancel {
margin:0 0 0 .93em;
}
.manage {
float:right;
margin:0 0 10px 8px;
overflow:hidden;
}
.actions {
height:2em;
overflow:hidden;
padding:.6em 0 .1em;
text-align:right;
}
.contentItems .actions li {
background:inherit;
border:0;
padding:0;
}
.actions .construct {
float:left;
}
.actions .destruct {
float:right;
}
.manage a.button {
float:right;
height:inherit;
margin-left:.3em;
}
/* Icon buttons
----------------------------------------------------------*/
.ibutton, .ibutton:link, .ibutton:visited,
button.ibutton, button.ibutton:hover, button.ibutton:focus, button.ibutton:active {
background:url(images/icons.png) 0 -20px;
border:0;
display:inline;
float:left;
height:17px;
overflow:hidden;
padding:0 0 0 17px;
width:0;
}
button.ibutton {
text-indent:-9999em;
}
.ibutton:hover, .ibutton:active, .ibutton:focus { background-position:0 0; }
.ibutton.remove,
.ibutton.remove:link,
.ibutton.remove:visited { background-position:-20px -20px; }
.ibutton.remove:hover, .ibutton.remove:active, .ibutton.remove:focus { background-position:-20px 0; }
.ibutton.view,
.ibutton.view:link,
.ibutton.view:visited { background-position:-40px -20px; }
.ibutton.view:hover, .ibutton.view:active, .ibutton.view:focus { background-position:-40px 0; }
.ibutton.add.page,
.ibutton.add.page:link,
.ibutton.add.page:visited { background-position:-60px -20px; }
.ibutton.add.page:hover, .ibutton.add.page:active, .ibutton.add.page:focus { background-position:-60px 0; }
.ibutton.edit,
.ibutton.edit:link,
.ibutton.edit:visited { background-position:-80px -20px; }
.ibutton.edit:hover, .ibutton.edit:active, .ibutton.edit:focus { background-position:-80px 0; }
.ibutton.publish,
.ibutton.publish:link,
.ibutton.publish:visited { background-position:-100px -20px; }
.ibutton.publish:hover, .ibutton.publish:active, .ibutton.publish:focus { background-position:-100px 0; }
.ibutton.blog,
.ibutton.blog:link,
.ibutton.blog:visited { background-position:-120px -20px; }
.ibutton.blog:hover, .ibutton.blog:active, .ibutton.blog:focus { background-position:-120px 0; }
/* todo: (heskew) needs attention */
.withActions {
overflow:hidden;
}
.withActions a {
display:inline;
float:left;
margin-right:7px;
}
/* Content item lists
----------------------------------------------------------*/
.contentItems {
background:#FFF;
margin:1.4em 0;
padding:2px;
}
.contentItems li {
background:#FFF;
border-bottom:1px solid #eaeaea;
margin:0;
overflow:hidden;
padding:.4em 1.4em;
}
.contentItems li.first {
background:#fff url(images/backgroundGradient.gif) repeat-x top left;
}
.contentItems li li.last {
border-bottom:0;
}
#main .contentItems li h3 {
border-bottom:0;
margin-top:0;
}
#main .contentItems li .actions {
color:#EAE9D9;
height:auto;
margin:-1.3em 0 0;
padding:0 0 .1em;
}
#main .contentItems li .actions .ibutton {
margin-right:6px;
}
#main .contentItems li .actions .destruct .ibutton {
margin-left:8px;
margin-right:0;
}
#main .contentItems li:hover .ibutton { background-position:0 0; }
#main .contentItems li:hover .ibutton.remove { background-position:-20px 0; }
#main .contentItems li:hover .ibutton.view { background-position:-40px 0; }
#main .contentItems li:hover .ibutton.add.page { background-position:-60px 0; }
#main .contentItems li:hover .ibutton.edit { background-position:-80px 0; }
#main .contentItems li:hover .ibutton.publish { background-position:-100px 0; }
#main .contentItems li:hover .ibutton.blog { background-position:-120px 0; }
/* (Items) Tables
----------------------------------------------------------*/
table.items {
background:#fff;
border:1px solid #eaeaea;
border-bottom:none;
border-collapse:separate;
border-spacing:0;
width:100%;
}
table.items caption {
padding:8px 0;
text-indent:0;
}
table.items col {
border-spacing:0;
display:table-column;
}
table.items colgroup
{
border-spacing:0;
display:table-column-group;
}
table.items tbody {
border-spacing:0;
vertical-align:middle;
}
table.items thead, table.items th {
background:#f5f5f5;
font-weight:700;
overflow:hidden;
text-align:left;
}
/* todo: (heskew) hook back up */
table.items tr.hover {
background-color:#f0f3d6;
}
table.items tr.critical {background:#e68585; border:inherit;}
table.items tr.warning {background:#fdf5bc; border:inherit;}
table.items th, table.items td {
border-bottom:1px solid #eaeaea;
border-spacing:0px;
display:table-cell;
padding:8px 12px;
vertical-align:middle;
}
/* todo: Find a better way to do this. These are a fix for buttons and label fonts becomming too large in a table.*/
table label {
font-size:1em;
}
table .button {
font-size:1em;
}
/* MISC.
todo: (heskew) pull out into relevant modules where appropriate
----------------------------------------------------------*/
/* Pages
----------------------------------------------------------*/
#main .templates p {
margin:0 0 .3em 0;
}
.templates li {
margin:.8em;
width:30%;
display: -moz-inline-stack;
display:inline-block;
vertical-align:top;
zoom:1;
*display: inline;
}
.templates .inline button {
font-size:1.2em;
}
.templates .wasFormInlineLink {
font-size:1.4em;
}
.templates p {
overflow:hidden;
}
.templates img, .themePreviewImage {
border:1px solid #e8e8e8;
height:200px;
margin:.27em 0 .93em 0;
display:block;
}
.previewImage {
border:1px solid #525e50;
height:50%;
width:50%;
}
.themes #main h2 {
margin:1em 0 0 0;
}
.themePreviewImage {
height:300px;
}
/* Rounded borders and other "works in some browsers" additions
----------------------------------------------------------
#content, #navigation li, button, .button,
table.items, textarea, input.text, input.text-box,
.contentItems, .message, .validation-summary-errors {
-moz-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
}
#navigation li h4 a {
-moz-border-radius:3px 3px 0 0;
-webkit-border-radius:3px 3px 0 0;
border-radius:3px 3px 0 0;
}*/
/* Added classes for new blog list layout
---------------------------------------------------------- */
.blogdescription {
margin-top:1em;
}
.summary {
overflow:auto;
padding:1.2em .4em;
}
.actions {
clear:right;
height:auto;
overflow:visible;
padding:0;
text-align:right;
}
.contentItems {
clear:both;
padding:0;
}
.properties {
float:left;
}
.blogs.contentItems .properties {
float:none;
}
#main .contentItems .properties h3 {
border-bottom:none;
margin:0;
padding:0;
}
.related{
font-size:1.4em;
float:right;
text-align:right;
}
/*todo: (heskew) cleanup */
.related .button {
font-size:1em;
}
/*end todo*/
.commentcount {
line-height:2em;
}
.contentItems .properties ul li{
border:0;
float:left;
padding:.8em 0;
font-size:1.4em;
background:inherit;
}
.icon {
margin:0 .2em -.2em .2em;
}
h3 .icon {
margin-bottom:-.05em;
}
.linkButton {
border:none;
padding:0;
background:none;
color:#1E5D7D;
}
.linkButton:hover {
background-color:Transparent;
text-decoration:underline;
color:#1E5D7D;
}
/* Added classes for new page list layout
---------------------------------------------------------- */
.pageList {
margin:0;
padding:0;
background:#FFFFFF url(images/backgroundGradient.gif) repeat-x scroll left top;
}
.orchard-pages .contentItems {
margin:1em 0 0 0;
padding:0;
}
.contentItems .properties ul.pageStatus {
margin:0.8em 0 0 2em;
}
.contentItems .properties ul.pageStatus li {
margin:0;
padding:0 0 .1em 0;
}
.properties h3 {
display:inline;
}
/* Added classes for media
---------------------------------------------------------- */
.breadCrumbs, .folderProperties {
float:left;
margin:-2em 0 0 0;
}
.folderProperties {
float:right;
}
/* ---------- Generic ---------- */
.clearBoth {
clear:both;
} | 0.348423 | 0.418727 |
.umg_ps{
position:relative;
background:#121212;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:#fff;
overflow:hidden;
}
.ps_overlay{
z-index:90;
background:#111;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
opacity:0.5;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
/* Image container style */
.ps_container{
width:480px;
height:350px;
margin-top:-175px;
margin-left:-240px;
position:absolute;
top:50%;
left:50%;
z-index:100;
}
.ps_container img{
border:10px solid #fff;
position:absolute;
top:50%;
left:50%;
-moz-box-shadow:1px 1px 10px #000;
-webkit-box-shadow:1px 1px 10px #000;
box-shadow:1px 1px 10px #000;
}
/* Close button for preview mode */
a.ps_close{
background:#000 url(images/close.png) no-repeat center center;
cursor:pointer;
width:56px;
height:56px;
position:absolute;
right:10px;
top:10px;
z-index:1000;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
opacity:0.6;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
}
/* Next photo button for preview mode */
a.ps_next_photo{
position:absolute;
top:50%;
left:50%;
width:56px;
height:56px;
margin:-28px 0 0 -28px;
z-index:200;
cursor:pointer;
background:#000 url(images/next_photo.png) no-repeat 50% 50%;
opacity:0.6;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
}
a.ps_next_photo:hover,
a.ps_close:hover{
opacity:0.8;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
/* Thumbnail slider style */
.ps_slider{
width:100%;
height:310px;
position:relative;
text-align:left;
}
.ps_slider a.next,
.ps_slider a.prev{
position:absolute;
background-color:#000;
background-position:center center;
background-repeat:no-repeat;
border:1px solid #232323;
width:20px;
height:20px;
top:50%;
margin-top:-10px;
opacity:0.6;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
cursor:pointer;
outline:none;
}
.ps_slider a.prev:hover,
.ps_slider a.next:hover{
border:1px solid #333;
opacity:0.9;
}
.ps_slider a.disabled,
.ps_slider a.disabled:hover{
opacity:0.4;
border:1px solid #111;
cursor:default;
}
.ps_slider a.prev{
left:15px;
background-image:url(images/prev.png);
}
.ps_slider a.next{
right:15px;
background-image:url(images/next.png);
}
.ps_slider #ps_albumsouter{
width:700px;
height:100%;
overflow:hidden;
}
.ps_slider #ps_albums{
width:10000px;
margin:0px;
}
.ps_slider .ps_album{
width:140px;
height:310px;
padding:10px;
-webkit-box-sizing: border-box;
box-sizing:border-box;
-moz-box-sizing: border-box;
background-color:#333;
border:1px solid #444;
top:0px;
text-align:center;
cursor:pointer;
-moz-box-shadow:1px 1px 4px #000;
-webkit-box-shadow:1px 1px 4px #000;
box-shadow:1px 1px 4px #000;
-webkit-box-reflect:
below 5px
-webkit-gradient(
linear,
left top,
left bottom,
from(transparent),
color-stop(0.6, transparent),
to(rgb(18, 18, 18))
);
float:left;
margin-left:5px;
margin-right:5px;
}
.ps_slider .ps_album:hover{
background-color:#383838;
}
.ps_slider .ps_album img{
height:90px;
border:1px solid #444;
-moz-box-shadow:1px 1px 4px #000;
-webkit-box-shadow:1px 1px 4px #000;
box-shadow:1px 1px 4px #000;
}
.ps_slider .ps_album .ps_desc{
display:block;
color:#666;
background:#111 url(images/overlay.png) no-repeat bottom right;
height:180px;
margin-top:10px;
text-align:left;
line-height:20px;
overflow:hidden;
text-overflow:ellipsis;
border:1px solid #393939;
-moz-box-shadow:0px 0px 2px #000 inset;
-webkit-box-shadow:0px 0px 2px #000 inset;
box-shadow:0px 0px 2px #000 inset;
}
.ps_slider .ps_album:hover .ps_desc{
background-image:none;
}
.ps_slider .ps_album .ps_desc span{
display:block;
margin:0px 10px 10px 10px;
border-top:1px solid #333;
padding-top:5px;
}
.ps_slider .ps_album .ps_desc h2{
margin:10px 10px 0px 10px;
text-align:left;
padding-bottom:5px;
font-weight:normal;
color:#ddd;
text-shadow:0px 0px 1px #fff;
border-bottom:1px solid #000;
}
.ps_slider .loading{
background:#121212 url(images/loading.gif) no-repeat 50% 50%;
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
opacity:0.7;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
} | DesktopModules/UltraMediaGallery/Css/PhotoStack/PhotoStack.css | .umg_ps{
position:relative;
background:#121212;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:#fff;
overflow:hidden;
}
.ps_overlay{
z-index:90;
background:#111;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
opacity:0.5;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
/* Image container style */
.ps_container{
width:480px;
height:350px;
margin-top:-175px;
margin-left:-240px;
position:absolute;
top:50%;
left:50%;
z-index:100;
}
.ps_container img{
border:10px solid #fff;
position:absolute;
top:50%;
left:50%;
-moz-box-shadow:1px 1px 10px #000;
-webkit-box-shadow:1px 1px 10px #000;
box-shadow:1px 1px 10px #000;
}
/* Close button for preview mode */
a.ps_close{
background:#000 url(images/close.png) no-repeat center center;
cursor:pointer;
width:56px;
height:56px;
position:absolute;
right:10px;
top:10px;
z-index:1000;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
opacity:0.6;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
}
/* Next photo button for preview mode */
a.ps_next_photo{
position:absolute;
top:50%;
left:50%;
width:56px;
height:56px;
margin:-28px 0 0 -28px;
z-index:200;
cursor:pointer;
background:#000 url(images/next_photo.png) no-repeat 50% 50%;
opacity:0.6;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
}
a.ps_next_photo:hover,
a.ps_close:hover{
opacity:0.8;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
/* Thumbnail slider style */
.ps_slider{
width:100%;
height:310px;
position:relative;
text-align:left;
}
.ps_slider a.next,
.ps_slider a.prev{
position:absolute;
background-color:#000;
background-position:center center;
background-repeat:no-repeat;
border:1px solid #232323;
width:20px;
height:20px;
top:50%;
margin-top:-10px;
opacity:0.6;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
cursor:pointer;
outline:none;
}
.ps_slider a.prev:hover,
.ps_slider a.next:hover{
border:1px solid #333;
opacity:0.9;
}
.ps_slider a.disabled,
.ps_slider a.disabled:hover{
opacity:0.4;
border:1px solid #111;
cursor:default;
}
.ps_slider a.prev{
left:15px;
background-image:url(images/prev.png);
}
.ps_slider a.next{
right:15px;
background-image:url(images/next.png);
}
.ps_slider #ps_albumsouter{
width:700px;
height:100%;
overflow:hidden;
}
.ps_slider #ps_albums{
width:10000px;
margin:0px;
}
.ps_slider .ps_album{
width:140px;
height:310px;
padding:10px;
-webkit-box-sizing: border-box;
box-sizing:border-box;
-moz-box-sizing: border-box;
background-color:#333;
border:1px solid #444;
top:0px;
text-align:center;
cursor:pointer;
-moz-box-shadow:1px 1px 4px #000;
-webkit-box-shadow:1px 1px 4px #000;
box-shadow:1px 1px 4px #000;
-webkit-box-reflect:
below 5px
-webkit-gradient(
linear,
left top,
left bottom,
from(transparent),
color-stop(0.6, transparent),
to(rgb(18, 18, 18))
);
float:left;
margin-left:5px;
margin-right:5px;
}
.ps_slider .ps_album:hover{
background-color:#383838;
}
.ps_slider .ps_album img{
height:90px;
border:1px solid #444;
-moz-box-shadow:1px 1px 4px #000;
-webkit-box-shadow:1px 1px 4px #000;
box-shadow:1px 1px 4px #000;
}
.ps_slider .ps_album .ps_desc{
display:block;
color:#666;
background:#111 url(images/overlay.png) no-repeat bottom right;
height:180px;
margin-top:10px;
text-align:left;
line-height:20px;
overflow:hidden;
text-overflow:ellipsis;
border:1px solid #393939;
-moz-box-shadow:0px 0px 2px #000 inset;
-webkit-box-shadow:0px 0px 2px #000 inset;
box-shadow:0px 0px 2px #000 inset;
}
.ps_slider .ps_album:hover .ps_desc{
background-image:none;
}
.ps_slider .ps_album .ps_desc span{
display:block;
margin:0px 10px 10px 10px;
border-top:1px solid #333;
padding-top:5px;
}
.ps_slider .ps_album .ps_desc h2{
margin:10px 10px 0px 10px;
text-align:left;
padding-bottom:5px;
font-weight:normal;
color:#ddd;
text-shadow:0px 0px 1px #fff;
border-bottom:1px solid #000;
}
.ps_slider .loading{
background:#121212 url(images/loading.gif) no-repeat 50% 50%;
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
opacity:0.7;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
} | 0.240596 | 0.060808 |
.salahPage .header {
margin-top: 45px;
margin-left: 120px;
position: absolute;
top: 0;
text-shadow: 0px 0px 2.5px rgba(0, 0, 0, .3);
}
#datesListContainer {
bottom: 0;
position: absolute;
width: 100%;
}
#datesList {
-ms-scroll-snap-type: proximity;
-ms-scroll-translation: vertical-to-horizontal;
display: -ms-flexbox;
list-style: none;
margin: 0;
padding: 50px 0 135px 120px;
overflow-x: scroll;
}
#datesList > li {
-ms-flex-direction: column;
display: -ms-flexbox;
}
#datesList > li.blankDate {
position: static;
visibility: hidden;
overflow: hidden;
width: 0px;
}
.salahList {
-ms-flex-direction: row;
display: -ms-flexbox;
list-style: none;
margin: 0;
padding: 0;
}
label.dateStamp {
display: block;
font-size: 11pt;
font-weight: 600;
line-height: 1.3636;
padding-bottom: 7px;
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .65);
}
.salahList > li {
background-clip: content-box;
background-color: rgba(0, 0, 0, .9);
margin-right: 2px;
/* adding wipe-able transition property here causes salah to animate when they are added to the document */
/*transition: margin-right .7s ease, padding 1.4s ease, width 1.4s ease, color .3s linear;*/
transition: color .3s linear;
}
.salahList > li:last-child {
margin-right: 40px;
}
.salahList > li.expired {
color: rgba(255, 255, 255, 0.3);
}
.salahList h1 {
padding: 15px 30px 0 30px;
}
.salahList h2 {
padding: 0 30px 25px 30px;
white-space: nowrap; /* prevent wrapping and just let them overflow */
transition: width 0.4s ease;
display: block;
overflow: hidden;
padding-right: 0;
margin-right: 30px;
white-space: nowrap;
}
.progressContainer {
height: 0px;
overflow: visible;
position: relative;
top: -7px; /* progress height is 6px */
padding: 0px 1px;
}
.progressContainer progress {
background-color: rgba(255, 255, 255, 0.07);
display: block;
vertical-align: text-bottom;
width: 100%;
}
.wipeable {
transition: margin-right .7s ease, padding 1.4s ease, width 1.4s ease, color .3s linear !important;
overflow: hidden;
white-space: nowrap; /* Very important as it prevents text from wrapping */
}
@media screen and (-ms-view-state: snapped) {
} | Salah/pages/salah.css | .salahPage .header {
margin-top: 45px;
margin-left: 120px;
position: absolute;
top: 0;
text-shadow: 0px 0px 2.5px rgba(0, 0, 0, .3);
}
#datesListContainer {
bottom: 0;
position: absolute;
width: 100%;
}
#datesList {
-ms-scroll-snap-type: proximity;
-ms-scroll-translation: vertical-to-horizontal;
display: -ms-flexbox;
list-style: none;
margin: 0;
padding: 50px 0 135px 120px;
overflow-x: scroll;
}
#datesList > li {
-ms-flex-direction: column;
display: -ms-flexbox;
}
#datesList > li.blankDate {
position: static;
visibility: hidden;
overflow: hidden;
width: 0px;
}
.salahList {
-ms-flex-direction: row;
display: -ms-flexbox;
list-style: none;
margin: 0;
padding: 0;
}
label.dateStamp {
display: block;
font-size: 11pt;
font-weight: 600;
line-height: 1.3636;
padding-bottom: 7px;
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .65);
}
.salahList > li {
background-clip: content-box;
background-color: rgba(0, 0, 0, .9);
margin-right: 2px;
/* adding wipe-able transition property here causes salah to animate when they are added to the document */
/*transition: margin-right .7s ease, padding 1.4s ease, width 1.4s ease, color .3s linear;*/
transition: color .3s linear;
}
.salahList > li:last-child {
margin-right: 40px;
}
.salahList > li.expired {
color: rgba(255, 255, 255, 0.3);
}
.salahList h1 {
padding: 15px 30px 0 30px;
}
.salahList h2 {
padding: 0 30px 25px 30px;
white-space: nowrap; /* prevent wrapping and just let them overflow */
transition: width 0.4s ease;
display: block;
overflow: hidden;
padding-right: 0;
margin-right: 30px;
white-space: nowrap;
}
.progressContainer {
height: 0px;
overflow: visible;
position: relative;
top: -7px; /* progress height is 6px */
padding: 0px 1px;
}
.progressContainer progress {
background-color: rgba(255, 255, 255, 0.07);
display: block;
vertical-align: text-bottom;
width: 100%;
}
.wipeable {
transition: margin-right .7s ease, padding 1.4s ease, width 1.4s ease, color .3s linear !important;
overflow: hidden;
white-space: nowrap; /* Very important as it prevents text from wrapping */
}
@media screen and (-ms-view-state: snapped) {
} | 0.536556 | 0.082623 |
@-moz-document domain("youtube.com")
{
/*Common items*/
#logo-icon-container.ytd-topbar-logo-renderer #youtube-paths.ytd-topbar-logo-renderer path.ytd-topbar-logo-renderer {
fill: white;
}
ytd-watch {
background-color: #272525;
}
.title.ytd-video-primary-info-renderer {
color: white;
}
span.yt-view-count-renderer {
color: grey;
}
/*Common youtube icons*/
yt-icon,
.yt-icon-container.yt-icon {
color: grey;
}
#player-container.ytd-watch {
background-color: hsl(0, 9%, 14%);
}
/*Search Results*/
ytd-page-manager > *.ytd-page-manager {
background-color: hsl(0, 9%, 14%);
}
#result-count.ytd-search-sub-menu-renderer {
color: red;
}
ytd-toggle-button-renderer #button.ytd-toggle-button-renderer {
color: white;
}
/*Mix Header*/
#video-title.ytd-compact-radio-renderer {
color: white;
}
/* Suggestion Videos' related css*/
.badge-style-type-collection.ytd-badge-supported-renderer {
color: #d42c2c;
}
a.yt-simple-endpoint.ytd-compact-video-renderer {
background-color: hsla(0, 27%, 94%, 0.02);
}
#video-title.ytd-compact-video-renderer {
color: white;
}
#video-title.ytd-compact-playlist-renderer {
color: #d42c2c;
}
#byline.ytd-video-meta-block {
color: lightslategrey;
}
#metadata-line.ytd-video-meta-block span.ytd-video-meta-block {
color: white;
}
ytd-masthead[mode="legacy"] #container.ytd-masthead {
background-color: hsl(0, 9%, 14%);
}
/*Youtube Browse Main Page*/
ytd-browse {
background-color: hsl(0, 9%, 14%);
;
}
#video-title.yt-simple-endpoint.ytd-grid-video-renderer {
color: white;
}
#metadata-line.ytd-grid-video-renderer span.ytd-grid-video-renderer {
color: floralwhite;
}
#title.ytd-shelf-renderer {
color: white;
}
#video-title.ytd-video-renderer {
color: white;
}
#description-text.ytd-video-renderer {
color: lightgrey;
}
/*Left Menu*/
ytd-guide-section-renderer {
background-color: hsl(0, 9%, 14%);
}
.title.ytd-guide-entry-renderer {
color: white;
}
ytd-guide-subscriptions-section-renderer {
background-color: hsl(0, 9%, 14%);
;
}
.guide-entry-count.ytd-guide-entry-renderer {
opacity: 1.0;
color: white;
}
#guide-icon.ytd-masthead {
fill: white;
}
/* Section - Video Description*/
/* Video Author Link*/
a.yt-simple-endpoint.yt-formatted-string {
color: #d61831;
}
/*Description content*/
.content.ytd-video-secondary-info-renderer {
color: ghostwhite;
}
/*Published On Text*/
.date.ytd-video-secondary-info-renderer {
color: lightslategrey;
}
.more-button.ytd-video-secondary-info-renderer,
.less-button.ytd-video-secondary-info-renderer {
color: white;
}
/*Autoplay toggle*/
#autoplay.ytd-compact-autoplay-renderer {
color: white;
}
paper-toggle-button[checked]:not([disabled]) .toggle-bar.paper-toggle-button {
background-color: black;
}
paper-toggle-button[checked]:not([disabled]) .toggle-button.paper-toggle-button {
background-color: red;
}
/*Comments section*/
ytd-author-comment-badge-renderer {
background-color: orange;
}
#content-text.ytd-comment-renderer {
color: darkgray;
}
#author-text.yt-simple-endpoint.ytd-comment-renderer {
color: whitesmoke;
}
#icon-label.yt-dropdown-menu {
color: white;
}
} | data/usercss/148015.user.css | @-moz-document domain("youtube.com")
{
/*Common items*/
#logo-icon-container.ytd-topbar-logo-renderer #youtube-paths.ytd-topbar-logo-renderer path.ytd-topbar-logo-renderer {
fill: white;
}
ytd-watch {
background-color: #272525;
}
.title.ytd-video-primary-info-renderer {
color: white;
}
span.yt-view-count-renderer {
color: grey;
}
/*Common youtube icons*/
yt-icon,
.yt-icon-container.yt-icon {
color: grey;
}
#player-container.ytd-watch {
background-color: hsl(0, 9%, 14%);
}
/*Search Results*/
ytd-page-manager > *.ytd-page-manager {
background-color: hsl(0, 9%, 14%);
}
#result-count.ytd-search-sub-menu-renderer {
color: red;
}
ytd-toggle-button-renderer #button.ytd-toggle-button-renderer {
color: white;
}
/*Mix Header*/
#video-title.ytd-compact-radio-renderer {
color: white;
}
/* Suggestion Videos' related css*/
.badge-style-type-collection.ytd-badge-supported-renderer {
color: #d42c2c;
}
a.yt-simple-endpoint.ytd-compact-video-renderer {
background-color: hsla(0, 27%, 94%, 0.02);
}
#video-title.ytd-compact-video-renderer {
color: white;
}
#video-title.ytd-compact-playlist-renderer {
color: #d42c2c;
}
#byline.ytd-video-meta-block {
color: lightslategrey;
}
#metadata-line.ytd-video-meta-block span.ytd-video-meta-block {
color: white;
}
ytd-masthead[mode="legacy"] #container.ytd-masthead {
background-color: hsl(0, 9%, 14%);
}
/*Youtube Browse Main Page*/
ytd-browse {
background-color: hsl(0, 9%, 14%);
;
}
#video-title.yt-simple-endpoint.ytd-grid-video-renderer {
color: white;
}
#metadata-line.ytd-grid-video-renderer span.ytd-grid-video-renderer {
color: floralwhite;
}
#title.ytd-shelf-renderer {
color: white;
}
#video-title.ytd-video-renderer {
color: white;
}
#description-text.ytd-video-renderer {
color: lightgrey;
}
/*Left Menu*/
ytd-guide-section-renderer {
background-color: hsl(0, 9%, 14%);
}
.title.ytd-guide-entry-renderer {
color: white;
}
ytd-guide-subscriptions-section-renderer {
background-color: hsl(0, 9%, 14%);
;
}
.guide-entry-count.ytd-guide-entry-renderer {
opacity: 1.0;
color: white;
}
#guide-icon.ytd-masthead {
fill: white;
}
/* Section - Video Description*/
/* Video Author Link*/
a.yt-simple-endpoint.yt-formatted-string {
color: #d61831;
}
/*Description content*/
.content.ytd-video-secondary-info-renderer {
color: ghostwhite;
}
/*Published On Text*/
.date.ytd-video-secondary-info-renderer {
color: lightslategrey;
}
.more-button.ytd-video-secondary-info-renderer,
.less-button.ytd-video-secondary-info-renderer {
color: white;
}
/*Autoplay toggle*/
#autoplay.ytd-compact-autoplay-renderer {
color: white;
}
paper-toggle-button[checked]:not([disabled]) .toggle-bar.paper-toggle-button {
background-color: black;
}
paper-toggle-button[checked]:not([disabled]) .toggle-button.paper-toggle-button {
background-color: red;
}
/*Comments section*/
ytd-author-comment-badge-renderer {
background-color: orange;
}
#content-text.ytd-comment-renderer {
color: darkgray;
}
#author-text.yt-simple-endpoint.ytd-comment-renderer {
color: whitesmoke;
}
#icon-label.yt-dropdown-menu {
color: white;
}
} | 0.33372 | 0.181372 |
body {
font-family: Arial, Helvetica, sans-serif;
}
.text1 {
font-weight: 100;
font-size: 5px;
}
.text2 {
font-weight: 600;
font-size: 10px;
}
span {
color: #f2994a;
}
.icon {
fill: #f2994a;
}
.dots {
display: flex;
}
@media (min-width: 1025px) {
.container {
padding-left: 256px;
padding-right: 256px;
margin-top: 2rem;
}
.section-wrapper {
display: flex;
}
h1 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 2rem;
line-height: 64px;
}
.dot1 {
padding-bottom: 5rem;
}
.header-text {
width: 587px;
height: 64px;
font-family: Playfair Display;
font-style: italic;
font-weight: 500;
margin-top: 0.3rem;
}
.background-img {
width: 100%;
}
.icon {
padding-top: 15px;
height: 35px;
width: 35px;
color: orange;
margin-left: 3px;
}
.ri-time-line {
font-size: 35px;
margin-right: 10px;
padding-top: 15px;
}
.serving-bar {
width: 300px;
height: 367px;
background: #ffffff;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
margin-top: 3rem;
}
.box-text1 {
display: flex;
line-height: 20px;
margin-left: 20px;
padding-top: 1.5rem;
}
.serving-text1 {
margin-left: 13px;
margin-top: 0.7rem;
}
.box-text {
display: flex;
line-height: 20px;
margin-top: 40px;
margin-left: 20px;
}
.serving-text {
margin-left: 13px;
margin-top: 3px;
}
.ingredients {
margin-right: 3rem;
margin-top: 3rem;
}
.list {
line-height: 30px;
}
.ingredient-list {
margin-top: 0.5rem;
}
h2 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 20px;
}
h3 {
font-family: Playfair Display;
font-style: italic;
font-weight: normal;
font-size: 16px;
margin-top: 1rem;
}
input {
font-size: 25px;
font-weight: 200;
left: 237px;
top: 829px;
margin-right: 10px;
}
.instruction-title {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 1.5rem;
margin-top: 1rem;
}
.instruction-text {
padding-right: 10rem;
text-align: left;
font-size: 20px;
margin-top: 2rem;
line-height: 2rem;
}
.num {
margin-top: 2rem;
font-size: 20px;
font-style: italic;
font-weight: 500;
margin-right: 12px;
background-color: orange;
border-radius: 6px;
padding: 20px;
color: white;
}
.instruction-list {
display: flex;
}
.numbers {
width: 10px;
height: 32px;
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 24px;
color: #ffffff;
}
.source-text {
margin-top: 5rem;
font-weight: 100;
font-style: italic;
}
footer {
background-color: black;
color: white;
text-align: center;
margin-top: 7rem;
padding: 4rem;
}
}
@media (max-width: 600px) {
.container {
padding-left: 11px;
padding-right: 11px;
margin-top: 2rem
}
.section-wrapper {
display: flex;
flex-direction: column-reverse;
}
h1 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 2rem;
}
.header-text {
font-family: Montserrat;
font-style: italic;
font-weight: 500;
font-size: 12px;
line-height: 15px;
margin-top: 0.5rem;
}
.dot1 {
padding-bottom: 1.5rem;
}
.background-img {
width: 100%;
}
.box-text1 {
display: flex;
line-height: 0.7rem;
}
.box-text {
display: flex;
line-height: 0.7rem;
}
.all-box {
display: flex;
margin-top: 20px;
justify-content: space-between;
}
.icon {
padding-top: 10px;
height: 20px;
width: 20px;
color: orange;
margin-right: 0.5rem;
}
.ri-time-line {
margin-right: 10px;
padding-top: 7px;
}
.serving-text1 {
margin-top: 0.5rem;
}
.serving-bar {
width: 100%;
}
.ingredients {
margin-top: 1.5rem;
line-height: normal;
width: 100%;
}
h2 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 1rem
}
h3 {
margin-top: 0.5rem;
font-style: italic;
font-size: 0.7rem;
}
.ingredient-list {
line-height: 1.5rem;
margin-top: 1rem;
font-size: 0.8rem;
}
.instruction-title {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
margin-top: 1rem;
font-size: 1rem;
}
.instruction-text {
line-height: 1.5rem;
margin-top: 1rem;
}
.num {
margin-top: 1.2rem;
font-style: italic;
font-weight: 500;
margin-right: 12px;
background-color: orange;
border-radius: 6px;
padding: 0.65rem;
color: white;
}
.instruction-list {
display: flex;
}
.all-instruction {
margin-top: 5px;
margin-left: 0;
margin-right: 5rem;
}
.numbers {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
color: #ffffff;
}
.source-text {
margin-top: 4rem;
font-size: 0.75rem;
font-weight: 100;
font-style: italic;
}
footer {
margin-top: 3rem;
background-color: black;
color: white;
text-align: center;
padding: 4rem;
font-size: 0.9rem;
}
} | style.css | body {
font-family: Arial, Helvetica, sans-serif;
}
.text1 {
font-weight: 100;
font-size: 5px;
}
.text2 {
font-weight: 600;
font-size: 10px;
}
span {
color: #f2994a;
}
.icon {
fill: #f2994a;
}
.dots {
display: flex;
}
@media (min-width: 1025px) {
.container {
padding-left: 256px;
padding-right: 256px;
margin-top: 2rem;
}
.section-wrapper {
display: flex;
}
h1 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 2rem;
line-height: 64px;
}
.dot1 {
padding-bottom: 5rem;
}
.header-text {
width: 587px;
height: 64px;
font-family: Playfair Display;
font-style: italic;
font-weight: 500;
margin-top: 0.3rem;
}
.background-img {
width: 100%;
}
.icon {
padding-top: 15px;
height: 35px;
width: 35px;
color: orange;
margin-left: 3px;
}
.ri-time-line {
font-size: 35px;
margin-right: 10px;
padding-top: 15px;
}
.serving-bar {
width: 300px;
height: 367px;
background: #ffffff;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
margin-top: 3rem;
}
.box-text1 {
display: flex;
line-height: 20px;
margin-left: 20px;
padding-top: 1.5rem;
}
.serving-text1 {
margin-left: 13px;
margin-top: 0.7rem;
}
.box-text {
display: flex;
line-height: 20px;
margin-top: 40px;
margin-left: 20px;
}
.serving-text {
margin-left: 13px;
margin-top: 3px;
}
.ingredients {
margin-right: 3rem;
margin-top: 3rem;
}
.list {
line-height: 30px;
}
.ingredient-list {
margin-top: 0.5rem;
}
h2 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 20px;
}
h3 {
font-family: Playfair Display;
font-style: italic;
font-weight: normal;
font-size: 16px;
margin-top: 1rem;
}
input {
font-size: 25px;
font-weight: 200;
left: 237px;
top: 829px;
margin-right: 10px;
}
.instruction-title {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 1.5rem;
margin-top: 1rem;
}
.instruction-text {
padding-right: 10rem;
text-align: left;
font-size: 20px;
margin-top: 2rem;
line-height: 2rem;
}
.num {
margin-top: 2rem;
font-size: 20px;
font-style: italic;
font-weight: 500;
margin-right: 12px;
background-color: orange;
border-radius: 6px;
padding: 20px;
color: white;
}
.instruction-list {
display: flex;
}
.numbers {
width: 10px;
height: 32px;
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 24px;
color: #ffffff;
}
.source-text {
margin-top: 5rem;
font-weight: 100;
font-style: italic;
}
footer {
background-color: black;
color: white;
text-align: center;
margin-top: 7rem;
padding: 4rem;
}
}
@media (max-width: 600px) {
.container {
padding-left: 11px;
padding-right: 11px;
margin-top: 2rem
}
.section-wrapper {
display: flex;
flex-direction: column-reverse;
}
h1 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 2rem;
}
.header-text {
font-family: Montserrat;
font-style: italic;
font-weight: 500;
font-size: 12px;
line-height: 15px;
margin-top: 0.5rem;
}
.dot1 {
padding-bottom: 1.5rem;
}
.background-img {
width: 100%;
}
.box-text1 {
display: flex;
line-height: 0.7rem;
}
.box-text {
display: flex;
line-height: 0.7rem;
}
.all-box {
display: flex;
margin-top: 20px;
justify-content: space-between;
}
.icon {
padding-top: 10px;
height: 20px;
width: 20px;
color: orange;
margin-right: 0.5rem;
}
.ri-time-line {
margin-right: 10px;
padding-top: 7px;
}
.serving-text1 {
margin-top: 0.5rem;
}
.serving-bar {
width: 100%;
}
.ingredients {
margin-top: 1.5rem;
line-height: normal;
width: 100%;
}
h2 {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 1rem
}
h3 {
margin-top: 0.5rem;
font-style: italic;
font-size: 0.7rem;
}
.ingredient-list {
line-height: 1.5rem;
margin-top: 1rem;
font-size: 0.8rem;
}
.instruction-title {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
margin-top: 1rem;
font-size: 1rem;
}
.instruction-text {
line-height: 1.5rem;
margin-top: 1rem;
}
.num {
margin-top: 1.2rem;
font-style: italic;
font-weight: 500;
margin-right: 12px;
background-color: orange;
border-radius: 6px;
padding: 0.65rem;
color: white;
}
.instruction-list {
display: flex;
}
.all-instruction {
margin-top: 5px;
margin-left: 0;
margin-right: 5rem;
}
.numbers {
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
color: #ffffff;
}
.source-text {
margin-top: 4rem;
font-size: 0.75rem;
font-weight: 100;
font-style: italic;
}
footer {
margin-top: 3rem;
background-color: black;
color: white;
text-align: center;
padding: 4rem;
font-size: 0.9rem;
}
} | 0.61682 | 0.113776 |
.cart_header {
display: flex;
}
.cart_contents-table {
width: 100%;
}
.cart-btn {
background-color: #e83583;
border: none;
padding: 0.1rem 0.5rem;
color: #fff;
}
.checkout_btn {
background-color: #e83583;
border: none;
padding: 1rem;
color: #fff;
width: 100%;
}
.cart-main-cont {
position: absolute;
display: none;
right: 0;
top: 65px;
background: #efefef;
z-index: 3;
}
.cart-main-cont .cart-wrapper {
position: relative;
height: 81.5vh;
width: 35vw;
}
.cart-main-cont .cart-wrapper .checkout {
position: absolute;
padding: 15px;
left: 0;
right: 0;
bottom: 0;
background: #fff;
}
.cart-main-cont .cart-wrapper .checkout-button {
background: #e83583;
border: none;
width: 100%;
color: #fff;
font-size: 1rem;
padding: 15px;
}
.cart-main-cont .cart-wrapper .checkout-heading {
margin: 0px 0px 15px 0px;
text-align: center;
}
.cart-main-cont .cart-wrapper .header-container {
background: #000;
display: flex;
justify-content: space-between;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .header-container .heading {
color: #fff;
}
.cart-main-cont .cart-wrapper .cart_list {
list-style: none;
padding: 0px;
margin-left: 0px;
max-height: 62vh;
overflow: auto;
}
.cart-main-cont .cart-wrapper .cart_list-details {
width: 100%;
}
.btn-close {
background-color: black;
border: black;
}
.btn-close:after {
position: absolute;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #fff;
font-size: 50px;
content: "\d7";
top: 30px;
right: 30px;
margin-top: -2px;
cursor: pointer;
}
.btn-increment,
.btn-decrement {
background-color: #e83583;
border: none;
padding: 0px 9px 4px 9px;
border-radius: 50%;
margin: 0px 15px;
font-size: 1.2rem;
font-weight: bold;
color: #fff;
}
.cart-main-cont .cart-wrapper .cart_list-item {
background: #fff;
display: flex;
align-items: flex-start;
margin-bottom: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-item-total {
font-size: 1rem;
margin: 0px 15px 0px 0px;
float: right;
}
.cart-main-cont .cart-wrapper .cart_list .quantity,
.cart-main-cont .cart-wrapper .cart_list-price {
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .cart_list-price {
padding-left: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-img {
width: 80px;
padding: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-name {
font-size: 1.1rem;
font-weight: 600;
margin: 10px 0px;
text-align: left;
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {
.cart-main-cont {
position: fixed;
}
.cart-main-cont .cart-wrapper {
width: 100vw;
height: 95vh;
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
.cart-main-cont {
position: fixed;
display: none;
right: 0;
top: 10vh;
bottom: 0;
left: 0;
background: #efefef;
z-index: 3;
}
.cart-main-cont .cart-wrapper {
position: relative;
width: 100vw;
height: 90vh;
}
.cart-main-cont .cart-wrapper .checkout {
position: absolute;
padding: 15px;
left: 0;
right: 0;
bottom: 0;
background: #fff;
}
.cart-main-cont .cart-wrapper .checkout-button {
background: #e83583;
border: none;
width: 100%;
color: #fff;
font-size: 1rem;
padding: 15px;
}
.cart-main-cont .cart-wrapper .checkout-heading {
margin: 0px 0px 15px 0px;
text-align: center;
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .header-container {
background: #000;
display: flex;
justify-content: space-between;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .header-container .heading {
color: #fff;
font-size: 1.6rem;
}
.cart-main-cont .cart-wrapper .cart_list {
max-height: 71vh;
overflow: auto;
}
.cart-main-cont .cart-wrapper .cart_list-item {
background: #fff;
display: flex;
align-items: flex-start;
margin-bottom: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-item-total {
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .cart_list .quantity,
.cart-main-cont .cart-wrapper .cart_list-price {
font-size: 1rem;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .cart_list .into-qty {
font-size: 1rem;
padding: 0px 5px;
}
.cart-main-cont .cart-wrapper .cart_list-price {
padding-left: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-img {
padding: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-name {
font-size: 1rem;
font-weight: 600;
margin: 10px 0px;
text-align: left;
display: block;
}
} | src/components/layout/Cart.css | .cart_header {
display: flex;
}
.cart_contents-table {
width: 100%;
}
.cart-btn {
background-color: #e83583;
border: none;
padding: 0.1rem 0.5rem;
color: #fff;
}
.checkout_btn {
background-color: #e83583;
border: none;
padding: 1rem;
color: #fff;
width: 100%;
}
.cart-main-cont {
position: absolute;
display: none;
right: 0;
top: 65px;
background: #efefef;
z-index: 3;
}
.cart-main-cont .cart-wrapper {
position: relative;
height: 81.5vh;
width: 35vw;
}
.cart-main-cont .cart-wrapper .checkout {
position: absolute;
padding: 15px;
left: 0;
right: 0;
bottom: 0;
background: #fff;
}
.cart-main-cont .cart-wrapper .checkout-button {
background: #e83583;
border: none;
width: 100%;
color: #fff;
font-size: 1rem;
padding: 15px;
}
.cart-main-cont .cart-wrapper .checkout-heading {
margin: 0px 0px 15px 0px;
text-align: center;
}
.cart-main-cont .cart-wrapper .header-container {
background: #000;
display: flex;
justify-content: space-between;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .header-container .heading {
color: #fff;
}
.cart-main-cont .cart-wrapper .cart_list {
list-style: none;
padding: 0px;
margin-left: 0px;
max-height: 62vh;
overflow: auto;
}
.cart-main-cont .cart-wrapper .cart_list-details {
width: 100%;
}
.btn-close {
background-color: black;
border: black;
}
.btn-close:after {
position: absolute;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #fff;
font-size: 50px;
content: "\d7";
top: 30px;
right: 30px;
margin-top: -2px;
cursor: pointer;
}
.btn-increment,
.btn-decrement {
background-color: #e83583;
border: none;
padding: 0px 9px 4px 9px;
border-radius: 50%;
margin: 0px 15px;
font-size: 1.2rem;
font-weight: bold;
color: #fff;
}
.cart-main-cont .cart-wrapper .cart_list-item {
background: #fff;
display: flex;
align-items: flex-start;
margin-bottom: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-item-total {
font-size: 1rem;
margin: 0px 15px 0px 0px;
float: right;
}
.cart-main-cont .cart-wrapper .cart_list .quantity,
.cart-main-cont .cart-wrapper .cart_list-price {
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .cart_list-price {
padding-left: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-img {
width: 80px;
padding: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-name {
font-size: 1.1rem;
font-weight: 600;
margin: 10px 0px;
text-align: left;
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {
.cart-main-cont {
position: fixed;
}
.cart-main-cont .cart-wrapper {
width: 100vw;
height: 95vh;
}
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
.cart-main-cont {
position: fixed;
display: none;
right: 0;
top: 10vh;
bottom: 0;
left: 0;
background: #efefef;
z-index: 3;
}
.cart-main-cont .cart-wrapper {
position: relative;
width: 100vw;
height: 90vh;
}
.cart-main-cont .cart-wrapper .checkout {
position: absolute;
padding: 15px;
left: 0;
right: 0;
bottom: 0;
background: #fff;
}
.cart-main-cont .cart-wrapper .checkout-button {
background: #e83583;
border: none;
width: 100%;
color: #fff;
font-size: 1rem;
padding: 15px;
}
.cart-main-cont .cart-wrapper .checkout-heading {
margin: 0px 0px 15px 0px;
text-align: center;
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .header-container {
background: #000;
display: flex;
justify-content: space-between;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .header-container .heading {
color: #fff;
font-size: 1.6rem;
}
.cart-main-cont .cart-wrapper .cart_list {
max-height: 71vh;
overflow: auto;
}
.cart-main-cont .cart-wrapper .cart_list-item {
background: #fff;
display: flex;
align-items: flex-start;
margin-bottom: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-item-total {
font-size: 1rem;
}
.cart-main-cont .cart-wrapper .cart_list .quantity,
.cart-main-cont .cart-wrapper .cart_list-price {
font-size: 1rem;
padding: 0px 15px;
}
.cart-main-cont .cart-wrapper .cart_list .into-qty {
font-size: 1rem;
padding: 0px 5px;
}
.cart-main-cont .cart-wrapper .cart_list-price {
padding-left: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-img {
padding: 10px;
}
.cart-main-cont .cart-wrapper .cart_list-name {
font-size: 1rem;
font-weight: 600;
margin: 10px 0px;
text-align: left;
display: block;
}
} | 0.426919 | 0.053255 |
* {
font-family: "Sen-Regular", sans-serif;
}
.container {
position: relative;
width: 1000px;
margin: 50px auto;
display: flex;
flex-direction: column;
justify-content: center;
font-family: "Sen-Regular", sans-serif;
}
.faq {
background-image: url('../assets/images/faq.png');
background-size: cover;
height: 700px;
position: relative;
background-repeat: no-repeat;
width: 100%;
background-position: center;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.faq::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700px;
background-color: rgba(39, 178, 149, .24);
z-index: 1;
}
.faq-intro {
position: absolute;
top: 50%;
right: 43%;
transform: translate( 75%, -50% );
width: auto;
height: auto;
background: #125D4D;
color: white;
text-align: center;
padding: 24px 31px;
z-index: 2;
}
.faq-intro span {
font-family: "Sen-Bold", sans-serif;
font-size: 38px;
margin-bottom: 20px;
}
.subheader {
font-family: "OpenSans-Regular", sans-serif;
font-size: 30px;
margin: 10px 0 25px 0;
}
.light {
font-family: 'OpenSans-Regular', sans-serif;
font-weight: 100;
line-height: 20px;
}
.faq-questions {
color: #125D4D;
font-family: "OpenSans-Regular", sans-serif;
}
.faq-questions p{
font-family: 'OpenSans-Regular', sans-serif;
line-height: 1.2em;
}
.faq-questions *:not(:first-child), .faq-questions *:not(:last-child) {
margin: 15px 0 30px 0;
}
.faq-contact {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: antiquewhite;
color: #125D4D;
padding: 50px 250px;
}
.faq-contact span:first-child {
font-family: "Sen-Bold", sans-serif;
font-size: 42px;
font-weight: 900;
}
.faq-contact p {
font-size: 20px;
margin-top: 25px;
font-family: "OpenSans-Regular", sans-serif;
}
.contact-block {
max-width: 450px;
width: 450px;
border-top: 8px #27B295 solid;
height: 450px;
background-color: white;
max-height: 450px;
align-items: center;
display: flex;
justify-content: flex-start;
flex-direction: column;
box-shadow: 0 3px 6px #0000001a;
}
textarea, input {
color: #125D4D;
padding: 7.5px 0 7.5px 20px;
width: 80%;
border: 0.3px solid #000;
border-radius: 8px;
resize: none;
font-family: "OpenSans-Regular", sans-serif;
}
input{
margin-top: 3em;
}
textarea{
margin-top: 1em;
}
input::placeholder, textarea::placeholder{
color: rgba(18, 93, 77, .5);
}
.contact-block a {
width: 200px;
padding: 15px 0;
align-items: center;
text-decoration: none;
font-family: "OpenSans-Regular", sans-serif;
color: white;
border: none;
text-align: center;
border-radius: 50px;
background-color: #27B295;
margin-top: 1em;
}
strong {
font-family: "OpenSans-Bold", sans-serif;
}
.bold{
font-family: 'OpenSans-Bold', sans-serif;
}
@media only screen and (max-width: 1400px) {
.faq-contact {
padding: 50px 75px 50px 75px;
}
}
@media only screen and (max-width: 1024px) {
.container {
width: 80%;
}
.faq-contact-left {
margin: 50px 0px;
}
.faq-contact {
flex-direction: column;
}
.faq-intro {
right: 77%;
bottom: -105px;
top: unset;
width: 100%;
padding: 24px 7px;
z-index: 2;
}
}
@media only screen and (max-width: 500px) {
.faq-intro span {
font-size: 24px;
}
.subheader {
font-size: 17px;
margin: 10px 0 15px 0;
}
.contact-block {
width: 250px;
margin-top: 74px;
height: 250px;
}
.faq-contact span:first-child {
font-size: 24px;
}
.faq-contact p {
font-size: 15px;
margin-top: 13px;
}
.contact-block a {
width: 40%;
padding: 9px 0;
font-size: 1.4em;
margin: 1em;
}
} | public/css/faq.css | * {
font-family: "Sen-Regular", sans-serif;
}
.container {
position: relative;
width: 1000px;
margin: 50px auto;
display: flex;
flex-direction: column;
justify-content: center;
font-family: "Sen-Regular", sans-serif;
}
.faq {
background-image: url('../assets/images/faq.png');
background-size: cover;
height: 700px;
position: relative;
background-repeat: no-repeat;
width: 100%;
background-position: center;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.faq::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700px;
background-color: rgba(39, 178, 149, .24);
z-index: 1;
}
.faq-intro {
position: absolute;
top: 50%;
right: 43%;
transform: translate( 75%, -50% );
width: auto;
height: auto;
background: #125D4D;
color: white;
text-align: center;
padding: 24px 31px;
z-index: 2;
}
.faq-intro span {
font-family: "Sen-Bold", sans-serif;
font-size: 38px;
margin-bottom: 20px;
}
.subheader {
font-family: "OpenSans-Regular", sans-serif;
font-size: 30px;
margin: 10px 0 25px 0;
}
.light {
font-family: 'OpenSans-Regular', sans-serif;
font-weight: 100;
line-height: 20px;
}
.faq-questions {
color: #125D4D;
font-family: "OpenSans-Regular", sans-serif;
}
.faq-questions p{
font-family: 'OpenSans-Regular', sans-serif;
line-height: 1.2em;
}
.faq-questions *:not(:first-child), .faq-questions *:not(:last-child) {
margin: 15px 0 30px 0;
}
.faq-contact {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: antiquewhite;
color: #125D4D;
padding: 50px 250px;
}
.faq-contact span:first-child {
font-family: "Sen-Bold", sans-serif;
font-size: 42px;
font-weight: 900;
}
.faq-contact p {
font-size: 20px;
margin-top: 25px;
font-family: "OpenSans-Regular", sans-serif;
}
.contact-block {
max-width: 450px;
width: 450px;
border-top: 8px #27B295 solid;
height: 450px;
background-color: white;
max-height: 450px;
align-items: center;
display: flex;
justify-content: flex-start;
flex-direction: column;
box-shadow: 0 3px 6px #0000001a;
}
textarea, input {
color: #125D4D;
padding: 7.5px 0 7.5px 20px;
width: 80%;
border: 0.3px solid #000;
border-radius: 8px;
resize: none;
font-family: "OpenSans-Regular", sans-serif;
}
input{
margin-top: 3em;
}
textarea{
margin-top: 1em;
}
input::placeholder, textarea::placeholder{
color: rgba(18, 93, 77, .5);
}
.contact-block a {
width: 200px;
padding: 15px 0;
align-items: center;
text-decoration: none;
font-family: "OpenSans-Regular", sans-serif;
color: white;
border: none;
text-align: center;
border-radius: 50px;
background-color: #27B295;
margin-top: 1em;
}
strong {
font-family: "OpenSans-Bold", sans-serif;
}
.bold{
font-family: 'OpenSans-Bold', sans-serif;
}
@media only screen and (max-width: 1400px) {
.faq-contact {
padding: 50px 75px 50px 75px;
}
}
@media only screen and (max-width: 1024px) {
.container {
width: 80%;
}
.faq-contact-left {
margin: 50px 0px;
}
.faq-contact {
flex-direction: column;
}
.faq-intro {
right: 77%;
bottom: -105px;
top: unset;
width: 100%;
padding: 24px 7px;
z-index: 2;
}
}
@media only screen and (max-width: 500px) {
.faq-intro span {
font-size: 24px;
}
.subheader {
font-size: 17px;
margin: 10px 0 15px 0;
}
.contact-block {
width: 250px;
margin-top: 74px;
height: 250px;
}
.faq-contact span:first-child {
font-size: 24px;
}
.faq-contact p {
font-size: 15px;
margin-top: 13px;
}
.contact-block a {
width: 40%;
padding: 9px 0;
font-size: 1.4em;
margin: 1em;
}
} | 0.530966 | 0.10683 |
@-moz-document regexp("^(https:\\/\\/)(community.liferay.com)(\\/[a-z]{2})*(\\/forums)(\\/)*(\\S)*$") {
.community-container-layout,
.navbar-default,
.portlet-decorate .portlet-content,
.navigation-bar-light,
.pagination > li.active > a,
.pagination > li.active > a:hover,
.pagination > li.active > a:focus {
background-color: #293544;
color: #ddd;
font-size: 1rem;
}
.panel-default,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li > a,
.navigation-bar-light .nav-link,
.navigation-bar-light .navbar-nav .btn-unstyled,
.portlet-asset-publisher .message-user-display,
.portlet-message-boards .message-user-display,
.portlet-trash .message-user-display {
color: #ddd;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
font-weight: bold;
}
a,
a:hover,
a:focus,
.lfr-search-container-wrapper a,
.navigation-bar-light .nav-link.active,
.navigation-bar-light .nav-link[aria-expanded="true"],
.navigation-bar-light .navbar-nav .btn-unstyled.active,
.navigation-bar-light .navbar-nav .btn-unstyled[aria-expanded="true"],
.navigation-bar-light .nav-link:hover,
.navigation-bar-light .navbar-nav .btn-unstyled:hover,
.pagination-items-per-page > a:hover,
.pagination-items-per-page > a:focus,
.pagination-items-per-page > .btn-unstyled:hover,
.pagination-items-per-page > .btn-unstyled:focus,
.show.page-item .dropdown-toggle,
.list-group,
.show.pagination-items-per-page .dropdown-toggle,
.pagination > li > a:hover,
.pagination > li > a:focus,
.input-group-btn:last-child > .btn:hover,
.input-group-btn:last-child > .btn-group > .btn:hover,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn:hover {
color: white;
}
.card a,
.card-horizontal a {
color: #99caff;
}
a:hover,
a:focus,
.card a:hover,
.card-horizontal a:hover,
.card a:focus,
.card-horizontal a:focus {
text-decoration: underline;
}
.pagination > li > a,
.pagination-results,
.pagination-items-per-page a,
.breadcrumb > .active .text-default,
.pagination-results,
.pagination-items-per-page a,
.breadcrumb > .active .text-default,
.breadcrumb > li.active,
.text-default {
color: #ddd;
font-size: 1rem;
}
.panel,
.list-group-notification .list-group-item {
background: #202a36;
box-shadow: none;
border: none;
}
.portlet-asset-publisher .quote,
.portlet-message-boards .quote,
.portlet-trash .quote,
.list-group-header,
.list-group-header-title,
.lfr-panel.panel-default .panel-heading {
background-color: #304864;
color: #ddd;
border: none;
}
.dropdown-item,
.dropdown-menu > li > a,
.dropdown-menu .link-list > li > a,
.dropdown-menu {
background-color: #304864;
color: #eee;
border: none;
border-radius: 0;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: black;
background-color: #66b6f0;
}
.lfr-code,
pre,
code {
background-color: #171e27;
color: #55bfda;
border: none;
border-radius: 6px;
padding: 20px;
}
.label-secondary, .label.draft {
background-color: #171e27;
color: #55bfda;
border: 1px solid #55bfda70;
}
.label-secondary[href]:hover, .label.draft[href]:hover, .label-secondary[href]:focus, .label.draft[href]:focus {
background-color: #171e27;
color: #55bfda;
border: 1px solid #55bfda;
text-decoration: none;
}
.lfr-code tr td.line-numbers {
background-color: black;
}
.lfr-code tr td.line-numbers:before {
text-shadow: none;
}
.tabular-list-group .list-group-item-content a {
color: #ddd;
font-weight: 600;
font-size: 1.2rem;
}
.portlet-message-boards {
margin: 0;
}
.portlet-message-boards form > h3 {
font-size: 1.7rem;
font-weight: 600;
margin-bottom: 0;
}
.portlet-message-boards .list-group .list-group-item h4 {
font-size: 1.5rem;
font-weight: 600;
}
.lfr-search-container-wrapper .list-group .list-group-item h5,
.lfr-search-container-wrapper .list-group .list-group-item .h5 {
font-size: 1rem;
}
.lfr-search-container-wrapper .list-group .list-group-item h6,
.lfr-search-container-wrapper .list-group .list-group-item .h6 {
color: #69bdff;
}
#navigation {
background: rgba(0, 0, 0, .5);
}
.collapse-basic-search .basic-search .form-control {
padding-left: 15px;
}
.basic-search .input-group-input .basic-search-slider .form-control,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
background-color: #202a36;
color: #ddd;
border: none;
}
.portlet-decorate .portlet-content,
.navbar-default {
border: none;
}
.breadcrumb {
margin-bottom: 10px;
}
.main-content-body {
margin-top: 10px;
}
.card .divider,
.card-horizontal .divider {
background-color: #293544;
height: 3px;
}
.footer {
background: rgb(38, 77, 134);
}
} | dark-liferay-forums.user.css | @-moz-document regexp("^(https:\\/\\/)(community.liferay.com)(\\/[a-z]{2})*(\\/forums)(\\/)*(\\S)*$") {
.community-container-layout,
.navbar-default,
.portlet-decorate .portlet-content,
.navigation-bar-light,
.pagination > li.active > a,
.pagination > li.active > a:hover,
.pagination > li.active > a:focus {
background-color: #293544;
color: #ddd;
font-size: 1rem;
}
.panel-default,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li > a,
.navigation-bar-light .nav-link,
.navigation-bar-light .navbar-nav .btn-unstyled,
.portlet-asset-publisher .message-user-display,
.portlet-message-boards .message-user-display,
.portlet-trash .message-user-display {
color: #ddd;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
font-weight: bold;
}
a,
a:hover,
a:focus,
.lfr-search-container-wrapper a,
.navigation-bar-light .nav-link.active,
.navigation-bar-light .nav-link[aria-expanded="true"],
.navigation-bar-light .navbar-nav .btn-unstyled.active,
.navigation-bar-light .navbar-nav .btn-unstyled[aria-expanded="true"],
.navigation-bar-light .nav-link:hover,
.navigation-bar-light .navbar-nav .btn-unstyled:hover,
.pagination-items-per-page > a:hover,
.pagination-items-per-page > a:focus,
.pagination-items-per-page > .btn-unstyled:hover,
.pagination-items-per-page > .btn-unstyled:focus,
.show.page-item .dropdown-toggle,
.list-group,
.show.pagination-items-per-page .dropdown-toggle,
.pagination > li > a:hover,
.pagination > li > a:focus,
.input-group-btn:last-child > .btn:hover,
.input-group-btn:last-child > .btn-group > .btn:hover,
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn:hover {
color: white;
}
.card a,
.card-horizontal a {
color: #99caff;
}
a:hover,
a:focus,
.card a:hover,
.card-horizontal a:hover,
.card a:focus,
.card-horizontal a:focus {
text-decoration: underline;
}
.pagination > li > a,
.pagination-results,
.pagination-items-per-page a,
.breadcrumb > .active .text-default,
.pagination-results,
.pagination-items-per-page a,
.breadcrumb > .active .text-default,
.breadcrumb > li.active,
.text-default {
color: #ddd;
font-size: 1rem;
}
.panel,
.list-group-notification .list-group-item {
background: #202a36;
box-shadow: none;
border: none;
}
.portlet-asset-publisher .quote,
.portlet-message-boards .quote,
.portlet-trash .quote,
.list-group-header,
.list-group-header-title,
.lfr-panel.panel-default .panel-heading {
background-color: #304864;
color: #ddd;
border: none;
}
.dropdown-item,
.dropdown-menu > li > a,
.dropdown-menu .link-list > li > a,
.dropdown-menu {
background-color: #304864;
color: #eee;
border: none;
border-radius: 0;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: black;
background-color: #66b6f0;
}
.lfr-code,
pre,
code {
background-color: #171e27;
color: #55bfda;
border: none;
border-radius: 6px;
padding: 20px;
}
.label-secondary, .label.draft {
background-color: #171e27;
color: #55bfda;
border: 1px solid #55bfda70;
}
.label-secondary[href]:hover, .label.draft[href]:hover, .label-secondary[href]:focus, .label.draft[href]:focus {
background-color: #171e27;
color: #55bfda;
border: 1px solid #55bfda;
text-decoration: none;
}
.lfr-code tr td.line-numbers {
background-color: black;
}
.lfr-code tr td.line-numbers:before {
text-shadow: none;
}
.tabular-list-group .list-group-item-content a {
color: #ddd;
font-weight: 600;
font-size: 1.2rem;
}
.portlet-message-boards {
margin: 0;
}
.portlet-message-boards form > h3 {
font-size: 1.7rem;
font-weight: 600;
margin-bottom: 0;
}
.portlet-message-boards .list-group .list-group-item h4 {
font-size: 1.5rem;
font-weight: 600;
}
.lfr-search-container-wrapper .list-group .list-group-item h5,
.lfr-search-container-wrapper .list-group .list-group-item .h5 {
font-size: 1rem;
}
.lfr-search-container-wrapper .list-group .list-group-item h6,
.lfr-search-container-wrapper .list-group .list-group-item .h6 {
color: #69bdff;
}
#navigation {
background: rgba(0, 0, 0, .5);
}
.collapse-basic-search .basic-search .form-control {
padding-left: 15px;
}
.basic-search .input-group-input .basic-search-slider .form-control,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
background-color: #202a36;
color: #ddd;
border: none;
}
.portlet-decorate .portlet-content,
.navbar-default {
border: none;
}
.breadcrumb {
margin-bottom: 10px;
}
.main-content-body {
margin-top: 10px;
}
.card .divider,
.card-horizontal .divider {
background-color: #293544;
height: 3px;
}
.footer {
background: rgb(38, 77, 134);
}
} | 0.293404 | 0.077274 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("feedly.com") {
.sourceInfo {
width: 180px !important;
text-overflow: clip !important;
}
.sourceTitle > a {
display: inline-block;
background-repeat: no-repeat;
background-position: 6px 6px;
padding-left: 26px;
white-space: normal;
border-left: 4px solid #CCC;
font-size: 0.8em !important;
}
/* Korben */
a[data-uri='subscription/feed/http://feeds.feedburner.com/KorbensBlog-UpgradeYourMind'] {
background-image: url(https://www.google.com/s2/favicons?domain=korben.info&alt=feed);
border-color: #243149;
}
/* Linuxfr.org */
a[data-uri='subscription/feed/http://linuxfr.org/news.atom'],
a[data-uri='subscription/feed/http://linuxfr.org/journaux.atom'] {
background-image: url(https://www.google.com/s2/favicons?domain=linuxfr.org&alt=feed);
border-color: #F1B915;
}
/* Developpez.com */
a[data-uri='subscription/feed/http://www.developpez.com/rss.php'],
a[data-uri='subscription/feed/http://php.developpez.com/rss.php'],
a[data-uri='subscription/feed/http://javascript.developpez.com/index/rss'] {
background-image: url(https://www.google.com/s2/favicons?domain=php.developpez.com&alt=feed);
border-color: #C6C6F8;
}
/* Coding Horror */
a[data-uri='subscription/feed/http://blog.codinghorror.com/rss/'] {
background-image: url(https://www.google.com/s2/favicons?domain=blog.codinghorror.com&alt=feed);
border-color: #000;
}
/* html5Rocks */
a[data-uri='subscription/feed/http://www.html5rocks.com/tutorials/index.xml'],
a[data-uri='subscription/feed/http://updates.html5rocks.com/feeds/atom.xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.html5rocks.com&alt=feed);
border-color: #8096D9;
}
/* Descary */
a[data-uri='subscription/feed/http://feeds.feedburner.com/BenoitDescary'] {
background-image: url(https://www.google.com/s2/favicons?domain=descary.com&alt=feed);
border-color: #1995C9;
}
/* DailyJS */
a[data-uri='subscription/feed/http://feeds.feedburner.com/dailyjs'] {
background-image: url(https://www.google.com/s2/favicons?domain=dailyjs.com&alt=feed);
}
/* Alsacréation */
a[data-uri='subscription/feed/http://www.alsacreations.com/rss/actualites.xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=alsacreations.com&alt=feed);
border-color: #95AE3A;
}
/* Inpixelitrust */
a[data-uri='subscription/feed/http://feedpress.me/inpixelitrust-blog-fr'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.inpixelitrust.fr&alt=feed);
border-color: #7D0903;
}
/* Blog du webdesign */
a[data-uri='subscription/feed/http://feeds.feedburner.com/blogduwebdesign/articles?format=xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.blogduwebdesign.com&alt=feed);
border-color: #00A1DB;
}
/* Signal vs Noise */
a[data-uri='subscription/feed/http://feeds.feedburner.com/37signals/beMH'] {
background-image: url(https://www.google.com/s2/favicons?domain=signalvnoise.com&alt=feed);
border-color: #66CC66;
}
/* The Sass way */
a[data-uri='subscription/feed/http://feeds.feedburner.com/thesassway?format=xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=thesassway.com&alt=feed);
border-color: #CB6898;
}
/* Tuts+ */
a[data-uri='subscription/feed/http://psd.tutsplus.com/feed/'],
a[data-uri='subscription/feed/http://feeds.feedburner.com/nettuts'],
a[data-uri='subscription/feed/http://feeds.feedburner.com/webdesigntutsplus'] {
background-image: url(https://www.google.com/s2/favicons?domain=webdesign.tutsplus.com&alt=feed);
border-color: #E37E52;
}
/*Firefox*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/firefoxfacts'],
a[data-uri='subscription/feed/http://hacks.mozilla.org/feed/'],
a[data-uri='subscription/feed/http://blog.mozilla.com/feed/'],
a[data-uri='subscription/feed/http://blog.mozilla.com/webdev/feed/'] {
background-image: url(https://www.google.com/s2/favicons?domain=affiliates.mozilla.org&alt=feed);
border-color: #F89A3F;
}
/*The Changelog*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/thechangelog'] {
background-image: url(https://www.google.com/s2/favicons?domain=thechangelog.com&alt=feed);
border-color: #666;
}
/*The Changelog*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/Bludice'] {
background-image: url(https://www.google.com/s2/favicons?domain=davidwalsh.name&alt=feed);
border-color: #68A;
}
} | data/usercss/100450.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("feedly.com") {
.sourceInfo {
width: 180px !important;
text-overflow: clip !important;
}
.sourceTitle > a {
display: inline-block;
background-repeat: no-repeat;
background-position: 6px 6px;
padding-left: 26px;
white-space: normal;
border-left: 4px solid #CCC;
font-size: 0.8em !important;
}
/* Korben */
a[data-uri='subscription/feed/http://feeds.feedburner.com/KorbensBlog-UpgradeYourMind'] {
background-image: url(https://www.google.com/s2/favicons?domain=korben.info&alt=feed);
border-color: #243149;
}
/* Linuxfr.org */
a[data-uri='subscription/feed/http://linuxfr.org/news.atom'],
a[data-uri='subscription/feed/http://linuxfr.org/journaux.atom'] {
background-image: url(https://www.google.com/s2/favicons?domain=linuxfr.org&alt=feed);
border-color: #F1B915;
}
/* Developpez.com */
a[data-uri='subscription/feed/http://www.developpez.com/rss.php'],
a[data-uri='subscription/feed/http://php.developpez.com/rss.php'],
a[data-uri='subscription/feed/http://javascript.developpez.com/index/rss'] {
background-image: url(https://www.google.com/s2/favicons?domain=php.developpez.com&alt=feed);
border-color: #C6C6F8;
}
/* Coding Horror */
a[data-uri='subscription/feed/http://blog.codinghorror.com/rss/'] {
background-image: url(https://www.google.com/s2/favicons?domain=blog.codinghorror.com&alt=feed);
border-color: #000;
}
/* html5Rocks */
a[data-uri='subscription/feed/http://www.html5rocks.com/tutorials/index.xml'],
a[data-uri='subscription/feed/http://updates.html5rocks.com/feeds/atom.xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.html5rocks.com&alt=feed);
border-color: #8096D9;
}
/* Descary */
a[data-uri='subscription/feed/http://feeds.feedburner.com/BenoitDescary'] {
background-image: url(https://www.google.com/s2/favicons?domain=descary.com&alt=feed);
border-color: #1995C9;
}
/* DailyJS */
a[data-uri='subscription/feed/http://feeds.feedburner.com/dailyjs'] {
background-image: url(https://www.google.com/s2/favicons?domain=dailyjs.com&alt=feed);
}
/* Alsacréation */
a[data-uri='subscription/feed/http://www.alsacreations.com/rss/actualites.xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=alsacreations.com&alt=feed);
border-color: #95AE3A;
}
/* Inpixelitrust */
a[data-uri='subscription/feed/http://feedpress.me/inpixelitrust-blog-fr'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.inpixelitrust.fr&alt=feed);
border-color: #7D0903;
}
/* Blog du webdesign */
a[data-uri='subscription/feed/http://feeds.feedburner.com/blogduwebdesign/articles?format=xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=www.blogduwebdesign.com&alt=feed);
border-color: #00A1DB;
}
/* Signal vs Noise */
a[data-uri='subscription/feed/http://feeds.feedburner.com/37signals/beMH'] {
background-image: url(https://www.google.com/s2/favicons?domain=signalvnoise.com&alt=feed);
border-color: #66CC66;
}
/* The Sass way */
a[data-uri='subscription/feed/http://feeds.feedburner.com/thesassway?format=xml'] {
background-image: url(https://www.google.com/s2/favicons?domain=thesassway.com&alt=feed);
border-color: #CB6898;
}
/* Tuts+ */
a[data-uri='subscription/feed/http://psd.tutsplus.com/feed/'],
a[data-uri='subscription/feed/http://feeds.feedburner.com/nettuts'],
a[data-uri='subscription/feed/http://feeds.feedburner.com/webdesigntutsplus'] {
background-image: url(https://www.google.com/s2/favicons?domain=webdesign.tutsplus.com&alt=feed);
border-color: #E37E52;
}
/*Firefox*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/firefoxfacts'],
a[data-uri='subscription/feed/http://hacks.mozilla.org/feed/'],
a[data-uri='subscription/feed/http://blog.mozilla.com/feed/'],
a[data-uri='subscription/feed/http://blog.mozilla.com/webdev/feed/'] {
background-image: url(https://www.google.com/s2/favicons?domain=affiliates.mozilla.org&alt=feed);
border-color: #F89A3F;
}
/*The Changelog*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/thechangelog'] {
background-image: url(https://www.google.com/s2/favicons?domain=thechangelog.com&alt=feed);
border-color: #666;
}
/*The Changelog*/
a[data-uri='subscription/feed/http://feeds.feedburner.com/Bludice'] {
background-image: url(https://www.google.com/s2/favicons?domain=davidwalsh.name&alt=feed);
border-color: #68A;
}
} | 0.430626 | 0.144843 |
margin-top: 1.6rem;
margin-bottom: 3rem;
}
#cart_foot{
padding: 0.3rem;
position: fixed;
bottom: 1.5rem;
border-top: 0.1px solid #9b9b9b;
border-bottom: 0.1px solid #9b9b9b;
background: white;
width: 100%;
height: 1.5rem;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
}
#cart_foot .contain_left{
display: flex;
}
#cart_foot .contain_left .allischoose{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_foot .contain_right #jiesuan{
background: yellow;
color: white;
font-weight: bolder;
width: 2.5rem;
height: 1.1rem;
border: none;
border-radius: 1rem;
}
#cart_foot .contain_right .font_right{
font-size: 0.5rem;
color: red;
font-weight: bolder;
}
#cart_body .container{
width: 100%;
height: 4rem;
background: white;
border-radius: 0.3rem;
margin-bottom: 0.1rem;
}
#cart_body .container .contain_up{
display: flex;
flex-wrap: nowrap;
padding-top: 0.1rem;
justify-content: left;
}
#cart_body .container .cart_contain .ischoose{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_body .container .contain_up .tu{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_body .container .contain_up .name{
font-weight: bolder;
color: lightcoral;
}
#cart_body .container .cart_contain{
display: flex;
align-items: center;
justify-content: space-between;
}
#cart_body .container .cart_contain .img img{
width: 2rem;
height: 2rem;
border-radius: 0.1rem;
margin: 0.2rem;
}
#cart_body .container .cart_contain button{
width: 2rem;
height: 2.5rem;
background: red;
font-size: 0.6rem;
font-weight: bolder;
color: white;
border: none;
}
#cart_body .container .cart_contain .cart_info .biao{
padding: 0.1rem;
font-size: 0.3rem;
font-weight: bolder;
background: yellow;
width: 2rem;
border-radius: 0.1rem;
} | yxtx/static/cart/cart.css | margin-top: 1.6rem;
margin-bottom: 3rem;
}
#cart_foot{
padding: 0.3rem;
position: fixed;
bottom: 1.5rem;
border-top: 0.1px solid #9b9b9b;
border-bottom: 0.1px solid #9b9b9b;
background: white;
width: 100%;
height: 1.5rem;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
}
#cart_foot .contain_left{
display: flex;
}
#cart_foot .contain_left .allischoose{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_foot .contain_right #jiesuan{
background: yellow;
color: white;
font-weight: bolder;
width: 2.5rem;
height: 1.1rem;
border: none;
border-radius: 1rem;
}
#cart_foot .contain_right .font_right{
font-size: 0.5rem;
color: red;
font-weight: bolder;
}
#cart_body .container{
width: 100%;
height: 4rem;
background: white;
border-radius: 0.3rem;
margin-bottom: 0.1rem;
}
#cart_body .container .contain_up{
display: flex;
flex-wrap: nowrap;
padding-top: 0.1rem;
justify-content: left;
}
#cart_body .container .cart_contain .ischoose{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_body .container .contain_up .tu{
width: 0.5rem;
height: 0.5rem;
border: 0.8px solid gray;
border-radius: 0.5rem;
margin: 0.1rem;
}
#cart_body .container .contain_up .name{
font-weight: bolder;
color: lightcoral;
}
#cart_body .container .cart_contain{
display: flex;
align-items: center;
justify-content: space-between;
}
#cart_body .container .cart_contain .img img{
width: 2rem;
height: 2rem;
border-radius: 0.1rem;
margin: 0.2rem;
}
#cart_body .container .cart_contain button{
width: 2rem;
height: 2.5rem;
background: red;
font-size: 0.6rem;
font-weight: bolder;
color: white;
border: none;
}
#cart_body .container .cart_contain .cart_info .biao{
padding: 0.1rem;
font-size: 0.3rem;
font-weight: bolder;
background: yellow;
width: 2rem;
border-radius: 0.1rem;
} | 0.487063 | 0.067731 |
.header{
width: 100%;
min-width: 1100px;
height: 72px;
background: #FFFFFF;
}
.header h1 a{
text-indent: -99999px;
display: block;
width: 166px;
height: 45px;
margin: 14px 0 0 20px;
background: url("../images/logo.png") 0 0 no-repeat;
}
.unlogin{
margin-right: 70px;
}
.unlogin a{
color: #2DA1DE;
margin-left: 34px;
font-size: 12px;
line-height: 72px;
}
/*.back-login{
display: none;
}*/
.nav{
margin-left: 146px;
}
.nav a{
display: inline-block;
padding: 0 18px;
line-height: 69px;
margin-right: 70px;
color: #3C5069;
transition: all 0.2s;
}
.nav a:hover,
.current-nav{
border-bottom: 3px solid #2EA0DE;
}
.enter{
margin-right: 40px;
}
.enter a{
line-height: 72px;
color: #9E9E9E;
font-size: 12px;
margin-left: 54px;
}
.enter a:hover{
color: #2EA0DE;
}
/*~~~~~~~~~~~~~~~~~~~~侧边栏样式~~~~~~~~~~~~~~~*/
.main{
width: 100%;
background: #EFF4F7;
min-height: 900px;
height: 900px;
min-width: 1200px;
padding-top: 1px;
}
.sidebar{
width: 12%;
min-width: 228px;
height: 100%;
background: #395169;
}
.sidebar h2{
line-height: 50px;
margin-top: 20px;
color: #ffffff;
padding-left: 18px;
}
.sidebar a{
display: block;
line-height: 48px;
color: #9AADBC;
padding-left: 18px;
}
.menu li a i{
display: inline-block;
width: 14px;
height: 14px;
vertical-align: middle;
margin-right: 8px;
background: url("../images/tui88-ghost.png") 0 -63px no-repeat;
}
.menu li:nth-of-type(1) a em{
display: inline-block;
width: 18px;
height: 18px;
border-radius: 50%;
color: #ffffff;
background: #BF1F1F;
margin-left: 10px;
line-height: 16px;
text-align: center;
font-size: 12px;
}
.menu li:nth-of-type(2) a em{
display: inline-block;
width: 8px;
height: 5px;
margin-left: 72px;
vertical-align: middle;
background: url("../images/tui88-ghost.png") -64px -71px no-repeat;;
}
.menu li:nth-of-type(2) a i{
background-position: 0 -90px;
}
.menu li:nth-of-type(3) a i{
background-position: 0 -118px;
}
li a:hover,
.current-side-nav .first-nav{
background: #2F4052;
color: #ffffff;
}
.menu-list{
display: none;
}
li:nth-of-type(2).current-side-nav a em{
background-position: -64px -63px;
}
.current-side-nav .menu-list{
display: block;
}
.menu-list a{
padding-left: 42px;
}
li:hover a.first-nav,
li.current-side-nav a.first-nav{
color: #ffffff;
}
li:hover a.first-nav i,
li.current-side-nav a i{
background: url("../images/tui88-ghost.png") -27px -63px no-repeat;
}
li:nth-of-type(2):hover a i,
li:nth-of-type(2).current-side-nav a i{
background-position: -27px -90px;
}
li:nth-of-type(3):hover a i,
li:nth-of-type(3).current-side-nav a i{
background-position: -27px -118px;
}
.menu-list .current-list-nav
{
color: #ffffff;
background: #2F4052;
}
.footer{
width: 100%;
height: 42px;
background: #F3F3F3;
text-align: center;
color: #000000;
line-height: 42px;
border-top: 1px solid #D7DBDE;
}
.bread{
margin-top: 12px;
}
.breadcrumb > li + li::before {
color: #333;
content: "> ";
padding: 0;
}
.breadcrumb{
padding: 0;
background: #EFF4F7;
line-height: 40px;
margin-bottom: 0;
}
.breadcrumb li a,
.breadcrumb li a:hover{
color: #2F414F;
background: #EFF4F7;
}
.breadcrumb .active{
color: #2EA0DE;
} | frontend/web/src/css/site-stage-layout-common.bak.css | .header{
width: 100%;
min-width: 1100px;
height: 72px;
background: #FFFFFF;
}
.header h1 a{
text-indent: -99999px;
display: block;
width: 166px;
height: 45px;
margin: 14px 0 0 20px;
background: url("../images/logo.png") 0 0 no-repeat;
}
.unlogin{
margin-right: 70px;
}
.unlogin a{
color: #2DA1DE;
margin-left: 34px;
font-size: 12px;
line-height: 72px;
}
/*.back-login{
display: none;
}*/
.nav{
margin-left: 146px;
}
.nav a{
display: inline-block;
padding: 0 18px;
line-height: 69px;
margin-right: 70px;
color: #3C5069;
transition: all 0.2s;
}
.nav a:hover,
.current-nav{
border-bottom: 3px solid #2EA0DE;
}
.enter{
margin-right: 40px;
}
.enter a{
line-height: 72px;
color: #9E9E9E;
font-size: 12px;
margin-left: 54px;
}
.enter a:hover{
color: #2EA0DE;
}
/*~~~~~~~~~~~~~~~~~~~~侧边栏样式~~~~~~~~~~~~~~~*/
.main{
width: 100%;
background: #EFF4F7;
min-height: 900px;
height: 900px;
min-width: 1200px;
padding-top: 1px;
}
.sidebar{
width: 12%;
min-width: 228px;
height: 100%;
background: #395169;
}
.sidebar h2{
line-height: 50px;
margin-top: 20px;
color: #ffffff;
padding-left: 18px;
}
.sidebar a{
display: block;
line-height: 48px;
color: #9AADBC;
padding-left: 18px;
}
.menu li a i{
display: inline-block;
width: 14px;
height: 14px;
vertical-align: middle;
margin-right: 8px;
background: url("../images/tui88-ghost.png") 0 -63px no-repeat;
}
.menu li:nth-of-type(1) a em{
display: inline-block;
width: 18px;
height: 18px;
border-radius: 50%;
color: #ffffff;
background: #BF1F1F;
margin-left: 10px;
line-height: 16px;
text-align: center;
font-size: 12px;
}
.menu li:nth-of-type(2) a em{
display: inline-block;
width: 8px;
height: 5px;
margin-left: 72px;
vertical-align: middle;
background: url("../images/tui88-ghost.png") -64px -71px no-repeat;;
}
.menu li:nth-of-type(2) a i{
background-position: 0 -90px;
}
.menu li:nth-of-type(3) a i{
background-position: 0 -118px;
}
li a:hover,
.current-side-nav .first-nav{
background: #2F4052;
color: #ffffff;
}
.menu-list{
display: none;
}
li:nth-of-type(2).current-side-nav a em{
background-position: -64px -63px;
}
.current-side-nav .menu-list{
display: block;
}
.menu-list a{
padding-left: 42px;
}
li:hover a.first-nav,
li.current-side-nav a.first-nav{
color: #ffffff;
}
li:hover a.first-nav i,
li.current-side-nav a i{
background: url("../images/tui88-ghost.png") -27px -63px no-repeat;
}
li:nth-of-type(2):hover a i,
li:nth-of-type(2).current-side-nav a i{
background-position: -27px -90px;
}
li:nth-of-type(3):hover a i,
li:nth-of-type(3).current-side-nav a i{
background-position: -27px -118px;
}
.menu-list .current-list-nav
{
color: #ffffff;
background: #2F4052;
}
.footer{
width: 100%;
height: 42px;
background: #F3F3F3;
text-align: center;
color: #000000;
line-height: 42px;
border-top: 1px solid #D7DBDE;
}
.bread{
margin-top: 12px;
}
.breadcrumb > li + li::before {
color: #333;
content: "> ";
padding: 0;
}
.breadcrumb{
padding: 0;
background: #EFF4F7;
line-height: 40px;
margin-bottom: 0;
}
.breadcrumb li a,
.breadcrumb li a:hover{
color: #2F414F;
background: #EFF4F7;
}
.breadcrumb .active{
color: #2EA0DE;
} | 0.218586 | 0.069668 |
.name {
padding: 0 10px;
color: #ffffff;
background: #D8A32D;
}
h1 a {
color: #000;
}
h1 a:hover {
color: #D8A32D;
text-decoration: none;
}
h2 {
margin-top: 30px;
/*text-align: center;*/
text-transform: uppercase;
}
.red-button {
height: 40px;
text-align: center;
display: inline-block;
background-color: #C00A20;
color: #fff;
text-transform: uppercase;
padding: 11px 25px;
text-decoration: none;
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
-webkit-transition: border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
transition: border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
-o-transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.red-button:hover {
color: #ffffff;
text-decoration: none;
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
}
.red-button:visited,
.red-button:active,
.red-button:focus {
color: #ffffff;
text-decoration: none;
}
/*******
Slider
*******/
.swiper-slide {
overflow: hidden;
height: 300px;
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#inner-slider .swiper-pagination,
#inner-slider .swiper-button-prev,
#inner-slider .swiper-button-next {
display: block;
}
/*******
Inner-content
*******/
.inner-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding-left: 25px;
padding-right: 25px;
}
.left-wrapper,
.column-right {
margin: 10px;
}
.left-wrapper {
width: calc(75.333333% - 20px);
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.column-left {
width: calc(45.1% - 20px);
}
.column-center {
width: calc(54.9% - 10px);
position: relative;
}
.column-center.cropped {
overflow: hidden;
}
.column-center p {
padding-right: 20px;
}
.column-center .button-wrapper {
width: 100%;
}
.column-right {
width: calc(24.666667% - 20px);
}
.column-inner-wrapper {
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
-webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
transition: -webkit-box-shadow 0.2s ease-in-out;
-o-transition: box-shadow 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.column-inner-wrapper:hover {
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
}
/*******
Column Left
*******/
.picture img {
width: 100%;
}
.column-left .social-wrapper {
margin: 20px 0 15px 10px;
}
.schedule,
.tickets,
.social-share p {
padding: 0 15px;
}
.schedule {
margin-top: 20px;
}
.schedule .date {
-webkit-transition: background-color 0.2s ease-in-out;
-o-transition: background-color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out;
}
.schedule:hover .date {
background-color: #D8A32D;
}
.tickets,
.social-share {
font-size: 1.143rem;
}
.inner-info {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 1.429rem; /* 20px */
}
.inner-info > * {
margin: 0;
/*margin-top: 10px;
margin-bottom: 10px;
margin-right: 8px;*/
position: relative;
color: #333;
}
.inner-info > *::after {
position: absolute;
display: block;
content: '';
width: 1px;
height: 100%;
/*background-color: #ccc;*/
top: 0;
right: -5px;
}
.inner-info .date {
background-color: #C00A20;
color: #fff;
padding: 0 3px;
font-family: 'RobotoBold', sans-serif;
margin-right: 5px;
}
.inner-info .date::after {
display: none;
}
.inner-info .time::after {
display: none;
}
.column-left button {
z-index: 2;
overflow: hidden;
position: relative;
width: 100%;
height: 40px;
margin-top: 14px;
background: #C00A20;
color: #fff;
border: none;
outline: 0;
text-transform: uppercase;
font-size: 1.714rem; /*24px*/
font-family: 'RobotoBold', sans-serif;
}
.column-left button:after {
z-index: -1;
position: absolute;
right: 100%;
top: 0;
content: '';
display: block;
width: 100%;
height: 40px;
background-color: #D8A32D;
-webkit-transition: right 0.2s ease-in-out;
-o-transition: right 0.2s ease-in-out;
transition: right 0.2s ease-in-out;
}
.column-left button:hover:after {
right: 0;
}
.social-wrapper .a2a_button_vkontakte {
margin-left: 60px;
}
.social-wrapper a:first-child span.a2a_count {
line-height: 27px;
height: 27px;
width: 100%;
position: absolute;
left: 42px;
}
/*******
Column Center
*******/
.column-center {
font-size: 1.143rem;
}
.column-center p:first-child {
margin-top: 0;
}
.button-wrapper {
text-align: center;
}
.item-hidden {
display: block;
}
.show-more {
display: none;
font-size: 1rem;
}
/*******
Video / Column Right
*******/
.column-right {
text-align: center;
}
.video {
display: block;
}
.video-item {
margin-bottom: 20px;
}
.more-video {
}
/*******
coming events
*******/
.coming-events-wrapper {
padding: 0;
}
#coming-events {
padding-left: 25px;
padding-right: 25px;
}
#content .coming-events-wrapper h1 {
margin: 0.67rem 0;
}
#coming-events .cards .card {
width: calc(25% - 20px);
margin: 10px;
padding-bottom: 40px;
}
#coming-events .cards {
justify-content: center;
margin-top: 20px;
padding: 0;
}
#coming-events .cards .card .card-img {
height: 200px;
}
#coming-events .card .card-header {
position: absolute;
bottom: 0;
background: #ccc;
}
#coming-events .cards .card:hover .card-header {
background-color: #D8A32D;
}
.card-header h3 {
color: #fff;
font-family: 'RobotoBold', sans-serif;
text-transform: uppercase;
text-align: center;
font-size: 22px;
margin: 0;
} | public/css/inner-styles.css | .name {
padding: 0 10px;
color: #ffffff;
background: #D8A32D;
}
h1 a {
color: #000;
}
h1 a:hover {
color: #D8A32D;
text-decoration: none;
}
h2 {
margin-top: 30px;
/*text-align: center;*/
text-transform: uppercase;
}
.red-button {
height: 40px;
text-align: center;
display: inline-block;
background-color: #C00A20;
color: #fff;
text-transform: uppercase;
padding: 11px 25px;
text-decoration: none;
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
-webkit-transition: border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
transition: border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
-o-transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.red-button:hover {
color: #ffffff;
text-decoration: none;
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
}
.red-button:visited,
.red-button:active,
.red-button:focus {
color: #ffffff;
text-decoration: none;
}
/*******
Slider
*******/
.swiper-slide {
overflow: hidden;
height: 300px;
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#inner-slider .swiper-pagination,
#inner-slider .swiper-button-prev,
#inner-slider .swiper-button-next {
display: block;
}
/*******
Inner-content
*******/
.inner-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding-left: 25px;
padding-right: 25px;
}
.left-wrapper,
.column-right {
margin: 10px;
}
.left-wrapper {
width: calc(75.333333% - 20px);
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.column-left {
width: calc(45.1% - 20px);
}
.column-center {
width: calc(54.9% - 10px);
position: relative;
}
.column-center.cropped {
overflow: hidden;
}
.column-center p {
padding-right: 20px;
}
.column-center .button-wrapper {
width: 100%;
}
.column-right {
width: calc(24.666667% - 20px);
}
.column-inner-wrapper {
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
-webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
transition: -webkit-box-shadow 0.2s ease-in-out;
-o-transition: box-shadow 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.column-inner-wrapper:hover {
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.24);
}
/*******
Column Left
*******/
.picture img {
width: 100%;
}
.column-left .social-wrapper {
margin: 20px 0 15px 10px;
}
.schedule,
.tickets,
.social-share p {
padding: 0 15px;
}
.schedule {
margin-top: 20px;
}
.schedule .date {
-webkit-transition: background-color 0.2s ease-in-out;
-o-transition: background-color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out;
}
.schedule:hover .date {
background-color: #D8A32D;
}
.tickets,
.social-share {
font-size: 1.143rem;
}
.inner-info {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 1.429rem; /* 20px */
}
.inner-info > * {
margin: 0;
/*margin-top: 10px;
margin-bottom: 10px;
margin-right: 8px;*/
position: relative;
color: #333;
}
.inner-info > *::after {
position: absolute;
display: block;
content: '';
width: 1px;
height: 100%;
/*background-color: #ccc;*/
top: 0;
right: -5px;
}
.inner-info .date {
background-color: #C00A20;
color: #fff;
padding: 0 3px;
font-family: 'RobotoBold', sans-serif;
margin-right: 5px;
}
.inner-info .date::after {
display: none;
}
.inner-info .time::after {
display: none;
}
.column-left button {
z-index: 2;
overflow: hidden;
position: relative;
width: 100%;
height: 40px;
margin-top: 14px;
background: #C00A20;
color: #fff;
border: none;
outline: 0;
text-transform: uppercase;
font-size: 1.714rem; /*24px*/
font-family: 'RobotoBold', sans-serif;
}
.column-left button:after {
z-index: -1;
position: absolute;
right: 100%;
top: 0;
content: '';
display: block;
width: 100%;
height: 40px;
background-color: #D8A32D;
-webkit-transition: right 0.2s ease-in-out;
-o-transition: right 0.2s ease-in-out;
transition: right 0.2s ease-in-out;
}
.column-left button:hover:after {
right: 0;
}
.social-wrapper .a2a_button_vkontakte {
margin-left: 60px;
}
.social-wrapper a:first-child span.a2a_count {
line-height: 27px;
height: 27px;
width: 100%;
position: absolute;
left: 42px;
}
/*******
Column Center
*******/
.column-center {
font-size: 1.143rem;
}
.column-center p:first-child {
margin-top: 0;
}
.button-wrapper {
text-align: center;
}
.item-hidden {
display: block;
}
.show-more {
display: none;
font-size: 1rem;
}
/*******
Video / Column Right
*******/
.column-right {
text-align: center;
}
.video {
display: block;
}
.video-item {
margin-bottom: 20px;
}
.more-video {
}
/*******
coming events
*******/
.coming-events-wrapper {
padding: 0;
}
#coming-events {
padding-left: 25px;
padding-right: 25px;
}
#content .coming-events-wrapper h1 {
margin: 0.67rem 0;
}
#coming-events .cards .card {
width: calc(25% - 20px);
margin: 10px;
padding-bottom: 40px;
}
#coming-events .cards {
justify-content: center;
margin-top: 20px;
padding: 0;
}
#coming-events .cards .card .card-img {
height: 200px;
}
#coming-events .card .card-header {
position: absolute;
bottom: 0;
background: #ccc;
}
#coming-events .cards .card:hover .card-header {
background-color: #D8A32D;
}
.card-header h3 {
color: #fff;
font-family: 'RobotoBold', sans-serif;
text-transform: uppercase;
text-align: center;
font-size: 22px;
margin: 0;
} | 0.349977 | 0.128826 |
html, body{
font-size: 100%;
background: #fff;
font-family: 'TitilliumWeb-Regular' sans-serif;
}
@font-face{
font-family:'TitilliumWeb-Regular';
src: url(fonts/TitilliumWeb-Regular.ttf)format('truetype');
}
@font-face{
font-family:'TitilliumWeb-Bold';
src: url(fonts/TitilliumWeb-Bold.ttf)format('truetype');
}
body a{
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
p{
margin:0;
}
h1,h2, h3,h4,h5 ,h6{
margin-top: 0px;
margin-bottom: 0px;
}
ul,label{
margin:0;
padding:0;
}
body a:hover{
text-decoration:none;
}
h1.b1,h2.b2,h3.b3{
margin-bottom:25px;
display: block;
}
/*-- Header Part Starts Here --*/
.header {
position: relative;
text-align: center;
background: #20acb9;
padding:1em 0;
}
.logo {
position: absolute;
top: 0;
z-index: 999;
width: 15%;
}
.menu{
float: right;
width: 73%;
}
.top-menu{
float: left;
width: 75%;
}
.top-menu ul li{
display:inline-block;
}
.top-menu ul li a{
display: block;
padding: 0.45em 2em 0 1em;
color: #fff;
}
.top-menu ul li.active a,.top-menu ul li a:hover{
color:#e6515f;
}
.search {
position: relative;
border-radius: 3px;
float: right;
background: #fff;
width: 25%;
}
.search input[type="text"] {
margin: 0px 0;
padding: 6px 33px 6px 15px;
outline: none;
background: none;
border: none;
width: 100%;
position: relative;
font-size: 0.9em;
-webkit-appearance: none;
}
.search input[type="submit"] {
background: url('images/search1.png') no-repeat 0px 1px;
border: none;
cursor: pointer;
width: 24px;
outline: none;
position: absolute;
height: 24px;
top: 3px;
right: 8px;
}
/*--banner--*/
/*-- banner --*/
.banner-bg{
background:url(images/11.jpg) no-repeat 0px 0px;
background-size:cover;
min-height: 716px;
}
.banner2{
background:url(images/33.jpg) no-repeat 0px 0px;
background-size: cover;
}
/*------------------ Slider Part starts Here----------*/
#slider2,
#slider3 {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs {
list-style: none;
padding: 0;
background: rgba(0,0,0,.25);
box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
font-size: 18px;
list-style: none;
margin: 0 auto 50px;
max-width: 540px;
padding: 10px 0;
text-align: center;
width: 100%;
}
.rslides_tabs li {
display: inline;
float: none;
margin-right: 1px;
}
.rslides_tabs a {
width: auto;
line-height: 20px;
padding: 9px 20px;
height: auto;
background: transparent;
display: inline;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255,255,255,.1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li{
position: relative;
display: block;
float: left;
}
.rslides img {
height: auto;
border: 0;
width:100%;
}
.banner-text{
text-align:center;
}
.banner-text_grid {
background: rgba(32, 172, 185, 0.69);
padding: 1.5em 2em;
}
.banner-text_grid img {
margin: 0 auto;
border-radius: 73px;
border: 6px solid #eee;
padding: 1em 1em;
}
.banner-sec{
position:relative;
}
.banner-top{
position: absolute;
bottom: -7em;
left: 0;
width: 100%;
z-index: 999;
}
.banner-text_grid h4 {
font-size: 1.4em;
padding: 0.5em 0 0;
color: #fff;
font-weight: 600;
}
.banner-text_grid p {
font-size: 1em;
padding: 0.5em 0;
color: #fff;
line-height: 1.9em;
}
/*--welcome-Part-starts-Here --*/
.welcome{
padding:11em 0px 0em;
}
.welcome-top{
text-align:center;
}
.welcome-top h1{
font-size:2.5em;
color:#e6515f;
font-family:'TitilliumWeb-Bold';
}
.welcome-top p {
font-size: 1em;
margin: 1% auto 0;
width: 80%;
line-height:1.9em;
color: #999;
}
.welcome-bottom{
margin-top:3%;
}
.welcome-left {
padding-left: 0;
}
.welcome-left h3{
font-size:1.8em;
font-weight:400;
color:#777777;
margin: 0;
}
.welcome-left p{
font-size: 1em;
margin-top: 1.6%;
line-height:1.9em;
color: #999;
}
.welcome-left img{
width:100%;
}
.welcome-one{
margin-top:4%;
}
.col-md-6.welcome-one-left {
padding: 0;
}
.welcome-left a.one-top {
margin-top: 17px ;
display: block;
}
/*---start-content----*/
.content {
padding:5em 0;
}
.content-slogan{
text-align:center;
}
.content-slogan p,.content-slogan a{
color: #7B7C7E;
font-size: 1.7em;
width: 82%;
margin: 0 auto;
padding:0 0 20px 0px;
}
.content-slogan a{
color:#20acb9;
font-size:1em;
font-weight: 500;
}
.slogan-sub{
text-align:center;
}
.slogan-sub p{
color: #7B7C7E;
font-size: 1em;
width: 95%;
margin: 0 auto;
padding:0px 0px 20px 0px;
}
/*---grids----*/
.section {
clear: both;
padding: 0px;
margin: 0px;
}
.group:before,
.group:after {
content:"";
display:table;
}
.group:after {
clear:both;
}
.group {
zoom:1;
}
.images_1_of_3:first-child {
margin-left: 0;
background:rgba(54, 201, 215, 0.9);
}
.images_1_of_3:nth-child(2){
background:rgba(189, 189, 189, 0.99);
}
.images_1_of_3:nth-child(3){
background:rgba(227, 69, 84, 0.83);
}
.images_1_of_3 {
width: 31.8%;
padding: 1.5em 1.5em 2em 1.5em;
text-align: center;
display: block;
float:left;
margin: 1em 0 1em 1.3em;
}
.images_1_of_3 img {
max-width:100%;
display: inline-block;
}
.images_1_of_3 h3{
color: #FFFFFF;
font-size: 1.7em;
padding: 10px 0px 0px 0px;
font-family:'TitilliumWeb-Bold';
}
.images_1_of_3 p {
font-size: 1em;
color: #FFF;
line-height: 1.9em;
padding: 10px 0px 21px 0px;
}
.images_1_of_3 .button{
margin-top:.3em;
line-height:1.9em;
}
.images_1_of_3 .button a{
background: #fff;
padding: 12px 32px;
color: #e6515f;
font-size: 0.875em;
transition: 0.5s ease;
-o-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
text-transform: uppercase;
}
.images_1_of_3 .button a:hover{
background:#7B7C7E;
color:#fff;
}
/*--nature-Part-start-Here--*/
.nature{
background:url(images/nature.jpg) no-repeat 0px -100px;
min-height:400px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
}
.nature-top {
width: 61%;
float: right;
background:rgba(227, 69, 84, 0.59);
text-align: center;
padding: 3% 21px;
margin-top: 13%;
}
.nature-top h3{
color:#fff;
font-size:2.1em;
font-weight:400;
}
.nature-top p{
font-size: 15px;
margin-top: 2.5%;
line-height: 1.9em;
color: #fff;
}
/*--nature-Part-end-Here--*/
/***** Media Quries *****/
@media only screen and (max-width: 1024px) {
.wrap{
width:90%;
}
}
/* GO FULL WIDTH AT LESS THAN 640 PIXELS */
@media only screen and (max-width: 640px) {
.wrap{
width:95%;
}
.grid_1_of_3{
margin: 2% 0 2% 0%;
}
.images_1_of_3 {
width:94%;
padding:3%;
}
}
/* GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
.wrap{
width:95%;
}
.grid_1_of_3{
margin: 2% 0 2% 0%;
}
.images_1_of_3 {
width:92%;
padding:4%;
}
}
/*--welcome-Part-Ends-Here --*/
/*--field-Part-start-Here--*/
.fields{
padding:6em 0px;
}
.fields-left{
text-align:center;
}
.fields-left span{
background:url(images/f-1.png) no-repeat;
width:86px;
height:80px;
display:block;
margin:0 auto;
}
.fields-left span.home{
background-position:-7px 8px;
}
.fields-left span.men{
background-position:-101px -3px;
}
.fields-left span.pen{
background-position:-188px 0px;
}
.fields-left h4 {
font-size: 1.3em;
font-weight: 400;
color: #e34554;
margin: 15px 0 0 0;
}
.fields-left p{
font-size: 1em;
margin-top: 1.6%;
line-height: 1.9em;
color: #999;
}
/*----- footer ----*/
.footer {
border-top:1px solid rgba(51, 51, 51, 0.17);
padding: 2em 0em 1em 0;
text-align:left;
background:#F4F4F4;
}
.footer-grid h4{
color: #e34554;
font-size: 1.3em;
margin-bottom: 0.2em;
}
.footer-grid ul{
margin:0;
padding:0;
}
.footer-grid ul li{
display:block;
}
.footer-grid ul li a{
font-size: 0.95em;
color: #999;
text-decoration: none;
padding: 0.2em 0;
display: inline-block;
}
.footer-grid ul li a:hover{
color:#e34554;
}
.contact-grid ul li{
font-size: 0.87em;
color: #999;
padding: 0.3em 0;
}
.contact-grid ul li span{
width:15px;
height:15px;
display:inline-block;
background:url(images/footer-icons.png) no-repeat 0px 0px;
display:inline-block;
vertical-align:middle;
margin-right:0.5em;
}
.contact-grid ul li a{
font-size:1.1em;
display:inline-block;
}
.contact-grid ul li span.c-icon1{
background-position: 0px -25px;
}
.contact-grid ul li span.c-icon2{
background-position: 0px -49px;
}
ul.social-icons{
margin:1em 0 0 0;
padding:0;
}
ul.social-icons li{
display:inline-block;
}
ul.social-icons li a span{
width:32px;
height:32px;
display:inline-block;
background:url(images/social-icons.png) no-repeat 0px 0px;
margin-right:0.2em;
}
ul.social-icons li a span:hover{
opacity:0.6;
}
ul.social-icons li a span.facebook{
background-position:0px 0px;
}
ul.social-icons li a span.twitter{
background-position: -36px 0px;
}
ul.social-icons li a span.thumb{
background-position: -72px 0px;
}
ul.social-icons li a:hover{
opacity:0.7em;
}
.copy {
text-align:center;
background:#E34554;
padding:1em; }
.copy p {
color: #fff;
font-size:1em;
}
.copy p a {
color: #fff;
}
.copy p a:hover{
text-decoration: underline;
}
/*--about-Part-starts-Here --*/
.about{
padding:6em 0px;
}
.about-top h1,.blog-head h1,.gallery-top h1{
text-align:center;
font-family:'TitilliumWeb-Bold';
font-size:2.3em;
color:#333;
}
.about-top h4 {
font-size: 1.3em;
text-align:center;
font-weight: 400;
color: #e34554;
margin: 18px 0 0 0;
}
p.abt_text{
text-align:center;
}
.about-top p{
font-size: 1em;
margin-top: 1%;
line-height: 1.9em;
color: #999;
}
.about-bottom{
margin-top:2%;
}
.about-left img{
width:100%;
}
.about-left h5 {
font-size: 1.25em;
font-weight: 400;
margin: 18px 0 6px 0;
}
.about-left h5 a{
color: #e34554;
text-decoration:none;
}
.advn-one {
margin-top: 7%;
}
.advantages {
margin-top: 4em;
}
.advantages-left h3{
color:#777;
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
}
.ad-mian {
margin-top: 3%;
}
.ad-left {
width: 10%;
float: left;
}
.ad-left p {
color: #fff;
background: #e34554;
padding: 13px 0px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
text-align: center;
font-size: 20px;
}
.ad-right {
width: 84%;
float: right;
}
.ad-right h4, .advn-two h4 {
color: #e34554;
font-size: 1.2em;
font-weight: 400;
margin: 0;
line-height: 1.4em;
}
.ad-right h4 a{
text-decoration:none;
color: #e34554;
font-size:1em;
}
.ad-right p {
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 8px;
}
.advn-two ul {
padding: 0;
margin-top: 3%;
}
.advn-two ul li {
list-style-image: url(images/marker.png);
margin: 0px 0px 12px 18px;
vertical-align: top;
}
.advn-two p{
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 8px;
}
.advn-two {
margin-top: 7%;
}
.advn-two ul li a {
color: #999;
font-size: 15px;
font-weight: 400;
}
.advn-two ul li a:hover{
color:#e34554;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.team{
padding:6em 0px;
}
.team-bottom{
margin-top:4%;
}
.team-top{
text-align:center;
}
.works{
margin-top:4em;
}
.works h3 {
color:#777;
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
margin-bottom:1.2em;
text-align:center;
}
.grid_4 {
width: 22%;
float: left;
margin: 0 3% 0% 0;
}
.text1 p {
color: #9A9598;
line-height: 1.9em;
font-size: 1em;
}
.text1 img {
width: 100%;
}
.text1 h4{
font-size: 1.2em;
color:#E34554;
margin:0.5em 0;
}
/*--about-Part-Ends-Here --*/
/*--blog-starts--*/
.blog {
padding: 6em 0;
}
span.glyphicon {
color: #e34554;
}
.pager li > a, .pager li > span {
border-radius: 15px;
color: #353a3d;
}
.blg_sec{
margin-top:1.5em;
}
.blog-main p {
color: #999;
font-size: 15px;
margin-top: 5px;
}
.blog-head{
text-align:center;
}
.blog-top {
margin-top: 3%;
}
.blog-main p a{
color:#e34554;
}
.blog-main p a:hover{
text-decoration:underline;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
color:#999;
}
a.bg {
color: #e34554;
font-size:1.3em;
font-weight: 400;
text-decoration: none;
}
.blog-one{
margin-top:1.5em;
}
.blog-one img{
width:100%;
}
.col-md-5.blog-one-left {
padding-left: 0;
}
.blog-comments {
margin-top: 2.5em;
border-top: 1px solid rgba(153, 153, 153, 0.2);
padding: 1.3em 0px;
}
.blog-comments ul {
padding: 0;
}
.b-btn {
margin-top: 26px;
}
.blog-comments ul li{
list-style:none;
display:inline-block;
margin-right:15px;
}
.b-btn a{
color: #fff;
padding: 5px 15px;
border-radius: 0.3em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
-o-border-radius: 0.3em;
outline: none;
font-size: 13px;
background: #e34554;
}
.b-btn a:hover{
background:#2a2017;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.blog-main-one {
border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.blog-right h3,.blog-right h2{
color: #e34554;
font-size: 1.3em;
font-weight: 400;
}
.blog-right ul{
padding:0;
margin-top:1.5em;
}
.blog-right ul li{
list-style:none;
margin-bottom:8px;
}
.blog-right ul li a {
color: #999;
font-size: 1em;
}
.blog-right ul li a:hover{
color: #e34554;
margin-left: 10px;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.posts{
margin-top:2em;
}
.categories:nth-child(1){
margin-top:0;
}
.categories{
margin-top:2em;
}
p.sngl {
margin-top: 1.5em;
}
.blog-one p {
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 1em;
}
.blog-one-left p{
margin-top:0;
}
.pagination {
margin: 4% 0 0 0;
}
.blog-comments ul li a, .blog-comments ul li p {
color: #999;
font-size: 0.9em;
display: inline-block;
vertical-align: top;
margin-left: 10px;
}
.blog-comments ul li a:hover{
color: #e34554;
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.related{
margin-top:3em;
}
.contact-form {
margin-top: 1.7em;
}
.related-left{
text-align:center;
padding-left: 0;
}
.related-left h4 {
color: #e34554;
font-size: 1.3em;
margin: 13px 0 0 0;
}
.contact-form form input[type="text"]{
padding: 10px 15px;
width: 100%;
color: #333;
font-size: 1em;
border: 1px solid #E3E3E3;
outline: none;
display: block;
margin: 10px 0;
}
.contact-form form textarea {
padding: 10px 15px;
width: 100%;
color: #333;
font-size: 1em;
border: 1px solid #E3E3E3;
outline: none;
display: block;
margin: 10px 0;
}
.contact-form form textarea {
height: 200px;
resize: none;
}
.contact-form form input[type="submit"]:hover{
background: #2a2017;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.contact-form form input[type="submit"] {
color: #fff;
background: #e34554;
padding: 0.7em 1.7em;
font-size: 1em;
margin-top: 1em;
border: none;
outline: none;
border-radius: 0.3em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
-o-border-radius: 0.3em;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-heading a,.media-heading{
color:#e34554;
}
.media-body p {
font-size: 15px;
margin-top: 10px;
line-height: 1.9em;
color: #999;
}
.comments-bottom {
margin-top: 3%;
}
.media {
margin-top: 24px;
}
.comments {
margin-top: 5%;
}
.related-bottom {
margin-top: 3%;
}
.related-left img {
width: 100%;
}
.reply{
margin-top: 5%;
}
ul.pager {
margin: 0;
}
/*--blog-end--*/
/*--pages-start--*/
.pages {
padding: 7em 0px;
}
h3.ghj {
color: #000;
font-size: 2em !important;
margin: 0 0 1em;
}
.headdings, .Buttons, .progress-bars, .alerts, .bread-crumbs, .pagenatin, .appearance, .distracted {
padding: 2em 0;
}
.breadcrumb {
margin-bottom: 3em !important;
}
.table {
margin-bottom: 0;
}
.b4,.b5,.b6 {
margin-top: 15px !important;
margin-bottom: 15px !important;
}
.bs-example h1, .bs-example hh2, .bs-example h3, .bs-example h4, .bs-example h5, .bs-example h6 {
margin: 0 0 10px;
}
/*--pages-end--*/
/*--gallery-Part-Ends-Here --*/
.gallery{
padding:6em 0px;
}
.gallery-top{
text-align:center;
}
.gallery-bottom{
margin-top:5%;
}
.gallery-left img{
width:100%;
}
.gallery-left{
position: relative;
}
.gallery-1{
margin-top:25px;
}
.gallery-1:nth-child(1){
margin-top:0;
}
/*--gallery-Part-Ends-Here --*/
/*--contact-Part-starts-Here --*/
.contact{
padding:6em 0px;
}
.contact-right iframe{
border:none;
width:100%;
height:350px;
}
.contact-left h1,.contact-left h2{
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
color:#333;
}
.contact-left p{
font-size: 1em;
margin-top: 1.6%;
line-height: 1.9em;
color: #999;
}
.contact-right input[type="text"]:nth-child(1){
margin-right:11px;
}
.contact-right input[type="text"] {
width: 49%;
margin: 0px;
color: #BCBCBC;
background: none;
padding: 15px 10px;
outline: none;
border: 1px solid #BCBCBC;
}
.contact-right textarea {
width: 100%;
color: #BCBCBC;
resize: none;
background: none;
height: 12.7em;
padding: 15px;
outline: none;
border: 1px solid #BCBCBC;
margin-top: 1.4%;
}
.submit-btn input[type=submit] {
color: #ffffff;
padding: 10px 50px;
font-size: 20px;
cursor: pointer;
font-weight: 500;
margin: 20px 0 0 0px;
border: none;
background: #e34554;
outline: none;
}
.submit-btn input[type=submit]:hover {
background: #2a2017;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-ms-transition: 0.5s all;
-o-transition: 0.5s all;
}
.contact-bottom{
margin-top:5%;
}
/*--contact-Part-Ends-Here --*/
/*--media-quaries-starts-here--*/
@media (max-width:1440px){
.top-menu {
width: 72%;
}
}
@media (max-width:1366px){
.gallery {
padding: 5em 0px;
}
.welcome {
padding: 10em 0px 5em;
}
.offer {
padding: 0em 0px 5em 0px;
}
.fields {
padding: 5em 0px;
}
.contact, .about, .team, .blog{
padding: 5em 0px;
}
.pages {
padding: 6em 0px;
}
}
@media (max-width:1280px){
.menu {
width: 75%;
}
.search {
width: 29%;
}
.pages {
padding: 5em 0px;
}
.comments {
margin-top: 4%;
}
.related {
margin-top: 4%;
}
.related-bottom {
margin-top: 2%;
}
.contact-bottom {
margin-top: 4%;
}
.blog-comments {
padding: 1.1em 0px;
margin-top: 2em;
}
.blog-top {
margin-top: 2%;
}
.gallery-bottom {
margin-top: 4%;
}
.advn-one,.advn-two {
margin-top: 5.5%;
}
.team-bottom {
margin-top: 2%;
}
.welcome-bottom {
margin-top: 2%;
}
.offer-bottom {
margin-top: 2%;
}
.nature {
min-height: 338px;
}
.content {
padding: 0em 0 5em;
}
.nature-top h3 {
font-size: 2em;
}
.nature-top {
width: 62%;
padding: 4.8% 21px;
margin-top: 5%;
}
.reply {
margin-top: 4%;
}
.top-menu {
width: 70%;
}
.top-menu ul li a {
padding: 0.45em 1em 0 1em;
}
}
@media (max-width:1024px){
.banner-bg {
background: url(images/11.jpg) no-repeat 0px 0px;
min-height: 544px;
background-size:cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat 0px 0px;
min-height: 544px;
background-size:cover;
}
.top-menu ul li a {
padding: 1em 1em 1em 1em;
}
.pages {
padding: 4em 0px;
}
.related-left h4 {
font-size: 1.25em;
margin: 10px 0 0 0;
}
.contact, .about, .team, .blog {
padding: 4em 0px;
}
.contact-right iframe {
height: 320px;
}
.menu {
width: 77%;
}
.search {
margin-top: 0.6em;
}
.submit-btn input[type=submit] {
padding: 9px 47px;
font-size: 18px;
}
.gallery {
padding: 4em 0px;
}
.gallery-bottom {
margin-top: 3%;
}
#filters li span {
font-size: 14px;
}
.header {
padding:0;
}
.logo a img {
width: 80%;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 34%;
}
.banner {
min-height: 530px;
}
.banner-text_grid h4 {
font-size: 1.2em;
}
.banner-text_grid p {
line-height: 1.6em;
font-size:0.95em;
}
.welcome-top h1 {
font-size: 2.5em;
}
.welcome-top p {
margin: 5px auto 0;
width: 95%;
line-height: 1.6em;
font-size:.95em;
}
.welcome-left p {
font-size: 0.95em;
line-height: 1.6em;
}
.welcome-left h3 {
font-size: 1.55em;
}
.heading h3,.heading h2,.heading h1{
font-size: 2em;
}
.content-slogan p{
font-size: 1.5em;
width: 100%;
line-height: 1.4em;
}
.content-slogan a {
font-size:1.15em;
}
.slogan-sub p {
font-size: 0.9em;
width: 100%;
line-height:1.7em;
}
.images_1_of_3 p {
font-size: 0.95em;
line-height: 1.6em;
padding: 10px 0px 13px 0px
}
.images_1_of_3 .button a {
padding: 8px 32px;
font-size: 0.8em;
}
.nature-top h3 {
font-size: 1.75em;
}
.offer-left h4 {
font-size: 1.3em;
}
.nature-top {
margin-top: 5em;
padding: 4% 18px;
}
.welcome-bottom {
margin-top: 3em;
}
.nature {
min-height: 320px;
background: url(images/nature.jpg) no-repeat 0px -110px;
}
.nature-top p {
font-size: 0.95em;
line-height: 1.7em;
}
.fields-left h4 {
font-size: 1.3em;
}
.fields {
padding: 4em 0px;
}
.fields-left p {
font-size: 0.95em;
line-height: 1.7em;
}
.welcome-left a.one-top {
margin-top: 24px;
}
.offer {
padding: 0em 0px 4em 0px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 8px;
}
.about-top h4 {
font-size: 1.35em;
margin-top: 9px;
}
.ad-left p {
padding: 8px 0px;
}
.ch-grid li {
margin: 0 20px !important;
}
.team-bottom {
margin-top: 3%;
}
.col-md-7.blog-one-left {
padding: 0;
}
.blog-one {
margin-top: 1.2em;
}
a.bg {
font-size: 1.3em;
}
.blog-right h3,.blog-right h2{
font-size: 1.3em;
}
.blog-right ul {
margin-top: 1em;
}
.blog-one p {
font-size: 0.95em;
line-height: 1.7em;
}
.b-btn a {
padding: 4px 9px;
font-size: 12px;
}
.b-btn {
margin-top: 10px;
}
.blog-right ul li a {
font-size: 14px;
}
.blog-comments ul li a, .blog-comments ul li p {
font-size: 14px;
margin-left: 7px;
}
.blog-comments {
padding: 1em 0px;
}
.blog-main p {
font-size: 14px;
margin-top: 2px;
}
.related-left {
padding: 0 7px;
}
.about-top p {
font-size: 0.95em;
line-height: 1.7em;
}
.ad-right p {
font-size: 0.95em;
line-height: 1.7em;
}
.advn-two p {
font-size: 0.95em;
line-height: 1.7em;
}
.text1 p {
line-height: 1.7em;
font-size: 0.95em;
}
.advn-two ul li {
margin: 0px 0px 18px 18px;
}
}
@media (max-width:991px){
.banner-text {
float: left;
width: 33.3%;
}
.logo {
width: 18%;
}
.logo a img {
width: 100%;
}
.top-menu ul li a {
padding: 1em 0.7em;
}
.menu {
width: 79%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -129px 0px;
min-height: 544px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 544px;
background-size:cover;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 43%;
}
.welcome-one-left {
padding: 0;
float: left;
width: 50%;
}
.welcome-one-right {
float: left;
width: 50%;
}
.welcome-left {
padding-left: 0;
margin-top: 1em;
width: 50%;
float: left;
}
.images_1_of_3 {
width: 31.6%;
}
.about-left {
float: left;
width: 33.3%;
}
.ad-left {
width: 6%;
}
.ad-right {
width: 90%;
}
.advantages-left.heading {
margin-top: 2em;
}
.blog-left {
float: left;
width: 70%;
}
.blog-right {
width: 30%;
float: left;
}
.gallery-left {
float: left;
width: 50%;
margin-bottom: 1.5em;
}
.top-menu {
width: 71%;
}
.fields-left {
float: left;
width: 33.33%;
}
.footer-grid {
float: left;
width: 50%;
}
.footer-grid:nth-child(3) {
width: 51%;
margin-top:2em;
}
.footer-grid:nth-child(4) {
width: 49%;
margin-top: 2em;
padding-left: 0.5em;
}
.images_1_of_3 {
padding: 1.5em 1em 2em 1.5em;
}
.images_1_of_3:nth-child(3) {
width: 31.3%;
}
}
@media (max-width:900px){
.banner-text {
float: left;
width: 33.3%;
}
.logo {
width: 18%;
}
.logo a img {
width: 100%;
}
.top-menu ul li a {
padding: 1em 0.7em;
}
.menu {
width: 79%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -129px 0px;
min-height: 544px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 544px;
background-size:cover;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 43%;
}
.welcome-one-left {
padding: 0;
float: left;
width: 50%;
}
.welcome-one-right {
float: left;
width: 50%;
}
.welcome-left {
padding-left: 0;
margin-top: 1em;
width: 50%;
float: left;
}
.images_1_of_3 {
width: 31.6%;
}
.about-left {
float: left;
width: 33.3%;
}
.ad-left {
width: 6%;
}
.ad-right {
width: 90%;
}
.advantages-left.heading {
margin-top: 2em;
}
.blog-left {
float: left;
width: 70%;
}
.blog-right {
width: 30%;
float: left;
}
.gallery-left {
float: left;
width: 50%;
margin-bottom: 1.5em;
}
.top-menu {
width: 71%;
}
}
@media (max-width:800px){
span.menu:before {
content: url(images/nav-icon.png);
cursor: pointer;
height:32px;
}
ul.navig {
width: 11%;
float: right;
margin:0;
}
ul.navig{
display:none;
}
ul.navig li {
font-size: 12px;
display:inline-block;
width: 100%;
margin:0;
}
ul.navig li a {
padding: 7px;
font-size: 14px;
width: 100%;
font-weight:600;
display:block;
color: #fff;
}
ul.navig li a:hover{
color:#e34554;
}
span.menu{
display:block;
float:right;
margin: 1px 0px 0 0;
}
ul.navig {
margin: 0;
z-index: 2222;
position: absolute;
width: 96%;
text-align: center;
top: 100%;
left: 2%;
padding: 10px 0px;
background:#20ACB9;
}
.navigation {
height: 20px;
padding: 13px 0px 0em;
margin-bottom: 0em;
}
ul.navig li:nth-of-type(4) {
margin: 0 0px 0 0em;
}
ul.navig li:nth-of-type(3) {
margin: 0 0em 0 0px;
}
.logo a img {
width: 100%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -148px 0px;
min-height: 490px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 490px;
background-size:cover;
}
.banner-top {
bottom: -8em;
width: 100%;
}
.banner-text {
float: left;
width: 33.3%;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 52%;
}
.menu {
width: 59%;
}
.search {
width: 65%;
margin: 0.4em;
}
.navigation {
padding: 10px 0px 0em;
}
.images_1_of_3 {
width: 31.45%;
}
.top-menu {
width: 15%;
}
}
@media (max-width:768px){
span.menu:before {
content: url(images/nav-icon.png);
cursor: pointer;
height:32px;
}
ul.navig {
width: 11%;
float: right;
margin:0;
}
ul.navig{
display:none;
}
ul.navig li {
font-size: 12px;
display:inline-block;
width: 100%;
margin:0;
}
ul.navig li a {
padding: 7px;
font-size: 14px;
width: 100%;
font-weight:600;
display:block;
color: #fff;
}
ul.navig li a:hover{
color:#e34554;
}
span.menu{
display:block;
float:right;
margin: 1px 0px 0 0;
}
ul.navig {
margin: 0;
z-index: 2222;
position: absolute;
width: 96%;
text-align: center;
top: 100%;
left: 2%;
padding: 10px 0px;
background:#20ACB9;
}
.navigation {
height: 20px;
padding: 13px 0px 0em;
margin-bottom: 0em;
}
ul.navig li:nth-of-type(4) {
margin: 0 0px 0 0em;
}
ul.navig li:nth-of-type(3) {
margin: 0 0em 0 0px;
}
.logo a img {
width: 100%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -148px 0px;
min-height: 490px;
background-size:cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 490px;
background-size:cover;
}
.banner-text_grid img {
width: 49%;
}
.banner-text {
float: left;
width: 33.3%;
}
.banner-top {
bottom: -8em;
width: 100%;
}
.pages {
padding: 3em 0px;
}
.related-left {
width: 25%;
float: left;
}
.menu {
width: 53%;
}
.search {
margin: 0.6em 0;
}
.search {
width: 60%;
}
.contact-form {
margin-top: 1.2em;
}
.contact-form form input[type="submit"] {
padding: 10px 22px;
font-size: 13px;
margin-top: 6px;
}
.contact-form form input[type="text"] {
padding: 8px 15px;
font-size: 14px;
}
.contact-form form textarea {
height: 155px;
font-size: 14px;
}
.related-left h4 {
font-size: 1.1em;
}
.media-body p {
font-size: 0.9em;
margin-top: 4px;
line-height: 1.7em;
}
.col-md-5.blog-one-left {
width: 43%;
float: left;
}
.col-md-7.blog-one-left {
width: 57%;
float: right;
}
.blog-one p {
font-size: 0.9em;
line-height: 1.67em;
}
.b-btn {
margin-top: 10px;
}
.blog-comments {
padding: 10px 0px;
margin-top: 1.2em;
}
a.bg {
font-size: 1.2em;
}
.blog-right h3,.blog-right h2{
font-size: 1.2em;
}
.col-md-3.blog-right {
margin-top: 25px;
}
.blog-right ul {
margin-top: 10px;
}
.blog-right ul li {
margin-bottom: 5px;
}
.categories {
margin-top: 1.3em;
}
.pager li > a, .pager li > span {
padding: 4px 21px;
font-size: 14px;
}
.ch-grid li {
margin: 0 8px !important;
}
.pagination {
margin: 3% 0 0 0;
}
.about-left {
width: 33.3%;
float: left;
}
.ad-left {
width: 8.7%;
}
.ad-left p {
padding: 15px 0px;
}
.advn-one, .advn-two {
margin-top: 3.5%;
}
.advantages-left:nth-child(2){
margin-top: 3.5%;
}
.ad-right {
width: 87%;
}
.about-top h4 {
font-size: 1.2em;
}
.contact-top,.contact-bottom{
text-align: center;
}
.contact-left p {
margin-top: 1%;
font-size: 0.9em;
}
.contact-right {
margin-top: 13px;
}
.contact-right iframe {
height: 250px;
}
.contact-right input[type="text"] {
padding: 12px 10px;
font-size: 13px;
}
.contact-right textarea {
height: 11.7em;
font-size: 13px;
padding: 11px;
}
.submit-btn input[type=submit] {
padding: 9px 40px;
font-size: 16px;
margin: 10px 0 0 0px;
}
.contact, .about, .team, .blog,.gallery{
padding: 3em 0px;
}
.logo {
left: 2%;
}
.banner-text_grid h4 {
font-size: 1.1em;
}
.banner-text_grid p {
line-height: 1.6em;
font-size: 0.9em;
}
.welcome-top h1 {
font-size: 2.1em;
}
.welcome-one-left {
width: 50%;
float: left;
}
.welcome-one-right {
width: 50%;
float: right;
}
.images_1_of_3 {
width: 31%;
}
.welcome-left h3 {
font-size: 1.45em;
}
.welcome-left p {
font-size: 0.9em;
margin-top: 1.1%;
}
.welcome-top p {
width: 97%;
font-size: 0.9em;
}
.welcome-left a.one-top {
margin-top: 9px;
}
.images_1_of_3 p {
font-size: 0.9em;
}
.welcome-left:nth-child(2){
margin-top:3%;
}
.welcome-one {
margin-top: 2%;
}
.offer-left {
width: 25%;
float: left;
padding: 0 5px;
}
.content {
padding: 0em 0 3em;
}
.heading h3,.heading h2,.heading h1{
font-size: 1.5em;
}
.welcome {
padding: 8em 0px 3em;
}
.content-slogan p {
font-size: 1.4em;
}
.content-slogan a {
font-size: 1em;
}
.nature-top h3 {
font-size: 1.3em;
}
.nature-top {
margin-top: 8em;
width: 76%;
}
.nature-top p {
font-size: 0.9em;
margin-top: 2.3%;
}
.nature {
min-height: 310px;
}
.fields {
padding: 3em 0px;
}
.fields-left {
width: 33.3%;
float: left;
}
.fields-left h4 {
font-size: 1.2em;
}
.fields-left p {
font-size: 0.9em;
margin-top: 1.5%;
}
.fields-left span {
width: 65px;
height: 65px;
background-size: 300%;
}
.fields-left span.men {
background-position: -65px 0px;
}
.fields-left span.pen {
background-position: -130px 0px;
}
.offer-left h6 {
font-size: 15px;
left: 5px;
padding: 3px 30px 7px 15px;
background-size: 92%;
}
.works {
margin-top: 2em;
}
.footer-grid {
margin-bottom: 2em;
}
.about-top p {
font-size:0.9em;
}
.ad-right p {
font-size: 0.9em;
margin-top: 2px;
}
.advn-two p {
font-size: 0.9em;
margin-top: 4px;
}
.advn-two ul li a {
font-size: 0.9em;
}
.advn-two ul {
margin-top: 1.5%;
}
.gallery-left {
width: 25%;
float: left;
padding: 0 5px;
}
.col-md-6:nth-child(3){
margin-top: 4%;
}
.about-left h5 {
font-size: 1.2em;
}
.text1 h4 {
line-height: 1.3em;
}
.text1 p {
font-size: 0.9em;
}
}
@media (max-width:640px){
.logo a img {
width: 60%;
}
.logo {
left: -5%;
width: 45%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -250x 0px;
min-height: 438px;
background-size:cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -100px 0px;
min-height: 438px;
background-size:cover;
}
.banner-text_grid img {
width: 17%;
}
.banner-text_grid h4 {
font-size: 0.95em;
}
.label {
font-size: 59%;
}
.breadcrumb {
margin-bottom: 2em !important;
}
.welcome-one-left {
width: 48%;
float: left;
}
.welcome-one-right {
width: 52%;
float: right;
}
.headdings, .Buttons, .progress-bars, .alerts, .bread-crumbs, .pagenatin, .appearance, .distracted {
padding: 1em 0;
}
h3.ghj {
font-size: 1.7em !important;
margin: 0 0 12px;
}
.gallery-bottom {
margin-top: 4%;
}
.related-left h4 {
font-size: 1em;
}
a.bg {
font-size: 1.1em;
}
.blog-main p {
font-size: 0.9em;
}
.blog-one p {
font-size: 0.85em;
}
.blog-comments ul li a, .blog-comments ul li p {
font-size: 13px;
margin-left: 5px;
}
.b-btn a {
padding: 2px 6px;
font-size: 11px;
}
.b-btn {
margin-top: 4px;
}
.col-md-5.blog-one-left {
width: 47%;
}
.col-md-7.blog-one-left {
width: 53%;
}
span.glyphicon {
font-size: 15px;
}
.ch-grid li {
width: 215px !important;
height: 215px !important;
margin: 10px 40px 10px 41px !important;
}
.about-top h4 {
font-size: 1.1em;
}
.about-left h5 {
font-size: 1.1em;
}
.about-left {
padding: 0 5px;
}
.ad-left p {
padding: 10px 0px;
}
.ad-right h4, .advn-two h4 {
font-size: 1.1em;
}
.about-left h5 {
font-size: 1.1em;
margin: 10px 0 3px 0;
}
.gallery-bottom {
margin-top: 6%;
}
.welcome-top h1 {
font-size: 1.8em;
}
.welcome {
padding: 2em 0 3em;
}
.welcome-left h3 {
font-size: 1.3em;
}
.welcome-left a.one-top {
margin-top: 16px;
}
.heading h3,.heading h2,.heading h1 {
font-size: 1.8em;
}
.welcome-left:nth-child(2) {
margin-top: 2.2%;
}
.nature-top h3 {
font-size: 1.25em;
}
.nature-top {
width: 43%;
padding: 6% 21px;
margin-top: 2.5%;
}
.nature {
min-height: 285px;
}
.fields-left {
padding: 0 5px;
}
.fields {
padding: 2em 0px;
}
.fields-left h4 {
margin-top: 10px;
}
.fields-left span {
width: 60px;
height: 60px;
}
.fields-left span.men {
background-position: -60px 0px;
}
.fields-left span.pen {
background-position: -120px 0px;
}
.contact-left p {
font-size: 0.85em;
margin-top: 3px;
}
.contact-right iframe {
height: 220px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 7px;
}
.content-slogan p {
font-size: 1.2em;
}
.slogan-sub p {
line-height: 1.6em;
}
.images_1_of_3 {
width: 100%;
margin-left: 0;
}
.welcome-left:nth-child(2),.welcome-left{
padding-right:0;
}
.nature-top {
width: 93%;
padding: 6% 21px;
margin-top: 6em;
}
.nature-top p {
line-height: 1.5em;
}
.grid_4 {
width: 47%;
}
.heading h3, .heading h2, .heading h1 {
font-size: 1.4em;
}
.text1 h4 {
line-height: 1.1em;
}
.grid_4.span66 {
margin-top: 2em;
}
.fields-left h4 {
font-size: 1em;
}
.images_1_of_3:nth-child(3) {
width: 100%;
}
.banner-sec {
position: inherit;
}
.banner-top {
margin: 2em 0px 0px;
position: inherit;
}
.banner-text {
float: none;
width: 100%;
margin-bottom: 1em;
}
}
@media (max-width:480px){
.label {
font-size: 51%;
}
.welcome-left {
width: 100%;
}
.gallery-1 {
margin-top: 15px;
}
.gallery-left {
width: 50%;
padding: 0 8px;
}
.gallery-left:nth-child(1),.gallery-left:nth-child(2){
margin-bottom:15px;
}
.gallery {
padding: 2em 0px;
}
.gallery-bottom {
margin-top: 3%;
}
.media-body p {
font-size: 13px;
margin-top: 1px;
}
.related-left {
width: 50%;
}
.related-left:nth-child(1),.related-left:nth-child(2){
margin-bottom:10px;
}
.related-bottom {
margin-top: 3%;
}
.media {
margin-top: 10px;
}
.search input[type="text"] {
padding: 4px 33px 4px 15px;
}
.contact-form form input[type="text"] {
padding: 6px 15px;
font-size: 13px;
margin: 8px 0;
}
.contact-form form textarea {
height: 140px;
font-size: 13px;
}
.contact-form form input[type="submit"] {
padding: 5px 18px;
margin-top: 1px;
}
.media-heading a, .media-heading {
font-size: 16px;
}
.about-top h4 {
font-size: 1em;
margin: 10px 0;
line-height: 1.3em;
}
.about-bottom {
margin-top:1.5em;
}
.advantages {
margin-top: 2em;
}
.advantages-left.heading {
padding: 0;
}
.about-top p {
font-size: 0.85em;
margin-top: 1px;
}
.about-left h5 {
font-size: 1em;
}
.ad-left p {
padding: 7px 0px;
font-size: 16px;
}
.ad-right h4, .advn-two h4 {
font-size: 1.1em;
}
.ad-right p {
font-size: 0.85em;
}
.advn-two p {
font-size: 0.85em;
margin-top: 2px;
}
.advn-two ul li a {
font-size: 13px;
}
.advn-two ul li {
margin: 0px 0px 9px 18px;
}
.ch-info h3 {
padding: 65px 0 0 0 !important;
height: 108px !important;
}
.contact, .about, .team, .blog {
padding: 2em 0px;
}
.contact-right iframe {
height: 180px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 4px;
}
.contact-right input[type="text"] {
padding: 9px 10px;
}
.contact-right textarea {
height: 10em;
}
.submit-btn input[type=submit] {
padding: 8px 30px;
font-size: 14px;
margin: 7px 0 0 0px;
}
.fields-left {
width: 100%;
float: none;
}
.fields-left:nth-child(1),.fields-left:nth-child(2){
margin-bottom:15px;
}
.fields-left h4 {
font-size: 1.07em;
margin-top: 7px;
}
.fields-left p {
font-size: 0.85em;
margin-top: 3px;
}
.fields-left span {
width: 50px;
height: 50px;
}
.fields-left span.men {
background-position: -50px 0px;
}
.fields-left span.pen {
background-position: -100px 0px;
}
.menu {
width: 57%;
}
.logo {
left: -2%;
}
.logo a img {
width: 75%;
}
.search {
width: 74%;
}
span.menu {
margin: 0px 0px 0 0;
}
.callbacks_tabs a:after {
height: 9px;
width: 9px;
}
.welcome-top h1 {
font-size: 1.4em;
}
.welcome-top p {
width: 100%;
font-size: 0.85em;
margin: 4px auto 0;
}
.welcome-left h3 {
font-size: 1.07em;
}
.welcome-left p {
font-size: 0.85em;
margin-top: 7px;
}
.welcome-left:nth-child(2) {
margin-top: 3.2%;
}
.heading h3,.heading h2,.heading h1{
font-size: 1.4em;
}
.nature-top h3 {
font-size: 1.1em;
}
.nature-top p {
font-size: 0.85em;
}
.nature-top {
width: 100%;
}
.welcome-left a.one-top{
margin-top: 25px;
}
.nature {
min-height: 255px;
}
#filters li span {
font-size: 11px;
padding: 6px 15px;
}
.col-md-5.blog-one-left,.col-md-7.blog-one-left{
width: 100%;
float: none;
}
.col-md-7.blog-one-left{
margin-top:3%;
}
.blog-right ul li a {
font-size: 0.85em;
}
.blog-right ul li a {
font-size: 0.85em;
}
.blog-right ul {
margin-top: 6px;
}
a.bg {
font-size: 1em;
}
.blog-right h3,.blog-right h2{
font-size: 1.1em;
}
.flex-control-paging li a {
width: 9px;
height: 9px;
}
.pages {
padding: 2em 0px;
}
.banner-text {
width: 100%;
margin-bottom: 2em;
}
.banner-top {
bottom: -16em;
width: 100%;
}
.banner-text_grid img {
width: 21%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -159px -2px;
min-height: 360px;
background-size: cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -80px -2px;
min-height: 360px;
background-size:cover;
}
.banner-top {
bottom: -2em;
width: 100%;
position: inherit;
}
.banner-text_grid {
padding: 1em 2em;
}
.welcome {
padding: 2em 0px 3em;
}
.content-slogan p {
font-size: 1.1em;
}
.slogan-sub p {
font-size: 0.85em;
}
.images_1_of_3 h3 {
font-size: 1.3em;
}
.blog-left,.blog-right {
padding: 0;
}
.footer-grid ul li a {
font-size: 0.85em;
}
.welcome-one-right {
width: 48%;
}
}
@media (max-width:320px){
.logo {
width: 40%;
}
.logo a img {
width: 100%;
}
.menu {
width: 54%;
}
.search {
width: 60%;
}
.search {
margin: 0.5em 0;
}
.search input[type="text"] {
padding: 3px 27px 3px 6px;
font-size: 0.8em;
}
.search input[type="submit"] {
top: 2px;
right: 2px;
background-size: 83%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -127px -2px;
min-height: 250px;
background-size: cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -40px -2px;
min-height: 250px;
background-size: cover;
}
.banner-text_grid img {
width: 40%;
}
.banner-left {
padding: 0 3px;
}
a.bg {
font-size: 0.9em;
}
.blog-one {
margin-top: 10px;
}
.blog-left,.blog-right {
padding: 0;
}
.blog-comments ul li {
margin-right: 3px;
}
span.glyphicon {
font-size: 12px;
}
.blog-right h3,.blog-right h2 {
font-size: 1.05em;
}
.col-md-3.blog-right {
margin-top: 20px;
}
.blog-comments {
padding: 7px 0px;
margin-top: 1em;
}
.pager li > a, .pager li > span {
padding: 2px 15px;
font-size: 12px;
}
.logo {
left: 4%;
text-align: left;
}
#filters li span {
font-size: 9px;
padding: 4px 6px;
margin: 0 0px 0 0;
}
.gallery {
padding: 2em 0px;
}
.gallery-bottom {
margin-top: 4%;
}
.navigation {
height: 11px;
}
span.menu {
margin: -5px 0px 0 0;
}
.callbacks_tabs a:after {
height: 8px;
width: 8px;
}
.welcome {
padding: 1.5em 0px;
}
.welcome-top h1 {
font-size: 1.2em;
}
.welcome-left {
padding: 0;
}
.welcome-one-right {
padding-right: 0;
}
.welcome-left a.one-top {
margin-top: 8px;
}
.welcome-left:nth-child(2) {
margin-top: 5%;
}
.heading h3,.heading h2,.heading h1 {
font-size: 1.2em!important;
}
.blog-main p {
font-size: 0.8em;
}
.welcome-bottom {
margin-top: 3%;
}
.nature-top h3 {
font-size: 1.05em;
}
.nature {
min-height: 205px;
}
.nature-top {
float: none;
margin: 13% auto;
}
.nature {
min-height: 227px;
}
.fields {
padding: 1.5em 0px;
}
.fields-left span {
width: 40px;
height: 40px;
}
.fields-left span.men {
background-position: -40px 0px;
}
.fields-left span.pen {
background-position: -80px 0px;
}
.fields-left {
padding: 0;
}
.contact-left.heading {
padding: 0;
}
.contact-right {
padding: 0;
}
.contact-left p {
margin-top: 5px;
line-height: 1.4em;
}
.contact-right input[type="text"]:nth-child(1) {
margin:0 0 7px 0;
}
.contact-right iframe {
height: 150px;
}
.contact-right input[type="text"] {
width: 100%;
margin-bottom: 3px;
padding: 7px 10px;
font-size: 0.8em;
}
.submit-btn input[type=submit] {
padding: 6px 18px;
font-size: 0.8em;
margin: 4px 0 0 0px;
}
.contact,.about,.team,.blog {
padding: 1.5em 0px;
}
.about-top h4 {
font-size: 0.83em;
margin-top: 3px;
}
.about-left {
width: 100%;
margin-bottom: 4%;
}
.about-left:nth-child(3){
margin-bottom:0
}
.ad-left {
width: 11%;
}
.ad-left p {
padding: 5px 0px;
font-size: 0.8em;
}
.ad-right h4, .advn-two h4 {
font-size: 1em;
}
.advn-one, .advn-two {
margin-top: 5.5%;
}
.ch-grid li {
width: 165px !important;
height: 165px !important;
margin: 6px 35px 9px 41px !important;
}
.ch-info {
width: 125px !important;
height: 125px !important;
}
.ch-info-wrap {
width: 125px !important;
height: 125px !important;
}
.ch-info h3 {
padding: 25px 0 0 0 !important;
height: 64px !important;
font-size: 10px !important;
}
.related {
margin-top: 6%;
}
.reply {
margin-top: 6%;
}
.contact-form {
margin-top: 0.85em;
}
.related-left h4 {
font-size: 14px;
margin: 5px 0 0 0;
}
.contact-form form input[type="text"] {
padding: 5px 15px;
font-size: 12px;
margin: 6px 0;
}
.contact-form form textarea {
height: 100px;
font-size: 12px;
}
.contact-form form input[type="submit"] {
font-size: 11px;
}
.gallery-left {
padding: 0 5px;
}
.gallery-1 {
margin-top: 10px;
}
.gallery-left:nth-child(1), .gallery-left:nth-child(2) {
margin-bottom: 10px;
}
.nature-top p {
font-size: 12px;
}
h2, .h2 {
font-size: 1.1em !important;
}
h1, .h1 {
font-size: 1.1em !important;
}
h3, .h3 {
font-size: 0.9em;
}
h4, .h4 {
font-size: 0.85em;
}
.label {
font-size: 41% !important;
}
.breadcrumb {
margin-bottom: 1em !important;
}
.pagination-lg > li > a, .pagination-lg > li > span {
padding: 8px 12px !important;
font-size: 14px !important;
}
.bs-example h1, .bs-example hh2, .bs-example h3, .bs-example h4, .bs-example h5, .bs-example h6 {
margin: 0px 0 5px;
}
.banner-text_grid p {
line-height: 1.5em;
font-size: 0.88em;
}
.content-slogan p {
font-size: 1em;
}
.images_1_of_3 p {
font-size: 0.85em;
padding: 10px 0px 6px 0px;
}
.images_1_of_3 {
padding: 3% 0% 9%;
}
.images_1_of_3 .button a {
padding: 6px 21px;
font-size: 0.8em;
}
.content {
padding: 0em 0 1.5em;
}
.footer-grid h4 {
font-size: 1.1em;
}
.footer-grid ul li a {
font-size: 0.8em;
padding: 0.1em 0;
}
.footer-grid {
margin-bottom: 1.5em;
float: none;
}
.footer-grid:nth-child(3) {
width: 100%;
}
.footer-grid:nth-child(4) {
width: 100%;
padding-left: 1em;
}
.footer {
line-height: 1.4em;
padding: 1em 0em 0em 0;
}
.text1 h4 {
font-size: 0.9em;
}
.text1 p {
font-size: 0.85em;
line-height: 1.6em;
}
.works h3 {
font-size: 1.3em;
margin-bottom: 0.9em;
}
}
/*--media-quaries-starts-here--*/ | asset/style2.css | html, body{
font-size: 100%;
background: #fff;
font-family: 'TitilliumWeb-Regular' sans-serif;
}
@font-face{
font-family:'TitilliumWeb-Regular';
src: url(fonts/TitilliumWeb-Regular.ttf)format('truetype');
}
@font-face{
font-family:'TitilliumWeb-Bold';
src: url(fonts/TitilliumWeb-Bold.ttf)format('truetype');
}
body a{
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
p{
margin:0;
}
h1,h2, h3,h4,h5 ,h6{
margin-top: 0px;
margin-bottom: 0px;
}
ul,label{
margin:0;
padding:0;
}
body a:hover{
text-decoration:none;
}
h1.b1,h2.b2,h3.b3{
margin-bottom:25px;
display: block;
}
/*-- Header Part Starts Here --*/
.header {
position: relative;
text-align: center;
background: #20acb9;
padding:1em 0;
}
.logo {
position: absolute;
top: 0;
z-index: 999;
width: 15%;
}
.menu{
float: right;
width: 73%;
}
.top-menu{
float: left;
width: 75%;
}
.top-menu ul li{
display:inline-block;
}
.top-menu ul li a{
display: block;
padding: 0.45em 2em 0 1em;
color: #fff;
}
.top-menu ul li.active a,.top-menu ul li a:hover{
color:#e6515f;
}
.search {
position: relative;
border-radius: 3px;
float: right;
background: #fff;
width: 25%;
}
.search input[type="text"] {
margin: 0px 0;
padding: 6px 33px 6px 15px;
outline: none;
background: none;
border: none;
width: 100%;
position: relative;
font-size: 0.9em;
-webkit-appearance: none;
}
.search input[type="submit"] {
background: url('images/search1.png') no-repeat 0px 1px;
border: none;
cursor: pointer;
width: 24px;
outline: none;
position: absolute;
height: 24px;
top: 3px;
right: 8px;
}
/*--banner--*/
/*-- banner --*/
.banner-bg{
background:url(images/11.jpg) no-repeat 0px 0px;
background-size:cover;
min-height: 716px;
}
.banner2{
background:url(images/33.jpg) no-repeat 0px 0px;
background-size: cover;
}
/*------------------ Slider Part starts Here----------*/
#slider2,
#slider3 {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs {
list-style: none;
padding: 0;
background: rgba(0,0,0,.25);
box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
font-size: 18px;
list-style: none;
margin: 0 auto 50px;
max-width: 540px;
padding: 10px 0;
text-align: center;
width: 100%;
}
.rslides_tabs li {
display: inline;
float: none;
margin-right: 1px;
}
.rslides_tabs a {
width: auto;
line-height: 20px;
padding: 9px 20px;
height: auto;
background: transparent;
display: inline;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255,255,255,.1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li{
position: relative;
display: block;
float: left;
}
.rslides img {
height: auto;
border: 0;
width:100%;
}
.banner-text{
text-align:center;
}
.banner-text_grid {
background: rgba(32, 172, 185, 0.69);
padding: 1.5em 2em;
}
.banner-text_grid img {
margin: 0 auto;
border-radius: 73px;
border: 6px solid #eee;
padding: 1em 1em;
}
.banner-sec{
position:relative;
}
.banner-top{
position: absolute;
bottom: -7em;
left: 0;
width: 100%;
z-index: 999;
}
.banner-text_grid h4 {
font-size: 1.4em;
padding: 0.5em 0 0;
color: #fff;
font-weight: 600;
}
.banner-text_grid p {
font-size: 1em;
padding: 0.5em 0;
color: #fff;
line-height: 1.9em;
}
/*--welcome-Part-starts-Here --*/
.welcome{
padding:11em 0px 0em;
}
.welcome-top{
text-align:center;
}
.welcome-top h1{
font-size:2.5em;
color:#e6515f;
font-family:'TitilliumWeb-Bold';
}
.welcome-top p {
font-size: 1em;
margin: 1% auto 0;
width: 80%;
line-height:1.9em;
color: #999;
}
.welcome-bottom{
margin-top:3%;
}
.welcome-left {
padding-left: 0;
}
.welcome-left h3{
font-size:1.8em;
font-weight:400;
color:#777777;
margin: 0;
}
.welcome-left p{
font-size: 1em;
margin-top: 1.6%;
line-height:1.9em;
color: #999;
}
.welcome-left img{
width:100%;
}
.welcome-one{
margin-top:4%;
}
.col-md-6.welcome-one-left {
padding: 0;
}
.welcome-left a.one-top {
margin-top: 17px ;
display: block;
}
/*---start-content----*/
.content {
padding:5em 0;
}
.content-slogan{
text-align:center;
}
.content-slogan p,.content-slogan a{
color: #7B7C7E;
font-size: 1.7em;
width: 82%;
margin: 0 auto;
padding:0 0 20px 0px;
}
.content-slogan a{
color:#20acb9;
font-size:1em;
font-weight: 500;
}
.slogan-sub{
text-align:center;
}
.slogan-sub p{
color: #7B7C7E;
font-size: 1em;
width: 95%;
margin: 0 auto;
padding:0px 0px 20px 0px;
}
/*---grids----*/
.section {
clear: both;
padding: 0px;
margin: 0px;
}
.group:before,
.group:after {
content:"";
display:table;
}
.group:after {
clear:both;
}
.group {
zoom:1;
}
.images_1_of_3:first-child {
margin-left: 0;
background:rgba(54, 201, 215, 0.9);
}
.images_1_of_3:nth-child(2){
background:rgba(189, 189, 189, 0.99);
}
.images_1_of_3:nth-child(3){
background:rgba(227, 69, 84, 0.83);
}
.images_1_of_3 {
width: 31.8%;
padding: 1.5em 1.5em 2em 1.5em;
text-align: center;
display: block;
float:left;
margin: 1em 0 1em 1.3em;
}
.images_1_of_3 img {
max-width:100%;
display: inline-block;
}
.images_1_of_3 h3{
color: #FFFFFF;
font-size: 1.7em;
padding: 10px 0px 0px 0px;
font-family:'TitilliumWeb-Bold';
}
.images_1_of_3 p {
font-size: 1em;
color: #FFF;
line-height: 1.9em;
padding: 10px 0px 21px 0px;
}
.images_1_of_3 .button{
margin-top:.3em;
line-height:1.9em;
}
.images_1_of_3 .button a{
background: #fff;
padding: 12px 32px;
color: #e6515f;
font-size: 0.875em;
transition: 0.5s ease;
-o-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
text-transform: uppercase;
}
.images_1_of_3 .button a:hover{
background:#7B7C7E;
color:#fff;
}
/*--nature-Part-start-Here--*/
.nature{
background:url(images/nature.jpg) no-repeat 0px -100px;
min-height:400px;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
}
.nature-top {
width: 61%;
float: right;
background:rgba(227, 69, 84, 0.59);
text-align: center;
padding: 3% 21px;
margin-top: 13%;
}
.nature-top h3{
color:#fff;
font-size:2.1em;
font-weight:400;
}
.nature-top p{
font-size: 15px;
margin-top: 2.5%;
line-height: 1.9em;
color: #fff;
}
/*--nature-Part-end-Here--*/
/***** Media Quries *****/
@media only screen and (max-width: 1024px) {
.wrap{
width:90%;
}
}
/* GO FULL WIDTH AT LESS THAN 640 PIXELS */
@media only screen and (max-width: 640px) {
.wrap{
width:95%;
}
.grid_1_of_3{
margin: 2% 0 2% 0%;
}
.images_1_of_3 {
width:94%;
padding:3%;
}
}
/* GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
.wrap{
width:95%;
}
.grid_1_of_3{
margin: 2% 0 2% 0%;
}
.images_1_of_3 {
width:92%;
padding:4%;
}
}
/*--welcome-Part-Ends-Here --*/
/*--field-Part-start-Here--*/
.fields{
padding:6em 0px;
}
.fields-left{
text-align:center;
}
.fields-left span{
background:url(images/f-1.png) no-repeat;
width:86px;
height:80px;
display:block;
margin:0 auto;
}
.fields-left span.home{
background-position:-7px 8px;
}
.fields-left span.men{
background-position:-101px -3px;
}
.fields-left span.pen{
background-position:-188px 0px;
}
.fields-left h4 {
font-size: 1.3em;
font-weight: 400;
color: #e34554;
margin: 15px 0 0 0;
}
.fields-left p{
font-size: 1em;
margin-top: 1.6%;
line-height: 1.9em;
color: #999;
}
/*----- footer ----*/
.footer {
border-top:1px solid rgba(51, 51, 51, 0.17);
padding: 2em 0em 1em 0;
text-align:left;
background:#F4F4F4;
}
.footer-grid h4{
color: #e34554;
font-size: 1.3em;
margin-bottom: 0.2em;
}
.footer-grid ul{
margin:0;
padding:0;
}
.footer-grid ul li{
display:block;
}
.footer-grid ul li a{
font-size: 0.95em;
color: #999;
text-decoration: none;
padding: 0.2em 0;
display: inline-block;
}
.footer-grid ul li a:hover{
color:#e34554;
}
.contact-grid ul li{
font-size: 0.87em;
color: #999;
padding: 0.3em 0;
}
.contact-grid ul li span{
width:15px;
height:15px;
display:inline-block;
background:url(images/footer-icons.png) no-repeat 0px 0px;
display:inline-block;
vertical-align:middle;
margin-right:0.5em;
}
.contact-grid ul li a{
font-size:1.1em;
display:inline-block;
}
.contact-grid ul li span.c-icon1{
background-position: 0px -25px;
}
.contact-grid ul li span.c-icon2{
background-position: 0px -49px;
}
ul.social-icons{
margin:1em 0 0 0;
padding:0;
}
ul.social-icons li{
display:inline-block;
}
ul.social-icons li a span{
width:32px;
height:32px;
display:inline-block;
background:url(images/social-icons.png) no-repeat 0px 0px;
margin-right:0.2em;
}
ul.social-icons li a span:hover{
opacity:0.6;
}
ul.social-icons li a span.facebook{
background-position:0px 0px;
}
ul.social-icons li a span.twitter{
background-position: -36px 0px;
}
ul.social-icons li a span.thumb{
background-position: -72px 0px;
}
ul.social-icons li a:hover{
opacity:0.7em;
}
.copy {
text-align:center;
background:#E34554;
padding:1em; }
.copy p {
color: #fff;
font-size:1em;
}
.copy p a {
color: #fff;
}
.copy p a:hover{
text-decoration: underline;
}
/*--about-Part-starts-Here --*/
.about{
padding:6em 0px;
}
.about-top h1,.blog-head h1,.gallery-top h1{
text-align:center;
font-family:'TitilliumWeb-Bold';
font-size:2.3em;
color:#333;
}
.about-top h4 {
font-size: 1.3em;
text-align:center;
font-weight: 400;
color: #e34554;
margin: 18px 0 0 0;
}
p.abt_text{
text-align:center;
}
.about-top p{
font-size: 1em;
margin-top: 1%;
line-height: 1.9em;
color: #999;
}
.about-bottom{
margin-top:2%;
}
.about-left img{
width:100%;
}
.about-left h5 {
font-size: 1.25em;
font-weight: 400;
margin: 18px 0 6px 0;
}
.about-left h5 a{
color: #e34554;
text-decoration:none;
}
.advn-one {
margin-top: 7%;
}
.advantages {
margin-top: 4em;
}
.advantages-left h3{
color:#777;
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
}
.ad-mian {
margin-top: 3%;
}
.ad-left {
width: 10%;
float: left;
}
.ad-left p {
color: #fff;
background: #e34554;
padding: 13px 0px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
text-align: center;
font-size: 20px;
}
.ad-right {
width: 84%;
float: right;
}
.ad-right h4, .advn-two h4 {
color: #e34554;
font-size: 1.2em;
font-weight: 400;
margin: 0;
line-height: 1.4em;
}
.ad-right h4 a{
text-decoration:none;
color: #e34554;
font-size:1em;
}
.ad-right p {
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 8px;
}
.advn-two ul {
padding: 0;
margin-top: 3%;
}
.advn-two ul li {
list-style-image: url(images/marker.png);
margin: 0px 0px 12px 18px;
vertical-align: top;
}
.advn-two p{
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 8px;
}
.advn-two {
margin-top: 7%;
}
.advn-two ul li a {
color: #999;
font-size: 15px;
font-weight: 400;
}
.advn-two ul li a:hover{
color:#e34554;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.team{
padding:6em 0px;
}
.team-bottom{
margin-top:4%;
}
.team-top{
text-align:center;
}
.works{
margin-top:4em;
}
.works h3 {
color:#777;
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
margin-bottom:1.2em;
text-align:center;
}
.grid_4 {
width: 22%;
float: left;
margin: 0 3% 0% 0;
}
.text1 p {
color: #9A9598;
line-height: 1.9em;
font-size: 1em;
}
.text1 img {
width: 100%;
}
.text1 h4{
font-size: 1.2em;
color:#E34554;
margin:0.5em 0;
}
/*--about-Part-Ends-Here --*/
/*--blog-starts--*/
.blog {
padding: 6em 0;
}
span.glyphicon {
color: #e34554;
}
.pager li > a, .pager li > span {
border-radius: 15px;
color: #353a3d;
}
.blg_sec{
margin-top:1.5em;
}
.blog-main p {
color: #999;
font-size: 15px;
margin-top: 5px;
}
.blog-head{
text-align:center;
}
.blog-top {
margin-top: 3%;
}
.blog-main p a{
color:#e34554;
}
.blog-main p a:hover{
text-decoration:underline;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
color:#999;
}
a.bg {
color: #e34554;
font-size:1.3em;
font-weight: 400;
text-decoration: none;
}
.blog-one{
margin-top:1.5em;
}
.blog-one img{
width:100%;
}
.col-md-5.blog-one-left {
padding-left: 0;
}
.blog-comments {
margin-top: 2.5em;
border-top: 1px solid rgba(153, 153, 153, 0.2);
padding: 1.3em 0px;
}
.blog-comments ul {
padding: 0;
}
.b-btn {
margin-top: 26px;
}
.blog-comments ul li{
list-style:none;
display:inline-block;
margin-right:15px;
}
.b-btn a{
color: #fff;
padding: 5px 15px;
border-radius: 0.3em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
-o-border-radius: 0.3em;
outline: none;
font-size: 13px;
background: #e34554;
}
.b-btn a:hover{
background:#2a2017;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.blog-main-one {
border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.blog-right h3,.blog-right h2{
color: #e34554;
font-size: 1.3em;
font-weight: 400;
}
.blog-right ul{
padding:0;
margin-top:1.5em;
}
.blog-right ul li{
list-style:none;
margin-bottom:8px;
}
.blog-right ul li a {
color: #999;
font-size: 1em;
}
.blog-right ul li a:hover{
color: #e34554;
margin-left: 10px;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.posts{
margin-top:2em;
}
.categories:nth-child(1){
margin-top:0;
}
.categories{
margin-top:2em;
}
p.sngl {
margin-top: 1.5em;
}
.blog-one p {
color: #999;
font-size: 1em;
line-height: 1.9em;
margin-top: 1em;
}
.blog-one-left p{
margin-top:0;
}
.pagination {
margin: 4% 0 0 0;
}
.blog-comments ul li a, .blog-comments ul li p {
color: #999;
font-size: 0.9em;
display: inline-block;
vertical-align: top;
margin-left: 10px;
}
.blog-comments ul li a:hover{
color: #e34554;
text-decoration: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.related{
margin-top:3em;
}
.contact-form {
margin-top: 1.7em;
}
.related-left{
text-align:center;
padding-left: 0;
}
.related-left h4 {
color: #e34554;
font-size: 1.3em;
margin: 13px 0 0 0;
}
.contact-form form input[type="text"]{
padding: 10px 15px;
width: 100%;
color: #333;
font-size: 1em;
border: 1px solid #E3E3E3;
outline: none;
display: block;
margin: 10px 0;
}
.contact-form form textarea {
padding: 10px 15px;
width: 100%;
color: #333;
font-size: 1em;
border: 1px solid #E3E3E3;
outline: none;
display: block;
margin: 10px 0;
}
.contact-form form textarea {
height: 200px;
resize: none;
}
.contact-form form input[type="submit"]:hover{
background: #2a2017;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.contact-form form input[type="submit"] {
color: #fff;
background: #e34554;
padding: 0.7em 1.7em;
font-size: 1em;
margin-top: 1em;
border: none;
outline: none;
border-radius: 0.3em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
-o-border-radius: 0.3em;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-heading a,.media-heading{
color:#e34554;
}
.media-body p {
font-size: 15px;
margin-top: 10px;
line-height: 1.9em;
color: #999;
}
.comments-bottom {
margin-top: 3%;
}
.media {
margin-top: 24px;
}
.comments {
margin-top: 5%;
}
.related-bottom {
margin-top: 3%;
}
.related-left img {
width: 100%;
}
.reply{
margin-top: 5%;
}
ul.pager {
margin: 0;
}
/*--blog-end--*/
/*--pages-start--*/
.pages {
padding: 7em 0px;
}
h3.ghj {
color: #000;
font-size: 2em !important;
margin: 0 0 1em;
}
.headdings, .Buttons, .progress-bars, .alerts, .bread-crumbs, .pagenatin, .appearance, .distracted {
padding: 2em 0;
}
.breadcrumb {
margin-bottom: 3em !important;
}
.table {
margin-bottom: 0;
}
.b4,.b5,.b6 {
margin-top: 15px !important;
margin-bottom: 15px !important;
}
.bs-example h1, .bs-example hh2, .bs-example h3, .bs-example h4, .bs-example h5, .bs-example h6 {
margin: 0 0 10px;
}
/*--pages-end--*/
/*--gallery-Part-Ends-Here --*/
.gallery{
padding:6em 0px;
}
.gallery-top{
text-align:center;
}
.gallery-bottom{
margin-top:5%;
}
.gallery-left img{
width:100%;
}
.gallery-left{
position: relative;
}
.gallery-1{
margin-top:25px;
}
.gallery-1:nth-child(1){
margin-top:0;
}
/*--gallery-Part-Ends-Here --*/
/*--contact-Part-starts-Here --*/
.contact{
padding:6em 0px;
}
.contact-right iframe{
border:none;
width:100%;
height:350px;
}
.contact-left h1,.contact-left h2{
font-size:2.2em;
font-family:'TitilliumWeb-Bold';
color:#333;
}
.contact-left p{
font-size: 1em;
margin-top: 1.6%;
line-height: 1.9em;
color: #999;
}
.contact-right input[type="text"]:nth-child(1){
margin-right:11px;
}
.contact-right input[type="text"] {
width: 49%;
margin: 0px;
color: #BCBCBC;
background: none;
padding: 15px 10px;
outline: none;
border: 1px solid #BCBCBC;
}
.contact-right textarea {
width: 100%;
color: #BCBCBC;
resize: none;
background: none;
height: 12.7em;
padding: 15px;
outline: none;
border: 1px solid #BCBCBC;
margin-top: 1.4%;
}
.submit-btn input[type=submit] {
color: #ffffff;
padding: 10px 50px;
font-size: 20px;
cursor: pointer;
font-weight: 500;
margin: 20px 0 0 0px;
border: none;
background: #e34554;
outline: none;
}
.submit-btn input[type=submit]:hover {
background: #2a2017;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-ms-transition: 0.5s all;
-o-transition: 0.5s all;
}
.contact-bottom{
margin-top:5%;
}
/*--contact-Part-Ends-Here --*/
/*--media-quaries-starts-here--*/
@media (max-width:1440px){
.top-menu {
width: 72%;
}
}
@media (max-width:1366px){
.gallery {
padding: 5em 0px;
}
.welcome {
padding: 10em 0px 5em;
}
.offer {
padding: 0em 0px 5em 0px;
}
.fields {
padding: 5em 0px;
}
.contact, .about, .team, .blog{
padding: 5em 0px;
}
.pages {
padding: 6em 0px;
}
}
@media (max-width:1280px){
.menu {
width: 75%;
}
.search {
width: 29%;
}
.pages {
padding: 5em 0px;
}
.comments {
margin-top: 4%;
}
.related {
margin-top: 4%;
}
.related-bottom {
margin-top: 2%;
}
.contact-bottom {
margin-top: 4%;
}
.blog-comments {
padding: 1.1em 0px;
margin-top: 2em;
}
.blog-top {
margin-top: 2%;
}
.gallery-bottom {
margin-top: 4%;
}
.advn-one,.advn-two {
margin-top: 5.5%;
}
.team-bottom {
margin-top: 2%;
}
.welcome-bottom {
margin-top: 2%;
}
.offer-bottom {
margin-top: 2%;
}
.nature {
min-height: 338px;
}
.content {
padding: 0em 0 5em;
}
.nature-top h3 {
font-size: 2em;
}
.nature-top {
width: 62%;
padding: 4.8% 21px;
margin-top: 5%;
}
.reply {
margin-top: 4%;
}
.top-menu {
width: 70%;
}
.top-menu ul li a {
padding: 0.45em 1em 0 1em;
}
}
@media (max-width:1024px){
.banner-bg {
background: url(images/11.jpg) no-repeat 0px 0px;
min-height: 544px;
background-size:cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat 0px 0px;
min-height: 544px;
background-size:cover;
}
.top-menu ul li a {
padding: 1em 1em 1em 1em;
}
.pages {
padding: 4em 0px;
}
.related-left h4 {
font-size: 1.25em;
margin: 10px 0 0 0;
}
.contact, .about, .team, .blog {
padding: 4em 0px;
}
.contact-right iframe {
height: 320px;
}
.menu {
width: 77%;
}
.search {
margin-top: 0.6em;
}
.submit-btn input[type=submit] {
padding: 9px 47px;
font-size: 18px;
}
.gallery {
padding: 4em 0px;
}
.gallery-bottom {
margin-top: 3%;
}
#filters li span {
font-size: 14px;
}
.header {
padding:0;
}
.logo a img {
width: 80%;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 34%;
}
.banner {
min-height: 530px;
}
.banner-text_grid h4 {
font-size: 1.2em;
}
.banner-text_grid p {
line-height: 1.6em;
font-size:0.95em;
}
.welcome-top h1 {
font-size: 2.5em;
}
.welcome-top p {
margin: 5px auto 0;
width: 95%;
line-height: 1.6em;
font-size:.95em;
}
.welcome-left p {
font-size: 0.95em;
line-height: 1.6em;
}
.welcome-left h3 {
font-size: 1.55em;
}
.heading h3,.heading h2,.heading h1{
font-size: 2em;
}
.content-slogan p{
font-size: 1.5em;
width: 100%;
line-height: 1.4em;
}
.content-slogan a {
font-size:1.15em;
}
.slogan-sub p {
font-size: 0.9em;
width: 100%;
line-height:1.7em;
}
.images_1_of_3 p {
font-size: 0.95em;
line-height: 1.6em;
padding: 10px 0px 13px 0px
}
.images_1_of_3 .button a {
padding: 8px 32px;
font-size: 0.8em;
}
.nature-top h3 {
font-size: 1.75em;
}
.offer-left h4 {
font-size: 1.3em;
}
.nature-top {
margin-top: 5em;
padding: 4% 18px;
}
.welcome-bottom {
margin-top: 3em;
}
.nature {
min-height: 320px;
background: url(images/nature.jpg) no-repeat 0px -110px;
}
.nature-top p {
font-size: 0.95em;
line-height: 1.7em;
}
.fields-left h4 {
font-size: 1.3em;
}
.fields {
padding: 4em 0px;
}
.fields-left p {
font-size: 0.95em;
line-height: 1.7em;
}
.welcome-left a.one-top {
margin-top: 24px;
}
.offer {
padding: 0em 0px 4em 0px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 8px;
}
.about-top h4 {
font-size: 1.35em;
margin-top: 9px;
}
.ad-left p {
padding: 8px 0px;
}
.ch-grid li {
margin: 0 20px !important;
}
.team-bottom {
margin-top: 3%;
}
.col-md-7.blog-one-left {
padding: 0;
}
.blog-one {
margin-top: 1.2em;
}
a.bg {
font-size: 1.3em;
}
.blog-right h3,.blog-right h2{
font-size: 1.3em;
}
.blog-right ul {
margin-top: 1em;
}
.blog-one p {
font-size: 0.95em;
line-height: 1.7em;
}
.b-btn a {
padding: 4px 9px;
font-size: 12px;
}
.b-btn {
margin-top: 10px;
}
.blog-right ul li a {
font-size: 14px;
}
.blog-comments ul li a, .blog-comments ul li p {
font-size: 14px;
margin-left: 7px;
}
.blog-comments {
padding: 1em 0px;
}
.blog-main p {
font-size: 14px;
margin-top: 2px;
}
.related-left {
padding: 0 7px;
}
.about-top p {
font-size: 0.95em;
line-height: 1.7em;
}
.ad-right p {
font-size: 0.95em;
line-height: 1.7em;
}
.advn-two p {
font-size: 0.95em;
line-height: 1.7em;
}
.text1 p {
line-height: 1.7em;
font-size: 0.95em;
}
.advn-two ul li {
margin: 0px 0px 18px 18px;
}
}
@media (max-width:991px){
.banner-text {
float: left;
width: 33.3%;
}
.logo {
width: 18%;
}
.logo a img {
width: 100%;
}
.top-menu ul li a {
padding: 1em 0.7em;
}
.menu {
width: 79%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -129px 0px;
min-height: 544px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 544px;
background-size:cover;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 43%;
}
.welcome-one-left {
padding: 0;
float: left;
width: 50%;
}
.welcome-one-right {
float: left;
width: 50%;
}
.welcome-left {
padding-left: 0;
margin-top: 1em;
width: 50%;
float: left;
}
.images_1_of_3 {
width: 31.6%;
}
.about-left {
float: left;
width: 33.3%;
}
.ad-left {
width: 6%;
}
.ad-right {
width: 90%;
}
.advantages-left.heading {
margin-top: 2em;
}
.blog-left {
float: left;
width: 70%;
}
.blog-right {
width: 30%;
float: left;
}
.gallery-left {
float: left;
width: 50%;
margin-bottom: 1.5em;
}
.top-menu {
width: 71%;
}
.fields-left {
float: left;
width: 33.33%;
}
.footer-grid {
float: left;
width: 50%;
}
.footer-grid:nth-child(3) {
width: 51%;
margin-top:2em;
}
.footer-grid:nth-child(4) {
width: 49%;
margin-top: 2em;
padding-left: 0.5em;
}
.images_1_of_3 {
padding: 1.5em 1em 2em 1.5em;
}
.images_1_of_3:nth-child(3) {
width: 31.3%;
}
}
@media (max-width:900px){
.banner-text {
float: left;
width: 33.3%;
}
.logo {
width: 18%;
}
.logo a img {
width: 100%;
}
.top-menu ul li a {
padding: 1em 0.7em;
}
.menu {
width: 79%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -129px 0px;
min-height: 544px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 544px;
background-size:cover;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 43%;
}
.welcome-one-left {
padding: 0;
float: left;
width: 50%;
}
.welcome-one-right {
float: left;
width: 50%;
}
.welcome-left {
padding-left: 0;
margin-top: 1em;
width: 50%;
float: left;
}
.images_1_of_3 {
width: 31.6%;
}
.about-left {
float: left;
width: 33.3%;
}
.ad-left {
width: 6%;
}
.ad-right {
width: 90%;
}
.advantages-left.heading {
margin-top: 2em;
}
.blog-left {
float: left;
width: 70%;
}
.blog-right {
width: 30%;
float: left;
}
.gallery-left {
float: left;
width: 50%;
margin-bottom: 1.5em;
}
.top-menu {
width: 71%;
}
}
@media (max-width:800px){
span.menu:before {
content: url(images/nav-icon.png);
cursor: pointer;
height:32px;
}
ul.navig {
width: 11%;
float: right;
margin:0;
}
ul.navig{
display:none;
}
ul.navig li {
font-size: 12px;
display:inline-block;
width: 100%;
margin:0;
}
ul.navig li a {
padding: 7px;
font-size: 14px;
width: 100%;
font-weight:600;
display:block;
color: #fff;
}
ul.navig li a:hover{
color:#e34554;
}
span.menu{
display:block;
float:right;
margin: 1px 0px 0 0;
}
ul.navig {
margin: 0;
z-index: 2222;
position: absolute;
width: 96%;
text-align: center;
top: 100%;
left: 2%;
padding: 10px 0px;
background:#20ACB9;
}
.navigation {
height: 20px;
padding: 13px 0px 0em;
margin-bottom: 0em;
}
ul.navig li:nth-of-type(4) {
margin: 0 0px 0 0em;
}
ul.navig li:nth-of-type(3) {
margin: 0 0em 0 0px;
}
.logo a img {
width: 100%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -148px 0px;
min-height: 490px;
background-size: cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 490px;
background-size:cover;
}
.banner-top {
bottom: -8em;
width: 100%;
}
.banner-text {
float: left;
width: 33.3%;
}
.banner-text_grid img {
border: 4px solid #eee;
width: 52%;
}
.menu {
width: 59%;
}
.search {
width: 65%;
margin: 0.4em;
}
.navigation {
padding: 10px 0px 0em;
}
.images_1_of_3 {
width: 31.45%;
}
.top-menu {
width: 15%;
}
}
@media (max-width:768px){
span.menu:before {
content: url(images/nav-icon.png);
cursor: pointer;
height:32px;
}
ul.navig {
width: 11%;
float: right;
margin:0;
}
ul.navig{
display:none;
}
ul.navig li {
font-size: 12px;
display:inline-block;
width: 100%;
margin:0;
}
ul.navig li a {
padding: 7px;
font-size: 14px;
width: 100%;
font-weight:600;
display:block;
color: #fff;
}
ul.navig li a:hover{
color:#e34554;
}
span.menu{
display:block;
float:right;
margin: 1px 0px 0 0;
}
ul.navig {
margin: 0;
z-index: 2222;
position: absolute;
width: 96%;
text-align: center;
top: 100%;
left: 2%;
padding: 10px 0px;
background:#20ACB9;
}
.navigation {
height: 20px;
padding: 13px 0px 0em;
margin-bottom: 0em;
}
ul.navig li:nth-of-type(4) {
margin: 0 0px 0 0em;
}
ul.navig li:nth-of-type(3) {
margin: 0 0em 0 0px;
}
.logo a img {
width: 100%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -148px 0px;
min-height: 490px;
background-size:cover;
}
.banner2{
background: url(images/33.jpg) no-repeat -120px 0px;
min-height: 490px;
background-size:cover;
}
.banner-text_grid img {
width: 49%;
}
.banner-text {
float: left;
width: 33.3%;
}
.banner-top {
bottom: -8em;
width: 100%;
}
.pages {
padding: 3em 0px;
}
.related-left {
width: 25%;
float: left;
}
.menu {
width: 53%;
}
.search {
margin: 0.6em 0;
}
.search {
width: 60%;
}
.contact-form {
margin-top: 1.2em;
}
.contact-form form input[type="submit"] {
padding: 10px 22px;
font-size: 13px;
margin-top: 6px;
}
.contact-form form input[type="text"] {
padding: 8px 15px;
font-size: 14px;
}
.contact-form form textarea {
height: 155px;
font-size: 14px;
}
.related-left h4 {
font-size: 1.1em;
}
.media-body p {
font-size: 0.9em;
margin-top: 4px;
line-height: 1.7em;
}
.col-md-5.blog-one-left {
width: 43%;
float: left;
}
.col-md-7.blog-one-left {
width: 57%;
float: right;
}
.blog-one p {
font-size: 0.9em;
line-height: 1.67em;
}
.b-btn {
margin-top: 10px;
}
.blog-comments {
padding: 10px 0px;
margin-top: 1.2em;
}
a.bg {
font-size: 1.2em;
}
.blog-right h3,.blog-right h2{
font-size: 1.2em;
}
.col-md-3.blog-right {
margin-top: 25px;
}
.blog-right ul {
margin-top: 10px;
}
.blog-right ul li {
margin-bottom: 5px;
}
.categories {
margin-top: 1.3em;
}
.pager li > a, .pager li > span {
padding: 4px 21px;
font-size: 14px;
}
.ch-grid li {
margin: 0 8px !important;
}
.pagination {
margin: 3% 0 0 0;
}
.about-left {
width: 33.3%;
float: left;
}
.ad-left {
width: 8.7%;
}
.ad-left p {
padding: 15px 0px;
}
.advn-one, .advn-two {
margin-top: 3.5%;
}
.advantages-left:nth-child(2){
margin-top: 3.5%;
}
.ad-right {
width: 87%;
}
.about-top h4 {
font-size: 1.2em;
}
.contact-top,.contact-bottom{
text-align: center;
}
.contact-left p {
margin-top: 1%;
font-size: 0.9em;
}
.contact-right {
margin-top: 13px;
}
.contact-right iframe {
height: 250px;
}
.contact-right input[type="text"] {
padding: 12px 10px;
font-size: 13px;
}
.contact-right textarea {
height: 11.7em;
font-size: 13px;
padding: 11px;
}
.submit-btn input[type=submit] {
padding: 9px 40px;
font-size: 16px;
margin: 10px 0 0 0px;
}
.contact, .about, .team, .blog,.gallery{
padding: 3em 0px;
}
.logo {
left: 2%;
}
.banner-text_grid h4 {
font-size: 1.1em;
}
.banner-text_grid p {
line-height: 1.6em;
font-size: 0.9em;
}
.welcome-top h1 {
font-size: 2.1em;
}
.welcome-one-left {
width: 50%;
float: left;
}
.welcome-one-right {
width: 50%;
float: right;
}
.images_1_of_3 {
width: 31%;
}
.welcome-left h3 {
font-size: 1.45em;
}
.welcome-left p {
font-size: 0.9em;
margin-top: 1.1%;
}
.welcome-top p {
width: 97%;
font-size: 0.9em;
}
.welcome-left a.one-top {
margin-top: 9px;
}
.images_1_of_3 p {
font-size: 0.9em;
}
.welcome-left:nth-child(2){
margin-top:3%;
}
.welcome-one {
margin-top: 2%;
}
.offer-left {
width: 25%;
float: left;
padding: 0 5px;
}
.content {
padding: 0em 0 3em;
}
.heading h3,.heading h2,.heading h1{
font-size: 1.5em;
}
.welcome {
padding: 8em 0px 3em;
}
.content-slogan p {
font-size: 1.4em;
}
.content-slogan a {
font-size: 1em;
}
.nature-top h3 {
font-size: 1.3em;
}
.nature-top {
margin-top: 8em;
width: 76%;
}
.nature-top p {
font-size: 0.9em;
margin-top: 2.3%;
}
.nature {
min-height: 310px;
}
.fields {
padding: 3em 0px;
}
.fields-left {
width: 33.3%;
float: left;
}
.fields-left h4 {
font-size: 1.2em;
}
.fields-left p {
font-size: 0.9em;
margin-top: 1.5%;
}
.fields-left span {
width: 65px;
height: 65px;
background-size: 300%;
}
.fields-left span.men {
background-position: -65px 0px;
}
.fields-left span.pen {
background-position: -130px 0px;
}
.offer-left h6 {
font-size: 15px;
left: 5px;
padding: 3px 30px 7px 15px;
background-size: 92%;
}
.works {
margin-top: 2em;
}
.footer-grid {
margin-bottom: 2em;
}
.about-top p {
font-size:0.9em;
}
.ad-right p {
font-size: 0.9em;
margin-top: 2px;
}
.advn-two p {
font-size: 0.9em;
margin-top: 4px;
}
.advn-two ul li a {
font-size: 0.9em;
}
.advn-two ul {
margin-top: 1.5%;
}
.gallery-left {
width: 25%;
float: left;
padding: 0 5px;
}
.col-md-6:nth-child(3){
margin-top: 4%;
}
.about-left h5 {
font-size: 1.2em;
}
.text1 h4 {
line-height: 1.3em;
}
.text1 p {
font-size: 0.9em;
}
}
@media (max-width:640px){
.logo a img {
width: 60%;
}
.logo {
left: -5%;
width: 45%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -250x 0px;
min-height: 438px;
background-size:cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -100px 0px;
min-height: 438px;
background-size:cover;
}
.banner-text_grid img {
width: 17%;
}
.banner-text_grid h4 {
font-size: 0.95em;
}
.label {
font-size: 59%;
}
.breadcrumb {
margin-bottom: 2em !important;
}
.welcome-one-left {
width: 48%;
float: left;
}
.welcome-one-right {
width: 52%;
float: right;
}
.headdings, .Buttons, .progress-bars, .alerts, .bread-crumbs, .pagenatin, .appearance, .distracted {
padding: 1em 0;
}
h3.ghj {
font-size: 1.7em !important;
margin: 0 0 12px;
}
.gallery-bottom {
margin-top: 4%;
}
.related-left h4 {
font-size: 1em;
}
a.bg {
font-size: 1.1em;
}
.blog-main p {
font-size: 0.9em;
}
.blog-one p {
font-size: 0.85em;
}
.blog-comments ul li a, .blog-comments ul li p {
font-size: 13px;
margin-left: 5px;
}
.b-btn a {
padding: 2px 6px;
font-size: 11px;
}
.b-btn {
margin-top: 4px;
}
.col-md-5.blog-one-left {
width: 47%;
}
.col-md-7.blog-one-left {
width: 53%;
}
span.glyphicon {
font-size: 15px;
}
.ch-grid li {
width: 215px !important;
height: 215px !important;
margin: 10px 40px 10px 41px !important;
}
.about-top h4 {
font-size: 1.1em;
}
.about-left h5 {
font-size: 1.1em;
}
.about-left {
padding: 0 5px;
}
.ad-left p {
padding: 10px 0px;
}
.ad-right h4, .advn-two h4 {
font-size: 1.1em;
}
.about-left h5 {
font-size: 1.1em;
margin: 10px 0 3px 0;
}
.gallery-bottom {
margin-top: 6%;
}
.welcome-top h1 {
font-size: 1.8em;
}
.welcome {
padding: 2em 0 3em;
}
.welcome-left h3 {
font-size: 1.3em;
}
.welcome-left a.one-top {
margin-top: 16px;
}
.heading h3,.heading h2,.heading h1 {
font-size: 1.8em;
}
.welcome-left:nth-child(2) {
margin-top: 2.2%;
}
.nature-top h3 {
font-size: 1.25em;
}
.nature-top {
width: 43%;
padding: 6% 21px;
margin-top: 2.5%;
}
.nature {
min-height: 285px;
}
.fields-left {
padding: 0 5px;
}
.fields {
padding: 2em 0px;
}
.fields-left h4 {
margin-top: 10px;
}
.fields-left span {
width: 60px;
height: 60px;
}
.fields-left span.men {
background-position: -60px 0px;
}
.fields-left span.pen {
background-position: -120px 0px;
}
.contact-left p {
font-size: 0.85em;
margin-top: 3px;
}
.contact-right iframe {
height: 220px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 7px;
}
.content-slogan p {
font-size: 1.2em;
}
.slogan-sub p {
line-height: 1.6em;
}
.images_1_of_3 {
width: 100%;
margin-left: 0;
}
.welcome-left:nth-child(2),.welcome-left{
padding-right:0;
}
.nature-top {
width: 93%;
padding: 6% 21px;
margin-top: 6em;
}
.nature-top p {
line-height: 1.5em;
}
.grid_4 {
width: 47%;
}
.heading h3, .heading h2, .heading h1 {
font-size: 1.4em;
}
.text1 h4 {
line-height: 1.1em;
}
.grid_4.span66 {
margin-top: 2em;
}
.fields-left h4 {
font-size: 1em;
}
.images_1_of_3:nth-child(3) {
width: 100%;
}
.banner-sec {
position: inherit;
}
.banner-top {
margin: 2em 0px 0px;
position: inherit;
}
.banner-text {
float: none;
width: 100%;
margin-bottom: 1em;
}
}
@media (max-width:480px){
.label {
font-size: 51%;
}
.welcome-left {
width: 100%;
}
.gallery-1 {
margin-top: 15px;
}
.gallery-left {
width: 50%;
padding: 0 8px;
}
.gallery-left:nth-child(1),.gallery-left:nth-child(2){
margin-bottom:15px;
}
.gallery {
padding: 2em 0px;
}
.gallery-bottom {
margin-top: 3%;
}
.media-body p {
font-size: 13px;
margin-top: 1px;
}
.related-left {
width: 50%;
}
.related-left:nth-child(1),.related-left:nth-child(2){
margin-bottom:10px;
}
.related-bottom {
margin-top: 3%;
}
.media {
margin-top: 10px;
}
.search input[type="text"] {
padding: 4px 33px 4px 15px;
}
.contact-form form input[type="text"] {
padding: 6px 15px;
font-size: 13px;
margin: 8px 0;
}
.contact-form form textarea {
height: 140px;
font-size: 13px;
}
.contact-form form input[type="submit"] {
padding: 5px 18px;
margin-top: 1px;
}
.media-heading a, .media-heading {
font-size: 16px;
}
.about-top h4 {
font-size: 1em;
margin: 10px 0;
line-height: 1.3em;
}
.about-bottom {
margin-top:1.5em;
}
.advantages {
margin-top: 2em;
}
.advantages-left.heading {
padding: 0;
}
.about-top p {
font-size: 0.85em;
margin-top: 1px;
}
.about-left h5 {
font-size: 1em;
}
.ad-left p {
padding: 7px 0px;
font-size: 16px;
}
.ad-right h4, .advn-two h4 {
font-size: 1.1em;
}
.ad-right p {
font-size: 0.85em;
}
.advn-two p {
font-size: 0.85em;
margin-top: 2px;
}
.advn-two ul li a {
font-size: 13px;
}
.advn-two ul li {
margin: 0px 0px 9px 18px;
}
.ch-info h3 {
padding: 65px 0 0 0 !important;
height: 108px !important;
}
.contact, .about, .team, .blog {
padding: 2em 0px;
}
.contact-right iframe {
height: 180px;
}
.contact-right input[type="text"]:nth-child(1) {
margin-right: 4px;
}
.contact-right input[type="text"] {
padding: 9px 10px;
}
.contact-right textarea {
height: 10em;
}
.submit-btn input[type=submit] {
padding: 8px 30px;
font-size: 14px;
margin: 7px 0 0 0px;
}
.fields-left {
width: 100%;
float: none;
}
.fields-left:nth-child(1),.fields-left:nth-child(2){
margin-bottom:15px;
}
.fields-left h4 {
font-size: 1.07em;
margin-top: 7px;
}
.fields-left p {
font-size: 0.85em;
margin-top: 3px;
}
.fields-left span {
width: 50px;
height: 50px;
}
.fields-left span.men {
background-position: -50px 0px;
}
.fields-left span.pen {
background-position: -100px 0px;
}
.menu {
width: 57%;
}
.logo {
left: -2%;
}
.logo a img {
width: 75%;
}
.search {
width: 74%;
}
span.menu {
margin: 0px 0px 0 0;
}
.callbacks_tabs a:after {
height: 9px;
width: 9px;
}
.welcome-top h1 {
font-size: 1.4em;
}
.welcome-top p {
width: 100%;
font-size: 0.85em;
margin: 4px auto 0;
}
.welcome-left h3 {
font-size: 1.07em;
}
.welcome-left p {
font-size: 0.85em;
margin-top: 7px;
}
.welcome-left:nth-child(2) {
margin-top: 3.2%;
}
.heading h3,.heading h2,.heading h1{
font-size: 1.4em;
}
.nature-top h3 {
font-size: 1.1em;
}
.nature-top p {
font-size: 0.85em;
}
.nature-top {
width: 100%;
}
.welcome-left a.one-top{
margin-top: 25px;
}
.nature {
min-height: 255px;
}
#filters li span {
font-size: 11px;
padding: 6px 15px;
}
.col-md-5.blog-one-left,.col-md-7.blog-one-left{
width: 100%;
float: none;
}
.col-md-7.blog-one-left{
margin-top:3%;
}
.blog-right ul li a {
font-size: 0.85em;
}
.blog-right ul li a {
font-size: 0.85em;
}
.blog-right ul {
margin-top: 6px;
}
a.bg {
font-size: 1em;
}
.blog-right h3,.blog-right h2{
font-size: 1.1em;
}
.flex-control-paging li a {
width: 9px;
height: 9px;
}
.pages {
padding: 2em 0px;
}
.banner-text {
width: 100%;
margin-bottom: 2em;
}
.banner-top {
bottom: -16em;
width: 100%;
}
.banner-text_grid img {
width: 21%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -159px -2px;
min-height: 360px;
background-size: cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -80px -2px;
min-height: 360px;
background-size:cover;
}
.banner-top {
bottom: -2em;
width: 100%;
position: inherit;
}
.banner-text_grid {
padding: 1em 2em;
}
.welcome {
padding: 2em 0px 3em;
}
.content-slogan p {
font-size: 1.1em;
}
.slogan-sub p {
font-size: 0.85em;
}
.images_1_of_3 h3 {
font-size: 1.3em;
}
.blog-left,.blog-right {
padding: 0;
}
.footer-grid ul li a {
font-size: 0.85em;
}
.welcome-one-right {
width: 48%;
}
}
@media (max-width:320px){
.logo {
width: 40%;
}
.logo a img {
width: 100%;
}
.menu {
width: 54%;
}
.search {
width: 60%;
}
.search {
margin: 0.5em 0;
}
.search input[type="text"] {
padding: 3px 27px 3px 6px;
font-size: 0.8em;
}
.search input[type="submit"] {
top: 2px;
right: 2px;
background-size: 83%;
}
.banner-bg {
background: url(images/11.jpg) no-repeat -127px -2px;
min-height: 250px;
background-size: cover;
}
.banner2 {
background: url(images/33.jpg) no-repeat -40px -2px;
min-height: 250px;
background-size: cover;
}
.banner-text_grid img {
width: 40%;
}
.banner-left {
padding: 0 3px;
}
a.bg {
font-size: 0.9em;
}
.blog-one {
margin-top: 10px;
}
.blog-left,.blog-right {
padding: 0;
}
.blog-comments ul li {
margin-right: 3px;
}
span.glyphicon {
font-size: 12px;
}
.blog-right h3,.blog-right h2 {
font-size: 1.05em;
}
.col-md-3.blog-right {
margin-top: 20px;
}
.blog-comments {
padding: 7px 0px;
margin-top: 1em;
}
.pager li > a, .pager li > span {
padding: 2px 15px;
font-size: 12px;
}
.logo {
left: 4%;
text-align: left;
}
#filters li span {
font-size: 9px;
padding: 4px 6px;
margin: 0 0px 0 0;
}
.gallery {
padding: 2em 0px;
}
.gallery-bottom {
margin-top: 4%;
}
.navigation {
height: 11px;
}
span.menu {
margin: -5px 0px 0 0;
}
.callbacks_tabs a:after {
height: 8px;
width: 8px;
}
.welcome {
padding: 1.5em 0px;
}
.welcome-top h1 {
font-size: 1.2em;
}
.welcome-left {
padding: 0;
}
.welcome-one-right {
padding-right: 0;
}
.welcome-left a.one-top {
margin-top: 8px;
}
.welcome-left:nth-child(2) {
margin-top: 5%;
}
.heading h3,.heading h2,.heading h1 {
font-size: 1.2em!important;
}
.blog-main p {
font-size: 0.8em;
}
.welcome-bottom {
margin-top: 3%;
}
.nature-top h3 {
font-size: 1.05em;
}
.nature {
min-height: 205px;
}
.nature-top {
float: none;
margin: 13% auto;
}
.nature {
min-height: 227px;
}
.fields {
padding: 1.5em 0px;
}
.fields-left span {
width: 40px;
height: 40px;
}
.fields-left span.men {
background-position: -40px 0px;
}
.fields-left span.pen {
background-position: -80px 0px;
}
.fields-left {
padding: 0;
}
.contact-left.heading {
padding: 0;
}
.contact-right {
padding: 0;
}
.contact-left p {
margin-top: 5px;
line-height: 1.4em;
}
.contact-right input[type="text"]:nth-child(1) {
margin:0 0 7px 0;
}
.contact-right iframe {
height: 150px;
}
.contact-right input[type="text"] {
width: 100%;
margin-bottom: 3px;
padding: 7px 10px;
font-size: 0.8em;
}
.submit-btn input[type=submit] {
padding: 6px 18px;
font-size: 0.8em;
margin: 4px 0 0 0px;
}
.contact,.about,.team,.blog {
padding: 1.5em 0px;
}
.about-top h4 {
font-size: 0.83em;
margin-top: 3px;
}
.about-left {
width: 100%;
margin-bottom: 4%;
}
.about-left:nth-child(3){
margin-bottom:0
}
.ad-left {
width: 11%;
}
.ad-left p {
padding: 5px 0px;
font-size: 0.8em;
}
.ad-right h4, .advn-two h4 {
font-size: 1em;
}
.advn-one, .advn-two {
margin-top: 5.5%;
}
.ch-grid li {
width: 165px !important;
height: 165px !important;
margin: 6px 35px 9px 41px !important;
}
.ch-info {
width: 125px !important;
height: 125px !important;
}
.ch-info-wrap {
width: 125px !important;
height: 125px !important;
}
.ch-info h3 {
padding: 25px 0 0 0 !important;
height: 64px !important;
font-size: 10px !important;
}
.related {
margin-top: 6%;
}
.reply {
margin-top: 6%;
}
.contact-form {
margin-top: 0.85em;
}
.related-left h4 {
font-size: 14px;
margin: 5px 0 0 0;
}
.contact-form form input[type="text"] {
padding: 5px 15px;
font-size: 12px;
margin: 6px 0;
}
.contact-form form textarea {
height: 100px;
font-size: 12px;
}
.contact-form form input[type="submit"] {
font-size: 11px;
}
.gallery-left {
padding: 0 5px;
}
.gallery-1 {
margin-top: 10px;
}
.gallery-left:nth-child(1), .gallery-left:nth-child(2) {
margin-bottom: 10px;
}
.nature-top p {
font-size: 12px;
}
h2, .h2 {
font-size: 1.1em !important;
}
h1, .h1 {
font-size: 1.1em !important;
}
h3, .h3 {
font-size: 0.9em;
}
h4, .h4 {
font-size: 0.85em;
}
.label {
font-size: 41% !important;
}
.breadcrumb {
margin-bottom: 1em !important;
}
.pagination-lg > li > a, .pagination-lg > li > span {
padding: 8px 12px !important;
font-size: 14px !important;
}
.bs-example h1, .bs-example hh2, .bs-example h3, .bs-example h4, .bs-example h5, .bs-example h6 {
margin: 0px 0 5px;
}
.banner-text_grid p {
line-height: 1.5em;
font-size: 0.88em;
}
.content-slogan p {
font-size: 1em;
}
.images_1_of_3 p {
font-size: 0.85em;
padding: 10px 0px 6px 0px;
}
.images_1_of_3 {
padding: 3% 0% 9%;
}
.images_1_of_3 .button a {
padding: 6px 21px;
font-size: 0.8em;
}
.content {
padding: 0em 0 1.5em;
}
.footer-grid h4 {
font-size: 1.1em;
}
.footer-grid ul li a {
font-size: 0.8em;
padding: 0.1em 0;
}
.footer-grid {
margin-bottom: 1.5em;
float: none;
}
.footer-grid:nth-child(3) {
width: 100%;
}
.footer-grid:nth-child(4) {
width: 100%;
padding-left: 1em;
}
.footer {
line-height: 1.4em;
padding: 1em 0em 0em 0;
}
.text1 h4 {
font-size: 0.9em;
}
.text1 p {
font-size: 0.85em;
line-height: 1.6em;
}
.works h3 {
font-size: 1.3em;
margin-bottom: 0.9em;
}
}
/*--media-quaries-starts-here--*/ | 0.388734 | 0.059483 |
.body {
height: 100vh;
width: 100%;
user-select: none;
margin: auto;
position:fixed;
overflow:hidden;
touch-action: manipulation;
background: aliceblue;
}
#mainTable{
height: 420px;
width: 360px;
margin: 0 auto;
padding-bottom: 10px;
margin-bottom: 20px;
text-align: center;
}
#mainHeader {
text-align: center;
padding-bottom: 10px;
margin-bottom: 20px;
border-bottom: 1px solid black;
}
.infoButton {
border: 1px solid black;
border-radius: 100%;
padding-left: 5px;
padding-right: 5px;
margin:20px;
transform: scale(1.5);
}
/* animation combo -----------------------------------*/
@keyframes infoButton {
0% {}
100% {background-color:white;}
}
.infoButton:active {
animation-name: infoButton;
animation-duration: 0.2s;
background-color:#6AAA64;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
.infoHeader {
text-align: center;
width: 80%;
margin: 0 auto;
padding: 10px;
margin-bottom: 5px;
padding-bottom: 10px;
font-weight: bold;
}
.infoText {
width:75%;
margin: 0 auto;
border-bottom: 1px solid #787C7E;
margin-bottom: 5px;
}
.finePrint {
text-align: center;
font-style: italic;
font-size: 12px;
padding-top: 20px;
}
.statsText {
text-align: center;
}
.statsTable td {
border-right: 2px solid grey;
padding: 10px;
}
.score {
font-size: 5vw;
padding: 20px;
}
.nextPlay {
padding: 15px;
margin-top: 15px;
font-weight: bold;
border-top: 1px solid #787C7E;
}
#nextPegordle {
font-size: 4vw;
color: #00bcd4;
}
.shareButton {
border-radius: 10px;
background-color: green;
width: fit-content;
font-weight: bold;
padding: 16px;
margin: 0 auto;
margin-top: 20px;
}
.shareButton:active {
transform:scale(1.20);
}
.exampleTable td {
border: 1px solid black;
padding: 5px;
font-weight: bold;
}
.popUpInfo {
font-family: sans-serif;
height: 100%;
width: 100%;
padding-bottom: 20px;
background: white;
border: 2px solid #787C7E;
border-radius: 5px;
box-shadow: 0px 0px 16px 3px black;
left: 0;
right: 0;
top: 10%;
z-index: 100;
position: absolute;
margin: 0 auto;
display: none;
}
.closePopUpInfoButton {
height: auto;
width: auto;
margin: 5%;
padding-left: 6px;
padding-right: 6px;
font-size: inherit;
text-align: center;
border-radius: 100%;
background: #ffffff;
position: absolute;
line-height: 35px;
right: 0;
}
.closePopUpInfoButton:active {
transform: scale(1.10);
}
.popUpMsg {
height: fit-content;
width: fit-content;
border-radius: 10px;
background: rgb(120,124,126, 0.75);
font-size: 3vw;
color: white;
border: 1px solid white;
font-family: Georgia, serif;
left: 0;
right: 0;
top: 8vh;
z-index: 101;
position: absolute;
margin: 0 auto;
padding: 20px;
display: none;
}
.headerItem {
font-family: Georgia, sans-serif;
font-weight: 700;
font-size: 40px;
text-align: center;
}
.rowElement {
height: 15%;
width: 100%;
padding: 4px;
}
.colElement {
font-size: 36px;
line-height: 62px;
font-family: monospace;
font-weight: bold;
text-align: center;
height: 100%;
width: 17%;
border: 2px solid #D3D6DA;
display: inline-block;
margin: 2px;
}
.keyboard {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 30px;
white-space: nowrap;
margin: 0 auto;
}
.keyboardRow {
width: 100%;
position: relative;
margin: 0 auto;
text-align: center;
overflow: hidden;
}
.keyboardElement {
font-family: monospace;
font-weight: bold;
font-size: 4vw;
height: fit-content;
width: auto;
border: 1px solid #D3D6DA;
border-radius: 5px;
background: #D3D6DA;
display: inline-block;
text-align: center;
margin: 4px;
padding-top: 3vw;
padding-bottom: 3vw;
padding-left: 3vw;
padding-right: 3vw;
}
.keyboardElementTiny {
font-family: monospace;
font-weight: bold;
font-size: 4vw;
height: fit-content;
width: auto;
border: 1px solid #D3D6DA;
border-radius: 5px;
background: #D3D6DA;
display: inline-block;
text-align: center;
margin: 1px;
padding-top: 3vw;
padding-bottom: 3vw;
padding-left: 3vw;
padding-right: 3vw;
}
.iconDelete {
background-image: url("images/delete.png");
background-repeat: no-repeat;
background-size: 90%;
background-position: center;
}
/* animation combo -----------------------------------*/
@keyframes correctKeyboardLetter {
from {}
to { background-color: #6AAA64;
border-color: #6AAA64;
color:white;
}
}
.correctKeyboardLetter {
animation-name: correctKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes existsKeyboardLetter {
from {}
to { background-color: #C9B458;
border-color: #C9B458;
color:white;
}
}
.existsKeyboardLetter {
animation-name: existsKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes incorrectKeyboardLetter {
from {}
to { background-color: #787C7E;
border-color: #787C7E;
color:white;
}
}
.incorrectKeyboardLetter {
animation-name: incorrectKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes popLetter {
from { transform: scale(0.80);}
to { transform: scale(1.1);}
}
.addLetter {
border-color: black;
animation-name: popLetter;
animation-duration: 0.1s;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipCorrect {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #6AAA64;
border-color: #6AAA64;
color:white;
}
}
.correctLetter {
animation-name: flipCorrect;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipWrong {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #787C7E;
border-color: #787C7E;
color:white;
}
}
.incorrectLetter {
animation-name: flipWrong;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipExists {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #C9B458;
border-color: #C9B458;
color:white;
}
}
.existsLetter {
animation-name: flipExists;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes badWord {
0% {transform: translateX(0px);}
25% {transform: translateX(-10px);}
50% {transform: translateX(10px);}
75% {transform: translateX(-10px);}
100% {transform: translateX(10px);}
}
.badWord {
animation-name: badWord;
animation-duration: 0.2s;
}
/* -------------------------------------------------- */ | styles.css | .body {
height: 100vh;
width: 100%;
user-select: none;
margin: auto;
position:fixed;
overflow:hidden;
touch-action: manipulation;
background: aliceblue;
}
#mainTable{
height: 420px;
width: 360px;
margin: 0 auto;
padding-bottom: 10px;
margin-bottom: 20px;
text-align: center;
}
#mainHeader {
text-align: center;
padding-bottom: 10px;
margin-bottom: 20px;
border-bottom: 1px solid black;
}
.infoButton {
border: 1px solid black;
border-radius: 100%;
padding-left: 5px;
padding-right: 5px;
margin:20px;
transform: scale(1.5);
}
/* animation combo -----------------------------------*/
@keyframes infoButton {
0% {}
100% {background-color:white;}
}
.infoButton:active {
animation-name: infoButton;
animation-duration: 0.2s;
background-color:#6AAA64;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
.infoHeader {
text-align: center;
width: 80%;
margin: 0 auto;
padding: 10px;
margin-bottom: 5px;
padding-bottom: 10px;
font-weight: bold;
}
.infoText {
width:75%;
margin: 0 auto;
border-bottom: 1px solid #787C7E;
margin-bottom: 5px;
}
.finePrint {
text-align: center;
font-style: italic;
font-size: 12px;
padding-top: 20px;
}
.statsText {
text-align: center;
}
.statsTable td {
border-right: 2px solid grey;
padding: 10px;
}
.score {
font-size: 5vw;
padding: 20px;
}
.nextPlay {
padding: 15px;
margin-top: 15px;
font-weight: bold;
border-top: 1px solid #787C7E;
}
#nextPegordle {
font-size: 4vw;
color: #00bcd4;
}
.shareButton {
border-radius: 10px;
background-color: green;
width: fit-content;
font-weight: bold;
padding: 16px;
margin: 0 auto;
margin-top: 20px;
}
.shareButton:active {
transform:scale(1.20);
}
.exampleTable td {
border: 1px solid black;
padding: 5px;
font-weight: bold;
}
.popUpInfo {
font-family: sans-serif;
height: 100%;
width: 100%;
padding-bottom: 20px;
background: white;
border: 2px solid #787C7E;
border-radius: 5px;
box-shadow: 0px 0px 16px 3px black;
left: 0;
right: 0;
top: 10%;
z-index: 100;
position: absolute;
margin: 0 auto;
display: none;
}
.closePopUpInfoButton {
height: auto;
width: auto;
margin: 5%;
padding-left: 6px;
padding-right: 6px;
font-size: inherit;
text-align: center;
border-radius: 100%;
background: #ffffff;
position: absolute;
line-height: 35px;
right: 0;
}
.closePopUpInfoButton:active {
transform: scale(1.10);
}
.popUpMsg {
height: fit-content;
width: fit-content;
border-radius: 10px;
background: rgb(120,124,126, 0.75);
font-size: 3vw;
color: white;
border: 1px solid white;
font-family: Georgia, serif;
left: 0;
right: 0;
top: 8vh;
z-index: 101;
position: absolute;
margin: 0 auto;
padding: 20px;
display: none;
}
.headerItem {
font-family: Georgia, sans-serif;
font-weight: 700;
font-size: 40px;
text-align: center;
}
.rowElement {
height: 15%;
width: 100%;
padding: 4px;
}
.colElement {
font-size: 36px;
line-height: 62px;
font-family: monospace;
font-weight: bold;
text-align: center;
height: 100%;
width: 17%;
border: 2px solid #D3D6DA;
display: inline-block;
margin: 2px;
}
.keyboard {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 30px;
white-space: nowrap;
margin: 0 auto;
}
.keyboardRow {
width: 100%;
position: relative;
margin: 0 auto;
text-align: center;
overflow: hidden;
}
.keyboardElement {
font-family: monospace;
font-weight: bold;
font-size: 4vw;
height: fit-content;
width: auto;
border: 1px solid #D3D6DA;
border-radius: 5px;
background: #D3D6DA;
display: inline-block;
text-align: center;
margin: 4px;
padding-top: 3vw;
padding-bottom: 3vw;
padding-left: 3vw;
padding-right: 3vw;
}
.keyboardElementTiny {
font-family: monospace;
font-weight: bold;
font-size: 4vw;
height: fit-content;
width: auto;
border: 1px solid #D3D6DA;
border-radius: 5px;
background: #D3D6DA;
display: inline-block;
text-align: center;
margin: 1px;
padding-top: 3vw;
padding-bottom: 3vw;
padding-left: 3vw;
padding-right: 3vw;
}
.iconDelete {
background-image: url("images/delete.png");
background-repeat: no-repeat;
background-size: 90%;
background-position: center;
}
/* animation combo -----------------------------------*/
@keyframes correctKeyboardLetter {
from {}
to { background-color: #6AAA64;
border-color: #6AAA64;
color:white;
}
}
.correctKeyboardLetter {
animation-name: correctKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes existsKeyboardLetter {
from {}
to { background-color: #C9B458;
border-color: #C9B458;
color:white;
}
}
.existsKeyboardLetter {
animation-name: existsKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes incorrectKeyboardLetter {
from {}
to { background-color: #787C7E;
border-color: #787C7E;
color:white;
}
}
.incorrectKeyboardLetter {
animation-name: incorrectKeyboardLetter;
animation-duration: 0.6s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes popLetter {
from { transform: scale(0.80);}
to { transform: scale(1.1);}
}
.addLetter {
border-color: black;
animation-name: popLetter;
animation-duration: 0.1s;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipCorrect {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #6AAA64;
border-color: #6AAA64;
color:white;
}
}
.correctLetter {
animation-name: flipCorrect;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipWrong {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #787C7E;
border-color: #787C7E;
color:white;
}
}
.incorrectLetter {
animation-name: flipWrong;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes flipExists {
0% {transform: scaleY(1);}
70% {transform: scaleY(0.01);}
100% {transform: scaleY(1);
background-color: #C9B458;
border-color: #C9B458;
color:white;
}
}
.existsLetter {
animation-name: flipExists;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* -------------------------------------------------- */
/* animation combo -----------------------------------*/
@keyframes badWord {
0% {transform: translateX(0px);}
25% {transform: translateX(-10px);}
50% {transform: translateX(10px);}
75% {transform: translateX(-10px);}
100% {transform: translateX(10px);}
}
.badWord {
animation-name: badWord;
animation-duration: 0.2s;
}
/* -------------------------------------------------- */ | 0.515864 | 0.060169 |
.exploreRequests {
font-family: 'Open Sans';
}
.exploreRequests .header{
width: 100%;
height:545px;
background-color: #000000;
display: flex;
overflow: hidden;
color:#FFFFFF;
}
.exploreRequests .greetingText{
display: flex;
flex-direction: column;
font-family: 'Open Sans';
width: 570px;
padding-left: 210px;
z-index: 1;
}
.exploreRequests .header .hey{
font-size: 2.4em;
margin-top: 110px;
font-weight: 600;
}
.exploreRequests .header .name{
font-size: 5.3em;
display: block;
line-height: 0.7em;
font-weight: bold;
}
.exploreRequests .header .punchline{
width: 320px;
font-size: 2.1em;
margin-top: 20px;
}
.exploreRequests .header md-select{
width: 320px;
color: white !important;
}
.exploreRequests .header md-select-value{
margin-top: 35px;
font-size: 1.5em;
border-color: white;
border-top-width: 1px;
border-top-style: solid;
padding:20px;
color:white;
}
.exploreRequests .header md-select:not([disabled]):focus .md-select-value {
border-bottom-color:white;
padding:20px;
border-top-width: 2px;
color:white;
}
.exploreRequests .headerImageBlock{
display: inline-block;
width: 70%;
height:100%;
background-image: url('/assets/images/header.jpg');
background-size: cover;
background-position: right;
}
.exploreRequests .actionBar{
height: 80px;
width: 1024px;
display: flex;
margin: auto;
justify-content:space-between;
font-size: 1.5em;
align-items:center;
}
.exploreRequests .layoutBar{
display: flex;
height: 100%;
align-items:center;
font-size: 1.75em;
color: #d6d6d6;
}
.exploreRequests .layoutBar div{
display: inline-block;
position: relative;
height: 80px;
}
.exploreRequests .layoutBar input{
opacity: 0;
position:absolute;
width:100%;
height:100%;
cursor: pointer;
}
.exploreRequests .layoutBar label{
padding-right: 10px;
padding-left: 10px;
height:70px;
}
.exploreRequests .layoutBar :checked + label{
color:#000000;
border-color: #e5c614;
border-width:0 0 6px 0;
border-style: solid;
}
.exploreRequests .sortBar{
min-width: 220px;
margin-left: auto;
margin-right: 40px;
display: flex;
border-style: solid;
border-width:0 0 2px 0;
border-color:#d6d6d6;
padding-bottom: 5px;
}
.exploreRequests .sortBar md-select{
width: 100%;
margin:0;
}
.exploreRequests .sortBar md-select-value{
padding: 0;
border:none;
}
.exploreRequests .sortBar md-select:not([disabled]):focus .md-select-value {
padding: 0;
border:none;
}
.exploreRequests .searchBar{
margin-right: 10px;
display: flex;
padding-bottom: 5px;
border-style:solid;
border-width:0 0 2px 0;
border-color:#d6d6d6;
}
.exploreRequests .searchBar input{
width: 100%;
outline: none;
border:none;
}
.exploreRequests .searchBar i{
font-size: 1.5em;
}
.exploreRequests .listRequests{
padding-top: 60px;
width: 100%;
background-color: #f6f6f6;
}
.exploreRequests .listRequests .paginationBlock{
display: flex;
justify-content: center;
}
.exploreRequests .listRequests .paginationBlock li a {
color: #1c8cb2;
}
.exploreRequests .listRequests .paginationBlock li.active a {
background: #1c8cb2;
color: #fff;
border-color: #1c8cb2;
}
.exploreRequests .listRequestsItem{
display: flex;
justify-content: center;
margin: auto;
margin-top: 20px;
background-color: #FFFFFF;
border-style: solid;
border-width: 0px 1px 2px 1px;
border-color:#d6d6d6;
width: 1024px;
height:240px;
}
.exploreRequests .pictureBlock{
height: 100%;
width: 240px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.exploreRequests .pictureContainer{
width: 200px;
height:200px;
display: flex;
justify-content: center;
margin: auto;
position: relative;
}
.exploreRequests .pictureBlock .image{
width: 200px;
height:200px;
background-size: cover;
background-position: center;
}
.exploreRequests .imgCtrlBtn{
position: absolute;
bottom:0%;
left: 50%;
transform: translate(-50%, 0);
font-size: 2em;
color: white;
display: block;
}
.exploreRequests .imgCtrlBtn i{
outline: none;
}
.exploreRequests .imgCtrlBtn .disabled{
opacity:0.3;
pointer-events:none;
}
.exploreRequests .descriptionBlock{
width: 580px;
display: flex;
display: -webkit-flex;
flex-direction:column;
justify-content: center;
padding-top: 40px;
padding-bottom: 30px;
padding-left: 35px;
padding-right: 35px;
}
.exploreRequests .descriptionBlock .date{
color:#626262;
}
.exploreRequests .descriptionBlock .punchline{
font-size: 1.5em;
font-weight: bold;
max-height: 4.5em;
overflow: hidden;
margin-bottom: 5px;
}
.exploreRequests .descriptionBlock .description{
max-height:3em;
overflow: hidden;
}
.exploreRequests .descriptionBlock .baseBlock{
display: -webkit-flex;
display:flex;
align-items:center;
margin-top: auto;
}
.exploreRequests .descriptionBlock .tags{
display:flex;
overflow: hidden;
}
.exploreRequests .descriptionBlock .consultRequest {
margin-left: auto;
display: flex;
align-items:center;
}
.exploreRequests .descriptionBlock .consultRequest button{
margin: auto;
font-weight: bold;
color: white;
background-color: #e5c614;
padding:10px 15px 10px 15px;
outline: none;
border: none;
border-radius: 3px;
}
.exploreRequests .descriptionBlock .consultRequest i{
padding-left: 15px;
}
.exploreRequests .descriptionBlock .tag{
display: inline-block;
margin-right: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 8px;
padding-bottom: 8px;
background-color: #f6f6f6;
border:1px #dadada solid;
}
.exploreRequests .infosBlock{
width: 210px;
height: 100%;
padding-top: 30px;
display: flex;
flex-direction:column;
justify-content:space-between;
border-style: solid;
border-width: 0px 0px 0px 2px;
border-color:#d6d6d6;
padding-left: 30px;
padding-right: 30px;
}
.exploreRequests .infosBlock .upperBlock{
display: flex;
flex-direction:column;
height:40%;
}
.exploreRequests .infosBlock .date{
background-color: #f6f6f6;
min-width: 0%;
height: 40px;
border-radius: 3px;
font-size: 1.15em;
display: flex;
align-items: center;
font-weight: 600;
}
.exploreRequests .infosBlock .date i{
padding-left: 10px;
padding-right: 5px;
font-size: 1.3em;
}
.exploreRequests .infosBlock .date span{
width: 100%;
text-align: center;
}
.exploreRequests .infosBlock .nbPropositions{
padding-top:5px;
padding-left: 3px;
}
.exploreRequests .infosBlock .lowerBlock{
display: flex;
flex-direction:column;
justify-content:center;
height:60%;
width: 100%;
padding-left: 3px;
}
.exploreRequests .infosBlock .owner{
font-size: 1.5em;
font-weight: 600;
}
.exploreRequests .infosBlock .reputation{
display: flex;
}
.exploreRequests .infosBlock .reputationValue{
align-self:flex-start;
font-size: 2.4em;
font-weight: 300;
margin-right: 5px;
}
.exploreRequests .infosBlock .reputationData{
display: flex;
flex-direction:column;
justify-content:center;
}
.exploreRequests .infosBlock .reputationStars{
/*align-self:flex-end;*/
}
.exploreRequests .infosBlock .reputationStars i{
color:#c9c9c9;
margin-right: 5px;
}
.exploreRequests .infosBlock .reputationStars .starFull{
color:#ffe226;
}
.exploreRequests .infosBlock .reputationNb{
align-self:flex-start;
font-size: 0.9em;
}
.exploreRequests .actionBlock{
display: flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding: 80px;
background-color: #e5c614;
color:white;
}
.exploreRequests .actionBlock h1{
font-weight: bold;
font-size: 2.7em;
}
.exploreRequests .actionBlock p{
margin-bottom: 45px;
font-size:1.5em;
width:820px;
text-align: center;
}
.exploreRequests .actionBlock button{
font-size:1.5em;
background-color: #FFFFFF;
color: #000000;
border:none;
font-family: 'Open Sans';
font-weight: 300;
padding: 20px 30px 20px 30px;
}
.exploreRequests .actionBlock i{
color: #e5c614;
}
.exploreRequests .mozaicRequests{
display: flex;
justify-content: center;
margin-top: 60px;
}
.exploreRequests .mozaicRequests .imageMozaic{
margin: 11px;
width: 327px;
height:218px;
overflow: hidden;
background-size: cover;
background-position: center center;
}
.exploreRequests .mozaicRequests .deckgrid[deckgrid]::before {
content: '5 .column.column-1-5';
font-size: 0;
visibility: hidden;
}
.exploreRequests .mozaicRequests .deckgrid .column {
float: left;
}
.exploreRequests .mozaicRequests .deckgrid .column-1-3 {
width: 30%;
}
.exploreRequests .mozaicRequests .a-card{
position: relative;
overflow: hidden;
} | test.css | .exploreRequests {
font-family: 'Open Sans';
}
.exploreRequests .header{
width: 100%;
height:545px;
background-color: #000000;
display: flex;
overflow: hidden;
color:#FFFFFF;
}
.exploreRequests .greetingText{
display: flex;
flex-direction: column;
font-family: 'Open Sans';
width: 570px;
padding-left: 210px;
z-index: 1;
}
.exploreRequests .header .hey{
font-size: 2.4em;
margin-top: 110px;
font-weight: 600;
}
.exploreRequests .header .name{
font-size: 5.3em;
display: block;
line-height: 0.7em;
font-weight: bold;
}
.exploreRequests .header .punchline{
width: 320px;
font-size: 2.1em;
margin-top: 20px;
}
.exploreRequests .header md-select{
width: 320px;
color: white !important;
}
.exploreRequests .header md-select-value{
margin-top: 35px;
font-size: 1.5em;
border-color: white;
border-top-width: 1px;
border-top-style: solid;
padding:20px;
color:white;
}
.exploreRequests .header md-select:not([disabled]):focus .md-select-value {
border-bottom-color:white;
padding:20px;
border-top-width: 2px;
color:white;
}
.exploreRequests .headerImageBlock{
display: inline-block;
width: 70%;
height:100%;
background-image: url('/assets/images/header.jpg');
background-size: cover;
background-position: right;
}
.exploreRequests .actionBar{
height: 80px;
width: 1024px;
display: flex;
margin: auto;
justify-content:space-between;
font-size: 1.5em;
align-items:center;
}
.exploreRequests .layoutBar{
display: flex;
height: 100%;
align-items:center;
font-size: 1.75em;
color: #d6d6d6;
}
.exploreRequests .layoutBar div{
display: inline-block;
position: relative;
height: 80px;
}
.exploreRequests .layoutBar input{
opacity: 0;
position:absolute;
width:100%;
height:100%;
cursor: pointer;
}
.exploreRequests .layoutBar label{
padding-right: 10px;
padding-left: 10px;
height:70px;
}
.exploreRequests .layoutBar :checked + label{
color:#000000;
border-color: #e5c614;
border-width:0 0 6px 0;
border-style: solid;
}
.exploreRequests .sortBar{
min-width: 220px;
margin-left: auto;
margin-right: 40px;
display: flex;
border-style: solid;
border-width:0 0 2px 0;
border-color:#d6d6d6;
padding-bottom: 5px;
}
.exploreRequests .sortBar md-select{
width: 100%;
margin:0;
}
.exploreRequests .sortBar md-select-value{
padding: 0;
border:none;
}
.exploreRequests .sortBar md-select:not([disabled]):focus .md-select-value {
padding: 0;
border:none;
}
.exploreRequests .searchBar{
margin-right: 10px;
display: flex;
padding-bottom: 5px;
border-style:solid;
border-width:0 0 2px 0;
border-color:#d6d6d6;
}
.exploreRequests .searchBar input{
width: 100%;
outline: none;
border:none;
}
.exploreRequests .searchBar i{
font-size: 1.5em;
}
.exploreRequests .listRequests{
padding-top: 60px;
width: 100%;
background-color: #f6f6f6;
}
.exploreRequests .listRequests .paginationBlock{
display: flex;
justify-content: center;
}
.exploreRequests .listRequests .paginationBlock li a {
color: #1c8cb2;
}
.exploreRequests .listRequests .paginationBlock li.active a {
background: #1c8cb2;
color: #fff;
border-color: #1c8cb2;
}
.exploreRequests .listRequestsItem{
display: flex;
justify-content: center;
margin: auto;
margin-top: 20px;
background-color: #FFFFFF;
border-style: solid;
border-width: 0px 1px 2px 1px;
border-color:#d6d6d6;
width: 1024px;
height:240px;
}
.exploreRequests .pictureBlock{
height: 100%;
width: 240px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.exploreRequests .pictureContainer{
width: 200px;
height:200px;
display: flex;
justify-content: center;
margin: auto;
position: relative;
}
.exploreRequests .pictureBlock .image{
width: 200px;
height:200px;
background-size: cover;
background-position: center;
}
.exploreRequests .imgCtrlBtn{
position: absolute;
bottom:0%;
left: 50%;
transform: translate(-50%, 0);
font-size: 2em;
color: white;
display: block;
}
.exploreRequests .imgCtrlBtn i{
outline: none;
}
.exploreRequests .imgCtrlBtn .disabled{
opacity:0.3;
pointer-events:none;
}
.exploreRequests .descriptionBlock{
width: 580px;
display: flex;
display: -webkit-flex;
flex-direction:column;
justify-content: center;
padding-top: 40px;
padding-bottom: 30px;
padding-left: 35px;
padding-right: 35px;
}
.exploreRequests .descriptionBlock .date{
color:#626262;
}
.exploreRequests .descriptionBlock .punchline{
font-size: 1.5em;
font-weight: bold;
max-height: 4.5em;
overflow: hidden;
margin-bottom: 5px;
}
.exploreRequests .descriptionBlock .description{
max-height:3em;
overflow: hidden;
}
.exploreRequests .descriptionBlock .baseBlock{
display: -webkit-flex;
display:flex;
align-items:center;
margin-top: auto;
}
.exploreRequests .descriptionBlock .tags{
display:flex;
overflow: hidden;
}
.exploreRequests .descriptionBlock .consultRequest {
margin-left: auto;
display: flex;
align-items:center;
}
.exploreRequests .descriptionBlock .consultRequest button{
margin: auto;
font-weight: bold;
color: white;
background-color: #e5c614;
padding:10px 15px 10px 15px;
outline: none;
border: none;
border-radius: 3px;
}
.exploreRequests .descriptionBlock .consultRequest i{
padding-left: 15px;
}
.exploreRequests .descriptionBlock .tag{
display: inline-block;
margin-right: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 8px;
padding-bottom: 8px;
background-color: #f6f6f6;
border:1px #dadada solid;
}
.exploreRequests .infosBlock{
width: 210px;
height: 100%;
padding-top: 30px;
display: flex;
flex-direction:column;
justify-content:space-between;
border-style: solid;
border-width: 0px 0px 0px 2px;
border-color:#d6d6d6;
padding-left: 30px;
padding-right: 30px;
}
.exploreRequests .infosBlock .upperBlock{
display: flex;
flex-direction:column;
height:40%;
}
.exploreRequests .infosBlock .date{
background-color: #f6f6f6;
min-width: 0%;
height: 40px;
border-radius: 3px;
font-size: 1.15em;
display: flex;
align-items: center;
font-weight: 600;
}
.exploreRequests .infosBlock .date i{
padding-left: 10px;
padding-right: 5px;
font-size: 1.3em;
}
.exploreRequests .infosBlock .date span{
width: 100%;
text-align: center;
}
.exploreRequests .infosBlock .nbPropositions{
padding-top:5px;
padding-left: 3px;
}
.exploreRequests .infosBlock .lowerBlock{
display: flex;
flex-direction:column;
justify-content:center;
height:60%;
width: 100%;
padding-left: 3px;
}
.exploreRequests .infosBlock .owner{
font-size: 1.5em;
font-weight: 600;
}
.exploreRequests .infosBlock .reputation{
display: flex;
}
.exploreRequests .infosBlock .reputationValue{
align-self:flex-start;
font-size: 2.4em;
font-weight: 300;
margin-right: 5px;
}
.exploreRequests .infosBlock .reputationData{
display: flex;
flex-direction:column;
justify-content:center;
}
.exploreRequests .infosBlock .reputationStars{
/*align-self:flex-end;*/
}
.exploreRequests .infosBlock .reputationStars i{
color:#c9c9c9;
margin-right: 5px;
}
.exploreRequests .infosBlock .reputationStars .starFull{
color:#ffe226;
}
.exploreRequests .infosBlock .reputationNb{
align-self:flex-start;
font-size: 0.9em;
}
.exploreRequests .actionBlock{
display: flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding: 80px;
background-color: #e5c614;
color:white;
}
.exploreRequests .actionBlock h1{
font-weight: bold;
font-size: 2.7em;
}
.exploreRequests .actionBlock p{
margin-bottom: 45px;
font-size:1.5em;
width:820px;
text-align: center;
}
.exploreRequests .actionBlock button{
font-size:1.5em;
background-color: #FFFFFF;
color: #000000;
border:none;
font-family: 'Open Sans';
font-weight: 300;
padding: 20px 30px 20px 30px;
}
.exploreRequests .actionBlock i{
color: #e5c614;
}
.exploreRequests .mozaicRequests{
display: flex;
justify-content: center;
margin-top: 60px;
}
.exploreRequests .mozaicRequests .imageMozaic{
margin: 11px;
width: 327px;
height:218px;
overflow: hidden;
background-size: cover;
background-position: center center;
}
.exploreRequests .mozaicRequests .deckgrid[deckgrid]::before {
content: '5 .column.column-1-5';
font-size: 0;
visibility: hidden;
}
.exploreRequests .mozaicRequests .deckgrid .column {
float: left;
}
.exploreRequests .mozaicRequests .deckgrid .column-1-3 {
width: 30%;
}
.exploreRequests .mozaicRequests .a-card{
position: relative;
overflow: hidden;
} | 0.343672 | 0.060308 |
*
* @author <NAME>
*/
/*$superlight_grey: #efefef */
/* Sass Mixin: Vendor
*
* @author <NAME>
*/
/* Sass Component: Base Settings
*
* @author <NAME>
*/
html {
min-width: 100%;
position: absolute; }
body {
color: black;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
position: absolute;
background: white;
color: #333333;
font-family: Source Sans Pro;
font-weight: lighter; }
body * {
-moz-box-sizing: border-box;
box-sizing: border-box; }
a {
text-decoration: none;
color: black;
border: 0;
outline: 0;
-webkit-transition: all 0.5s;
transition: all 0.5s; }
a:hover {
cursor: pointer;
opacity: 0.6;
filter: alpha(opacity=60); }
p {
font-size: 1rem; }
img {
max-width: 100%; }
.dark-on-light {
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto; }
.light-on-dark {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.button {
float: right;
font-size: 21px;
display: inline-block;
color: #1a222f;
background: white;
margin: 1rem 0;
padding: 10px 25px;
text-transform: uppercase;
border-radius: 5px;
background: #0ab15a;
color: white;
text-align: center;
-webkit-transition: all 0.5s;
transition: all 0.5s; }
.button:hover {
cursor: pointer; }
.button.active, .button.button_blue {
background: #1a222f;
color: white;
border: solid 1px transparent; }
.button.button_blue:hover, .button.switch:hover, .button.switch.active {
opacity: 1 !important;
color: #1a222f;
background: transparent;
border: solid 1px #1a222f; }
.button.ghost {
background: transparent;
border: solid 1px #1a222f;
color: #1a222f; }
.button.full {
width: 100%; }
.table_heading {
font-family: Droid Serif;
margin-bottom: 0.25em; }
.table_underline {
color: gray;
margin-top: 0; }
.table_image {
border: solid 2px #848484;
border-radius: 50%;
max-width: 120px; }
/* Sass Component: Header
*
* @author <NAME>
*/
.header.section {
background: #1a222f;
color: white;
font-size: 1.25rem;
border-bottom: solid 4px #0ab15a;
position: fixed;
z-index: 10; }
.header.section .section_content {
padding: 0rem 2rem; }
.header.section .section_content .header_title {
display: flex;
align-items: center; }
.header.section .section_content .header_title .fa {
margin-right: 1rem; }
.header.section .section_content .header_title span:last-child {
font-weight: bold;
text-transform: uppercase; }
.header.section .section_content .header_title img {
width: 39px;
height: 43px;
margin-right: 0.5rem; }
/* Sass Component: Menus
*
* @author <NAME>
*/
.header_menu_list {
display: flex;
list-style: none;
padding: 0;
margin: 0; }
.header_menu_list_item {
display: flex;
align-items: center;
padding: 1rem; }
.header_menu_list_item.active {
color: #0ab15a; }
.header_menu_list_item a {
color: white; }
.header_menu_list_item a .fa {
margin-right: 0.5rem; }
@media only screen and (max-width: 640px) {
.header_menu_list_item {
width: 25%; }
.header_menu_list_item a {
width: 100%; }
.header_menu_list_item a .fa {
margin: 0; }
.header_menu_list_item:first-child {
margin-left: 0; }
.header span {
display: none; } }
/* Sass Component: Section-Elements
*
* @author <NAME>
*/
.section {
position: relative;
width: 100%; }
.section_content {
position: relative;
margin: auto;
max-width: 1280px;
padding: 0 2rem;
padding-bottom: 2rem;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between; }
.section_content .section_content_heading_small .fa {
margin-right: 1rem; }
.row {
width: 100%; }
.row.row3 {
display: flex;
flex-direction: row;
margin-left: 320px;
padding: 0 1rem; }
.row .col {
width: 100%;
float: left; }
.row .col > img {
float: left;
position: relative; }
.row .col2 {
width: 50%; }
.row .col2:first-child {
padding-right: 0.5rem; }
.row .col2:last-child {
padding-left: 0.5rem; }
.row .col34 {
width: 75%; }
.row .col14 {
width: 25%; }
.sidebar {
width: 320px;
position: fixed;
background: white;
/*box-shadow: 0 3px 10px #efefef */
height: 100%; }
.sidebar .button {
float: none; }
.chart {
margin: 1rem; }
@media only screen and (max-width: 560px) {
.section_content {
padding: 0.5rem; }
.row .col2 {
width: 100%;
padding: 0 !important; } }
/* Sass Component: Page-Slider
*
* @author <NAME>
*/
.page-slider {
overflow-y: hidden;
overflow-x: scroll;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-transform: translate3d(0, 0, 0);
width: 100%;
/* margin-bottom: 1em */
position: relative;
margin-bottom: 0; }
.page-slider .page {
list-style: none;
display: inline-block;
margin-right: 1rem;
margin-bottom: 1rem;
border-radius: 7px;
cursor: pointer;
box-shadow: 0 1px 12px #cccccc;
position: relative; }
.page-slider .page.active {
background: white;
margin-bottom: 0;
padding-bottom: 1rem;
border-radius: 7px 7px 0 0; }
.page-slider .page.add .page-thumb {
border-top: dashed 3px rgba(255, 255, 255, 0.5);
border-left: dashed 3px rgba(255, 255, 255, 0.5);
border-right: dashed 3px rgba(255, 255, 255, 0.5);
color: rgba(255, 255, 255, 0.5); }
.page-slider .page.add:hover .page-thumb {
border-color: white;
color: white; }
.page-slider .page.all .page-thumb .mini-overlay {
background: white;
color: green; }
.page-slider .page:last-child {
margin-right: 0; }
.page-slider .page .page-thumb {
width: 240px;
height: 120px;
border-radius: 7px 7px 0 0;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-size: 5rem; }
.page-slider .page .page-thumb iframe {
width: 1200px;
height: 750px;
transform: scale(0.2);
transform-origin: left top;
position: absolute;
border: none;
left: 0; }
.page-slider .page .page-thumb .mini-overlay {
background: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
z-index: 1;
display: flex;
height: 100%;
align-items: center;
justify-content: center;
opacity: 0.85;
color: white;
border-radius: 7px 7px 0 0; }
.page-slider .page .page-thumb .mini-overlay canvas {
max-height: 60px;
max-width: 60px;
padding: 0.5rem; }
.page-slider .page .page-thumb .preview-value {
font-size: 3rem; }
.page-slider .page .page-meta {
padding: 0.5rem;
background: white;
border-radius: 0px 0px 7px 7px; }
.page-slider .page .page-meta h3 {
margin: 0;
text-align: center; }
/* Lists Sass File
*
* @author <NAME>
*/
.boxlist {
list-style: none;
padding: 0;
margin: 0; }
.boxlist.full {
display: flex;
align-items: stretch;
justify-content: space-between; }
.feature-box {
display: inline-flex;
padding: 0.25rem;
border-radius: 5px;
background: #0ab15a;
color: white; }
.feature-box .fa {
margin-right: 0.5rem; }
.browser-box {
text-align: center;
display: inline-block; }
.browser-box .browser-image {
width: 60px;
height: 60px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: white;
margin: auto; }
.browser-box .browser-image.ie {
background-image: url(../img/ie.png); }
.browser-box .browser-image.safari {
background-image: url(../img/safari.png); }
.browser-box .browser-image.chrome {
background-image: url(../img/chrome.png); }
.browser-box .browser-image.opera {
background-image: url(../img/opera.png); }
.browser-box .browser-image.firefox {
background-image: url(../img/firefox.png); }
.query-box {
display: flex;
align-items: center;
justify-content: space-between; }
.input {
-webkit-appearance: none;
border: none;
font-size: 2rem;
max-width: 200px;
border-bottom: solid 2px #333333;
outline: none;
font-family: Source Sans Pro;
font-weight: green;
padding-left: 0.5rem; }
.input:focus {
border-color: #0ab15a; }
.element {
display: flex;
align-items: center;
margin-top: 1rem;
margin-left: 2rem;
cursor: pointer; }
.element:hover .element-box {
transform: scale(1.05); }
.element:hover .element-box .element-property {
color: #222222; }
.element:hover .element-box .element-property .fa.fa-bolt {
color: #fcee07; }
.element:hover .element-box .element-property .fa.fa-long-arrow-down {
color: #cc0000; }
.element:hover .element-bar .element-bar-content {
background: #28948c; }
.element:nth-child(2) .element-bar .element-bar-content {
width: 65%; }
.element:nth-child(3) .element-bar .element-bar-content {
width: 56%; }
.element:nth-child(4) .element-bar .element-bar-content {
width: 46%; }
.element:nth-child(5) .element-bar .element-bar-content {
width: 35%; }
.element:nth-child(6) .element-bar .element-bar-content {
width: 17%; }
.element:nth-child(7) .element-bar .element-bar-content {
width: 12%; }
.element:nth-child(8) .element-bar .element-bar-content {
width: 9%; }
.element:nth-child(9) .element-bar .element-bar-content {
width: 3%; }
.element .element-box {
transition: transform 0.15s;
display: flex;
background: white;
border-radius: 5px;
box-shadow: 0 0 10px #eeeeee;
flex-grow: 1;
/* max-width: 400px */
min-width: 320px;
max-height: 4rem; }
.element .element-box .browser-image {
width: 25px;
height: 25px; }
.element .element-box .chart-overlay {
width: 100%;
height: 100%;
position: absolute;
display: flex;
align-items: center;
z-index: 1;
text-align: center; }
.element .element-box .chart-overlay strong {
width: 100%;
font-size: 1rem; }
.element .element-box .chart-overlay strong sup {
font-size: 0.5rem; }
.element .element-percentage {
max-width: 60px;
max-height: 60px;
margin: 0.5rem;
position: relative;
display: flex; }
.element .element-description {
padding: 0.35rem;
border-left: solid 1px #eeeeee;
width: 100%; }
.element .element-description h2 {
margin: 0;
font-size: 1.25rem; }
.element .element-property {
color: #888888;
display: flex;
align-items: center;
max-height: 25px;
margin-right: 0.5rem; }
.element .element-property > span {
font-weight: bold;
font-size: 1rem; }
.element .element-property .fa {
margin-right: 0.25rem; }
.element .element-separator {
flex-grow: 2;
margin-left: 1rem;
height: 2px;
background: #afafaf;
border-radius: 5px;
box-shadow: 0 0 10px #eeeeee; }
.element .element-bar {
flex-grow: 10;
margin-left: 1rem; }
.element .element-bar .element-bar-content {
transition: background 0.15s;
width: 77%;
height: 100%;
background: #3eb5ac;
color: white;
border-radius: 5px;
padding: 0.75rem; }
.section.overview {
background: #394963;
background: #dfe9f2;
margin-top: calc(4rem + 3px); }
.section.overview .section_content {
padding: 0; }
.section.elements .section_content {
padding-left: 0;
padding-right: 0; }
.chart {
position: relative;
margin: 1rem auto; }
.chart.site {
max-height: 200px;
max-width: 200px; }
.chart input {
height: 100px;
-webkit-appearance: none;
box-shadow: none;
border: none;
background: none;
border-bottom: solid 1px white;
width: 100%;
font-size: 4rem;
font-family: Roboto;
color: white; }
.chart.elements {
width: 100%; }
canvas {
z-index: 1; }
.chart-value {
position: absolute;
width: 100%;
text-align: center;
height: 100%;
font-size: 4rem;
line-height: 11rem;
vertical-align: middle;
z-index: 0; }
.chart-value sup {
font-size: 1rem;
vertical-align: super;
margin-top: 0rem;
top: -0.6rem;
position: relative; }
.support {
background: white; }
.statistic {
color: white;
background: #394963; }
.section.elements {
margin-top: 61px;
background: #f8f8f8; }
.elements--chart {
margin-top: calc(4rem + 3px); }
.elements--chart .section_content {
padding-bottom: 0; }
.elements--chart .chart {
max-width: 100%; }
.collapse-head {
padding: 0.5rem;
font-size: 1.25rem;
background: #364347;
color: white; }
.collapse-head h4 {
margin: 0; }
.collapse-content {
padding: 0.5rem;
max-height: 35vh;
overflow: scroll; }
.collapse-content .input {
width: 100%;
max-width: none; }
.collapse-content .element-percentage {
margin: 1rem auto;
max-width: 120px;
max-height: 120px;
position: relative; }
.collapse-content .element-percentage .chart-overlay {
height: 100%;
width: 100%;
font-size: 3rem;
position: absolute;
display: flex;
justify-content: center;
/* vertical-align: sub */
/* align-content: center */
align-items: center; }
.collapse-content .element-percentage .chart-overlay sup {
font-size: 1rem; }
.compare-chart {
display: flex; }
.compare-chart .compare-begin, .compare-chart .compare-result {
position: relative;
flex-grow: 1;
margin: 1rem;
max-height: 75px; }
.compare-chart .compare-begin .chart-overlay, .compare-chart .compare-result .chart-overlay {
width: 100%;
height: 100%;
display: flex;
align-items: center;
align-content: center;
position: absolute; }
.compare-chart .compare-begin .chart-overlay strong, .compare-chart .compare-result .chart-overlay strong {
width: 100%;
text-align: center; }
.compare-chart .compare-begin .chart-overlay strong sup, .compare-chart .compare-result .chart-overlay strong sup {
font-size: 0.5rem; }
.compare-chart .compare-diff {
width: 33%;
flex-grow: 1;
position: relative;
transform: rotate(-6.75deg); }
.compare-chart .compare-diff span {
position: absolute;
top: 1.5rem;
left: 1.5rem; }
.compare-chart .compare-diff .fa {
position: absolute;
left: 1.8rem;
top: 1.5rem; }
.listhead {
display: flex;
flex-direction: row;
align-items: center; }
.listhead .list-label {
flex-grow: 1; }
.listhead .property-type {
padding: 0.25rem 1.5rem;
border: solid 1px;
border-radius: 5px;
margin: 0.5rem; }
.listhead .property-type .fa {
margin-right: 0.5rem; }
.section.user-barchart {
margin-top: 61px; }
.section.user-barchart .section_content {
padding-bottom: 0; }
.section.user-barchart .browsers {
max-width: 100%; }
.section.user-donuts {
background: #f8f8f8; }
.section.user-donuts > .section_content {
padding: 0; }
.preview .preview_content {
position: relative;
max-width: 1280px;
padding: 2rem;
width: 100%;
box-shadow: inset 0 0px 20px #cecece;
background: white;
text-align: left; }
.browser-list {
display: flex;
width: 100%;
flex-direction: row;
align-items: stretch;
justify-content: space-around;
flex-wrap: wrap; }
.browser-list .preview {
order: 2;
width: 100%;
height: 200px;
border: red;
display: block;
z-index: 1;
display: flex;
text-align: center;
transition: all 0.5s;
max-height: 0;
overflow: hidden; }
.browser-list .preview.open {
max-height: 200px; }
.browser-list .browser-box {
flex-grow: 1;
margin: 0.5rem;
margin-top: 1rem;
margin-bottom: 1rem;
padding: 0.5rem;
border-radius: 5px;
background: white;
box-shadow: 0 0 10px #eeeeee;
width: calc(100% * (1/8) - 1rem);
max-height: 190px; }
.browser-list .browser-box:nth-child(n) {
order: 1; }
.browser-list .browser-box:nth-child(n + 9) {
order: 3; }
.browser-list .browser-box.active, .browser-list .browser-box:hover {
box-shadow: 0 0 10px #f58410; }
.browser-list .browser-box header {
text-align: left; }
.browser-list .browser-box header h3 {
margin: 0; }
.browser-list .browser-box header h3 .fa {
margin-right: 0.5rem; }
.browser-list .browser-box .browser-box-content .chart {
position: relative; }
.browser-list .browser-box .browser-box-content .chart-overlay {
position: absolute;
height: 100%;
width: 100%;
display: flex;
text-align: center;
align-items: center; }
.browser-list .browser-box .browser-box-content .chart-overlay strong {
width: 100%;
font-size: 2rem; }
.browser-list .browser-box .browser-box-content .chart-overlay strong sup {
font-size: 1rem; }
.scope-toggle ul {
list-style: none;
display: flex;
padding: 0;
margin: 0; }
.scope-toggle ul li {
display: inline-block;
padding: 0.25rem 0.5rem;
border: solid 1px; }
.scope-toggle ul li:first-child {
border-radius: 5px 0 0 5px; }
.scope-toggle ul li:last-child {
border-radius: 0 5px 5px 0;
background: rgba(255, 255, 255, 0.5); }
@media only screen and (max-width: 520px) {
.chartcol #chart-site {
max-height: 150px;
max-width: 150px; }
.chartcol .section_content_heading_small {
display: inline-block;
margin: 0; }
.button {
width: 100%; } } | css/main.css | *
* @author <NAME>
*/
/*$superlight_grey: #efefef */
/* Sass Mixin: Vendor
*
* @author <NAME>
*/
/* Sass Component: Base Settings
*
* @author <NAME>
*/
html {
min-width: 100%;
position: absolute; }
body {
color: black;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
position: absolute;
background: white;
color: #333333;
font-family: Source Sans Pro;
font-weight: lighter; }
body * {
-moz-box-sizing: border-box;
box-sizing: border-box; }
a {
text-decoration: none;
color: black;
border: 0;
outline: 0;
-webkit-transition: all 0.5s;
transition: all 0.5s; }
a:hover {
cursor: pointer;
opacity: 0.6;
filter: alpha(opacity=60); }
p {
font-size: 1rem; }
img {
max-width: 100%; }
.dark-on-light {
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto; }
.light-on-dark {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.button {
float: right;
font-size: 21px;
display: inline-block;
color: #1a222f;
background: white;
margin: 1rem 0;
padding: 10px 25px;
text-transform: uppercase;
border-radius: 5px;
background: #0ab15a;
color: white;
text-align: center;
-webkit-transition: all 0.5s;
transition: all 0.5s; }
.button:hover {
cursor: pointer; }
.button.active, .button.button_blue {
background: #1a222f;
color: white;
border: solid 1px transparent; }
.button.button_blue:hover, .button.switch:hover, .button.switch.active {
opacity: 1 !important;
color: #1a222f;
background: transparent;
border: solid 1px #1a222f; }
.button.ghost {
background: transparent;
border: solid 1px #1a222f;
color: #1a222f; }
.button.full {
width: 100%; }
.table_heading {
font-family: Droid Serif;
margin-bottom: 0.25em; }
.table_underline {
color: gray;
margin-top: 0; }
.table_image {
border: solid 2px #848484;
border-radius: 50%;
max-width: 120px; }
/* Sass Component: Header
*
* @author <NAME>
*/
.header.section {
background: #1a222f;
color: white;
font-size: 1.25rem;
border-bottom: solid 4px #0ab15a;
position: fixed;
z-index: 10; }
.header.section .section_content {
padding: 0rem 2rem; }
.header.section .section_content .header_title {
display: flex;
align-items: center; }
.header.section .section_content .header_title .fa {
margin-right: 1rem; }
.header.section .section_content .header_title span:last-child {
font-weight: bold;
text-transform: uppercase; }
.header.section .section_content .header_title img {
width: 39px;
height: 43px;
margin-right: 0.5rem; }
/* Sass Component: Menus
*
* @author <NAME>
*/
.header_menu_list {
display: flex;
list-style: none;
padding: 0;
margin: 0; }
.header_menu_list_item {
display: flex;
align-items: center;
padding: 1rem; }
.header_menu_list_item.active {
color: #0ab15a; }
.header_menu_list_item a {
color: white; }
.header_menu_list_item a .fa {
margin-right: 0.5rem; }
@media only screen and (max-width: 640px) {
.header_menu_list_item {
width: 25%; }
.header_menu_list_item a {
width: 100%; }
.header_menu_list_item a .fa {
margin: 0; }
.header_menu_list_item:first-child {
margin-left: 0; }
.header span {
display: none; } }
/* Sass Component: Section-Elements
*
* @author <NAME>
*/
.section {
position: relative;
width: 100%; }
.section_content {
position: relative;
margin: auto;
max-width: 1280px;
padding: 0 2rem;
padding-bottom: 2rem;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between; }
.section_content .section_content_heading_small .fa {
margin-right: 1rem; }
.row {
width: 100%; }
.row.row3 {
display: flex;
flex-direction: row;
margin-left: 320px;
padding: 0 1rem; }
.row .col {
width: 100%;
float: left; }
.row .col > img {
float: left;
position: relative; }
.row .col2 {
width: 50%; }
.row .col2:first-child {
padding-right: 0.5rem; }
.row .col2:last-child {
padding-left: 0.5rem; }
.row .col34 {
width: 75%; }
.row .col14 {
width: 25%; }
.sidebar {
width: 320px;
position: fixed;
background: white;
/*box-shadow: 0 3px 10px #efefef */
height: 100%; }
.sidebar .button {
float: none; }
.chart {
margin: 1rem; }
@media only screen and (max-width: 560px) {
.section_content {
padding: 0.5rem; }
.row .col2 {
width: 100%;
padding: 0 !important; } }
/* Sass Component: Page-Slider
*
* @author <NAME>
*/
.page-slider {
overflow-y: hidden;
overflow-x: scroll;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-transform: translate3d(0, 0, 0);
width: 100%;
/* margin-bottom: 1em */
position: relative;
margin-bottom: 0; }
.page-slider .page {
list-style: none;
display: inline-block;
margin-right: 1rem;
margin-bottom: 1rem;
border-radius: 7px;
cursor: pointer;
box-shadow: 0 1px 12px #cccccc;
position: relative; }
.page-slider .page.active {
background: white;
margin-bottom: 0;
padding-bottom: 1rem;
border-radius: 7px 7px 0 0; }
.page-slider .page.add .page-thumb {
border-top: dashed 3px rgba(255, 255, 255, 0.5);
border-left: dashed 3px rgba(255, 255, 255, 0.5);
border-right: dashed 3px rgba(255, 255, 255, 0.5);
color: rgba(255, 255, 255, 0.5); }
.page-slider .page.add:hover .page-thumb {
border-color: white;
color: white; }
.page-slider .page.all .page-thumb .mini-overlay {
background: white;
color: green; }
.page-slider .page:last-child {
margin-right: 0; }
.page-slider .page .page-thumb {
width: 240px;
height: 120px;
border-radius: 7px 7px 0 0;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-size: 5rem; }
.page-slider .page .page-thumb iframe {
width: 1200px;
height: 750px;
transform: scale(0.2);
transform-origin: left top;
position: absolute;
border: none;
left: 0; }
.page-slider .page .page-thumb .mini-overlay {
background: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
z-index: 1;
display: flex;
height: 100%;
align-items: center;
justify-content: center;
opacity: 0.85;
color: white;
border-radius: 7px 7px 0 0; }
.page-slider .page .page-thumb .mini-overlay canvas {
max-height: 60px;
max-width: 60px;
padding: 0.5rem; }
.page-slider .page .page-thumb .preview-value {
font-size: 3rem; }
.page-slider .page .page-meta {
padding: 0.5rem;
background: white;
border-radius: 0px 0px 7px 7px; }
.page-slider .page .page-meta h3 {
margin: 0;
text-align: center; }
/* Lists Sass File
*
* @author <NAME>
*/
.boxlist {
list-style: none;
padding: 0;
margin: 0; }
.boxlist.full {
display: flex;
align-items: stretch;
justify-content: space-between; }
.feature-box {
display: inline-flex;
padding: 0.25rem;
border-radius: 5px;
background: #0ab15a;
color: white; }
.feature-box .fa {
margin-right: 0.5rem; }
.browser-box {
text-align: center;
display: inline-block; }
.browser-box .browser-image {
width: 60px;
height: 60px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: white;
margin: auto; }
.browser-box .browser-image.ie {
background-image: url(../img/ie.png); }
.browser-box .browser-image.safari {
background-image: url(../img/safari.png); }
.browser-box .browser-image.chrome {
background-image: url(../img/chrome.png); }
.browser-box .browser-image.opera {
background-image: url(../img/opera.png); }
.browser-box .browser-image.firefox {
background-image: url(../img/firefox.png); }
.query-box {
display: flex;
align-items: center;
justify-content: space-between; }
.input {
-webkit-appearance: none;
border: none;
font-size: 2rem;
max-width: 200px;
border-bottom: solid 2px #333333;
outline: none;
font-family: Source Sans Pro;
font-weight: green;
padding-left: 0.5rem; }
.input:focus {
border-color: #0ab15a; }
.element {
display: flex;
align-items: center;
margin-top: 1rem;
margin-left: 2rem;
cursor: pointer; }
.element:hover .element-box {
transform: scale(1.05); }
.element:hover .element-box .element-property {
color: #222222; }
.element:hover .element-box .element-property .fa.fa-bolt {
color: #fcee07; }
.element:hover .element-box .element-property .fa.fa-long-arrow-down {
color: #cc0000; }
.element:hover .element-bar .element-bar-content {
background: #28948c; }
.element:nth-child(2) .element-bar .element-bar-content {
width: 65%; }
.element:nth-child(3) .element-bar .element-bar-content {
width: 56%; }
.element:nth-child(4) .element-bar .element-bar-content {
width: 46%; }
.element:nth-child(5) .element-bar .element-bar-content {
width: 35%; }
.element:nth-child(6) .element-bar .element-bar-content {
width: 17%; }
.element:nth-child(7) .element-bar .element-bar-content {
width: 12%; }
.element:nth-child(8) .element-bar .element-bar-content {
width: 9%; }
.element:nth-child(9) .element-bar .element-bar-content {
width: 3%; }
.element .element-box {
transition: transform 0.15s;
display: flex;
background: white;
border-radius: 5px;
box-shadow: 0 0 10px #eeeeee;
flex-grow: 1;
/* max-width: 400px */
min-width: 320px;
max-height: 4rem; }
.element .element-box .browser-image {
width: 25px;
height: 25px; }
.element .element-box .chart-overlay {
width: 100%;
height: 100%;
position: absolute;
display: flex;
align-items: center;
z-index: 1;
text-align: center; }
.element .element-box .chart-overlay strong {
width: 100%;
font-size: 1rem; }
.element .element-box .chart-overlay strong sup {
font-size: 0.5rem; }
.element .element-percentage {
max-width: 60px;
max-height: 60px;
margin: 0.5rem;
position: relative;
display: flex; }
.element .element-description {
padding: 0.35rem;
border-left: solid 1px #eeeeee;
width: 100%; }
.element .element-description h2 {
margin: 0;
font-size: 1.25rem; }
.element .element-property {
color: #888888;
display: flex;
align-items: center;
max-height: 25px;
margin-right: 0.5rem; }
.element .element-property > span {
font-weight: bold;
font-size: 1rem; }
.element .element-property .fa {
margin-right: 0.25rem; }
.element .element-separator {
flex-grow: 2;
margin-left: 1rem;
height: 2px;
background: #afafaf;
border-radius: 5px;
box-shadow: 0 0 10px #eeeeee; }
.element .element-bar {
flex-grow: 10;
margin-left: 1rem; }
.element .element-bar .element-bar-content {
transition: background 0.15s;
width: 77%;
height: 100%;
background: #3eb5ac;
color: white;
border-radius: 5px;
padding: 0.75rem; }
.section.overview {
background: #394963;
background: #dfe9f2;
margin-top: calc(4rem + 3px); }
.section.overview .section_content {
padding: 0; }
.section.elements .section_content {
padding-left: 0;
padding-right: 0; }
.chart {
position: relative;
margin: 1rem auto; }
.chart.site {
max-height: 200px;
max-width: 200px; }
.chart input {
height: 100px;
-webkit-appearance: none;
box-shadow: none;
border: none;
background: none;
border-bottom: solid 1px white;
width: 100%;
font-size: 4rem;
font-family: Roboto;
color: white; }
.chart.elements {
width: 100%; }
canvas {
z-index: 1; }
.chart-value {
position: absolute;
width: 100%;
text-align: center;
height: 100%;
font-size: 4rem;
line-height: 11rem;
vertical-align: middle;
z-index: 0; }
.chart-value sup {
font-size: 1rem;
vertical-align: super;
margin-top: 0rem;
top: -0.6rem;
position: relative; }
.support {
background: white; }
.statistic {
color: white;
background: #394963; }
.section.elements {
margin-top: 61px;
background: #f8f8f8; }
.elements--chart {
margin-top: calc(4rem + 3px); }
.elements--chart .section_content {
padding-bottom: 0; }
.elements--chart .chart {
max-width: 100%; }
.collapse-head {
padding: 0.5rem;
font-size: 1.25rem;
background: #364347;
color: white; }
.collapse-head h4 {
margin: 0; }
.collapse-content {
padding: 0.5rem;
max-height: 35vh;
overflow: scroll; }
.collapse-content .input {
width: 100%;
max-width: none; }
.collapse-content .element-percentage {
margin: 1rem auto;
max-width: 120px;
max-height: 120px;
position: relative; }
.collapse-content .element-percentage .chart-overlay {
height: 100%;
width: 100%;
font-size: 3rem;
position: absolute;
display: flex;
justify-content: center;
/* vertical-align: sub */
/* align-content: center */
align-items: center; }
.collapse-content .element-percentage .chart-overlay sup {
font-size: 1rem; }
.compare-chart {
display: flex; }
.compare-chart .compare-begin, .compare-chart .compare-result {
position: relative;
flex-grow: 1;
margin: 1rem;
max-height: 75px; }
.compare-chart .compare-begin .chart-overlay, .compare-chart .compare-result .chart-overlay {
width: 100%;
height: 100%;
display: flex;
align-items: center;
align-content: center;
position: absolute; }
.compare-chart .compare-begin .chart-overlay strong, .compare-chart .compare-result .chart-overlay strong {
width: 100%;
text-align: center; }
.compare-chart .compare-begin .chart-overlay strong sup, .compare-chart .compare-result .chart-overlay strong sup {
font-size: 0.5rem; }
.compare-chart .compare-diff {
width: 33%;
flex-grow: 1;
position: relative;
transform: rotate(-6.75deg); }
.compare-chart .compare-diff span {
position: absolute;
top: 1.5rem;
left: 1.5rem; }
.compare-chart .compare-diff .fa {
position: absolute;
left: 1.8rem;
top: 1.5rem; }
.listhead {
display: flex;
flex-direction: row;
align-items: center; }
.listhead .list-label {
flex-grow: 1; }
.listhead .property-type {
padding: 0.25rem 1.5rem;
border: solid 1px;
border-radius: 5px;
margin: 0.5rem; }
.listhead .property-type .fa {
margin-right: 0.5rem; }
.section.user-barchart {
margin-top: 61px; }
.section.user-barchart .section_content {
padding-bottom: 0; }
.section.user-barchart .browsers {
max-width: 100%; }
.section.user-donuts {
background: #f8f8f8; }
.section.user-donuts > .section_content {
padding: 0; }
.preview .preview_content {
position: relative;
max-width: 1280px;
padding: 2rem;
width: 100%;
box-shadow: inset 0 0px 20px #cecece;
background: white;
text-align: left; }
.browser-list {
display: flex;
width: 100%;
flex-direction: row;
align-items: stretch;
justify-content: space-around;
flex-wrap: wrap; }
.browser-list .preview {
order: 2;
width: 100%;
height: 200px;
border: red;
display: block;
z-index: 1;
display: flex;
text-align: center;
transition: all 0.5s;
max-height: 0;
overflow: hidden; }
.browser-list .preview.open {
max-height: 200px; }
.browser-list .browser-box {
flex-grow: 1;
margin: 0.5rem;
margin-top: 1rem;
margin-bottom: 1rem;
padding: 0.5rem;
border-radius: 5px;
background: white;
box-shadow: 0 0 10px #eeeeee;
width: calc(100% * (1/8) - 1rem);
max-height: 190px; }
.browser-list .browser-box:nth-child(n) {
order: 1; }
.browser-list .browser-box:nth-child(n + 9) {
order: 3; }
.browser-list .browser-box.active, .browser-list .browser-box:hover {
box-shadow: 0 0 10px #f58410; }
.browser-list .browser-box header {
text-align: left; }
.browser-list .browser-box header h3 {
margin: 0; }
.browser-list .browser-box header h3 .fa {
margin-right: 0.5rem; }
.browser-list .browser-box .browser-box-content .chart {
position: relative; }
.browser-list .browser-box .browser-box-content .chart-overlay {
position: absolute;
height: 100%;
width: 100%;
display: flex;
text-align: center;
align-items: center; }
.browser-list .browser-box .browser-box-content .chart-overlay strong {
width: 100%;
font-size: 2rem; }
.browser-list .browser-box .browser-box-content .chart-overlay strong sup {
font-size: 1rem; }
.scope-toggle ul {
list-style: none;
display: flex;
padding: 0;
margin: 0; }
.scope-toggle ul li {
display: inline-block;
padding: 0.25rem 0.5rem;
border: solid 1px; }
.scope-toggle ul li:first-child {
border-radius: 5px 0 0 5px; }
.scope-toggle ul li:last-child {
border-radius: 0 5px 5px 0;
background: rgba(255, 255, 255, 0.5); }
@media only screen and (max-width: 520px) {
.chartcol #chart-site {
max-height: 150px;
max-width: 150px; }
.chartcol .section_content_heading_small {
display: inline-block;
margin: 0; }
.button {
width: 100%; } } | 0.405449 | 0.051702 |
.a11y {
position: absolute!important;
height: 1px;
width: 1px;
clip: rect(1px, 1px, 1px, 1px);
font-size: 0;
overflow: hidden;
}
.pln {
color: #000000;
}
@media screen {
.str {
color: #008800;
}
.kwd {
color: #000088;
}
.com {
color: #cccccc;
}
.typ {
color: #660066;
}
.lit {
color: #006666;
}
.pun,
.opn,
.clo {
color: #666600;
}
.tag {
color: #000088;
}
.atn {
color: #660066;
}
.atv {
color: #008800;
}
.dec,
.var {
color: #660066;
}
.fun {
color: red;
}
}
@media print, projection {
.str {
color: #006600;
}
.kwd {
color: #006;
font-weight: bold;
}
.com {
color: #600;
font-style: italic;
}
.typ {
color: #404;
font-weight: bold;
}
.lit {
color: #004444;
}
.pun,
.opn,
.clo {
color: #444400;
}
.tag {
color: #006;
font-weight: bold;
}
.atn {
color: #440044;
}
.atv {
color: #006600;
}
}
pre.prettyprint {
padding: 2px;
border: 1px solid #888888;
}
ol.linenums {
margin-top: 0;
margin-bottom: 0;
}
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
list-style-type: none;
}
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
background: #eeeeee;
}
.bsextn h2 {
border-bottom: 1px solid #d9d9d9;
line-height: 2em;
}
.bsextn .view a {
color: #f5e8ee;
}
.bsextn .example-links {
padding: 45px 15px 15px;
}
.bsextn .example-links .example-link {
display: block;
padding: 5px 0;
}
.bsextn .example,
.bsextn .exampleResults {
position: relative;
margin-right: 0;
margin-left: 0;
background-color: #ffffff;
border: 1px solid #d9d9d9;
border-radius: 4px 4px 0 0;
box-shadow: none;
padding: 45px 15px 15px;
}
.bsextn .example:after,
.bsextn .exampleResults:after {
content: "Example";
position: absolute;
top: 15px;
left: 15px;
font-size: 12px;
font-weight: 700;
color: #777777;
text-transform: uppercase;
letter-spacing: 1px;
}
.bsextn .exampleResults {
padding: 35px 15px 15px;
}
.bsextn .exampleResults:after {
content: "Result";
}
.bsextn .prettyprint {
border: 1px solid #d9d9d9;
padding: 15px;
}
.bsextn code.comment {
color: #777777;
}
.bsextn .example + .highlight .prettyprint,
.bsextn .exampleResults + .highlight .prettyprint {
border-top: none;
border-radius: 0 0 4px 4px;
}
.bsextn .exampleMarkup {
display: none;
}
.container.bottom {
border-top: 1px solid #d9d9d9;
padding-top: 10px;
margin-top: 30px;
}
.bsextn-nav {
margin-bottom: 0;
}
.bsextn-header {
padding: 30px 15px;
color: #f5e8ee;
text-align: left;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
background-color: #ad4a79;
}
.bsextn-header h1 {
margin-top: 0;
}
.bsextn-header h1 {
letter-spacing: 2px;
font-weight: 200;
}
/*# sourceMappingURL=A11Y-labeler.css.map */ | demo/dist/css/A11Y-labeler.css | .a11y {
position: absolute!important;
height: 1px;
width: 1px;
clip: rect(1px, 1px, 1px, 1px);
font-size: 0;
overflow: hidden;
}
.pln {
color: #000000;
}
@media screen {
.str {
color: #008800;
}
.kwd {
color: #000088;
}
.com {
color: #cccccc;
}
.typ {
color: #660066;
}
.lit {
color: #006666;
}
.pun,
.opn,
.clo {
color: #666600;
}
.tag {
color: #000088;
}
.atn {
color: #660066;
}
.atv {
color: #008800;
}
.dec,
.var {
color: #660066;
}
.fun {
color: red;
}
}
@media print, projection {
.str {
color: #006600;
}
.kwd {
color: #006;
font-weight: bold;
}
.com {
color: #600;
font-style: italic;
}
.typ {
color: #404;
font-weight: bold;
}
.lit {
color: #004444;
}
.pun,
.opn,
.clo {
color: #444400;
}
.tag {
color: #006;
font-weight: bold;
}
.atn {
color: #440044;
}
.atv {
color: #006600;
}
}
pre.prettyprint {
padding: 2px;
border: 1px solid #888888;
}
ol.linenums {
margin-top: 0;
margin-bottom: 0;
}
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
list-style-type: none;
}
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
background: #eeeeee;
}
.bsextn h2 {
border-bottom: 1px solid #d9d9d9;
line-height: 2em;
}
.bsextn .view a {
color: #f5e8ee;
}
.bsextn .example-links {
padding: 45px 15px 15px;
}
.bsextn .example-links .example-link {
display: block;
padding: 5px 0;
}
.bsextn .example,
.bsextn .exampleResults {
position: relative;
margin-right: 0;
margin-left: 0;
background-color: #ffffff;
border: 1px solid #d9d9d9;
border-radius: 4px 4px 0 0;
box-shadow: none;
padding: 45px 15px 15px;
}
.bsextn .example:after,
.bsextn .exampleResults:after {
content: "Example";
position: absolute;
top: 15px;
left: 15px;
font-size: 12px;
font-weight: 700;
color: #777777;
text-transform: uppercase;
letter-spacing: 1px;
}
.bsextn .exampleResults {
padding: 35px 15px 15px;
}
.bsextn .exampleResults:after {
content: "Result";
}
.bsextn .prettyprint {
border: 1px solid #d9d9d9;
padding: 15px;
}
.bsextn code.comment {
color: #777777;
}
.bsextn .example + .highlight .prettyprint,
.bsextn .exampleResults + .highlight .prettyprint {
border-top: none;
border-radius: 0 0 4px 4px;
}
.bsextn .exampleMarkup {
display: none;
}
.container.bottom {
border-top: 1px solid #d9d9d9;
padding-top: 10px;
margin-top: 30px;
}
.bsextn-nav {
margin-bottom: 0;
}
.bsextn-header {
padding: 30px 15px;
color: #f5e8ee;
text-align: left;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
background-color: #ad4a79;
}
.bsextn-header h1 {
margin-top: 0;
}
.bsextn-header h1 {
letter-spacing: 2px;
font-weight: 200;
}
/*# sourceMappingURL=A11Y-labeler.css.map */ | 0.470493 | 0.152537 |
@charset "utf-8";
/**
* Stroke Icons 7, 1.2.0
* Created by The Pixeden Team
* http://themes-pixeden.com/font-demos/7-stroke/
*/
@font-face {
font-family: "Stroke Icons 7";
font-style: normal;
font-weight: normal;
src: url("./7-stroke.eot?v=1.2.0");
src: url("./7-stroke.eot?#iefix&v=1.2.0") format("embedded-opentype"), url("./7-stroke.woff?v=1.2.0") format("woff"), url("./7-stroke.ttf?v=1.2.0") format("truetype"), url("./7-stroke.svg?v=1.2.0#7-stroke") format("svg");
}
[class^="pe-"], [class*=" pe-"] {
position: relative;
display: inline-block;
font-family: "Stroke Icons 7";
font-style: normal;
font-weight: normal;
transform: translate(0, 0);
-webkit-transform: translate(0, 0);
text-rendering: auto;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pe-album:before {
content: "";
}
.pe-arc:before {
content: "";
}
.pe-back-2:before {
content: "";
}
.pe-bandaid:before {
content: "";
}
.pe-car:before {
content: "";
}
.pe-diamond:before {
content: "";
}
.pe-door-lock:before {
content: "";
}
.pe-eyedropper:before {
content: "";
}
.pe-female:before {
content: "";
}
.pe-gym:before {
content: "";
}
.pe-hammer:before {
content: "";
}
.pe-headphones:before {
content: "";
}
.pe-helm:before {
content: "";
}
.pe-hourglass:before {
content: "";
}
.pe-leaf:before {
content: "";
}
.pe-magic-wand:before {
content: "";
}
.pe-male:before {
content: "";
}
.pe-map-2:before {
content: "";
}
.pe-next-2:before {
content: "";
}
.pe-paint-bucket:before {
content: "";
}
.pe-pendrive:before {
content: "";
}
.pe-photo:before {
content: "";
}
.pe-piggy:before {
content: "";
}
.pe-plugin:before {
content: "";
}
.pe-refresh-2:before {
content: "";
}
.pe-rocket:before {
content: "";
}
.pe-settings:before {
content: "";
}
.pe-shield:before {
content: "";
}
.pe-smile:before {
content: "";
}
.pe-usb:before {
content: "";
}
.pe-vector:before {
content: "";
}
.pe-wine:before {
content: "";
}
.pe-cloud-upload:before {
content: "";
}
.pe-cash:before {
content: "";
}
.pe-close:before {
content: "";
}
.pe-bluetooth:before {
content: "";
}
.pe-cloud-download:before {
content: "";
}
.pe-way:before {
content: "";
}
.pe-close-circle:before {
content: "";
}
.pe-id:before {
content: "";
}
.pe-angle-up:before {
content: "";
}
.pe-wristwatch:before {
content: "";
}
.pe-angle-up-circle:before {
content: "";
}
.pe-world:before {
content: "";
}
.pe-angle-right:before {
content: "";
}
.pe-volume:before {
content: "";
}
.pe-angle-right-circle:before {
content: "";
}
.pe-users:before {
content: "";
}
.pe-angle-left:before {
content: "";
}
.pe-user-female:before {
content: "";
}
.pe-angle-left-circle:before {
content: "";
}
.pe-up-arrow:before {
content: "";
}
.pe-angle-down:before {
content: "";
}
.pe-switch:before {
content: "";
}
.pe-angle-down-circle:before {
content: "";
}
.pe-scissors:before {
content: "";
}
.pe-wallet:before {
content: "";
}
.pe-safe:before {
content: "";
}
.pe-volume2:before {
content: "";
}
.pe-volume1:before {
content: "";
}
.pe-voicemail:before {
content: "";
}
.pe-video:before {
content: "";
}
.pe-user:before {
content: "";
}
.pe-upload:before {
content: "";
}
.pe-unlock:before {
content: "";
}
.pe-umbrella:before {
content: "";
}
.pe-trash:before {
content: "";
}
.pe-tools:before {
content: "";
}
.pe-timer:before {
content: "";
}
.pe-ticket:before {
content: "";
}
.pe-target:before {
content: "";
}
.pe-sun:before {
content: "";
}
.pe-study:before {
content: "";
}
.pe-stopwatch:before {
content: "";
}
.pe-star:before {
content: "";
}
.pe-speaker:before {
content: "";
}
.pe-signal:before {
content: "";
}
.pe-shuffle:before {
content: "";
}
.pe-shopbag:before {
content: "";
}
.pe-share:before {
content: "";
}
.pe-server:before {
content: "";
}
.pe-search:before {
content: "";
}
.pe-film:before {
content: "";
}
.pe-science:before {
content: "";
}
.pe-disk:before {
content: "";
}
.pe-ribbon:before {
content: "";
}
.pe-repeat:before {
content: "";
}
.pe-refresh:before {
content: "";
}
.pe-add-user:before {
content: "";
}
.pe-refresh-cloud:before {
content: "";
}
.pe-paperclip:before {
content: "";
}
.pe-radio:before {
content: "";
}
.pe-note2:before {
content: "";
}
.pe-print:before {
content: "";
}
.pe-network:before {
content: "";
}
.pe-prev:before {
content: "";
}
.pe-mute:before {
content: "";
}
.pe-power:before {
content: "";
}
.pe-medal:before {
content: "";
}
.pe-portfolio:before {
content: "";
}
.pe-like2:before {
content: "";
}
.pe-plus:before {
content: "";
}
.pe-left-arrow:before {
content: "";
}
.pe-play:before {
content: "";
}
.pe-key:before {
content: "";
}
.pe-plane:before {
content: "";
}
.pe-joy:before {
content: "";
}
.pe-photo-gallery:before {
content: "";
}
.pe-pin:before {
content: "";
}
.pe-phone:before {
content: "";
}
.pe-plug:before {
content: "";
}
.pe-pen:before {
content: "";
}
.pe-right-arrow:before {
content: "";
}
.pe-paper-plane:before {
content: "";
}
.pe-delete-user:before {
content: "";
}
.pe-paint:before {
content: "";
}
.pe-bottom-arrow:before {
content: "";
}
.pe-notebook:before {
content: "";
}
.pe-note:before {
content: "";
}
.pe-next:before {
content: "";
}
.pe-news-paper:before {
content: "";
}
.pe-musiclist:before {
content: "";
}
.pe-music:before {
content: "";
}
.pe-mouse:before {
content: "";
}
.pe-more:before {
content: "";
}
.pe-moon:before {
content: "";
}
.pe-monitor:before {
content: "";
}
.pe-micro:before {
content: "";
}
.pe-menu:before {
content: "";
}
.pe-map:before {
content: "";
}
.pe-map-marker:before {
content: "";
}
.pe-mail:before {
content: "";
}
.pe-mail-open:before {
content: "";
}
.pe-mail-open-file:before {
content: "";
}
.pe-magnet:before {
content: "";
}
.pe-loop:before {
content: "";
}
.pe-look:before {
content: "";
}
.pe-lock:before {
content: "";
}
.pe-lintern:before {
content: "";
}
.pe-link:before {
content: "";
}
.pe-like:before {
content: "";
}
.pe-light:before {
content: "";
}
.pe-less:before {
content: "";
}
.pe-keypad:before {
content: "";
}
.pe-junk:before {
content: "";
}
.pe-info:before {
content: "";
}
.pe-home:before {
content: "";
}
.pe-help2:before {
content: "";
}
.pe-help1:before {
content: "";
}
.pe-graph3:before {
content: "";
}
.pe-graph2:before {
content: "";
}
.pe-graph1:before {
content: "";
}
.pe-graph:before {
content: "";
}
.pe-global:before {
content: "";
}
.pe-gleam:before {
content: "";
}
.pe-glasses:before {
content: "";
}
.pe-gift:before {
content: "";
}
.pe-folder:before {
content: "";
}
.pe-flag:before {
content: "";
}
.pe-filter:before {
content: "";
}
.pe-file:before {
content: "";
}
.pe-expand1:before {
content: "";
}
.pe-exapnd2:before {
content: "";
}
.pe-edit:before {
content: "";
}
.pe-drop:before {
content: "";
}
.pe-drawer:before {
content: "";
}
.pe-download:before {
content: "";
}
.pe-display2:before {
content: "";
}
.pe-display1:before {
content: "";
}
.pe-diskette:before {
content: "";
}
.pe-date:before {
content: "";
}
.pe-cup:before {
content: "";
}
.pe-culture:before {
content: "";
}
.pe-crop:before {
content: "";
}
.pe-credit:before {
content: "";
}
.pe-copy-file:before {
content: "";
}
.pe-config:before {
content: "";
}
.pe-compass:before {
content: "";
}
.pe-comment:before {
content: "";
}
.pe-coffee:before {
content: "";
}
.pe-cloud:before {
content: "";
}
.pe-clock:before {
content: "";
}
.pe-check:before {
content: "";
}
.pe-chat:before {
content: "";
}
.pe-cart:before {
content: "";
}
.pe-camera:before {
content: "";
}
.pe-call:before {
content: "";
}
.pe-calculator:before {
content: "";
}
.pe-browser:before {
content: "";
}
.pe-box2:before {
content: "";
}
.pe-box1:before {
content: "";
}
.pe-bookmarks:before {
content: "";
}
.pe-bicycle:before {
content: "";
}
.pe-bell:before {
content: "";
}
.pe-battery:before {
content: "";
}
.pe-ball:before {
content: "";
}
.pe-back:before {
content: "";
}
.pe-attention:before {
content: "";
}
.pe-anchor:before {
content: "";
}
.pe-albums:before {
content: "";
}
.pe-alarm:before {
content: "";
}
.pe-airplay:before {
content: "";
} | public/remark-admin-template-master/material/global/fonts/7-stroke/7-stroke.css | @charset "utf-8";
/**
* Stroke Icons 7, 1.2.0
* Created by The Pixeden Team
* http://themes-pixeden.com/font-demos/7-stroke/
*/
@font-face {
font-family: "Stroke Icons 7";
font-style: normal;
font-weight: normal;
src: url("./7-stroke.eot?v=1.2.0");
src: url("./7-stroke.eot?#iefix&v=1.2.0") format("embedded-opentype"), url("./7-stroke.woff?v=1.2.0") format("woff"), url("./7-stroke.ttf?v=1.2.0") format("truetype"), url("./7-stroke.svg?v=1.2.0#7-stroke") format("svg");
}
[class^="pe-"], [class*=" pe-"] {
position: relative;
display: inline-block;
font-family: "Stroke Icons 7";
font-style: normal;
font-weight: normal;
transform: translate(0, 0);
-webkit-transform: translate(0, 0);
text-rendering: auto;
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pe-album:before {
content: "";
}
.pe-arc:before {
content: "";
}
.pe-back-2:before {
content: "";
}
.pe-bandaid:before {
content: "";
}
.pe-car:before {
content: "";
}
.pe-diamond:before {
content: "";
}
.pe-door-lock:before {
content: "";
}
.pe-eyedropper:before {
content: "";
}
.pe-female:before {
content: "";
}
.pe-gym:before {
content: "";
}
.pe-hammer:before {
content: "";
}
.pe-headphones:before {
content: "";
}
.pe-helm:before {
content: "";
}
.pe-hourglass:before {
content: "";
}
.pe-leaf:before {
content: "";
}
.pe-magic-wand:before {
content: "";
}
.pe-male:before {
content: "";
}
.pe-map-2:before {
content: "";
}
.pe-next-2:before {
content: "";
}
.pe-paint-bucket:before {
content: "";
}
.pe-pendrive:before {
content: "";
}
.pe-photo:before {
content: "";
}
.pe-piggy:before {
content: "";
}
.pe-plugin:before {
content: "";
}
.pe-refresh-2:before {
content: "";
}
.pe-rocket:before {
content: "";
}
.pe-settings:before {
content: "";
}
.pe-shield:before {
content: "";
}
.pe-smile:before {
content: "";
}
.pe-usb:before {
content: "";
}
.pe-vector:before {
content: "";
}
.pe-wine:before {
content: "";
}
.pe-cloud-upload:before {
content: "";
}
.pe-cash:before {
content: "";
}
.pe-close:before {
content: "";
}
.pe-bluetooth:before {
content: "";
}
.pe-cloud-download:before {
content: "";
}
.pe-way:before {
content: "";
}
.pe-close-circle:before {
content: "";
}
.pe-id:before {
content: "";
}
.pe-angle-up:before {
content: "";
}
.pe-wristwatch:before {
content: "";
}
.pe-angle-up-circle:before {
content: "";
}
.pe-world:before {
content: "";
}
.pe-angle-right:before {
content: "";
}
.pe-volume:before {
content: "";
}
.pe-angle-right-circle:before {
content: "";
}
.pe-users:before {
content: "";
}
.pe-angle-left:before {
content: "";
}
.pe-user-female:before {
content: "";
}
.pe-angle-left-circle:before {
content: "";
}
.pe-up-arrow:before {
content: "";
}
.pe-angle-down:before {
content: "";
}
.pe-switch:before {
content: "";
}
.pe-angle-down-circle:before {
content: "";
}
.pe-scissors:before {
content: "";
}
.pe-wallet:before {
content: "";
}
.pe-safe:before {
content: "";
}
.pe-volume2:before {
content: "";
}
.pe-volume1:before {
content: "";
}
.pe-voicemail:before {
content: "";
}
.pe-video:before {
content: "";
}
.pe-user:before {
content: "";
}
.pe-upload:before {
content: "";
}
.pe-unlock:before {
content: "";
}
.pe-umbrella:before {
content: "";
}
.pe-trash:before {
content: "";
}
.pe-tools:before {
content: "";
}
.pe-timer:before {
content: "";
}
.pe-ticket:before {
content: "";
}
.pe-target:before {
content: "";
}
.pe-sun:before {
content: "";
}
.pe-study:before {
content: "";
}
.pe-stopwatch:before {
content: "";
}
.pe-star:before {
content: "";
}
.pe-speaker:before {
content: "";
}
.pe-signal:before {
content: "";
}
.pe-shuffle:before {
content: "";
}
.pe-shopbag:before {
content: "";
}
.pe-share:before {
content: "";
}
.pe-server:before {
content: "";
}
.pe-search:before {
content: "";
}
.pe-film:before {
content: "";
}
.pe-science:before {
content: "";
}
.pe-disk:before {
content: "";
}
.pe-ribbon:before {
content: "";
}
.pe-repeat:before {
content: "";
}
.pe-refresh:before {
content: "";
}
.pe-add-user:before {
content: "";
}
.pe-refresh-cloud:before {
content: "";
}
.pe-paperclip:before {
content: "";
}
.pe-radio:before {
content: "";
}
.pe-note2:before {
content: "";
}
.pe-print:before {
content: "";
}
.pe-network:before {
content: "";
}
.pe-prev:before {
content: "";
}
.pe-mute:before {
content: "";
}
.pe-power:before {
content: "";
}
.pe-medal:before {
content: "";
}
.pe-portfolio:before {
content: "";
}
.pe-like2:before {
content: "";
}
.pe-plus:before {
content: "";
}
.pe-left-arrow:before {
content: "";
}
.pe-play:before {
content: "";
}
.pe-key:before {
content: "";
}
.pe-plane:before {
content: "";
}
.pe-joy:before {
content: "";
}
.pe-photo-gallery:before {
content: "";
}
.pe-pin:before {
content: "";
}
.pe-phone:before {
content: "";
}
.pe-plug:before {
content: "";
}
.pe-pen:before {
content: "";
}
.pe-right-arrow:before {
content: "";
}
.pe-paper-plane:before {
content: "";
}
.pe-delete-user:before {
content: "";
}
.pe-paint:before {
content: "";
}
.pe-bottom-arrow:before {
content: "";
}
.pe-notebook:before {
content: "";
}
.pe-note:before {
content: "";
}
.pe-next:before {
content: "";
}
.pe-news-paper:before {
content: "";
}
.pe-musiclist:before {
content: "";
}
.pe-music:before {
content: "";
}
.pe-mouse:before {
content: "";
}
.pe-more:before {
content: "";
}
.pe-moon:before {
content: "";
}
.pe-monitor:before {
content: "";
}
.pe-micro:before {
content: "";
}
.pe-menu:before {
content: "";
}
.pe-map:before {
content: "";
}
.pe-map-marker:before {
content: "";
}
.pe-mail:before {
content: "";
}
.pe-mail-open:before {
content: "";
}
.pe-mail-open-file:before {
content: "";
}
.pe-magnet:before {
content: "";
}
.pe-loop:before {
content: "";
}
.pe-look:before {
content: "";
}
.pe-lock:before {
content: "";
}
.pe-lintern:before {
content: "";
}
.pe-link:before {
content: "";
}
.pe-like:before {
content: "";
}
.pe-light:before {
content: "";
}
.pe-less:before {
content: "";
}
.pe-keypad:before {
content: "";
}
.pe-junk:before {
content: "";
}
.pe-info:before {
content: "";
}
.pe-home:before {
content: "";
}
.pe-help2:before {
content: "";
}
.pe-help1:before {
content: "";
}
.pe-graph3:before {
content: "";
}
.pe-graph2:before {
content: "";
}
.pe-graph1:before {
content: "";
}
.pe-graph:before {
content: "";
}
.pe-global:before {
content: "";
}
.pe-gleam:before {
content: "";
}
.pe-glasses:before {
content: "";
}
.pe-gift:before {
content: "";
}
.pe-folder:before {
content: "";
}
.pe-flag:before {
content: "";
}
.pe-filter:before {
content: "";
}
.pe-file:before {
content: "";
}
.pe-expand1:before {
content: "";
}
.pe-exapnd2:before {
content: "";
}
.pe-edit:before {
content: "";
}
.pe-drop:before {
content: "";
}
.pe-drawer:before {
content: "";
}
.pe-download:before {
content: "";
}
.pe-display2:before {
content: "";
}
.pe-display1:before {
content: "";
}
.pe-diskette:before {
content: "";
}
.pe-date:before {
content: "";
}
.pe-cup:before {
content: "";
}
.pe-culture:before {
content: "";
}
.pe-crop:before {
content: "";
}
.pe-credit:before {
content: "";
}
.pe-copy-file:before {
content: "";
}
.pe-config:before {
content: "";
}
.pe-compass:before {
content: "";
}
.pe-comment:before {
content: "";
}
.pe-coffee:before {
content: "";
}
.pe-cloud:before {
content: "";
}
.pe-clock:before {
content: "";
}
.pe-check:before {
content: "";
}
.pe-chat:before {
content: "";
}
.pe-cart:before {
content: "";
}
.pe-camera:before {
content: "";
}
.pe-call:before {
content: "";
}
.pe-calculator:before {
content: "";
}
.pe-browser:before {
content: "";
}
.pe-box2:before {
content: "";
}
.pe-box1:before {
content: "";
}
.pe-bookmarks:before {
content: "";
}
.pe-bicycle:before {
content: "";
}
.pe-bell:before {
content: "";
}
.pe-battery:before {
content: "";
}
.pe-ball:before {
content: "";
}
.pe-back:before {
content: "";
}
.pe-attention:before {
content: "";
}
.pe-anchor:before {
content: "";
}
.pe-albums:before {
content: "";
}
.pe-alarm:before {
content: "";
}
.pe-airplay:before {
content: "";
} | 0.417271 | 0.103612 |
* {
box-sizing: border-box;
}
html {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
color: rgba(0, 0, 0, 0.87);
font-size: 16px;
line-height: 1.25;
}
body {
background-color: #fafafa;
}
button {
color: inherit;
}
pre {
margin: 0;
}
pre code {
box-sizing: content-box;
overflow-x: auto;
display: block;
padding: 15px;
margin: 0 -15px;
width: 100%;
background-color: #222;
color: rgba(255, 255, 255, 0.87);
}
a {
color: inherit;
}
h2 {
padding: 0 15px;
font-size: 2.5rem;
margin-top: 60px;
}
hr {
border: none;
border-bottom: 1px solid rgba(0,0,0,0.2);
}
.navbar {
padding: 15px;
text-align: right;
margin-bottom: 60px;
}
@media only screen and (max-width: 500px) {
.navbar {
margin-bottom: 40px;
}
}
.navbar__links {
list-style-type: none;
margin: 0;
padding: 0;
display: inline;
}
.navbar__links li {
display: inline;
}
.navbar__link {
font-weight: bold;
text-decoration: none;
margin-left: 15px;
font-size: 1.1rem;
}
.header-title,
.documentation-header {
text-align: center;
margin: 0;
}
.header-title__name,
.documentation-header__title {
display: block;
font-size: 5rem;
font-weight: bold;
}
@media only screen and (max-width: 500px) {
.header-title__name,
.documentation-header__title {
font-size: 3rem;
}
}
.header-title__subtitle,
.documentation-header__subtitle {
display: block;
font-size: 1.5rem;
font-weight: normal;
}
.install {
max-width: 420px;
margin: 60px auto 0 auto;
padding: 15px;
}
@media only screen and (max-width: 500px) {
.install {
margin-top: 30px;
}
}
.install__buttons {
text-align: center;
display: flex;
justify-content: space-around;
}
.install__button {
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
}
.install__button--active {
font-weight: bold;
}
.install__code {
display: none;
margin-top: 1rem;
}
.install__code--active {
display: block;
}
.description {
max-width: 800px;
margin: 40px auto 0 auto;
padding: 15px;
}
@media only screen and (max-width: 500px) {
.description {
margin: 0 auto;
}
}
.description__text {
margin: 0;
font-size: 1.2rem;
line-height: 1.4;
}
.footer {
text-align: center;
margin: 60px 0;
}
/* DOCUMENTATION */
.documentation {
max-width: 800px;
margin: 0 auto;
padding: 0;
}
.documentation h1 {
font-size: 3rem;
text-align: center;
}
.documentation-nav ul {
margin: 60px 0;
padding: 0 15px;
list-style-type: none;
display: flex;
justify-content: space-around;
}
.documentation h2 {
margin-top: 4rem;
}
.documentation h3 {
margin-top: 0;
font-size: 1.8rem;
}
@media only screen and (max-width: 500px) {
.documentation h3 {
overflow-x: auto;
overflow-y: hidden;
max-width: 100%;
box-sizing: content-box;
margin: 0 -15px;
padding: 0 15px;
font-size: 1.3rem;
white-space: pre;
}
}
.intro {
padding: 0 15px;
}
.docitem,
.feature {
position: relative;
padding: 15px;
background-color: white;
border-radius: 8px;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.3);
margin-bottom: 60px;
}
.docitem + .docitem::before,
.feature + .feature::before {
content: "***";
font-weight: bold;
color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -26px;
left: 50%;
transform: translate(-50%, -50%);
}
/* FEATURES */
.features {
max-width: 800px;
margin: 40px auto 0 auto;
}
@media only screen and (max-width: 500px) {
.features h2 {
margin-top: 20px;
}
}
@media only screen and (max-width: 500px) {
.features {
margin: 0 auto;
}
}
.feature__description {
margin: 0 0 1rem 0;
font-size: 1.2rem;
line-height: 1.4;
}
@media only screen and (min-width: 800px) {
.feature {
display: flex;
margin-top: 2rem;
padding: 0 15px;
}
.feature pre code {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
.feature:nth-child(3) {
flex-direction: row-reverse;
}
.feature:nth-child(3) pre code {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.feature__description {
margin-top: 2rem;
}
.feature__description {
margin-right: 15px;
padding-right: 15px;
}
.feature:nth-child(3) .feature__description {
margin-right: 0;
padding-right: 0;
margin-left: 15px;
padding-left: 15px;
}
}
.backtotop {
position: fixed;
bottom: -40px;
right: 15px;
border-radius: 2px;
background-color: white;
color: black;
font-weight: bold;
padding: 5px 10px;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.6);
text-decoration: none;
border: none;
outline: none;
cursor: pointer;
transition: bottom .3s ease-out;
} | docs/static/styles/style.css | * {
box-sizing: border-box;
}
html {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
color: rgba(0, 0, 0, 0.87);
font-size: 16px;
line-height: 1.25;
}
body {
background-color: #fafafa;
}
button {
color: inherit;
}
pre {
margin: 0;
}
pre code {
box-sizing: content-box;
overflow-x: auto;
display: block;
padding: 15px;
margin: 0 -15px;
width: 100%;
background-color: #222;
color: rgba(255, 255, 255, 0.87);
}
a {
color: inherit;
}
h2 {
padding: 0 15px;
font-size: 2.5rem;
margin-top: 60px;
}
hr {
border: none;
border-bottom: 1px solid rgba(0,0,0,0.2);
}
.navbar {
padding: 15px;
text-align: right;
margin-bottom: 60px;
}
@media only screen and (max-width: 500px) {
.navbar {
margin-bottom: 40px;
}
}
.navbar__links {
list-style-type: none;
margin: 0;
padding: 0;
display: inline;
}
.navbar__links li {
display: inline;
}
.navbar__link {
font-weight: bold;
text-decoration: none;
margin-left: 15px;
font-size: 1.1rem;
}
.header-title,
.documentation-header {
text-align: center;
margin: 0;
}
.header-title__name,
.documentation-header__title {
display: block;
font-size: 5rem;
font-weight: bold;
}
@media only screen and (max-width: 500px) {
.header-title__name,
.documentation-header__title {
font-size: 3rem;
}
}
.header-title__subtitle,
.documentation-header__subtitle {
display: block;
font-size: 1.5rem;
font-weight: normal;
}
.install {
max-width: 420px;
margin: 60px auto 0 auto;
padding: 15px;
}
@media only screen and (max-width: 500px) {
.install {
margin-top: 30px;
}
}
.install__buttons {
text-align: center;
display: flex;
justify-content: space-around;
}
.install__button {
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
}
.install__button--active {
font-weight: bold;
}
.install__code {
display: none;
margin-top: 1rem;
}
.install__code--active {
display: block;
}
.description {
max-width: 800px;
margin: 40px auto 0 auto;
padding: 15px;
}
@media only screen and (max-width: 500px) {
.description {
margin: 0 auto;
}
}
.description__text {
margin: 0;
font-size: 1.2rem;
line-height: 1.4;
}
.footer {
text-align: center;
margin: 60px 0;
}
/* DOCUMENTATION */
.documentation {
max-width: 800px;
margin: 0 auto;
padding: 0;
}
.documentation h1 {
font-size: 3rem;
text-align: center;
}
.documentation-nav ul {
margin: 60px 0;
padding: 0 15px;
list-style-type: none;
display: flex;
justify-content: space-around;
}
.documentation h2 {
margin-top: 4rem;
}
.documentation h3 {
margin-top: 0;
font-size: 1.8rem;
}
@media only screen and (max-width: 500px) {
.documentation h3 {
overflow-x: auto;
overflow-y: hidden;
max-width: 100%;
box-sizing: content-box;
margin: 0 -15px;
padding: 0 15px;
font-size: 1.3rem;
white-space: pre;
}
}
.intro {
padding: 0 15px;
}
.docitem,
.feature {
position: relative;
padding: 15px;
background-color: white;
border-radius: 8px;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.3);
margin-bottom: 60px;
}
.docitem + .docitem::before,
.feature + .feature::before {
content: "***";
font-weight: bold;
color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -26px;
left: 50%;
transform: translate(-50%, -50%);
}
/* FEATURES */
.features {
max-width: 800px;
margin: 40px auto 0 auto;
}
@media only screen and (max-width: 500px) {
.features h2 {
margin-top: 20px;
}
}
@media only screen and (max-width: 500px) {
.features {
margin: 0 auto;
}
}
.feature__description {
margin: 0 0 1rem 0;
font-size: 1.2rem;
line-height: 1.4;
}
@media only screen and (min-width: 800px) {
.feature {
display: flex;
margin-top: 2rem;
padding: 0 15px;
}
.feature pre code {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
.feature:nth-child(3) {
flex-direction: row-reverse;
}
.feature:nth-child(3) pre code {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.feature__description {
margin-top: 2rem;
}
.feature__description {
margin-right: 15px;
padding-right: 15px;
}
.feature:nth-child(3) .feature__description {
margin-right: 0;
padding-right: 0;
margin-left: 15px;
padding-left: 15px;
}
}
.backtotop {
position: fixed;
bottom: -40px;
right: 15px;
border-radius: 2px;
background-color: white;
color: black;
font-weight: bold;
padding: 5px 10px;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.6);
text-decoration: none;
border: none;
outline: none;
cursor: pointer;
transition: bottom .3s ease-out;
} | 0.416322 | 0.070081 |
body {
margin: 0;
width: 100%;
height: 100vh;
color: #fff;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
div.mar{
margin: 50px 0px 0px 200px;
font-family: 'Roboto', sans-serif;
}
a{
color: yellow;
font-weight: 100;
}
p{
color: white;
font-family: 'Roboto', sans-serif;
}
h1.hide {
position: relative;
font-family: 'Roboto', sans-serif;
font-family: sans-serif;
font-size: 2em;
letter-spacing: 4px;
overflow: hidden;
background: linear-gradient(90deg, #000, #fff, #000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);
}
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}
* {
padding: 0;
margin: 0;
}
.container {
width: 100%;
min-height: 100vh;
}
.image {
perspective: 3000px;
width: 40%;
position: absolute;
left: 50%;
top:50%;
transform: translate(-50%, -50%);
transform-style: preserve-3d;
}
.image img {
transform: rotateX(70deg) rotateZ(-60deg) translate3d(-120px, 0px, 70px);
box-shadow: -80px 60px 15px 5px rgba(0,0,0,0.4);
transition: all .4s;
transform-style: preserve-3d;
}
.image:hover img {
transform: rotateX(0deg) rotateZ(0deg) translate3d(0px, 0px, 0px);
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
}
.container1 {
width: 80%;
height: 200px;
background: aqua;
margin: auto;
padding: 10px;
}
.one {
width: 70%;
float: left;
color: white;
margin: -200px 0px 0px 0px;
}
.two {
margin-left: 0%;
height: 200px;
color: white;
}
.buttonDownload {
display: inline-block;
top: 0;
margin-right: 25px;
margin-top: 5px;
padding: 10px 25px;
background-color: black;
color: yellow;
position: absolute;
right: 0px;
font-family: sans-serif;
text-decoration: none;
font-size: 22px;
text-align: center;
text-indent: 15px;
}
.buttonDownload:hover {
background-color: #333;
color: white;
}
.buttonDownload:before, .buttonDownload:after {
content: ' ';
display: block;
position: absolute;
left: 15px;
top: 52%;
}
/* Download box shape */
.buttonDownload:before {
width: 10px;
height: 2px;
border-style: solid;
border-width: 0 2px 2px;
}
/* Download arrow shape */
.buttonDownload:after {
width: 0;
height: 0;
margin-left: 3px;
margin-top: -7px;
border-style: solid;
border-width: 4px 4px 0 4px;
border-color: transparent;
border-top-color: inherit;
animation: downloadArrow 2s linear infinite;
animation-play-state: paused;
}
.buttonDownload:hover:before {
border-color: #4CC713;
}
.buttonDownload:hover:after {
border-top-color: #4CC713;
animation-play-state: running;
}
/* keyframes for the download icon anim */
@keyframes downloadArrow {
/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
0% {
margin-top: -7px;
opacity: 1;
}
0.001% {
margin-top: -15px;
opacity: 0;
}
50% {
opacity: 1;
}
100% {
margin-top: 0;
opacity: 0;
}
}
.top-container {
background-color: #f1f1f1;
padding: 30px;
text-align: center;
}
.header {
padding: 10px 16px;
background: #0984e3;
color: #f1f1f1;
}
.content {
padding: 16px;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sticky + .content {
padding-top: 102px;
} | mystyle.css | body {
margin: 0;
width: 100%;
height: 100vh;
color: #fff;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
div.mar{
margin: 50px 0px 0px 200px;
font-family: 'Roboto', sans-serif;
}
a{
color: yellow;
font-weight: 100;
}
p{
color: white;
font-family: 'Roboto', sans-serif;
}
h1.hide {
position: relative;
font-family: 'Roboto', sans-serif;
font-family: sans-serif;
font-size: 2em;
letter-spacing: 4px;
overflow: hidden;
background: linear-gradient(90deg, #000, #fff, #000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);
}
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}
* {
padding: 0;
margin: 0;
}
.container {
width: 100%;
min-height: 100vh;
}
.image {
perspective: 3000px;
width: 40%;
position: absolute;
left: 50%;
top:50%;
transform: translate(-50%, -50%);
transform-style: preserve-3d;
}
.image img {
transform: rotateX(70deg) rotateZ(-60deg) translate3d(-120px, 0px, 70px);
box-shadow: -80px 60px 15px 5px rgba(0,0,0,0.4);
transition: all .4s;
transform-style: preserve-3d;
}
.image:hover img {
transform: rotateX(0deg) rotateZ(0deg) translate3d(0px, 0px, 0px);
box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
}
.container1 {
width: 80%;
height: 200px;
background: aqua;
margin: auto;
padding: 10px;
}
.one {
width: 70%;
float: left;
color: white;
margin: -200px 0px 0px 0px;
}
.two {
margin-left: 0%;
height: 200px;
color: white;
}
.buttonDownload {
display: inline-block;
top: 0;
margin-right: 25px;
margin-top: 5px;
padding: 10px 25px;
background-color: black;
color: yellow;
position: absolute;
right: 0px;
font-family: sans-serif;
text-decoration: none;
font-size: 22px;
text-align: center;
text-indent: 15px;
}
.buttonDownload:hover {
background-color: #333;
color: white;
}
.buttonDownload:before, .buttonDownload:after {
content: ' ';
display: block;
position: absolute;
left: 15px;
top: 52%;
}
/* Download box shape */
.buttonDownload:before {
width: 10px;
height: 2px;
border-style: solid;
border-width: 0 2px 2px;
}
/* Download arrow shape */
.buttonDownload:after {
width: 0;
height: 0;
margin-left: 3px;
margin-top: -7px;
border-style: solid;
border-width: 4px 4px 0 4px;
border-color: transparent;
border-top-color: inherit;
animation: downloadArrow 2s linear infinite;
animation-play-state: paused;
}
.buttonDownload:hover:before {
border-color: #4CC713;
}
.buttonDownload:hover:after {
border-top-color: #4CC713;
animation-play-state: running;
}
/* keyframes for the download icon anim */
@keyframes downloadArrow {
/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
0% {
margin-top: -7px;
opacity: 1;
}
0.001% {
margin-top: -15px;
opacity: 0;
}
50% {
opacity: 1;
}
100% {
margin-top: 0;
opacity: 0;
}
}
.top-container {
background-color: #f1f1f1;
padding: 30px;
text-align: center;
}
.header {
padding: 10px 16px;
background: #0984e3;
color: #f1f1f1;
}
.content {
padding: 16px;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sticky + .content {
padding-top: 102px;
} | 0.472927 | 0.062646 |
html {
font-size: small;
}
/* Set a max page width for readability on large monitors. */
div.contents {
max-width: 960px;
}
body, table, div, p, dl {
font-family: "Calibri","Helvetica Neue", Helvetica, Arial, sans-serif;
color: #373737;
line-height: 1.5;
}
h1 {
font-size: 120%;
}
h2 {
font-size: 110%;
}
/* Architecture guide TOC styling. */
div.arch_toc ul, ol {
line-height: 1.2;
}
div.arch_toc li {
margin-top: 5px;
margin-bottom: 5px;
}
div.arch_toc ul li:first-child {
margin-top:0;
}
div.arch_toc li li {
margin-top: 0px;
margin-bottom: 0px;
line-height: 1.2;
}
div.arch_toc li li a {
font-weight: normal !important;
}
div.arch_toc h1 {
font-weight: bold;
font-size: 110%;
}
/* @group Link Styling */
a {
color: #3D578C;
}
img {
display: block;
max-width: 100%;
height: auto;
}
div.arch_diagram {
display: block;
background: #FFFFFF;
background: radial-gradient(#FFDDAA,#FFFFFF);
margin-top: 2em;
margin-bottom: 2em;
}
/* match just one image */
img[src="wt_diagram.png"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.arch_head table {
background-color: #FFDDAA;
border-color: #624D32;
/*border: solid 1px;*/
border-spacing: 5px;
}
.arch_head td {
border-color: #FFFFFF;
/*border: solid 1px;*/
vertical-align: top;
text-align: left;
}
.arch_head th {
border-color: #624D32;
vertical-align: top;
text-align: left;
}
.arch_thumbnail {
padding: 0px 0px 0px 0px;
border: 3px solid #fff;
outline: 1px solid #000;
margin: 3px;
width: 70px;
height: 70px;
display: block;
text-align: center;
}
.tablist {
width: 800px;
}
.tablist a[href="pages.html"] {
display: none;
}
.contents a:visited {
color: #4665A2;
}
#projectlogo {
vertical-align: middle;
}
.banner {
position: absolute; top: -2px; right: 1em;
overflow: hidden;
background-color: #e57504;
background-image: -webkit-linear-gradient(top, #dc7202, #ee7906);
background-image: -moz-linear-gradient(top, #dc7202, #ee7906);
background-image: -ms-linear-gradient(top, #dc7202, #ee7906);
border-radius: 0 0 8px 8px;
-moz-border-radius: 0 0 8px 8px;
box-shadow: 0 0 1em #888;
}
.banner a {
border: 1px solid #ebaa65;
border-top-style: none;
color: #fff;
display: block;
font: bold 9pt sans-serif;
margin: 0.05em 0 0.05em 0;
padding: 0.5em 2em;
text-align: center;
text-decoration: none;
text-shadow: 0 0 0.5em #444;
}
.banner a.last {
border: none;
}
@media print
{
.banner { display: none; }
} | src/third_party/wiredtiger/src/docs/style/wiredtiger.css | html {
font-size: small;
}
/* Set a max page width for readability on large monitors. */
div.contents {
max-width: 960px;
}
body, table, div, p, dl {
font-family: "Calibri","Helvetica Neue", Helvetica, Arial, sans-serif;
color: #373737;
line-height: 1.5;
}
h1 {
font-size: 120%;
}
h2 {
font-size: 110%;
}
/* Architecture guide TOC styling. */
div.arch_toc ul, ol {
line-height: 1.2;
}
div.arch_toc li {
margin-top: 5px;
margin-bottom: 5px;
}
div.arch_toc ul li:first-child {
margin-top:0;
}
div.arch_toc li li {
margin-top: 0px;
margin-bottom: 0px;
line-height: 1.2;
}
div.arch_toc li li a {
font-weight: normal !important;
}
div.arch_toc h1 {
font-weight: bold;
font-size: 110%;
}
/* @group Link Styling */
a {
color: #3D578C;
}
img {
display: block;
max-width: 100%;
height: auto;
}
div.arch_diagram {
display: block;
background: #FFFFFF;
background: radial-gradient(#FFDDAA,#FFFFFF);
margin-top: 2em;
margin-bottom: 2em;
}
/* match just one image */
img[src="wt_diagram.png"] {
display: block;
margin-left: auto;
margin-right: auto;
}
.arch_head table {
background-color: #FFDDAA;
border-color: #624D32;
/*border: solid 1px;*/
border-spacing: 5px;
}
.arch_head td {
border-color: #FFFFFF;
/*border: solid 1px;*/
vertical-align: top;
text-align: left;
}
.arch_head th {
border-color: #624D32;
vertical-align: top;
text-align: left;
}
.arch_thumbnail {
padding: 0px 0px 0px 0px;
border: 3px solid #fff;
outline: 1px solid #000;
margin: 3px;
width: 70px;
height: 70px;
display: block;
text-align: center;
}
.tablist {
width: 800px;
}
.tablist a[href="pages.html"] {
display: none;
}
.contents a:visited {
color: #4665A2;
}
#projectlogo {
vertical-align: middle;
}
.banner {
position: absolute; top: -2px; right: 1em;
overflow: hidden;
background-color: #e57504;
background-image: -webkit-linear-gradient(top, #dc7202, #ee7906);
background-image: -moz-linear-gradient(top, #dc7202, #ee7906);
background-image: -ms-linear-gradient(top, #dc7202, #ee7906);
border-radius: 0 0 8px 8px;
-moz-border-radius: 0 0 8px 8px;
box-shadow: 0 0 1em #888;
}
.banner a {
border: 1px solid #ebaa65;
border-top-style: none;
color: #fff;
display: block;
font: bold 9pt sans-serif;
margin: 0.05em 0 0.05em 0;
padding: 0.5em 2em;
text-align: center;
text-decoration: none;
text-shadow: 0 0 0.5em #444;
}
.banner a.last {
border: none;
}
@media print
{
.banner { display: none; }
} | 0.385953 | 0.113138 |
.text-justify {text-align: justify;}
.text-indent {text-indent: 32px;}
.page02-banner {width: 100%;}
/* Start: 服务范围 */
.page02-service h3 {
margin: 30px 0;
font-weight: normal;
}
.page02-service-content {width: 100%;}
.page02-service-content-group {
padding: 0 15px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.page02-service-content-group:last-child {margin-bottom: 0;}
.page02-service-content-group div {
width: 112px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.page02-service-content-group div i {
display: inline-block;
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.page02-service-content-group div span {
font-size: 14px;
line-height: 24px;
}
.page02-service-content-group:nth-child(1) div:nth-child(1) i {
background: url("./images/icon-xianshang.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(1) div:nth-child(2) i {
background: url("./images/icon-siren.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(1) div:nth-child(3) i {
background: url("./images/icon-kexue.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(1) i {
background: url("./images/icon-tigao.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(2) i {
background: url("./images/icon-moni.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(3) i {
background: url("./images/icon-aiqing.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(1) i {
background: url("./images/icon-shidang.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(2) i {
background: url("./images/icon-hunyin.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(3) i {
background: url("./images/icon-wanai.png") no-repeat center center;
background-size: 100%;
}
/* End: 服务范围 */
/* Start: 服务流程 */
.page02-circuit h3 {
font-weight: normal;
margin: 0;
padding: 30px 0;
}
.page02-circuit-content {
position: relative;
height: 390px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: space-between;
}
.page02-circuit-content-bg {
display: inline-block;
width: 100%;
height: 390px;
background: url("./images/bg.png") no-repeat center center;
background-size: 100%;
position: absolute;
top: 0;
left: 0;
}
.page02-circuit-content-group {
position: relative;
top: -15px;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
}
.page02-circuit-content-group-item {
width: 110px;
text-align: center;
position: relative;
}
.page02-circuit-content-group:last-child .page02-circuit-content-group-item {
margin: 0 auto;
}
.page02-circuit-content-group-item i {
display: inline-block;
width: 44px;
height: 44px;
line-height: 44px;
background: url("./images/icon.png") no-repeat center center;
background-size: 100%;
position: relative;
top: 30px;
font-style: normal;
font-size: 18px;
font-weight: bold;
color: #fff;
}
.page02-circuit-content-group-item-box {
height: 50px;
border: 1px solid #fd8593;
padding-top: 30px;
background: #fff;
}
.page02-circuit-content-group-item-box span {
display: inline-block;
width: 100%;
}
/* End: 服务流程 */
/* Start: 服务保障 */
.page02-guarantee {padding-bottom: 30px;}
.page02-guarantee h3 {
font-weight: normal;
padding: 30px 0;
}
.page02-guarantee-content {padding: 0 15px;}
.page02-guarantee-content-item {
border: 1px solid #fd8593;
border-left: 10px solid #fd8593;
padding: 15px 5px;
line-height: 26px;
}
.page02-guarantee-content-item:last-child {
margin-bottom: 0;
}
/* End: 服务保障 */ | src/pages/page02/views/style.css | .text-justify {text-align: justify;}
.text-indent {text-indent: 32px;}
.page02-banner {width: 100%;}
/* Start: 服务范围 */
.page02-service h3 {
margin: 30px 0;
font-weight: normal;
}
.page02-service-content {width: 100%;}
.page02-service-content-group {
padding: 0 15px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.page02-service-content-group:last-child {margin-bottom: 0;}
.page02-service-content-group div {
width: 112px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.page02-service-content-group div i {
display: inline-block;
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.page02-service-content-group div span {
font-size: 14px;
line-height: 24px;
}
.page02-service-content-group:nth-child(1) div:nth-child(1) i {
background: url("./images/icon-xianshang.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(1) div:nth-child(2) i {
background: url("./images/icon-siren.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(1) div:nth-child(3) i {
background: url("./images/icon-kexue.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(1) i {
background: url("./images/icon-tigao.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(2) i {
background: url("./images/icon-moni.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(2) div:nth-child(3) i {
background: url("./images/icon-aiqing.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(1) i {
background: url("./images/icon-shidang.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(2) i {
background: url("./images/icon-hunyin.png") no-repeat center center;
background-size: 100%;
}
.page02-service-content-group:nth-child(3) div:nth-child(3) i {
background: url("./images/icon-wanai.png") no-repeat center center;
background-size: 100%;
}
/* End: 服务范围 */
/* Start: 服务流程 */
.page02-circuit h3 {
font-weight: normal;
margin: 0;
padding: 30px 0;
}
.page02-circuit-content {
position: relative;
height: 390px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: space-between;
}
.page02-circuit-content-bg {
display: inline-block;
width: 100%;
height: 390px;
background: url("./images/bg.png") no-repeat center center;
background-size: 100%;
position: absolute;
top: 0;
left: 0;
}
.page02-circuit-content-group {
position: relative;
top: -15px;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
}
.page02-circuit-content-group-item {
width: 110px;
text-align: center;
position: relative;
}
.page02-circuit-content-group:last-child .page02-circuit-content-group-item {
margin: 0 auto;
}
.page02-circuit-content-group-item i {
display: inline-block;
width: 44px;
height: 44px;
line-height: 44px;
background: url("./images/icon.png") no-repeat center center;
background-size: 100%;
position: relative;
top: 30px;
font-style: normal;
font-size: 18px;
font-weight: bold;
color: #fff;
}
.page02-circuit-content-group-item-box {
height: 50px;
border: 1px solid #fd8593;
padding-top: 30px;
background: #fff;
}
.page02-circuit-content-group-item-box span {
display: inline-block;
width: 100%;
}
/* End: 服务流程 */
/* Start: 服务保障 */
.page02-guarantee {padding-bottom: 30px;}
.page02-guarantee h3 {
font-weight: normal;
padding: 30px 0;
}
.page02-guarantee-content {padding: 0 15px;}
.page02-guarantee-content-item {
border: 1px solid #fd8593;
border-left: 10px solid #fd8593;
padding: 15px 5px;
line-height: 26px;
}
.page02-guarantee-content-item:last-child {
margin-bottom: 0;
}
/* End: 服务保障 */ | 0.188997 | 0.07056 |
.header{
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
}
.page {
align-items: center;
background-image: url("~/assets/background.jpg") no-repeat;
}
.margins{
margin: 15;
}
.action-image{
height: 30;
width: 30;
margin-left: auto;
}
.action-label{
text-align: center !important;
font-size: 15;
font-weight: bold;
}
.pr_name{
height: 45;
margin: 5;
padding-top: 10;
border-width: 1;
border-radius: 15;
background-color: white;
border-color: rgb(214, 214, 214);
text-align: center;
color: black;
placeholder-color: #9b9b9b;
font-size: 14;
}
.nametxt{
margin: auto;
text-align: center;
font-size: 14;
margin-top: 5;
}
.description{
font-size: 15;
color: #05375c;
font-weight: bold;
}
.desc_content{
font-size: 14;
color: #05375c;
margin-top: 5;
}
.Category{
font-size: 14;
color: #05375c;
}
.Product_Units{
font-size: 14;
color: #05375c;
}
.Size_Guide{
font-size: 14;
color: #05375c;
}
.cardStyle{
align-items: center;
height: 30;
width: 50;
border-width: 1 !important;
border-radius: 5;
text-align: center;
margin: 5;
}
.brandcardStyle{
align-items: center;
height: 30;
width: 80;
border-width: 1 !important;
border-radius: 5;
text-align: center;
margin: 5;
color: white;
border-radius: 15;
border-width: 0;
font-size: 12;
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
vertical-align: middle;
}
.border{
border-width: 1 0 0 0;
margin-top: 5;
margin-bottom: 5;
border-color: gray;
}
.color_cardStyle{
height: 30;
width: 30;
border-width: 1 !important;
border-radius: 80;
margin: 5;
border-color: #05375c;
}
.clrtxt{
text-align: center;
font-size: 12;
}
.price{
font-size: 14;
color: #05375c;
text-align: center;
font-weight: bold;
}
.cherginput{
width:100;
height: 40;
text-align: center;
border-width: 1;
border-radius: 12;
background-color: white;
border-color: rgb(214, 214, 214);
color: black;
placeholder-color: #9b9b9b;
font-size: 14;
}
.savebtn{
margin-top: 30;
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
border-radius: 5;
color: white;
font-size: 14;
font-weight: bold;
height: 40;
width:100;
}
.uncheck-img{
height: 15;
width: 15;
margin-left: -25;
margin-top: -5;
z-index: 100;
}
.uncheck-color{
height: 15;
width: 15;
z-index: 100;
}
.cambrdr{
border-width: 1;
border-color:#05375c ;
border-radius: 21;
height: 30;
width: 100;
}
.catbrdr{
border-width: 1;
border-color:#05375c ;
border-radius: 21;
height: 30;
width: 100;
}
.addimg{
height: 21;
width: 21;
margin: 3;
}
.uploadtxt{
font-size: 13;
color: #05375c;
margin-left: 1;
font-weight: bold;
}
.minusimg{
width: 22 !important;
height: 22;
margin-bottom:50;
z-index: 45;
margin-right: -35;
}
.imgbrdr{
width: auto !important;
height: 90;
margin: 0;
padding: 10;
border-radius: 25;
}
.margin-img{
margin-right: 5;
}
.uploadbrdr{
border-width: 0,0,1,0;
border-color: gray;
padding-bottom: 20;
}
.ownprod{
width: 25;
height: 25;
}
.ownprtxt{
font-size: 15;
font-weight: bold;
color:#05375c;
}
.Product_Units{
font-size: 14;
color: #05375c;
}
.Size_Guide{
font-size: 14;
color: #05375c;
} | src/app/skill/productmapp/new-product-mapp/new-product-mapp.component.css | .header{
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
}
.page {
align-items: center;
background-image: url("~/assets/background.jpg") no-repeat;
}
.margins{
margin: 15;
}
.action-image{
height: 30;
width: 30;
margin-left: auto;
}
.action-label{
text-align: center !important;
font-size: 15;
font-weight: bold;
}
.pr_name{
height: 45;
margin: 5;
padding-top: 10;
border-width: 1;
border-radius: 15;
background-color: white;
border-color: rgb(214, 214, 214);
text-align: center;
color: black;
placeholder-color: #9b9b9b;
font-size: 14;
}
.nametxt{
margin: auto;
text-align: center;
font-size: 14;
margin-top: 5;
}
.description{
font-size: 15;
color: #05375c;
font-weight: bold;
}
.desc_content{
font-size: 14;
color: #05375c;
margin-top: 5;
}
.Category{
font-size: 14;
color: #05375c;
}
.Product_Units{
font-size: 14;
color: #05375c;
}
.Size_Guide{
font-size: 14;
color: #05375c;
}
.cardStyle{
align-items: center;
height: 30;
width: 50;
border-width: 1 !important;
border-radius: 5;
text-align: center;
margin: 5;
}
.brandcardStyle{
align-items: center;
height: 30;
width: 80;
border-width: 1 !important;
border-radius: 5;
text-align: center;
margin: 5;
color: white;
border-radius: 15;
border-width: 0;
font-size: 12;
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
vertical-align: middle;
}
.border{
border-width: 1 0 0 0;
margin-top: 5;
margin-bottom: 5;
border-color: gray;
}
.color_cardStyle{
height: 30;
width: 30;
border-width: 1 !important;
border-radius: 80;
margin: 5;
border-color: #05375c;
}
.clrtxt{
text-align: center;
font-size: 12;
}
.price{
font-size: 14;
color: #05375c;
text-align: center;
font-weight: bold;
}
.cherginput{
width:100;
height: 40;
text-align: center;
border-width: 1;
border-radius: 12;
background-color: white;
border-color: rgb(214, 214, 214);
color: black;
placeholder-color: #9b9b9b;
font-size: 14;
}
.savebtn{
margin-top: 30;
background-image: linear-gradient(to bottom, #05375c, #05486f, #045a83, #026d96, #0080a9);
border-radius: 5;
color: white;
font-size: 14;
font-weight: bold;
height: 40;
width:100;
}
.uncheck-img{
height: 15;
width: 15;
margin-left: -25;
margin-top: -5;
z-index: 100;
}
.uncheck-color{
height: 15;
width: 15;
z-index: 100;
}
.cambrdr{
border-width: 1;
border-color:#05375c ;
border-radius: 21;
height: 30;
width: 100;
}
.catbrdr{
border-width: 1;
border-color:#05375c ;
border-radius: 21;
height: 30;
width: 100;
}
.addimg{
height: 21;
width: 21;
margin: 3;
}
.uploadtxt{
font-size: 13;
color: #05375c;
margin-left: 1;
font-weight: bold;
}
.minusimg{
width: 22 !important;
height: 22;
margin-bottom:50;
z-index: 45;
margin-right: -35;
}
.imgbrdr{
width: auto !important;
height: 90;
margin: 0;
padding: 10;
border-radius: 25;
}
.margin-img{
margin-right: 5;
}
.uploadbrdr{
border-width: 0,0,1,0;
border-color: gray;
padding-bottom: 20;
}
.ownprod{
width: 25;
height: 25;
}
.ownprtxt{
font-size: 15;
font-weight: bold;
color:#05375c;
}
.Product_Units{
font-size: 14;
color: #05375c;
}
.Size_Guide{
font-size: 14;
color: #05375c;
} | 0.499756 | 0.162413 |
.ns-box {
background-color: rgba(0, 0, 0, 0.93);
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 1;
color: black;
font-size: 70%;
position: relative;
display: table;
word-wrap: break-word;
max-width: 100%;
border-width: 1px;
border-radius: 5px;
border-style: solid;
border-color: #666;
}
.ns-alert {
border-style: solid;
border-color: #fff;
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 3;
color: white;
font-size: 100%;
position: fixed;
text-align: center;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
top: 40%;
width: 40%;
height: auto;
word-wrap: break-word;
border-radius: 20px;
}
.black_overlay {
position: fixed;
z-index: 2;
background-color: rgba(0, 0, 0, 0.93);
width: 100%;
height: 100%;
}
[class^="ns-effect-"].ns-growl.ns-hide,
[class*=" ns-effect-"].ns-growl.ns-hide {
animation-direction: reverse;
}
.ns-effect-jelly.ns-show {
animation-name: animJelly;
animation-duration: 1s;
animation-timing-function: linear;
}
.ns-effect-jelly.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes animJelly {
0% {
transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
2.083333% {
transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
4.166667% {
transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
6.25% {
transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
8.333333% {
transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
10.416667% {
transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
12.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
14.583333% {
transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
16.666667% {
transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.75% {
transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
20.833333% {
transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.916667% {
transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
25% {
transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
27.083333% {
transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.166667% {
transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
31.25% {
transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
35.416667% {
transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
37.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
39.583333% {
transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
41.666667% {
transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
43.75% {
transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
45.833333% {
transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
47.916667% {
transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50% {
transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
52.083333% {
transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
54.166667% {
transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
56.25% {
transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
58.333333% {
transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
60.416667% {
transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
62.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
64.583333% {
transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
68.75% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.833333% {
transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
72.916667% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
75% {
transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
77.083333% {
transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
79.166667% {
transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
81.25% {
transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
85.416667% {
transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
87.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
89.583333% {
transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
91.666667% {
transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
93.75% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
95.833333% {
transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
97.916667% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
} | src/modules/MMM-StopwatchTimer/popup.css | .ns-box {
background-color: rgba(0, 0, 0, 0.93);
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 1;
color: black;
font-size: 70%;
position: relative;
display: table;
word-wrap: break-word;
max-width: 100%;
border-width: 1px;
border-radius: 5px;
border-style: solid;
border-color: #666;
}
.ns-alert {
border-style: solid;
border-color: #fff;
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 3;
color: white;
font-size: 100%;
position: fixed;
text-align: center;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
top: 40%;
width: 40%;
height: auto;
word-wrap: break-word;
border-radius: 20px;
}
.black_overlay {
position: fixed;
z-index: 2;
background-color: rgba(0, 0, 0, 0.93);
width: 100%;
height: 100%;
}
[class^="ns-effect-"].ns-growl.ns-hide,
[class*=" ns-effect-"].ns-growl.ns-hide {
animation-direction: reverse;
}
.ns-effect-jelly.ns-show {
animation-name: animJelly;
animation-duration: 1s;
animation-timing-function: linear;
}
.ns-effect-jelly.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes animJelly {
0% {
transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
2.083333% {
transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
4.166667% {
transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
6.25% {
transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
8.333333% {
transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
10.416667% {
transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
12.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
14.583333% {
transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
16.666667% {
transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.75% {
transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
20.833333% {
transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.916667% {
transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
25% {
transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
27.083333% {
transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.166667% {
transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
31.25% {
transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
35.416667% {
transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
37.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
39.583333% {
transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
41.666667% {
transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
43.75% {
transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
45.833333% {
transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
47.916667% {
transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50% {
transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
52.083333% {
transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
54.166667% {
transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
56.25% {
transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
58.333333% {
transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
60.416667% {
transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
62.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
64.583333% {
transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
68.75% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.833333% {
transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
72.916667% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
75% {
transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
77.083333% {
transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
79.166667% {
transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
81.25% {
transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
85.416667% {
transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
87.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
89.583333% {
transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
91.666667% {
transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
93.75% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
95.833333% {
transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
97.916667% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
} | 0.500977 | 0.382747 |
:root {
--font-family: 'Roboto', sans-serif;
--font-size: 12px;
--login-form-top-bottom-padding: 30px;
--login-form-left-right-padding: 40px;
--login-form-field-margin: 1.5rem;
--std-header-height: 70px;
--std-menu-width: 240px;
--std-menu-collapsed-width: 80px;
--std-logo-width: 190px;
--std-logo-collapsed-width: 60px;
--std-logo-height: 60px;
--std-profile-height: 60px;
--std-profile-width-small: 60px;
--std-profile-padding: 0.25rem 0.5rem;
--std-profile-pic: 35px;
--std-profile-separator-margin: 4px;
--std-profile-submenu-width-small: 10rem;
--std-topbar-buttons: 40px;
--std-topbar-buttons-small: 25px;
--std-fadeout-width: 20px;
--std-fadeout-left: calc(var(--std-menu-collapsed-width) - var(--std-fadeout-width));
--std-menu-header-padding: 0.5rem 1rem 0.5rem 0.625rem;
--std-menu-item-padding: 0.375rem 0.75rem 0.375rem 1.5rem;
--corp-header-height: 70px;
--corp-logo-width: 190px;
--corp-profile-height: 60px;
--corp-profile-width-small: 60px;
--corp-profile-padding: 0.25rem 0.5rem;
--corp-profile-pic: 35px;
--corp-profile-separator-margin: 4px;
--corp-profile-submenu-width-small: 10rem;
--corp-topbar-buttons: 40px;
--corp-topbar-buttons-small: 25px;
--corp-menubar-height: 40px;
--corp-speeddial-size: 2rem;
--corp-menu-header-padding: 0.75rem 0.5rem;
--corp-menu-item-padding: 0.25rem 0.5rem;
--input-padding: 0.125rem 0.125rem;
--input-button-padding: 0rem 0.125rem;
--input-button-icon-size: 12px;
--button-padding: 0.125rem 0.25rem;
--button-icon-only-padding: 0.125rem 0.125rem;
--menubtn-leftbtn-padding: 0.125rem 0rem 0.125rem 0.25rem;
--menubtn-rightbtn-padding: 0rem 0.125rem 0rem 0.125rem;
--checkbox-size: 14px;
--radiobutton-size: 14px;
--tab-padding: 0rem 0.5rem;
--table-header-padding: 0.3rem 0.5rem;
--table-data-height: 18px;
--label-padding: 2.25px; }
body {
font-size: var(--font-size);
font-family: var(--font-family); }
.login-form .p-fluid {
padding: calc(var(--login-form-top-bottom-padding) / 2) var(--login-form-left-right-padding) var(--login-form-top-bottom-padding); }
.login-form .p-fluid .p-field {
margin-bottom: var(--login-form-field-margin); }
.login-form .login-logo-wrapper {
padding: var(--login-form-top-bottom-padding) var(--login-form-left-right-padding) calc(var(--login-form-top-bottom-padding) / 2); }
.basti_small .std-menu.menu-collapsed .menu-logo-wrapper {
width: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-logo-wrapper .menu-logo {
width: var(--std-logo-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-panelmenu-wrapper {
width: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-topbar {
margin-left: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-logo-mini {
width: var(--std-logo-collapsed-width); }
.basti_small .std-menu .menu-header {
height: var(--std-header-height); }
.basti_small .std-menu .menu-topbar {
margin-left: var(--std-menu-width); }
.basti_small .std-menu .menu-logo-wrapper {
height: var(--std-header-height);
width: var(--std-menu-width); }
.basti_small .std-menu .menu-logo-wrapper .menu-logo {
max-height: var(--std-logo-height);
width: var(--std-logo-width); }
.basti_small .std-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--std-topbar-buttons);
height: var(--std-topbar-buttons); }
.basti_small .std-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
height: var(--std-profile-height);
padding: var(--std-profile-padding); }
.basti_small .std-menu .profile-menu .p-menubar .p-submenu-list {
width: calc(100% - var(--std-profile-separator-margin));
margin-left: var(--std-profile-separator-margin); }
.basti_small .std-menu .profile-image, .basti_small .std-menu .profile-image-null {
width: var(--std-profile-pic);
height: var(--std-profile-pic); }
.basti_small .std-menu .profile-image {
background-size: var(--std-profile-pic) var(--std-profile-pic); }
.basti_small .std-menu .profile-image-null::before {
font-size: calc(var(--std-profile-pic) - 2px); }
.basti_small .std-menu .menu-panelmenu-wrapper {
width: var(--std-menu-width);
padding-top: var(--std-header-height); }
.basti_small .std-menu .menu-logo-mini {
width: var(--std-logo-width); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-header > a {
padding: var(--std-menu-header-padding); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled) {
padding: var(--std-menu-item-padding); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-icon {
left: calc(var(--std-menu-width) - 30px); }
.basti_small .std-menu .fadeout {
left: var(--std-fadeout-left);
width: var(--std-fadeout-width);
margin-top: var(--std-header-height); }
.basti_small .corp-menu .corp-menu-header {
height: var(--corp-header-height); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar {
height: var(--corp-menubar-height); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled) {
padding: var(--corp-menu-header-padding); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar .p-menuitem-link {
padding: var(--corp-menu-item-padding); }
.basti_small .corp-menu .corp-menu-logo-wrapper {
max-width: var(--corp-logo-width); }
.basti_small .corp-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--corp-topbar-buttons);
height: var(--corp-topbar-buttons); }
.basti_small .corp-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
height: var(--corp-profile-height);
padding: var(--corp-profile-padding); }
.basti_small .corp-menu .profile-menu .p-menubar .p-submenu-list {
width: calc(100% - var(--corp-profile-separator-margin));
margin-left: var(--corp-profile-separator-margin); }
.basti_small .corp-menu .profile-image, .basti_small .corp-menu .profile-image-null {
width: var(--corp-profile-pic);
height: var(--corp-profile-pic); }
.basti_small .corp-menu .profile-image {
background-size: var(--corp-profile-pic) var(--corp-profile-pic); }
.basti_small .corp-menu .profile-image-null::before {
font-size: calc(var(--corp-profile-pic) - 2px); }
.basti_small .corp-menu .p-speeddial .p-speeddial-button.p-button.p-button-icon-only {
height: var(--corp-speeddial-size);
width: var(--corp-speeddial-size);
top: calc((32px - var(--corp-speeddial-size)) / 2); }
.basti_small .corp-menu .p-speeddial .p-speeddial-button.p-button.p-button-icon-only .p-button-icon {
font-size: calc(var(--corp-speeddial-size) / 2); }
.basti_small .corp-menu .p-speeddial .p-speeddial-action {
height: var(--corp-speeddial-size);
width: var(--corp-speeddial-size); }
.basti_small .corp-menu .p-speeddial .p-speeddial-action .p-speeddial-action-icon {
font-size: calc(var(--corp-speeddial-size) / 2); }
.basti_small .p-component {
font-size: var(--font-size);
font-family: var(--font-family); }
.basti_small .p-inputtext {
padding: var(--input-padding); }
.basti_small .rc-button {
padding: var(--btnPadding, var(--button-padding, 0.125rem 0.25rem)); }
.basti_small .p-button.p-button-icon-only:not(.rc-toolbar-button) {
padding: var(--btnPadding, var(--button-icon-only-padding, 0.25rem 0.25rem)); }
.basti_small .p-button.p-button-icon-only.p-autocomplete-dropdown, .basti_small .p-button.p-button-icon-only.p-datepicker-trigger {
padding: var(--input-button-padding); }
.basti_small .p-button.p-button-icon-only.p-autocomplete-dropdown > .p-button-icon, .basti_small .p-button.p-button-icon-only.p-datepicker-trigger > .p-button-icon {
font-size: var(--input-button-icon-size); }
.basti_small .p-checkbox {
width: var(--checkbox-size);
height: var(--checkbox-size); }
.basti_small .p-checkbox .p-checkbox-box {
width: var(--checkbox-size);
height: var(--checkbox-size); }
.basti_small .p-checkbox .p-checkbox-box .p-checkbox-icon {
font-size: calc(var(--checkbox-size) * 0.7); }
.basti_small .p-radiobutton .p-radiobutton-box {
width: var(--radiobutton-size);
height: var(--radiobutton-size); }
.basti_small .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
height: calc(var(--radiobutton-size) * 0.6);
width: calc(var(--radiobutton-size) * 0.6); }
.basti_small .p-splitbutton-defaultbutton {
padding: var(--menuBtnPadding, var(--menubtn-leftbtn-padding, 0.125rem 0rem 0.125rem 0.25rem)); }
.basti_small .p-button.p-splitbutton-menubutton {
padding: var(--menubtn-rightbtn-padding); }
.basti_small .rc-togglebutton {
padding: var(--btnPadding, var(--button-padding, 0.125rem 0.25rem)); }
.basti_small .p-tabview .p-tabview-nav li .p-tabview-nav-link {
padding: var(--tab-padding); }
.basti_small .rc-table .p-datatable-thead > tr > th {
padding: var(--table-header-padding); }
.basti_small .rc-table .p-datatable-tbody > tr > td {
height: calc(8px + var(--table-data-height)); }
.basti_small .rc-label > span {
padding: var(--label-padding) 0px; }
@media screen and (max-width: 960px) {
.basti .std-menu .profile-menu .p-menubar .p-menubar-root-list .p-submenu-list {
width: var(--std-profile-submenu-width-small);
left: calc(var(--std-profile-width-small) - var(--std-profile-submenu-width-small)); }
.basti .std-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled), .basti .std-menu .profile-menu .p-menubar .p-menubar-root-list.p-menuitem-active > .p-menuitem-link:not(.p-disabled) {
width: var(--std-profile-width-small);
padding: 0; }
.basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list .p-submenu-list {
width: var(--corp-profile-submenu-width-small);
left: calc(var(--corp-profile-width-small) - var(--corp-profile-submenu-width-small)); }
.basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled), .basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list.p-menuitem-active > .p-menuitem-link:not(.p-disabled) {
width: var(--corp-profile-width-small);
padding: 0; } }
@media screen and (max-width: 530px) {
.basti .std-menu .menu-logo-mini-wrapper {
height: var(--std-logo-height); }
.basti .std-menu .menu-logo-mini-wrapper .menu-logo-mini {
max-height: var(--std-logo-height);
width: var(--std-logo-width); }
.basti .std-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--std-topbar-buttons-small);
height: var(--std-topbar-buttons-small); }
.basti .std-menu .fadeout {
margin-top: calc(var(--std-header-height) + var(--std-logo-height)); }
.basti .corp-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--corp-topbar-buttons-small);
height: var(--corp-topbar-buttons-small); } } | public/themes/basti_small.css | :root {
--font-family: 'Roboto', sans-serif;
--font-size: 12px;
--login-form-top-bottom-padding: 30px;
--login-form-left-right-padding: 40px;
--login-form-field-margin: 1.5rem;
--std-header-height: 70px;
--std-menu-width: 240px;
--std-menu-collapsed-width: 80px;
--std-logo-width: 190px;
--std-logo-collapsed-width: 60px;
--std-logo-height: 60px;
--std-profile-height: 60px;
--std-profile-width-small: 60px;
--std-profile-padding: 0.25rem 0.5rem;
--std-profile-pic: 35px;
--std-profile-separator-margin: 4px;
--std-profile-submenu-width-small: 10rem;
--std-topbar-buttons: 40px;
--std-topbar-buttons-small: 25px;
--std-fadeout-width: 20px;
--std-fadeout-left: calc(var(--std-menu-collapsed-width) - var(--std-fadeout-width));
--std-menu-header-padding: 0.5rem 1rem 0.5rem 0.625rem;
--std-menu-item-padding: 0.375rem 0.75rem 0.375rem 1.5rem;
--corp-header-height: 70px;
--corp-logo-width: 190px;
--corp-profile-height: 60px;
--corp-profile-width-small: 60px;
--corp-profile-padding: 0.25rem 0.5rem;
--corp-profile-pic: 35px;
--corp-profile-separator-margin: 4px;
--corp-profile-submenu-width-small: 10rem;
--corp-topbar-buttons: 40px;
--corp-topbar-buttons-small: 25px;
--corp-menubar-height: 40px;
--corp-speeddial-size: 2rem;
--corp-menu-header-padding: 0.75rem 0.5rem;
--corp-menu-item-padding: 0.25rem 0.5rem;
--input-padding: 0.125rem 0.125rem;
--input-button-padding: 0rem 0.125rem;
--input-button-icon-size: 12px;
--button-padding: 0.125rem 0.25rem;
--button-icon-only-padding: 0.125rem 0.125rem;
--menubtn-leftbtn-padding: 0.125rem 0rem 0.125rem 0.25rem;
--menubtn-rightbtn-padding: 0rem 0.125rem 0rem 0.125rem;
--checkbox-size: 14px;
--radiobutton-size: 14px;
--tab-padding: 0rem 0.5rem;
--table-header-padding: 0.3rem 0.5rem;
--table-data-height: 18px;
--label-padding: 2.25px; }
body {
font-size: var(--font-size);
font-family: var(--font-family); }
.login-form .p-fluid {
padding: calc(var(--login-form-top-bottom-padding) / 2) var(--login-form-left-right-padding) var(--login-form-top-bottom-padding); }
.login-form .p-fluid .p-field {
margin-bottom: var(--login-form-field-margin); }
.login-form .login-logo-wrapper {
padding: var(--login-form-top-bottom-padding) var(--login-form-left-right-padding) calc(var(--login-form-top-bottom-padding) / 2); }
.basti_small .std-menu.menu-collapsed .menu-logo-wrapper {
width: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-logo-wrapper .menu-logo {
width: var(--std-logo-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-panelmenu-wrapper {
width: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-topbar {
margin-left: var(--std-menu-collapsed-width); }
.basti_small .std-menu.menu-collapsed .menu-logo-mini {
width: var(--std-logo-collapsed-width); }
.basti_small .std-menu .menu-header {
height: var(--std-header-height); }
.basti_small .std-menu .menu-topbar {
margin-left: var(--std-menu-width); }
.basti_small .std-menu .menu-logo-wrapper {
height: var(--std-header-height);
width: var(--std-menu-width); }
.basti_small .std-menu .menu-logo-wrapper .menu-logo {
max-height: var(--std-logo-height);
width: var(--std-logo-width); }
.basti_small .std-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--std-topbar-buttons);
height: var(--std-topbar-buttons); }
.basti_small .std-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
height: var(--std-profile-height);
padding: var(--std-profile-padding); }
.basti_small .std-menu .profile-menu .p-menubar .p-submenu-list {
width: calc(100% - var(--std-profile-separator-margin));
margin-left: var(--std-profile-separator-margin); }
.basti_small .std-menu .profile-image, .basti_small .std-menu .profile-image-null {
width: var(--std-profile-pic);
height: var(--std-profile-pic); }
.basti_small .std-menu .profile-image {
background-size: var(--std-profile-pic) var(--std-profile-pic); }
.basti_small .std-menu .profile-image-null::before {
font-size: calc(var(--std-profile-pic) - 2px); }
.basti_small .std-menu .menu-panelmenu-wrapper {
width: var(--std-menu-width);
padding-top: var(--std-header-height); }
.basti_small .std-menu .menu-logo-mini {
width: var(--std-logo-width); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-header > a {
padding: var(--std-menu-header-padding); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link:not(.p-disabled) {
padding: var(--std-menu-item-padding); }
.basti_small .std-menu .p-panelmenu .p-panelmenu-icon {
left: calc(var(--std-menu-width) - 30px); }
.basti_small .std-menu .fadeout {
left: var(--std-fadeout-left);
width: var(--std-fadeout-width);
margin-top: var(--std-header-height); }
.basti_small .corp-menu .corp-menu-header {
height: var(--corp-header-height); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar {
height: var(--corp-menubar-height); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled) {
padding: var(--corp-menu-header-padding); }
.basti_small .corp-menu .corp-menu-menubar .p-menubar .p-menuitem-link {
padding: var(--corp-menu-item-padding); }
.basti_small .corp-menu .corp-menu-logo-wrapper {
max-width: var(--corp-logo-width); }
.basti_small .corp-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--corp-topbar-buttons);
height: var(--corp-topbar-buttons); }
.basti_small .corp-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
height: var(--corp-profile-height);
padding: var(--corp-profile-padding); }
.basti_small .corp-menu .profile-menu .p-menubar .p-submenu-list {
width: calc(100% - var(--corp-profile-separator-margin));
margin-left: var(--corp-profile-separator-margin); }
.basti_small .corp-menu .profile-image, .basti_small .corp-menu .profile-image-null {
width: var(--corp-profile-pic);
height: var(--corp-profile-pic); }
.basti_small .corp-menu .profile-image {
background-size: var(--corp-profile-pic) var(--corp-profile-pic); }
.basti_small .corp-menu .profile-image-null::before {
font-size: calc(var(--corp-profile-pic) - 2px); }
.basti_small .corp-menu .p-speeddial .p-speeddial-button.p-button.p-button-icon-only {
height: var(--corp-speeddial-size);
width: var(--corp-speeddial-size);
top: calc((32px - var(--corp-speeddial-size)) / 2); }
.basti_small .corp-menu .p-speeddial .p-speeddial-button.p-button.p-button-icon-only .p-button-icon {
font-size: calc(var(--corp-speeddial-size) / 2); }
.basti_small .corp-menu .p-speeddial .p-speeddial-action {
height: var(--corp-speeddial-size);
width: var(--corp-speeddial-size); }
.basti_small .corp-menu .p-speeddial .p-speeddial-action .p-speeddial-action-icon {
font-size: calc(var(--corp-speeddial-size) / 2); }
.basti_small .p-component {
font-size: var(--font-size);
font-family: var(--font-family); }
.basti_small .p-inputtext {
padding: var(--input-padding); }
.basti_small .rc-button {
padding: var(--btnPadding, var(--button-padding, 0.125rem 0.25rem)); }
.basti_small .p-button.p-button-icon-only:not(.rc-toolbar-button) {
padding: var(--btnPadding, var(--button-icon-only-padding, 0.25rem 0.25rem)); }
.basti_small .p-button.p-button-icon-only.p-autocomplete-dropdown, .basti_small .p-button.p-button-icon-only.p-datepicker-trigger {
padding: var(--input-button-padding); }
.basti_small .p-button.p-button-icon-only.p-autocomplete-dropdown > .p-button-icon, .basti_small .p-button.p-button-icon-only.p-datepicker-trigger > .p-button-icon {
font-size: var(--input-button-icon-size); }
.basti_small .p-checkbox {
width: var(--checkbox-size);
height: var(--checkbox-size); }
.basti_small .p-checkbox .p-checkbox-box {
width: var(--checkbox-size);
height: var(--checkbox-size); }
.basti_small .p-checkbox .p-checkbox-box .p-checkbox-icon {
font-size: calc(var(--checkbox-size) * 0.7); }
.basti_small .p-radiobutton .p-radiobutton-box {
width: var(--radiobutton-size);
height: var(--radiobutton-size); }
.basti_small .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
height: calc(var(--radiobutton-size) * 0.6);
width: calc(var(--radiobutton-size) * 0.6); }
.basti_small .p-splitbutton-defaultbutton {
padding: var(--menuBtnPadding, var(--menubtn-leftbtn-padding, 0.125rem 0rem 0.125rem 0.25rem)); }
.basti_small .p-button.p-splitbutton-menubutton {
padding: var(--menubtn-rightbtn-padding); }
.basti_small .rc-togglebutton {
padding: var(--btnPadding, var(--button-padding, 0.125rem 0.25rem)); }
.basti_small .p-tabview .p-tabview-nav li .p-tabview-nav-link {
padding: var(--tab-padding); }
.basti_small .rc-table .p-datatable-thead > tr > th {
padding: var(--table-header-padding); }
.basti_small .rc-table .p-datatable-tbody > tr > td {
height: calc(8px + var(--table-data-height)); }
.basti_small .rc-label > span {
padding: var(--label-padding) 0px; }
@media screen and (max-width: 960px) {
.basti .std-menu .profile-menu .p-menubar .p-menubar-root-list .p-submenu-list {
width: var(--std-profile-submenu-width-small);
left: calc(var(--std-profile-width-small) - var(--std-profile-submenu-width-small)); }
.basti .std-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled), .basti .std-menu .profile-menu .p-menubar .p-menubar-root-list.p-menuitem-active > .p-menuitem-link:not(.p-disabled) {
width: var(--std-profile-width-small);
padding: 0; }
.basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list .p-submenu-list {
width: var(--corp-profile-submenu-width-small);
left: calc(var(--corp-profile-width-small) - var(--corp-profile-submenu-width-small)); }
.basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled), .basti .corp-menu .profile-menu .p-menubar .p-menubar-root-list.p-menuitem-active > .p-menuitem-link:not(.p-disabled) {
width: var(--corp-profile-width-small);
padding: 0; } }
@media screen and (max-width: 530px) {
.basti .std-menu .menu-logo-mini-wrapper {
height: var(--std-logo-height); }
.basti .std-menu .menu-logo-mini-wrapper .menu-logo-mini {
max-height: var(--std-logo-height);
width: var(--std-logo-width); }
.basti .std-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--std-topbar-buttons-small);
height: var(--std-topbar-buttons-small); }
.basti .std-menu .fadeout {
margin-top: calc(var(--std-header-height) + var(--std-logo-height)); }
.basti .corp-menu .p-button.p-button-icon-only.menu-topbar-buttons {
width: var(--corp-topbar-buttons-small);
height: var(--corp-topbar-buttons-small); } } | 0.2522 | 0.086671 |
.teacher{background:url(../images/theme/theme01.jpg) no-repeat center top #eee}
.form_list .row{padding-bottom:0}
.form_list .formL label{overflow:hidden;height:30px}
.form_list .formR ul li a{padding:0 20px}
.test .form_list .formR{width:780px}
.test .testList_new .formR{width:90%}
#makePaper .form_list .formR{width:680px}
#makePaper .form_list .row{padding-bottom:20px}
.form_list .formR{max-width:1019px}
.resultList{padding-top:6px}
.resultList li{width:auto;background:#fff;margin:0 10px 10px 0}
.resultList li a{padding:0 20px}
.resultList li.ac a{background-color:#6cd685;color:#fff}
.resultList li.ac:hover a{background-color:#1ed248 !important;color:#fff !important}
.testClsList li{height:26px;line-height:27px;margin-bottom:0}
.testClsList li a{padding:0 !important;margin-right:10px}
.testClsList li:hover{background:none !important}
.testClsList li:hover a{color:#6cd685 !important}
.testClsList li.ac{background:none !important}
.testClsList li.ac a{background:none !important;font-weight:bold;color:#6cd685 !important}
.testClsList li.ac:hover a{background:none !important;color:#1ed248 !important}
.setupMenu li .lisD{background:none !important}
/*章节知识点树*/
.problem_tree_cont{border:1px solid #d0e8f7;position:relative;background:#fff}
.problem_tree_cont h4{height:40px;line-height:40px;background:#edf8ff;text-indent:20px}
.problem_tree_cont .resetting{position:absolute;top:10px;right:20px;font-size:12px;color:#0098f0}
.problem_tree{padding:10px !important;padding-bottom:50px !important}
.problem_r{position:relative}
/*右侧*/
.homepage .main_r .main_cont{padding:30px 10px 30px 30px}
.homepage .main_r .main_cont .Ta_teacher select{height:40px;overflow:hidden;text-overflow:ellipsis}
.main_r .total_QA_list{margin-right:-20px}
.main_r .total_QA_list li{width:91px;border:1px solid #6cd685;height:118px;float:left;margin-right:20px;text-align:center}
.main_r .total_QA_list li span{display:block;height:25px;padding-top:50px;border-bottom:1px solid #6cd685;color:#6cd685;font-size:14px;margin-bottom:10px;background:url(../images/new_sprite.png) no-repeat #e7ffed}
.main_r .total_QA_list li .accept_ico{background-position:-235px -172px}
.main_r .total_QA_list li .QA_ico{background-position:-315px -172px}
.main_r .total_QA_list li .ask_ico{background-position:-155px -172px}
.main_r .total_QA_list li{font-size:22px}
.main_r .ta_student_list{margin-right:-20px;margin-top:20px}
.main_r .ta_student_list li{text-align:center;width:50px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:13px;float:left;margin-right:17px;margin-bottom:17px}
.main_r .ta_student_list li img{display:block}
.main_r .tec_note_list li{margin-bottom:20px}
.main_r .tec_note_list li h6 a{color:#017fd2}
.main_r .tec_note_list li p{color:#777}
/*二维码*/
.two_dimension_code{width:135px;height:135px;text-align:center;background-color:#fff095;padding:10px 13px;position:absolute;right:28px;top:118px}
.two_dimension_code h4{text-align:center;color:#cb6206;margin-bottom:4px}
/*教师首页*/
.teacher_home .main_l .tabCont{border:none;border-top:1px solid #DDD}
.teacher_home .main_l .resultList{margin-left:40px}
.teacher_home .main_l .resultList li{width:auto;padding-top:3px}
.teacher_home .main_l .resultList li a{padding:0 20px}
.teacher_home .main_l .tabItem{padding:0 !important}
.teacher_home .main_l .file_list{margin-right:-20px}
.teacher_home .main_l .file_list li{float:left;position:relative;padding:10px;width:343px;border:1px solid #ddd;margin-right:20px;margin-bottom:20px}
.teacher_home .main_l .file_list li img{float:left;margin-right:10px}
.teacher_home .main_l .file_list li h6{padding-top:5px}
.teacher_home .main_l .file_list li p{color:#777}
.teacher_home .main_l .file_list li p span{font-size:13px;margin-left:30px}
.teacher_home .main_l .file_list .mask_link{position:absolute;top:0;left:0;height:100%;width:100%}
.teacher_home .main_l .file_list .mask_link .mask_link_BG{position:absolute;top:0;left:0;height:100%;width:100%;background:#4ebbff;opacity:0.9;filter:Alpha(opacity=90)}
.teacher_home .main_l .mask_link_cont{position:relative;text-align:center}
.teacher_home .main_l .mask_link_cont a{color:#FFF;display:inline-block;padding-top:20px;margin:20px 20px;background:url(../images/ico.png) no-repeat}
.teacher_home .main_l .mask_link_cont a:hover{color:#fff !important}
.teacher_home .main_l .mask_link_cont .addfavLink{background-position:-5px -481px}
.teacher_home .main_l .mask_link_cont .favLink{background-position:8px -560px}
.teacher_home .main_l .mask_link_cont .readLink{background-position:-5px -636px}
.teacher_home .file_btn{width:60px;background-color:#0098f0 !important;text-align:center;font-size:12px !important;margin-right:10px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;border-radius:20px !important}
.tch_file_list li{width:720px !important}
/*首页end---------------------------------------------------------------------*/
/*备课*/
.prepare_lessons .item{padding-top:10px}
.prepare_lessons .item h5{border-bottom:1px solid #ddd;height:35px;line-height:35px}
.prepare_lessons .attentionTxt h5{border:none;background:url(../images/ico.png) no-repeat -131px -683px;text-indent:20px}
.prepare_lessons .attentionTxt p{font-size:12px;text-indent:20px}
.prepare_lessons .uploadFileList{width:730px}
.prepare_lessons .uploadFileList li{height:40px;position:relative;text-indent:20px;line-height:40px;margin-bottom:10px;background:#e7ffed}
.prepare_lessons .uploadFileList li span{position:absolute;top:1px;right:20px;color:#58c5bf}
.prepare_lessons .sel_file_location .sel_step{float:left;width:310px;margin-right:40px;padding-top:20px}
.prepare_lessons .sel_file_location .sel_step h6{height:40px;line-height:40px}
.prepare_lessons .sel_file_location .sel_step .resultList{margin:0}
.prepare_lessons .sel_file_location .sel_step .resultList li{margin-left:0;text-align:left}
.prepare_lessons .sel_step .treeBar{border:1px solid #ddd;height:380px;overflow:auto}
.prepare_lessons .sel_step .treeBar h6{height:40px;line-height:40px;border-bottom:1px dashed #ddd;text-indent:20px}
.prepare_lessons .sel_step .resultList li{height:40px;line-height:40px;width:290px;margin-bottom:6px;text-indent:10px}
.iconBtn .file{width:100%;height:100%}
.tea_prepare{position:relative}
.tea_prepare .course{position:absolute;right:32px;top:100px}
.tea_prepare .course .cour_btn{font-size:14px;color:#68afdb}
.tea_prepare .course .cour_btn i{width:13px;height:10px;margin-left:5px;overflow:hidden;background:url(../images/ico.png) -13px -296px}
.tea_prepare .course .course_box{position:absolute;top:30px;right:-70px;z-index:102;width:250px;background-color:#ffffff;box-shadow:0 2px 3px 3px #ccc;padding:20px}
.tea_prepare .course_box dl dt{width:180px;margin:12px 0}
.tea_prepare .course_box dl dd{float:left;width:60px;height:28px;color:#555;cursor:pointer;font-size:14px;text-align:center;line-height:28px}
.tea_prepare .course .course_box a{display:block}
.tea_prepare .course_box dl .ac{background-color:#6cd685;color:#fff}
/*滚动条*/ .big_progress{height:20px;width:100%;text-align:right;position:relative;top:15px;line-height:12px;font-size:12px;border:1px solid #ddd;margin-bottom:30px}
.big_progress .num{position:absolute;top:-14px !important;right:5px !important}
.big_progress .bg{background:#97d6ff;width:0;height:20px}
/*考试管理-jw*/
.main_cont .testArea{margin-top:10px}
.testArea{margin-top:30px}
.testListWrap{position:relative}
.testListWrap .objClip{display:block}
.testListWrap .arrow{background-image:none}
.testListWrap .testList{display:none}
.showTestList{border-top:1px solid #ddd;padding-top:20px}
.showTestList .arrow{left:567px;background-image:url(../images/ico.png)}
.showTestList .objClip{display:none}
.showTestList .testList{display:block}
.testList{margin-right:-20px}
.testList li{width:383px;margin-right:20px;margin-bottom:20px;height:70px;padding:20px;float:left;border:1px solid #ccc;position:relative}
.testList li h5{height:30px;line-height:30px;margin-bottom:10px}
.testList li button{width:78px}
.testList li i{position:absolute;height:60px;width:60px;background:url(../images/course.png);top:0;right:0}
.itemList li{position:relative;margin-bottom:20px}
.itemList .viewDetail i{background:url(../images/ico.png) no-repeat -90px -172px}
.itemList .dis_viewDetail{color:#ddd !important;cursor:text}
.itemList .dis_viewDetail i{background:url(../images/ico.png) no-repeat -90px -1172px}
.itemList li .clsSetupBox{padding:10px 0;border-top:1px solid #ddd;border-bottom:1px solid #ddd}
.itemList li .clsSetupBox i{position:absolute;width:20px;height:10px;top:41px;right:173px;background:url(../images/ico.png) no-repeat -130px -55px}
.itemList li .clsSetupBox .form_list .formR{width:790px;max-width:790px}
.itemList .sended .setupCls{display:none}
.itemList .sended .showTestList .arrow{left:670px}
.itemList .sended .title_r button{background:#ccc !important;cursor:inherit}
.multi_resultList li.sel_ac{background:#6cd685;color:#fff}
.multi_resultList li.sel_ac a{color:#fff}
.stu_table tbody td,.stu_table thead th{text-align:center}
.clsSetupBox .objScoreList li{float:left;margin-right:20px;margin-bottom:20px}
/*考试管理-创建新考试 zhanghainan*/
.test .testList_new{padding-top:20px}
.test .testList_new .row{width:100%;padding-bottom:15px}
.test .testList_new input{color:#999}
.test .testList_new .test_add{padding-top:6px}
.test .testList_new .testList_r{line-height:40px;height:40px;position:relative}
.test .testList_new .testList_score li{float:left;padding-right:16px;line-height:40px;margin-bottom:20px;*padding-bottom:20px}
.test .testList_new .testList_score span .text{width:40px;height:20px;border:#cec4c4 solid 1px;color:#333;font-size:14px}
.test .testList_new .testList_score .chkLabel{margin-right:0 !important}
.test .testList_new .select_test .select_test_tab{width:618px;border:1px solid #E7E7E7;padding:20px;padding-top:10px}
.test .testList_new .select_test_tab .up_test_list li{width:160px;height:120px;float:left;margin-right:19px;margin-bottom:19px;border:#aaaaaa solid 1px}
.test .testList_new .select_test .tabList li{margin-bottom:0}
.test .testList_new .up_test_list li img{width:160px;height:120px}
.test .testList_new .select_test_tab .up_test_list .more{border:#e5eae6 solid 1px;background:#f4faf6}
.test .testList_new .subTitleBar_text{height:22px;padding:4px 10px}
.test .testList_new .subTitle_Btn{position:relative;left:-6px}
.test .testList_new .subTitleBar_box .resultList li{width:160px}
.testList_sub .test_btn{height:40px !important;line-height:40px !important;text-align:center}
.testList_sub .sub{border:none;background-color:#77cbff;color:#fff !important;font-size:16px;cursor:pointer}
.testList_sub .cancel{background-color:#d8e9f4;color:#777 !important}
.test .k_name{width:372px}
.test .k_time{width:236px}
/*考务管理ljr*/
.evaluate_Box .students_table td{text-indent:0 !important;text-align:center !important}
/*考试管理-创建新考试--完成 zhanghainan*/
.test_success{padding-top:123px;padding-bottom:200px}
.test_success h2{height:59px;line-height:59px;color:#6cd685;font-size:24px;text-align:center;padding-bottom:20px}
/*考试管理-班级评论 zhanghainan*/
.test_class_overall_appraisal .test_achievement h4{height:40px;line-height:40px}
.test_table_wrap{height:333px;overflow:auto}
.test_table{width:806px;border:#aaa solid 1px}
.test_table th,.test_table td{border:#aaa solid 1px;text-align:center;color:#333;font-size:14px;font-weight:normal}
.test_table .id{text-align:left;padding-left:10px}
.test_table thead tr{height:50px}
.test_table tbody tr{height:40px}
.test_table tbody tr td em i{width:18px;height:18px;margin-right:10px;display:inline-block;background:url(../images/ico.png) no-repeat -90px -250px}
.test_table tbody tr td em i:hover{background:url(../images/ico.png) no-repeat -90px -290px}
.test_table tr{height:40px}
.form_list_left_justifying .formL label{width:88px}
/*评价完成*/
.test_table tbody .appraise_a i{width:14px;height:14px;overflow:hidden;background:url(../images/ico.png) no-repeat}
.test_table tbody .appraise_popo{cursor:pointer}
.test_table tbody .appraise_a .complete{background-position:-91px -212px}
.test_table tbody .appraise_a .open_my_evaluate{background-position:-91px -173px;margin-left:4px;cursor:pointer}
.test_table tbody .appraise_a .close_my_evaluate{background-position:-52px -293px}
.test_table tr span{color:#555;font-size:14px}
.test_table tr a{color:#0098f0;font-size:14px}
.test_achievement_foot{padding-left:11px;margin-top:9px;padding-bottom:27px;border-bottom:#e0e0e0 dashed 1px}
.test_class_this{padding:0 26px;margin-top:30px;height:130px;line-height:130px;background-color:#e7ffed}
.test_class_this span{font-size:18px;color:#444;padding-right:20px}
.Book_conList .row{padding-bottom:15px}
.test_statisticsLi{margin-top:23px}
.transmission:hover{text-decoration:underline}
/*科目总评 jw*/
.testpaper_and_score .form_list .formL label{width:70px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.testpaper_and_score dl dt,.testpaper_and_score dl dd{float:left}
.testpaper_and_score dl dt{margin-right:20px}
.testpaper_and_score .testpaperList{/*height:100px*/}
.testpaper_and_score .testpaperList a{text-align:center;line-height:20px;width:120px;display:inline-block;margin-right:10px;vertical-align:middle;padding:0 !important}
.testpaper_and_score .testpaperList img{border:1px solid #ccc;display:block;width:120px;height:90px}
.testpaper_and_score .testpaperList .score{font-size:48px;color:#1ed248;height:100px;line-height:100px;vertical-align:middle;margin-left:20px;display:inline-block;text-align:center}
.testpaper_and_score .testpaperList .text{width:49px;text-align:center}
.testpaper_and_score .testpaperList .editBtn{display:inline-block;height:20px;width:20px;background:url(../images/ico.png) no-repeat -89px -248px;cursor:pointer;vertical-align:middle}
.testpaper_and_score .scoreOkBtn{width:49px !important}
.original_testpaper .subTitleBar_box .resultList{margin-right:-20px}
.original_testpaper .subTitleBar_box .resultList li{width:166px}
/*上传完试卷后的原始试卷*/
.choose_original_testpaper h5{margin-bottom:10px}
/*教师--试卷管理-题目管理-知识点zhanghainan*/
.tezhagnhaioast_problem .course{position:absolute;right:8px;top:14px}
.tezhagnhaioast_problem .course .cour_btn{font-size:14px;color:#68afdb}
.tezhagnhaioast_problem .course .cour_btn i{width:13px;height:10px;overflow:hidden;background:url(../images/ico.png) -13px -296px}
.tezhagnhaioast_problem .course .cour_btn:hover{text-decoration:underline}
.tezhagnhaioast_problem .course .course_box{position:absolute;top:30px;right:-70px;z-index:102;width:258px;background-color:#fff;box-shadow:0 2px 3px 3px #ccc;padding:20px;*border:1px solid #DDDDDD}
.tezhagnhaioast_problem .course_box .arrow{*display:none}
.tezhagnhaioast_problem .course_box dl dt{width:180px;margin:12px 0}
.tezhagnhaioast_problem .course_box dl dd{float:left}
.tezhagnhaioast_problem .course_box dl dd a{display:block;height:28px;color:#555;cursor:pointer;font-size:14px;text-align:left;line-height:28px;min-width:40px;padding:0 20px;/*margin-right:20px;text-indent:20px;*/}
.tezhagnhaioast_problem .course_box dl .ac{background-color:#6cd685;color:#fff}
.tezhagnhaioast_problem .test_paper_sort .resultList li{background:none;color:#000}
.tezhagnhaioast_problem .test_paper_sort .resultList .ac{color:#6cd685}
.problem_box{margin-top:10px}
.problem_tab_r .problem_img{padding:0 !important}
.problem_tab_r .problem_img i{margin-left:-10px;width:5px;height:5px;display:inline-block;border-radius:3px;position:relative;top:10px}
.problem_img dl{position:relative;top:-17px}
.problem_img dl dd{width:160px;height:120px;border:#aaa solid 1px;float:left;margin-right:24px;margin-bottom:10px}
.problem_r_list .problem_img dl dd img{width:160px;height:120px}
.problem_tab_r .answer{padding:0 !important}
.problem_tab_r .answer span{margin-left:10px;color:#333;font-size:14px}
.problem_tab_r .problem_isg dl{position:relative;top:10px}
.problem_r .tab{width:100%}
.problem_r .teacher_tablist{width:78%}
/*搜索*/
.subTitle_s{margin-top:10px}
.subTitle_s .subTitleBar_text{width:430px}
.subTitle_s .search{background-color:#f4faf6;position:relative;left:-11px;border:#bddbc7 solid 1px;width:97px;height:40px !important;font-size:14px;color:#50bd69 !important;line-height:42px}
.subTitle_s .search:hover{background-color:#f4f7f5 !important}
.search_top{height:42px;line-height:42px;margin-top:26px}
.search_top p{color:#888}
.search_top p em{color:#ff9000;padding:0 10px}
.no_search{width:256px;margin:0 auto;padding-top:60px}
.no_search p{margin-bottom:16px;color:#555;text-align:left}
.no_search p a{height:36px;line-height:36px}
/*章节选题*/
.chapter_problem .formL label{text-align:left}
.chapter_problem .textOverArea .textOver{height:74px;overflow:hidden}
/*教师--试卷和作业--题目推送*/
.titlePush hr{margin-bottom:0}
.addBtnred{background-color:#fc6f51}
.titlePush .bottomBtnBar{margin-top:20px}
.titlePush .bottomBtnBar .pushBtn {}
.titlePush .form_list .formL label{line-height:35px}
.titlePush .form_list .formR{line-height:39px;width:700px !important}
.schTxtArea p span{margin-right:10px}
.form_style{margin-top:20px}
.form_style .row{padding-bottom:15px}
.form_style .row .formR{width:auto}
.form_style .row .formL label{width:140px}
.form_style .row .formR em{margin-left:10px}
/*新增的样式筛选排序*/
.terrace_list_btn{height:32px;line-height:32px;border-bottom:#CCC dotted 1px;padding-bottom:6px;margin-bottom:10px}
.terrace_list_btn span{float:left;font-size:16px;color:#333;padding-left:10px}
.terrace_list_btn ul{float:left;margin:0;margin-top:3px}
.terrace_list_btn ul li{background:none;text-align:center;width:50px;margin:0}
.terrace_list_btn ul .ac{background:#6cd685}
.terrace_list_btn em{float:right;margin-right:10px;font-size:12px;color:#ee4d4e}
.Tterrace{color:red}
.my_t{color:#19b8ff}
.provenance{position:absolute;right:0;top:15px;color:#aaa}
/*组卷 step2--筛选试题(高级搜索) 题目管理--题目筛选高级搜索*/
.filterSubject .searchBar{clear:both}
.filterSubject .searchBar a{color:#06c;text-decoration:underline}
.filterSubject .searchBar a:hover{color:red}
.searchBar .form_list li .btn{width:80px;color:#fff}
.testpaper h6{position:relative}
.testpaper h6 a{color:#06c;position:absolute;right:0;top:0}
.searchBar .form_list{margin-top:20px}
.make_sort .terrace_list_btn .resultList{padding:0;border:none;position:relative;left:4px}
/*组卷 step1/2*/
.make_testpaper .form_list .form{padding-bottom:15px}
.make_testpaper .form_list .formL label{width:120px}
.make_testpaper .form_list .formR label{margin-right:10px}
/*组卷 stepA底部*/
.make_testpaper .addPointBtn{width:60px;height:20px;line-height:16px;background:#ee4d4e;font-size:12px;color:#fff}
.make_testpaper .addPointBtn:hover{background:red}
.make_testpaper .piece{background:#efefef;padding:20px 0}
.make_testpaper .piece p{margin-bottom:10px}
.make_testpaper .piece p .text{width:150px}
.make_testpaper .piece textarea{width:203px;height:50px}
.make_testpaper .piece .addSubBtn{margin-top:10px;width:100px;height:30px;line-height:25px;background:#ccc;font-size:12px;color:#fff;background:#fc6f51}
.make_testpaper .piece .addSubBtn:hover{background:red}
.make_testpaper .piece_part{background:#f8f8f8;padding:20px;margin-bottom:10px}
.make_testpaper .piece_part h6{color:#900}
.make_testpaper .piece_part p{margin-left:30px}
.testPaperBodyTree .volume{font-size:14px}
.testPaperBodyTree .volume .subTree{font-size:12px;margin:10px 0 0 20px}
.testpaperSetup{width:160px;background:#fff;color:#666;float:left;font-size:12px}
.testpaperSetup h6{font-size:16px;margin-top:10px}
.testPaperDemo{padding-left:120px;margin:20px 0 0 10px;width:490px;float:left;position:relative;background:#fff}
.testPaperDemo .hover{cursor:default;color:red;background:#efefef;position:relative}
.testPaperDemo .paper_bindLine{float:left;margin-left:-100px;width:81px;height:573px;background:url(../images/paper_header.gif)}
.testPaperDemo .paper_bindLine:hover{background-position:81px 0}
.testPaperDemo .setup,.testPaperDemo .topTotalTable{padding:5px 0}
.testPaperDemo .setup .setupBar{position:absolute;top:0;right:10px}
.testPaperDemo .setup .setupBar span{cursor:pointer;margin-right:10px;font-size:12px;color:#ccc;font-weight:normal}
.testPaperDemo .setup .setupBar span:hover{color:red}
.testPaperDemo .setup .setupBtn{cursor:pointer;font-size:12px;color:#ccc;font-weight:normal}
.testPaperDemo .setup .setupBtn:hover{color:red}
.testPaperDemo #secret_sign{font-size:12px;color:#ccc}
.testPaperDemo #main_title,.testPaperDemo #sub_title,.testPaperDemo #info,.testPaperDemo #student_input,.testPaperDemo table{text-align:center;margin-bottom:5px}
.testPaperDemo #main_title{font-size:24px;font-weight:bold}
.testPaperDemo #sub_title{font-size:20px;font-weight:bold}
.testPaperDemo .topTotalTable{width:100%}
.testPaperDemo table td,.testPaperDemo table th{padding:0 8px;font-size:12px;text-align:left}
.testPaperDemo #pay_attention{font-size:12px;color:#0C9;line-height:18px}
.testPaperDemo #pay_attention h6{font-weight:bold}
.testPaperDemo .paperPart{padding:10px}
.testPaperDemo .paperPart .testPaperTitle p{text-align:center;font-size:18px;font-weight:bold}
.testPaperDemo .paperPart .subPart{margin-bottom:20px;padding:5px 0}
.testPaperDemo .paperPart .subPart table{float:left;margin-right:10px}
.testPaperDemo .paperPart .subPart h6 i{width:auto !important}
/*base i 的宽度*/
.testPaperDemo .editBar .text{width:380px}
.testPaperDemo .editBar .btn{padding:0 5px;font-size:12px}
.testPaperDemo .editBar textarea{width:450px;height:150px;margin:5px}
.testPaperDemo .top_solid{border-right:1px solid #555;border-bottom:1px solid #555}
.testPaperDemo .top_solid th{border-left:1px solid #555;border-top:1px solid #555}
.testPaperDemo .top_solid td{border-left:1px solid #555;border-top:1px solid #555}
/*组卷 step3--题目筛选*/
.paperStructure{background:#e7ffed;padding:20px;color:#fff;opacity:1;/* max-width:830px;*/ position:relative}
.paperStructure h5{color:#000;font-size:16px;margin-bottom:10px}
.paperStructure .paperItemListWrap{width:1040px;overflow:hidden;margin-left:20px;position:relative}
.paperStructure .moveBtn{position:absolute;width:16px;height:20px;background:url(../images/ico.png);opacity:0.5;cursor:pointer}
.paperStructure .prevItem{left:20px;top:60px;background-position:-12px -89px}
.paperStructure .nextItem{right:20px;top:60px;background-position:-12px -49px}
.paperStructure .paperItemList{height:30px;position:relative}
.paperStructure .paperItemList li{width:100px;text-align:center;float:left;height:30px;line-height:30px;color:#333}
.paperStructure .paperItemList li:hover{color:red !important;cursor:pointer !important}
.paperStructure .paperItemList .ac{background:#6cd685;color:#fff}
.paperStructure .paperItemConts ul{background:#6cd685;color:#fff;position:relative;clear:both}
.paperStructure .paperItemConts ul li{float:left;margin-right:20px;color:#fff;font-size:12px;padding:0 10px}
.paperStructure .paperItemConts ul .ac{background:#1ED248}
.paperStructure .paperItemConts ul li:hover{cursor:pointer}
.paperStructure .paperItemConts ul li b{margin-left:5px}
.paperStructure .paperItemConts ul li b:hover{color:red}
.paperStructure .demoBar{background:#ddd;position:relative;padding:10px;padding-bottom:20px;color:#333;max-height:500px;overflow:auto}
.paperStructure .demoBar .close{position:absolute;top:0;right:4px;font-size:12px;color:#0098F0}
.paperStructure .demoBar .torso{font-size:12px;color:#000}
.paperStructure .demoBar ol li{font-size:12px;padding-left:10px;color:#000}
.paperStructure .demoBar ol li i{margin-right:10px}
.paperStructure .demoBar span{padding-left:10px;color:#000;font-size:12px}
.paperStructure .demoBar p{font-size:14px;color:#000}
.paperStructure .demoBar .analyze .j{font-size:14px}
.paperStructure .demoBar .analyze .n i{color:#fc6f51}
.paperStructure .demoBar .st{padding-left:10px;color:#000}
/*组卷 step4--试卷预览*/
.make_testpaper_View{float:none;width:auto}
.make_testpaper_View .paper_bindLine{margin-left:-130px}
.make_testpaper_View .subPart h6{font-size:16px;font-weight:bold}
.make_testpaper_View .subPart h6 em{font-weight:bold}
/*.testPaperView .paperArea .paper .checkArea label em{float:none}jw*/
/*组卷 step4 设定成绩*/
.make_setScore .form_list .formR{width:730px;max-width:800px}
.make_setScore .form_list .formR .text{height:25px}
.make_setScore .scoreList li{border-bottom:1px solid #ddd;padding-top:20px}
.make_setScore .scoreList li .formL label{color:#900;font-size:18px;width:120px;overflow:visible}
.make_setScore .scoreList li button{background:#4ebbff;width:80px}
.make_setScore .scoreList .itemScore{margin-right:5px;font-size:30px;color:#6cd685;display:inline-block;vertical-align:-4px}
.make_setScore .scoreList .scoreBar{font-size:16px;display:inline-block;position:absolute;top:0;right:20px;width:200px;text-align:right}
.make_setScore .scoreList .testpaper_totalScore{font-size:40px;color:#6cd685;display:inline-block;vertical-align:-6px}
.make_setScore dl{width:630px}
.make_setScore dl dt{margin-bottom:20px}
.make_setScore dl dd{margin-right:20px;float:left;margin-bottom:10px}
.make_setScore .subScore{border-top:1px dashed #ccc;padding-top:10px}
/*试卷管理列表zhang*/
.test_paper_sort{height:33px;padding:0 0 0 10px;line-height:28px;background-color:#f4faf5;*margin-top:20px}
.test_paper_sort p{color:#555}
.test_paper_sort p em{width:14px;height:14px;overflow:hidden;margin-left:18px;display:inline-block;vertical-align:middle;background:url(../images/ico.png) no-repeat}
.test_paper_sort p .up{background-position:-92px -372px}
.test_paper_sort p .down{background-position:-92px -333px}
.cont24 .alpha{position:relative}
.problem_box .problem_r .problem_r_list{position:absolute;right:0;top:0;cursor:pointer;z-index:60}
.problem_box .problem_r{position:relative}
/*资料管理*/
.teac_test_paper .formR{width:1075px;max-width:1075px}
.teac_test_paper .schResult{position:absolute;top:5px;right:0}
/*私信对话详情*/
.dailogBar .headPic{float:right;margin-top:10px}
.dailogBar .textareaBox{width:630px;float:left;position:relative;left:120px}
.chat_list{width:572px}
.send_list .send_text{margin-top:40px;margin-left:118px}
.chat{width:572px;border:#e0e0e0 solid 1px;padding:19px 29px;margin-left:117px;margin-bottom:20px}
.chat b{width:21px;height:20px;position:absolute;display:inline-block;top:1px}
.chat .pic{width:80px;height:80px;position:absolute;top:0;right:11px}
.chat .colse{width:10px;height:10px;cursor:pointer;position:absolute;background:url(../images/ico.png) no-repeat -95px -95px;right:9px;top:9px}
.chat p{line-height:24px}
.chat p span{float:left}
.look{margin-bottom:60px}
.chat .s_l{right:-21px;background:url(../images/input_ico.png) -883px 0;top:-1px}
.chat .pic{right:-110px;top:-1px}
.chatbf{background-color:#f8f8f8;margin-left:118px}
.chatbf .s_r{left:-21px;top:-1px;background:url(../images/input_ico.png) -920px 0}
.chatbf .picL{left:-110px;top:-1px}
.look{margin-top:60px}
.look_smiling_facer .prompt{position:relative}
.look_smiling_facer .prompt .number{width:26px;display:inline-block}
.look_smiling_facer .btn{margin-right:119px;margin-top:10px}
.course_deta_list{margin-top:40px}
/*上传作业*/
.test_up{position:relative}
.teac_up .teac_up_border{padding:10px 0}
.teac_up_border .teacher_up_test span{margin-left:18px;color:#999}
.teac_up .form_list .formR ul li{padding:0}
.teac_up .form_list .formL label{line-height:35px}
/*组织作业zhn*/
.organ_class{height:60px;line-height:60px}
.paper .addWork{position:absolute;right:0;top:0}
/*通知*/ .notice .resultList{padding:20px 0 12px 0;border-bottom:1px solid #e7e7e7}
.notice .resultList li{margin-right:10px}
.notice .resultList li a{padding:0 20px}
.notice .notice_list{margin-bottom:40px}
.notice .notice_list li{line-height:33px;padding:0 10px 20px 10px;border-bottom:1px #ccc dashed;position:relative;width:98%}
.notice .notice_list li p{padding-top:20px;width:700px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.notice .notice_list .notice_name{font-weight:bold;padding-top:20px}
.notice .notice_list li .no_see a{position:relative;top:-10px}
.notice .notice_list .notice_name em{margin-left:10px}
.notice .notice_list .notice_time{position:absolute;top:21px;right:10px}
.notice .notice_send_btn{position:absolute;top:55px;right:10px}
.bg_gray_ll{background:#f4f4f4}
.no_see{font-weight:bold}
.notice .QA_cont_imgBox img{border:1px #ccc solid}
.notice .QA_cont_imgBox{margin-top:10px}
.notice .system_list li{padding-bottom:60px}
/*作业列表zhn*/ .sup_box .sup_ul li{padding:20px 22px;margin-bottom:20px}
.sup_box .sup_ul li .sup_l{width:600px;border-right:#ccc dotted 1px !important;margin:0}
.sup_box .sup_ul li .sup_l h4{padding-bottom:20px;float:none;overflow:hidden;height:30px;text-overflow:ellipsis;width:590px;white-space:nowrap
}
.sup_box .sup_ul li .sup_l h4 i{width:auto;padding-right:10px;line-height:13px;height:18px}
.sup_box .sup_ul li .sup_l dl dd span{display:inline-block}
.sup_box .sup_ul li .sup_r{width:150px}
.sup_box .sup_ul .sup_li{border:#ccc solid 1px}
.sup_box .sup_ul li .sup_l dl dd em{vertical-align:top;color:#555;padding-right:10px;font-size:14px;display:inline-block}
.sup_box .sup_ul li .sup_l dd .synopsis{width:486px;font-size:14px;color:#555;padding-bottom:8px}
.sup_box .sup_ul li .schedule{padding-top:20px}
/*.sup_box .sup_ul .this{border:#0098f0 solid 1px}*/
.sup_box .sup_ul .sup_r{text-align:center}
/*原.sup_box .sup_ul .sup_r .notice{background:none;color:#555 !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important}*/
/*新改*/
.sup_box .sup_ul .sup_r .notice{background:#10ade5;color:white !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important;}
.sup_box .sup_ul .sup_r .sup_box em{color:#aaa}
.sup_box .sup_ul .sup_r .notice:hover{color:#fff !important}
.noJgBtn{background:none !important;color:#aaa !important;border:none !important}
.noJgBtn:hover{border:none !important;background:none !important;color:#aaa !important}
.no_padding_form_list .row{overflow:inherit}
/*我的私信*/
.msg_mine li{border-bottom:1px dashed #e7e7e7;position:relative}
.msg_mine li img{float:left;margin:30px 20px 25px 0}
.msg_mine li p{width:720px;margin-left:100px;line-height:33px}
.msg_mine li p img{margin:0 !important;float:none !important}
.msg_mine .bottom_tab{position:absolute;bottom:19px;right:10px}
.msg_mine li p a{margin-left:5px}
.msg_mine .notice_list{margin-bottom:40px}
/*作业管理--作业详情 jw*/
.work_detail .form_list .submitBtnBar button{margin-right:5px !important}
.work_detail .studentList .chkLabel{margin:-3px 0 0 0}
.work_detail .questionArea{border:1px solid #ddd;padding:20px;margin-left:20px}
.work_detail .stu_item{padding-bottom:20px}
.work_detail .submitBtnBar a{margin-right:5px}
.work_detail .no_padding_form_list .row .formR{width:699px;line-height:35px}
.work_detail .form_list .formR span{margin-right:20px}
.work_detail .form_list .formL label{line-height:35px}
.work_detailTab{border:none !important}
.detailtabAllL .chkLabel{display:inline-block;vertical-align:middle;height:40px;line-height:40px;padding-left:18px;background-image:url(../images/ico.png);background-repeat:no-repeat;background-position:-132px -160px;margin-right:0}
.work_detail .anser{font-size:18px;color:#111;height:52px;line-height:52px}
.work_detail .tabList_border{width:100%}
.work_detail .tabList_border .tabList{border-bottom:#E7E7E7 solid 1px}
.work_detailtabAll{margin-top:20px;padding-left:4px}
.work_detailtabAll .detailtabAllL{margin-right:24px}
.work_detailtabAll a{color:#FFF}
.Rowwork .resultList li:hover{background:none !important;color:red}
.Rowwork .resultList li a:hover{color:#6cd685 !important}
.Rowwork .resultList li.ac a{background:none !important;color:#6cd685 !important;font-weight:bold}
.Rowwork .resultList li.ac{background:none !important;color:#fff !important}
/*备课列表zhn*/
.tea_prepare .subTitle_s{margin:20px 0 0 0}
.tea_prepare .integral i{width:19px;height:19px;overflow:hidden;text-align:center;line-height:19px;display:inline-block;background-color:#ffc309;color:#fff;border-radius:12px;vertical-align:middle}
.tea_prepare .integral em{color:#26c14a;width:auto;height:19px !important;line-height:19px;background:none;margin-left:8px}
.tea_prepare .integral em a{font-size:14px;color:#26c14a}
.tea_prepare .form_list .formL label{line-height:38px;*line-height:normal;height:30px}
.tea_prepare .teacprepare_list li{width:489px;padding:20px;height:60px;position:relative}
.tea_prepare .teacprepare_list li dl{width:650px;float:left}
.tea_prepare .teacprepare_list li dl dt{width:57px;height:60px}
.tea_prepare .teacprepare_list li dl dt img{width:57px;height:57px}
.tea_prepare .teacprepre_list li dl dd{padding-left:10px;width:280px}
.tea_prepare .teacprepare_list li dl dd h4{margin-bottom:0}
.tea_prepare .lesson_plan{width:60px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;font-size:13px;border-radius:20px !important;background-color:#0098f0 !important;text-align:center !important}
.tea_prepare span{color:#777;font-size:13px}
.tea_prepare .test_paper_sort p em{margin-left:18px}
.test_paper_my{padding-left:2px}
.test_paper_my .share{background:none !important;border:#6cd685 solid 1px !important;color:#6cd685 !important}
.test_paper_my .share:hover{background:#6cd685 !important;color:#fff !important}
.test_paper_my .batch{background-color:#ccc !important;color:#999 !important;border:#ddd solid 1px !important}
.test_paper_my .batch:hover{background-color:#ccc !important;color:#999 !important}
.tea_prepare .classList{vertical-align:middle;width:210px;height:30px;overflow:hidden;display:inline-block;white-space:nowrap;text-overflow:ellipsis}
.tea_prepare .share{margin:0}
.tea_prepare .classList a{margin-right:10px}
.tea_prepare .classList a:hover{text-decoration:underline}
.tea_prepare .teacprepare_list li .cek{position:absolute;right:-12px;top:-6px;z-index:100}
.my_papers .collect .x{background-position:-85px -528px}
.my_papers .collect .x:hover{background-position:-85px -488px}
.my_papers .collect .x_ac{background-position:-85px -488px}
.my_papers .read .f{background-position:-88px -611px}
.my_papers .read .f:hover{background-position:-88px -571px}
.paperStructureBox{position:relative;background:#e7ffed;border:#a6e3b4 solid 1px;padding:20px}
.paperStructureBox button{position:absolute;right:20px;top:15px;color:#fff;height:36px;line-height:36px}
.paperStructureBox h4{text-align:left;color:#444;font-size:14px;margin-bottom:10px}
.paperStructure_list{height:auto;min-height:30px}
.paperStructure_list li i{width:14px;height:14px;overflow:hidden;margin-left:4px;background:url(../images/ico.png) no-repeat -94px -94px}
.paperStructure_list li button{position:static}
.paperStructure_list .paperLi{height:28px;background-color:#fff;line-height:28px;margin-bottom:10px;width:100px;float:left;border:#ccc solid 1px;padding:0 12px;position:relative;margin-right:10px}
.paperStructure_list .this{background:#a6e3b4}
.paperStructure_list .paperLi em{width:10px;height:10px;position:absolute;right:2px;top:0;color:#ff7c62;cursor:pointer}
.paperStructure_list .paperStructure_Btn{padding:0}
/*答疑管理*/
.answer_questions .subTitle_r{position:relative;left:18px}
.answer_questions .make_testpaperList{padding-bottom:20px}
.answer_questions .make_testpaperList .make_testpaperli{border-bottom:#ccc dashed 1px;padding-bottom:30px}
.answer_questions .make_testpaperList .test_tite{height:35px;line-height:35px}
.answer_questions .test_tite h4{font-size:16px;color:#111}
.answer_questions .test_tite em{font-size:14px;color:#999}
.answer_questions .testpaperBox{line-height:35px;color:#333;font-size:14px}
.answer_questions .testpaperBox img{max-width:870px}
.answer_questions .test_BoxBtn{margin-top:10px}
.answer_questions .box_tab{width:98%;position:relative;left:-10px}
.answer_questions .test_BoxBtn .comeFrom{font-size:14px;color:#ccc}
.answer_questions .answer_testList{float:left;margin-right:20px}
.answer_questions .answer_testList li{float:left;padding-right:5px}
.answer_questions .box_btn a{font-size:14px;color:#555 !important}
.answer_questions .answerBox{border-top:#e0e0e0 solid 1px;position:relative;margin-top:4px;display:none}
.answer_questions .open_answer .answerW{display:block}
/*显示答案*/
.answer_questions .open_answer .answerM{display:none}
.answer_questions .open_ask .answerW{display:none}
/*显示回答*/
.answer_questions .open_ask .answerM{display:block}
.answer_questions .answer_list{padding-top:18px}
.answer_questions .answer_list li {
padding-left:50px;margin-bottom:18px}
.answer_questions .answer_list li .answer_listL{margin-left:-50px;float:left;margin-right:18px;position:relative}
.answer_questions .answer_listR{width:800px}
.answer_questions .answer_listR .answer_a em{color:#777;font-size:14px}
.answer_questions .answer_listR .answer_a span{width:72px;height:22px;background-color:#ff9c6b;line-height:22px;font-size:12px;color:#fff;text-align:center;display:inline-block;border-radius:10px;margin-left:10px}
.answer_questions .answer_listR .answer_a{font-size:14px;color:#111;margin-bottom:6px}
.answer_questions .answer_listR .answer_a .put{background:none;color:#ff7c66;border:#ff9c6b solid 1px;cursor:pointer}
.answer_questions .answer_listR .answer_a .put:hover{background-color:#ff9c6b;color:#fff}
.BtnBox{margin-bottom:10px}
/*文件详情页*/
.teaching_plan{width:1054px;margin:0 auto}
.teaching_plan .introduce_list{margin-top:20px;position:relative;width:1054px}
.teaching_plan .introduce_list dt{position:absolute;left:1px;top:0}
.teaching_plan .introduce_list dd{margin-left:48px;margin-top:3px;width:1000px;line-height:20px}
.teaching_plan .read_div{margin-top:10px;margin-bottom:10px}
.teaching_plan button{line-height:40px}
.collectionbtn{color:#000 !important}
/*答疑提问*/
.AQ_ask .form_list li{margin-right:10px}
.AQ_ask .form_list .formR{width:85%}
.AQ_ask .replen_list{padding-left:10px;margin-top:20px;padding-bottom:30px;border-bottom:1px #ccc dashed}
.AQ_ask .replen_list h4{margin:10px 0 12px 0}
.AQ_ask .replen_list textarea{width:76% !important}
.AQ_ask .btnArea{width:268px;position:absolute;top:40px;right:-75px}
.submit_b{text-align:left}
.submit_b .chkLabel{margin-left:10px;vertical-align:text-top}
.make_testpaperli{margin-bottom:30px}
/*错题详情*/
.digitalFile p .correct{margin-right:10px}
.digitalFile p .correct i{background:url(../images/ico.png) no-repeat;width:18px;height:12px;margin-left:6px}
.digitalFile p .correct .right{background-position:-144px -894px}
.digitalFile p .correct .wrong{background-position:-144px -854px}
.digitalFile p .correct .half{background-position:-92px -1214px}
.digitalFile .my_answer{margin-bottom:10px}
.digitalFile p .correct{margin-right:10px;display:inline-block}
.digitalFile p .correct i{background:url(../images/ico.png) no-repeat;width:18px;height:12px;margin-left:6px}
.digitalFile p .correct .right{background-position:-144px -894px}
.digitalFile p .correct .wrong{background-position:-144px -854px}
.digitalFile p .correct .half{background-position:-92px -1214px}
.digitalFile .my_answer{margin-bottom:10px}
/*主页--文件详情页*/
.docDetail .tabItem p span{display:inline-block;width:704px;margin-left:47px;margin-top:-25px}
.docDetail .check_div{margin-left:47px;margin-top:10px;margin-bottom:20px}
/*推送题目结果*/
.bear_push .fruit{font-size:13px;color:#888;margin-bottom:10px}
.bear_push .fruit em{color:#ff9000;font-size:14px;padding:0 4px}
.title_box{position:relative}
.title_box .fruit_listL{margin-top:40px;color:#718898}
.title_box{height:190px;margin:0 34px}
.title_box .fruit_listL h4{width:94px;color:#718898}
.title_box .fruit_listL p{clear:both}
.title_box .topic_detail{position:absolute;top:85px;left:-30px;z-index:20;width:820px;background:#fff;border:1px solid #ccc;padding:20px}
.title_box .topic_detail .arrow{left:35px}
.title_box .topic_detail .arrow_l{left:35px}
.title_box .topic_detail .topic_detail_cont{max-height:300px;overflow:auto}
.title_box .topic_detail_r{left:-460px}
.title_box .topic_detail_r .arrow{left:470px}
.fruit_list li{border-bottom:#ccc dashed 1px;margin-bottom:23px}
.title_box .fruit_listL table{width:90px !important}
/*题目推送结果*/
.push_result .form_list .formR{width:870px}
/*数据统计*/
.statis_chart .echarts{width:100%;height:230px;padding-top:10px}
.statistics .statistics_t{margin-bottom:60px}
.statistics .statistics_t .tabList{height:40px;border-bottom:1px solid #ddd}
.statistics .statistics_t .tabList li{float:left;height:40px;color:#1ababe;cursor:pointer;font-size:14px;text-align:center;line-height:32px}
.statistics .statistics_t .tabList .this{background-color:#00cacf;color:#fff}
.statistics .statistics_t .tabList .statistics_list{padding:20px 10px}
.statistics .statistics_t .statistics_list ol{display:none}
.statistics .statistics_t .statistics_list ol li{float:left;margin-right:60px;font-size:12px;color:#4e6bab;padding:10px 0;cursor:pointer}
.statistics_t .nameList,.nameList2{padding:10px 30px;border:#ccc solid 1px;margin-bottom:20px;position:relative;margin-top:20px}
.statistics_t .nameList h3,.nameList2 h3{font-size:16px;margin-bottom:20px;color:#333}
.statistics_t .nameList dl{height:auto;line-height:18px;border:none}
.statistics_t .nameList dl dd{float:left;padding:4px 30px;cursor:pointer}
.statistics_t .nameList dl dd span{color:#718898;font-size:14px}
.statistics_t .nameList dl .this{background-color:#6cd685}
.statistics_t .nameList dl .this span{color:#fff}
.statistics_t .nameList2 .naList{line-height:18px;border:none}
.statistics_t .nameList2 .naList{padding:4px 0}
.statistics_t .nameList2 .naList td{text-align:center;width:60px;height:24px;line-height:24px;padding:0 !important}
.statistics_t .nameList2 .naList span{color:#718898;font-size:14px;width:60px;height:24px;
vertical-align:middle;overflow:hidden;display:inline-block;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}
.statistics_t .nameList .naList .this{background-color:#6cd685}
.statistics_t .nameList .naList .this span{color:#fff}
.statistics_t .nameList2 .naList .this{background-color:#6cd685;color:#fff}
.statistics_t .nameList2 .naList .this span{color:#fff}
.statistics_t .nameList .naListtye{padding-left:50px}
.statistics_t .nameList .naListtye dt{margin-left:-50px;float:left;font-size:14px;position:relative;top:5px}
.statistics_t .name_box .nameList{display:none}
.statistics_t .name_box .nameList dd{padding:5px 20px}
.statistics_t .name_box .nameList .ac{background-color:#6cd685}
.statistics_t .name_box .nameList .ac span{color:#fff !important}
.statistics_t .nameList .textName{position:absolute;top:10px;left:200px;cursor:pointer}
.statistics_t .name_box .textName i{width:10px;height:6px;overflow:hidden;display:inline-block;background:url(../images/ico.png) no-repeat -65px -247px}
/*熊孩子管理器*/
.bear_children table{border-right:1px solid #ccc;border-bottom:1px solid #ccc}
.bear_children table th{border-left:1px solid #ccc;border-top:1px solid #ccc;height:50px;background:#f6fff8}
.bear_children table td{border-left:1px solid #ccc;border-top:1px solid #ccc}
.bear_children table{width:870px;margin-top:15px}
.bear_children table .em_ico{width:14px;height:14px;overflow:hidden;margin-left:5px;display:inline-block;vertical-align:middle;background:url(../images/ico.png) no-repeat -92px -812px;cursor:pointer;position:relative;top:-1px}
.bear_children table .up{background-position:-92px -772px}
.bear_children table .down{background-position:-52px -812px}
.bear_children table td{text-align:center}
.bear_children .tab{width:870px;margin-top:38px}
.bear_children .tab .tabCont{border-left:none;border-right:none;border-bottom:none}
.bear_children .tab .tabCont .tabItem{padding-left:0}
/*答疑管理*/
.answerBigBox{position:relative;top:10px}
.answerBigBox .editor{margin-top:10px}
/*查看批改*/
.correctPaper{position:relative;border-bottom:20px}
.correctPaper .titlr_r{position:absolute;right:0;top:8px}
.test_class_this{text-align:center;height:112px;background-color:#e7ffed;line-height:112px;margin-top:20px}
.test_class_this span{font-size:18px;color:#444;padding-left:18px}
/*个人设置 jw*/
.userSetup .title{margin-bottom:30px}
.userSetup .form_list .row{ padding-bottom:20px}
.userSetup .tabCont{border:none;border-top:1px solid #ddd;padding-top:30px}
.userSetup .instructions{background:#eee;padding:20px;margin-bottom:30px}
.change_pwd .form_list .formL label{width:100px}
.picEditBar{width:462px;text-align:center}
.picEditBar .default_pic{border:1px solid #ddd;margin-top:10px}
.picEditBar .default_pic .imgBar{width:460px;margin:0 auto}
.picEditBar .default_pic .imgBar img{display:block}
.picEditBar .default_pic span{padding:20px 20px 10px;display:inline-block;text-align:justify}
.picEditBar .btnBar{margin-top:30px}
.pic_clipBar h5{margin:60px 20px 10px;color:#999}
.pic_clipBar .clip_img{float:left;margin-left:18px;overflow:hidden}
.pic_clipBar .clip_img230{width:230px;height:230px}
.pic_clipBar .clip_img70{width:70px;height:70px}
.pic_clipBar .clip_img50{width:50px;height:50px}
.picEditBar .fileinput-button .uploading .file{width:352px;height:50px}
/*教师-答疑统计*/
.staticsBox .statics{padding-left:120px;padding-top:36px}
.staticsBox .statics li{width:100px;height:115px;margin-right:80px;float:left}
.staticsBox .statics li p{width:97px;height:73px;border:#b6eec4 solid 1px;border-radius:4px;background:#e7ffed;text-align:center}
.staticsBox .statics li p em{width:34px;height:34px;display:inline-block;overflow:hidden;background:url(../images/new_sprite.png) no-repeat}
.staticsBox .statics li .staticsT em{background-position:-182px -187px}
.staticsBox .statics li .staticsH em{background-position:-345px -182px}
.staticsBox .statics li .staticsC em{background-position:-266px -182px}
.staticsBox .statics li .staticsBZ em{background-position:-425px -180px}
.staticsBox .statics li span{display:block;text-align:center;margin-top:10px}
.staticsBox .statics li b{display:block;font-size:14px;color:#3cba5a;line-height:20px;height:20px}
.staticsBox .statics li .staticsB{width:97%;height:39px;display:block;font-weight:normal;font-size:22px;color:#777777;line-height:39px;text-align:center;border:#e3e3e3 solid 1px;border-top:none;position:relative;top:-2px}
.staticsBox .statics .statics_each em{background-position:-182px -187px}
.staticsBox .statics .statics_each em{background-position:-266px -182px}
/*over状态*/
.staticsBox .statics .statics_over p{background-color:#6cd685}
.staticsBox .statics .statics_over p b{color:#fff}
.staticsBox .statics .statics_over .staticsT em{background-position:-182px -267px}
.staticsBox .statics .statics_over .staticsH em{background-position:-344px -260px}
.staticsBox .statics .statics_over .staticsC em{background-position:-266px -263px}
.staticsBox .statics .statics_over .staticsBZ em{background-position:-425px -260px}
.staticsBox .tabBox .tabList{border-bottom:#E7E7E7 solid 1px}
.staticsBox .tabBox .tabCont{border:none}
/*藤条棍*/
.rattancent_list{border-bottom:#ccc dashed 1px}
.rattancent_list_nobottom{border-bottom:0}
.rattanBox .rattanR button{color:#555555 !important;font-size:14px !important}
.rattanBox .rattanR .hover{background:#6cd685 !important;color:#fff !important;font-size:14px !important}
.rattancent .rattanCent_t{padding:26px 0}
.rattancent .rattanCent_t h3 span{color:#111111;font-size:16px}
.rattancent .rattanCent_t h3 em{color:#6cd685;font-size:14px;cursor:pointer}
.rattancent .rattanCent_h h4{line-height:32px;min-height:32px}
.rattancent .rattanCent_h h4 span{color:#111111;font-size:14px}
.rattancent .rattanCent_h h4 em{color:#ccc;font-size:14px;cursor:pointer}
.rattancent .answerBox{border-top:#e0e0e0 solid 1px}
.rattancent .rattanCbox .unfinished_list{width:auto !important}
.rattancent .rattancent_cue{margin-top:12px}
.rattancent .rattancent_cue .rattancent_l{color:#999}
.rattancent .tabox{max-width:830px;max-height:243px;overflow:auto;margin-top:10px}
.rattancent .tabox .unfinished_list td{padding:0}
.rattancent .tabox .unfinished_list th{white-space:nowrap}
.rattancent .tabox .unfinished_list td{white-space:nowrap;padding:0 10px}
.rattanCent_t .centH3 em b{background:url(../images/ico.png) no-repeat -12px -1054px;width:12px;height:12px;display:inline-block}
.rattanCent_h h4 b{background:url(../images/ico.png) no-repeat -13px -214px;width:12px;height:8px;display:inline-block}
.rattancent .test_achievement_foot{border-bottom:none}
.rattancent{margin-top:20px}
.rattancent .tab .tabCont{border:none}
.rattancent_cue span{position:relative;top:20px}
/*我的随笔 jw*/
.myEssay .title{margin-bottom:30px}
.myEssay .essayList{padding:30px 0 0 40px;position:relative}
.myEssay .essayList dt{position:absolute;left:0;top:0;height:30px;line-height:30px;width:80px;text-align:center;color:#fff;border-radius:20px;background:#42bfef}
.myEssay .essayList dd{border-left:2px solid #ddd;padding:30px 0 30px 30px}
.myEssay .essayList dd h5{font-size:18px;color:#000;padding-bottom:10px}
.myEssay .essayList dd h5 a{display:inline-block;vertical-align:middle;height:20px;width:24px;background:url(../images/ico.png) -44px -330px}
.myEssay .essayList dd h5 a:hover{background-position:-84px -290px}
.myEssay .essayList dd .essayCont{border:1px solid #ddd;padding:20px;border-radius:5px;position:relative}
.myEssay .essayList dd .essayCont .widget_select{position:absolute;top:54px;left:226px}
.myEssay .essayList dd .essayStateBar{position:absolute;top:10px;right:10px}
.myEssay .essayList dd .essayStateBar span{display:inline-block;width:50px;height:50px;text-align:center;color:#999;font-size:12px}
.myEssay .essayList dd .essayStateBar span i{width:50px;height:30px;background:url(../images/ico.png) no-repeat}
.myEssay .essayList dd .essayStateBar .support{cursor:pointer}
.myEssay .essayList dd .essayStateBar .support i{background-position:-34px -1601px}
.myEssay .essayList dd .essayStateBar .onSupport{cursor:default}
.myEssay .essayList dd .essayStateBar .support i:hover,.myEssay .essayList dd .essayStateBar .onSupport i{background-position:6px -1601px}
.myEssay .essayList dd .essayStateBar .comment i{background-position:-116px -1639px}
.myEssay .essayList dd .essayCont hr{margin-top:20px}
.myEssay .essayList dd .essayCont .expandComment{display:block;width:80px;height:24px;cursor:pointer;color:#6cd685;background:#fff;margin-top:-15px}
.myEssay .essayList dd .essayCont .expandComment i{background:url(../images/ico.png) no-repeat -10px -1054px;height:15px;width:15px}
.myEssay .essayList dd .essayCont .expandComment_open i{background-position:-9px -1814px}
.myEssay .essayCommentList{padding-top:10px}
.myEssay .essayCommentList li{padding:10px 0 10px 70px;border-top:1px dashed #ddd}
.myEssay .essayCommentList li h6 a{color:#0098f0}
.myEssay .essayCommentList li .headPic{float:left;margin-left:-70px}
.myEssay .essayCommentList li .toolBar{height:40px;line-height:40px}
.myEssay .essayCommentList li .toolBar span{cursor:pointer;color:#0098f0}
.myEssay .essayCommentList li .toolBar span:hover{color:red !important}
.myEssay .essayCommentList li .toolBar .report{position:absolute;top:3px;right:70px}
.myEssay .essayCommentList li .toolBar .reply,.myEssay .essayCommentList li .toolBar .delComment{position:absolute;width:63px;top:3px;right:0;text-align:right}
.myEssay .essayCommentList li .toolBar .reply i{width:35px;height:15px;background:url(../images/ico.png) no-repeat 4px -1774px}
.myEssay .essayCommentList li .reply_textareaBar{border-top:1px solid #ddd;padding-left:70px}
.myEssay .essayCommentList li .reply_textareaBar textarea{border-radius:3px}
.myEssay .essayCommentList li .reply_textareaBar .headPic{margin-top:10px}
.myEssay .essayCommentList li .subRelayList li{border-top:1px solid #ccc}
.myEssay .essayCommentList li .subRelayList li .delSubComment{position:absolute;top:3px;right:70px}
.myEssay .moreEssay{border:1px solid #42bfef;height:30px;width:80px;line-height:30px;text-align:center;color:#42bfef;border-radius:20px;cursor:pointer}
.myEssay .moreEssay:hover{color:#fff;border:1px solid #c0e6ff;background:#c0e6ff}
.myEssay .noMoreEssay{background:#ddd !important;border:1px solid #ddd !important;color:#999 !important;cursor:default}
/*教师个人中心slg*/
.personal_center .personal_top{width:100%;height:160px;background:#f4faf5;text-align:center}
.personal_center .personal_top li{display:inline-block;width:98px;height:98px;border:1px dashed #6cd685;border-radius:4px;*float:left;margin:0 30px;margin-top:30px}
.personal_center .personal_top li a{display:inline-block;width:92px;height:92px}
.personal_center .personal_top .Notice i{background:url(../images/ico.png) no-repeat -4px -1564px;width:32px;height:30px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Notice a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Upload i{background:url(../images/ico.png) no-repeat -84px -1565px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Upload a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Homework i{background:url(../images/ico.png) no-repeat -44px -1524px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Homework a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Topic i{background:url(../images/ico.png) no-repeat -83px -1524px;width:32px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Topic a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .question i{background:url(../images/ico.png) no-repeat -2px -1644px;width:36px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .question a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top li:hover{background:#6cd685}
.personal_center .personal_top li:hover a{color:white !important}
.personal_center .personal_top .Notice:hover i{background:url(../images/ico.png) no-repeat -43px -1564px;width:32px;height:30px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Upload:hover i{background:url(../images/ico.png) no-repeat -124px -1565px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Homework:hover i{background:url(../images/ico.png) no-repeat -4px -1524px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Topic:hover i{background:url(../images/ico.png) no-repeat -123px -1523px;width:32px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .question:hover i{background:url(../images/ico.png) no-repeat -42px -1644px;width:36px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .myMsg,.personal_center .myClasses,.personal_center .myPractice,.personal_center .myQuestion{margin-top:45px}
.personal_center .myMsg .title,.personal_center .myClasses .title,.personal_center .myPractice .title,.personal_center .myQuestion .title{background:#f4faf5;border-bottom:none}
.personal_center .myMsg .title h4,.personal_center .myClasses .title h4,.personal_center .myPractice .title h4,.personal_center .myQuestion .title h4{font-size:16px;text-indent:10px}
.personal_center .myMsg_notice .title h4{text-indent:0}
.personal_center .myMsg .widget_select{position:absolute;left:85px;top:14px;z-index:7}
.personal_center .myMsg .widget_select ul li{height:24px}
.personal_center .myMsg .tab{margin-top:20px}
.personal_center .myMsg .tabList a{width:100px;height:90px;text-align:center;background:none;border:none;position:relative}
.personal_center .myMsg .tabList a i{display:block;width:44px;margin:0 auto;height:70px;background:url(../images/ico.png)}
.personal_center .myMsg .tabList .notes i{background-position:-20px -1280px}
.personal_center .myMsg .tabList .notes:hover i{background-position:-100px -1280px}
.personal_center .myMsg .tabList a:hover,.personal_center .myMsg .tabList .ac{background:none}
.personal_center .myMsg .tabList a b{position:absolute;width:26px;height:26px;background:url(../images/ico.png) no-repeat -7px -1087px;color:#fff;text-align:center;line-height:26px;font-size:12px;top:5px;right:25px}
.personal_center .myMsg .tabList .over99 b{background-position:-7px -1127px;text-indent:-999px;overflow:hidden}
.personal_center .myMsg .tabCont{margin-top:20px;border:none;border-top:1px solid #ddd}
.personal_center .myMsg .tabList .sysMsg i{background-position:-100px -1435px}
.personal_center .myMsg .tabList .sysMsg:hover i{background-position:-20px -1435px}
.personal_center .myMsg .tabList .letter i{background-position:-20px -1353px}
.personal_center .myMsg .tabList .letter:hover i{background-position:-100px -1353px}
.personal_center .myMsg .myMsg_notice .title{background:none;margin-right:-10px}
.personal_center .myMsg .myMsg_notice,.myMsg_letter{margin-left:-30px}
.personal_center .myMsg .myMsg_notice li p{line-height:30px}
.personal_center .myMsg .myMsg_notice li{border-bottom:1px dashed #ddd;margin-left:12px}
.personal_center .myMsg .myMsg_notice .notice_h4{line-height:20px}
.personal_center .myMsg .myMsg_notice .notice_r{margin-top:-15px}
.personal_center .myMsg .myMsg_letter dl{padding-left:110px;margin-top:20px;border-bottom:1px dashed #d7d7d7;padding-bottom:22px}
.personal_center .myMsg .myMsg_letter dl dt{float:left;margin-left:-100px}
.personal_center .myMsg .myMsg_letter dl dd{line-height:30px}
/*备课*/
.personal_center .myClasses ul li{border:1px solid #ccc;margin-top:30px}
.personal_center .myClasses dl{position:relative;margin:0 15px 30px 14px;height:57px;border-bottom:1px dashed #d7d7d7;padding-bottom:20px}
.personal_center .myClasses .myFile{border:1px dashed #d7d7d7;width:95px;text-align:center;margin-right:0;line-height:30px;margin-left:772px}
.personal_center .myClasses .pr{border-bottom:0;padding-bottom:0}
.personal_center .myClasses dl h4{margin-bottom:14px}
.personal_center .myClasses dl h4 a{color:#333;width:333px;overflow:hidden;display:inline-block;text-overflow:ellipsis;white-space:nowrap;font-size:14px;text-indent:12px}
.personal_center .myClasses .lesson_plan{width:60px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;font-size:13px;margin-left:15px;border-radius:20px !important;background-color:#0098f0 !important}
.personal_center .myClasses span{margin-left:15px}
/*作业*/
.personal_center .myHomework,.personal_center .myPractice .titlePush_main,.personal_center .myQuestion .make_testpaper{border:1px solid #d7d7d7;margin-top:31px}
.personal_center .myHomework .sup_ul .sup_li{border:none}
.personal_center .myHomework .sup_ul .add_list{padding-top:50px;border-bottom:1px dashed #e5e5e5;margin:0 10px 0 10px}
.personal_center .myHomework .sup_ul li .sup_l{border-right:none !important}
.personal_center .myHomework .sup_ul li .sup_l h4{padding-bottom:0;float:none;margin-top:-25px}
.personal_center .myHomework .sup_ul li .sup_l h4 a{white-space:nowrap}
.personal_center .myHomework .sup_ul li .sup_l h4 a .gray_d{width:0;display:none}
.personal_center .myPractice .titlePush_main li.noBorder{border-bottom:0}
/*练一练*/ .personal_center .myPractice .titlePush_main li{border:none;padding-top:10px;padding-left:24px}
.personal_center .myPractice .titlePush_main .pr{border-bottom:0}
.personal_center .myPractice .notice{background:none;color:#555 !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important;margin-left:660px;margin-top:-68px}
.personal_center .myPractice .notice:hover{color:#fff !important}
.personal_center .myPractice ul{margin-bottom:0}
/*答疑*/
.personal_center .myQuestion .make_testpaper{padding:34px 15px 0 25px}
.personal_center .myQuestion .make_testpaperli{border:none;margin:0}
.personal_center .myQuestion .answer_listR{width:760px}
/*积分排行ljr*/
.video_library{padding:0 30px}
.cont24 .mainbox_r{width:930px}
.no_padding_form_list .subTitle_s{padding-top:10px}
/*课件库增加章节ljr*/ .problem_box .cont24 .alpha{width:240px}
.problem_rgt{float:left;width:870px}
/*我的收藏ljr*/
.my_collection .teacprepare_list li{width:489px;padding:20px;height:60px;position:relative}
.noleft .problem_rgt{float:none;width:100%}
/*作业管理ljr*/
.popContbox{padding:10px 0 23px}
.main_datels{width:100% !important}
.popBox .form_work_pre{padding-top:10px}
.popBox .form_work_pre .row{padding-bottom:0}
.popBox .form_work_pre .row .formL{padding:14px 20px 0 10px;color:#3BAEF3}
.myclass_table{width:490px;padding-bottom:10px;line-height:30px}
.popBox .form_workcon .formR_text .myclass_table{padding-bottom:18px !important}
.myclass_table.ac dd i{display:block;display:inline-block;position:relative;right:21px;visibility:visible}
.myclass_table dt{width:145px;height:40px;text-align:center;line-height:40px;float:left}
.myclass_table dt input{float:left;margin:13px 3px}
.myclass_table dt span{float:left;width:120px;height:40px;cursor:pointer;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-wrap:normal}
.ac dt{background:#4EBBFF;color:#fff}
.myclass_table dd{margin-left:206px}
.myclass_table dd .date_bj{position:relative;top:-2px}
.myclass_table dd .edit_box{width:160px;height:36px;padding-left:5px}
.myclass_table dd i{background:url(../images/strp.png) no-repeat;visibility:hidden;margin:8px -27px 0 0}
.work_reccon span{color:#889ba8;padding-right:18px;float:left}
.work_reccon em{float:left}
.layou_btn{position:absolute;top:40px;right:17px;}
.layou_btn .sup_box{width:122px;height:42px;margin:-21px 0 0 20px}
.form_workcon{padding:0 0 10px 0 !important;border-bottom:1px solid #EEE}
.form_workcon .row .formR_text{padding-top:10px !important}
.form_workcon .row .formL{padding-top:8px !important}
.form_workcon .myclass_table .ac{background:none !important}
.form_workcon .myclass_tablebox dt span{cursor:auto}
/*题目管理ljr*/
.schResult .testPaperView .paperArea .paper .paper_r .error_correction{color:#0098f0 !important}
.testPaperView .paperArea .paper{position:relative}
.testPaperView .paperArea .paper .paper_r .error_correction{color:#0098f0 !important}
.testPaperView .paperArea #update .paper .error_correction{color:#0098f0 !important;position:relative;left:670px;top:4px}
.new_tch_group .form_list .formR textarea{width:363px !important;margin-left:-5px !important;height:120px !important}
.textareaBox .btnArea{height:30px;position:relative;margin-top:10px;right:3px}
.textareaBox{height:180px}
.textareaBox .txtCount{position:absolute;right:110px;top:3px;color:#ccc}
.popBox .form_list .formL .face_pic{position:relative;top:14px;right:25px}
.popBox .form_list .formR_text{line-height:24px;padding:10px 20px 0 0}
.popBox .form_list .work_row{padding-left:80px}
.popBox .work_form_list{padding:20px 0 30px 0}
.popBox .topic_opt{max-width:452px !important}
.popBox .topic_opt .chkLabel{padding-left:28px}
.popBox .form_list .work_face{padding-top:14px}
/*作业库ljr*/
.tab .tabCont .work_tabitem{padding:10px 17px 20px 18px}
.work_teacher{margin-top:0 !important}
.tabItem .work_teacher li dl dd{width:260px !important}
.share_work{float:left;position:relative;left:94px;padding-top:3px}
.share_work input{position:relative;right:3px}
.btn_work{margin-right:118px}
.cont24 .problemBox .grid_5{width:248px;padding:0 6px 0 6px}
.cont24 .problemBox .problem_r .teacher_tablist{width:100%}
.cont24 .problemBox .problem_r{width:850px;overflow:hidden}
.cont24 .tchorg_Cont .problem_r{width:850px;overflow:hidden}
.cont24 .tchorg_Cont .grid_5{width:248px;padding:0 6px 0 6px}
/*教师作业详情增加样式ljr*/
.tch_suggestion{margin:30px 0 0 0;border-top:1px solid #dcdcdc}
.tch_suggestion .titles{height:40px;line-height:40px;background:#E7FFED;padding-left:20px;font-size:16px;color:#52BE73}
.tch_suggestion .titles i{background:url(../images/ico.png) -49px -1810px;padding-right:10px;width:18px;height:20px}
.tch_suggestion .row{margin-top:30px;width:870px;position:relative}
.tch_suggestion .row .formL{float:left}
.tch_suggestion .row .formR{overflow:hidden;padding-left:15px}
.tch_suggestion .row .add_txt{width:714px;height:109px;border:1px solid #CCC !important}
.tch_suggestion .row .limit{position:absolute;right:50px}
.tch_suggestion .row .btn_Submit{margin:20px 0 0 90px}
/*作业批改ljr*/
.correct_workcon{padding-top:30px}
.correct_workcon .tab{border-bottom:1px solid #E7E7E7}
.left_correct dl:hover{background:#D2EDFF;padding-bottom:5px !important}
.left_correct dl.cur{background:#D2EDFF;padding-bottom:5px !important}
/*按题批改ljr*/
.questionscon .right_correct .correctPaper{margin-top:0}
.questionscon .left_correct dl dt{width:50px;height:50px;font-size:30px;color:#889BA8;line-height:50px;text-align:center}
.questionscon .left_correct dl dd .accuracy{color:#78C9FE}
.questionscon .left_correct dl dd .accuracy em{font-size:18px;color:#78C9FE}
.questionscon .left_correct dl:hover{background:#D2EDFF}
/*作业统计ljr*/
.statistics_cont .zyname{text-align:center;padding:20px 0 20px 0}
.statistics_cont .tab .tabCont{border-left:0;border-right:0;border-bottom:0}
.statistics_cont .tab .tabCont .tabItem{padding:20px 0 20px 0;width:980px}
.statistics_cont .statistics_item{width:870px;border-bottom:1px dashed #E0E0E0;margin:0 20px 20px 0;padding-bottom:20px}
.statistics_cont .statistics_item h6{color:#78D98F;font-size:18px;background:url(../images/ico.png) no-repeat -137px -2088px;padding-left:15px}
.statistics_cont .statistics_item p{padding:20px 0 0 0;font-size:18px}
.statistics_cont .statistics_item p em{font-size:30px;color:#1DD149}
.statistics_cont .statistics_item .tj{font-size:16px;margin:20px 0 20px 0}
.statistics_cont .statistics_item .noend{width:825px;height:190px;background:#E7FFED;text-align:center;line-height:190px;font-size:18px;margin-top:10px;margin:20px 0 0 0}
.statistics_cont .statistics_item .noendList{overflow:hidden}
.statistics_cont .statistics_item .noendList li{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;float:left;width:135px;padding:0 10px 10px 0}
.statistics_cont .statistics_item .noendList .notName{color:#E87E90}
/*学生统计ljr*/
.statistics_item .pepList{width:850px;height:80px;border:1px solid #ccc;margin-top:20px;padding:10px;position:relative}
.statistics_item .pepList span{font-size:30px;color:#50BBFF;position:absolute}
.con{width:870px;margin:0 auto;padding:20px 0 0 0}
.u_list{border:solid 1px #D7D7D7;padding:20px 8px 20px 20px;position:relative;height:50px;margin-bottom:20px}
.u_list .u_left{position:absolute;width:190px;left:20px;top:20px}
.u_list .u_left .num{color:#4EBBFF;height:50px;line-height:50px;float:left;width:54px;font-size:30px}
.u_list .u_left .u_info{float:left;width:135px}
.u_list .u_left .u_info .headimg{float:left;width:50px;height:50px;overflow:hidden}
.u_list .u_left .u_info .headimg img{max-height:50px;max-width:50px}
.u_list .u_left .u_info .u_name_per{float:left;margin-left:7px}
.u_list .u_left .u_info .u_name_per p.name{line-height:27px;height:27px;overflow:hidden;font-size:14px;padding:0}
.u_list .u_left .u_info .u_name_per p.per{line-height:24px;height:24px;overflow:hidden;color:#6CD685;font-size:18px;padding:0}
.u_list .u_right{margin-left:216px;height:38px;overflow:hidden;position:relative;margin-top:8px}
.u_list .u_right .btn_g{position:absolute;right:0;width:12px;top:8px}
.u_list .u_right .btn_g a{cursor:pointer;width:13px;height:8px;display:block;background:url(../images/ico.png) no-repeat;margin-bottom:8px;overflow:hidden}
.u_list .u_right .btn_g a.prev{background-position:0 -2455px}
.u_list .u_right .btn_g a.next{background-position:0 -2446px}
.u_list .u_right .btn_g a.prev.stop{background-position:0 -2425px}
.u_list .u_right .btn_g a.next.stop{background-position:0 -2417px}
.u_list .u_right .u_right_list{margin-right:12px;position:relative}
.u_list .u_right .u_right_list .content{display:none}
.u_list .u_right .u_right_list a{float:left;margin:0 20px 20px 0;width:36px;height:36px;text-align:center;line-height:36px;border:solid 1px #48C977;border-radius:50%;position:relative;font-size:18px}
.u_list .u_right .u_right_list a i{display:block;position:absolute;width:16px;height:13px;background:url(../images/ico.png) no-repeat;background-color:#fff;top:20px;right:-9px}
.u_list .u_right .u_right_list a.state1{border-color:#6CD685;color:#6CD685}
.u_list .u_right .u_right_list a.state1 i{background-position:-12px -1213px}
.u_list .u_right .u_right_list a.state2{border-color:#DBAD71;color:#DBAD71}
.u_list .u_right .u_right_list a.state2 i{background-position:-92px -1214px}
.u_list .u_right .u_right_list a.state3{border-color:#FF7B61;color:#FF7B61}
.u_list .u_right .u_right_list a.state3 i{background-position:-13px -1173px;width:14px;height:14px;right:-8px;top:18px}
.original_num{position:absolute;right:0;top:20px;width:540px;border:1px solid #ccc;min-height:200px;background:#fff;border-radius:5px;padding:20px 15px 15px;box-shadow:1px 1px 1px 1px #ccc}
.original_num .v_r_arrow{position:absolute;width:20px;height:13px;top:-11px;left:106px;background:url(../images/ico.png) no-repeat -130px -54px}
.layer_right .v_r_arrow{left:408px}
.original_num .close_box{position:absolute;right:10px;top:5px;font-size:18px;color:#555;cursor:pointer;z-index:10}
/*教师个人中心作业列表修改 管宁宁2016-04-27 */
.teacher .sup_li .monthbox {padding-right: 3px;border-top:1px dashed #7ecef4;margin-top: 20px;position: relative;}
.teacher .sup_li .monthbox .floatLayer{position: absolute;left: 0;top: 0;width: 70px;z-index: 5;display: none}
.teacher .sup_li .monthbox .floatLayer a{display: block;width: 70px;height: 28px;line-height: 28px;color: white;text-align: center;background:#6cd685;}
.teacher .sup_li .monthbox .floatLayer a i{display:inline-block;width:20px;height:20px;background: url("../images/ico_guan.png") no-repeat;}
.teacher .sup_li .monthbox .floatLayer a.edit i{background-position:-60px -518px;margin-right: 2px;}
.teacher .sup_li .monthbox .floatLayer a.delete{border-top: 1px solid #53c86f;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
.teacher .sup_li .monthbox .floatLayer a.delete i{background-position:-99px -519px;margin-right: 4px;}
.teacher .sup_li .monthbox:hover{background: #f5f5f5;}
.teacher .sup_li .monthbox .worklist li{margin-bottom: 0;}
.teacher .sup_li .monthbox:hover .floatLayer{display: block;}
.teacher .sup_li .monthbox ul.worklist li{padding:25px 0 7px 0;/*border-bottom:1px solid #DCDCDC;*/}
.teacher .sup_li .monthbox ul.worklist .work_notop{padding-top: 0;}
.teacher .sup_li .monthbox ul.worklist li .work_left{float: left}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top{/*border-bottom: dotted 1px #7DCFF5;width: 802px;*/padding-bottom: 24px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_img{float: left;width: 45px;height: 52px;background:url(../images/ico_guan.png) no-repeat;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .word{background-position:-600px -200px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .picture{background-position:-440px -200px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_img img{max-width: 45px;max-height: 52px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_info {float: left;padding-left: 17px;/*width: 740px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_info .work_title{/*width: 700px;*/ white-space: nowrap;overflow: hidden; text-overflow:ellipsis;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom {/*padding-top: 25px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress{float: left;/*padding-left: 60px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li{line-height: 14px;overflow: hidden;border-bottom: 0px;padding: 0px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li span{float: left;margin-right: 8px;margin-bottom: 16px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li .progress_outer{float: left;width: 300px;border-radius: 10px;height: 14px;overflow: hidden;background: #E5E5E5}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li .progress_outer .progress_inner{border-radius: 10px;height: 14px;overflow: hidden;background: #CCB3DD}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li label{float: left;padding-left: 16px}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .accuracy{float: left;margin:10px 0 0 62px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .accuracy em.per{font-size: 34px;color: #666;}
.teacher .sup_li .monthbox ul.worklist li .work_right{float:right;height: 146px;/*border-left: solid 1px #F5F5F5;padding-left: 24px*/}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper{float: left;/*margin-left: 24px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper .btn{display: block; margin-bottom:9px;border: 1px solid #ccc;color: #10ade5 !important;min-width: 90px;padding: 0 10px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper i{margin-top: 1px;margin-right: 5px;display:inline-block;vertical-align: middle;height: 20px;width: 20px;line-height: 30px;background-image: url(../images/ico_guan.png);}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_book i{background-position: -460px -641px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_gou i{background-position: -301px -601px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_result i{background-position: -140px -600px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.btn_disable {color: #fff !important;background: #ccc !important;cursor: not-allowed;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.btn_disable i{background:url("../images/ico_guan_hover.png") no-repeat -460px -641px;} | frontend/web/pub/css/teacher.css | .teacher{background:url(../images/theme/theme01.jpg) no-repeat center top #eee}
.form_list .row{padding-bottom:0}
.form_list .formL label{overflow:hidden;height:30px}
.form_list .formR ul li a{padding:0 20px}
.test .form_list .formR{width:780px}
.test .testList_new .formR{width:90%}
#makePaper .form_list .formR{width:680px}
#makePaper .form_list .row{padding-bottom:20px}
.form_list .formR{max-width:1019px}
.resultList{padding-top:6px}
.resultList li{width:auto;background:#fff;margin:0 10px 10px 0}
.resultList li a{padding:0 20px}
.resultList li.ac a{background-color:#6cd685;color:#fff}
.resultList li.ac:hover a{background-color:#1ed248 !important;color:#fff !important}
.testClsList li{height:26px;line-height:27px;margin-bottom:0}
.testClsList li a{padding:0 !important;margin-right:10px}
.testClsList li:hover{background:none !important}
.testClsList li:hover a{color:#6cd685 !important}
.testClsList li.ac{background:none !important}
.testClsList li.ac a{background:none !important;font-weight:bold;color:#6cd685 !important}
.testClsList li.ac:hover a{background:none !important;color:#1ed248 !important}
.setupMenu li .lisD{background:none !important}
/*章节知识点树*/
.problem_tree_cont{border:1px solid #d0e8f7;position:relative;background:#fff}
.problem_tree_cont h4{height:40px;line-height:40px;background:#edf8ff;text-indent:20px}
.problem_tree_cont .resetting{position:absolute;top:10px;right:20px;font-size:12px;color:#0098f0}
.problem_tree{padding:10px !important;padding-bottom:50px !important}
.problem_r{position:relative}
/*右侧*/
.homepage .main_r .main_cont{padding:30px 10px 30px 30px}
.homepage .main_r .main_cont .Ta_teacher select{height:40px;overflow:hidden;text-overflow:ellipsis}
.main_r .total_QA_list{margin-right:-20px}
.main_r .total_QA_list li{width:91px;border:1px solid #6cd685;height:118px;float:left;margin-right:20px;text-align:center}
.main_r .total_QA_list li span{display:block;height:25px;padding-top:50px;border-bottom:1px solid #6cd685;color:#6cd685;font-size:14px;margin-bottom:10px;background:url(../images/new_sprite.png) no-repeat #e7ffed}
.main_r .total_QA_list li .accept_ico{background-position:-235px -172px}
.main_r .total_QA_list li .QA_ico{background-position:-315px -172px}
.main_r .total_QA_list li .ask_ico{background-position:-155px -172px}
.main_r .total_QA_list li{font-size:22px}
.main_r .ta_student_list{margin-right:-20px;margin-top:20px}
.main_r .ta_student_list li{text-align:center;width:50px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:13px;float:left;margin-right:17px;margin-bottom:17px}
.main_r .ta_student_list li img{display:block}
.main_r .tec_note_list li{margin-bottom:20px}
.main_r .tec_note_list li h6 a{color:#017fd2}
.main_r .tec_note_list li p{color:#777}
/*二维码*/
.two_dimension_code{width:135px;height:135px;text-align:center;background-color:#fff095;padding:10px 13px;position:absolute;right:28px;top:118px}
.two_dimension_code h4{text-align:center;color:#cb6206;margin-bottom:4px}
/*教师首页*/
.teacher_home .main_l .tabCont{border:none;border-top:1px solid #DDD}
.teacher_home .main_l .resultList{margin-left:40px}
.teacher_home .main_l .resultList li{width:auto;padding-top:3px}
.teacher_home .main_l .resultList li a{padding:0 20px}
.teacher_home .main_l .tabItem{padding:0 !important}
.teacher_home .main_l .file_list{margin-right:-20px}
.teacher_home .main_l .file_list li{float:left;position:relative;padding:10px;width:343px;border:1px solid #ddd;margin-right:20px;margin-bottom:20px}
.teacher_home .main_l .file_list li img{float:left;margin-right:10px}
.teacher_home .main_l .file_list li h6{padding-top:5px}
.teacher_home .main_l .file_list li p{color:#777}
.teacher_home .main_l .file_list li p span{font-size:13px;margin-left:30px}
.teacher_home .main_l .file_list .mask_link{position:absolute;top:0;left:0;height:100%;width:100%}
.teacher_home .main_l .file_list .mask_link .mask_link_BG{position:absolute;top:0;left:0;height:100%;width:100%;background:#4ebbff;opacity:0.9;filter:Alpha(opacity=90)}
.teacher_home .main_l .mask_link_cont{position:relative;text-align:center}
.teacher_home .main_l .mask_link_cont a{color:#FFF;display:inline-block;padding-top:20px;margin:20px 20px;background:url(../images/ico.png) no-repeat}
.teacher_home .main_l .mask_link_cont a:hover{color:#fff !important}
.teacher_home .main_l .mask_link_cont .addfavLink{background-position:-5px -481px}
.teacher_home .main_l .mask_link_cont .favLink{background-position:8px -560px}
.teacher_home .main_l .mask_link_cont .readLink{background-position:-5px -636px}
.teacher_home .file_btn{width:60px;background-color:#0098f0 !important;text-align:center;font-size:12px !important;margin-right:10px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;border-radius:20px !important}
.tch_file_list li{width:720px !important}
/*首页end---------------------------------------------------------------------*/
/*备课*/
.prepare_lessons .item{padding-top:10px}
.prepare_lessons .item h5{border-bottom:1px solid #ddd;height:35px;line-height:35px}
.prepare_lessons .attentionTxt h5{border:none;background:url(../images/ico.png) no-repeat -131px -683px;text-indent:20px}
.prepare_lessons .attentionTxt p{font-size:12px;text-indent:20px}
.prepare_lessons .uploadFileList{width:730px}
.prepare_lessons .uploadFileList li{height:40px;position:relative;text-indent:20px;line-height:40px;margin-bottom:10px;background:#e7ffed}
.prepare_lessons .uploadFileList li span{position:absolute;top:1px;right:20px;color:#58c5bf}
.prepare_lessons .sel_file_location .sel_step{float:left;width:310px;margin-right:40px;padding-top:20px}
.prepare_lessons .sel_file_location .sel_step h6{height:40px;line-height:40px}
.prepare_lessons .sel_file_location .sel_step .resultList{margin:0}
.prepare_lessons .sel_file_location .sel_step .resultList li{margin-left:0;text-align:left}
.prepare_lessons .sel_step .treeBar{border:1px solid #ddd;height:380px;overflow:auto}
.prepare_lessons .sel_step .treeBar h6{height:40px;line-height:40px;border-bottom:1px dashed #ddd;text-indent:20px}
.prepare_lessons .sel_step .resultList li{height:40px;line-height:40px;width:290px;margin-bottom:6px;text-indent:10px}
.iconBtn .file{width:100%;height:100%}
.tea_prepare{position:relative}
.tea_prepare .course{position:absolute;right:32px;top:100px}
.tea_prepare .course .cour_btn{font-size:14px;color:#68afdb}
.tea_prepare .course .cour_btn i{width:13px;height:10px;margin-left:5px;overflow:hidden;background:url(../images/ico.png) -13px -296px}
.tea_prepare .course .course_box{position:absolute;top:30px;right:-70px;z-index:102;width:250px;background-color:#ffffff;box-shadow:0 2px 3px 3px #ccc;padding:20px}
.tea_prepare .course_box dl dt{width:180px;margin:12px 0}
.tea_prepare .course_box dl dd{float:left;width:60px;height:28px;color:#555;cursor:pointer;font-size:14px;text-align:center;line-height:28px}
.tea_prepare .course .course_box a{display:block}
.tea_prepare .course_box dl .ac{background-color:#6cd685;color:#fff}
/*滚动条*/ .big_progress{height:20px;width:100%;text-align:right;position:relative;top:15px;line-height:12px;font-size:12px;border:1px solid #ddd;margin-bottom:30px}
.big_progress .num{position:absolute;top:-14px !important;right:5px !important}
.big_progress .bg{background:#97d6ff;width:0;height:20px}
/*考试管理-jw*/
.main_cont .testArea{margin-top:10px}
.testArea{margin-top:30px}
.testListWrap{position:relative}
.testListWrap .objClip{display:block}
.testListWrap .arrow{background-image:none}
.testListWrap .testList{display:none}
.showTestList{border-top:1px solid #ddd;padding-top:20px}
.showTestList .arrow{left:567px;background-image:url(../images/ico.png)}
.showTestList .objClip{display:none}
.showTestList .testList{display:block}
.testList{margin-right:-20px}
.testList li{width:383px;margin-right:20px;margin-bottom:20px;height:70px;padding:20px;float:left;border:1px solid #ccc;position:relative}
.testList li h5{height:30px;line-height:30px;margin-bottom:10px}
.testList li button{width:78px}
.testList li i{position:absolute;height:60px;width:60px;background:url(../images/course.png);top:0;right:0}
.itemList li{position:relative;margin-bottom:20px}
.itemList .viewDetail i{background:url(../images/ico.png) no-repeat -90px -172px}
.itemList .dis_viewDetail{color:#ddd !important;cursor:text}
.itemList .dis_viewDetail i{background:url(../images/ico.png) no-repeat -90px -1172px}
.itemList li .clsSetupBox{padding:10px 0;border-top:1px solid #ddd;border-bottom:1px solid #ddd}
.itemList li .clsSetupBox i{position:absolute;width:20px;height:10px;top:41px;right:173px;background:url(../images/ico.png) no-repeat -130px -55px}
.itemList li .clsSetupBox .form_list .formR{width:790px;max-width:790px}
.itemList .sended .setupCls{display:none}
.itemList .sended .showTestList .arrow{left:670px}
.itemList .sended .title_r button{background:#ccc !important;cursor:inherit}
.multi_resultList li.sel_ac{background:#6cd685;color:#fff}
.multi_resultList li.sel_ac a{color:#fff}
.stu_table tbody td,.stu_table thead th{text-align:center}
.clsSetupBox .objScoreList li{float:left;margin-right:20px;margin-bottom:20px}
/*考试管理-创建新考试 zhanghainan*/
.test .testList_new{padding-top:20px}
.test .testList_new .row{width:100%;padding-bottom:15px}
.test .testList_new input{color:#999}
.test .testList_new .test_add{padding-top:6px}
.test .testList_new .testList_r{line-height:40px;height:40px;position:relative}
.test .testList_new .testList_score li{float:left;padding-right:16px;line-height:40px;margin-bottom:20px;*padding-bottom:20px}
.test .testList_new .testList_score span .text{width:40px;height:20px;border:#cec4c4 solid 1px;color:#333;font-size:14px}
.test .testList_new .testList_score .chkLabel{margin-right:0 !important}
.test .testList_new .select_test .select_test_tab{width:618px;border:1px solid #E7E7E7;padding:20px;padding-top:10px}
.test .testList_new .select_test_tab .up_test_list li{width:160px;height:120px;float:left;margin-right:19px;margin-bottom:19px;border:#aaaaaa solid 1px}
.test .testList_new .select_test .tabList li{margin-bottom:0}
.test .testList_new .up_test_list li img{width:160px;height:120px}
.test .testList_new .select_test_tab .up_test_list .more{border:#e5eae6 solid 1px;background:#f4faf6}
.test .testList_new .subTitleBar_text{height:22px;padding:4px 10px}
.test .testList_new .subTitle_Btn{position:relative;left:-6px}
.test .testList_new .subTitleBar_box .resultList li{width:160px}
.testList_sub .test_btn{height:40px !important;line-height:40px !important;text-align:center}
.testList_sub .sub{border:none;background-color:#77cbff;color:#fff !important;font-size:16px;cursor:pointer}
.testList_sub .cancel{background-color:#d8e9f4;color:#777 !important}
.test .k_name{width:372px}
.test .k_time{width:236px}
/*考务管理ljr*/
.evaluate_Box .students_table td{text-indent:0 !important;text-align:center !important}
/*考试管理-创建新考试--完成 zhanghainan*/
.test_success{padding-top:123px;padding-bottom:200px}
.test_success h2{height:59px;line-height:59px;color:#6cd685;font-size:24px;text-align:center;padding-bottom:20px}
/*考试管理-班级评论 zhanghainan*/
.test_class_overall_appraisal .test_achievement h4{height:40px;line-height:40px}
.test_table_wrap{height:333px;overflow:auto}
.test_table{width:806px;border:#aaa solid 1px}
.test_table th,.test_table td{border:#aaa solid 1px;text-align:center;color:#333;font-size:14px;font-weight:normal}
.test_table .id{text-align:left;padding-left:10px}
.test_table thead tr{height:50px}
.test_table tbody tr{height:40px}
.test_table tbody tr td em i{width:18px;height:18px;margin-right:10px;display:inline-block;background:url(../images/ico.png) no-repeat -90px -250px}
.test_table tbody tr td em i:hover{background:url(../images/ico.png) no-repeat -90px -290px}
.test_table tr{height:40px}
.form_list_left_justifying .formL label{width:88px}
/*评价完成*/
.test_table tbody .appraise_a i{width:14px;height:14px;overflow:hidden;background:url(../images/ico.png) no-repeat}
.test_table tbody .appraise_popo{cursor:pointer}
.test_table tbody .appraise_a .complete{background-position:-91px -212px}
.test_table tbody .appraise_a .open_my_evaluate{background-position:-91px -173px;margin-left:4px;cursor:pointer}
.test_table tbody .appraise_a .close_my_evaluate{background-position:-52px -293px}
.test_table tr span{color:#555;font-size:14px}
.test_table tr a{color:#0098f0;font-size:14px}
.test_achievement_foot{padding-left:11px;margin-top:9px;padding-bottom:27px;border-bottom:#e0e0e0 dashed 1px}
.test_class_this{padding:0 26px;margin-top:30px;height:130px;line-height:130px;background-color:#e7ffed}
.test_class_this span{font-size:18px;color:#444;padding-right:20px}
.Book_conList .row{padding-bottom:15px}
.test_statisticsLi{margin-top:23px}
.transmission:hover{text-decoration:underline}
/*科目总评 jw*/
.testpaper_and_score .form_list .formL label{width:70px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.testpaper_and_score dl dt,.testpaper_and_score dl dd{float:left}
.testpaper_and_score dl dt{margin-right:20px}
.testpaper_and_score .testpaperList{/*height:100px*/}
.testpaper_and_score .testpaperList a{text-align:center;line-height:20px;width:120px;display:inline-block;margin-right:10px;vertical-align:middle;padding:0 !important}
.testpaper_and_score .testpaperList img{border:1px solid #ccc;display:block;width:120px;height:90px}
.testpaper_and_score .testpaperList .score{font-size:48px;color:#1ed248;height:100px;line-height:100px;vertical-align:middle;margin-left:20px;display:inline-block;text-align:center}
.testpaper_and_score .testpaperList .text{width:49px;text-align:center}
.testpaper_and_score .testpaperList .editBtn{display:inline-block;height:20px;width:20px;background:url(../images/ico.png) no-repeat -89px -248px;cursor:pointer;vertical-align:middle}
.testpaper_and_score .scoreOkBtn{width:49px !important}
.original_testpaper .subTitleBar_box .resultList{margin-right:-20px}
.original_testpaper .subTitleBar_box .resultList li{width:166px}
/*上传完试卷后的原始试卷*/
.choose_original_testpaper h5{margin-bottom:10px}
/*教师--试卷管理-题目管理-知识点zhanghainan*/
.tezhagnhaioast_problem .course{position:absolute;right:8px;top:14px}
.tezhagnhaioast_problem .course .cour_btn{font-size:14px;color:#68afdb}
.tezhagnhaioast_problem .course .cour_btn i{width:13px;height:10px;overflow:hidden;background:url(../images/ico.png) -13px -296px}
.tezhagnhaioast_problem .course .cour_btn:hover{text-decoration:underline}
.tezhagnhaioast_problem .course .course_box{position:absolute;top:30px;right:-70px;z-index:102;width:258px;background-color:#fff;box-shadow:0 2px 3px 3px #ccc;padding:20px;*border:1px solid #DDDDDD}
.tezhagnhaioast_problem .course_box .arrow{*display:none}
.tezhagnhaioast_problem .course_box dl dt{width:180px;margin:12px 0}
.tezhagnhaioast_problem .course_box dl dd{float:left}
.tezhagnhaioast_problem .course_box dl dd a{display:block;height:28px;color:#555;cursor:pointer;font-size:14px;text-align:left;line-height:28px;min-width:40px;padding:0 20px;/*margin-right:20px;text-indent:20px;*/}
.tezhagnhaioast_problem .course_box dl .ac{background-color:#6cd685;color:#fff}
.tezhagnhaioast_problem .test_paper_sort .resultList li{background:none;color:#000}
.tezhagnhaioast_problem .test_paper_sort .resultList .ac{color:#6cd685}
.problem_box{margin-top:10px}
.problem_tab_r .problem_img{padding:0 !important}
.problem_tab_r .problem_img i{margin-left:-10px;width:5px;height:5px;display:inline-block;border-radius:3px;position:relative;top:10px}
.problem_img dl{position:relative;top:-17px}
.problem_img dl dd{width:160px;height:120px;border:#aaa solid 1px;float:left;margin-right:24px;margin-bottom:10px}
.problem_r_list .problem_img dl dd img{width:160px;height:120px}
.problem_tab_r .answer{padding:0 !important}
.problem_tab_r .answer span{margin-left:10px;color:#333;font-size:14px}
.problem_tab_r .problem_isg dl{position:relative;top:10px}
.problem_r .tab{width:100%}
.problem_r .teacher_tablist{width:78%}
/*搜索*/
.subTitle_s{margin-top:10px}
.subTitle_s .subTitleBar_text{width:430px}
.subTitle_s .search{background-color:#f4faf6;position:relative;left:-11px;border:#bddbc7 solid 1px;width:97px;height:40px !important;font-size:14px;color:#50bd69 !important;line-height:42px}
.subTitle_s .search:hover{background-color:#f4f7f5 !important}
.search_top{height:42px;line-height:42px;margin-top:26px}
.search_top p{color:#888}
.search_top p em{color:#ff9000;padding:0 10px}
.no_search{width:256px;margin:0 auto;padding-top:60px}
.no_search p{margin-bottom:16px;color:#555;text-align:left}
.no_search p a{height:36px;line-height:36px}
/*章节选题*/
.chapter_problem .formL label{text-align:left}
.chapter_problem .textOverArea .textOver{height:74px;overflow:hidden}
/*教师--试卷和作业--题目推送*/
.titlePush hr{margin-bottom:0}
.addBtnred{background-color:#fc6f51}
.titlePush .bottomBtnBar{margin-top:20px}
.titlePush .bottomBtnBar .pushBtn {}
.titlePush .form_list .formL label{line-height:35px}
.titlePush .form_list .formR{line-height:39px;width:700px !important}
.schTxtArea p span{margin-right:10px}
.form_style{margin-top:20px}
.form_style .row{padding-bottom:15px}
.form_style .row .formR{width:auto}
.form_style .row .formL label{width:140px}
.form_style .row .formR em{margin-left:10px}
/*新增的样式筛选排序*/
.terrace_list_btn{height:32px;line-height:32px;border-bottom:#CCC dotted 1px;padding-bottom:6px;margin-bottom:10px}
.terrace_list_btn span{float:left;font-size:16px;color:#333;padding-left:10px}
.terrace_list_btn ul{float:left;margin:0;margin-top:3px}
.terrace_list_btn ul li{background:none;text-align:center;width:50px;margin:0}
.terrace_list_btn ul .ac{background:#6cd685}
.terrace_list_btn em{float:right;margin-right:10px;font-size:12px;color:#ee4d4e}
.Tterrace{color:red}
.my_t{color:#19b8ff}
.provenance{position:absolute;right:0;top:15px;color:#aaa}
/*组卷 step2--筛选试题(高级搜索) 题目管理--题目筛选高级搜索*/
.filterSubject .searchBar{clear:both}
.filterSubject .searchBar a{color:#06c;text-decoration:underline}
.filterSubject .searchBar a:hover{color:red}
.searchBar .form_list li .btn{width:80px;color:#fff}
.testpaper h6{position:relative}
.testpaper h6 a{color:#06c;position:absolute;right:0;top:0}
.searchBar .form_list{margin-top:20px}
.make_sort .terrace_list_btn .resultList{padding:0;border:none;position:relative;left:4px}
/*组卷 step1/2*/
.make_testpaper .form_list .form{padding-bottom:15px}
.make_testpaper .form_list .formL label{width:120px}
.make_testpaper .form_list .formR label{margin-right:10px}
/*组卷 stepA底部*/
.make_testpaper .addPointBtn{width:60px;height:20px;line-height:16px;background:#ee4d4e;font-size:12px;color:#fff}
.make_testpaper .addPointBtn:hover{background:red}
.make_testpaper .piece{background:#efefef;padding:20px 0}
.make_testpaper .piece p{margin-bottom:10px}
.make_testpaper .piece p .text{width:150px}
.make_testpaper .piece textarea{width:203px;height:50px}
.make_testpaper .piece .addSubBtn{margin-top:10px;width:100px;height:30px;line-height:25px;background:#ccc;font-size:12px;color:#fff;background:#fc6f51}
.make_testpaper .piece .addSubBtn:hover{background:red}
.make_testpaper .piece_part{background:#f8f8f8;padding:20px;margin-bottom:10px}
.make_testpaper .piece_part h6{color:#900}
.make_testpaper .piece_part p{margin-left:30px}
.testPaperBodyTree .volume{font-size:14px}
.testPaperBodyTree .volume .subTree{font-size:12px;margin:10px 0 0 20px}
.testpaperSetup{width:160px;background:#fff;color:#666;float:left;font-size:12px}
.testpaperSetup h6{font-size:16px;margin-top:10px}
.testPaperDemo{padding-left:120px;margin:20px 0 0 10px;width:490px;float:left;position:relative;background:#fff}
.testPaperDemo .hover{cursor:default;color:red;background:#efefef;position:relative}
.testPaperDemo .paper_bindLine{float:left;margin-left:-100px;width:81px;height:573px;background:url(../images/paper_header.gif)}
.testPaperDemo .paper_bindLine:hover{background-position:81px 0}
.testPaperDemo .setup,.testPaperDemo .topTotalTable{padding:5px 0}
.testPaperDemo .setup .setupBar{position:absolute;top:0;right:10px}
.testPaperDemo .setup .setupBar span{cursor:pointer;margin-right:10px;font-size:12px;color:#ccc;font-weight:normal}
.testPaperDemo .setup .setupBar span:hover{color:red}
.testPaperDemo .setup .setupBtn{cursor:pointer;font-size:12px;color:#ccc;font-weight:normal}
.testPaperDemo .setup .setupBtn:hover{color:red}
.testPaperDemo #secret_sign{font-size:12px;color:#ccc}
.testPaperDemo #main_title,.testPaperDemo #sub_title,.testPaperDemo #info,.testPaperDemo #student_input,.testPaperDemo table{text-align:center;margin-bottom:5px}
.testPaperDemo #main_title{font-size:24px;font-weight:bold}
.testPaperDemo #sub_title{font-size:20px;font-weight:bold}
.testPaperDemo .topTotalTable{width:100%}
.testPaperDemo table td,.testPaperDemo table th{padding:0 8px;font-size:12px;text-align:left}
.testPaperDemo #pay_attention{font-size:12px;color:#0C9;line-height:18px}
.testPaperDemo #pay_attention h6{font-weight:bold}
.testPaperDemo .paperPart{padding:10px}
.testPaperDemo .paperPart .testPaperTitle p{text-align:center;font-size:18px;font-weight:bold}
.testPaperDemo .paperPart .subPart{margin-bottom:20px;padding:5px 0}
.testPaperDemo .paperPart .subPart table{float:left;margin-right:10px}
.testPaperDemo .paperPart .subPart h6 i{width:auto !important}
/*base i 的宽度*/
.testPaperDemo .editBar .text{width:380px}
.testPaperDemo .editBar .btn{padding:0 5px;font-size:12px}
.testPaperDemo .editBar textarea{width:450px;height:150px;margin:5px}
.testPaperDemo .top_solid{border-right:1px solid #555;border-bottom:1px solid #555}
.testPaperDemo .top_solid th{border-left:1px solid #555;border-top:1px solid #555}
.testPaperDemo .top_solid td{border-left:1px solid #555;border-top:1px solid #555}
/*组卷 step3--题目筛选*/
.paperStructure{background:#e7ffed;padding:20px;color:#fff;opacity:1;/* max-width:830px;*/ position:relative}
.paperStructure h5{color:#000;font-size:16px;margin-bottom:10px}
.paperStructure .paperItemListWrap{width:1040px;overflow:hidden;margin-left:20px;position:relative}
.paperStructure .moveBtn{position:absolute;width:16px;height:20px;background:url(../images/ico.png);opacity:0.5;cursor:pointer}
.paperStructure .prevItem{left:20px;top:60px;background-position:-12px -89px}
.paperStructure .nextItem{right:20px;top:60px;background-position:-12px -49px}
.paperStructure .paperItemList{height:30px;position:relative}
.paperStructure .paperItemList li{width:100px;text-align:center;float:left;height:30px;line-height:30px;color:#333}
.paperStructure .paperItemList li:hover{color:red !important;cursor:pointer !important}
.paperStructure .paperItemList .ac{background:#6cd685;color:#fff}
.paperStructure .paperItemConts ul{background:#6cd685;color:#fff;position:relative;clear:both}
.paperStructure .paperItemConts ul li{float:left;margin-right:20px;color:#fff;font-size:12px;padding:0 10px}
.paperStructure .paperItemConts ul .ac{background:#1ED248}
.paperStructure .paperItemConts ul li:hover{cursor:pointer}
.paperStructure .paperItemConts ul li b{margin-left:5px}
.paperStructure .paperItemConts ul li b:hover{color:red}
.paperStructure .demoBar{background:#ddd;position:relative;padding:10px;padding-bottom:20px;color:#333;max-height:500px;overflow:auto}
.paperStructure .demoBar .close{position:absolute;top:0;right:4px;font-size:12px;color:#0098F0}
.paperStructure .demoBar .torso{font-size:12px;color:#000}
.paperStructure .demoBar ol li{font-size:12px;padding-left:10px;color:#000}
.paperStructure .demoBar ol li i{margin-right:10px}
.paperStructure .demoBar span{padding-left:10px;color:#000;font-size:12px}
.paperStructure .demoBar p{font-size:14px;color:#000}
.paperStructure .demoBar .analyze .j{font-size:14px}
.paperStructure .demoBar .analyze .n i{color:#fc6f51}
.paperStructure .demoBar .st{padding-left:10px;color:#000}
/*组卷 step4--试卷预览*/
.make_testpaper_View{float:none;width:auto}
.make_testpaper_View .paper_bindLine{margin-left:-130px}
.make_testpaper_View .subPart h6{font-size:16px;font-weight:bold}
.make_testpaper_View .subPart h6 em{font-weight:bold}
/*.testPaperView .paperArea .paper .checkArea label em{float:none}jw*/
/*组卷 step4 设定成绩*/
.make_setScore .form_list .formR{width:730px;max-width:800px}
.make_setScore .form_list .formR .text{height:25px}
.make_setScore .scoreList li{border-bottom:1px solid #ddd;padding-top:20px}
.make_setScore .scoreList li .formL label{color:#900;font-size:18px;width:120px;overflow:visible}
.make_setScore .scoreList li button{background:#4ebbff;width:80px}
.make_setScore .scoreList .itemScore{margin-right:5px;font-size:30px;color:#6cd685;display:inline-block;vertical-align:-4px}
.make_setScore .scoreList .scoreBar{font-size:16px;display:inline-block;position:absolute;top:0;right:20px;width:200px;text-align:right}
.make_setScore .scoreList .testpaper_totalScore{font-size:40px;color:#6cd685;display:inline-block;vertical-align:-6px}
.make_setScore dl{width:630px}
.make_setScore dl dt{margin-bottom:20px}
.make_setScore dl dd{margin-right:20px;float:left;margin-bottom:10px}
.make_setScore .subScore{border-top:1px dashed #ccc;padding-top:10px}
/*试卷管理列表zhang*/
.test_paper_sort{height:33px;padding:0 0 0 10px;line-height:28px;background-color:#f4faf5;*margin-top:20px}
.test_paper_sort p{color:#555}
.test_paper_sort p em{width:14px;height:14px;overflow:hidden;margin-left:18px;display:inline-block;vertical-align:middle;background:url(../images/ico.png) no-repeat}
.test_paper_sort p .up{background-position:-92px -372px}
.test_paper_sort p .down{background-position:-92px -333px}
.cont24 .alpha{position:relative}
.problem_box .problem_r .problem_r_list{position:absolute;right:0;top:0;cursor:pointer;z-index:60}
.problem_box .problem_r{position:relative}
/*资料管理*/
.teac_test_paper .formR{width:1075px;max-width:1075px}
.teac_test_paper .schResult{position:absolute;top:5px;right:0}
/*私信对话详情*/
.dailogBar .headPic{float:right;margin-top:10px}
.dailogBar .textareaBox{width:630px;float:left;position:relative;left:120px}
.chat_list{width:572px}
.send_list .send_text{margin-top:40px;margin-left:118px}
.chat{width:572px;border:#e0e0e0 solid 1px;padding:19px 29px;margin-left:117px;margin-bottom:20px}
.chat b{width:21px;height:20px;position:absolute;display:inline-block;top:1px}
.chat .pic{width:80px;height:80px;position:absolute;top:0;right:11px}
.chat .colse{width:10px;height:10px;cursor:pointer;position:absolute;background:url(../images/ico.png) no-repeat -95px -95px;right:9px;top:9px}
.chat p{line-height:24px}
.chat p span{float:left}
.look{margin-bottom:60px}
.chat .s_l{right:-21px;background:url(../images/input_ico.png) -883px 0;top:-1px}
.chat .pic{right:-110px;top:-1px}
.chatbf{background-color:#f8f8f8;margin-left:118px}
.chatbf .s_r{left:-21px;top:-1px;background:url(../images/input_ico.png) -920px 0}
.chatbf .picL{left:-110px;top:-1px}
.look{margin-top:60px}
.look_smiling_facer .prompt{position:relative}
.look_smiling_facer .prompt .number{width:26px;display:inline-block}
.look_smiling_facer .btn{margin-right:119px;margin-top:10px}
.course_deta_list{margin-top:40px}
/*上传作业*/
.test_up{position:relative}
.teac_up .teac_up_border{padding:10px 0}
.teac_up_border .teacher_up_test span{margin-left:18px;color:#999}
.teac_up .form_list .formR ul li{padding:0}
.teac_up .form_list .formL label{line-height:35px}
/*组织作业zhn*/
.organ_class{height:60px;line-height:60px}
.paper .addWork{position:absolute;right:0;top:0}
/*通知*/ .notice .resultList{padding:20px 0 12px 0;border-bottom:1px solid #e7e7e7}
.notice .resultList li{margin-right:10px}
.notice .resultList li a{padding:0 20px}
.notice .notice_list{margin-bottom:40px}
.notice .notice_list li{line-height:33px;padding:0 10px 20px 10px;border-bottom:1px #ccc dashed;position:relative;width:98%}
.notice .notice_list li p{padding-top:20px;width:700px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.notice .notice_list .notice_name{font-weight:bold;padding-top:20px}
.notice .notice_list li .no_see a{position:relative;top:-10px}
.notice .notice_list .notice_name em{margin-left:10px}
.notice .notice_list .notice_time{position:absolute;top:21px;right:10px}
.notice .notice_send_btn{position:absolute;top:55px;right:10px}
.bg_gray_ll{background:#f4f4f4}
.no_see{font-weight:bold}
.notice .QA_cont_imgBox img{border:1px #ccc solid}
.notice .QA_cont_imgBox{margin-top:10px}
.notice .system_list li{padding-bottom:60px}
/*作业列表zhn*/ .sup_box .sup_ul li{padding:20px 22px;margin-bottom:20px}
.sup_box .sup_ul li .sup_l{width:600px;border-right:#ccc dotted 1px !important;margin:0}
.sup_box .sup_ul li .sup_l h4{padding-bottom:20px;float:none;overflow:hidden;height:30px;text-overflow:ellipsis;width:590px;white-space:nowrap
}
.sup_box .sup_ul li .sup_l h4 i{width:auto;padding-right:10px;line-height:13px;height:18px}
.sup_box .sup_ul li .sup_l dl dd span{display:inline-block}
.sup_box .sup_ul li .sup_r{width:150px}
.sup_box .sup_ul .sup_li{border:#ccc solid 1px}
.sup_box .sup_ul li .sup_l dl dd em{vertical-align:top;color:#555;padding-right:10px;font-size:14px;display:inline-block}
.sup_box .sup_ul li .sup_l dd .synopsis{width:486px;font-size:14px;color:#555;padding-bottom:8px}
.sup_box .sup_ul li .schedule{padding-top:20px}
/*.sup_box .sup_ul .this{border:#0098f0 solid 1px}*/
.sup_box .sup_ul .sup_r{text-align:center}
/*原.sup_box .sup_ul .sup_r .notice{background:none;color:#555 !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important}*/
/*新改*/
.sup_box .sup_ul .sup_r .notice{background:#10ade5;color:white !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important;}
.sup_box .sup_ul .sup_r .sup_box em{color:#aaa}
.sup_box .sup_ul .sup_r .notice:hover{color:#fff !important}
.noJgBtn{background:none !important;color:#aaa !important;border:none !important}
.noJgBtn:hover{border:none !important;background:none !important;color:#aaa !important}
.no_padding_form_list .row{overflow:inherit}
/*我的私信*/
.msg_mine li{border-bottom:1px dashed #e7e7e7;position:relative}
.msg_mine li img{float:left;margin:30px 20px 25px 0}
.msg_mine li p{width:720px;margin-left:100px;line-height:33px}
.msg_mine li p img{margin:0 !important;float:none !important}
.msg_mine .bottom_tab{position:absolute;bottom:19px;right:10px}
.msg_mine li p a{margin-left:5px}
.msg_mine .notice_list{margin-bottom:40px}
/*作业管理--作业详情 jw*/
.work_detail .form_list .submitBtnBar button{margin-right:5px !important}
.work_detail .studentList .chkLabel{margin:-3px 0 0 0}
.work_detail .questionArea{border:1px solid #ddd;padding:20px;margin-left:20px}
.work_detail .stu_item{padding-bottom:20px}
.work_detail .submitBtnBar a{margin-right:5px}
.work_detail .no_padding_form_list .row .formR{width:699px;line-height:35px}
.work_detail .form_list .formR span{margin-right:20px}
.work_detail .form_list .formL label{line-height:35px}
.work_detailTab{border:none !important}
.detailtabAllL .chkLabel{display:inline-block;vertical-align:middle;height:40px;line-height:40px;padding-left:18px;background-image:url(../images/ico.png);background-repeat:no-repeat;background-position:-132px -160px;margin-right:0}
.work_detail .anser{font-size:18px;color:#111;height:52px;line-height:52px}
.work_detail .tabList_border{width:100%}
.work_detail .tabList_border .tabList{border-bottom:#E7E7E7 solid 1px}
.work_detailtabAll{margin-top:20px;padding-left:4px}
.work_detailtabAll .detailtabAllL{margin-right:24px}
.work_detailtabAll a{color:#FFF}
.Rowwork .resultList li:hover{background:none !important;color:red}
.Rowwork .resultList li a:hover{color:#6cd685 !important}
.Rowwork .resultList li.ac a{background:none !important;color:#6cd685 !important;font-weight:bold}
.Rowwork .resultList li.ac{background:none !important;color:#fff !important}
/*备课列表zhn*/
.tea_prepare .subTitle_s{margin:20px 0 0 0}
.tea_prepare .integral i{width:19px;height:19px;overflow:hidden;text-align:center;line-height:19px;display:inline-block;background-color:#ffc309;color:#fff;border-radius:12px;vertical-align:middle}
.tea_prepare .integral em{color:#26c14a;width:auto;height:19px !important;line-height:19px;background:none;margin-left:8px}
.tea_prepare .integral em a{font-size:14px;color:#26c14a}
.tea_prepare .form_list .formL label{line-height:38px;*line-height:normal;height:30px}
.tea_prepare .teacprepare_list li{width:489px;padding:20px;height:60px;position:relative}
.tea_prepare .teacprepare_list li dl{width:650px;float:left}
.tea_prepare .teacprepare_list li dl dt{width:57px;height:60px}
.tea_prepare .teacprepare_list li dl dt img{width:57px;height:57px}
.tea_prepare .teacprepre_list li dl dd{padding-left:10px;width:280px}
.tea_prepare .teacprepare_list li dl dd h4{margin-bottom:0}
.tea_prepare .lesson_plan{width:60px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;font-size:13px;border-radius:20px !important;background-color:#0098f0 !important;text-align:center !important}
.tea_prepare span{color:#777;font-size:13px}
.tea_prepare .test_paper_sort p em{margin-left:18px}
.test_paper_my{padding-left:2px}
.test_paper_my .share{background:none !important;border:#6cd685 solid 1px !important;color:#6cd685 !important}
.test_paper_my .share:hover{background:#6cd685 !important;color:#fff !important}
.test_paper_my .batch{background-color:#ccc !important;color:#999 !important;border:#ddd solid 1px !important}
.test_paper_my .batch:hover{background-color:#ccc !important;color:#999 !important}
.tea_prepare .classList{vertical-align:middle;width:210px;height:30px;overflow:hidden;display:inline-block;white-space:nowrap;text-overflow:ellipsis}
.tea_prepare .share{margin:0}
.tea_prepare .classList a{margin-right:10px}
.tea_prepare .classList a:hover{text-decoration:underline}
.tea_prepare .teacprepare_list li .cek{position:absolute;right:-12px;top:-6px;z-index:100}
.my_papers .collect .x{background-position:-85px -528px}
.my_papers .collect .x:hover{background-position:-85px -488px}
.my_papers .collect .x_ac{background-position:-85px -488px}
.my_papers .read .f{background-position:-88px -611px}
.my_papers .read .f:hover{background-position:-88px -571px}
.paperStructureBox{position:relative;background:#e7ffed;border:#a6e3b4 solid 1px;padding:20px}
.paperStructureBox button{position:absolute;right:20px;top:15px;color:#fff;height:36px;line-height:36px}
.paperStructureBox h4{text-align:left;color:#444;font-size:14px;margin-bottom:10px}
.paperStructure_list{height:auto;min-height:30px}
.paperStructure_list li i{width:14px;height:14px;overflow:hidden;margin-left:4px;background:url(../images/ico.png) no-repeat -94px -94px}
.paperStructure_list li button{position:static}
.paperStructure_list .paperLi{height:28px;background-color:#fff;line-height:28px;margin-bottom:10px;width:100px;float:left;border:#ccc solid 1px;padding:0 12px;position:relative;margin-right:10px}
.paperStructure_list .this{background:#a6e3b4}
.paperStructure_list .paperLi em{width:10px;height:10px;position:absolute;right:2px;top:0;color:#ff7c62;cursor:pointer}
.paperStructure_list .paperStructure_Btn{padding:0}
/*答疑管理*/
.answer_questions .subTitle_r{position:relative;left:18px}
.answer_questions .make_testpaperList{padding-bottom:20px}
.answer_questions .make_testpaperList .make_testpaperli{border-bottom:#ccc dashed 1px;padding-bottom:30px}
.answer_questions .make_testpaperList .test_tite{height:35px;line-height:35px}
.answer_questions .test_tite h4{font-size:16px;color:#111}
.answer_questions .test_tite em{font-size:14px;color:#999}
.answer_questions .testpaperBox{line-height:35px;color:#333;font-size:14px}
.answer_questions .testpaperBox img{max-width:870px}
.answer_questions .test_BoxBtn{margin-top:10px}
.answer_questions .box_tab{width:98%;position:relative;left:-10px}
.answer_questions .test_BoxBtn .comeFrom{font-size:14px;color:#ccc}
.answer_questions .answer_testList{float:left;margin-right:20px}
.answer_questions .answer_testList li{float:left;padding-right:5px}
.answer_questions .box_btn a{font-size:14px;color:#555 !important}
.answer_questions .answerBox{border-top:#e0e0e0 solid 1px;position:relative;margin-top:4px;display:none}
.answer_questions .open_answer .answerW{display:block}
/*显示答案*/
.answer_questions .open_answer .answerM{display:none}
.answer_questions .open_ask .answerW{display:none}
/*显示回答*/
.answer_questions .open_ask .answerM{display:block}
.answer_questions .answer_list{padding-top:18px}
.answer_questions .answer_list li {
padding-left:50px;margin-bottom:18px}
.answer_questions .answer_list li .answer_listL{margin-left:-50px;float:left;margin-right:18px;position:relative}
.answer_questions .answer_listR{width:800px}
.answer_questions .answer_listR .answer_a em{color:#777;font-size:14px}
.answer_questions .answer_listR .answer_a span{width:72px;height:22px;background-color:#ff9c6b;line-height:22px;font-size:12px;color:#fff;text-align:center;display:inline-block;border-radius:10px;margin-left:10px}
.answer_questions .answer_listR .answer_a{font-size:14px;color:#111;margin-bottom:6px}
.answer_questions .answer_listR .answer_a .put{background:none;color:#ff7c66;border:#ff9c6b solid 1px;cursor:pointer}
.answer_questions .answer_listR .answer_a .put:hover{background-color:#ff9c6b;color:#fff}
.BtnBox{margin-bottom:10px}
/*文件详情页*/
.teaching_plan{width:1054px;margin:0 auto}
.teaching_plan .introduce_list{margin-top:20px;position:relative;width:1054px}
.teaching_plan .introduce_list dt{position:absolute;left:1px;top:0}
.teaching_plan .introduce_list dd{margin-left:48px;margin-top:3px;width:1000px;line-height:20px}
.teaching_plan .read_div{margin-top:10px;margin-bottom:10px}
.teaching_plan button{line-height:40px}
.collectionbtn{color:#000 !important}
/*答疑提问*/
.AQ_ask .form_list li{margin-right:10px}
.AQ_ask .form_list .formR{width:85%}
.AQ_ask .replen_list{padding-left:10px;margin-top:20px;padding-bottom:30px;border-bottom:1px #ccc dashed}
.AQ_ask .replen_list h4{margin:10px 0 12px 0}
.AQ_ask .replen_list textarea{width:76% !important}
.AQ_ask .btnArea{width:268px;position:absolute;top:40px;right:-75px}
.submit_b{text-align:left}
.submit_b .chkLabel{margin-left:10px;vertical-align:text-top}
.make_testpaperli{margin-bottom:30px}
/*错题详情*/
.digitalFile p .correct{margin-right:10px}
.digitalFile p .correct i{background:url(../images/ico.png) no-repeat;width:18px;height:12px;margin-left:6px}
.digitalFile p .correct .right{background-position:-144px -894px}
.digitalFile p .correct .wrong{background-position:-144px -854px}
.digitalFile p .correct .half{background-position:-92px -1214px}
.digitalFile .my_answer{margin-bottom:10px}
.digitalFile p .correct{margin-right:10px;display:inline-block}
.digitalFile p .correct i{background:url(../images/ico.png) no-repeat;width:18px;height:12px;margin-left:6px}
.digitalFile p .correct .right{background-position:-144px -894px}
.digitalFile p .correct .wrong{background-position:-144px -854px}
.digitalFile p .correct .half{background-position:-92px -1214px}
.digitalFile .my_answer{margin-bottom:10px}
/*主页--文件详情页*/
.docDetail .tabItem p span{display:inline-block;width:704px;margin-left:47px;margin-top:-25px}
.docDetail .check_div{margin-left:47px;margin-top:10px;margin-bottom:20px}
/*推送题目结果*/
.bear_push .fruit{font-size:13px;color:#888;margin-bottom:10px}
.bear_push .fruit em{color:#ff9000;font-size:14px;padding:0 4px}
.title_box{position:relative}
.title_box .fruit_listL{margin-top:40px;color:#718898}
.title_box{height:190px;margin:0 34px}
.title_box .fruit_listL h4{width:94px;color:#718898}
.title_box .fruit_listL p{clear:both}
.title_box .topic_detail{position:absolute;top:85px;left:-30px;z-index:20;width:820px;background:#fff;border:1px solid #ccc;padding:20px}
.title_box .topic_detail .arrow{left:35px}
.title_box .topic_detail .arrow_l{left:35px}
.title_box .topic_detail .topic_detail_cont{max-height:300px;overflow:auto}
.title_box .topic_detail_r{left:-460px}
.title_box .topic_detail_r .arrow{left:470px}
.fruit_list li{border-bottom:#ccc dashed 1px;margin-bottom:23px}
.title_box .fruit_listL table{width:90px !important}
/*题目推送结果*/
.push_result .form_list .formR{width:870px}
/*数据统计*/
.statis_chart .echarts{width:100%;height:230px;padding-top:10px}
.statistics .statistics_t{margin-bottom:60px}
.statistics .statistics_t .tabList{height:40px;border-bottom:1px solid #ddd}
.statistics .statistics_t .tabList li{float:left;height:40px;color:#1ababe;cursor:pointer;font-size:14px;text-align:center;line-height:32px}
.statistics .statistics_t .tabList .this{background-color:#00cacf;color:#fff}
.statistics .statistics_t .tabList .statistics_list{padding:20px 10px}
.statistics .statistics_t .statistics_list ol{display:none}
.statistics .statistics_t .statistics_list ol li{float:left;margin-right:60px;font-size:12px;color:#4e6bab;padding:10px 0;cursor:pointer}
.statistics_t .nameList,.nameList2{padding:10px 30px;border:#ccc solid 1px;margin-bottom:20px;position:relative;margin-top:20px}
.statistics_t .nameList h3,.nameList2 h3{font-size:16px;margin-bottom:20px;color:#333}
.statistics_t .nameList dl{height:auto;line-height:18px;border:none}
.statistics_t .nameList dl dd{float:left;padding:4px 30px;cursor:pointer}
.statistics_t .nameList dl dd span{color:#718898;font-size:14px}
.statistics_t .nameList dl .this{background-color:#6cd685}
.statistics_t .nameList dl .this span{color:#fff}
.statistics_t .nameList2 .naList{line-height:18px;border:none}
.statistics_t .nameList2 .naList{padding:4px 0}
.statistics_t .nameList2 .naList td{text-align:center;width:60px;height:24px;line-height:24px;padding:0 !important}
.statistics_t .nameList2 .naList span{color:#718898;font-size:14px;width:60px;height:24px;
vertical-align:middle;overflow:hidden;display:inline-block;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}
.statistics_t .nameList .naList .this{background-color:#6cd685}
.statistics_t .nameList .naList .this span{color:#fff}
.statistics_t .nameList2 .naList .this{background-color:#6cd685;color:#fff}
.statistics_t .nameList2 .naList .this span{color:#fff}
.statistics_t .nameList .naListtye{padding-left:50px}
.statistics_t .nameList .naListtye dt{margin-left:-50px;float:left;font-size:14px;position:relative;top:5px}
.statistics_t .name_box .nameList{display:none}
.statistics_t .name_box .nameList dd{padding:5px 20px}
.statistics_t .name_box .nameList .ac{background-color:#6cd685}
.statistics_t .name_box .nameList .ac span{color:#fff !important}
.statistics_t .nameList .textName{position:absolute;top:10px;left:200px;cursor:pointer}
.statistics_t .name_box .textName i{width:10px;height:6px;overflow:hidden;display:inline-block;background:url(../images/ico.png) no-repeat -65px -247px}
/*熊孩子管理器*/
.bear_children table{border-right:1px solid #ccc;border-bottom:1px solid #ccc}
.bear_children table th{border-left:1px solid #ccc;border-top:1px solid #ccc;height:50px;background:#f6fff8}
.bear_children table td{border-left:1px solid #ccc;border-top:1px solid #ccc}
.bear_children table{width:870px;margin-top:15px}
.bear_children table .em_ico{width:14px;height:14px;overflow:hidden;margin-left:5px;display:inline-block;vertical-align:middle;background:url(../images/ico.png) no-repeat -92px -812px;cursor:pointer;position:relative;top:-1px}
.bear_children table .up{background-position:-92px -772px}
.bear_children table .down{background-position:-52px -812px}
.bear_children table td{text-align:center}
.bear_children .tab{width:870px;margin-top:38px}
.bear_children .tab .tabCont{border-left:none;border-right:none;border-bottom:none}
.bear_children .tab .tabCont .tabItem{padding-left:0}
/*答疑管理*/
.answerBigBox{position:relative;top:10px}
.answerBigBox .editor{margin-top:10px}
/*查看批改*/
.correctPaper{position:relative;border-bottom:20px}
.correctPaper .titlr_r{position:absolute;right:0;top:8px}
.test_class_this{text-align:center;height:112px;background-color:#e7ffed;line-height:112px;margin-top:20px}
.test_class_this span{font-size:18px;color:#444;padding-left:18px}
/*个人设置 jw*/
.userSetup .title{margin-bottom:30px}
.userSetup .form_list .row{ padding-bottom:20px}
.userSetup .tabCont{border:none;border-top:1px solid #ddd;padding-top:30px}
.userSetup .instructions{background:#eee;padding:20px;margin-bottom:30px}
.change_pwd .form_list .formL label{width:100px}
.picEditBar{width:462px;text-align:center}
.picEditBar .default_pic{border:1px solid #ddd;margin-top:10px}
.picEditBar .default_pic .imgBar{width:460px;margin:0 auto}
.picEditBar .default_pic .imgBar img{display:block}
.picEditBar .default_pic span{padding:20px 20px 10px;display:inline-block;text-align:justify}
.picEditBar .btnBar{margin-top:30px}
.pic_clipBar h5{margin:60px 20px 10px;color:#999}
.pic_clipBar .clip_img{float:left;margin-left:18px;overflow:hidden}
.pic_clipBar .clip_img230{width:230px;height:230px}
.pic_clipBar .clip_img70{width:70px;height:70px}
.pic_clipBar .clip_img50{width:50px;height:50px}
.picEditBar .fileinput-button .uploading .file{width:352px;height:50px}
/*教师-答疑统计*/
.staticsBox .statics{padding-left:120px;padding-top:36px}
.staticsBox .statics li{width:100px;height:115px;margin-right:80px;float:left}
.staticsBox .statics li p{width:97px;height:73px;border:#b6eec4 solid 1px;border-radius:4px;background:#e7ffed;text-align:center}
.staticsBox .statics li p em{width:34px;height:34px;display:inline-block;overflow:hidden;background:url(../images/new_sprite.png) no-repeat}
.staticsBox .statics li .staticsT em{background-position:-182px -187px}
.staticsBox .statics li .staticsH em{background-position:-345px -182px}
.staticsBox .statics li .staticsC em{background-position:-266px -182px}
.staticsBox .statics li .staticsBZ em{background-position:-425px -180px}
.staticsBox .statics li span{display:block;text-align:center;margin-top:10px}
.staticsBox .statics li b{display:block;font-size:14px;color:#3cba5a;line-height:20px;height:20px}
.staticsBox .statics li .staticsB{width:97%;height:39px;display:block;font-weight:normal;font-size:22px;color:#777777;line-height:39px;text-align:center;border:#e3e3e3 solid 1px;border-top:none;position:relative;top:-2px}
.staticsBox .statics .statics_each em{background-position:-182px -187px}
.staticsBox .statics .statics_each em{background-position:-266px -182px}
/*over状态*/
.staticsBox .statics .statics_over p{background-color:#6cd685}
.staticsBox .statics .statics_over p b{color:#fff}
.staticsBox .statics .statics_over .staticsT em{background-position:-182px -267px}
.staticsBox .statics .statics_over .staticsH em{background-position:-344px -260px}
.staticsBox .statics .statics_over .staticsC em{background-position:-266px -263px}
.staticsBox .statics .statics_over .staticsBZ em{background-position:-425px -260px}
.staticsBox .tabBox .tabList{border-bottom:#E7E7E7 solid 1px}
.staticsBox .tabBox .tabCont{border:none}
/*藤条棍*/
.rattancent_list{border-bottom:#ccc dashed 1px}
.rattancent_list_nobottom{border-bottom:0}
.rattanBox .rattanR button{color:#555555 !important;font-size:14px !important}
.rattanBox .rattanR .hover{background:#6cd685 !important;color:#fff !important;font-size:14px !important}
.rattancent .rattanCent_t{padding:26px 0}
.rattancent .rattanCent_t h3 span{color:#111111;font-size:16px}
.rattancent .rattanCent_t h3 em{color:#6cd685;font-size:14px;cursor:pointer}
.rattancent .rattanCent_h h4{line-height:32px;min-height:32px}
.rattancent .rattanCent_h h4 span{color:#111111;font-size:14px}
.rattancent .rattanCent_h h4 em{color:#ccc;font-size:14px;cursor:pointer}
.rattancent .answerBox{border-top:#e0e0e0 solid 1px}
.rattancent .rattanCbox .unfinished_list{width:auto !important}
.rattancent .rattancent_cue{margin-top:12px}
.rattancent .rattancent_cue .rattancent_l{color:#999}
.rattancent .tabox{max-width:830px;max-height:243px;overflow:auto;margin-top:10px}
.rattancent .tabox .unfinished_list td{padding:0}
.rattancent .tabox .unfinished_list th{white-space:nowrap}
.rattancent .tabox .unfinished_list td{white-space:nowrap;padding:0 10px}
.rattanCent_t .centH3 em b{background:url(../images/ico.png) no-repeat -12px -1054px;width:12px;height:12px;display:inline-block}
.rattanCent_h h4 b{background:url(../images/ico.png) no-repeat -13px -214px;width:12px;height:8px;display:inline-block}
.rattancent .test_achievement_foot{border-bottom:none}
.rattancent{margin-top:20px}
.rattancent .tab .tabCont{border:none}
.rattancent_cue span{position:relative;top:20px}
/*我的随笔 jw*/
.myEssay .title{margin-bottom:30px}
.myEssay .essayList{padding:30px 0 0 40px;position:relative}
.myEssay .essayList dt{position:absolute;left:0;top:0;height:30px;line-height:30px;width:80px;text-align:center;color:#fff;border-radius:20px;background:#42bfef}
.myEssay .essayList dd{border-left:2px solid #ddd;padding:30px 0 30px 30px}
.myEssay .essayList dd h5{font-size:18px;color:#000;padding-bottom:10px}
.myEssay .essayList dd h5 a{display:inline-block;vertical-align:middle;height:20px;width:24px;background:url(../images/ico.png) -44px -330px}
.myEssay .essayList dd h5 a:hover{background-position:-84px -290px}
.myEssay .essayList dd .essayCont{border:1px solid #ddd;padding:20px;border-radius:5px;position:relative}
.myEssay .essayList dd .essayCont .widget_select{position:absolute;top:54px;left:226px}
.myEssay .essayList dd .essayStateBar{position:absolute;top:10px;right:10px}
.myEssay .essayList dd .essayStateBar span{display:inline-block;width:50px;height:50px;text-align:center;color:#999;font-size:12px}
.myEssay .essayList dd .essayStateBar span i{width:50px;height:30px;background:url(../images/ico.png) no-repeat}
.myEssay .essayList dd .essayStateBar .support{cursor:pointer}
.myEssay .essayList dd .essayStateBar .support i{background-position:-34px -1601px}
.myEssay .essayList dd .essayStateBar .onSupport{cursor:default}
.myEssay .essayList dd .essayStateBar .support i:hover,.myEssay .essayList dd .essayStateBar .onSupport i{background-position:6px -1601px}
.myEssay .essayList dd .essayStateBar .comment i{background-position:-116px -1639px}
.myEssay .essayList dd .essayCont hr{margin-top:20px}
.myEssay .essayList dd .essayCont .expandComment{display:block;width:80px;height:24px;cursor:pointer;color:#6cd685;background:#fff;margin-top:-15px}
.myEssay .essayList dd .essayCont .expandComment i{background:url(../images/ico.png) no-repeat -10px -1054px;height:15px;width:15px}
.myEssay .essayList dd .essayCont .expandComment_open i{background-position:-9px -1814px}
.myEssay .essayCommentList{padding-top:10px}
.myEssay .essayCommentList li{padding:10px 0 10px 70px;border-top:1px dashed #ddd}
.myEssay .essayCommentList li h6 a{color:#0098f0}
.myEssay .essayCommentList li .headPic{float:left;margin-left:-70px}
.myEssay .essayCommentList li .toolBar{height:40px;line-height:40px}
.myEssay .essayCommentList li .toolBar span{cursor:pointer;color:#0098f0}
.myEssay .essayCommentList li .toolBar span:hover{color:red !important}
.myEssay .essayCommentList li .toolBar .report{position:absolute;top:3px;right:70px}
.myEssay .essayCommentList li .toolBar .reply,.myEssay .essayCommentList li .toolBar .delComment{position:absolute;width:63px;top:3px;right:0;text-align:right}
.myEssay .essayCommentList li .toolBar .reply i{width:35px;height:15px;background:url(../images/ico.png) no-repeat 4px -1774px}
.myEssay .essayCommentList li .reply_textareaBar{border-top:1px solid #ddd;padding-left:70px}
.myEssay .essayCommentList li .reply_textareaBar textarea{border-radius:3px}
.myEssay .essayCommentList li .reply_textareaBar .headPic{margin-top:10px}
.myEssay .essayCommentList li .subRelayList li{border-top:1px solid #ccc}
.myEssay .essayCommentList li .subRelayList li .delSubComment{position:absolute;top:3px;right:70px}
.myEssay .moreEssay{border:1px solid #42bfef;height:30px;width:80px;line-height:30px;text-align:center;color:#42bfef;border-radius:20px;cursor:pointer}
.myEssay .moreEssay:hover{color:#fff;border:1px solid #c0e6ff;background:#c0e6ff}
.myEssay .noMoreEssay{background:#ddd !important;border:1px solid #ddd !important;color:#999 !important;cursor:default}
/*教师个人中心slg*/
.personal_center .personal_top{width:100%;height:160px;background:#f4faf5;text-align:center}
.personal_center .personal_top li{display:inline-block;width:98px;height:98px;border:1px dashed #6cd685;border-radius:4px;*float:left;margin:0 30px;margin-top:30px}
.personal_center .personal_top li a{display:inline-block;width:92px;height:92px}
.personal_center .personal_top .Notice i{background:url(../images/ico.png) no-repeat -4px -1564px;width:32px;height:30px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Notice a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Upload i{background:url(../images/ico.png) no-repeat -84px -1565px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Upload a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Homework i{background:url(../images/ico.png) no-repeat -44px -1524px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Homework a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .Topic i{background:url(../images/ico.png) no-repeat -83px -1524px;width:32px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Topic a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top .question i{background:url(../images/ico.png) no-repeat -2px -1644px;width:36px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .question a{color:#6cd685;display:block;overflow:hidden;height:98px}
.personal_center .personal_top li:hover{background:#6cd685}
.personal_center .personal_top li:hover a{color:white !important}
.personal_center .personal_top .Notice:hover i{background:url(../images/ico.png) no-repeat -43px -1564px;width:32px;height:30px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Upload:hover i{background:url(../images/ico.png) no-repeat -124px -1565px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Homework:hover i{background:url(../images/ico.png) no-repeat -4px -1524px;width:32px;height:31px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .Topic:hover i{background:url(../images/ico.png) no-repeat -123px -1523px;width:32px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .personal_top .question:hover i{background:url(../images/ico.png) no-repeat -42px -1644px;width:36px;height:32px;display:inline-block;margin:20px 36px 13px 30px}
.personal_center .myMsg,.personal_center .myClasses,.personal_center .myPractice,.personal_center .myQuestion{margin-top:45px}
.personal_center .myMsg .title,.personal_center .myClasses .title,.personal_center .myPractice .title,.personal_center .myQuestion .title{background:#f4faf5;border-bottom:none}
.personal_center .myMsg .title h4,.personal_center .myClasses .title h4,.personal_center .myPractice .title h4,.personal_center .myQuestion .title h4{font-size:16px;text-indent:10px}
.personal_center .myMsg_notice .title h4{text-indent:0}
.personal_center .myMsg .widget_select{position:absolute;left:85px;top:14px;z-index:7}
.personal_center .myMsg .widget_select ul li{height:24px}
.personal_center .myMsg .tab{margin-top:20px}
.personal_center .myMsg .tabList a{width:100px;height:90px;text-align:center;background:none;border:none;position:relative}
.personal_center .myMsg .tabList a i{display:block;width:44px;margin:0 auto;height:70px;background:url(../images/ico.png)}
.personal_center .myMsg .tabList .notes i{background-position:-20px -1280px}
.personal_center .myMsg .tabList .notes:hover i{background-position:-100px -1280px}
.personal_center .myMsg .tabList a:hover,.personal_center .myMsg .tabList .ac{background:none}
.personal_center .myMsg .tabList a b{position:absolute;width:26px;height:26px;background:url(../images/ico.png) no-repeat -7px -1087px;color:#fff;text-align:center;line-height:26px;font-size:12px;top:5px;right:25px}
.personal_center .myMsg .tabList .over99 b{background-position:-7px -1127px;text-indent:-999px;overflow:hidden}
.personal_center .myMsg .tabCont{margin-top:20px;border:none;border-top:1px solid #ddd}
.personal_center .myMsg .tabList .sysMsg i{background-position:-100px -1435px}
.personal_center .myMsg .tabList .sysMsg:hover i{background-position:-20px -1435px}
.personal_center .myMsg .tabList .letter i{background-position:-20px -1353px}
.personal_center .myMsg .tabList .letter:hover i{background-position:-100px -1353px}
.personal_center .myMsg .myMsg_notice .title{background:none;margin-right:-10px}
.personal_center .myMsg .myMsg_notice,.myMsg_letter{margin-left:-30px}
.personal_center .myMsg .myMsg_notice li p{line-height:30px}
.personal_center .myMsg .myMsg_notice li{border-bottom:1px dashed #ddd;margin-left:12px}
.personal_center .myMsg .myMsg_notice .notice_h4{line-height:20px}
.personal_center .myMsg .myMsg_notice .notice_r{margin-top:-15px}
.personal_center .myMsg .myMsg_letter dl{padding-left:110px;margin-top:20px;border-bottom:1px dashed #d7d7d7;padding-bottom:22px}
.personal_center .myMsg .myMsg_letter dl dt{float:left;margin-left:-100px}
.personal_center .myMsg .myMsg_letter dl dd{line-height:30px}
/*备课*/
.personal_center .myClasses ul li{border:1px solid #ccc;margin-top:30px}
.personal_center .myClasses dl{position:relative;margin:0 15px 30px 14px;height:57px;border-bottom:1px dashed #d7d7d7;padding-bottom:20px}
.personal_center .myClasses .myFile{border:1px dashed #d7d7d7;width:95px;text-align:center;margin-right:0;line-height:30px;margin-left:772px}
.personal_center .myClasses .pr{border-bottom:0;padding-bottom:0}
.personal_center .myClasses dl h4{margin-bottom:14px}
.personal_center .myClasses dl h4 a{color:#333;width:333px;overflow:hidden;display:inline-block;text-overflow:ellipsis;white-space:nowrap;font-size:14px;text-indent:12px}
.personal_center .myClasses .lesson_plan{width:60px;height:24px !important;line-height:24px !important;display:inline-block;color:#fff;font-size:13px;margin-left:15px;border-radius:20px !important;background-color:#0098f0 !important}
.personal_center .myClasses span{margin-left:15px}
/*作业*/
.personal_center .myHomework,.personal_center .myPractice .titlePush_main,.personal_center .myQuestion .make_testpaper{border:1px solid #d7d7d7;margin-top:31px}
.personal_center .myHomework .sup_ul .sup_li{border:none}
.personal_center .myHomework .sup_ul .add_list{padding-top:50px;border-bottom:1px dashed #e5e5e5;margin:0 10px 0 10px}
.personal_center .myHomework .sup_ul li .sup_l{border-right:none !important}
.personal_center .myHomework .sup_ul li .sup_l h4{padding-bottom:0;float:none;margin-top:-25px}
.personal_center .myHomework .sup_ul li .sup_l h4 a{white-space:nowrap}
.personal_center .myHomework .sup_ul li .sup_l h4 a .gray_d{width:0;display:none}
.personal_center .myPractice .titlePush_main li.noBorder{border-bottom:0}
/*练一练*/ .personal_center .myPractice .titlePush_main li{border:none;padding-top:10px;padding-left:24px}
.personal_center .myPractice .titlePush_main .pr{border-bottom:0}
.personal_center .myPractice .notice{background:none;color:#555 !important;border-radius:4px;margin-bottom:12px;border:#7bccff solid 1px;height:40px !important;line-height:40px !important;margin-left:660px;margin-top:-68px}
.personal_center .myPractice .notice:hover{color:#fff !important}
.personal_center .myPractice ul{margin-bottom:0}
/*答疑*/
.personal_center .myQuestion .make_testpaper{padding:34px 15px 0 25px}
.personal_center .myQuestion .make_testpaperli{border:none;margin:0}
.personal_center .myQuestion .answer_listR{width:760px}
/*积分排行ljr*/
.video_library{padding:0 30px}
.cont24 .mainbox_r{width:930px}
.no_padding_form_list .subTitle_s{padding-top:10px}
/*课件库增加章节ljr*/ .problem_box .cont24 .alpha{width:240px}
.problem_rgt{float:left;width:870px}
/*我的收藏ljr*/
.my_collection .teacprepare_list li{width:489px;padding:20px;height:60px;position:relative}
.noleft .problem_rgt{float:none;width:100%}
/*作业管理ljr*/
.popContbox{padding:10px 0 23px}
.main_datels{width:100% !important}
.popBox .form_work_pre{padding-top:10px}
.popBox .form_work_pre .row{padding-bottom:0}
.popBox .form_work_pre .row .formL{padding:14px 20px 0 10px;color:#3BAEF3}
.myclass_table{width:490px;padding-bottom:10px;line-height:30px}
.popBox .form_workcon .formR_text .myclass_table{padding-bottom:18px !important}
.myclass_table.ac dd i{display:block;display:inline-block;position:relative;right:21px;visibility:visible}
.myclass_table dt{width:145px;height:40px;text-align:center;line-height:40px;float:left}
.myclass_table dt input{float:left;margin:13px 3px}
.myclass_table dt span{float:left;width:120px;height:40px;cursor:pointer;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-wrap:normal}
.ac dt{background:#4EBBFF;color:#fff}
.myclass_table dd{margin-left:206px}
.myclass_table dd .date_bj{position:relative;top:-2px}
.myclass_table dd .edit_box{width:160px;height:36px;padding-left:5px}
.myclass_table dd i{background:url(../images/strp.png) no-repeat;visibility:hidden;margin:8px -27px 0 0}
.work_reccon span{color:#889ba8;padding-right:18px;float:left}
.work_reccon em{float:left}
.layou_btn{position:absolute;top:40px;right:17px;}
.layou_btn .sup_box{width:122px;height:42px;margin:-21px 0 0 20px}
.form_workcon{padding:0 0 10px 0 !important;border-bottom:1px solid #EEE}
.form_workcon .row .formR_text{padding-top:10px !important}
.form_workcon .row .formL{padding-top:8px !important}
.form_workcon .myclass_table .ac{background:none !important}
.form_workcon .myclass_tablebox dt span{cursor:auto}
/*题目管理ljr*/
.schResult .testPaperView .paperArea .paper .paper_r .error_correction{color:#0098f0 !important}
.testPaperView .paperArea .paper{position:relative}
.testPaperView .paperArea .paper .paper_r .error_correction{color:#0098f0 !important}
.testPaperView .paperArea #update .paper .error_correction{color:#0098f0 !important;position:relative;left:670px;top:4px}
.new_tch_group .form_list .formR textarea{width:363px !important;margin-left:-5px !important;height:120px !important}
.textareaBox .btnArea{height:30px;position:relative;margin-top:10px;right:3px}
.textareaBox{height:180px}
.textareaBox .txtCount{position:absolute;right:110px;top:3px;color:#ccc}
.popBox .form_list .formL .face_pic{position:relative;top:14px;right:25px}
.popBox .form_list .formR_text{line-height:24px;padding:10px 20px 0 0}
.popBox .form_list .work_row{padding-left:80px}
.popBox .work_form_list{padding:20px 0 30px 0}
.popBox .topic_opt{max-width:452px !important}
.popBox .topic_opt .chkLabel{padding-left:28px}
.popBox .form_list .work_face{padding-top:14px}
/*作业库ljr*/
.tab .tabCont .work_tabitem{padding:10px 17px 20px 18px}
.work_teacher{margin-top:0 !important}
.tabItem .work_teacher li dl dd{width:260px !important}
.share_work{float:left;position:relative;left:94px;padding-top:3px}
.share_work input{position:relative;right:3px}
.btn_work{margin-right:118px}
.cont24 .problemBox .grid_5{width:248px;padding:0 6px 0 6px}
.cont24 .problemBox .problem_r .teacher_tablist{width:100%}
.cont24 .problemBox .problem_r{width:850px;overflow:hidden}
.cont24 .tchorg_Cont .problem_r{width:850px;overflow:hidden}
.cont24 .tchorg_Cont .grid_5{width:248px;padding:0 6px 0 6px}
/*教师作业详情增加样式ljr*/
.tch_suggestion{margin:30px 0 0 0;border-top:1px solid #dcdcdc}
.tch_suggestion .titles{height:40px;line-height:40px;background:#E7FFED;padding-left:20px;font-size:16px;color:#52BE73}
.tch_suggestion .titles i{background:url(../images/ico.png) -49px -1810px;padding-right:10px;width:18px;height:20px}
.tch_suggestion .row{margin-top:30px;width:870px;position:relative}
.tch_suggestion .row .formL{float:left}
.tch_suggestion .row .formR{overflow:hidden;padding-left:15px}
.tch_suggestion .row .add_txt{width:714px;height:109px;border:1px solid #CCC !important}
.tch_suggestion .row .limit{position:absolute;right:50px}
.tch_suggestion .row .btn_Submit{margin:20px 0 0 90px}
/*作业批改ljr*/
.correct_workcon{padding-top:30px}
.correct_workcon .tab{border-bottom:1px solid #E7E7E7}
.left_correct dl:hover{background:#D2EDFF;padding-bottom:5px !important}
.left_correct dl.cur{background:#D2EDFF;padding-bottom:5px !important}
/*按题批改ljr*/
.questionscon .right_correct .correctPaper{margin-top:0}
.questionscon .left_correct dl dt{width:50px;height:50px;font-size:30px;color:#889BA8;line-height:50px;text-align:center}
.questionscon .left_correct dl dd .accuracy{color:#78C9FE}
.questionscon .left_correct dl dd .accuracy em{font-size:18px;color:#78C9FE}
.questionscon .left_correct dl:hover{background:#D2EDFF}
/*作业统计ljr*/
.statistics_cont .zyname{text-align:center;padding:20px 0 20px 0}
.statistics_cont .tab .tabCont{border-left:0;border-right:0;border-bottom:0}
.statistics_cont .tab .tabCont .tabItem{padding:20px 0 20px 0;width:980px}
.statistics_cont .statistics_item{width:870px;border-bottom:1px dashed #E0E0E0;margin:0 20px 20px 0;padding-bottom:20px}
.statistics_cont .statistics_item h6{color:#78D98F;font-size:18px;background:url(../images/ico.png) no-repeat -137px -2088px;padding-left:15px}
.statistics_cont .statistics_item p{padding:20px 0 0 0;font-size:18px}
.statistics_cont .statistics_item p em{font-size:30px;color:#1DD149}
.statistics_cont .statistics_item .tj{font-size:16px;margin:20px 0 20px 0}
.statistics_cont .statistics_item .noend{width:825px;height:190px;background:#E7FFED;text-align:center;line-height:190px;font-size:18px;margin-top:10px;margin:20px 0 0 0}
.statistics_cont .statistics_item .noendList{overflow:hidden}
.statistics_cont .statistics_item .noendList li{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;float:left;width:135px;padding:0 10px 10px 0}
.statistics_cont .statistics_item .noendList .notName{color:#E87E90}
/*学生统计ljr*/
.statistics_item .pepList{width:850px;height:80px;border:1px solid #ccc;margin-top:20px;padding:10px;position:relative}
.statistics_item .pepList span{font-size:30px;color:#50BBFF;position:absolute}
.con{width:870px;margin:0 auto;padding:20px 0 0 0}
.u_list{border:solid 1px #D7D7D7;padding:20px 8px 20px 20px;position:relative;height:50px;margin-bottom:20px}
.u_list .u_left{position:absolute;width:190px;left:20px;top:20px}
.u_list .u_left .num{color:#4EBBFF;height:50px;line-height:50px;float:left;width:54px;font-size:30px}
.u_list .u_left .u_info{float:left;width:135px}
.u_list .u_left .u_info .headimg{float:left;width:50px;height:50px;overflow:hidden}
.u_list .u_left .u_info .headimg img{max-height:50px;max-width:50px}
.u_list .u_left .u_info .u_name_per{float:left;margin-left:7px}
.u_list .u_left .u_info .u_name_per p.name{line-height:27px;height:27px;overflow:hidden;font-size:14px;padding:0}
.u_list .u_left .u_info .u_name_per p.per{line-height:24px;height:24px;overflow:hidden;color:#6CD685;font-size:18px;padding:0}
.u_list .u_right{margin-left:216px;height:38px;overflow:hidden;position:relative;margin-top:8px}
.u_list .u_right .btn_g{position:absolute;right:0;width:12px;top:8px}
.u_list .u_right .btn_g a{cursor:pointer;width:13px;height:8px;display:block;background:url(../images/ico.png) no-repeat;margin-bottom:8px;overflow:hidden}
.u_list .u_right .btn_g a.prev{background-position:0 -2455px}
.u_list .u_right .btn_g a.next{background-position:0 -2446px}
.u_list .u_right .btn_g a.prev.stop{background-position:0 -2425px}
.u_list .u_right .btn_g a.next.stop{background-position:0 -2417px}
.u_list .u_right .u_right_list{margin-right:12px;position:relative}
.u_list .u_right .u_right_list .content{display:none}
.u_list .u_right .u_right_list a{float:left;margin:0 20px 20px 0;width:36px;height:36px;text-align:center;line-height:36px;border:solid 1px #48C977;border-radius:50%;position:relative;font-size:18px}
.u_list .u_right .u_right_list a i{display:block;position:absolute;width:16px;height:13px;background:url(../images/ico.png) no-repeat;background-color:#fff;top:20px;right:-9px}
.u_list .u_right .u_right_list a.state1{border-color:#6CD685;color:#6CD685}
.u_list .u_right .u_right_list a.state1 i{background-position:-12px -1213px}
.u_list .u_right .u_right_list a.state2{border-color:#DBAD71;color:#DBAD71}
.u_list .u_right .u_right_list a.state2 i{background-position:-92px -1214px}
.u_list .u_right .u_right_list a.state3{border-color:#FF7B61;color:#FF7B61}
.u_list .u_right .u_right_list a.state3 i{background-position:-13px -1173px;width:14px;height:14px;right:-8px;top:18px}
.original_num{position:absolute;right:0;top:20px;width:540px;border:1px solid #ccc;min-height:200px;background:#fff;border-radius:5px;padding:20px 15px 15px;box-shadow:1px 1px 1px 1px #ccc}
.original_num .v_r_arrow{position:absolute;width:20px;height:13px;top:-11px;left:106px;background:url(../images/ico.png) no-repeat -130px -54px}
.layer_right .v_r_arrow{left:408px}
.original_num .close_box{position:absolute;right:10px;top:5px;font-size:18px;color:#555;cursor:pointer;z-index:10}
/*教师个人中心作业列表修改 管宁宁2016-04-27 */
.teacher .sup_li .monthbox {padding-right: 3px;border-top:1px dashed #7ecef4;margin-top: 20px;position: relative;}
.teacher .sup_li .monthbox .floatLayer{position: absolute;left: 0;top: 0;width: 70px;z-index: 5;display: none}
.teacher .sup_li .monthbox .floatLayer a{display: block;width: 70px;height: 28px;line-height: 28px;color: white;text-align: center;background:#6cd685;}
.teacher .sup_li .monthbox .floatLayer a i{display:inline-block;width:20px;height:20px;background: url("../images/ico_guan.png") no-repeat;}
.teacher .sup_li .monthbox .floatLayer a.edit i{background-position:-60px -518px;margin-right: 2px;}
.teacher .sup_li .monthbox .floatLayer a.delete{border-top: 1px solid #53c86f;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}
.teacher .sup_li .monthbox .floatLayer a.delete i{background-position:-99px -519px;margin-right: 4px;}
.teacher .sup_li .monthbox:hover{background: #f5f5f5;}
.teacher .sup_li .monthbox .worklist li{margin-bottom: 0;}
.teacher .sup_li .monthbox:hover .floatLayer{display: block;}
.teacher .sup_li .monthbox ul.worklist li{padding:25px 0 7px 0;/*border-bottom:1px solid #DCDCDC;*/}
.teacher .sup_li .monthbox ul.worklist .work_notop{padding-top: 0;}
.teacher .sup_li .monthbox ul.worklist li .work_left{float: left}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top{/*border-bottom: dotted 1px #7DCFF5;width: 802px;*/padding-bottom: 24px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_img{float: left;width: 45px;height: 52px;background:url(../images/ico_guan.png) no-repeat;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .word{background-position:-600px -200px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .picture{background-position:-440px -200px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_img img{max-width: 45px;max-height: 52px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_info {float: left;padding-left: 17px;/*width: 740px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_top .work_info .work_title{/*width: 700px;*/ white-space: nowrap;overflow: hidden; text-overflow:ellipsis;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom {/*padding-top: 25px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress{float: left;/*padding-left: 60px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li{line-height: 14px;overflow: hidden;border-bottom: 0px;padding: 0px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li span{float: left;margin-right: 8px;margin-bottom: 16px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li .progress_outer{float: left;width: 300px;border-radius: 10px;height: 14px;overflow: hidden;background: #E5E5E5}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li .progress_outer .progress_inner{border-radius: 10px;height: 14px;overflow: hidden;background: #CCB3DD}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .progress li label{float: left;padding-left: 16px}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .accuracy{float: left;margin:10px 0 0 62px;}
.teacher .sup_li .monthbox ul.worklist li .work_left .work_bottom .accuracy em.per{font-size: 34px;color: #666;}
.teacher .sup_li .monthbox ul.worklist li .work_right{float:right;height: 146px;/*border-left: solid 1px #F5F5F5;padding-left: 24px*/}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper{float: left;/*margin-left: 24px;*/}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper .btn{display: block; margin-bottom:9px;border: 1px solid #ccc;color: #10ade5 !important;min-width: 90px;padding: 0 10px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper i{margin-top: 1px;margin-right: 5px;display:inline-block;vertical-align: middle;height: 20px;width: 20px;line-height: 30px;background-image: url(../images/ico_guan.png);}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_book i{background-position: -460px -641px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_gou i{background-position: -301px -601px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.icoBtn_result i{background-position: -140px -600px;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.btn_disable {color: #fff !important;background: #ccc !important;cursor: not-allowed;}
.teacher .sup_li .monthbox ul.worklist li .work_right .oper a.btn_disable i{background:url("../images/ico_guan_hover.png") no-repeat -460px -641px;} | 0.15704 | 0.07353 |
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
section {
height: 100vh;
background-color: rgb(228, 187, 112);
font-family: sans-serif;
}
.score {
color: white;
height: 20vh;
display: flex;
justify-content: space-around;
align-items: center;
}
.score h2 {
font-size: 30px;
}
.score p {
text-align: center;
font-size: 25px;
}
.intro {
color: white;
height: 50vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
transition: opacity 0.5s ease 0.5s;
opacity: 0;
}
.intro h1 {
font-size: 50px;
}
.intro h1:hover {
color: black;
}
.intro button,
.match button {
width: 150px;
height: 50px;
background: none;
border: none;
color: rgb(228, 187, 112);
font-size: 20px;
background: rgb(69, 104, 74);
cursor: pointer;
}
.match {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
color: white;
transition: opacity 0.5s ease 0.5s;
}
.winner-class {
color: white;
text-align: center;
font-size: 50px;
justify-content: center;
}
.winner-class:hover {
color: black;
}
.hands,
.options {
display: flex;
justify-content: space-around;
align-items: center;
}
.player-hand {
transform: rotateY(180deg);
}
/**Javascript components**/
div.fadeOut {
opacity: 0;
pointer-events: none;
}
div.fadeIn {
opacity: 1;
pointer-events: all;
} | index.css | html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
section {
height: 100vh;
background-color: rgb(228, 187, 112);
font-family: sans-serif;
}
.score {
color: white;
height: 20vh;
display: flex;
justify-content: space-around;
align-items: center;
}
.score h2 {
font-size: 30px;
}
.score p {
text-align: center;
font-size: 25px;
}
.intro {
color: white;
height: 50vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
transition: opacity 0.5s ease 0.5s;
opacity: 0;
}
.intro h1 {
font-size: 50px;
}
.intro h1:hover {
color: black;
}
.intro button,
.match button {
width: 150px;
height: 50px;
background: none;
border: none;
color: rgb(228, 187, 112);
font-size: 20px;
background: rgb(69, 104, 74);
cursor: pointer;
}
.match {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
color: white;
transition: opacity 0.5s ease 0.5s;
}
.winner-class {
color: white;
text-align: center;
font-size: 50px;
justify-content: center;
}
.winner-class:hover {
color: black;
}
.hands,
.options {
display: flex;
justify-content: space-around;
align-items: center;
}
.player-hand {
transform: rotateY(180deg);
}
/**Javascript components**/
div.fadeOut {
opacity: 0;
pointer-events: none;
}
div.fadeIn {
opacity: 1;
pointer-events: all;
} | 0.575111 | 0.084758 |
.clear { clear:both; display:block; overflow:hidden; visibility:hidden; width:0px; height:0px;}
.left { float:left; }
.orange { color: #f36f31; }
.prodDetailHeader {
padding: 0 0 0 260px;
background: #FFF url(../images/bgs/couple-with-cell-phone.png) no-repeat 0 0;
}
.prodTitle {
margin: 10px 0 0 0;
}
.shareIt {
float: right;
margin: -20px 5px 0 0;
}
.shareIt p {
float: left;
color: #f36f31;
padding: 0 3px 0 0;
font-weight: bolder;
}
.shareIt a {
float: left;
padding: 0 3px;
}
.prodShortDesc p {
color: #666;
}
.buttPriceLink {
margin: 10px 0 0 0;
}
.Button { /* button*/
background: #fff url(../images/btns/btn-orange-middle.png) repeat-x 0 0;
/* background: #f26522 url(../images/comparePage/btns/btn-orange-middle.png) repeat-x 0 0; */
float: left;
margin: 0 10px;
padding: 0;
width: auto;
}
.ButtonCenter {
float: left;
margin: 8px 0 0 35px;
}
.ButtonLeft {
background: transparent url(../images/btns/btn-orange-left.png) no-repeat 0 0;
/* background: transparent url(../images/comparePage/btns/btn-orange-left.png) no-repeat 0 0; */
float: left;
padding: 0 0 0 15px;
}
.ButtonRight {
background: transparent url(../images/btns/btn-orange-right.png) no-repeat right top;
/* background: transparent url(../images/comparePage/btns/btn-orange-right.png) no-repeat right top; */
float: left;
padding-right: 15px;
}
.Button a:link, .Button a:visited, .Button a:hover {
color: #fff;
float: left;
font:bold 1.050em/2.020em Arial,Helvetica,sans-serif;
margin: 0;
padding: 2px 10px 0px 8px;
text-decoration: none;
}
.productPrice {
float: left;
padding: 0 0 5px 0;
}
.productPrice p {
font-size: 1.5em;
padding: 0 0 0 3px;
}
.whyYouShould {
clear: both;
margin: 3px 0 3px 0;
padding: 3px 0 3px 0;
background: #790000 url(../images/bgs/why-you-should.png) no-repeat 100% 0;
}
.whyYouShould p {
color: #FFF;
padding: 3px 0 3px 10px;
}
.sellPointContainer {
width: 55%;
float: left;
}
.sellPoint {
padding: 0 0 0 75px;
}
.sellPoint h3 {
margin: 20px 0 0 0;
}
.sellPoint p {
color: #666;
margin: 2px 0 5px 5px;
}
.icon1 {background: #FFF url(../images/icos/icos-laptop-hands.png) no-repeat 0 0; }
.icon2 {background: #FFF url(../images/icos/icos-woman-babies.png) no-repeat 0 0; }
.icon3 {background: #FFF url(../images/icos/icos-laidback-dude.png) no-repeat 0 0; }
.prodButtPrice {
padding: 10px 0 0 0;
}
.prodVid {
float: left;
padding: 20px 0 0 20px;
}
/* STAY INFORMED CSS */
#StayInformed { /* four boxes to present up to four highlighted products */
background: #d6dbe1;
clear: both;
float: left;
margin: 25px 0 15px 0;
padding: 0;
width: 99%;
}
#StayInformed h3 {
border: none;
clear: both;
color: #000;
float: left;
font-size: 1.0em;
margin: 3px 0 0 5px;
padding: 6px 20px 8px 5px;
}
#StayInformed h3 span {
color: #69737f;
display: block;
font-size: .75em;
}
#newsletterForm {
font-size: 1em;
margin: 0;
padding: 0;
}
#newsletterNameDiv, #newsletterEmailAddressDiv {
float: left;
padding: 20px 10px 3px 5px;
}
#newsletterForm label {
color: #69737f;
font-size: .75em;
}
#newsletterForm input {
font-size: .9em;
}
#newsletterSubmitDiv #newsletterSubmit {
background: none;
border: none;
color: #0e5fd8;
cursor: pointer;
font-size: .85em;
text-decoration: underline;
padding: 21px 0 0 18px;
background: url(../images/comparePage/arrows/arrow-secondary-bullet.png) no-repeat 17% 95%;
}
/*-- end Stay Informed --*/
/* #################### END complete_adv2011 CSS #################### */ | examples/prod-detail/css/complete_adv2011.css | .clear { clear:both; display:block; overflow:hidden; visibility:hidden; width:0px; height:0px;}
.left { float:left; }
.orange { color: #f36f31; }
.prodDetailHeader {
padding: 0 0 0 260px;
background: #FFF url(../images/bgs/couple-with-cell-phone.png) no-repeat 0 0;
}
.prodTitle {
margin: 10px 0 0 0;
}
.shareIt {
float: right;
margin: -20px 5px 0 0;
}
.shareIt p {
float: left;
color: #f36f31;
padding: 0 3px 0 0;
font-weight: bolder;
}
.shareIt a {
float: left;
padding: 0 3px;
}
.prodShortDesc p {
color: #666;
}
.buttPriceLink {
margin: 10px 0 0 0;
}
.Button { /* button*/
background: #fff url(../images/btns/btn-orange-middle.png) repeat-x 0 0;
/* background: #f26522 url(../images/comparePage/btns/btn-orange-middle.png) repeat-x 0 0; */
float: left;
margin: 0 10px;
padding: 0;
width: auto;
}
.ButtonCenter {
float: left;
margin: 8px 0 0 35px;
}
.ButtonLeft {
background: transparent url(../images/btns/btn-orange-left.png) no-repeat 0 0;
/* background: transparent url(../images/comparePage/btns/btn-orange-left.png) no-repeat 0 0; */
float: left;
padding: 0 0 0 15px;
}
.ButtonRight {
background: transparent url(../images/btns/btn-orange-right.png) no-repeat right top;
/* background: transparent url(../images/comparePage/btns/btn-orange-right.png) no-repeat right top; */
float: left;
padding-right: 15px;
}
.Button a:link, .Button a:visited, .Button a:hover {
color: #fff;
float: left;
font:bold 1.050em/2.020em Arial,Helvetica,sans-serif;
margin: 0;
padding: 2px 10px 0px 8px;
text-decoration: none;
}
.productPrice {
float: left;
padding: 0 0 5px 0;
}
.productPrice p {
font-size: 1.5em;
padding: 0 0 0 3px;
}
.whyYouShould {
clear: both;
margin: 3px 0 3px 0;
padding: 3px 0 3px 0;
background: #790000 url(../images/bgs/why-you-should.png) no-repeat 100% 0;
}
.whyYouShould p {
color: #FFF;
padding: 3px 0 3px 10px;
}
.sellPointContainer {
width: 55%;
float: left;
}
.sellPoint {
padding: 0 0 0 75px;
}
.sellPoint h3 {
margin: 20px 0 0 0;
}
.sellPoint p {
color: #666;
margin: 2px 0 5px 5px;
}
.icon1 {background: #FFF url(../images/icos/icos-laptop-hands.png) no-repeat 0 0; }
.icon2 {background: #FFF url(../images/icos/icos-woman-babies.png) no-repeat 0 0; }
.icon3 {background: #FFF url(../images/icos/icos-laidback-dude.png) no-repeat 0 0; }
.prodButtPrice {
padding: 10px 0 0 0;
}
.prodVid {
float: left;
padding: 20px 0 0 20px;
}
/* STAY INFORMED CSS */
#StayInformed { /* four boxes to present up to four highlighted products */
background: #d6dbe1;
clear: both;
float: left;
margin: 25px 0 15px 0;
padding: 0;
width: 99%;
}
#StayInformed h3 {
border: none;
clear: both;
color: #000;
float: left;
font-size: 1.0em;
margin: 3px 0 0 5px;
padding: 6px 20px 8px 5px;
}
#StayInformed h3 span {
color: #69737f;
display: block;
font-size: .75em;
}
#newsletterForm {
font-size: 1em;
margin: 0;
padding: 0;
}
#newsletterNameDiv, #newsletterEmailAddressDiv {
float: left;
padding: 20px 10px 3px 5px;
}
#newsletterForm label {
color: #69737f;
font-size: .75em;
}
#newsletterForm input {
font-size: .9em;
}
#newsletterSubmitDiv #newsletterSubmit {
background: none;
border: none;
color: #0e5fd8;
cursor: pointer;
font-size: .85em;
text-decoration: underline;
padding: 21px 0 0 18px;
background: url(../images/comparePage/arrows/arrow-secondary-bullet.png) no-repeat 17% 95%;
}
/*-- end Stay Informed --*/
/* #################### END complete_adv2011 CSS #################### */ | 0.156878 | 0.234796 |
/* -----------------------------------------
:: BETTER FULLSCREEN PORTFOLIO
----------------------------------------- */
.fsp-content-inner ul {
margin: 0;
padding: 0;
}
/* fullscreen-portfolio section */
#fullscreen-portfolio {
position: relative;
overflow: hidden;
width: 100%;
}
#fullscreen-portfolio:after {
content: '';
display: block;
clear: both;
height: 0;
}
.fsp-action {
float: left;
margin-top: 7px;
}
.fsp-action a {
display: inline-block;
margin: 0 2px 0 5px;
}
.fsp-action a:hover {
color: #fff;
}
.fsp-action a.active {
cursor: default;
color: #fff;
}
#fullscreen-portfolio .filters {
margin-bottom: 37px;
}
#fullscreen-portfolio .filters li {
display: inline-block;
padding: 1px;
}
#fullscreen-portfolio .filters li.active {
padding: 0;
background: url('../graphics/info-box-theme-bg.jpg') center center;
color: #ffffff;
border-radius:0px;
}
#fullscreen-portfolio .filters a {
display: block;
padding: 5px 30px;
color: rgba(240,170,98,1.0);
font-family: 'Open Sans', sans-serif;
text-decoration: none;
}
#fullscreen-portfolio .filters a:hover {
color: rgba(240,170,98,0.90);
}
#fullscreen-portfolio .filters .active a {
color: #ffffff;
cursor: default;
}
.fsp-wrapper {
position: relative;
}
.fsp-wrapper .fsp-container {
position: relative;
overflow: hidden;
z-index: 0;
opacity: 1;
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.fsp-hide {
opacity: 0 !important;
}
.fsp-content:after {
content: '';
display: block;
clear: both;
height: 0;
}
.fsp-content-inner {
position: relative;
text-align: center;
margin-bottom: 0;
}
.fsp-content-inner li {
position: relative;
overflow: hidden;
display: inline-block;
width: 31.27%;
vertical-align: top;
margin: 1%;
font-size: 14px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.fsp-content-inner li.current {
border: 5px solid #fff;
}
.fsp-content-inner li .fsp-image {
position: relative;
z-index: 0;
}
.fsp-content-inner li .fsp-image img {
width: 100%;
height: auto;
vertical-align: top;
-webkit-transition: all 0.6s ease-in-out;
-moz-transition: all 0.6s ease-in-out;
-o-transition: all 0.6s ease-in-out;
-ms-transition: all 0.6s ease-in-out;
transition: all 0.6s ease-in-out;
}
.fsp-content-inner li:hover .fsp-image img {
-webkit-transform: scale(2) rotate(10deg);
-moz-transform: scale(2) rotate(10deg);
-o-transform: scale(2) rotate(10deg);
-ms-transform: scale(2) rotate(10deg);
transform: scale(2) rotate(10deg);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
}
.fsp-content-inner li .fsp-cover {
position: absolute;
z-index: 1;
left: 10px;
top: 10px;
right: 10px;
bottom: 10px;
background: rgba(0,0,0,0.75);
filter: alpha(opacity=0);
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
opacity: 0;
}
.fsp-info {
height: 100%;
position: relative;
}
.fsp-fancy a.fancybox i {
color: rgba(255,255,255,0.75);
font-size: 40px;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.fsp-fancy a.fancybox i:hover {
color: rgba(255,255,255,0.9);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.fsp-info:hover .fsp-fancy a.fancybox i {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
:root .fsp-content-inner li .fsp-cover {
filter: 'none';
}
.fsp-content-inner li .fsp-cover:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.fsp-content-inner li .fsp-cover a {
display: block;
padding: 20px auto;
text-decoration: none;
color: rgba(255,255,255,0.75);
padding: 10px auto;
}
.fsp-content-inner li .fsp-cover span {
display: block;
}
.fsp-content-inner li .fsp-cover .project_icon {
padding: 5% 0;
color: #fff;
font-size: 42px;
}
.fsp-content-inner li .fsp-cover .project_title {
margin-bottom: 5px;
font-size: 24px;
line-height: normal;
font-weight: bold;
}
.fsp-content-inner li .fsp-cover .project_text {
color: #fff;
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope, .isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* width margins and spacing*/
@media screen and (min-width: 1600px) {
.fsp-content-inner li {
width: 23.5%;
margin:.5%;
}
}
/* fullscreen, no spacing*/
}
#fullscreen-portfolio.section.anchor div.fsp-wrapper div.fsp-container div.fsp-content div.projects.fsp-content-inner ul.isotope {
padding: 0;
margin: 0;
} | public/Frontend/frontend/template/css/portfolio-home-packages.css | /* -----------------------------------------
:: BETTER FULLSCREEN PORTFOLIO
----------------------------------------- */
.fsp-content-inner ul {
margin: 0;
padding: 0;
}
/* fullscreen-portfolio section */
#fullscreen-portfolio {
position: relative;
overflow: hidden;
width: 100%;
}
#fullscreen-portfolio:after {
content: '';
display: block;
clear: both;
height: 0;
}
.fsp-action {
float: left;
margin-top: 7px;
}
.fsp-action a {
display: inline-block;
margin: 0 2px 0 5px;
}
.fsp-action a:hover {
color: #fff;
}
.fsp-action a.active {
cursor: default;
color: #fff;
}
#fullscreen-portfolio .filters {
margin-bottom: 37px;
}
#fullscreen-portfolio .filters li {
display: inline-block;
padding: 1px;
}
#fullscreen-portfolio .filters li.active {
padding: 0;
background: url('../graphics/info-box-theme-bg.jpg') center center;
color: #ffffff;
border-radius:0px;
}
#fullscreen-portfolio .filters a {
display: block;
padding: 5px 30px;
color: rgba(240,170,98,1.0);
font-family: 'Open Sans', sans-serif;
text-decoration: none;
}
#fullscreen-portfolio .filters a:hover {
color: rgba(240,170,98,0.90);
}
#fullscreen-portfolio .filters .active a {
color: #ffffff;
cursor: default;
}
.fsp-wrapper {
position: relative;
}
.fsp-wrapper .fsp-container {
position: relative;
overflow: hidden;
z-index: 0;
opacity: 1;
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.fsp-hide {
opacity: 0 !important;
}
.fsp-content:after {
content: '';
display: block;
clear: both;
height: 0;
}
.fsp-content-inner {
position: relative;
text-align: center;
margin-bottom: 0;
}
.fsp-content-inner li {
position: relative;
overflow: hidden;
display: inline-block;
width: 31.27%;
vertical-align: top;
margin: 1%;
font-size: 14px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.fsp-content-inner li.current {
border: 5px solid #fff;
}
.fsp-content-inner li .fsp-image {
position: relative;
z-index: 0;
}
.fsp-content-inner li .fsp-image img {
width: 100%;
height: auto;
vertical-align: top;
-webkit-transition: all 0.6s ease-in-out;
-moz-transition: all 0.6s ease-in-out;
-o-transition: all 0.6s ease-in-out;
-ms-transition: all 0.6s ease-in-out;
transition: all 0.6s ease-in-out;
}
.fsp-content-inner li:hover .fsp-image img {
-webkit-transform: scale(2) rotate(10deg);
-moz-transform: scale(2) rotate(10deg);
-o-transform: scale(2) rotate(10deg);
-ms-transform: scale(2) rotate(10deg);
transform: scale(2) rotate(10deg);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
}
.fsp-content-inner li .fsp-cover {
position: absolute;
z-index: 1;
left: 10px;
top: 10px;
right: 10px;
bottom: 10px;
background: rgba(0,0,0,0.75);
filter: alpha(opacity=0);
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
opacity: 0;
}
.fsp-info {
height: 100%;
position: relative;
}
.fsp-fancy a.fancybox i {
color: rgba(255,255,255,0.75);
font-size: 40px;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.fsp-fancy a.fancybox i:hover {
color: rgba(255,255,255,0.9);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.fsp-info:hover .fsp-fancy a.fancybox i {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
:root .fsp-content-inner li .fsp-cover {
filter: 'none';
}
.fsp-content-inner li .fsp-cover:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.fsp-content-inner li .fsp-cover a {
display: block;
padding: 20px auto;
text-decoration: none;
color: rgba(255,255,255,0.75);
padding: 10px auto;
}
.fsp-content-inner li .fsp-cover span {
display: block;
}
.fsp-content-inner li .fsp-cover .project_icon {
padding: 5% 0;
color: #fff;
font-size: 42px;
}
.fsp-content-inner li .fsp-cover .project_title {
margin-bottom: 5px;
font-size: 24px;
line-height: normal;
font-weight: bold;
}
.fsp-content-inner li .fsp-cover .project_text {
color: #fff;
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope, .isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* width margins and spacing*/
@media screen and (min-width: 1600px) {
.fsp-content-inner li {
width: 23.5%;
margin:.5%;
}
}
/* fullscreen, no spacing*/
}
#fullscreen-portfolio.section.anchor div.fsp-wrapper div.fsp-container div.fsp-content div.projects.fsp-content-inner ul.isotope {
padding: 0;
margin: 0;
} | 0.286568 | 0.069763 |
.text-overflow {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
:global(.scrollbar)::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
:global(.scrollbar)::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
:global(.scrollbar)::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
html,
body,
#root {
height: 100%;
}
body {
margin: 0;
}
body::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
body::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
body::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
.hideScrollbar::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
.hideScrollbar::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
.hideScrollbar::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
.progressbar {
/*火狐下隐藏滚动条*/
scrollbar-width: none;
}
.progressbar::-webkit-scrollbar {
/*滚动条整体样式*/
width: 4px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 4px;
}
.progressbar::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset -1px 0 5px rgba(0, 33, 64, 0.7);
background-color: rgba(240, 242, 245, 0.9);
}
.progressbar::-webkit-scrollbar-track {
/*滚动条里面轨道*/
} | src/global.css | .text-overflow {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
:global(.scrollbar)::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
:global(.scrollbar)::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
:global(.scrollbar)::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
:global(.ant-select-dropdown>div>ul)::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
html,
body,
#root {
height: 100%;
}
body {
margin: 0;
}
body::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
body::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
body::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
.hideScrollbar::-webkit-scrollbar {
/*滚动条整体样式*/
width: 8px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
}
.hideScrollbar::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
background-color: rgba(152, 152, 152, 0.5);
}
.hideScrollbar::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #EDEDED;
}
.progressbar {
/*火狐下隐藏滚动条*/
scrollbar-width: none;
}
.progressbar::-webkit-scrollbar {
/*滚动条整体样式*/
width: 4px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 4px;
}
.progressbar::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
-webkit-box-shadow: inset -1px 0 5px rgba(0, 33, 64, 0.7);
background-color: rgba(240, 242, 245, 0.9);
}
.progressbar::-webkit-scrollbar-track {
/*滚动条里面轨道*/
} | 0.244814 | 0.054349 |
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
font-family: 'Source Sans Pro', Helvetica, sans-serif;
text-transform: none;
text-shadow: none; }
.reveal h1 {
font-size: 2.2em;
border-bottom: 1px solid #8b743d;
margin-bottom: 1em; }
.reveal h1.small-header {
font-size: 1.4em;
text-align: left; }
.reveal h2 {
font-size: 1.4em; }
.reveal p.small {
font-size: 0.9em; }
.reveal .spaced-out {
margin-top: 1em; }
.reveal .center {
text-align: center; }
.reveal .in-place-fragments {
position: relative;
height: 2em; }
.reveal .in-place-fragments .fragment {
position: absolute;
width: 100%; }
.reveal .references {
list-style: none;
font-size: 0.9em; }
.reveal .references li {
margin-bottom: 0.5em; }
.reveal .bits {
position: relative;
display: inline-block;
text-align: left;
margin-top: 0.5em; }
.reveal .bits.bits-pointer {
margin-right: 2.1em; }
.reveal .bits .pointer {
position: absolute;
right: -1.2em;
top: -0.2em;
font-size: 1.5em; }
.reveal .bits .bit {
display: inline-block;
font-size: 1.1em;
margin-left: -0.3em;
padding: 0 0.4em;
border: 1px solid black;
border-left: none; }
.reveal .bits .bit:first-child {
border-left: 1px solid black; }
.reveal .bits .caption {
font-size: 0.9em;
padding-left: 0.2em;
text-align: left; }
.reveal .bits .caption.center {
padding-left: 0;
text-align: center; }
.reveal .bits .caption.hex {
margin-left: -0.3em; }
.reveal .bits.bits-small .bit {
font-size: 0.9em;
padding: 0 0.3em; }
.reveal .consecutive-bits .bits {
display: inline-block;
margin-left: -0.3em;
padding-left: 0.3em;
padding-top: 0.6em;
padding-bottom: 0.3em;
margin-top: -0.3em;
border-left: 1px dashed black; }
.reveal .consecutive-bits .bits:first-child {
padding-left: 0;
margin-left: 0;
border-left: none; }
.reveal .consecutive-bits .bits:first-child .bit:first-child {
border-left: 1px solid black; }
.reveal .consecutive-bits .bits .bit:first-child {
border-left: none; }
.reveal .registers {
display: inline-block;
margin: 1em 2.5em; }
.reveal .registers .register {
font-family: monospace; }
.reveal .highlight-registers:before {
content: '';
display: block;
position: absolute;
top: 25%;
left: 28%;
height: 49%;
width: 25%;
background: rgba(255, 0, 255, 0.12);
border: 1px solid white;
z-index: -1; }
.reveal .highlight-code {
background: rgba(255, 0, 255, 0.12);
padding: 0 0.4em; }
.reveal .highlight-bits:before, .reveal .highlight-bits:after {
content: '';
display: block;
position: absolute;
z-index: -1; }
.reveal .highlight-bits.opcode:before {
top: -32%;
left: 1%;
height: 31.3%;
width: 4%;
background: rgba(255, 0, 255, 0.3); }
.reveal .highlight-bits.opcode:after {
top: -32%;
left: 25.3%;
height: 31.3%;
width: 8%;
background: rgba(255, 0, 255, 0.3); }
.reveal .highlight-bits.register:before {
top: -49%;
left: 33.3%;
height: 47.3%;
width: 8%;
background: rgba(0, 255, 0, 0.3); }
.reveal .highlight-bits.register:after {
top: -49%;
left: 53.6%;
height: 47.3%;
width: 12%;
background: rgba(0, 255, 0, 0.3); }
.reveal .highlight-bits.constant:before {
top: -49%;
left: 65.6%;
height: 47.3%;
width: 32.4%;
background: rgba(0, 0, 255, 0.2); }
.reveal .arguments {
list-style: none; }
.reveal .arguments .argument code {
display: block; }
.reveal .arguments .argument .description {
font-size: 0.9em;
padding-left: 2em;
margin-top: 0;
margin-bottom: 0; }
.reveal .instruction {
text-align: left;
font-size: 0.8em;
padding: 0.2em 0.5em;
overflow: auto; }
.reveal .instruction:nth-child(2n+1) {
background: rgba(0, 0, 0, 0.1); }
.reveal .instruction p {
display: inline-block;
float: right;
width: 50%;
margin: 0; }
.reveal .instruction code {
display: inline-block;
float: left;
width: 50%; } | css/theme/custom.css | .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
font-family: 'Source Sans Pro', Helvetica, sans-serif;
text-transform: none;
text-shadow: none; }
.reveal h1 {
font-size: 2.2em;
border-bottom: 1px solid #8b743d;
margin-bottom: 1em; }
.reveal h1.small-header {
font-size: 1.4em;
text-align: left; }
.reveal h2 {
font-size: 1.4em; }
.reveal p.small {
font-size: 0.9em; }
.reveal .spaced-out {
margin-top: 1em; }
.reveal .center {
text-align: center; }
.reveal .in-place-fragments {
position: relative;
height: 2em; }
.reveal .in-place-fragments .fragment {
position: absolute;
width: 100%; }
.reveal .references {
list-style: none;
font-size: 0.9em; }
.reveal .references li {
margin-bottom: 0.5em; }
.reveal .bits {
position: relative;
display: inline-block;
text-align: left;
margin-top: 0.5em; }
.reveal .bits.bits-pointer {
margin-right: 2.1em; }
.reveal .bits .pointer {
position: absolute;
right: -1.2em;
top: -0.2em;
font-size: 1.5em; }
.reveal .bits .bit {
display: inline-block;
font-size: 1.1em;
margin-left: -0.3em;
padding: 0 0.4em;
border: 1px solid black;
border-left: none; }
.reveal .bits .bit:first-child {
border-left: 1px solid black; }
.reveal .bits .caption {
font-size: 0.9em;
padding-left: 0.2em;
text-align: left; }
.reveal .bits .caption.center {
padding-left: 0;
text-align: center; }
.reveal .bits .caption.hex {
margin-left: -0.3em; }
.reveal .bits.bits-small .bit {
font-size: 0.9em;
padding: 0 0.3em; }
.reveal .consecutive-bits .bits {
display: inline-block;
margin-left: -0.3em;
padding-left: 0.3em;
padding-top: 0.6em;
padding-bottom: 0.3em;
margin-top: -0.3em;
border-left: 1px dashed black; }
.reveal .consecutive-bits .bits:first-child {
padding-left: 0;
margin-left: 0;
border-left: none; }
.reveal .consecutive-bits .bits:first-child .bit:first-child {
border-left: 1px solid black; }
.reveal .consecutive-bits .bits .bit:first-child {
border-left: none; }
.reveal .registers {
display: inline-block;
margin: 1em 2.5em; }
.reveal .registers .register {
font-family: monospace; }
.reveal .highlight-registers:before {
content: '';
display: block;
position: absolute;
top: 25%;
left: 28%;
height: 49%;
width: 25%;
background: rgba(255, 0, 255, 0.12);
border: 1px solid white;
z-index: -1; }
.reveal .highlight-code {
background: rgba(255, 0, 255, 0.12);
padding: 0 0.4em; }
.reveal .highlight-bits:before, .reveal .highlight-bits:after {
content: '';
display: block;
position: absolute;
z-index: -1; }
.reveal .highlight-bits.opcode:before {
top: -32%;
left: 1%;
height: 31.3%;
width: 4%;
background: rgba(255, 0, 255, 0.3); }
.reveal .highlight-bits.opcode:after {
top: -32%;
left: 25.3%;
height: 31.3%;
width: 8%;
background: rgba(255, 0, 255, 0.3); }
.reveal .highlight-bits.register:before {
top: -49%;
left: 33.3%;
height: 47.3%;
width: 8%;
background: rgba(0, 255, 0, 0.3); }
.reveal .highlight-bits.register:after {
top: -49%;
left: 53.6%;
height: 47.3%;
width: 12%;
background: rgba(0, 255, 0, 0.3); }
.reveal .highlight-bits.constant:before {
top: -49%;
left: 65.6%;
height: 47.3%;
width: 32.4%;
background: rgba(0, 0, 255, 0.2); }
.reveal .arguments {
list-style: none; }
.reveal .arguments .argument code {
display: block; }
.reveal .arguments .argument .description {
font-size: 0.9em;
padding-left: 2em;
margin-top: 0;
margin-bottom: 0; }
.reveal .instruction {
text-align: left;
font-size: 0.8em;
padding: 0.2em 0.5em;
overflow: auto; }
.reveal .instruction:nth-child(2n+1) {
background: rgba(0, 0, 0, 0.1); }
.reveal .instruction p {
display: inline-block;
float: right;
width: 50%;
margin: 0; }
.reveal .instruction code {
display: inline-block;
float: left;
width: 50%; } | 0.644001 | 0.081046 |
:root {
--gray0: rgb(230, 230, 230);
--gray1: rgb(170, 170, 170);
--gray2: rgb(110, 110, 110);
--gray3: rgb(50, 50, 50);
}
/* set background color */
.title,
.author,
.name-promo,
.title-promo,
.dir-content,
.panel,
.name-guide,
.dir-guide,
footer {
background-color: var(--gray3);
}
.info,
.promo-img,
.avt,
.info-guide,
.content-guide {
background-color: var(--gray2);
}
/* set with height margin and padding... */
.body-article,
.content-promo,
.more-promo,
.see-all,
.guide,
.about-person {
background-color: var(--gray1);
}
/* */
/* .promo {
background-color: var(--gray0);
} */
* {
color: white;
font-weight: 300;
font-family: 'Roboto Slab', serif;
font-family: 'Signika', sans-serif;
margin: 0;
padding: 0;
border: thin dotted rgb(237, 237, 237);
}
p {
font-family: 'Roboto Slab', serif;
}
h1,
h3,
h4,
h5 {
font-family: 'Signika', sans-serif;
}
.see-all {
width: 300px;
height: 1em;
margin: 40px auto;
}
/* */
body {
box-sizing: border-box;
width: 100%;
}
body > header {
margin-bottom: 50px;
}
header nav {
box-sizing: border-box;
background-color: var(--gray3);
width: 100%;
height: 100px;
display: flex;
flex-flow: row nowrap;
justify-content: space-evenly;
align-items: center;
list-style: none;
padding: auto 200px;
}
.logo-smashing {
width: 60px;
height: 60px;
border-radius: 5px;
border: 1px solid black;
background-color: var(--gray0);
}
nav li {
width: 100px;
height: 40px;
background-color: var(--gray2);
border-radius: 5px;
}
nav li:last-child {
width: 350px;
height: 60px;
}
nav li:last-child input {
box-sizing: border-box;
width: 350px;
height: 60px;
padding-left: 30px;
}
/* lastest articles */
.lastest-articles {
display: flex;
flex-flow: row nowrap;
width: 100%;
height: auto;
}
.top-three-articles {
width: 60%;
height: auto;
border: 1px dotted gray;
}
.first-article {
box-sizing: border-box;
width: 100%;
height: auto;
padding: 20px;
}
.first-article > .header {
display: flex;
flex-flow: row nowrap;
margin-right: 50px;
}
.header > div:last-child {
margin-left: 30px;
}
.header > div:last-child > div {
margin-bottom: 10px;
}
.avt {
box-sizing: border-box;
height: 150px;
width: 150px;
background-color: var(--gray3);
border: 10px solid black;
border-radius: 20px;
overflow: hidden;
margin-right: 20px;
transform: rotate(-20deg);
margin-right: 40px;
}
.header > .avt {
position: relative;
left: 20px;
top: 20px;
}
.first-article .author {
width: 50px;
height: 1em;
}
.first-article .title {
width: 500px;
height: 8em;
}
.first-article .info {
width: 300px;
height: 1em;
}
.first-article .body-article {
width: 100%;
height: 200px;
margin-top: 50px;
}
.s-t-article {
margin-top: 40px;
display: flex;
flex-flow: row nowrap;
}
.s-t-article .avt {
width: 100px;
height: 100px;
position: relative;
top: 10px;
left: 20px;
}
.s-t-article .author {
display: inline-block;
min-width: 100px;
height: 1em;
}
.s-t-article .info {
display: inline-block;
width: 200px;
height: 1em;
}
.s-t-article .title {
width: 600px;
height: 6em;
}
.promo {
width: 40%;
height: auto;
}
.promo-img {
width: 250px;
height: 250px;
border-radius: 50%;
margin: 30px auto;
}
.promo > div:last-child {
background-color: var(--gray0);
width: 100%;
min-height: 500px;
position: relative;
top: -150px;
z-index: -1;
padding-top: 150px;
padding-bottom: 10px;
display: flex;
flex-flow: column;
align-items: center;
justify-content: space-around;
}
.name-promo {
width: 300px;
height: 3em;
}
.title-promo {
width: 300px;
height: 6em;
margin: auto;
}
.content-promo {
margin: auto;
width: 400px;
height: 10em;
margin-top: 30px;
}
.dir-content {
width: 300px;
height: 3em;
border-radius: 20px;
}
.more-promo {
width: 350px;
height: 1em;
}
/* lastest articles */
.more-articles {
width: 100%;
min-height: 500px;
display: flex;
flex-flow: row wrap;
}
.more-articles > .article {
width: 400px;
min-height: 500px;
box-sizing: border-box;
padding: 10px 20px;
margin: auto;
}
.more-articles .info {
min-width: 100px;
height: 1em;
margin-bottom: 10px;
}
.more-articles .title {
width: 300px;
min-height: 3em;
margin-bottom: 30px;
}
.more-articles .body-article {
width: 100%;
min-height: 300px;
}
/* panel 1 */
.panel {
box-sizing: border-box;
width: 100%;
min-height: 300px;
padding: 30px 60px;
}
.panel-1 {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
}
.panel .title {
width: 500px;
height: 3em;
background-color: var(--gray0);
margin-bottom: 20px;
}
.panel .content {
width: 720px;
height: 7em;
background-color: var(--gray0);
margin-bottom: 20px;
}
.panel .jump-content {
width: 400px;
height: 3em;
background-color: var(--gray0);
border-radius: 10px;
margin-bottom: 20px;
}
.list-guides {
width: 90%;
min-height: 500px;
margin: 50px auto;
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
.guide {
box-sizing: border-box;
width: 500px;
min-height: 500px;
margin: auto;
padding: 50px;
}
.guide .info-guide {
width: 200px;
height: 2em;
margin-bottom: 20px;
}
.guide .name-guide {
width: 90%;
height: 4em;
}
.guide .content-guide {
width: 100%;
height: 15em;
margin-top: 30px;
}
.guide .dir-guide {
width: 200px;
height: 4em;
border-radius: 10px;
margin-top: 20px;
}
/* person of week */
.person-of-week {
width: 100%;
min-height: 500px;
margin: 50px auto;
}
.person-of-week .top-one {
display: flex;
flex-flow: row nowrap;
/* width: 100%; */
padding: 20px 50px;
}
.top-one .body-info {
box-sizing: border-box;
padding: auto 50px;
width: 80%;
}
.body-info .title {
background-color: var(--gray1);
min-width: 200px;
min-height: 2em;
margin-bottom: 20px;
}
.body-info .about-person {
min-width: 90%;
min-height: 10em;
background-color: var(--gray1);
}
.another-persons {
margin: 20px auto;
box-sizing: border-box;
width: 100%;
display: flex;
flex-flow: row nowrap;
padding: 10px 50px;
}
.another-persons .person {
width: 45%;
margin: auto;
min-height: 200px;
display: flex;
flex-flow: row nowrap;
}
.person > .avt {
width: 100px;
height: 100px;
}
.person > div:last-child {
width: 80%;
padding-left: 20px;
}
.person .author {
min-width: 50px;
height: 1em;
margin-bottom: 10px;
background-color: var(--gray1);
}
.person .title {
min-width: 300px;
min-height: 2em;
margin-bottom: 20px;
}
.person .about-person {
width: 100%;
height: 6em;
}
/* footer */
footer {
width: 100%;
min-height: 200px;
display: flex;
flex-flow: column;
justify-content: space-between;
}
footer .title {
width: 600px;
height: 1em;
margin: auto;
background-color: var(--gray1);
}
footer .list-topic {
width: 80%;
height: 6em;
margin: auto;
background-color: var(--gray1);
}
/* css text */
.first-article .title {
color: white;
font-size: 1.8em;
}
.more-articles .title {
font-size: 12px;
color: white;
} | html-css/smashing-layout/style.css | :root {
--gray0: rgb(230, 230, 230);
--gray1: rgb(170, 170, 170);
--gray2: rgb(110, 110, 110);
--gray3: rgb(50, 50, 50);
}
/* set background color */
.title,
.author,
.name-promo,
.title-promo,
.dir-content,
.panel,
.name-guide,
.dir-guide,
footer {
background-color: var(--gray3);
}
.info,
.promo-img,
.avt,
.info-guide,
.content-guide {
background-color: var(--gray2);
}
/* set with height margin and padding... */
.body-article,
.content-promo,
.more-promo,
.see-all,
.guide,
.about-person {
background-color: var(--gray1);
}
/* */
/* .promo {
background-color: var(--gray0);
} */
* {
color: white;
font-weight: 300;
font-family: 'Roboto Slab', serif;
font-family: 'Signika', sans-serif;
margin: 0;
padding: 0;
border: thin dotted rgb(237, 237, 237);
}
p {
font-family: 'Roboto Slab', serif;
}
h1,
h3,
h4,
h5 {
font-family: 'Signika', sans-serif;
}
.see-all {
width: 300px;
height: 1em;
margin: 40px auto;
}
/* */
body {
box-sizing: border-box;
width: 100%;
}
body > header {
margin-bottom: 50px;
}
header nav {
box-sizing: border-box;
background-color: var(--gray3);
width: 100%;
height: 100px;
display: flex;
flex-flow: row nowrap;
justify-content: space-evenly;
align-items: center;
list-style: none;
padding: auto 200px;
}
.logo-smashing {
width: 60px;
height: 60px;
border-radius: 5px;
border: 1px solid black;
background-color: var(--gray0);
}
nav li {
width: 100px;
height: 40px;
background-color: var(--gray2);
border-radius: 5px;
}
nav li:last-child {
width: 350px;
height: 60px;
}
nav li:last-child input {
box-sizing: border-box;
width: 350px;
height: 60px;
padding-left: 30px;
}
/* lastest articles */
.lastest-articles {
display: flex;
flex-flow: row nowrap;
width: 100%;
height: auto;
}
.top-three-articles {
width: 60%;
height: auto;
border: 1px dotted gray;
}
.first-article {
box-sizing: border-box;
width: 100%;
height: auto;
padding: 20px;
}
.first-article > .header {
display: flex;
flex-flow: row nowrap;
margin-right: 50px;
}
.header > div:last-child {
margin-left: 30px;
}
.header > div:last-child > div {
margin-bottom: 10px;
}
.avt {
box-sizing: border-box;
height: 150px;
width: 150px;
background-color: var(--gray3);
border: 10px solid black;
border-radius: 20px;
overflow: hidden;
margin-right: 20px;
transform: rotate(-20deg);
margin-right: 40px;
}
.header > .avt {
position: relative;
left: 20px;
top: 20px;
}
.first-article .author {
width: 50px;
height: 1em;
}
.first-article .title {
width: 500px;
height: 8em;
}
.first-article .info {
width: 300px;
height: 1em;
}
.first-article .body-article {
width: 100%;
height: 200px;
margin-top: 50px;
}
.s-t-article {
margin-top: 40px;
display: flex;
flex-flow: row nowrap;
}
.s-t-article .avt {
width: 100px;
height: 100px;
position: relative;
top: 10px;
left: 20px;
}
.s-t-article .author {
display: inline-block;
min-width: 100px;
height: 1em;
}
.s-t-article .info {
display: inline-block;
width: 200px;
height: 1em;
}
.s-t-article .title {
width: 600px;
height: 6em;
}
.promo {
width: 40%;
height: auto;
}
.promo-img {
width: 250px;
height: 250px;
border-radius: 50%;
margin: 30px auto;
}
.promo > div:last-child {
background-color: var(--gray0);
width: 100%;
min-height: 500px;
position: relative;
top: -150px;
z-index: -1;
padding-top: 150px;
padding-bottom: 10px;
display: flex;
flex-flow: column;
align-items: center;
justify-content: space-around;
}
.name-promo {
width: 300px;
height: 3em;
}
.title-promo {
width: 300px;
height: 6em;
margin: auto;
}
.content-promo {
margin: auto;
width: 400px;
height: 10em;
margin-top: 30px;
}
.dir-content {
width: 300px;
height: 3em;
border-radius: 20px;
}
.more-promo {
width: 350px;
height: 1em;
}
/* lastest articles */
.more-articles {
width: 100%;
min-height: 500px;
display: flex;
flex-flow: row wrap;
}
.more-articles > .article {
width: 400px;
min-height: 500px;
box-sizing: border-box;
padding: 10px 20px;
margin: auto;
}
.more-articles .info {
min-width: 100px;
height: 1em;
margin-bottom: 10px;
}
.more-articles .title {
width: 300px;
min-height: 3em;
margin-bottom: 30px;
}
.more-articles .body-article {
width: 100%;
min-height: 300px;
}
/* panel 1 */
.panel {
box-sizing: border-box;
width: 100%;
min-height: 300px;
padding: 30px 60px;
}
.panel-1 {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
}
.panel .title {
width: 500px;
height: 3em;
background-color: var(--gray0);
margin-bottom: 20px;
}
.panel .content {
width: 720px;
height: 7em;
background-color: var(--gray0);
margin-bottom: 20px;
}
.panel .jump-content {
width: 400px;
height: 3em;
background-color: var(--gray0);
border-radius: 10px;
margin-bottom: 20px;
}
.list-guides {
width: 90%;
min-height: 500px;
margin: 50px auto;
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
.guide {
box-sizing: border-box;
width: 500px;
min-height: 500px;
margin: auto;
padding: 50px;
}
.guide .info-guide {
width: 200px;
height: 2em;
margin-bottom: 20px;
}
.guide .name-guide {
width: 90%;
height: 4em;
}
.guide .content-guide {
width: 100%;
height: 15em;
margin-top: 30px;
}
.guide .dir-guide {
width: 200px;
height: 4em;
border-radius: 10px;
margin-top: 20px;
}
/* person of week */
.person-of-week {
width: 100%;
min-height: 500px;
margin: 50px auto;
}
.person-of-week .top-one {
display: flex;
flex-flow: row nowrap;
/* width: 100%; */
padding: 20px 50px;
}
.top-one .body-info {
box-sizing: border-box;
padding: auto 50px;
width: 80%;
}
.body-info .title {
background-color: var(--gray1);
min-width: 200px;
min-height: 2em;
margin-bottom: 20px;
}
.body-info .about-person {
min-width: 90%;
min-height: 10em;
background-color: var(--gray1);
}
.another-persons {
margin: 20px auto;
box-sizing: border-box;
width: 100%;
display: flex;
flex-flow: row nowrap;
padding: 10px 50px;
}
.another-persons .person {
width: 45%;
margin: auto;
min-height: 200px;
display: flex;
flex-flow: row nowrap;
}
.person > .avt {
width: 100px;
height: 100px;
}
.person > div:last-child {
width: 80%;
padding-left: 20px;
}
.person .author {
min-width: 50px;
height: 1em;
margin-bottom: 10px;
background-color: var(--gray1);
}
.person .title {
min-width: 300px;
min-height: 2em;
margin-bottom: 20px;
}
.person .about-person {
width: 100%;
height: 6em;
}
/* footer */
footer {
width: 100%;
min-height: 200px;
display: flex;
flex-flow: column;
justify-content: space-between;
}
footer .title {
width: 600px;
height: 1em;
margin: auto;
background-color: var(--gray1);
}
footer .list-topic {
width: 80%;
height: 6em;
margin: auto;
background-color: var(--gray1);
}
/* css text */
.first-article .title {
color: white;
font-size: 1.8em;
}
.more-articles .title {
font-size: 12px;
color: white;
} | 0.423458 | 0.13288 |
*{outline:none;-webkit-tap-highlight-color:rgba(255,0,0,0);vertical-align:baseline;font-style:normal;margin:0;padding:0;}
body{margin:0;padding:0;font-size:14px;font-family:'Helvetica Neue',Roboto,'microsoft yahei';color:#404040;background-color:#f2f2f2;}
img{border:0}
a,a:visited{color:#53585a;text-decoration:none;}
.blank{width:100%;height:15px;}
.balanceMain{width:100%;background-color:#FFF;display:table;}
.balanceMain .balanceBanner{width:92%;margin:0 auto;height:40px;line-height:40px;}
.balanceMain .balanceBanner .detail{position:relative;float:right;width:36%;text-align:right;font-size:14px;padding-right:4%;color:#888;}
.balanceMain .balanceBanner .detail .arrow{position:absolute;right:0;top:13px;width:10px;color:#CFCFCF;height:14px;font-size:14px;line-height:14px;}
.balanceMain .balance{width:92%;margin:0 auto;height:50px;line-height:50px;text-align:center;color:#910012;font-size:40px;font-weight:bold;}
.balanceMain .balanceFrozen{width:92%;margin:0 auto;height:30px;line-height:30px;text-align:center;color:#576b95;margin-bottom:10px;font-size:16px;}
.balanceMain .balanceStaticsBanner{width:100%;height:60px;}
.balanceMain .balanceStaticsBanner .balanceStatics{float:left;width:33%;height:40px;text-align:center;margin:10px 0;}
.balanceMain .balanceStaticsBanner .balanceStatics span{display:block;width:100%;height:20px;line-height:20px;}
.balanceMain .balanceStaticsBanner .balanceStatics span.title{font-size:14px;}
.balanceMain .balanceStaticsBanner .balanceStatics span.money{color:#910012;font-size:18px;font-weight:bold;}
.balanceMenu{width:100%;margin-top:10px;background-color:#FFF;display:table;}
.balanceMenu .menuItem{width:95%;margin-left:5%;height:46px;position:relative;}
.balanceMenu .menuItem .menuItemIcon{float:left;width:43px;height:46px;color:#00B7EE;font-size:17px;margin-left:-3px;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;}
.balanceMenu .menuItem .menuItemText{margin-left:40px;height:46px;line-height:46px;font-size:16px;}
.balanceMenu .menuItem .coinNum,.balanceMenu .menuItem .bailMoney,.balanceMenu .menuItem .couponNum{height:46px;line-height:46px;color:#888;float:right;margin-right:10%;font-size:14px;}
.balanceMenu .menuItem .arrow{position:absolute;top:0;right:0;color:#CFCFCF;width:12px;font-size:14px;margin-right:4%;line-height:46px;}
.border.horizonBottom:after{left:0;bottom:0;}
.border.horizonTop:after,.border.horizonBottom:after{width:100%;height:1px;transform:scaleY(0.5);-webkit-transform:scaleY(0.5);}
.border:after{position:absolute;content:'';background-color:#D9D9D9;}
.supportBanner{width:100%;text-align:center;height:49px;line-height:49px;font-size:12px;border-top:1px solid #eaeae8;background-color:#F8F8F8;margin-top:10px;color:#888;visibility:hidden;}
.supportBanner a{color:#F2B896}
.weui_switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:52px;height:32px;border:1px solid #dfdfdf;outline:0;border-radius:16px;box-sizing:border-box;background:#dfdfdf;}
.weui_switch:checked{border-color:#ed414a;background-color:#ed414a;}
.weui_switch:after,.weui_switch:before{content:" ";position:absolute;top:0;left:0;height:30px;border-radius:15px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;}
.weui_switch:before{width:50px;background-color:#fdfdfd;box-sizing:border-box;}
.weui_switch:after{width:30px;background-color:#fff;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.4);}
.weui_switch:checked:before{-webkit-transform:scale(0);transform:scale(0);}
.weui_switch:checked:after{-webkit-transform:translateX(20px);transform:translateX(20px);}
.recordMain{width:100%;background-color:#FFF;display:table;}
.recordMain.noData{background-color:none;text-align:center;padding-top:40px;font-size:14px;display:none;}
.recordMain.noData img{width:80px;height:80px;margin-bottom:13px;}
.recordMain .balanceItem{position:relative;height:40px;border-bottom:1px solid #e7e7e7;position:relative;padding:12px 0;}
.recordMain .balanceItem .type,.recordMain .balanceItem .time{width:90%;height:25px;margin-left:18px;float:left;line-height:25px;}
.recordMain .balanceItem .type{font-size:14px;color:#000;}
.recordMain .balanceItem .time{height:15px;line-height:15px;color:#7e7e7e;margin-top:5px;}
.recordMain .balanceItem .amount{position:absolute;width:28%;line-height:40px;text-align:right;right:8px;font-size:20px;color: #fb0000;}
.recordMain .balanceItem .amount span{padding-right:5px;}
.recordMain .balanceItem .amount.positive{color:#06BC07;}
.recordMain .balanceItem .amount.negtive{color:#F19333;}
.recordMain .balanceItem .amount.withdrawWait{color:#7e7e7e;}
.recordMain .balanceItem .status{position:absolute;bottom:5px;right:18px;font-size:12px;color:#7e7e7e;}
.totalAmount{height:60px;width:100%;line-height:60px;text-align:right;font-size:14px;position:fixed;bottom:0;border-top:1px solid #cfd1d4;color:#5e5e5e;background-color:#efeff4;}
.totalAmount .menu{float:left;margin-left:18px;position:relative;}
.totalAmount .menu .menuBtn{background-image:url(balanceMenu.png);background-repeat:no-repeat;background-position:left center;background-size:16px;padding-left:18px;text-align:left;}
.totalAmount .menu .menuList{position:relative;bottom:277px;background-color:#FFF;border:1px solid #cfd1d4;display:none;border-radius:2px;}
.totalAmount .menu .menuList ul{padding:0 10px;}
.totalAmount .menu .menuList ul li{height:40px;border-bottom:0.5px solid #cfd1d4;line-height:40px;text-align:center;margin:0 5px;padding:0 5px;}
.totalAmount .menu .menuList ul li:last-child{border:none;}
.totalAmount .menu .menuList em{display:block;border-width:10px;position:absolute;bottom:-20px;left:10px;border-style:solid dashed dashed;border-color:#cfd1d4 transparent transparent;font-size:0;line-height:0;}
.totalAmount .menu .menuList span{display:block;border-width:10px;position:absolute;bottom:-18.5px;left:10px;border-style:solid dashed dashed;border-color:#FFF transparent transparent;font-size:0;line-height:0;}
.totalAmount .balance{float:right;}
.totalAmount .balance .amount{color:#780018;float:right;font-size:18px;text-indent:10px;margin-right:18px;font-weight:bold;}
.supportBanner{width:100%;text-align:center;height:49px;line-height:49px;font-size:12px;border-top:1px solid #eaeae8;background-color:#F8F8F8;margin-top:10px;color:#888;visibility:hidden;}
.supportBanner a{color:#F2B896}
.recharge-form{-webkit-user-select:none;user-select:none;padding-bottom: 60px;}
.recharge-form .pay-money{margin:10px 0 20px;padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.recharge-form .pay-money em{color:#666;font-size:12px;}
.recharge-form .pay-text .input{border:none;background:0 0;color:#999;-webkit-appearance:none;position:absolute;width:60%;left:110px;top:0;bottom:0;padding-right:10px;display:table;font-size:1.0em;text-align:left;}
.recharge-form .pay-text{padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.pay-order-nonehongbao{margin:10px 0 20px;padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.pay-order-nonehongbao .right{float:right;color:#ed414a;font-size:14px;}
.pay-order-hongbao{margin:10px 0 20px;padding:10px;background:#fff;color:#999;font-size:16px;position:relative}
.right img.icon_arrow_right{width:auto;height:15px;margin-left:3px;vertical-align:-1.5px;}
.pay-order-hongbao .right{float:right;font-size:14px;}
.recharge-form .pay-money .pull-right{float:right;}
.pull-right img.icon_arrow_right{width:auto;height:15px;vertical-align:-0.2px;}
.recharge-form .pay-money .input{border:none;background:0 0;color:#ed414a;-webkit-appearance:none;position:absolute;width:90%;left:0;top:0;bottom:0;padding-right:30px;display:table;font-size:1.5em;text-align:right;}
.recharge-form .pay-money select{border:none;background:0 0;color:#ff6000;-webkit-appearance:none;position:absolute;width:30%;right:0;top:0;bottom:0;direction:rtl;}
.recharge-form .pay-money option{direction:ltr;}
.recharge-form .pay-money .input:focus{outline:0;background:0 0}
.recharge-form .pay-way{background:#fff;margin-bottom:30px}
.recharge-form .pay-way .title{padding:10px;color:#666;border-bottom:1px solid #f2f2f2;border-top:1px solid #f2f2f2}
.recharge-form .pay-way li{position:relative;padding:10px 15px 10px 10px;border-bottom:1px solid #f2f2f2;height:auto;overflow:hidden;}
.recharge-form .pay-way .pay-way-icon{float:left;width:30px;margin-top:5px;margin-right:10px}
.recharge-form .pay-way .pay-way-explain{float:left}
.recharge-form .pay-way .pay-way-explain h3{font-weight:400;margin:0;font-size:1.1em;}
.recharge-form .pay-way .pay-way-explain p{margin:0;color:#666;font-size:11px}
.recharge-form .pay-way .more{padding:10px;text-align:center;border-bottom:1px solid #f2f2f2;color:#666;font-size:15px}
.recharge-form .pay-way .more .icon-arrow-down{font-size:12px;position:relative;top:0;left:4px}
.recharge-form .recharge-btn{padding:0 10px}
.recharge-form .icon-arrow-right{position:relative;top:2px}
.recharge-back-btn{width:190px;display:inline-block;margin-top:15px}
.ui-btn{display:block;width:100%;padding:10px 0;background:#ea1010;border:none;border-radius:3px;text-align:center;color:#fff;font-size:1.1em;font-weight:600; height:42px;}
.ui-btn.active{background:#ed414a;}
.vico{width:20px;height:20px;position:absolute;right:15px;top:50%;z-index:1;margin-top:-10px;border-radius:50%;background:#FFF;border:1px solid #ccc;-webkit-box-sizing:border-box;-webkit-transition:all .3s ease-in-out;display:none}
.pay-way .vico{display:block}
.pay-way .selected .green{background:#ed414a;border-color:#ed414a}
.pay-way .selected .vico{background-image:url(vote-check.png);-webkit-background-size:20px 20px;background-size:20px 20px}
.borderD2 { border-bottom:1px solid #d2d2d2;transform:scaleY(0.5); -webkit-transform:scaleY(0.5);}
.ui-btn.doing { background:#c9c7c8; }
.rechargeMain{width:100%;display:table;margin-bottom:15px;}
.rechargeMain .rechargeItem{height:48px;background-color:#FFF;line-height:48px;font-size:14px;}
.rechargeMain .rechargeItem .title{float:left;width:25%;text-align:center;}
.rechargeMain .rechargeItem .numInput{float:left;width:75%;height:48px;color:#CCC;box-sizing:border-box;}
.rechargeMain .rechargeItem .numInput span.notEmpty{color:#04BE02;font-size:16px;}
.rechargeMain .rechargeItem .numInput span.hover{border-right:2px solid red;}
.rechargeMain .tip{width:96%;margin:0 auto;height:24px;line-height:24px;font-size:12px;color:#BFBEC4;text-align:right;} | source/plugin/tom_tongcheng/images/money.css | *{outline:none;-webkit-tap-highlight-color:rgba(255,0,0,0);vertical-align:baseline;font-style:normal;margin:0;padding:0;}
body{margin:0;padding:0;font-size:14px;font-family:'Helvetica Neue',Roboto,'microsoft yahei';color:#404040;background-color:#f2f2f2;}
img{border:0}
a,a:visited{color:#53585a;text-decoration:none;}
.blank{width:100%;height:15px;}
.balanceMain{width:100%;background-color:#FFF;display:table;}
.balanceMain .balanceBanner{width:92%;margin:0 auto;height:40px;line-height:40px;}
.balanceMain .balanceBanner .detail{position:relative;float:right;width:36%;text-align:right;font-size:14px;padding-right:4%;color:#888;}
.balanceMain .balanceBanner .detail .arrow{position:absolute;right:0;top:13px;width:10px;color:#CFCFCF;height:14px;font-size:14px;line-height:14px;}
.balanceMain .balance{width:92%;margin:0 auto;height:50px;line-height:50px;text-align:center;color:#910012;font-size:40px;font-weight:bold;}
.balanceMain .balanceFrozen{width:92%;margin:0 auto;height:30px;line-height:30px;text-align:center;color:#576b95;margin-bottom:10px;font-size:16px;}
.balanceMain .balanceStaticsBanner{width:100%;height:60px;}
.balanceMain .balanceStaticsBanner .balanceStatics{float:left;width:33%;height:40px;text-align:center;margin:10px 0;}
.balanceMain .balanceStaticsBanner .balanceStatics span{display:block;width:100%;height:20px;line-height:20px;}
.balanceMain .balanceStaticsBanner .balanceStatics span.title{font-size:14px;}
.balanceMain .balanceStaticsBanner .balanceStatics span.money{color:#910012;font-size:18px;font-weight:bold;}
.balanceMenu{width:100%;margin-top:10px;background-color:#FFF;display:table;}
.balanceMenu .menuItem{width:95%;margin-left:5%;height:46px;position:relative;}
.balanceMenu .menuItem .menuItemIcon{float:left;width:43px;height:46px;color:#00B7EE;font-size:17px;margin-left:-3px;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;}
.balanceMenu .menuItem .menuItemText{margin-left:40px;height:46px;line-height:46px;font-size:16px;}
.balanceMenu .menuItem .coinNum,.balanceMenu .menuItem .bailMoney,.balanceMenu .menuItem .couponNum{height:46px;line-height:46px;color:#888;float:right;margin-right:10%;font-size:14px;}
.balanceMenu .menuItem .arrow{position:absolute;top:0;right:0;color:#CFCFCF;width:12px;font-size:14px;margin-right:4%;line-height:46px;}
.border.horizonBottom:after{left:0;bottom:0;}
.border.horizonTop:after,.border.horizonBottom:after{width:100%;height:1px;transform:scaleY(0.5);-webkit-transform:scaleY(0.5);}
.border:after{position:absolute;content:'';background-color:#D9D9D9;}
.supportBanner{width:100%;text-align:center;height:49px;line-height:49px;font-size:12px;border-top:1px solid #eaeae8;background-color:#F8F8F8;margin-top:10px;color:#888;visibility:hidden;}
.supportBanner a{color:#F2B896}
.weui_switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:52px;height:32px;border:1px solid #dfdfdf;outline:0;border-radius:16px;box-sizing:border-box;background:#dfdfdf;}
.weui_switch:checked{border-color:#ed414a;background-color:#ed414a;}
.weui_switch:after,.weui_switch:before{content:" ";position:absolute;top:0;left:0;height:30px;border-radius:15px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;}
.weui_switch:before{width:50px;background-color:#fdfdfd;box-sizing:border-box;}
.weui_switch:after{width:30px;background-color:#fff;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.4);}
.weui_switch:checked:before{-webkit-transform:scale(0);transform:scale(0);}
.weui_switch:checked:after{-webkit-transform:translateX(20px);transform:translateX(20px);}
.recordMain{width:100%;background-color:#FFF;display:table;}
.recordMain.noData{background-color:none;text-align:center;padding-top:40px;font-size:14px;display:none;}
.recordMain.noData img{width:80px;height:80px;margin-bottom:13px;}
.recordMain .balanceItem{position:relative;height:40px;border-bottom:1px solid #e7e7e7;position:relative;padding:12px 0;}
.recordMain .balanceItem .type,.recordMain .balanceItem .time{width:90%;height:25px;margin-left:18px;float:left;line-height:25px;}
.recordMain .balanceItem .type{font-size:14px;color:#000;}
.recordMain .balanceItem .time{height:15px;line-height:15px;color:#7e7e7e;margin-top:5px;}
.recordMain .balanceItem .amount{position:absolute;width:28%;line-height:40px;text-align:right;right:8px;font-size:20px;color: #fb0000;}
.recordMain .balanceItem .amount span{padding-right:5px;}
.recordMain .balanceItem .amount.positive{color:#06BC07;}
.recordMain .balanceItem .amount.negtive{color:#F19333;}
.recordMain .balanceItem .amount.withdrawWait{color:#7e7e7e;}
.recordMain .balanceItem .status{position:absolute;bottom:5px;right:18px;font-size:12px;color:#7e7e7e;}
.totalAmount{height:60px;width:100%;line-height:60px;text-align:right;font-size:14px;position:fixed;bottom:0;border-top:1px solid #cfd1d4;color:#5e5e5e;background-color:#efeff4;}
.totalAmount .menu{float:left;margin-left:18px;position:relative;}
.totalAmount .menu .menuBtn{background-image:url(balanceMenu.png);background-repeat:no-repeat;background-position:left center;background-size:16px;padding-left:18px;text-align:left;}
.totalAmount .menu .menuList{position:relative;bottom:277px;background-color:#FFF;border:1px solid #cfd1d4;display:none;border-radius:2px;}
.totalAmount .menu .menuList ul{padding:0 10px;}
.totalAmount .menu .menuList ul li{height:40px;border-bottom:0.5px solid #cfd1d4;line-height:40px;text-align:center;margin:0 5px;padding:0 5px;}
.totalAmount .menu .menuList ul li:last-child{border:none;}
.totalAmount .menu .menuList em{display:block;border-width:10px;position:absolute;bottom:-20px;left:10px;border-style:solid dashed dashed;border-color:#cfd1d4 transparent transparent;font-size:0;line-height:0;}
.totalAmount .menu .menuList span{display:block;border-width:10px;position:absolute;bottom:-18.5px;left:10px;border-style:solid dashed dashed;border-color:#FFF transparent transparent;font-size:0;line-height:0;}
.totalAmount .balance{float:right;}
.totalAmount .balance .amount{color:#780018;float:right;font-size:18px;text-indent:10px;margin-right:18px;font-weight:bold;}
.supportBanner{width:100%;text-align:center;height:49px;line-height:49px;font-size:12px;border-top:1px solid #eaeae8;background-color:#F8F8F8;margin-top:10px;color:#888;visibility:hidden;}
.supportBanner a{color:#F2B896}
.recharge-form{-webkit-user-select:none;user-select:none;padding-bottom: 60px;}
.recharge-form .pay-money{margin:10px 0 20px;padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.recharge-form .pay-money em{color:#666;font-size:12px;}
.recharge-form .pay-text .input{border:none;background:0 0;color:#999;-webkit-appearance:none;position:absolute;width:60%;left:110px;top:0;bottom:0;padding-right:10px;display:table;font-size:1.0em;text-align:left;}
.recharge-form .pay-text{padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.pay-order-nonehongbao{margin:10px 0 20px;padding:10px;background:#fff;color:#333;font-size:16px;position:relative}
.pay-order-nonehongbao .right{float:right;color:#ed414a;font-size:14px;}
.pay-order-hongbao{margin:10px 0 20px;padding:10px;background:#fff;color:#999;font-size:16px;position:relative}
.right img.icon_arrow_right{width:auto;height:15px;margin-left:3px;vertical-align:-1.5px;}
.pay-order-hongbao .right{float:right;font-size:14px;}
.recharge-form .pay-money .pull-right{float:right;}
.pull-right img.icon_arrow_right{width:auto;height:15px;vertical-align:-0.2px;}
.recharge-form .pay-money .input{border:none;background:0 0;color:#ed414a;-webkit-appearance:none;position:absolute;width:90%;left:0;top:0;bottom:0;padding-right:30px;display:table;font-size:1.5em;text-align:right;}
.recharge-form .pay-money select{border:none;background:0 0;color:#ff6000;-webkit-appearance:none;position:absolute;width:30%;right:0;top:0;bottom:0;direction:rtl;}
.recharge-form .pay-money option{direction:ltr;}
.recharge-form .pay-money .input:focus{outline:0;background:0 0}
.recharge-form .pay-way{background:#fff;margin-bottom:30px}
.recharge-form .pay-way .title{padding:10px;color:#666;border-bottom:1px solid #f2f2f2;border-top:1px solid #f2f2f2}
.recharge-form .pay-way li{position:relative;padding:10px 15px 10px 10px;border-bottom:1px solid #f2f2f2;height:auto;overflow:hidden;}
.recharge-form .pay-way .pay-way-icon{float:left;width:30px;margin-top:5px;margin-right:10px}
.recharge-form .pay-way .pay-way-explain{float:left}
.recharge-form .pay-way .pay-way-explain h3{font-weight:400;margin:0;font-size:1.1em;}
.recharge-form .pay-way .pay-way-explain p{margin:0;color:#666;font-size:11px}
.recharge-form .pay-way .more{padding:10px;text-align:center;border-bottom:1px solid #f2f2f2;color:#666;font-size:15px}
.recharge-form .pay-way .more .icon-arrow-down{font-size:12px;position:relative;top:0;left:4px}
.recharge-form .recharge-btn{padding:0 10px}
.recharge-form .icon-arrow-right{position:relative;top:2px}
.recharge-back-btn{width:190px;display:inline-block;margin-top:15px}
.ui-btn{display:block;width:100%;padding:10px 0;background:#ea1010;border:none;border-radius:3px;text-align:center;color:#fff;font-size:1.1em;font-weight:600; height:42px;}
.ui-btn.active{background:#ed414a;}
.vico{width:20px;height:20px;position:absolute;right:15px;top:50%;z-index:1;margin-top:-10px;border-radius:50%;background:#FFF;border:1px solid #ccc;-webkit-box-sizing:border-box;-webkit-transition:all .3s ease-in-out;display:none}
.pay-way .vico{display:block}
.pay-way .selected .green{background:#ed414a;border-color:#ed414a}
.pay-way .selected .vico{background-image:url(vote-check.png);-webkit-background-size:20px 20px;background-size:20px 20px}
.borderD2 { border-bottom:1px solid #d2d2d2;transform:scaleY(0.5); -webkit-transform:scaleY(0.5);}
.ui-btn.doing { background:#c9c7c8; }
.rechargeMain{width:100%;display:table;margin-bottom:15px;}
.rechargeMain .rechargeItem{height:48px;background-color:#FFF;line-height:48px;font-size:14px;}
.rechargeMain .rechargeItem .title{float:left;width:25%;text-align:center;}
.rechargeMain .rechargeItem .numInput{float:left;width:75%;height:48px;color:#CCC;box-sizing:border-box;}
.rechargeMain .rechargeItem .numInput span.notEmpty{color:#04BE02;font-size:16px;}
.rechargeMain .rechargeItem .numInput span.hover{border-right:2px solid red;}
.rechargeMain .tip{width:96%;margin:0 auto;height:24px;line-height:24px;font-size:12px;color:#BFBEC4;text-align:right;} | 0.157947 | 0.038538 |