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 |
|---|---|---|---|---|
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0);
}
to {
opacity: 1;
transform: scale(1);
}
}
ul {
padding-left: 0;
}
a {
text-decoration: underline;
}
button, a {
cursor: pointer;
}
button, button:focus {
border: none;
outline: none;
}
.italic {
font-style: italic;
}
.hide {
display: none;
}
.center {
text-align: center;
margin: 0 auto;
}
.settings {
position: relative;
background: url(../img/user.png);
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
width: 3rem;
height: 3rem;
outline: none;
border-radius: 100%;
}
.stories {
margin-top: 10px;
display: block;
overflow-x: auto;
overflow-y: hidden;
height: 90px;
white-space: nowrap;
}
.stories-item {
display: inline-block;
width: 100px;
height: 100px;
font-size: 10px;
cursor: pointer;
padding: 5px;
}
.stories-item .username {
text-overflow: ellipsis;
overflow: hidden;
}
.stories-item .not-seen {
border-color: red;
}
.stories-item .seen {
border-color: #eee;
}
.thumb {
width: 3rem;
height: 3rem;
border-radius: 50%;
border-width: 1px;
border-style: solid;
}
button.play, button.pause {
position: fixed;
bottom: 10px;
right: 10px;
width: 3rem;
height: 3rem;
background: url(../img/play.png);
background-color: #aaa;
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
border: 3px solid #888;
border-radius: 100%;
}
button.pause {
background-image: url(../img/pause.png);
}
button.play:hover, button.pause:hover {
background-color: #ccc;
}
.story {
padding: 20px;
background: linear-gradient(to right, #333, #444);
color: #ccc;
min-height: 800px;
height: auto;
}
.story .title {
text-align: left;
font-size: 10px;
}
.story .timeline {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: center;
}
.story .timeline .timeline-item {
width: auto;
flex: 1 1 auto;
}
.story .timeline progress {
-webkit-appearance: none;
width: 100%;
height: 4px;
border: 1px solid transparent;
border-radius: 3px;
}
.story .timeline progress::-webkit-progress-bar {
background: #666;
}
.story .timeline progress::-webkit-progress-value {
background: #888;
}
.story button.prev, .story button.next {
border-radius: 50%;
position: absolute;
padding: 20px;
top: 50%;
}
.story button.prev {
left: 10px;
background: url(../img/chevron-left.png) no-repeat center;
background-size: 10px;
background-color: rgba(255, 255, 255, 0.2);
}
.story button.next {
right: 10px;
background: url(../img/chevron-right.png) no-repeat center;
background-size: 10px;
background-color: rgba(255, 255, 255, 0.2);
}
.story button.prev:hover, .story button.next:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.story .view img, .story .view video {
max-width: 90%;
}
.viewer {
position: absolute;
top: 0;
width: 100%;
overflow-y: auto;
bottom: 0;
background: white;
z-index: 3;
display: none;
}
.viewer.active {
display: block;
align-items: center;
animation-name: fadeIn;
animation-duration: 0.4s;
animation-timing-function: ease-out;
}
.viewer .content img, .viewer .content video {
display: block;
margin: 0 auto;
}
.viewer .content img {
max-width: 55%;
}
.viewer button.close {
background: transparent;
opacity: 0.5;
}
.viewer .post-caption {
margin: 10px auto;
max-width: 250px;
word-wrap: break-word;
font-size: 15px;
}
.view-on-ig {
background: rgb(22, 139, 249);
color: white;
border: 1px rgb(22, 139, 249) solid;
outline: none;
padding: 8px;
border-radius: 3px;
cursor: pointer;
margin-top: 15px;
margin-bottom: 15px;
font-size: 13px;
transition: all .2s ease-out .1s;
}
.view-on-ig:hover {
opacity: 0.8;
}
.header .search-header {
display: flex;
flex-direction: row;
align-items: center;
min-width: 25%;
}
.header {
background-image: linear-gradient(to bottom, #f8f9fa, #e9ecef);
border-bottom: 1px solid #DFDFDF;
}
.dropdown-menu.active {
display: block;
top: 4.5rem;
left: 1rem;
}
.dropdown-item:hover {
cursor: pointer;
}
::-webkit-scrollbar {
background: whiteSmoke;
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb:window-inactive, ::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
border: solid whiteSmoke 2px;
}
::-webkit-scrollbar-thumb:window-inactive:hover, ::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.3);
} | browser/css/app.css | @keyframes fadeIn {
from {
opacity: 0;
transform: scale(0);
}
to {
opacity: 1;
transform: scale(1);
}
}
ul {
padding-left: 0;
}
a {
text-decoration: underline;
}
button, a {
cursor: pointer;
}
button, button:focus {
border: none;
outline: none;
}
.italic {
font-style: italic;
}
.hide {
display: none;
}
.center {
text-align: center;
margin: 0 auto;
}
.settings {
position: relative;
background: url(../img/user.png);
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
width: 3rem;
height: 3rem;
outline: none;
border-radius: 100%;
}
.stories {
margin-top: 10px;
display: block;
overflow-x: auto;
overflow-y: hidden;
height: 90px;
white-space: nowrap;
}
.stories-item {
display: inline-block;
width: 100px;
height: 100px;
font-size: 10px;
cursor: pointer;
padding: 5px;
}
.stories-item .username {
text-overflow: ellipsis;
overflow: hidden;
}
.stories-item .not-seen {
border-color: red;
}
.stories-item .seen {
border-color: #eee;
}
.thumb {
width: 3rem;
height: 3rem;
border-radius: 50%;
border-width: 1px;
border-style: solid;
}
button.play, button.pause {
position: fixed;
bottom: 10px;
right: 10px;
width: 3rem;
height: 3rem;
background: url(../img/play.png);
background-color: #aaa;
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
border: 3px solid #888;
border-radius: 100%;
}
button.pause {
background-image: url(../img/pause.png);
}
button.play:hover, button.pause:hover {
background-color: #ccc;
}
.story {
padding: 20px;
background: linear-gradient(to right, #333, #444);
color: #ccc;
min-height: 800px;
height: auto;
}
.story .title {
text-align: left;
font-size: 10px;
}
.story .timeline {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: center;
}
.story .timeline .timeline-item {
width: auto;
flex: 1 1 auto;
}
.story .timeline progress {
-webkit-appearance: none;
width: 100%;
height: 4px;
border: 1px solid transparent;
border-radius: 3px;
}
.story .timeline progress::-webkit-progress-bar {
background: #666;
}
.story .timeline progress::-webkit-progress-value {
background: #888;
}
.story button.prev, .story button.next {
border-radius: 50%;
position: absolute;
padding: 20px;
top: 50%;
}
.story button.prev {
left: 10px;
background: url(../img/chevron-left.png) no-repeat center;
background-size: 10px;
background-color: rgba(255, 255, 255, 0.2);
}
.story button.next {
right: 10px;
background: url(../img/chevron-right.png) no-repeat center;
background-size: 10px;
background-color: rgba(255, 255, 255, 0.2);
}
.story button.prev:hover, .story button.next:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.story .view img, .story .view video {
max-width: 90%;
}
.viewer {
position: absolute;
top: 0;
width: 100%;
overflow-y: auto;
bottom: 0;
background: white;
z-index: 3;
display: none;
}
.viewer.active {
display: block;
align-items: center;
animation-name: fadeIn;
animation-duration: 0.4s;
animation-timing-function: ease-out;
}
.viewer .content img, .viewer .content video {
display: block;
margin: 0 auto;
}
.viewer .content img {
max-width: 55%;
}
.viewer button.close {
background: transparent;
opacity: 0.5;
}
.viewer .post-caption {
margin: 10px auto;
max-width: 250px;
word-wrap: break-word;
font-size: 15px;
}
.view-on-ig {
background: rgb(22, 139, 249);
color: white;
border: 1px rgb(22, 139, 249) solid;
outline: none;
padding: 8px;
border-radius: 3px;
cursor: pointer;
margin-top: 15px;
margin-bottom: 15px;
font-size: 13px;
transition: all .2s ease-out .1s;
}
.view-on-ig:hover {
opacity: 0.8;
}
.header .search-header {
display: flex;
flex-direction: row;
align-items: center;
min-width: 25%;
}
.header {
background-image: linear-gradient(to bottom, #f8f9fa, #e9ecef);
border-bottom: 1px solid #DFDFDF;
}
.dropdown-menu.active {
display: block;
top: 4.5rem;
left: 1rem;
}
.dropdown-item:hover {
cursor: pointer;
}
::-webkit-scrollbar {
background: whiteSmoke;
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb:window-inactive, ::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
border: solid whiteSmoke 2px;
}
::-webkit-scrollbar-thumb:window-inactive:hover, ::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.3);
} | 0.541166 | 0.108095 |
.fill-neutral-dark-1 {
fill: var(--o-ui-neutral-dark-1);
}
.fill-neutral-dark-2 {
fill: var(--o-ui-neutral-dark-2);
}
.fill-neutral-dark-3 {
fill: var(--o-ui-neutral-dark-3);
}
.fill-neutral-dark-4 {
fill: var(--o-ui-neutral-dark-4);
}
.fill-neutral-dark-5 {
fill: var(--o-ui-neutral-dark-5);
}
.fill-neutral-dark-6 {
fill: var(--o-ui-neutral-dark-6);
}
.fill-neutral-dark-7 {
fill: var(--o-ui-neutral-dark-7);
}
.fill-neutral-dark-8 {
fill: var(--o-ui-neutral-dark-8);
}
.fill-neutral-dark-9 {
fill: var(--o-ui-neutral-dark-9);
}
.fill-neutral-dark-10 {
fill: var(--o-ui-neutral-dark-10);
}
.hover-fill-neutral-dark-1:hover {
fill: var(--o-ui-neutral-dark-1);
}
.hover-fill-neutral-dark-2:hover {
fill: var(--o-ui-neutral-dark-2);
}
.hover-fill-neutral-dark-3:hover {
fill: var(--o-ui-neutral-dark-3);
}
.hover-fill-neutral-dark-4:hover {
fill: var(--o-ui-neutral-dark-4);
}
.hover-fill-neutral-dark-5:hover {
fill: var(--o-ui-neutral-dark-5);
}
.hover-fill-neutral-dark-6:hover {
fill: var(--o-ui-neutral-dark-6);
}
.hover-fill-neutral-dark-7:hover {
fill: var(--o-ui-neutral-dark-7);
}
.hover-fill-neutral-dark-8:hover {
fill: var(--o-ui-neutral-dark-8);
}
.hover-fill-neutral-dark-9:hover {
fill: var(--o-ui-neutral-dark-9);
}
.hover-fill-neutral-dark-10:hover {
fill: var(--o-ui-neutral-dark-10);
}
.focus-fill-neutral-dark-1:focus {
fill: var(--o-ui-neutral-dark-1);
}
.focus-fill-neutral-dark-2:focus {
fill: var(--o-ui-neutral-dark-2);
}
.focus-fill-neutral-dark-3:focus {
fill: var(--o-ui-neutral-dark-3);
}
.focus-fill-neutral-dark-4:focus {
fill: var(--o-ui-neutral-dark-4);
}
.focus-fill-neutral-dark-5:focus {
fill: var(--o-ui-neutral-dark-5);
}
.focus-fill-neutral-dark-6:focus {
fill: var(--o-ui-neutral-dark-6);
}
.focus-fill-neutral-dark-7:focus {
fill: var(--o-ui-neutral-dark-7);
}
.focus-fill-neutral-dark-8:focus {
fill: var(--o-ui-neutral-dark-8);
}
.focus-fill-neutral-dark-9:focus {
fill: var(--o-ui-neutral-dark-9);
}
.focus-fill-neutral-dark-10:focus {
fill: var(--o-ui-neutral-dark-10);
} | src/tachyons/ui/neutral-dark/_fill.css | .fill-neutral-dark-1 {
fill: var(--o-ui-neutral-dark-1);
}
.fill-neutral-dark-2 {
fill: var(--o-ui-neutral-dark-2);
}
.fill-neutral-dark-3 {
fill: var(--o-ui-neutral-dark-3);
}
.fill-neutral-dark-4 {
fill: var(--o-ui-neutral-dark-4);
}
.fill-neutral-dark-5 {
fill: var(--o-ui-neutral-dark-5);
}
.fill-neutral-dark-6 {
fill: var(--o-ui-neutral-dark-6);
}
.fill-neutral-dark-7 {
fill: var(--o-ui-neutral-dark-7);
}
.fill-neutral-dark-8 {
fill: var(--o-ui-neutral-dark-8);
}
.fill-neutral-dark-9 {
fill: var(--o-ui-neutral-dark-9);
}
.fill-neutral-dark-10 {
fill: var(--o-ui-neutral-dark-10);
}
.hover-fill-neutral-dark-1:hover {
fill: var(--o-ui-neutral-dark-1);
}
.hover-fill-neutral-dark-2:hover {
fill: var(--o-ui-neutral-dark-2);
}
.hover-fill-neutral-dark-3:hover {
fill: var(--o-ui-neutral-dark-3);
}
.hover-fill-neutral-dark-4:hover {
fill: var(--o-ui-neutral-dark-4);
}
.hover-fill-neutral-dark-5:hover {
fill: var(--o-ui-neutral-dark-5);
}
.hover-fill-neutral-dark-6:hover {
fill: var(--o-ui-neutral-dark-6);
}
.hover-fill-neutral-dark-7:hover {
fill: var(--o-ui-neutral-dark-7);
}
.hover-fill-neutral-dark-8:hover {
fill: var(--o-ui-neutral-dark-8);
}
.hover-fill-neutral-dark-9:hover {
fill: var(--o-ui-neutral-dark-9);
}
.hover-fill-neutral-dark-10:hover {
fill: var(--o-ui-neutral-dark-10);
}
.focus-fill-neutral-dark-1:focus {
fill: var(--o-ui-neutral-dark-1);
}
.focus-fill-neutral-dark-2:focus {
fill: var(--o-ui-neutral-dark-2);
}
.focus-fill-neutral-dark-3:focus {
fill: var(--o-ui-neutral-dark-3);
}
.focus-fill-neutral-dark-4:focus {
fill: var(--o-ui-neutral-dark-4);
}
.focus-fill-neutral-dark-5:focus {
fill: var(--o-ui-neutral-dark-5);
}
.focus-fill-neutral-dark-6:focus {
fill: var(--o-ui-neutral-dark-6);
}
.focus-fill-neutral-dark-7:focus {
fill: var(--o-ui-neutral-dark-7);
}
.focus-fill-neutral-dark-8:focus {
fill: var(--o-ui-neutral-dark-8);
}
.focus-fill-neutral-dark-9:focus {
fill: var(--o-ui-neutral-dark-9);
}
.focus-fill-neutral-dark-10:focus {
fill: var(--o-ui-neutral-dark-10);
} | 0.614047 | 0.070688 |
body {
font-family: "Open Sans", sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
display: flex;
flex-wrap: wrap;
flex-direction: column;
flex-grow: 0;
justify-content: center;
padding: 1em;
font-family: "Montserrat", sans-serif;
}
left {
display: flex;
justify-content: center;
white-space: nowrap;
color: #2a2d7c;
font-size: .8em;
margin-block-start: .5em;
max-width: 100%;
}
.red {
color: #c9523d;
}
.right a {
color: #000000;
font-size: 12px;
padding: 20px;
}
#numbers {
display: flex;
width: 100%;
padding-top: .8em;
padding-bottom: .8em;
background-color: #000000;
justify-content: center;
color: #f2f2f2;
font-size: 3em;
font-family: "Open Sans", sans-serif;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
margin-inline-start: 10%;
margin-inline-end: 10%;
}
h1 {
display: flex;
font-size: 1.5em;
font-weight: bold;
justify-content: center;
text-align: center;
margin-block-start: 0.83em;
margin-block-end: 0.83em;
}
h2 {
display: flex;
font-size: 1em;
text-align: center;
justify-content: center;
font-weight: bold;
margin-block-end: 0.83em;
}
* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: #f2f2f2;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: #000000;
opacity: .9;
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
.names {
margin-block-start: .83em;
margin-block-end: 1em;
}
.footer {
background-color: #c6d2da;
display: flex;
flex-direction: column-reverse;
font-family: "Montserrat";
}
.bottomtext {
font-size: 12px;
padding: 12px;
}
.bottomtitle {
font-weight: bold;
font-size: 14px;
padding: 12px;
}
.bottom {
display: flex;
flex-direction: column;
}
@media (min-width: 600px){
header {
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
padding: 10px;
flex-direction: row;
}
left {
padding: 10px;
}
.footer {
flex-direction: row;
}
} | public/style.css |
body {
font-family: "Open Sans", sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
display: flex;
flex-wrap: wrap;
flex-direction: column;
flex-grow: 0;
justify-content: center;
padding: 1em;
font-family: "Montserrat", sans-serif;
}
left {
display: flex;
justify-content: center;
white-space: nowrap;
color: #2a2d7c;
font-size: .8em;
margin-block-start: .5em;
max-width: 100%;
}
.red {
color: #c9523d;
}
.right a {
color: #000000;
font-size: 12px;
padding: 20px;
}
#numbers {
display: flex;
width: 100%;
padding-top: .8em;
padding-bottom: .8em;
background-color: #000000;
justify-content: center;
color: #f2f2f2;
font-size: 3em;
font-family: "Open Sans", sans-serif;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
margin-inline-start: 10%;
margin-inline-end: 10%;
}
h1 {
display: flex;
font-size: 1.5em;
font-weight: bold;
justify-content: center;
text-align: center;
margin-block-start: 0.83em;
margin-block-end: 0.83em;
}
h2 {
display: flex;
font-size: 1em;
text-align: center;
justify-content: center;
font-weight: bold;
margin-block-end: 0.83em;
}
* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: #f2f2f2;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: #000000;
opacity: .9;
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
.names {
margin-block-start: .83em;
margin-block-end: 1em;
}
.footer {
background-color: #c6d2da;
display: flex;
flex-direction: column-reverse;
font-family: "Montserrat";
}
.bottomtext {
font-size: 12px;
padding: 12px;
}
.bottomtitle {
font-weight: bold;
font-size: 14px;
padding: 12px;
}
.bottom {
display: flex;
flex-direction: column;
}
@media (min-width: 600px){
header {
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
padding: 10px;
flex-direction: row;
}
left {
padding: 10px;
}
.footer {
flex-direction: row;
}
} | 0.452536 | 0.072505 |
.home {
width: 100%;
font-family: "Poppins", sans-serif;
}
.landing {
display: flex;
align-items: center;
justify-content: space-around;
background-size: cover;
background: #6e6ee0;
background-position: center;
margin-top: 20px;
position: relative;
}
.dots_img {
position: absolute;
bottom: -3%;
left: 1%;
}
.circles .box{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
opacity: 0.9;
}
.circles .box li{
position: absolute;
display: block;
list-style: none;
width: 25px;
height: 25px;
background: rgba(255, 255, 255, 0.753);
bottom: 5rem;
border-radius: 50%;
}
.circles .box li:nth-child(1){
left: 86%;
top: 10%;
width: 80px;
height: 80px;
background-color: #1E90FF;
}
.circles .box li:nth-child(2){
left: 12%;
top: 15%;
width: 15px;
height: 15px;
background-color: #FF6348;
}
.circles .box li:nth-child(3){
left: 42%;
top: 30%;
width: 150px;
height: 150px;
background-color: #2ED573;
border-radius: 50%;
}
.circles .box li:nth-child(4){
left: 50%;
bottom: 20%;
width: 10px;
height: 10px;
background-color: #ff91a4;
border-radius: 50%;
}
.circles .box li:nth-child(5){
left: 65%;
width: 40px;
height: 40px;
background-color: #1E90FF;
border-radius: 50%;
}
.circles .box li:nth-child(6){
left: 20%;
width: 50px;
height: 50px;
background-color: #FF6348;
border-radius: 50%;
}
.circles .box li:nth-child(7){
left: 95%;
width: 50px;
height: 50px;
}
.landing .home_content {
display: flex;
flex-direction: column;
margin-left: 10%;
z-index: 1;
}
.landing .home_content h3 {
font-size: 2.5rem;
margin: 0;
color: #fff;
}
.landing .home_content h1 {
font-size: 2.5rem;
color: #fff;
margin: 0;
font-weight: bold;
}
.landing .home_content p {
font-size: 1.5rem;
color: #fff;
padding-top: 1.5rem;
}
.home_content a {
display: block;
text-decoration: none;
background-color: #6c6be8;
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
width: 9.5rem;
padding: 0.5rem 1.8rem;
transition: 0.2s all;
font-weight: bold;
}
.home_content a:hover {
color: #6c6be8;
background-color: #fff;
}
.landing .image {
margin: 10rem 5rem;
width: 35vw;
height: 35vw;
max-width: 400px;
max-height: 400px;
border-radius: 50%;
background-color: #ff6348;
z-index: 1;
}
.landing .image img {
width: 100%;
margin-left: -30px;
animation: float 3s linear infinite;
z-index: 2;
}
@keyframes float {
0%,
100% {
transform: translateY(0rem);
}
50% {
transform: translateY(-3rem);
}
}
.home_projects {
background-color: #f3f7ff;
padding: 1% 2%;
margin-top: 6%;
}
.projects {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.best_project--title {
margin: 0;
font-size: 27px;
font-weight: bold;
display: flex;
align-items: center;
}
.best_project {
padding: 1% 0;
}
.trending_projects {
width: 100%;
padding: 0 2%;
display: flex;
justify-content: center;
align-items: center;
}
@media screen and (max-width: 960px) {
.landing {
flex-flow: column;
}
.landing .image {
margin: 4rem;
width: 70vw;
height: 70vw;
}
.landing img {
margin-left: -20px;
}
.landing .home_content {
margin-top: 4rem;
}
.landing .home_content h3,
.landing .home_content h1 {
font-size: 1.8rem;
}
.landing .home_content p {
font-size: 1.2rem;
}
.best_project--title {
width: 100%;
text-align: center;
}
.home_projects {
padding-left: 5%;
}
.projects {
justify-content: space-around;
}
}
body::-webkit-scrollbar {
width: 0.6rem;
}
body::-webkit-scrollbar-track {
background: linear-gradient(
0deg,
rgba(231, 248, 47, 1) 0%,
rgba(39, 246, 190, 1) 50%,
rgba(7, 0, 211, 1) 100%
);
border-radius: 20px;
}
body::-webkit-scrollbar-thumb {
background: transparent;
box-shadow: 0px 0px 0px 100000vh #edeff0;
border-radius: 20px;
} | src/components/Home/Home.css | .home {
width: 100%;
font-family: "Poppins", sans-serif;
}
.landing {
display: flex;
align-items: center;
justify-content: space-around;
background-size: cover;
background: #6e6ee0;
background-position: center;
margin-top: 20px;
position: relative;
}
.dots_img {
position: absolute;
bottom: -3%;
left: 1%;
}
.circles .box{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
opacity: 0.9;
}
.circles .box li{
position: absolute;
display: block;
list-style: none;
width: 25px;
height: 25px;
background: rgba(255, 255, 255, 0.753);
bottom: 5rem;
border-radius: 50%;
}
.circles .box li:nth-child(1){
left: 86%;
top: 10%;
width: 80px;
height: 80px;
background-color: #1E90FF;
}
.circles .box li:nth-child(2){
left: 12%;
top: 15%;
width: 15px;
height: 15px;
background-color: #FF6348;
}
.circles .box li:nth-child(3){
left: 42%;
top: 30%;
width: 150px;
height: 150px;
background-color: #2ED573;
border-radius: 50%;
}
.circles .box li:nth-child(4){
left: 50%;
bottom: 20%;
width: 10px;
height: 10px;
background-color: #ff91a4;
border-radius: 50%;
}
.circles .box li:nth-child(5){
left: 65%;
width: 40px;
height: 40px;
background-color: #1E90FF;
border-radius: 50%;
}
.circles .box li:nth-child(6){
left: 20%;
width: 50px;
height: 50px;
background-color: #FF6348;
border-radius: 50%;
}
.circles .box li:nth-child(7){
left: 95%;
width: 50px;
height: 50px;
}
.landing .home_content {
display: flex;
flex-direction: column;
margin-left: 10%;
z-index: 1;
}
.landing .home_content h3 {
font-size: 2.5rem;
margin: 0;
color: #fff;
}
.landing .home_content h1 {
font-size: 2.5rem;
color: #fff;
margin: 0;
font-weight: bold;
}
.landing .home_content p {
font-size: 1.5rem;
color: #fff;
padding-top: 1.5rem;
}
.home_content a {
display: block;
text-decoration: none;
background-color: #6c6be8;
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
width: 9.5rem;
padding: 0.5rem 1.8rem;
transition: 0.2s all;
font-weight: bold;
}
.home_content a:hover {
color: #6c6be8;
background-color: #fff;
}
.landing .image {
margin: 10rem 5rem;
width: 35vw;
height: 35vw;
max-width: 400px;
max-height: 400px;
border-radius: 50%;
background-color: #ff6348;
z-index: 1;
}
.landing .image img {
width: 100%;
margin-left: -30px;
animation: float 3s linear infinite;
z-index: 2;
}
@keyframes float {
0%,
100% {
transform: translateY(0rem);
}
50% {
transform: translateY(-3rem);
}
}
.home_projects {
background-color: #f3f7ff;
padding: 1% 2%;
margin-top: 6%;
}
.projects {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.best_project--title {
margin: 0;
font-size: 27px;
font-weight: bold;
display: flex;
align-items: center;
}
.best_project {
padding: 1% 0;
}
.trending_projects {
width: 100%;
padding: 0 2%;
display: flex;
justify-content: center;
align-items: center;
}
@media screen and (max-width: 960px) {
.landing {
flex-flow: column;
}
.landing .image {
margin: 4rem;
width: 70vw;
height: 70vw;
}
.landing img {
margin-left: -20px;
}
.landing .home_content {
margin-top: 4rem;
}
.landing .home_content h3,
.landing .home_content h1 {
font-size: 1.8rem;
}
.landing .home_content p {
font-size: 1.2rem;
}
.best_project--title {
width: 100%;
text-align: center;
}
.home_projects {
padding-left: 5%;
}
.projects {
justify-content: space-around;
}
}
body::-webkit-scrollbar {
width: 0.6rem;
}
body::-webkit-scrollbar-track {
background: linear-gradient(
0deg,
rgba(231, 248, 47, 1) 0%,
rgba(39, 246, 190, 1) 50%,
rgba(7, 0, 211, 1) 100%
);
border-radius: 20px;
}
body::-webkit-scrollbar-thumb {
background: transparent;
box-shadow: 0px 0px 0px 100000vh #edeff0;
border-radius: 20px;
} | 0.484868 | 0.07971 |
.background_seaShell7,
.hover_background_seaShell7:hover,
.active_background_seaShell7:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(192, 79, 0)), color-stop(100%, rgb(154, 63, 0)));
background-image: -webkit-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -o-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: linear-gradient(to bottom, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c04f00', endColorstr='#9a3f00',GradientType=0 );
}
.background_seaShell7h,
.hover_background_seaShell7h:hover,
.active_background_seaShell7h:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(231, 95, 0)), color-stop(100%, rgb(185, 76, 0)));
background-image: -webkit-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -o-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: linear-gradient(to bottom, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e75f00', endColorstr='#b94c00',GradientType=0 );
}
.background_seaShell7a,
.hover_background_seaShell7a:hover,
.active_background_seaShell7a:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(185, 76, 0)), color-stop(100%, rgb(231, 95, 0)));
background-image: -webkit-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -o-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: linear-gradient(to bottom, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b94c00', endColorstr='#e75f00',GradientType=0 );
}
.background_seaShell7s,
.hover_background_seaShell7s:hover,
.active_background_seaShell7s:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 125, 34)), color-stop(100%, rgb(231, 95, 0)));
background-image: -webkit-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -o-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: linear-gradient(to bottom, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7d22', endColorstr='#e75f00',GradientType=0 );
}
.background_color_seaShell7,
.hover_background_color_seaShell7:hover,
.active_background_color_seaShell7:active:hover {
background-color:#9a3f00;
}
.background_first_color_seaShell7,
.hover_background_first_color_seaShell7:hover,
.active_background_first_color_seaShell7:active:hover {
background-color:#c04f00;
}
.background_last_color_seaShell7,
.hover_background_last_color_seaShell7:hover,
.active_background_color_last_seaShell7:active:hover {
background-color:#9a3f00;
}
/* ------------------------------ color settings -------------------------------*/
.color_seaShell7,
.hover_color_seaShell7:hover,
.active_color_seaShell7:active:hover {
color: #c8c8c8;
}
.color_seaShell7h,
.hover_color_seaShell7h:hover,
.active_color_seaShell7h:active:hover {
color: #c8c8c8;
}
.color_seaShell7a,
.hover_color_seaShell7a:hover,
.active_color_seaShell7a:active:hover {
color: #ff0;
}
.color_seaShell7s,
.hover_color_seaShell7s:hover,
.active_color_seaShell7s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_seaShell7,
.hover_border_seaShell7:hover,
.active_border_seaShell7:active:hover {
border-color: #9a3f00 #9a3f00 #9a3f00 #9a3f00;
}
.border_seaShell7h,
.hover_border_seaShell7h:hover,
.active_border_seaShell7h:active:hover {
border-color: #8b3900 #8b3900 #8b3900 #8b3900;
}
.border_seaShell7a,
.hover_border_seaShell7a:hover,
.active_border_seaShell7a:active:hover {
border-color: #7b3300 #7b3300 #7b3300 #7b3300;
}
.border_seaShell7s,
.hover_border_seaShell7s:hover,
.active_border_seaShell7s:active:hover {
border-color: #e75f00 #e75f00 #e75f00 #e75f00;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_seaShell7,
.hover_shadow_expand_seaShell7:hover,
.active_shadow_expand_seaShell7:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
}
.shadow_expand_seaShell7h,
.hover_shadow_expand_seaShell7h:hover,
.active_shadow_expand_seaShell7h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
}
.shadow_expand_seaShell7a,
.hover_shadow_expand_seaShell7a:hover,
.active_shadow_expand_seaShell7a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
}
.shadow_expand_seaShell7s,
.hover_shadow_expand_seaShell7s:hover,
.active_shadow_expand_seaShell7s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_seaShell7,
.hover_shadow_left_seaShell7:hover,
.active_shadow_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_left_seaShell7h,
.hover_shadow_left_seaShell7h:hover,
.active_shadow_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_left_seaShell7a,
.hover_shadow_left_seaShell7a:hover,
.active_shadow_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_left_seaShell7s,
.hover_shadow_left_seaShell7s:hover,
.active_shadow_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_seaShell7,
.hover_shadow_right_seaShell7:hover,
.active_shadow_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
}
.shadow_right_seaShell7h,
.hover_shadow_right_seaShell7h:hover,
.active_shadow_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
}
.shadow_right_seaShell7a,
.hover_shadow_right_seaShell7a:hover,
.active_shadow_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
}
.shadow_right_seaShell7s,
.hover_shadow_right_seaShell7s:hover,
.active_shadow_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_seaShell7,
.hover_shadow_top_seaShell7:hover,
.active_shadow_top_seaShell7:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_seaShell7h,
.hover_shadow_top_seaShell7h:hover,
.active_shadow_top_seaShell7h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_seaShell7a,
.hover_shadow_top_seaShell7a:hover,
.active_shadow_top_seaShell7a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_seaShell7s,
.hover_shadow_top_seaShell7s:hover,
.active_shadow_top_seaShell7s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_seaShell7,
.hover_shadow_bottom_seaShell7:hover,
.active_shadow_bottom_seaShell7:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_seaShell7h,
.hover_shadow_bottom_seaShell7h:hover,
.active_shadow_bottom_seaShell7h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_seaShell7a,
.hover_shadow_bottom_seaShell7a:hover,
.active_shadow_bottom_seaShell7a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_seaShell7s,
.hover_shadow_bottom_seaShell7s:hover,
.active_shadow_bottom_seaShell7s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_seaShell7,
.hover_shadow_top_left_seaShell7:hover,
.active_shadow_top_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_left_seaShell7h,
.hover_shadow_top_left_seaShell7h:hover,
.active_shadow_top_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_left_seaShell7a,
.hover_shadow_top_left_seaShell7a:hover,
.active_shadow_top_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_left_seaShell7s,
.hover_shadow_top_left_seaShell7s:hover,
.active_shadow_top_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_seaShell7,
.hover_shadow_top_right_seaShell7:hover,
.active_shadow_top_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_right_seaShell7h,
.hover_shadow_top_right_seaShell7h:hover,
.active_shadow_top_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_right_seaShell7a,
.hover_shadow_top_right_seaShell7a:hover,
.active_shadow_top_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_right_seaShell7s,
.hover_shadow_top_right_seaShell7s:hover,
.active_shadow_top_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_seaShell7,
.hover_shadow_bottom_left_seaShell7:hover,
.active_shadow_bottom_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_left_seaShell7h,
.hover_shadow_bottom_left_seaShell7h:hover,
.active_shadow_bottom_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_left_seaShell7a,
.hover_shadow_bottom_left_seaShell7a:hover,
.active_shadow_bottom_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_left_seaShell7s,
.hover_shadow_bottom_left_seaShell7s:hover,
.active_shadow_bottom_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_seaShell7,
.hover_shadow_bottom_right_seaShell7:hover,
.active_shadow_bottom_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_right_seaShell7h,
.hover_shadow_bottom_right_seaShell7h:hover,
.active_shadow_bottom_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_right_seaShell7a,
.hover_shadow_bottom_right_seaShell7a:hover,
.active_shadow_bottom_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_right_seaShell7s,
.hover_shadow_bottom_right_seaShell7s:hover,
.active_shadow_bottom_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
} | widgets/common/assets/gradients/simple/seaShell/seaShell7.css | .background_seaShell7,
.hover_background_seaShell7:hover,
.active_background_seaShell7:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(192, 79, 0)), color-stop(100%, rgb(154, 63, 0)));
background-image: -webkit-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -o-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
background-image: linear-gradient(to bottom, rgb(192, 79, 0) 0%, rgb(154, 63, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c04f00', endColorstr='#9a3f00',GradientType=0 );
}
.background_seaShell7h,
.hover_background_seaShell7h:hover,
.active_background_seaShell7h:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(231, 95, 0)), color-stop(100%, rgb(185, 76, 0)));
background-image: -webkit-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -o-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
background-image: linear-gradient(to bottom, rgb(231, 95, 0) 0%, rgb(185, 76, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e75f00', endColorstr='#b94c00',GradientType=0 );
}
.background_seaShell7a,
.hover_background_seaShell7a:hover,
.active_background_seaShell7a:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(185, 76, 0)), color-stop(100%, rgb(231, 95, 0)));
background-image: -webkit-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -o-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
background-image: linear-gradient(to bottom, rgb(185, 76, 0) 0%, rgb(231, 95, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b94c00', endColorstr='#e75f00',GradientType=0 );
}
.background_seaShell7s,
.hover_background_seaShell7s:hover,
.active_background_seaShell7s:active:hover {
background: #9a3f00;
background-image: -moz-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 125, 34)), color-stop(100%, rgb(231, 95, 0)));
background-image: -webkit-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -o-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
background-image: linear-gradient(to bottom, rgb(255, 125, 34) 0%, rgb(231, 95, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7d22', endColorstr='#e75f00',GradientType=0 );
}
.background_color_seaShell7,
.hover_background_color_seaShell7:hover,
.active_background_color_seaShell7:active:hover {
background-color:#9a3f00;
}
.background_first_color_seaShell7,
.hover_background_first_color_seaShell7:hover,
.active_background_first_color_seaShell7:active:hover {
background-color:#c04f00;
}
.background_last_color_seaShell7,
.hover_background_last_color_seaShell7:hover,
.active_background_color_last_seaShell7:active:hover {
background-color:#9a3f00;
}
/* ------------------------------ color settings -------------------------------*/
.color_seaShell7,
.hover_color_seaShell7:hover,
.active_color_seaShell7:active:hover {
color: #c8c8c8;
}
.color_seaShell7h,
.hover_color_seaShell7h:hover,
.active_color_seaShell7h:active:hover {
color: #c8c8c8;
}
.color_seaShell7a,
.hover_color_seaShell7a:hover,
.active_color_seaShell7a:active:hover {
color: #ff0;
}
.color_seaShell7s,
.hover_color_seaShell7s:hover,
.active_color_seaShell7s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_seaShell7,
.hover_border_seaShell7:hover,
.active_border_seaShell7:active:hover {
border-color: #9a3f00 #9a3f00 #9a3f00 #9a3f00;
}
.border_seaShell7h,
.hover_border_seaShell7h:hover,
.active_border_seaShell7h:active:hover {
border-color: #8b3900 #8b3900 #8b3900 #8b3900;
}
.border_seaShell7a,
.hover_border_seaShell7a:hover,
.active_border_seaShell7a:active:hover {
border-color: #7b3300 #7b3300 #7b3300 #7b3300;
}
.border_seaShell7s,
.hover_border_seaShell7s:hover,
.active_border_seaShell7s:active:hover {
border-color: #e75f00 #e75f00 #e75f00 #e75f00;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_seaShell7,
.hover_shadow_expand_seaShell7:hover,
.active_shadow_expand_seaShell7:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
box-shadow: 0em 0em 1em 0.25em rgba(154, 63, 0, .39);
}
.shadow_expand_seaShell7h,
.hover_shadow_expand_seaShell7h:hover,
.active_shadow_expand_seaShell7h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
box-shadow: 0em 0em 1em 0.25em rgba(185, 76, 0, .50);
}
.shadow_expand_seaShell7a,
.hover_shadow_expand_seaShell7a:hover,
.active_shadow_expand_seaShell7a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .63);
}
.shadow_expand_seaShell7s,
.hover_shadow_expand_seaShell7s:hover,
.active_shadow_expand_seaShell7s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
box-shadow: 0em 0em 1em 0.25em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_seaShell7,
.hover_shadow_left_seaShell7:hover,
.active_shadow_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_left_seaShell7h,
.hover_shadow_left_seaShell7h:hover,
.active_shadow_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_left_seaShell7a,
.hover_shadow_left_seaShell7a:hover,
.active_shadow_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_left_seaShell7s,
.hover_shadow_left_seaShell7s:hover,
.active_shadow_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_seaShell7,
.hover_shadow_right_seaShell7:hover,
.active_shadow_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em 0em 1em rgba(154, 63, 0, .39);
}
.shadow_right_seaShell7h,
.hover_shadow_right_seaShell7h:hover,
.active_shadow_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em 0em 1em rgba(185, 76, 0, .50);
}
.shadow_right_seaShell7a,
.hover_shadow_right_seaShell7a:hover,
.active_shadow_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .63);
}
.shadow_right_seaShell7s,
.hover_shadow_right_seaShell7s:hover,
.active_shadow_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em 0em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_seaShell7,
.hover_shadow_top_seaShell7:hover,
.active_shadow_top_seaShell7:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_seaShell7h,
.hover_shadow_top_seaShell7h:hover,
.active_shadow_top_seaShell7h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_seaShell7a,
.hover_shadow_top_seaShell7a:hover,
.active_shadow_top_seaShell7a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_seaShell7s,
.hover_shadow_top_seaShell7s:hover,
.active_shadow_top_seaShell7s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_seaShell7,
.hover_shadow_bottom_seaShell7:hover,
.active_shadow_bottom_seaShell7:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_seaShell7h,
.hover_shadow_bottom_seaShell7h:hover,
.active_shadow_bottom_seaShell7h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_seaShell7a,
.hover_shadow_bottom_seaShell7a:hover,
.active_shadow_bottom_seaShell7a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_seaShell7s,
.hover_shadow_bottom_seaShell7s:hover,
.active_shadow_bottom_seaShell7s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0em 0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_seaShell7,
.hover_shadow_top_left_seaShell7:hover,
.active_shadow_top_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_left_seaShell7h,
.hover_shadow_top_left_seaShell7h:hover,
.active_shadow_top_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_left_seaShell7a,
.hover_shadow_top_left_seaShell7a:hover,
.active_shadow_top_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_left_seaShell7s,
.hover_shadow_top_left_seaShell7s:hover,
.active_shadow_top_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_seaShell7,
.hover_shadow_top_right_seaShell7:hover,
.active_shadow_top_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em -0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_top_right_seaShell7h,
.hover_shadow_top_right_seaShell7h:hover,
.active_shadow_top_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em -0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_top_right_seaShell7a,
.hover_shadow_top_right_seaShell7a:hover,
.active_shadow_top_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_top_right_seaShell7s,
.hover_shadow_top_right_seaShell7s:hover,
.active_shadow_top_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em -0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_seaShell7,
.hover_shadow_bottom_left_seaShell7:hover,
.active_shadow_bottom_left_seaShell7:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: -0.5em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_left_seaShell7h,
.hover_shadow_bottom_left_seaShell7h:hover,
.active_shadow_bottom_left_seaShell7h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: -0.5em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_left_seaShell7a,
.hover_shadow_bottom_left_seaShell7a:hover,
.active_shadow_bottom_left_seaShell7a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_left_seaShell7s,
.hover_shadow_bottom_left_seaShell7s:hover,
.active_shadow_bottom_left_seaShell7s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: -0.5em 0.5em 1em rgba(231, 95, 0, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_seaShell7,
.hover_shadow_bottom_right_seaShell7:hover,
.active_shadow_bottom_right_seaShell7:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
box-shadow: 0.5em 0.5em 1em rgba(154, 63, 0, .39);
}
.shadow_bottom_right_seaShell7h,
.hover_shadow_bottom_right_seaShell7h:hover,
.active_shadow_bottom_right_seaShell7h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
box-shadow: 0.5em 0.5em 1em rgba(185, 76, 0, .50);
}
.shadow_bottom_right_seaShell7a,
.hover_shadow_bottom_right_seaShell7a:hover,
.active_shadow_bottom_right_seaShell7a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .63);
}
.shadow_bottom_right_seaShell7s,
.hover_shadow_bottom_right_seaShell7s:hover,
.active_shadow_bottom_right_seaShell7s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
box-shadow: 0.5em 0.5em 1em rgba(231, 95, 0, .78);
} | 0.453262 | 0.121009 |
body {
font-family: 'Open Sans', sans-serif;
}
body .ui-autocomplete {
font-family: 'Open Sans', sans-serif;
background-color: #eaeaea;
color: black;
border-radius: 5px !important;
width: 32.5em !important;
}
body .ui-autocomplete:focus {
border-radius: 5px !important;
}
#stats {
display: inline-block;
list-style-type: none;
text-align: center;
margin-left: auto;
margin-right: auto;
}
#stats h2 {
font-size: 3em;
}
#loader {
position: fixed;
left: 50%;
top: 50%;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border: 7px solid #f3f3f3;
border-radius: 50%;
border-top: 7px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.popover {
width: 300px;
top: -0px;
color: black !important;
}
#searchIcon {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
position: relative;
padding: 4px;
top: -1.1px;
right: 33px;
color: white !important;
background-color: rgba(142, 6, 6, 0.86);
border: 1px solid rgba(142, 6, 6, 0.86);
}
#searchIcon:hover {
background-color: rgba(160, 7, 6, 0.96);
}
.navbar-default{
background: rgba(142, 6, 6, 0.86);
border:none !important;
}
#searchIcon:focus {
outline: none;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: white;
width: 25px;
height: 3px;
}
.navbar-toggle {
border: 1px solid rgba(142, 6, 6, 0.86) !important;
border-radius: 0% !important;
}
.navbar-toggle:hover {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
border: 1px solid rgba(142, 6, 6, 0.86) !important;
}
.navbar-toggle:active {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
border: 1px solid rgba(142, 6, 6, 0.86) !important;
}
.navbar-toggle:focus {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
top: 1px;
}
.navbar-toggle .icon-bar:nth-of-type(3) {
top: 2px;
}
.navbar-toggle .icon-bar {
position: relative;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
top: 6px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
background-color: transparent !important;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
top: -8px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.navbar-toggle {
/*border-radius: 0 !important;*/
color: white;
}
.introTekst input {
width: 25em;
height: 1.5em;
font-size: 1.3em;
border: 1px solid white;
border-radius: 3px;
padding: 5px;
vertical-align: top;
color: black;
margin-left: 35px;
}
.introTekst {
display: table-cell;
text-align: center;
vertical-align: middle;
vertical-align: middle;
}
.introTekst h1 {
color: #fff;
margin: 0;
padding: 0;
font-size: 4.1em;
font-weight: 700;
letter-spacing: 5px;
text-transform:uppercase;
text-decoration: underline;
}
select {
align-items: flex-start !important;
border-radius: 3px;
border: 1px solid white;
vertical-align: top;
width: 25em;
height: 1.5em;
color: black;
font-size: 1.3em;
margin-bottom: 2em;
}
select:focus {
outline: none;
}
select option {
font-size: 15px !important;
width: 20em !important;
}
.sok {
margin-top: 2em;
}
.sok input:focus {
/*outline: none;*/
}
#sokKnapp:hover {
background-color: white !important;
color: #8C0606 !important;
}
@media all and (max-width: 768px) {
.introTekst {
display: block;
text-align: center;
}
select {
display:block;
font-size: 1.2em;
width: 18em;
margin-left: auto;
margin-right: auto;
}
.sok input {
display:block;
font-size: 1.2em;
width: 18em;
margin-left: auto;
margin-right: auto;
}
#searchIcon {
font-size: 20px !important;
top: -26px;
left: 139px;
}
#infoCircle {
/*font-size: 30px !important;*/
display: none;
}
.introTekst h1 {
font-size: 2.5em;
letter-spacing: 2px !important;
}
.introTekst h3 {
font-size: 1.8em;
}
#sokKnapp {
width: 12em !important;
margin-top: 0.1em !important;
}
#loader {
position: fixed;
left: 55%;
top: 45%;
z-index: 1;
width: 100px;
height: 100px;
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
#numbers {
display: none;
}
body .ui-autocomplete {
width: 21.5em !important;
}
}
@media all and (max-width: 500px) {
.introTekst {
display: block;
text-align: center;
}
select {
display:block;
font-size: 1em;
width: 17em;
height: 1.7em;
margin-left: auto;
margin-right: auto;
border-radius: 0px !important;
}
.sok input {
display:block;
font-size: 1em;
width: 17em;
height: 1.8em;
margin-left: auto;
margin-right: auto;
border-radius: 0px !important;
}
#searchIcon {
font-size: 18px !important;
top: -26.7px;
left: 106px;
}
#infoCircle {
/*font-size: 30px !important;*/
display: none;
}
.introTekst h1 {
font-size: 1.8em;
letter-spacing: 0px !important;
}
.introTekst h3 {
font-size: 1.3em;
}
#sokKnapp {
width: 12em !important;
margin-top: 0.1em !important;
}
#loader {
position: fixed;
left: 59%;
top: 50%;
z-index: 1;
width: 90px;
height: 90px;
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
#numbers {
display: none;
}
body .ui-autocomplete {
width: 17em !important;
}
}
.navbar-default .navbar-nav>li>a {
color: white;
font-size: 18px;
font-weight: 200;
}
.navbar-default .navbar-nav>li>a:hover {
color: white;
background-color: #8C0606;
text-decoration: underline;
}
.navbar-default .navbar-nav>li>a:focus {
color: grey;
background-color: #8C0606;
}
.header {
display: table;
position: relative;
width: 100%;
padding-top: 10em;
padding-bottom: 1.3em;
background-color: #8C0606;
color: #fff;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#footer {
padding-top: 1.5em;
padding-bottom: 2em;
background: #333;
}
.footerTekst {
line-height: 18px;
}
.text-muted p {
font-size: .8em;
color: #777777;
}
#toppen {
display: none;
position: fixed;
bottom: 5px;
right: 5px;
} | css/forsideCSS.css | body {
font-family: 'Open Sans', sans-serif;
}
body .ui-autocomplete {
font-family: 'Open Sans', sans-serif;
background-color: #eaeaea;
color: black;
border-radius: 5px !important;
width: 32.5em !important;
}
body .ui-autocomplete:focus {
border-radius: 5px !important;
}
#stats {
display: inline-block;
list-style-type: none;
text-align: center;
margin-left: auto;
margin-right: auto;
}
#stats h2 {
font-size: 3em;
}
#loader {
position: fixed;
left: 50%;
top: 50%;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border: 7px solid #f3f3f3;
border-radius: 50%;
border-top: 7px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
@-webkit-keyframes spinner {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.popover {
width: 300px;
top: -0px;
color: black !important;
}
#searchIcon {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
position: relative;
padding: 4px;
top: -1.1px;
right: 33px;
color: white !important;
background-color: rgba(142, 6, 6, 0.86);
border: 1px solid rgba(142, 6, 6, 0.86);
}
#searchIcon:hover {
background-color: rgba(160, 7, 6, 0.96);
}
.navbar-default{
background: rgba(142, 6, 6, 0.86);
border:none !important;
}
#searchIcon:focus {
outline: none;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: white;
width: 25px;
height: 3px;
}
.navbar-toggle {
border: 1px solid rgba(142, 6, 6, 0.86) !important;
border-radius: 0% !important;
}
.navbar-toggle:hover {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
border: 1px solid rgba(142, 6, 6, 0.86) !important;
}
.navbar-toggle:active {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
border: 1px solid rgba(142, 6, 6, 0.86) !important;
}
.navbar-toggle:focus {
background-color: rgba(142, 6, 6, 0.86) !important;
color: white;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
top: 1px;
}
.navbar-toggle .icon-bar:nth-of-type(3) {
top: 2px;
}
.navbar-toggle .icon-bar {
position: relative;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
top: 6px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
background-color: transparent !important;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
top: -8px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.navbar-toggle {
/*border-radius: 0 !important;*/
color: white;
}
.introTekst input {
width: 25em;
height: 1.5em;
font-size: 1.3em;
border: 1px solid white;
border-radius: 3px;
padding: 5px;
vertical-align: top;
color: black;
margin-left: 35px;
}
.introTekst {
display: table-cell;
text-align: center;
vertical-align: middle;
vertical-align: middle;
}
.introTekst h1 {
color: #fff;
margin: 0;
padding: 0;
font-size: 4.1em;
font-weight: 700;
letter-spacing: 5px;
text-transform:uppercase;
text-decoration: underline;
}
select {
align-items: flex-start !important;
border-radius: 3px;
border: 1px solid white;
vertical-align: top;
width: 25em;
height: 1.5em;
color: black;
font-size: 1.3em;
margin-bottom: 2em;
}
select:focus {
outline: none;
}
select option {
font-size: 15px !important;
width: 20em !important;
}
.sok {
margin-top: 2em;
}
.sok input:focus {
/*outline: none;*/
}
#sokKnapp:hover {
background-color: white !important;
color: #8C0606 !important;
}
@media all and (max-width: 768px) {
.introTekst {
display: block;
text-align: center;
}
select {
display:block;
font-size: 1.2em;
width: 18em;
margin-left: auto;
margin-right: auto;
}
.sok input {
display:block;
font-size: 1.2em;
width: 18em;
margin-left: auto;
margin-right: auto;
}
#searchIcon {
font-size: 20px !important;
top: -26px;
left: 139px;
}
#infoCircle {
/*font-size: 30px !important;*/
display: none;
}
.introTekst h1 {
font-size: 2.5em;
letter-spacing: 2px !important;
}
.introTekst h3 {
font-size: 1.8em;
}
#sokKnapp {
width: 12em !important;
margin-top: 0.1em !important;
}
#loader {
position: fixed;
left: 55%;
top: 45%;
z-index: 1;
width: 100px;
height: 100px;
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
#numbers {
display: none;
}
body .ui-autocomplete {
width: 21.5em !important;
}
}
@media all and (max-width: 500px) {
.introTekst {
display: block;
text-align: center;
}
select {
display:block;
font-size: 1em;
width: 17em;
height: 1.7em;
margin-left: auto;
margin-right: auto;
border-radius: 0px !important;
}
.sok input {
display:block;
font-size: 1em;
width: 17em;
height: 1.8em;
margin-left: auto;
margin-right: auto;
border-radius: 0px !important;
}
#searchIcon {
font-size: 18px !important;
top: -26.7px;
left: 106px;
}
#infoCircle {
/*font-size: 30px !important;*/
display: none;
}
.introTekst h1 {
font-size: 1.8em;
letter-spacing: 0px !important;
}
.introTekst h3 {
font-size: 1.3em;
}
#sokKnapp {
width: 12em !important;
margin-top: 0.1em !important;
}
#loader {
position: fixed;
left: 59%;
top: 50%;
z-index: 1;
width: 90px;
height: 90px;
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #EE2323;
-webkit-animation: spinner 1s linear infinite;
animation: spinner 1s linear infinite;
}
#numbers {
display: none;
}
body .ui-autocomplete {
width: 17em !important;
}
}
.navbar-default .navbar-nav>li>a {
color: white;
font-size: 18px;
font-weight: 200;
}
.navbar-default .navbar-nav>li>a:hover {
color: white;
background-color: #8C0606;
text-decoration: underline;
}
.navbar-default .navbar-nav>li>a:focus {
color: grey;
background-color: #8C0606;
}
.header {
display: table;
position: relative;
width: 100%;
padding-top: 10em;
padding-bottom: 1.3em;
background-color: #8C0606;
color: #fff;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#footer {
padding-top: 1.5em;
padding-bottom: 2em;
background: #333;
}
.footerTekst {
line-height: 18px;
}
.text-muted p {
font-size: .8em;
color: #777777;
}
#toppen {
display: none;
position: fixed;
bottom: 5px;
right: 5px;
} | 0.432663 | 0.118054 |
@media only screen and (max-width: 1500px) {
.category-section:before {
left: -60px;
right: auto;
top: -20px
}
}
@media only screen and (max-width: 1280px) {
.home .home-page-banner .social {
top: 100%;
display: block
}
.home-page-banner .social {
position: absolute;
right: 10px;
top: 100%;
z-index: 99;
margin-top: 15px;
display: none
}
.category-item {padding-top: 130px;}
}
@media only screen and (max-width: 1430px) {
.login-form-content, .signup-form-content {
padding: 0 5% 0 18%;
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%)
}
.burger-menu nav
{
padding: 0 5% 0 18%;
}
.burger-menu nav.shape-animation
{
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.FrontEnd_pages_Faq .content:before, .FrontEnd_pages_SupplierTackandCare .content:before {
left: -208px
}
.client-item {
padding: 50px
}
}
@media only screen and (max-width: 1230px) {
.login-form-content, .signup-form-content {
padding: 0 3% 0 13%;
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%)
}
.burger-menu nav
{
padding: 0 3% 0 13%;
}
.burger-menu nav.shape-animation
{
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.how-does-it-work {
padding: 100px 0;
clip-path: polygon(0 0, 100% 8%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 8%, 100% 90%, 0 100%)
}
.client-say {
margin-top: 50px
}
.related_suppliers.featured-vendors {
margin-top: 70px
}
.custom-select {
font-size: 12px
}
}
@media only screen and (max-width: 1050px) {
.benifit-description {
padding: 0 15px 15px
}
}
@media only screen and (max-width: 1199px) {
.filter_search{padding: 20px;}
.custom-select .select-selected{font-size: 11px; padding: 14px 12px;}
.custom-select .select-selected:before,.chosen-container-multi .chosen-choices::before{
background-size: 14px;
background-position: calc(100% - 12px) center;
height: 16px;
}
.filter-search-btn{padding: 13px 15px;}
}
@media (min-width: 992px) and (max-width: 1199px) {
.category-list li {
width: calc(100% / 5)
}
ul.category-list-nav li {
width: calc(100% / 5)
}
}
@media only screen and (max-width: 991px) {
input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
font-size: 12px
}
h2 {
font-size: 28px
}
.close-icon {
right: 30px
}
, .login-form-content, .signup-form-content {
width: 60%;
padding: 0 2% 0 16%;
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%)
}
.nice-select {
font-size: 12px;
background-size: 14px;
background-position: calc(100% - 10px) center
}
/* .filter-form {
display: flex;
align-items: center;
width: 100%
}*/
/* .filter_search .search-field-custom {
width: calc(28% - 10px);
margin-right: 10px
}*/
/* .search-field-custom.filter-btn {
width: 18%;
padding: 0;
margin-right: 0
}*/
.filter-search-btn {
font-size: 12px;
padding: 15px
}
.filter-search-btn i {
padding-top: 1px
}
.header-navigation .main_menu {
display: none
}
.header-cta-btn {
display: none
}
.work-block {
max-width: 100%;
padding: 0 10px
}
.category-list li {
width: calc(100% / 4)
}
ul.category-list-nav li {
width: calc(100% / 4)
}
.category-block .category-name {
letter-spacing: .8px
}
.category-block .category-icon {
height: 80px
}
.category-block .category-icon img {
max-height: 50px
}
ul.category-list-nav li a {
letter-spacing: 1px
}
.our-block-list-img img {
width: 100%
}
.our-block-list-content {
padding-left: 20px
}
.our-block-list-content h4 {
font-size: 18px
}
ul.obl-nav li a {
font-size: 12px;
padding: 0 9px
}
.our-block-list-content p {
font-size: 10pt;
margin: 10px 0
}
.obl-bottom .obl-button a.btn {
margin-right: 8px;
font-size: 12px;
letter-spacing: 1px;
padding: 10px 15px
}
.obl-bottom .obl-button a.obl-heart-btn i {
font-size: 14px;
width: 30px;
height: 30px;
line-height: 30px
}
.gradient-rating li i {
font-size: 14px
}
#blog-search-section:after, #blog-search-section:before, .FrontEnd_pages_Blog .recent-event .container:after {
display: none
}
.FrontEnd_pages_OurSuppliers .content:after, .FrontEnd_pages_OurSuppliers .content:before {
display: none
}
.FrontEnd_pages_ArticleBlogPage .article-profile:before, .FrontEnd_pages_ArticleBlogPage .recent-event .container:before, .video-block:after {
display: none
}
header .container {
padding: 0 15px
}
select {
font-size: 12px;
background-position: calc(100% - 10px) center
}
.how-does-it-work {
padding: 60px 0;
clip-path: polygon(0 0, 100% 4%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 4%, 100% 95%, 0 100%)
}
.category-slider:after {
left: 0
}
.burger-menu ul li a {
font-size: 20px
}
.footer-widget-title, .widget_links a {
font-size: 14px;
}
.single-footer-widget {
padding-left: 20px
}
.footer-widgets .single-footer-widget:first-child {
padding-left: 0
}
.home header:before {
height: 330px
}
.related_suppliers:before {
height: 300px
}
.custom-select {
font-size: 11px
}
.benifit-description h4 {
font-size: 18px
}
.benifit-item .benifit-description p {
font-size: 14px;
line-height: normal
}
.instagram-feed {
margin-bottom: -130px
}
footer {
clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%)
}
.sidebar-block.planning-block .title-block .sub-heading {
font-size: 22px
}
.left-sidebar .sidebar-block.planning-block .title-block h2 {
font-size: 32px
}
.planning-block {
padding: 15px
}
.gallery-gradient-block {
-webkit-clip-path: polygon(0 0, 100% 16%, 100% 80%, 0 100%);
clip-path: polygon(0 0, 100% 16%, 100% 80%, 0 100%)
}
.supplier-block h3 {
line-height: normal
}
label.error {
font-size: 13px
}
.rate:not(:checked) > label {
font-size: 16px;
width: 17px
}
.leave-review button {
font-size: 12px
}
.leave-review {
padding: 30px 15px
}
.work-img {
justify-content: flex-start;
width: 130px
}
.how-does-it-work p {
width: calc(100% - 130px);
padding-left: 10px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items p {
padding-left: 0;
padding-right: 10px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items .work-img {
justify-content: flex-end
}
.filter_search {
padding: 20px
}
.gallery-slider .slick-slide.slick-current.slick-active + .slick-active img {
height: 240px
}
.our-block-list-img{width: 180px;}
.event-details > .row >div {padding: 0 5px 0 0;}
.event-title{font-size: 14px;}
.burger-menu nav, .login-form-content, .signup-form-content{width: 60%;}
.burger-menu nav.shape-animation,.login-form-content, .signup-form-content {
clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);}
.FrontEnd_pages_OurStory h2{font-size: 40px;}
}
.search-supplier {
display: none
}
.mobile-blog-btn {
display: none
}
.banner-mobile-button {
display: none
}
@media only screen and (max-width: 767px) {
h1 {
font-size: 32px;
margin-bottom: 20px
}
h2 {
font-size: 30px;
margin-bottom: 20px
}
.home header:before {
height: 260px
}
.filter_search {
max-width: 100%;
margin: -80px auto 0;
width: 85%
}
.category-list {
margin-left: -10px;
margin-right: -10px
}
.category-list li {
width: calc(100% / 3);
padding: 0 10px;
padding-bottom: 20px
}
.category-block .category-name {
font-size: 12px;
letter-spacing: 0
}
.category-list-section {
display: none
}
.login-form-content, .signup-form-content {
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
width: 100%;
padding: 0 5% 0 35%
}
.burger-menu nav
{
width: 100%;
padding: 0 5% 0 35%
}
.burger-menu nav.shape-animation
{
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.banner img {
width: 100%;
height: 300px;
object-fit: cover
}
.filter_search .search-field-custom {
width: 100%;
padding-right: 0;
display: block;
vertical-align: top;
margin-bottom: 15px
}
footer .filter_search .search-field-custom{width: 100%;}
.search-field-custom.filter-btn {
width: 100%;
padding: 0;
text-align: center;
margin: 0 auto;
}
.how-does-it-work {
clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
padding: 50px 0
}
footer {
clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%)
}
.single-footer-widget {
display: none
}
.single-footer-widget:first-child {
display: block;
width: 100%
}
.footer-bottom-content {
padding: 20px 0 0;
margin-top: 15px
}
.widget_links.address, .widget_links.follow {
margin-top: 15px
}
.widget_links.newsletter {
margin-top: 15px
}
.company-profile .right-part {
order: 1
}
.company-profile .left-part {
order: 2;
text-align: center
}
.company-description {
width: 100%;
text-align: center
}
.sidebar-block.search-supplier {
width: 90%;
margin: 20px auto 40px auto;
display: block
}
.search-supplier .search-block {
display: inline-block;
width: 100%
}
.search-supplier .search-block select {
margin: 15px 0
}
.search-supplier .search-block .nice-select {
margin: 15px 0
}
.search-supplier .search-block button {
max-width: 100%;
margin: 0
}
.sidebar-block .title-block h2 {
font-size: 24px
}
.sidebar-drop-btn {
width: 30px;
height: 30px
}
a.sidebar-drop-btn i {
font-size: 20px
}
.breadcrumb-block {
display: none
}
.planning-block {
display: none
}
.obl-bottom .obl-button a.obl-heart-btn, .obl-bottom .olb-ratings {
display: none
}
.obl-bottom .obl-button {
width: 100%
}
.mobile-blog-btn {
display: inline-block
}
.our-block-list-img {
padding-bottom: 50px
}
.our-block-list-img img {
width: 100%;
margin-bottom: 10px
}
.mobile-blog-btn a.obl-heart-btn {
position: absolute;
bottom: 0;
left: 0
}
ul.pagination-block li:first-child a, ul.pagination-block li:last-child a {
width: 80px
}
ul.pagination-block li {
margin-bottom: 10px
}
ul.pagination-block li a {
font-size: 14px
}
.banner-mobile-button {
display: block;
max-width: 80%;
margin: -30px auto 0;
position: relative;
z-index: 9;
border-radius: 5px;
z-index: 1;
background: linear-gradient(90deg, #fff 0, #e4557e 0, #707aea 100%);
-webkit-animation: gradient 10s ease infinite;
animation: gradient 10s ease infinite
}
.banner-mobile-button a {
font-family: 'Playfair Display', serif;
font-size: 18px;
color: #fff !important;
font-weight: 700;
padding: 15px 20px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center
}
.banner-mobile-button a span {
width: 30px;
display: inline-block;
float: right
}
section.home-page-banner {
margin-bottom: 40px
}
section#atveroeos {
text-align: center;
margin-top: 40px;
margin-bottom: 100px;
overflow: hidden
}
body.become-a-supplier .featured-vendors {
display: none
}
.nav-btn button {
display: block;
margin-bottom: 15px
}
.related-articles:before {
clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%)
}
.artical-item {
margin-bottom: 50px
}
.related-articles {
padding: 35px 0 0
}
.artical-date {
margin-bottom: 20px
}
.article-blog {
padding: 20px 0 0
}
.our-gallery {
padding: 50px 0 0
}
.gallery-gradient-block {
-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%)
}
.our-story, .our-story-1, .our-story-2, .our-story-3 {
text-align: center
}
.our-story-2:before {
display: none
}
.story-desc {
padding-bottom: 40px
}
.our-story-2 .container:after {
display: none
}
.our-story-3 .container:before {
display: none
}
.our-story-2 {
padding: 50px 0 0
}
.our-story-2 .container:before {
right: 50px;
left: auto;
top: -250px
}
.our-story-2 .container:before {
right: 30px;
top: -212px;
height: 220px;
width: 100px;
background-size: contain
}
.the-benefits {
padding: 40px 0 90px
}
.the-benefits:before {
clip-path: polygon(0 0, 100% 12%, 100% 85%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 12%, 100% 85%, 0 100%)
}
.supplier-block p {
margin-bottom: 20px
}
.supplier-block ol {
padding-left: 30px;
margin-bottom: 20px
}
.search-block {
display: block
}
.faq-title h2 {
font-size: 24px
}
#faq-section .search-block {
margin: 40px auto 60px
}
#blog-search-section .search-block .nice-select {
margin-left: 0;
margin-top: 20px
}
.search-block button {
max-width: 100%;
margin-left: 0;
width: 100%;
margin-top: 15px
}
.filter-search-btn {
max-width: 100%;
margin-top: 0
}
.close-icon {
right: 40px
}
.featured-vendors .container:before {
height: 131px;
width: 90px;
background-size: 100%;
left: 40%;
top: 10px
}
.the-benefits .container:before {
display: none
}
.featured-vendors .container:after {
display: none
}
footer .filter_search {
padding: 0 0 30px;
max-width: 100%;
width: 100%
}
.footer-content-block {
width: 70%;
margin: 0 auto
}
footer {
padding: 180px 0 40px;
margin-top: 0px
}
.event-service {
margin-bottom: 15px
}
.company-info {
padding: 20px 0 0;
text-align: center
}
.company-info ul {
display: inline-block;
text-align: center
}
.company-info ul li:last-child {
margin: 0
}
.leave-review .rating {
margin: 10px 0
}
.leave-review button {
display: block;
margin: 0 auto
}
.benifit-img img {
width: 100%;
height: 300px;
object-fit: cover
}
.benifit-description h4 {
bottom: 0
}
.benifit-item {
max-width: 100%;
flex: 0 0 100%
}
.category-item:before {
left: -40px;
top: 75px;
background-size: contain;
height: 90px;
width: 90px
}
.category-slider:before {
height: 100px;
width: 122px;
background-size: contain;
right: 15%
}
.category-slider:after {
left: -13px;
top: 168px;
height: 175px;
width: 122px;
background-size: contain
}
.how-does-it-work p {
font-size: 16px;
line-height: 22px
}
.footer-bottom-content .widget_links {
margin-bottom: 24px
}
.footer-bottom-content .widget_links p {
font-size: 16px;
font-family: Avenir-Medium
}
.social li {
height: 40px;
width: 40px;
margin-right: 20px
}
.social li a i {
line-height: 40px;
font-size: 20px
}
.widget_links.follow .footer-widget-title.menu-item {
display: block;
margin-bottom: 10px
}
.category-section:before {
top: 118px;
height: 150px;
width: 150px;
background-size: 100%;
left: -31px
}
.category-section:after {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
height: 256px;
width: 177px;
left: auto;
right: -20px;
top: 32%;
z-index: -1
}
.nav-icon span {
height: 2px
}
.FrontEnd_pages_SupplierDetails .recent-event .container:before {
display: none
}
#blog-search-section {
position: relative;
max-width: 80%;
width: 100%;
margin: -80px auto 0
}
#blog-search-section .container {
padding-left: 0;
padding-right: 0
}
section#blog-section {
margin-top: 40px
}
.blog-item {
margin-bottom: 0
}
.category-item .common-btn {
display: none
}
.category-block {
height: 124px
}
.featured-vendors {
padding: 0 0 0;
margin-top: 50px;
}
.featured-vendors:before {
bottom: -20px;
right: 30px
}
.FrontEnd_pages_BecomeSupplier .home-page-banner .col-sm-12:before {
display: none
}
#atveroeos {
position: relative
}
#atveroeos:before {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
right: -77px;
height: 150px;
width: 150px;
top: -30px;
background-size: contain;
overflow: hidden
}
#atveroeos h2 {
font-size: 24px;
padding: 0 15px
}
.instagram-block {
width: 33.333333%;
display: inline-block;
vertical-align: top
}
.instagram-block:nth-child(4), .instagram-block:nth-child(5) {
display: none
}
.instagram-feed {
margin-bottom: 0;
margin-top: 0
}
.instagram_gallery a img {
width: 100% !important
}
.benifit-item .benifit-description p {
bottom: 0
}
select {
background-position: calc(100% - 12px) center
}
.obl-bottom .obl-button a.btn {
margin: 0
}
.newsletter input {
background: 0 0;
border: 2px solid #fff;
color: #fff
}
.newsletter input[type=email]::placeholder {
color: #fff
}
.home-page-banner .social {
display: none
}
.home .home-page-banner .social {
right: 10px;
top: 100%;
margin-top: 30px;
display: block
}
.how-does-it-work .no {
padding: 0
}
#quotes, #quotes-1, #quotes-2, #quotes-3 {
top: -40px;
left: 0;
right: 0;
margin: 0 auto
}
.client-item {
text-align: center;
padding: 30px
}
#blog-search-section .search-block .custom-select {
margin: 15px 0 0 0
}
.contact-area .edit-btn {
right: 0;
bottom: auto;
left: auto;
top: 6px
}
.vendor-item {
padding: 20px
}
.dashboard_tab_button ul li .nav-link {
font-size: 24px;
max-width: 500px;
margin: 0 auto;
width: 100%;
text-transform: capitalize;
letter-spacing: 1.2px;
font-family: 'Playfair Display', serif;
font-weight: 700
}
.dashboard-accordion .panel-heading {
margin-bottom: 20px
}
.dashboard-accordion .panel-title {
background: linear-gradient(61deg, #fff 0, #f84e6b 0, #c84e6b 50%, #715dfc 100%);
color: #fff;
font-size: 24px;
max-width: 500px;
width: 100%;
text-transform: capitalize;
letter-spacing: 1.2px;
font-family: 'Playfair Display', serif;
font-weight: 700;
margin: 0 auto;
line-height: normal;
padding: 10px 15px;
border-radius: 10px
}
.dashboard-accordion .panel-title:active, .dashboard-accordion .panel-title:hover {
color: #fff
}
.dashboard-accordion .panel-title a {
line-height: normal;
width: 100%;
display: block;
position: relative;
color: #fff
}
.dashboard-accordion .panel-title a:before {
font-family: 'Font Awesome 5 Pro';
font-weight: 400;
position: absolute;
content: "\f078";
height: 30px;
width: 30px;
background: #fff;
border-radius: 50%;
color: #5973e6;
right: 0;
line-height: normal;
left: auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
flex-direction: column;
padding-left: 2px;
}
.dashboard-accordion .panel-title.main_acc.active_panel a:before{
transform: scaleY(-1);
-webkit-transform: scaleY(-1);
}
.dashboard-accordion .panel-body h2 {
display: none
}
.dashboard-accordion .panel-collapse {
margin-top: 30px
}
.client-say:after, .client-say:before {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-4.svg) no-repeat center center;
left: auto;
top: -180px;
height: 188px;
width: 144px;
right: 12%;
z-index: -1
}
.client-say:after {
background: transparent url(../images/layers/orange-circle.svg) no-repeat center center;
top: auto;
bottom: 40px;
width: 196px;
height: 196px;
background-size: 100%;
left: auto;
right: -100px;
z-index: -1;
overflow: hidden;
}
.client-say .container:after {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-4.svg) no-repeat center center;
top: auto;
bottom: -70px;
width: 145px;
height: 187px;
background-size: 100%;
left: -15px;
right: auto
}
#faq-section {
padding-bottom: 110px
}
#faq-section:before {
position: absolute;
content: "";
background: transparent url(../images/layers/circle.svg) no-repeat center center;
left: auto;
right: -60px;
bottom: -120px;
background-size: contain;
height: 196px;
width: 196px;
z-index: -9
}
.dashboard-accordion .panel-body {
margin-bottom: 50px
}
.modal-close {
position: absolute;
top: 0;
right: 0;
z-index: 1;
opacity: 1
}
.modal-close img {
width: 20px
}
.mobile-modal.modal .modal-dialog {
width: 100%;
max-width: 700px;
padding: 0 15px
}
.mobile-modal .modal-content {
margin: auto;
background: 0 0;
border: 0
}
.header-right .burger-menu ul {
text-align: center
}
.menu-nav-btn {
padding-top: 15px
}
.menu-nav-btn a:first-child {
margin: 0 auto 15px
}
.menu-nav-btn .black-btn {
display: block;
margin: 0 auto
}
.menu-nav-btn button:first-child{
margin:0 auto 15px;
}
.custom-filed-login {
max-width: 100%;
width: 70%;
margin: 0 auto;
text-align: center
}
.filter-form {
display: block
}
.event-service .common-btn {
font-size: 13px;
display: inline-block;
letter-spacing: 0;
width: auto;
padding: 0;
margin-bottom: 0;
width: 30px;
height: 30px;
border-radius: 4px;
text-align: center;
line-height: 30px
}
.invoice-form {
margin-bottom: 40px;
}
.card-container #payment-form{padding-bottom: 30px;}
.dashboard-accordion .account.list-accordion-content .card-body{padding: 0;}
.dashboard-accordion .list-title {padding-right: 0;}
#contact-section{margin-bottom: 30px;}
.widget_links .footer-widget-title.menu-item{
margin-bottom: 10px;
}
.business-profile{
display: block;
}
.company-img{margin-bottom: 15px;}
.company-img img{width: 80%;}
}
@media only screen and (max-width: 767px) {
.login-form-content, .signup-form-content {
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
width: 80%;
padding: 0
}
.burger-menu nav
{
width: 80%;
padding: 0
}
.burger-menu nav.shape-animation
{
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.curdmodel .sidebar-block {
margin: 0
}
.company-slider:before {
right: -16px;
height: 150px;
width: 150px;
bottom: -56px
}
.FrontEnd_pages_Blog .recent-event {
margin-top: 40px
}
.mobile-accordions h2 {
display: none
}
.dashboard_tab_button .mobile-accordions {
margin-top: 40px
}
.dashboard_tab_button ul li a span {
right: 15px
}
.dashboard_tab_button ul li a span i {
background: linear-gradient(to right, #f84e6b 0, #5973e6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent
}
.error_form h1 {
font-size: 130px;
line-height: 120px;
letter-spacing: 4px;
margin: 0 0 30px
}
.error_form h2 {
font-size: 18px;
line-height: 22px;
margin-bottom: 14px
}
.error_form p {
font-size: 15px;
margin-bottom: 22px;
line-height: 21px
}
.chosen-container {
width: 100% !important
}
ul.blog-listing li {
width: calc(100% / 2)
}
.dashboard_tab_button ul li a span {
background: #fff;
height: 40px;
width: 40px;
border-radius: 50%;
transform: translateY(-50%) rotate(90deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column
}
.FrontEnd_pages_SupplierDetails .content:before {
position: absolute;
content: "";
background: transparent url(../images/layers/blue-circle.svg) no-repeat center center;
right: 140px;
height: 130px;
width: 130px;
bottom: 0;
z-index: -1;
background-size: cover
}
}
@media only screen and (max-width: 576px) {
.logo-box {
width: 80%
}
.header-navigation.header-right {
width: 20%
}
.login-form-content, .signup-form-content {
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
width: 100%;
padding: 0;
text-align: center
}
.burger-menu nav
{
width: 100%;
padding: 0;
text-align: center
}
.burger-menu nav.shape-animation
{
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.burger-menu ul li a {
font-size: 20px
}
.menu-nav-btn .black-btn {
display: block;
}
.header-right .burger-menu .menu-items .close-icon + ul {
width: 100%
}
.close-icon.menu-close i {
position: absolute;
top: -24px;
right: -32px
}
.menu-nav-btn .black-btn {
max-width: 200px;
font-size: 14px
}
.forgott p a {
font-size: 12px
}
.custom-checkbox-label {
font-size: 12px
}
.login-from h2, .sign-up-from h2 {
font-size: 26px
}
.how-does-it-work p {
font-size: 14px
}
.category-slider .cat-logo .cat-name {
font-size: 12px;
letter-spacing: 1px
}
.footer-content-block {
width: 80%
}
ul.blog-listing li {
width: calc(100% / 1)
}
.event-details > .row > div {
width: 50%
}
.messenger_right .list-title p{display: block;}
.messenger_right .list-title p .span_message_alert{max-width: 180px;margin-top: 8px;margin-right: 0;}
}
@media only screen and (max-width: 400px) {
.category-list li {
width: calc(100% / 2)
}
}
@media only screen and (max-width: 479px) {
ul.obl-nav li {
display: block
}
ul.obl-nav li a {
padding: 0
}
ul.obl-nav li:before {
display: none
}
.how-does-it-work {
clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%)
}
.the-benefits:before {
clip-path: polygon(0 0, 100% 12%, 100% 90%, 0 100%)
}
.work-img {
width: 80px
}
.work-img img {
max-width: 100%
}
.how-does-it-work p {
width: calc(100% - 80px);
padding-left: 20px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items p {
padding-left: 0;
padding-right: 20px
}
.how-work-items {
align-items: center
}
.home-page-banner {
margin-bottom: 30px
}
.our-story-2 {
padding: 50px 0 0
}
.menu-nav-btn {
padding-top: 20px
}
.banner-text h2 {
font-size: 24px
}
.filter_search {
width: 75%;
padding: 20px 15px
}
.payment-block .cvv {
width: 100%
}
.payment-block .cvc{width: 100%;}
.payment-block .expiration {
width: 100%
}
.FrontEnd_pages_pricetire header:before{height: 290px;}
.related_suppliers:before {
clip-path: polygon(0 0, 100% 25%, 100% 85%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 20%, 100% 85%, 0 100%)
}
.company-info ul li {
display: block;
margin-bottom: 10px;
padding: 0
}
.company-info ul li:before {
display: none
}
.company-info ul li a {
padding: 0
}
.company-info ul li a:after {
display: none
}
#faq-section .search-block {
margin: 40px auto 40px
}
.event-details {
padding: 15px
}
.event-service .table td {
padding: 0 15px 10px 0
}
.FrontEnd_pages_SupplierDetails .content:before {
bottom: 50px
}
.featured-vendors:before {
bottom: 20px
}
.event-title {
font-size: 13px
}
.client-say:before {
top: -200px;
right: 3%
}
.work-block {
padding: 0
}
.custom-select .select-selected{padding: 14px 10px;font-size: 10px;}
.custom-select .select-selected:before{background-size: 14px;height:16px;background-position: calc(100% - 10px) center;}
.chosen-container-multi .chosen-choices::before{background-size: 14px;height:16px;background-position: calc(100% - 10px) center;}
}
@media only screen and (max-width: 991px) {
.event-service .table tr {
border-bottom: 1px solid #c8c9f5
}
.event-service .table tr:last-child {
border-bottom: 0
}
ul.pagination-block li a {
margin: 0 1px
}
.list-drop-btn {
height: 35px;
width: 35px;
top: 50%;
transform: translateY(-50%)
}
.list-title h5 {
font-size: 14px
}
.list-accordion-content-box p {
font-size: 14px
}
.list-accordion .list-title .list-drop-btn i {
font-size: 20px;
top: 0
}
.list-accordion.open-accordion .list-title .list-drop-btn i {
top: -2px
}
.list-accordion {
margin-bottom: 30px
}
.account-input .common-btn i {
font-size: 14px
}
#downloads .event-service .table tbody td.location_dd {
width: 100% !important
}
.messenger_right {
-ms-flex: 0 0 84%;
flex: 0 0 84%;
max-width: 84%
}
.messenger_left {
-ms-flex: 0 0 16%;
flex: 0 0 16%;
max-width: 16%
}
#messenger .list-title p {
font-size: 14px
}
#messenger .list-accordion-content-box p {
font-size: 14px
}
.messenger_left img {
width: 60px;
height: 60px
}
.FrontEnd_pages_Faq .content #faq-section > .container:before, .FrontEnd_pages_SupplierTackandCare .content .supplier-block > .container:before {
display: none
}
.FrontEnd_pages_Faq .content #faq-section > .container:after, .FrontEnd_pages_SupplierTackandCare .content .supplier-block > .container:after {
display: none
}
.FrontEnd_pages_Faq .content:before, .FrontEnd_pages_SupplierTackandCare .content:before {
display: none
}
.contact-area .account-nav .common-btn {
margin-left: 8px
}
#downloads .event-service .table tr > td.edit_dd, #downloads .event-service .table tr > td.remove_dd, #wishlist .event-service .table tr > td.remove_dd {
height: auto
}
#messenger .list-accordion-content-box p {
padding-bottom: 10px
}
#contact-section .location-box {
margin-top: 30px
}
.sidebar-block.planning-block .title-block .sub-heading {
font-size: 22px
}
.left-sidebar .sidebar-block.planning-block .title-block h2 {
font-size: 32px
}
#our-suppliers-block .col-sm-12.col-md-4 {
flex: 0 0 40%;
max-width: 40%
}
#our-suppliers-block .col-sm-12.col-md-8 {
flex: 0 0 60%;
max-width: 60%
}
}
@media only screen and (max-width: 767px) {
.sidebar-block {
margin: 0 0 40px 0;
padding: 20px 15px
}
.home .featured-vendors:before {
display: block
}
.filter_form_category .btn.white-btn {
display: block;
margin: 0 auto
}
#contact-section .sidebar-block {
margin: 0
}
.event-service {
margin-bottom: 0
}
.modal-content .sidebar-block .title-block {
display: block
}
.get-touch .title-block + .get-touch-btn-block {
display: none
}
.get-touch .title-block > a {
cursor: pointer;
pointer-events: auto;
padding: 18px 20px;
display: block;
width: 100%
}
.get-touch .new-btn-right {
width: 30px;
height: 30px;
top: 50%;
font-size: 20px;
transform: translateY(-50%);
right: 20px;
display: flex;
}
.sidebar-block.get-touch .title-block h2 {
margin-bottom: 0;
font-size: 20px;
line-height: normal;
}
.right-part > .sidebar-block.get-touch {
max-width: 80%;
width: 100%;
margin: -30px auto 20px;
border-radius: 6px;
padding: 0
}
#get-in-touch .get-touch-btn-block h2 {
margin-bottom: 20px !important;
font-size: 24px;
position: relative;
top: -6px
}
.get-touch #get-in-touch .get-touch-btn-block a {
cursor: pointer;
pointer-events: inherit
}
.share-btns {
position: relative;
margin-bottom: 20px
}
.company-carousel .slick-next, .company-carousel .slick-prev {
top: 10px;
bottom: inherit;
z-index: 1
}
.company-carousel .slick-next {
right: 10px
}
.company-carousel .slick-prev {
right: 50px
}
.common-btn {
padding: 14px 15px
}
.get-touch-btn-block button.close {
position: absolute;
top: -8px;
right: 0;
color: #fff;
opacity: 1;
font-weight: 400;
font-size: 36px
}
.get-touch .fa-chevron-up:before {
content: "\f078";
padding-top: 2px
}
.related_suppliers.featured-vendors {
padding: 90px 0 50px
}
.featured-vendors.related_suppliers:before {
height: 250px;
width: 100%
}
.company-carousel .slick-slide {
padding: 0
}
.company-carousel img {
height: 160px;
object-fit: cover
}
.event-item {
width: 33.33%
}
.review {
text-align: left
}
.related_suppliers.featured-vendors .container:before {
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
left: auto;
right: 30px;
top: -100px;
z-index: -1;
width: 95px;
height: 136px;
background-size: cover
}
.recent-event {
margin-bottom: 40px;
margin-top: 0;
display: inline-block;
width: 100%
}
.FrontEnd_pages_SupplierDetails .recent-event:before {
display: none
}
.FrontEnd_pages_SupplierDetails .content {
position: relative
}
.related_suppliers.featured-vendors .container:after {
left: inherit;
right: 26px;
width: 70px;
height: 100px;
background-size: cover;
display: inline-block
}
.leave-review .rate {
width: 100%;
text-align: center;
margin: 0 auto 10px;
float: none;
max-width: 105px;
}
.leave-review p input {
text-align: center;
margin-bottom: 10px;
font-size: 12px
}
.rate:not(:checked) > label {
margin: 0 2px
}
.FrontEnd_pages_BecomeSupplier .recent-event .container:before {
left: 40%;
width: 130px;
height: 130px;
top: -60px
}
#atveroeos .container:after, #atveroeos .container:before {
display: none
}
.FrontEnd_pages_BecomeSupplier .recent-event:before {
left: 4px;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 80px;
height: 120px;
width: 120px;
background-size: contain;
z-index: -1
}
.FrontEnd_pages_BecomeSupplier .recent-event:after {
left: -48px;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 56px;
height: 120px;
width: 120px;
background-size: contain;
z-index: -1
}
.FrontEnd_pages_Help .content:before {
display: none
}
.FrontEnd_pages_Help .recent-event:before {
position: absolute;
content: "";
background: transparent url(../images/layers/suppliers-circle-shape.svg) no-repeat center center;
right: -36px;
bottom: 66px;
height: 122px;
width: 122px;
z-index: -1;
background-size: cover
}
.messenger_right {
-ms-flex: 0 0 80%;
flex: 0 0 80%;
max-width: 80%
}
.messenger_left {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%
}
.dashboard-list {
margin-bottom: 20px
}
.profile img {
width: 100%
}
.contact-area {
padding: 30px 0 30px 0;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center
}
.account-input button {
max-width: 90px
}
.account-nav .common-btn {
margin: 15px 0 0 0
}
.account-nav {
display: flex;
flex-direction: initial !important;
flex-wrap: unset;
align-items: baseline
}
.account-nav #wishlist_tab {
padding-right: 15px
}
#messenger .invoice {
max-width: 100px;
width: 100%
}
.messenger_right .list-drop-btn {
top: 50%
}
#messenger .list-title p {
font-size: 14px;
padding-right: 45px
}
.modal.show .modal-dialog {
max-width: 700px;
padding: 0 15px
}
.modal.show .modal-dialog {
margin: 50px auto;
top: auto;
transform: none
}
.menu-nav-link {
left: 10px;
bottom: 10px;
right: 0;
text-align: center;
margin: auto
}
.menu-nav-link li {
margin-right: 5px
}
.custom-h2 .h2 {
font-size: 18px
}
.logo-invoice {
margin-bottom: 40px
}
.messenger_left img {
width: 50px;
height: 50px
}
#layer-1 {
right: 12%;
top: -164px;
width: 120px
}
#layer-2 {
top: 81%;
right: 70%;
width: 120px
}
#layer-3 {
bottom: 15%;
right: -80px;
width: 150px
}
.FrontEnd_pages_Help .search-block {
max-width: 85%;
width: 100%;
margin: -80px auto 0
}
.list-accordion-section-neww .list-accordion-content-box {
padding: 0 50px 10px 0
}
.list-accordion-section-neww {
margin-top: 30px
}
.FrontEnd_pages_OurStory .home-page-banner .col-sm-12:before {
right: 24px;
height: 100px;
width: 100px;
bottom: -40px
}
.story-title {
line-height: 30px;
font-size: 24px
}
.story-desc p {
margin-bottom: 1rem;
font-size: 16px
}
.FrontEnd_pages_OurStory h2 {
font-size: 40px
}
.our-story .container:after, .our-story .container:before {
height: 220px;
width: 130px;
bottom: -247px;
background-size: contain;
left: -40px
}
.our-story .container:after {
left: 40px;
bottom: -210px
}
.supplier-block h3 {
font-size: 20px;
line-height: normal;
text-align: center;
}
.supplier-block p {
font-size: 16px;
padding: 0 15px;
text-align: center;
}
.supplier-block ol {
font-size: 16px;
text-align: center;
}
.supplier-block h3 br {
display: none
}
.banner-text h2:before {
height: 2px;
width: 20%;
bottom: -20px
}
.payerror-sec {
padding: 1.5rem
}
.profile-picture {
width: 300px;
height: 300px;
margin: auto;
border-radius: 20px;
padding-left: 0;
padding-right: 0
}
.edit-profile {
right: 20px
}
.contact-area {
padding: 0 0 30px 0
}
#customer_edit_account {
right: 20px;
top: 0;
font-size: 20px
}
.conversion span.date_time_created {
top: auto;
display: block;
float: none;
position: relative;
padding-top: 5px;
}
#messenger .list-accordion-content-box p {
padding-right: 0
}
.page-item.active .page-link, ul.pagination li a {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 14px;
margin: 0 2px
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
width: 90px;
height: 30px;
line-height: 30px;
font-size: 0px;
margin: 0 2px;
font-weight: 400;
font-family: Avenir-Light
}
.page-item:first-child .page-link:before, .page-item:last-child .page-link:before {font-size: 14px;}
/* .page-item:first-child .page-link:before, .page-item:last-child .page-link:before {
display: none
}
*/
#our-suppliers-block {
margin-top: 50px;
z-index: 0;
overflow: hidden;
}
.FrontEnd_pages_OurSuppliers .home-page-banner .col-sm-12:before {
right: 0px;
height: 140px;
width: 140px;
bottom: -150px;
z-index: -1;
overflow: hidden;
}
.FrontEnd_pages_OurSuppliers .recent-event:before {
left: 46%;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 96px;
height: 100px;
width: 100px;
background-size: cover;
z-index: -1
}
.FrontEnd_pages_OurSuppliers .recent-event:after {
left: 30%;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 70px;
height: 108px;
width: 100px;
background-size: cover;
z-index: -1
}
#our-suppliers-block:before {
left: -65px;
top: 50%;
height: 150px;
width: 150px;
transform: translateY(-50%);
z-index: -1;overflow: hidden;
}
#our-suppliers-block .col-sm-12.col-md-4 {
flex: 0 0 100%;
max-width: 100%
}
#our-suppliers-block .col-sm-12.col-md-8 {
flex: 0 0 100%;
max-width: 100%
}
.event-service .table th {
padding: 0 20px 10px 0;
text-align: left
}
.event-service table thead th {
font-size: 14px
}
}
@media only screen and (max-width: 360px) {
.event-service .table tbody td:before {
font-size: 12px
}
.burger-menu ul li a {
font-size: 14px
}
.burger-menu ul li {
padding-bottom: 10px
}
.menu-nav-link {
left: 10px;
bottom: 10px
}
.menu-nav-link li {
margin-right: 5px
}
.card-container #payment-form {
padding: 20px 15px 30px 15px
}
.custom-h2 .mb-2 {
font-size: 14px
}
.custom-h2 .h2 {
font-size: 16px
}
.messenger_left img {
width: 40px;
height: 40px
}
.modal .sidebar-block .title-block h2 {
margin-bottom: 10px
}
.modal .sidebar-block {
padding: 15px;
margin-bottom: 0
}
.modal label {
font-size: 14px
}
.modal .form-group {
margin-bottom: 10px
}
} | public/css/responsive.css | @media only screen and (max-width: 1500px) {
.category-section:before {
left: -60px;
right: auto;
top: -20px
}
}
@media only screen and (max-width: 1280px) {
.home .home-page-banner .social {
top: 100%;
display: block
}
.home-page-banner .social {
position: absolute;
right: 10px;
top: 100%;
z-index: 99;
margin-top: 15px;
display: none
}
.category-item {padding-top: 130px;}
}
@media only screen and (max-width: 1430px) {
.login-form-content, .signup-form-content {
padding: 0 5% 0 18%;
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%)
}
.burger-menu nav
{
padding: 0 5% 0 18%;
}
.burger-menu nav.shape-animation
{
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.FrontEnd_pages_Faq .content:before, .FrontEnd_pages_SupplierTackandCare .content:before {
left: -208px
}
.client-item {
padding: 50px
}
}
@media only screen and (max-width: 1230px) {
.login-form-content, .signup-form-content {
padding: 0 3% 0 13%;
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%)
}
.burger-menu nav
{
padding: 0 3% 0 13%;
}
.burger-menu nav.shape-animation
{
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.how-does-it-work {
padding: 100px 0;
clip-path: polygon(0 0, 100% 8%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 8%, 100% 90%, 0 100%)
}
.client-say {
margin-top: 50px
}
.related_suppliers.featured-vendors {
margin-top: 70px
}
.custom-select {
font-size: 12px
}
}
@media only screen and (max-width: 1050px) {
.benifit-description {
padding: 0 15px 15px
}
}
@media only screen and (max-width: 1199px) {
.filter_search{padding: 20px;}
.custom-select .select-selected{font-size: 11px; padding: 14px 12px;}
.custom-select .select-selected:before,.chosen-container-multi .chosen-choices::before{
background-size: 14px;
background-position: calc(100% - 12px) center;
height: 16px;
}
.filter-search-btn{padding: 13px 15px;}
}
@media (min-width: 992px) and (max-width: 1199px) {
.category-list li {
width: calc(100% / 5)
}
ul.category-list-nav li {
width: calc(100% / 5)
}
}
@media only screen and (max-width: 991px) {
input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
font-size: 12px
}
h2 {
font-size: 28px
}
.close-icon {
right: 30px
}
, .login-form-content, .signup-form-content {
width: 60%;
padding: 0 2% 0 16%;
clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%)
}
.nice-select {
font-size: 12px;
background-size: 14px;
background-position: calc(100% - 10px) center
}
/* .filter-form {
display: flex;
align-items: center;
width: 100%
}*/
/* .filter_search .search-field-custom {
width: calc(28% - 10px);
margin-right: 10px
}*/
/* .search-field-custom.filter-btn {
width: 18%;
padding: 0;
margin-right: 0
}*/
.filter-search-btn {
font-size: 12px;
padding: 15px
}
.filter-search-btn i {
padding-top: 1px
}
.header-navigation .main_menu {
display: none
}
.header-cta-btn {
display: none
}
.work-block {
max-width: 100%;
padding: 0 10px
}
.category-list li {
width: calc(100% / 4)
}
ul.category-list-nav li {
width: calc(100% / 4)
}
.category-block .category-name {
letter-spacing: .8px
}
.category-block .category-icon {
height: 80px
}
.category-block .category-icon img {
max-height: 50px
}
ul.category-list-nav li a {
letter-spacing: 1px
}
.our-block-list-img img {
width: 100%
}
.our-block-list-content {
padding-left: 20px
}
.our-block-list-content h4 {
font-size: 18px
}
ul.obl-nav li a {
font-size: 12px;
padding: 0 9px
}
.our-block-list-content p {
font-size: 10pt;
margin: 10px 0
}
.obl-bottom .obl-button a.btn {
margin-right: 8px;
font-size: 12px;
letter-spacing: 1px;
padding: 10px 15px
}
.obl-bottom .obl-button a.obl-heart-btn i {
font-size: 14px;
width: 30px;
height: 30px;
line-height: 30px
}
.gradient-rating li i {
font-size: 14px
}
#blog-search-section:after, #blog-search-section:before, .FrontEnd_pages_Blog .recent-event .container:after {
display: none
}
.FrontEnd_pages_OurSuppliers .content:after, .FrontEnd_pages_OurSuppliers .content:before {
display: none
}
.FrontEnd_pages_ArticleBlogPage .article-profile:before, .FrontEnd_pages_ArticleBlogPage .recent-event .container:before, .video-block:after {
display: none
}
header .container {
padding: 0 15px
}
select {
font-size: 12px;
background-position: calc(100% - 10px) center
}
.how-does-it-work {
padding: 60px 0;
clip-path: polygon(0 0, 100% 4%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 4%, 100% 95%, 0 100%)
}
.category-slider:after {
left: 0
}
.burger-menu ul li a {
font-size: 20px
}
.footer-widget-title, .widget_links a {
font-size: 14px;
}
.single-footer-widget {
padding-left: 20px
}
.footer-widgets .single-footer-widget:first-child {
padding-left: 0
}
.home header:before {
height: 330px
}
.related_suppliers:before {
height: 300px
}
.custom-select {
font-size: 11px
}
.benifit-description h4 {
font-size: 18px
}
.benifit-item .benifit-description p {
font-size: 14px;
line-height: normal
}
.instagram-feed {
margin-bottom: -130px
}
footer {
clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%)
}
.sidebar-block.planning-block .title-block .sub-heading {
font-size: 22px
}
.left-sidebar .sidebar-block.planning-block .title-block h2 {
font-size: 32px
}
.planning-block {
padding: 15px
}
.gallery-gradient-block {
-webkit-clip-path: polygon(0 0, 100% 16%, 100% 80%, 0 100%);
clip-path: polygon(0 0, 100% 16%, 100% 80%, 0 100%)
}
.supplier-block h3 {
line-height: normal
}
label.error {
font-size: 13px
}
.rate:not(:checked) > label {
font-size: 16px;
width: 17px
}
.leave-review button {
font-size: 12px
}
.leave-review {
padding: 30px 15px
}
.work-img {
justify-content: flex-start;
width: 130px
}
.how-does-it-work p {
width: calc(100% - 130px);
padding-left: 10px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items p {
padding-left: 0;
padding-right: 10px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items .work-img {
justify-content: flex-end
}
.filter_search {
padding: 20px
}
.gallery-slider .slick-slide.slick-current.slick-active + .slick-active img {
height: 240px
}
.our-block-list-img{width: 180px;}
.event-details > .row >div {padding: 0 5px 0 0;}
.event-title{font-size: 14px;}
.burger-menu nav, .login-form-content, .signup-form-content{width: 60%;}
.burger-menu nav.shape-animation,.login-form-content, .signup-form-content {
clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);}
.FrontEnd_pages_OurStory h2{font-size: 40px;}
}
.search-supplier {
display: none
}
.mobile-blog-btn {
display: none
}
.banner-mobile-button {
display: none
}
@media only screen and (max-width: 767px) {
h1 {
font-size: 32px;
margin-bottom: 20px
}
h2 {
font-size: 30px;
margin-bottom: 20px
}
.home header:before {
height: 260px
}
.filter_search {
max-width: 100%;
margin: -80px auto 0;
width: 85%
}
.category-list {
margin-left: -10px;
margin-right: -10px
}
.category-list li {
width: calc(100% / 3);
padding: 0 10px;
padding-bottom: 20px
}
.category-block .category-name {
font-size: 12px;
letter-spacing: 0
}
.category-list-section {
display: none
}
.login-form-content, .signup-form-content {
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
width: 100%;
padding: 0 5% 0 35%
}
.burger-menu nav
{
width: 100%;
padding: 0 5% 0 35%
}
.burger-menu nav.shape-animation
{
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.banner img {
width: 100%;
height: 300px;
object-fit: cover
}
.filter_search .search-field-custom {
width: 100%;
padding-right: 0;
display: block;
vertical-align: top;
margin-bottom: 15px
}
footer .filter_search .search-field-custom{width: 100%;}
.search-field-custom.filter-btn {
width: 100%;
padding: 0;
text-align: center;
margin: 0 auto;
}
.how-does-it-work {
clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
padding: 50px 0
}
footer {
clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%)
}
.single-footer-widget {
display: none
}
.single-footer-widget:first-child {
display: block;
width: 100%
}
.footer-bottom-content {
padding: 20px 0 0;
margin-top: 15px
}
.widget_links.address, .widget_links.follow {
margin-top: 15px
}
.widget_links.newsletter {
margin-top: 15px
}
.company-profile .right-part {
order: 1
}
.company-profile .left-part {
order: 2;
text-align: center
}
.company-description {
width: 100%;
text-align: center
}
.sidebar-block.search-supplier {
width: 90%;
margin: 20px auto 40px auto;
display: block
}
.search-supplier .search-block {
display: inline-block;
width: 100%
}
.search-supplier .search-block select {
margin: 15px 0
}
.search-supplier .search-block .nice-select {
margin: 15px 0
}
.search-supplier .search-block button {
max-width: 100%;
margin: 0
}
.sidebar-block .title-block h2 {
font-size: 24px
}
.sidebar-drop-btn {
width: 30px;
height: 30px
}
a.sidebar-drop-btn i {
font-size: 20px
}
.breadcrumb-block {
display: none
}
.planning-block {
display: none
}
.obl-bottom .obl-button a.obl-heart-btn, .obl-bottom .olb-ratings {
display: none
}
.obl-bottom .obl-button {
width: 100%
}
.mobile-blog-btn {
display: inline-block
}
.our-block-list-img {
padding-bottom: 50px
}
.our-block-list-img img {
width: 100%;
margin-bottom: 10px
}
.mobile-blog-btn a.obl-heart-btn {
position: absolute;
bottom: 0;
left: 0
}
ul.pagination-block li:first-child a, ul.pagination-block li:last-child a {
width: 80px
}
ul.pagination-block li {
margin-bottom: 10px
}
ul.pagination-block li a {
font-size: 14px
}
.banner-mobile-button {
display: block;
max-width: 80%;
margin: -30px auto 0;
position: relative;
z-index: 9;
border-radius: 5px;
z-index: 1;
background: linear-gradient(90deg, #fff 0, #e4557e 0, #707aea 100%);
-webkit-animation: gradient 10s ease infinite;
animation: gradient 10s ease infinite
}
.banner-mobile-button a {
font-family: 'Playfair Display', serif;
font-size: 18px;
color: #fff !important;
font-weight: 700;
padding: 15px 20px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center
}
.banner-mobile-button a span {
width: 30px;
display: inline-block;
float: right
}
section.home-page-banner {
margin-bottom: 40px
}
section#atveroeos {
text-align: center;
margin-top: 40px;
margin-bottom: 100px;
overflow: hidden
}
body.become-a-supplier .featured-vendors {
display: none
}
.nav-btn button {
display: block;
margin-bottom: 15px
}
.related-articles:before {
clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%)
}
.artical-item {
margin-bottom: 50px
}
.related-articles {
padding: 35px 0 0
}
.artical-date {
margin-bottom: 20px
}
.article-blog {
padding: 20px 0 0
}
.our-gallery {
padding: 50px 0 0
}
.gallery-gradient-block {
-webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%)
}
.our-story, .our-story-1, .our-story-2, .our-story-3 {
text-align: center
}
.our-story-2:before {
display: none
}
.story-desc {
padding-bottom: 40px
}
.our-story-2 .container:after {
display: none
}
.our-story-3 .container:before {
display: none
}
.our-story-2 {
padding: 50px 0 0
}
.our-story-2 .container:before {
right: 50px;
left: auto;
top: -250px
}
.our-story-2 .container:before {
right: 30px;
top: -212px;
height: 220px;
width: 100px;
background-size: contain
}
.the-benefits {
padding: 40px 0 90px
}
.the-benefits:before {
clip-path: polygon(0 0, 100% 12%, 100% 85%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 12%, 100% 85%, 0 100%)
}
.supplier-block p {
margin-bottom: 20px
}
.supplier-block ol {
padding-left: 30px;
margin-bottom: 20px
}
.search-block {
display: block
}
.faq-title h2 {
font-size: 24px
}
#faq-section .search-block {
margin: 40px auto 60px
}
#blog-search-section .search-block .nice-select {
margin-left: 0;
margin-top: 20px
}
.search-block button {
max-width: 100%;
margin-left: 0;
width: 100%;
margin-top: 15px
}
.filter-search-btn {
max-width: 100%;
margin-top: 0
}
.close-icon {
right: 40px
}
.featured-vendors .container:before {
height: 131px;
width: 90px;
background-size: 100%;
left: 40%;
top: 10px
}
.the-benefits .container:before {
display: none
}
.featured-vendors .container:after {
display: none
}
footer .filter_search {
padding: 0 0 30px;
max-width: 100%;
width: 100%
}
.footer-content-block {
width: 70%;
margin: 0 auto
}
footer {
padding: 180px 0 40px;
margin-top: 0px
}
.event-service {
margin-bottom: 15px
}
.company-info {
padding: 20px 0 0;
text-align: center
}
.company-info ul {
display: inline-block;
text-align: center
}
.company-info ul li:last-child {
margin: 0
}
.leave-review .rating {
margin: 10px 0
}
.leave-review button {
display: block;
margin: 0 auto
}
.benifit-img img {
width: 100%;
height: 300px;
object-fit: cover
}
.benifit-description h4 {
bottom: 0
}
.benifit-item {
max-width: 100%;
flex: 0 0 100%
}
.category-item:before {
left: -40px;
top: 75px;
background-size: contain;
height: 90px;
width: 90px
}
.category-slider:before {
height: 100px;
width: 122px;
background-size: contain;
right: 15%
}
.category-slider:after {
left: -13px;
top: 168px;
height: 175px;
width: 122px;
background-size: contain
}
.how-does-it-work p {
font-size: 16px;
line-height: 22px
}
.footer-bottom-content .widget_links {
margin-bottom: 24px
}
.footer-bottom-content .widget_links p {
font-size: 16px;
font-family: Avenir-Medium
}
.social li {
height: 40px;
width: 40px;
margin-right: 20px
}
.social li a i {
line-height: 40px;
font-size: 20px
}
.widget_links.follow .footer-widget-title.menu-item {
display: block;
margin-bottom: 10px
}
.category-section:before {
top: 118px;
height: 150px;
width: 150px;
background-size: 100%;
left: -31px
}
.category-section:after {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
height: 256px;
width: 177px;
left: auto;
right: -20px;
top: 32%;
z-index: -1
}
.nav-icon span {
height: 2px
}
.FrontEnd_pages_SupplierDetails .recent-event .container:before {
display: none
}
#blog-search-section {
position: relative;
max-width: 80%;
width: 100%;
margin: -80px auto 0
}
#blog-search-section .container {
padding-left: 0;
padding-right: 0
}
section#blog-section {
margin-top: 40px
}
.blog-item {
margin-bottom: 0
}
.category-item .common-btn {
display: none
}
.category-block {
height: 124px
}
.featured-vendors {
padding: 0 0 0;
margin-top: 50px;
}
.featured-vendors:before {
bottom: -20px;
right: 30px
}
.FrontEnd_pages_BecomeSupplier .home-page-banner .col-sm-12:before {
display: none
}
#atveroeos {
position: relative
}
#atveroeos:before {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
right: -77px;
height: 150px;
width: 150px;
top: -30px;
background-size: contain;
overflow: hidden
}
#atveroeos h2 {
font-size: 24px;
padding: 0 15px
}
.instagram-block {
width: 33.333333%;
display: inline-block;
vertical-align: top
}
.instagram-block:nth-child(4), .instagram-block:nth-child(5) {
display: none
}
.instagram-feed {
margin-bottom: 0;
margin-top: 0
}
.instagram_gallery a img {
width: 100% !important
}
.benifit-item .benifit-description p {
bottom: 0
}
select {
background-position: calc(100% - 12px) center
}
.obl-bottom .obl-button a.btn {
margin: 0
}
.newsletter input {
background: 0 0;
border: 2px solid #fff;
color: #fff
}
.newsletter input[type=email]::placeholder {
color: #fff
}
.home-page-banner .social {
display: none
}
.home .home-page-banner .social {
right: 10px;
top: 100%;
margin-top: 30px;
display: block
}
.how-does-it-work .no {
padding: 0
}
#quotes, #quotes-1, #quotes-2, #quotes-3 {
top: -40px;
left: 0;
right: 0;
margin: 0 auto
}
.client-item {
text-align: center;
padding: 30px
}
#blog-search-section .search-block .custom-select {
margin: 15px 0 0 0
}
.contact-area .edit-btn {
right: 0;
bottom: auto;
left: auto;
top: 6px
}
.vendor-item {
padding: 20px
}
.dashboard_tab_button ul li .nav-link {
font-size: 24px;
max-width: 500px;
margin: 0 auto;
width: 100%;
text-transform: capitalize;
letter-spacing: 1.2px;
font-family: 'Playfair Display', serif;
font-weight: 700
}
.dashboard-accordion .panel-heading {
margin-bottom: 20px
}
.dashboard-accordion .panel-title {
background: linear-gradient(61deg, #fff 0, #f84e6b 0, #c84e6b 50%, #715dfc 100%);
color: #fff;
font-size: 24px;
max-width: 500px;
width: 100%;
text-transform: capitalize;
letter-spacing: 1.2px;
font-family: 'Playfair Display', serif;
font-weight: 700;
margin: 0 auto;
line-height: normal;
padding: 10px 15px;
border-radius: 10px
}
.dashboard-accordion .panel-title:active, .dashboard-accordion .panel-title:hover {
color: #fff
}
.dashboard-accordion .panel-title a {
line-height: normal;
width: 100%;
display: block;
position: relative;
color: #fff
}
.dashboard-accordion .panel-title a:before {
font-family: 'Font Awesome 5 Pro';
font-weight: 400;
position: absolute;
content: "\f078";
height: 30px;
width: 30px;
background: #fff;
border-radius: 50%;
color: #5973e6;
right: 0;
line-height: normal;
left: auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
flex-direction: column;
padding-left: 2px;
}
.dashboard-accordion .panel-title.main_acc.active_panel a:before{
transform: scaleY(-1);
-webkit-transform: scaleY(-1);
}
.dashboard-accordion .panel-body h2 {
display: none
}
.dashboard-accordion .panel-collapse {
margin-top: 30px
}
.client-say:after, .client-say:before {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-4.svg) no-repeat center center;
left: auto;
top: -180px;
height: 188px;
width: 144px;
right: 12%;
z-index: -1
}
.client-say:after {
background: transparent url(../images/layers/orange-circle.svg) no-repeat center center;
top: auto;
bottom: 40px;
width: 196px;
height: 196px;
background-size: 100%;
left: auto;
right: -100px;
z-index: -1;
overflow: hidden;
}
.client-say .container:after {
position: absolute;
content: "";
background: transparent url(../images/layers/shape-4.svg) no-repeat center center;
top: auto;
bottom: -70px;
width: 145px;
height: 187px;
background-size: 100%;
left: -15px;
right: auto
}
#faq-section {
padding-bottom: 110px
}
#faq-section:before {
position: absolute;
content: "";
background: transparent url(../images/layers/circle.svg) no-repeat center center;
left: auto;
right: -60px;
bottom: -120px;
background-size: contain;
height: 196px;
width: 196px;
z-index: -9
}
.dashboard-accordion .panel-body {
margin-bottom: 50px
}
.modal-close {
position: absolute;
top: 0;
right: 0;
z-index: 1;
opacity: 1
}
.modal-close img {
width: 20px
}
.mobile-modal.modal .modal-dialog {
width: 100%;
max-width: 700px;
padding: 0 15px
}
.mobile-modal .modal-content {
margin: auto;
background: 0 0;
border: 0
}
.header-right .burger-menu ul {
text-align: center
}
.menu-nav-btn {
padding-top: 15px
}
.menu-nav-btn a:first-child {
margin: 0 auto 15px
}
.menu-nav-btn .black-btn {
display: block;
margin: 0 auto
}
.menu-nav-btn button:first-child{
margin:0 auto 15px;
}
.custom-filed-login {
max-width: 100%;
width: 70%;
margin: 0 auto;
text-align: center
}
.filter-form {
display: block
}
.event-service .common-btn {
font-size: 13px;
display: inline-block;
letter-spacing: 0;
width: auto;
padding: 0;
margin-bottom: 0;
width: 30px;
height: 30px;
border-radius: 4px;
text-align: center;
line-height: 30px
}
.invoice-form {
margin-bottom: 40px;
}
.card-container #payment-form{padding-bottom: 30px;}
.dashboard-accordion .account.list-accordion-content .card-body{padding: 0;}
.dashboard-accordion .list-title {padding-right: 0;}
#contact-section{margin-bottom: 30px;}
.widget_links .footer-widget-title.menu-item{
margin-bottom: 10px;
}
.business-profile{
display: block;
}
.company-img{margin-bottom: 15px;}
.company-img img{width: 80%;}
}
@media only screen and (max-width: 767px) {
.login-form-content, .signup-form-content {
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
width: 80%;
padding: 0
}
.burger-menu nav
{
width: 80%;
padding: 0
}
.burger-menu nav.shape-animation
{
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.curdmodel .sidebar-block {
margin: 0
}
.company-slider:before {
right: -16px;
height: 150px;
width: 150px;
bottom: -56px
}
.FrontEnd_pages_Blog .recent-event {
margin-top: 40px
}
.mobile-accordions h2 {
display: none
}
.dashboard_tab_button .mobile-accordions {
margin-top: 40px
}
.dashboard_tab_button ul li a span {
right: 15px
}
.dashboard_tab_button ul li a span i {
background: linear-gradient(to right, #f84e6b 0, #5973e6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent
}
.error_form h1 {
font-size: 130px;
line-height: 120px;
letter-spacing: 4px;
margin: 0 0 30px
}
.error_form h2 {
font-size: 18px;
line-height: 22px;
margin-bottom: 14px
}
.error_form p {
font-size: 15px;
margin-bottom: 22px;
line-height: 21px
}
.chosen-container {
width: 100% !important
}
ul.blog-listing li {
width: calc(100% / 2)
}
.dashboard_tab_button ul li a span {
background: #fff;
height: 40px;
width: 40px;
border-radius: 50%;
transform: translateY(-50%) rotate(90deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column
}
.FrontEnd_pages_SupplierDetails .content:before {
position: absolute;
content: "";
background: transparent url(../images/layers/blue-circle.svg) no-repeat center center;
right: 140px;
height: 130px;
width: 130px;
bottom: 0;
z-index: -1;
background-size: cover
}
}
@media only screen and (max-width: 576px) {
.logo-box {
width: 80%
}
.header-navigation.header-right {
width: 20%
}
.login-form-content, .signup-form-content {
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
width: 100%;
padding: 0;
text-align: center
}
.burger-menu nav
{
width: 100%;
padding: 0;
text-align: center
}
.burger-menu nav.shape-animation
{
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
-webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.burger-menu ul li a {
font-size: 20px
}
.menu-nav-btn .black-btn {
display: block;
}
.header-right .burger-menu .menu-items .close-icon + ul {
width: 100%
}
.close-icon.menu-close i {
position: absolute;
top: -24px;
right: -32px
}
.menu-nav-btn .black-btn {
max-width: 200px;
font-size: 14px
}
.forgott p a {
font-size: 12px
}
.custom-checkbox-label {
font-size: 12px
}
.login-from h2, .sign-up-from h2 {
font-size: 26px
}
.how-does-it-work p {
font-size: 14px
}
.category-slider .cat-logo .cat-name {
font-size: 12px;
letter-spacing: 1px
}
.footer-content-block {
width: 80%
}
ul.blog-listing li {
width: calc(100% / 1)
}
.event-details > .row > div {
width: 50%
}
.messenger_right .list-title p{display: block;}
.messenger_right .list-title p .span_message_alert{max-width: 180px;margin-top: 8px;margin-right: 0;}
}
@media only screen and (max-width: 400px) {
.category-list li {
width: calc(100% / 2)
}
}
@media only screen and (max-width: 479px) {
ul.obl-nav li {
display: block
}
ul.obl-nav li a {
padding: 0
}
ul.obl-nav li:before {
display: none
}
.how-does-it-work {
clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%)
}
.the-benefits:before {
clip-path: polygon(0 0, 100% 12%, 100% 90%, 0 100%)
}
.work-img {
width: 80px
}
.work-img img {
max-width: 100%
}
.how-does-it-work p {
width: calc(100% - 80px);
padding-left: 20px
}
.how-does-it-work .col-md-12.col-sm-12:nth-child(even) .how-work-items p {
padding-left: 0;
padding-right: 20px
}
.how-work-items {
align-items: center
}
.home-page-banner {
margin-bottom: 30px
}
.our-story-2 {
padding: 50px 0 0
}
.menu-nav-btn {
padding-top: 20px
}
.banner-text h2 {
font-size: 24px
}
.filter_search {
width: 75%;
padding: 20px 15px
}
.payment-block .cvv {
width: 100%
}
.payment-block .cvc{width: 100%;}
.payment-block .expiration {
width: 100%
}
.FrontEnd_pages_pricetire header:before{height: 290px;}
.related_suppliers:before {
clip-path: polygon(0 0, 100% 25%, 100% 85%, 0 100%);
-webkit-clip-path: polygon(0 0, 100% 20%, 100% 85%, 0 100%)
}
.company-info ul li {
display: block;
margin-bottom: 10px;
padding: 0
}
.company-info ul li:before {
display: none
}
.company-info ul li a {
padding: 0
}
.company-info ul li a:after {
display: none
}
#faq-section .search-block {
margin: 40px auto 40px
}
.event-details {
padding: 15px
}
.event-service .table td {
padding: 0 15px 10px 0
}
.FrontEnd_pages_SupplierDetails .content:before {
bottom: 50px
}
.featured-vendors:before {
bottom: 20px
}
.event-title {
font-size: 13px
}
.client-say:before {
top: -200px;
right: 3%
}
.work-block {
padding: 0
}
.custom-select .select-selected{padding: 14px 10px;font-size: 10px;}
.custom-select .select-selected:before{background-size: 14px;height:16px;background-position: calc(100% - 10px) center;}
.chosen-container-multi .chosen-choices::before{background-size: 14px;height:16px;background-position: calc(100% - 10px) center;}
}
@media only screen and (max-width: 991px) {
.event-service .table tr {
border-bottom: 1px solid #c8c9f5
}
.event-service .table tr:last-child {
border-bottom: 0
}
ul.pagination-block li a {
margin: 0 1px
}
.list-drop-btn {
height: 35px;
width: 35px;
top: 50%;
transform: translateY(-50%)
}
.list-title h5 {
font-size: 14px
}
.list-accordion-content-box p {
font-size: 14px
}
.list-accordion .list-title .list-drop-btn i {
font-size: 20px;
top: 0
}
.list-accordion.open-accordion .list-title .list-drop-btn i {
top: -2px
}
.list-accordion {
margin-bottom: 30px
}
.account-input .common-btn i {
font-size: 14px
}
#downloads .event-service .table tbody td.location_dd {
width: 100% !important
}
.messenger_right {
-ms-flex: 0 0 84%;
flex: 0 0 84%;
max-width: 84%
}
.messenger_left {
-ms-flex: 0 0 16%;
flex: 0 0 16%;
max-width: 16%
}
#messenger .list-title p {
font-size: 14px
}
#messenger .list-accordion-content-box p {
font-size: 14px
}
.messenger_left img {
width: 60px;
height: 60px
}
.FrontEnd_pages_Faq .content #faq-section > .container:before, .FrontEnd_pages_SupplierTackandCare .content .supplier-block > .container:before {
display: none
}
.FrontEnd_pages_Faq .content #faq-section > .container:after, .FrontEnd_pages_SupplierTackandCare .content .supplier-block > .container:after {
display: none
}
.FrontEnd_pages_Faq .content:before, .FrontEnd_pages_SupplierTackandCare .content:before {
display: none
}
.contact-area .account-nav .common-btn {
margin-left: 8px
}
#downloads .event-service .table tr > td.edit_dd, #downloads .event-service .table tr > td.remove_dd, #wishlist .event-service .table tr > td.remove_dd {
height: auto
}
#messenger .list-accordion-content-box p {
padding-bottom: 10px
}
#contact-section .location-box {
margin-top: 30px
}
.sidebar-block.planning-block .title-block .sub-heading {
font-size: 22px
}
.left-sidebar .sidebar-block.planning-block .title-block h2 {
font-size: 32px
}
#our-suppliers-block .col-sm-12.col-md-4 {
flex: 0 0 40%;
max-width: 40%
}
#our-suppliers-block .col-sm-12.col-md-8 {
flex: 0 0 60%;
max-width: 60%
}
}
@media only screen and (max-width: 767px) {
.sidebar-block {
margin: 0 0 40px 0;
padding: 20px 15px
}
.home .featured-vendors:before {
display: block
}
.filter_form_category .btn.white-btn {
display: block;
margin: 0 auto
}
#contact-section .sidebar-block {
margin: 0
}
.event-service {
margin-bottom: 0
}
.modal-content .sidebar-block .title-block {
display: block
}
.get-touch .title-block + .get-touch-btn-block {
display: none
}
.get-touch .title-block > a {
cursor: pointer;
pointer-events: auto;
padding: 18px 20px;
display: block;
width: 100%
}
.get-touch .new-btn-right {
width: 30px;
height: 30px;
top: 50%;
font-size: 20px;
transform: translateY(-50%);
right: 20px;
display: flex;
}
.sidebar-block.get-touch .title-block h2 {
margin-bottom: 0;
font-size: 20px;
line-height: normal;
}
.right-part > .sidebar-block.get-touch {
max-width: 80%;
width: 100%;
margin: -30px auto 20px;
border-radius: 6px;
padding: 0
}
#get-in-touch .get-touch-btn-block h2 {
margin-bottom: 20px !important;
font-size: 24px;
position: relative;
top: -6px
}
.get-touch #get-in-touch .get-touch-btn-block a {
cursor: pointer;
pointer-events: inherit
}
.share-btns {
position: relative;
margin-bottom: 20px
}
.company-carousel .slick-next, .company-carousel .slick-prev {
top: 10px;
bottom: inherit;
z-index: 1
}
.company-carousel .slick-next {
right: 10px
}
.company-carousel .slick-prev {
right: 50px
}
.common-btn {
padding: 14px 15px
}
.get-touch-btn-block button.close {
position: absolute;
top: -8px;
right: 0;
color: #fff;
opacity: 1;
font-weight: 400;
font-size: 36px
}
.get-touch .fa-chevron-up:before {
content: "\f078";
padding-top: 2px
}
.related_suppliers.featured-vendors {
padding: 90px 0 50px
}
.featured-vendors.related_suppliers:before {
height: 250px;
width: 100%
}
.company-carousel .slick-slide {
padding: 0
}
.company-carousel img {
height: 160px;
object-fit: cover
}
.event-item {
width: 33.33%
}
.review {
text-align: left
}
.related_suppliers.featured-vendors .container:before {
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
left: auto;
right: 30px;
top: -100px;
z-index: -1;
width: 95px;
height: 136px;
background-size: cover
}
.recent-event {
margin-bottom: 40px;
margin-top: 0;
display: inline-block;
width: 100%
}
.FrontEnd_pages_SupplierDetails .recent-event:before {
display: none
}
.FrontEnd_pages_SupplierDetails .content {
position: relative
}
.related_suppliers.featured-vendors .container:after {
left: inherit;
right: 26px;
width: 70px;
height: 100px;
background-size: cover;
display: inline-block
}
.leave-review .rate {
width: 100%;
text-align: center;
margin: 0 auto 10px;
float: none;
max-width: 105px;
}
.leave-review p input {
text-align: center;
margin-bottom: 10px;
font-size: 12px
}
.rate:not(:checked) > label {
margin: 0 2px
}
.FrontEnd_pages_BecomeSupplier .recent-event .container:before {
left: 40%;
width: 130px;
height: 130px;
top: -60px
}
#atveroeos .container:after, #atveroeos .container:before {
display: none
}
.FrontEnd_pages_BecomeSupplier .recent-event:before {
left: 4px;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 80px;
height: 120px;
width: 120px;
background-size: contain;
z-index: -1
}
.FrontEnd_pages_BecomeSupplier .recent-event:after {
left: -48px;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 56px;
height: 120px;
width: 120px;
background-size: contain;
z-index: -1
}
.FrontEnd_pages_Help .content:before {
display: none
}
.FrontEnd_pages_Help .recent-event:before {
position: absolute;
content: "";
background: transparent url(../images/layers/suppliers-circle-shape.svg) no-repeat center center;
right: -36px;
bottom: 66px;
height: 122px;
width: 122px;
z-index: -1;
background-size: cover
}
.messenger_right {
-ms-flex: 0 0 80%;
flex: 0 0 80%;
max-width: 80%
}
.messenger_left {
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%
}
.dashboard-list {
margin-bottom: 20px
}
.profile img {
width: 100%
}
.contact-area {
padding: 30px 0 30px 0;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center
}
.account-input button {
max-width: 90px
}
.account-nav .common-btn {
margin: 15px 0 0 0
}
.account-nav {
display: flex;
flex-direction: initial !important;
flex-wrap: unset;
align-items: baseline
}
.account-nav #wishlist_tab {
padding-right: 15px
}
#messenger .invoice {
max-width: 100px;
width: 100%
}
.messenger_right .list-drop-btn {
top: 50%
}
#messenger .list-title p {
font-size: 14px;
padding-right: 45px
}
.modal.show .modal-dialog {
max-width: 700px;
padding: 0 15px
}
.modal.show .modal-dialog {
margin: 50px auto;
top: auto;
transform: none
}
.menu-nav-link {
left: 10px;
bottom: 10px;
right: 0;
text-align: center;
margin: auto
}
.menu-nav-link li {
margin-right: 5px
}
.custom-h2 .h2 {
font-size: 18px
}
.logo-invoice {
margin-bottom: 40px
}
.messenger_left img {
width: 50px;
height: 50px
}
#layer-1 {
right: 12%;
top: -164px;
width: 120px
}
#layer-2 {
top: 81%;
right: 70%;
width: 120px
}
#layer-3 {
bottom: 15%;
right: -80px;
width: 150px
}
.FrontEnd_pages_Help .search-block {
max-width: 85%;
width: 100%;
margin: -80px auto 0
}
.list-accordion-section-neww .list-accordion-content-box {
padding: 0 50px 10px 0
}
.list-accordion-section-neww {
margin-top: 30px
}
.FrontEnd_pages_OurStory .home-page-banner .col-sm-12:before {
right: 24px;
height: 100px;
width: 100px;
bottom: -40px
}
.story-title {
line-height: 30px;
font-size: 24px
}
.story-desc p {
margin-bottom: 1rem;
font-size: 16px
}
.FrontEnd_pages_OurStory h2 {
font-size: 40px
}
.our-story .container:after, .our-story .container:before {
height: 220px;
width: 130px;
bottom: -247px;
background-size: contain;
left: -40px
}
.our-story .container:after {
left: 40px;
bottom: -210px
}
.supplier-block h3 {
font-size: 20px;
line-height: normal;
text-align: center;
}
.supplier-block p {
font-size: 16px;
padding: 0 15px;
text-align: center;
}
.supplier-block ol {
font-size: 16px;
text-align: center;
}
.supplier-block h3 br {
display: none
}
.banner-text h2:before {
height: 2px;
width: 20%;
bottom: -20px
}
.payerror-sec {
padding: 1.5rem
}
.profile-picture {
width: 300px;
height: 300px;
margin: auto;
border-radius: 20px;
padding-left: 0;
padding-right: 0
}
.edit-profile {
right: 20px
}
.contact-area {
padding: 0 0 30px 0
}
#customer_edit_account {
right: 20px;
top: 0;
font-size: 20px
}
.conversion span.date_time_created {
top: auto;
display: block;
float: none;
position: relative;
padding-top: 5px;
}
#messenger .list-accordion-content-box p {
padding-right: 0
}
.page-item.active .page-link, ul.pagination li a {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 14px;
margin: 0 2px
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
width: 90px;
height: 30px;
line-height: 30px;
font-size: 0px;
margin: 0 2px;
font-weight: 400;
font-family: Avenir-Light
}
.page-item:first-child .page-link:before, .page-item:last-child .page-link:before {font-size: 14px;}
/* .page-item:first-child .page-link:before, .page-item:last-child .page-link:before {
display: none
}
*/
#our-suppliers-block {
margin-top: 50px;
z-index: 0;
overflow: hidden;
}
.FrontEnd_pages_OurSuppliers .home-page-banner .col-sm-12:before {
right: 0px;
height: 140px;
width: 140px;
bottom: -150px;
z-index: -1;
overflow: hidden;
}
.FrontEnd_pages_OurSuppliers .recent-event:before {
left: 46%;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 96px;
height: 100px;
width: 100px;
background-size: cover;
z-index: -1
}
.FrontEnd_pages_OurSuppliers .recent-event:after {
left: 30%;
position: absolute;
content: "";
background: transparent url(../images/layers/shape-2.svg) no-repeat center center;
bottom: 70px;
height: 108px;
width: 100px;
background-size: cover;
z-index: -1
}
#our-suppliers-block:before {
left: -65px;
top: 50%;
height: 150px;
width: 150px;
transform: translateY(-50%);
z-index: -1;overflow: hidden;
}
#our-suppliers-block .col-sm-12.col-md-4 {
flex: 0 0 100%;
max-width: 100%
}
#our-suppliers-block .col-sm-12.col-md-8 {
flex: 0 0 100%;
max-width: 100%
}
.event-service .table th {
padding: 0 20px 10px 0;
text-align: left
}
.event-service table thead th {
font-size: 14px
}
}
@media only screen and (max-width: 360px) {
.event-service .table tbody td:before {
font-size: 12px
}
.burger-menu ul li a {
font-size: 14px
}
.burger-menu ul li {
padding-bottom: 10px
}
.menu-nav-link {
left: 10px;
bottom: 10px
}
.menu-nav-link li {
margin-right: 5px
}
.card-container #payment-form {
padding: 20px 15px 30px 15px
}
.custom-h2 .mb-2 {
font-size: 14px
}
.custom-h2 .h2 {
font-size: 16px
}
.messenger_left img {
width: 40px;
height: 40px
}
.modal .sidebar-block .title-block h2 {
margin-bottom: 10px
}
.modal .sidebar-block {
padding: 15px;
margin-bottom: 0
}
.modal label {
font-size: 14px
}
.modal .form-group {
margin-bottom: 10px
}
} | 0.342132 | 0.132795 |
.nm-pv {
height: 100%;
width: 100%;
overflow: auto;
}
.nm-pv-topbar {
position: absolute;
z-index: 1001;
top: 0px;
color:rgba(200,183,155,1);
height: 40px;
width: 100%;
background-color: black;
border-bottom:1px solid rgba(235,122,109, 0.4);
}
.nm-pv-sidebar {
position: absolute;
z-index: 1000;
padding-top:42px;
left:0;
height:100%;
background: transparent;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-transition: padding-top .2s linear;
-khtml-transition: padding-top .2s linear;
-webkit-transition: padding-top .2s linear;
transition: padding-top .2s linear;
}
.nm-pv-tour {
position: absolute;
z-index: 1002;
bottom:0;
left:0;
border-radius: 8px;
border: 1px solid #181818;
-webkit-box-shadow: 0 0px 10px #181818;
-moz-box-shadow: 0 0px 10px #181818;
box-shadow: 0 0px 10px #181818;
color: rgba(200, 183, 155, .75);
background: #333333; /* Old browsers */
background: -moz-linear-gradient(top, #333 0%, #000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #333 0%,#000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #333 0%,#000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #333 0%,#000 100%); /* IE10+ */
background: linear-gradient(to bottom, #333 0%,#000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000',GradientType=0 ); /* IE6-9 */
}
.nm-pv-topbar, .nm-pv-logo {
-moz-transition: all .2s linear;
-khtml-transition: all .2s linear;
-webkit-transition: all .2s linear;
transition: all .2s linear;
}
.nm-cv {
-moz-transition: margin-top .2s linear;
-khtml-transition: margin-top .2s linear;
-webkit-transition: margin-top .2s linear;
transition: margin-top .2s linear;
}
.nm-pv-menu {
position: absolute;
right: 120px;
top:4px;
}
.nm-pv-menu .dropdown-menu {
margin-top: 6px;
}
.nm-pv-menu .icon-twitter,
.nm-pv-menu .icon-external-link {
margin-left: 5px;
font-size: 10px;
}
.nm-pv-topbar .nav li > a.nm-pv-menu-icons {
color:rgba(200,183,155,1);
padding: 14px 10px 0;
}
/* Turn the save menu item on/off based on a dirty page */
.nm-pvmli-save {
display: none;
}
.dirty .nm-pvmli-save {
display: block;
}
/* Heading */
.nm-pv-pulse {
width: 90px;
height: 40px;
float: left;
margin-right: 5px;
}
.nm-pv-dirty,
.nm-pv-title {
float:left;
padding:12px 5px 0 5px;
font-size:26px;
font-weight:normal;
text-shadow: rgb(200,183,155) 2px 2px 5px;
cursor: pointer;
}
.nm-pv-hot {color:rgba(235,122,109,0.75); text-shadow: rgb(235,122,109) 1px 1px 3px; margin-right:1px;}
.nm-pv-logo {position:absolute; z-index: 1002; right: 14px; top: 0px; padding-top: 17px; font-size:20px; color:rgba(200,183,155,0.8); cursor: pointer;}
.nm-pv-dirty {
display:none;
cursor:pointer;
}
.dirty .nm-pv-dirty {
display:block;
}
.nm-pv-canvas {
position: relative;
}
.nm-pv-canvas a {
color:rgba(200,183,155, 1);
}
/* Closed header */
.nm-pv.closed .nm-pv-topbar {
top: -42px;
}
.nm-pv.closed .nm-pv-sidebar {
padding-top: 0px;
}
.nm-pv.closed .nm-pv-logo {
top: 28px;
}
/* Tooltips */
.tooltip.top .tooltip-arrow {
border-top: 5px solid rgb(200,183,155);
}
.tooltip.left .tooltip-arrow {
border-left: 5px solid rgb(200,183,155);
}
.tooltip.bottom .tooltip-arrow {
border-bottom: 5px solid rgb(200,183,155);
}
.tooltip.right .tooltip-arrow {
border-right: 5px solid rgb(200,183,155);
}
.tooltip .tooltip-inner {
font-size:12px;
color: #000;
background-color: rgb(200,183,155);
max-width: 260px;
overflow: hidden;
}
/* About */
#nm-pv-about .img-bg {
background: #666; /* Old browsers */
background: -moz-linear-gradient(top, #888 0%, #333 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888), color-stop(100%,#333)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #888 0%,#333 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #888 0%,#333 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #888 0%,#333 100%); /* IE10+ */
background: linear-gradient(to bottom, #888 0%,#333 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888', endColorstr='#333',GradientType=0 ); /* IE6-9 */
} | node_modules/monitor-dashboard/lib/css/default/PageView.css | .nm-pv {
height: 100%;
width: 100%;
overflow: auto;
}
.nm-pv-topbar {
position: absolute;
z-index: 1001;
top: 0px;
color:rgba(200,183,155,1);
height: 40px;
width: 100%;
background-color: black;
border-bottom:1px solid rgba(235,122,109, 0.4);
}
.nm-pv-sidebar {
position: absolute;
z-index: 1000;
padding-top:42px;
left:0;
height:100%;
background: transparent;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-transition: padding-top .2s linear;
-khtml-transition: padding-top .2s linear;
-webkit-transition: padding-top .2s linear;
transition: padding-top .2s linear;
}
.nm-pv-tour {
position: absolute;
z-index: 1002;
bottom:0;
left:0;
border-radius: 8px;
border: 1px solid #181818;
-webkit-box-shadow: 0 0px 10px #181818;
-moz-box-shadow: 0 0px 10px #181818;
box-shadow: 0 0px 10px #181818;
color: rgba(200, 183, 155, .75);
background: #333333; /* Old browsers */
background: -moz-linear-gradient(top, #333 0%, #000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #333 0%,#000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #333 0%,#000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #333 0%,#000 100%); /* IE10+ */
background: linear-gradient(to bottom, #333 0%,#000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000',GradientType=0 ); /* IE6-9 */
}
.nm-pv-topbar, .nm-pv-logo {
-moz-transition: all .2s linear;
-khtml-transition: all .2s linear;
-webkit-transition: all .2s linear;
transition: all .2s linear;
}
.nm-cv {
-moz-transition: margin-top .2s linear;
-khtml-transition: margin-top .2s linear;
-webkit-transition: margin-top .2s linear;
transition: margin-top .2s linear;
}
.nm-pv-menu {
position: absolute;
right: 120px;
top:4px;
}
.nm-pv-menu .dropdown-menu {
margin-top: 6px;
}
.nm-pv-menu .icon-twitter,
.nm-pv-menu .icon-external-link {
margin-left: 5px;
font-size: 10px;
}
.nm-pv-topbar .nav li > a.nm-pv-menu-icons {
color:rgba(200,183,155,1);
padding: 14px 10px 0;
}
/* Turn the save menu item on/off based on a dirty page */
.nm-pvmli-save {
display: none;
}
.dirty .nm-pvmli-save {
display: block;
}
/* Heading */
.nm-pv-pulse {
width: 90px;
height: 40px;
float: left;
margin-right: 5px;
}
.nm-pv-dirty,
.nm-pv-title {
float:left;
padding:12px 5px 0 5px;
font-size:26px;
font-weight:normal;
text-shadow: rgb(200,183,155) 2px 2px 5px;
cursor: pointer;
}
.nm-pv-hot {color:rgba(235,122,109,0.75); text-shadow: rgb(235,122,109) 1px 1px 3px; margin-right:1px;}
.nm-pv-logo {position:absolute; z-index: 1002; right: 14px; top: 0px; padding-top: 17px; font-size:20px; color:rgba(200,183,155,0.8); cursor: pointer;}
.nm-pv-dirty {
display:none;
cursor:pointer;
}
.dirty .nm-pv-dirty {
display:block;
}
.nm-pv-canvas {
position: relative;
}
.nm-pv-canvas a {
color:rgba(200,183,155, 1);
}
/* Closed header */
.nm-pv.closed .nm-pv-topbar {
top: -42px;
}
.nm-pv.closed .nm-pv-sidebar {
padding-top: 0px;
}
.nm-pv.closed .nm-pv-logo {
top: 28px;
}
/* Tooltips */
.tooltip.top .tooltip-arrow {
border-top: 5px solid rgb(200,183,155);
}
.tooltip.left .tooltip-arrow {
border-left: 5px solid rgb(200,183,155);
}
.tooltip.bottom .tooltip-arrow {
border-bottom: 5px solid rgb(200,183,155);
}
.tooltip.right .tooltip-arrow {
border-right: 5px solid rgb(200,183,155);
}
.tooltip .tooltip-inner {
font-size:12px;
color: #000;
background-color: rgb(200,183,155);
max-width: 260px;
overflow: hidden;
}
/* About */
#nm-pv-about .img-bg {
background: #666; /* Old browsers */
background: -moz-linear-gradient(top, #888 0%, #333 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888), color-stop(100%,#333)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #888 0%,#333 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #888 0%,#333 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #888 0%,#333 100%); /* IE10+ */
background: linear-gradient(to bottom, #888 0%,#333 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888', endColorstr='#333',GradientType=0 ); /* IE6-9 */
} | 0.364438 | 0.093017 |
body {
background-color: #fff;
font-family: Campton;
}
@font-face {
font-family: Campton;
src: url('fonts/Campton Light.otf');
}
@font-face {
font-family: CamptonBook;
src: url('fonts/Campton Book.otf');
}
.form-control:focus {
background-color: rgba(255,255,255,0.8);
border: 0px solid #000;
border-bottom: 2px solid #000;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: none;
-moz-transition: none;
-webkit-transition: none;
outline: none;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
font-size: 16px;
}
::-moz-placeholder { /* Firefox 19+ */
font-size: 16px;
}
:-ms-input-placeholder { /* IE 10+ */
font-size: 16px;
}
:-moz-placeholder { /* Firefox 18- */
font-size: 16px;
}
.hidden-pic {
display: none;
}
/* header */
header {
background-color: #35cdcd;
margin-bottom: 100px;
}
#header-content {
padding: 20px 3%;
max-width: 1000px;
width: 100%;
margin: 0 auto;
}
#logo-img {
max-width: 250px;
}
a.header-link {
font-size: 13px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 13px;
color: #e9e9e9;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #e9e9e9;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 12px 40px;
border-radius: 3px;
font-size: 13px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 13px;
color: #fff;
background-color: #495a70;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: inline-block;
padding-left: 25px;
}
#menu-mobile {
display: none;
}
/* end header */
/*section-1*/
#section-1 {
background-image: url(img/download.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100%;
padding: 0px;
margin: 0px;
}
#s1-top {
max-width: 1000px;
width: 100%;
margin: 0 auto;
padding: 0px 3% 70px 3%;
}
#s1-1 {
text-align: center;
font-size: 20px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 20px;
}
#s1-1-a {
text-align: center;
font-size: 35px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-2 {
width: 60px;
margin: 0 auto;
}
#s1-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s1-3 {
display: flex;
}
#s1-3-1 {
text-align: left;
width: 50%;
}
#s1-3-1-photo {
width: 350px;
}
#s1-3-2 {
width: 50%;
font-size: 15px;
color: #fff;
}
#s1-3-3 {
display: none;
}
.sign-up-btn {
text-transform: uppercase;
background-color: #35CDCD;
color: #fff;
border-width: 0px;
font-size: 14px;
padding: 10px 30px;
border-radius: 3px;
}
.sign-up-btn:hover,
.sign-up-btn:focus {
background-color: #30b8b8;
color: #fff;
cursor: pointer;
text-decoration: none;
}
.sign-up-input {
border: 0px solid #000;
border-bottom: 2px solid #000;
border-radius: 0px;
padding: 10px 0px;
width: 100% !important;
background-color: transparent !important;
}
/* end section-1 */
/* section-2 */
#section-2 {
padding: 70px 3%;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 30px;
text-align: center;
}
#s2-2 {
width: 60px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 20px;
}
#s2-4 {
padding-bottom: 50px;
display: flex;
flex-shrink: 3;
flex-wrap: wrap;
}
.s2-4-1 {
width: 33%;
margin-bottom: 50px;
}
.s2-4-1-a {
text-align: center;
padding-bottom: 20px;
}
.s2-4-1-a-photo {
max-width: 130px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 25px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 15px;
text-align: center;
min-height: 60px;
}
/* end section-2 */
/* footer */
footer {
background-color: #2e3f50;
}
#footer-id {
max-width: 1200px;
margin: 0 auto;
padding: 0px 3%;
width: 100%;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
#footer-mobile {
display: none;
}
/* end footer */
}
@media screen and (min-width: 750px) and (max-width: 800px) {
/*section-1*/
#s1-top {
max-width: 100%;
padding: 0px 3% 70px 3%;
}
#s1-2 {
width: 80px;
}
#s1-2-1 {
width: 80px;
}
#s1-3 {
display: initial;
}
#s1-3-1 {
display: none;
}
#s1-3-2 {
width: 100%;
text-align: center;
}
#s1-3-3 {
display: initial;
width: 100%;
}
#s1-3-1-photo {
margin: 0 auto ;
width: 350px;
padding-bottom: 40px;
}
/* section-2 */
#section-2 {
padding: 70px 3%;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 30px;
text-align: center;
}
#s2-2 {
width: 60px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 10px;
}
#s2-4 {
display: flex;
}
.s2-4-1 {
width: 25%;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 130px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 25px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 15px;
text-align: center;
min-height: 60px;
}
.s2-4-1-d {
text-align: center;
max-width: 90%;
font-size: 14px;
margin: 0 auto;
}
/* end section-2 */
#menu-id {
display: none;
}
#header-content {
padding: 10px 0px 10px 25px;
}
#logo-img {
padding-top: 5px;
max-width: 80px;
}
#menu-mobile {
display: initial;
}
header {
margin-bottom: 50px;
}
footer {
display: none;
}
#footer-mobile {
display: initial;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
}
#mobile-menu-content {
min-width: 100%;
min-height: 100%;
background-color: #35cdcd;
}
a.header-link {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #fff;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 15px 50px;
border-radius: 3px;
font-size: 14px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 14px;
color: #fff;
background-color: #2e3f50;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: block;
padding-left: 0px;
text-align: center;
padding-bottom: 50px;
}
/* section-2 */
#section-2 {
padding: 50px 8%;
width: 100%;
max-width: 100%;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 15px;
text-align: center;
}
#s2-2 {
width: 80px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 10px;
}
#s2-4 {
display: initial;
}
.s2-4-1 {
width: 100%;
padding-bottom: 50px;
}
#less-pad {
padding-bottom: 0px;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 170px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 15px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 16px;
text-align: center;
min-height: 40px;
}
.s2-4-1-d {
text-align: center;
max-width: 400px;
font-size: 15px;
margin: 0 auto;
}
/* end section-2 */
}
@media screen and (max-width: 800px) {
#menu-id {
display: none;
}
#header-content {
padding: 10px 0px 10px 25px;
}
#logo-img {
padding-top: 5px;
max-width: 80px;
}
#menu-mobile {
display: initial;
}
header {
margin-bottom: 0px;
}
footer {
display: none;
}
#footer-mobile {
display: initial;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
}
#mobile-menu-content {
min-width: 100%;
min-height: 100%;
background-color: #35cdcd;
}
a.header-link {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #fff;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 15px 50px;
border-radius: 3px;
font-size: 14px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 14px;
color: #fff;
background-color: #2e3f50;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: block;
padding-left: 0px;
text-align: center;
padding-bottom: 50px;
}
/*section-1*/
#section-1 {
background-color: #2e3f50;
width: 100%;
padding: 0px;
margin: 0px;
}
#s1-top {
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 50px 8% 40px 8%;
text-align: center;
}
#s1-1 {
text-align: center;
font-size: 10px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-1-a {
text-align: center;
font-size: 20px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-2 {
width: 80px;
margin: 0 auto;
}
#s1-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s1-3 {
display: initial;
}
#s1-3-1 {
display: none;
text-align: center;
width: 100%;
}
#s1-3-1-photo {
width: 100%;
}
#s1-3-2 {
width: 100%;
font-size: 15px;
color: #fff;
padding-bottom: 0px;
}
#s1-3-3 {
display: initial;
padding: 0px;
}
/* section-2 */
#section-2 {
padding: 50px 8%;
width: 100%;
max-width: 100%;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 15px;
text-align: center;
}
#s2-2 {
width: 80px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 50px;
}
#s2-4 {
display: initial;
}
.s2-4-1 {
width: 100%;
padding-bottom: 10px;
}
#less-pad {
padding-bottom: 0px;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 170px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 15px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 16px;
text-align: center;
min-height: 40px;
}
.s2-4-1-d {
text-align: center;
max-width: 100%;
font-size: 15px;
margin: 0 auto;
}
/* end section-2 */
@media screen and (min-width: 550px) and (max-width: 800px) {
#s2-4 {
padding-bottom: 50px;
display: flex;
flex-shrink: 2;
flex-wrap: wrap;
}
.s2-4-1 {
width: 50%;
margin-bottom: 20px;
}
} | download.css | body {
background-color: #fff;
font-family: Campton;
}
@font-face {
font-family: Campton;
src: url('fonts/Campton Light.otf');
}
@font-face {
font-family: CamptonBook;
src: url('fonts/Campton Book.otf');
}
.form-control:focus {
background-color: rgba(255,255,255,0.8);
border: 0px solid #000;
border-bottom: 2px solid #000;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: none;
-moz-transition: none;
-webkit-transition: none;
outline: none;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
font-size: 16px;
}
::-moz-placeholder { /* Firefox 19+ */
font-size: 16px;
}
:-ms-input-placeholder { /* IE 10+ */
font-size: 16px;
}
:-moz-placeholder { /* Firefox 18- */
font-size: 16px;
}
.hidden-pic {
display: none;
}
/* header */
header {
background-color: #35cdcd;
margin-bottom: 100px;
}
#header-content {
padding: 20px 3%;
max-width: 1000px;
width: 100%;
margin: 0 auto;
}
#logo-img {
max-width: 250px;
}
a.header-link {
font-size: 13px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 13px;
color: #e9e9e9;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #e9e9e9;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 12px 40px;
border-radius: 3px;
font-size: 13px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 13px;
color: #fff;
background-color: #495a70;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: inline-block;
padding-left: 25px;
}
#menu-mobile {
display: none;
}
/* end header */
/*section-1*/
#section-1 {
background-image: url(img/download.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100%;
padding: 0px;
margin: 0px;
}
#s1-top {
max-width: 1000px;
width: 100%;
margin: 0 auto;
padding: 0px 3% 70px 3%;
}
#s1-1 {
text-align: center;
font-size: 20px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 20px;
}
#s1-1-a {
text-align: center;
font-size: 35px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-2 {
width: 60px;
margin: 0 auto;
}
#s1-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s1-3 {
display: flex;
}
#s1-3-1 {
text-align: left;
width: 50%;
}
#s1-3-1-photo {
width: 350px;
}
#s1-3-2 {
width: 50%;
font-size: 15px;
color: #fff;
}
#s1-3-3 {
display: none;
}
.sign-up-btn {
text-transform: uppercase;
background-color: #35CDCD;
color: #fff;
border-width: 0px;
font-size: 14px;
padding: 10px 30px;
border-radius: 3px;
}
.sign-up-btn:hover,
.sign-up-btn:focus {
background-color: #30b8b8;
color: #fff;
cursor: pointer;
text-decoration: none;
}
.sign-up-input {
border: 0px solid #000;
border-bottom: 2px solid #000;
border-radius: 0px;
padding: 10px 0px;
width: 100% !important;
background-color: transparent !important;
}
/* end section-1 */
/* section-2 */
#section-2 {
padding: 70px 3%;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 30px;
text-align: center;
}
#s2-2 {
width: 60px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 20px;
}
#s2-4 {
padding-bottom: 50px;
display: flex;
flex-shrink: 3;
flex-wrap: wrap;
}
.s2-4-1 {
width: 33%;
margin-bottom: 50px;
}
.s2-4-1-a {
text-align: center;
padding-bottom: 20px;
}
.s2-4-1-a-photo {
max-width: 130px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 25px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 15px;
text-align: center;
min-height: 60px;
}
/* end section-2 */
/* footer */
footer {
background-color: #2e3f50;
}
#footer-id {
max-width: 1200px;
margin: 0 auto;
padding: 0px 3%;
width: 100%;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
#footer-mobile {
display: none;
}
/* end footer */
}
@media screen and (min-width: 750px) and (max-width: 800px) {
/*section-1*/
#s1-top {
max-width: 100%;
padding: 0px 3% 70px 3%;
}
#s1-2 {
width: 80px;
}
#s1-2-1 {
width: 80px;
}
#s1-3 {
display: initial;
}
#s1-3-1 {
display: none;
}
#s1-3-2 {
width: 100%;
text-align: center;
}
#s1-3-3 {
display: initial;
width: 100%;
}
#s1-3-1-photo {
margin: 0 auto ;
width: 350px;
padding-bottom: 40px;
}
/* section-2 */
#section-2 {
padding: 70px 3%;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 30px;
text-align: center;
}
#s2-2 {
width: 60px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 60px;
height: 2px;
margin-bottom: 40px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 10px;
}
#s2-4 {
display: flex;
}
.s2-4-1 {
width: 25%;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 130px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 25px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 15px;
text-align: center;
min-height: 60px;
}
.s2-4-1-d {
text-align: center;
max-width: 90%;
font-size: 14px;
margin: 0 auto;
}
/* end section-2 */
#menu-id {
display: none;
}
#header-content {
padding: 10px 0px 10px 25px;
}
#logo-img {
padding-top: 5px;
max-width: 80px;
}
#menu-mobile {
display: initial;
}
header {
margin-bottom: 50px;
}
footer {
display: none;
}
#footer-mobile {
display: initial;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
}
#mobile-menu-content {
min-width: 100%;
min-height: 100%;
background-color: #35cdcd;
}
a.header-link {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #fff;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 15px 50px;
border-radius: 3px;
font-size: 14px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 14px;
color: #fff;
background-color: #2e3f50;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: block;
padding-left: 0px;
text-align: center;
padding-bottom: 50px;
}
/* section-2 */
#section-2 {
padding: 50px 8%;
width: 100%;
max-width: 100%;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 15px;
text-align: center;
}
#s2-2 {
width: 80px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 10px;
}
#s2-4 {
display: initial;
}
.s2-4-1 {
width: 100%;
padding-bottom: 50px;
}
#less-pad {
padding-bottom: 0px;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 170px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 15px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 16px;
text-align: center;
min-height: 40px;
}
.s2-4-1-d {
text-align: center;
max-width: 400px;
font-size: 15px;
margin: 0 auto;
}
/* end section-2 */
}
@media screen and (max-width: 800px) {
#menu-id {
display: none;
}
#header-content {
padding: 10px 0px 10px 25px;
}
#logo-img {
padding-top: 5px;
max-width: 80px;
}
#menu-mobile {
display: initial;
}
header {
margin-bottom: 0px;
}
footer {
display: none;
}
#footer-mobile {
display: initial;
}
a.a-link,
a.a-link:focus,
a.a-link:active,
a.a-link:hover {
font-size: 13px;
}
#mobile-menu-content {
min-width: 100%;
min-height: 100%;
background-color: #35cdcd;
}
a.header-link {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.header-link:focus,
a.header-link:active,
a.header-link:hover {
font-size: 14px;
color: #fff;
padding-top: 0px;
margin-top: 0px;
text-decoration: none;
}
a.hl-active {
color: #fff;
}
a.header-link-btn {
background-color: #2e3f50;
padding: 15px 50px;
border-radius: 3px;
font-size: 14px;
color: #fff;
margin-top: 0px;
text-decoration: none;
}
a.header-link-btn:focus,
a.header-link-btn:active,
a.header-link-btn:hover {
font-size: 14px;
color: #fff;
background-color: #2e3f50;
margin-top: 0px;
text-decoration: none;
}
.menu-space {
display: block;
padding-left: 0px;
text-align: center;
padding-bottom: 50px;
}
/*section-1*/
#section-1 {
background-color: #2e3f50;
width: 100%;
padding: 0px;
margin: 0px;
}
#s1-top {
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 50px 8% 40px 8%;
text-align: center;
}
#s1-1 {
text-align: center;
font-size: 10px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-1-a {
text-align: center;
font-size: 20px;
font-family: CamptonBook;
color: #fff;
padding-bottom: 15px;
}
#s1-2 {
width: 80px;
margin: 0 auto;
}
#s1-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s1-3 {
display: initial;
}
#s1-3-1 {
display: none;
text-align: center;
width: 100%;
}
#s1-3-1-photo {
width: 100%;
}
#s1-3-2 {
width: 100%;
font-size: 15px;
color: #fff;
padding-bottom: 0px;
}
#s1-3-3 {
display: initial;
padding: 0px;
}
/* section-2 */
#section-2 {
padding: 50px 8%;
width: 100%;
max-width: 100%;
margin: 0 auto;
}
#s2-1 {
color: #2e3f50;
font-family: CamptonBook;
font-size: 25px;
padding-bottom: 15px;
text-align: center;
}
#s2-2 {
width: 80px;
margin: 0 auto;
}
#s2-2-1 {
background-color: #35CDCD;
width: 80px;
height: 2px;
margin-bottom: 20px;
}
#s2-3 {
color: #000;
text-align: center;
padding-bottom: 50px;
}
#s2-4 {
display: initial;
}
.s2-4-1 {
width: 100%;
padding-bottom: 10px;
}
#less-pad {
padding-bottom: 0px;
}
.s2-4-1-a {
text-align: center;
}
.s2-4-1-a-photo {
max-width: 170px;
}
.s2-4-1-b {
color: #35cdcd;
text-align: center;
font-size: 24px;
font-family: CamptonBook;
padding-top: 15px;
}
.s2-4-1-c {
font-family: CamptonBook;
font-size: 16px;
text-align: center;
min-height: 40px;
}
.s2-4-1-d {
text-align: center;
max-width: 100%;
font-size: 15px;
margin: 0 auto;
}
/* end section-2 */
@media screen and (min-width: 550px) and (max-width: 800px) {
#s2-4 {
padding-bottom: 50px;
display: flex;
flex-shrink: 2;
flex-wrap: wrap;
}
.s2-4-1 {
width: 50%;
margin-bottom: 20px;
}
} | 0.292494 | 0.054024 |
.container.content {
padding-top: 50px;
padding-bottom: 50px;
}
.header {
padding: 0;
margin: 0;
background-color: white;
border-radius: 0px;
border: none;
/* height: 150px; */
display: flex;
align-items: center;
}
nav.navbar.navbar-inverse.header {
-webkit-box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
-moz-box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
}
.navbar-inverse .navbar-toggle {
border-color: transparent;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #60c2a4;
}
.navbar-toggle {
position: relative;
float: right;
padding: 9px 10px;
margin-right: 15px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
color: black;
}
@media only screen and (max-width: 770px) {
.header {
display: block;
}
.col-sm-6.item-blog {
padding-top: 10px;
}
.title-footer {
color: #ffff;
font-weight: bold;
font-size: 10px;
}
}
.navbar-inverse .navbar-nav>li>a {
color: #9d9d9d;
font-weight: bold;
display: flex;
align-items: center;
}
.navbar-inverse .navbar-nav>.active>a {
background-color: white;
color: #f06e28;
font-weight: bold;
}
.navbar-inverse .navbar-nav>.active>a:focus {
background-color: white;
color: #f06e28;
}
.navbar-inverse .navbar-nav>.active>a:hover {
background-color: white;
color: #f06e28;
/* font-weight: bold; */
/* font-size: 16px; */
}
.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
line-height: 1;
}
.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
display: block;
max-width: 100%;
max-height: 30%;
height: auto;
}
/* title */
.title-blog {
display: flex;
align-items: center;
justify-content: center;
}
.title-blog h4 {
font-size: 30px;
/* font-weight: bold; */
color: #f06e28;
}
.title-add-blog {
color: #f06e28;
}
.img-blog-hot {
border: 0.5px solid #f7f3f3;
padding: 5px;
border-radius: 5px;
}
.title-item-blog {
font-size: 14px;
font-weight: bold;
color: #f06e28;
margin: 0px;
}
h3.title-item-blog {
padding-top: 0px;
margin-top: 0px;
}
.btn-expand {
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.btn.btn-ex {
background-color: #f06e28;
color: white;
font-size: 16px;
padding: 10px 20px 10px 20px;
}
.footer-start {
height: 50px;
background-color: #5e5b5b;
}
.footer-end {
height: 100px;
background-color: #000000;
color: #ffff;
}
.center {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.title-footer {
color: #ffff;
font-weight: bold;
} | public/css/home.css | .container.content {
padding-top: 50px;
padding-bottom: 50px;
}
.header {
padding: 0;
margin: 0;
background-color: white;
border-radius: 0px;
border: none;
/* height: 150px; */
display: flex;
align-items: center;
}
nav.navbar.navbar-inverse.header {
-webkit-box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
-moz-box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
box-shadow: 0px 0px 11px 5px rgba(214, 210, 214, 0.71);
}
.navbar-inverse .navbar-toggle {
border-color: transparent;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #60c2a4;
}
.navbar-toggle {
position: relative;
float: right;
padding: 9px 10px;
margin-right: 15px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
color: black;
}
@media only screen and (max-width: 770px) {
.header {
display: block;
}
.col-sm-6.item-blog {
padding-top: 10px;
}
.title-footer {
color: #ffff;
font-weight: bold;
font-size: 10px;
}
}
.navbar-inverse .navbar-nav>li>a {
color: #9d9d9d;
font-weight: bold;
display: flex;
align-items: center;
}
.navbar-inverse .navbar-nav>.active>a {
background-color: white;
color: #f06e28;
font-weight: bold;
}
.navbar-inverse .navbar-nav>.active>a:focus {
background-color: white;
color: #f06e28;
}
.navbar-inverse .navbar-nav>.active>a:hover {
background-color: white;
color: #f06e28;
/* font-weight: bold; */
/* font-size: 16px; */
}
.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
line-height: 1;
}
.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
display: block;
max-width: 100%;
max-height: 30%;
height: auto;
}
/* title */
.title-blog {
display: flex;
align-items: center;
justify-content: center;
}
.title-blog h4 {
font-size: 30px;
/* font-weight: bold; */
color: #f06e28;
}
.title-add-blog {
color: #f06e28;
}
.img-blog-hot {
border: 0.5px solid #f7f3f3;
padding: 5px;
border-radius: 5px;
}
.title-item-blog {
font-size: 14px;
font-weight: bold;
color: #f06e28;
margin: 0px;
}
h3.title-item-blog {
padding-top: 0px;
margin-top: 0px;
}
.btn-expand {
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.btn.btn-ex {
background-color: #f06e28;
color: white;
font-size: 16px;
padding: 10px 20px 10px 20px;
}
.footer-start {
height: 50px;
background-color: #5e5b5b;
}
.footer-end {
height: 100px;
background-color: #000000;
color: #ffff;
}
.center {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.title-footer {
color: #ffff;
font-weight: bold;
} | 0.341692 | 0.195633 |
html {
font-size: 1rem;
scroll-behavior: smooth;
}
#root {
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px #7ea1c4;
box-shadow: inset 0 0 6px #7ea1c4;
background-color: #f5f5f5;
}
*::-webkit-scrollbar {
width: 6px;
background-color: #f5f5f5;
}
*::-webkit-scrollbar-thumb {
background-color: #7ea1c4;
}
a:hover,
.btn:hover,
.dropdown-item:hover,
.page-link.pagination1:hover {
text-decoration: none;
/* color: #192965 !important; */
}
.dropdown-item:hover,
.dropdown-item:focus {
background-color: #bbcfff;
color: white;
}
.bg-color,
.dropdown-menu.show,
#pininput1 {
background-color: #bbcfff;
}
#PreLoad {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100vw;
height: 100vh;
background: #bbcfff;
}
#agefilter,
#flexDistrict {
border-top-left-radius: 40px !important;
border-bottom-left-radius: 40px !important;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
#dosefilter,
#flexPincode {
border-top-right-radius: 40px;
border-bottom-right-radius: 40px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
#vaccinefilter,
#feefilter {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
#vaccinefilter:hover,
#feefilter:hover,
#dosefilter:hover,
#agefilter:hover,
#flexDistrict:hover,
#flexPincode:hover {
box-shadow: 0 0 0.5rem 0.4rem #1b365c;
background-color: #5885af;
}
#MainContent {
margin: 0;
padding: 0;
border: 0;
}
body {
background-color: #bbcfff !important; /*#28a745- btn-success main body color scheme*/
}
.zoom-in-zoom-out {
margin: 24px;
animation: zoom-in-zoom-out 2s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.5, 1.5);
}
100% {
transform: scale(1, 1);
}
}
#mynavbartop,
.nav-item.dropdown .dropdown-menu,
#pininput0,
#state0,
#district0 {
/*navbar and dropdown menu color scheme*/
background-color: #7ea1c4;
}
.Button-clicked {
/*button press color change*/
background-color: #5885af;
}
@media screen and (max-width: 349px) {
/* 0 to 349 px small to very mobile */
#req {
height: fit-content;
width: 299px;
}
#NoDataAlert {
width: 299px;
height: fit-content;
}
#HospitalRes,
#dateResults {
width: fit-content;
word-wrap: break-word;
overflow: scroll;
}
}
@media screen and (min-width: 350px) {
/* 350 to 449 px normal mobile */
#req {
height: fit-content;
width: 300px;
}
#NoDataAlert {
width: 300px;
height: fit-content;
}
#HospitalRes {
width: 313px;
}
}
@media screen and (min-width: 450px) {
/* 450px to 767px ipad and tablets */
#req {
height: fit-content;
width: 400px;
}
#NoDataAlert {
width: 400px;
height: fit-content;
}
#HospitalRes {
width: 678px;
}
#HospitalRes,
#dateResults {
width: 400px;
word-wrap: break-word;
}
}
@media screen and (min-width: 768px) {
/* 768+ laptops*/
#req {
width: 700px;
height: 150px;
}
#NoDataAlert {
width: 700px;
height: fit-content;
}
#HospitalRes,
#dateResults {
width: 700px;
word-wrap: break-word;
}
}
#HospitalAddress::before {
content: " Address: ";
}
#dose1::before {
content: "Available Capacity dose1 : ";
}
#dose2::before {
content: "Available Capacity dose2 : ";
}
#dose3::before {
content: "Available Capacity dose3 : ";
}
#blockname::before {
content: " Block: ";
}
#districtname::before {
content: " District: ";
}
#statename::before {
content: " State: ";
}
#pin22::before {
content: " Pincode: ";
}
select,
option,
input,
#HospitalRes > .card {
color: #1b365c !important;
background-color: #bbcfff !important;
border-color: #1b365c !important;
border-width: 1px !important;
}
nav select,
nav select:active,
nav select option,
nav select option:active,
nav input,
nav input:active {
background-color: #7ea1c4 !important;
}
nav > div > ul > li > a:active,
nav > div > ul > li > a:hover {
border-radius: 40px;
background-color: #5885af;
box-shadow: 0 0 0.5rem 0.4rem #1b365c;
}
.navbar-toggler:active,
.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler.collapsed:active,
.navbar-toggler.collapsed:hover,
.navbar-toggler.collapsed:focus {
/* box-shadow: 0 0 0.5rem 0.5rem #1b365c; */
outline: 5px auto #1b365c !important;
border: 0;
}
h5 {
white-space: wrap;
overflow: hidden;
text-overflow: ellipsis;
}
.badge.badge-info {
padding-left: 2.8px !important;
padding-right: 2.8px !important;
padding-top: 1.5px !important;
padding-bottom: 1.5px !important;
}
#footer {
background-color: #5885af;
background-image: url(https://apurvk4.github.io/covid19india/img/pattern01.png);
background-size: cover;
background-repeat: no-repeat;
position: absolute;
width: 100%;
}
.show {
display: block;
}
.hide {
display: none;
}
.filter {
filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}
.filtergit:hover,
.filtergit:active {
filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
.react {
animation: spin 4s linear infinite;
filter: invert(18%) sepia(11%) saturate(3306%) hue-rotate(60deg)
brightness(101%) contrast(95%);
}
#covid-19 {
width: 220px;
height: 220px;
animation-name: float;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
/* // -webkit-filter: drop-shadow(10px 10px 5px #032552) !important;
// box-shadow: 0 0 0.25rem 0.25rem #032552 !important; */
}
.shadow {
width: 100px;
height: 10px;
background: #1c1c1c;
border-radius: 70%;
opacity: 1;
filter: blur(3px);
animation-name: animate-shadow;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
g.evelope {
animation-name: rotate;
transform-origin: 100px 105px;
animation-duration: 2s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
ellipse.left-eyeball,
ellipse.right-eyeball {
animation-name: moveEyeBalls;
transform-origin: 50% 50%;
animation-duration: 3s;
animation-direction: normal;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.left-eyebrows,
.right-eyebrows {
animation-name: moveEyebrows;
transform-origin: 50% 50%;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.mouth {
animation-name: moveMouth;
transform-origin: 50% 50%;
animation-duration: 2s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes moveMouth {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(12deg);
}
}
@keyframes moveEyebrows {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-1px);
}
}
@keyframes moveEyeBalls {
0% {
transform: translateX(0px);
}
25% {
transform: translateX(2px);
}
50% {
transform: translateX(-2px);
}
75% {
transform: translateX(-2px);
}
100% {
transform: translateX(0px);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(20px);
}
}
@keyframes animate-shadow {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(4deg);
}
100% {
transform: rotate(0deg);
}
}
.animation {
animation: rotateMenu 400ms ease-in-out forwards;
transform-origin: top center;
}
@keyframes rotateMenu {
0% {
transform: rotateX(-90deg);
}
70% {
transform: rotateX(20deg);
}
100% {
transform: rotateX(0deg);
}
}
/* ---------------preload-------------- */
.pl {
width: 8em;
height: 8em;
}
.pl circle {
transform-box: fill-box;
transform-origin: 50% 50%;
}
.pl__ring1 {
animation: ring1 4s 0s ease-in-out infinite;
}
.pl__ring2 {
animation: ring2 4s 0.04s ease-in-out infinite;
}
.pl__ring3 {
animation: ring3 4s 0.08s ease-in-out infinite;
}
.pl__ring4 {
animation: ring4 4s 0.12s ease-in-out infinite;
}
.pl__ring5 {
animation: ring5 4s 0.16s ease-in-out infinite;
}
.pl__ring6 {
animation: ring6 4s 0.2s ease-in-out infinite;
}
/* Animations */
@keyframes ring1 {
from {
stroke-dashoffset: -376.237129776;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -94.247778;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -376.237129776;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -94.247778;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -376.237129776;
transform: rotate(4.75turn);
}
}
@keyframes ring2 {
from {
stroke-dashoffset: -329.207488554;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -82.46680575;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -329.207488554;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -82.46680575;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -329.207488554;
transform: rotate(4.75turn);
}
}
@keyframes ring3 {
from {
stroke-dashoffset: -288.4484661616;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -72.2566298;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -288.4484661616;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -72.2566298;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -288.4484661616;
transform: rotate(4.75turn);
}
}
@keyframes ring4 {
from {
stroke-dashoffset: -253.9600625988;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -63.61725015;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -253.9600625988;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -63.61725015;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -253.9600625988;
transform: rotate(4.75turn);
}
}
@keyframes ring5 {
from {
stroke-dashoffset: -225.7422778656;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -56.5486668;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -225.7422778656;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -56.5486668;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -225.7422778656;
transform: rotate(4.75turn);
}
}
@keyframes ring6 {
from {
stroke-dashoffset: -203.795111962;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -51.05087975;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -203.795111962;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -51.05087975;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -203.795111962;
transform: rotate(4.75turn);
}
} | style.css | html {
font-size: 1rem;
scroll-behavior: smooth;
}
#root {
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px #7ea1c4;
box-shadow: inset 0 0 6px #7ea1c4;
background-color: #f5f5f5;
}
*::-webkit-scrollbar {
width: 6px;
background-color: #f5f5f5;
}
*::-webkit-scrollbar-thumb {
background-color: #7ea1c4;
}
a:hover,
.btn:hover,
.dropdown-item:hover,
.page-link.pagination1:hover {
text-decoration: none;
/* color: #192965 !important; */
}
.dropdown-item:hover,
.dropdown-item:focus {
background-color: #bbcfff;
color: white;
}
.bg-color,
.dropdown-menu.show,
#pininput1 {
background-color: #bbcfff;
}
#PreLoad {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100vw;
height: 100vh;
background: #bbcfff;
}
#agefilter,
#flexDistrict {
border-top-left-radius: 40px !important;
border-bottom-left-radius: 40px !important;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
#dosefilter,
#flexPincode {
border-top-right-radius: 40px;
border-bottom-right-radius: 40px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
#vaccinefilter,
#feefilter {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
#vaccinefilter:hover,
#feefilter:hover,
#dosefilter:hover,
#agefilter:hover,
#flexDistrict:hover,
#flexPincode:hover {
box-shadow: 0 0 0.5rem 0.4rem #1b365c;
background-color: #5885af;
}
#MainContent {
margin: 0;
padding: 0;
border: 0;
}
body {
background-color: #bbcfff !important; /*#28a745- btn-success main body color scheme*/
}
.zoom-in-zoom-out {
margin: 24px;
animation: zoom-in-zoom-out 2s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.5, 1.5);
}
100% {
transform: scale(1, 1);
}
}
#mynavbartop,
.nav-item.dropdown .dropdown-menu,
#pininput0,
#state0,
#district0 {
/*navbar and dropdown menu color scheme*/
background-color: #7ea1c4;
}
.Button-clicked {
/*button press color change*/
background-color: #5885af;
}
@media screen and (max-width: 349px) {
/* 0 to 349 px small to very mobile */
#req {
height: fit-content;
width: 299px;
}
#NoDataAlert {
width: 299px;
height: fit-content;
}
#HospitalRes,
#dateResults {
width: fit-content;
word-wrap: break-word;
overflow: scroll;
}
}
@media screen and (min-width: 350px) {
/* 350 to 449 px normal mobile */
#req {
height: fit-content;
width: 300px;
}
#NoDataAlert {
width: 300px;
height: fit-content;
}
#HospitalRes {
width: 313px;
}
}
@media screen and (min-width: 450px) {
/* 450px to 767px ipad and tablets */
#req {
height: fit-content;
width: 400px;
}
#NoDataAlert {
width: 400px;
height: fit-content;
}
#HospitalRes {
width: 678px;
}
#HospitalRes,
#dateResults {
width: 400px;
word-wrap: break-word;
}
}
@media screen and (min-width: 768px) {
/* 768+ laptops*/
#req {
width: 700px;
height: 150px;
}
#NoDataAlert {
width: 700px;
height: fit-content;
}
#HospitalRes,
#dateResults {
width: 700px;
word-wrap: break-word;
}
}
#HospitalAddress::before {
content: " Address: ";
}
#dose1::before {
content: "Available Capacity dose1 : ";
}
#dose2::before {
content: "Available Capacity dose2 : ";
}
#dose3::before {
content: "Available Capacity dose3 : ";
}
#blockname::before {
content: " Block: ";
}
#districtname::before {
content: " District: ";
}
#statename::before {
content: " State: ";
}
#pin22::before {
content: " Pincode: ";
}
select,
option,
input,
#HospitalRes > .card {
color: #1b365c !important;
background-color: #bbcfff !important;
border-color: #1b365c !important;
border-width: 1px !important;
}
nav select,
nav select:active,
nav select option,
nav select option:active,
nav input,
nav input:active {
background-color: #7ea1c4 !important;
}
nav > div > ul > li > a:active,
nav > div > ul > li > a:hover {
border-radius: 40px;
background-color: #5885af;
box-shadow: 0 0 0.5rem 0.4rem #1b365c;
}
.navbar-toggler:active,
.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler.collapsed:active,
.navbar-toggler.collapsed:hover,
.navbar-toggler.collapsed:focus {
/* box-shadow: 0 0 0.5rem 0.5rem #1b365c; */
outline: 5px auto #1b365c !important;
border: 0;
}
h5 {
white-space: wrap;
overflow: hidden;
text-overflow: ellipsis;
}
.badge.badge-info {
padding-left: 2.8px !important;
padding-right: 2.8px !important;
padding-top: 1.5px !important;
padding-bottom: 1.5px !important;
}
#footer {
background-color: #5885af;
background-image: url(https://apurvk4.github.io/covid19india/img/pattern01.png);
background-size: cover;
background-repeat: no-repeat;
position: absolute;
width: 100%;
}
.show {
display: block;
}
.hide {
display: none;
}
.filter {
filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}
.filtergit:hover,
.filtergit:active {
filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
.react {
animation: spin 4s linear infinite;
filter: invert(18%) sepia(11%) saturate(3306%) hue-rotate(60deg)
brightness(101%) contrast(95%);
}
#covid-19 {
width: 220px;
height: 220px;
animation-name: float;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
/* // -webkit-filter: drop-shadow(10px 10px 5px #032552) !important;
// box-shadow: 0 0 0.25rem 0.25rem #032552 !important; */
}
.shadow {
width: 100px;
height: 10px;
background: #1c1c1c;
border-radius: 70%;
opacity: 1;
filter: blur(3px);
animation-name: animate-shadow;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
g.evelope {
animation-name: rotate;
transform-origin: 100px 105px;
animation-duration: 2s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
ellipse.left-eyeball,
ellipse.right-eyeball {
animation-name: moveEyeBalls;
transform-origin: 50% 50%;
animation-duration: 3s;
animation-direction: normal;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.left-eyebrows,
.right-eyebrows {
animation-name: moveEyebrows;
transform-origin: 50% 50%;
animation-duration: 1s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.mouth {
animation-name: moveMouth;
transform-origin: 50% 50%;
animation-duration: 2s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes moveMouth {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(12deg);
}
}
@keyframes moveEyebrows {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-1px);
}
}
@keyframes moveEyeBalls {
0% {
transform: translateX(0px);
}
25% {
transform: translateX(2px);
}
50% {
transform: translateX(-2px);
}
75% {
transform: translateX(-2px);
}
100% {
transform: translateX(0px);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(20px);
}
}
@keyframes animate-shadow {
0% {
transform: scale(1);
}
100% {
transform: scale(1.2);
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(4deg);
}
100% {
transform: rotate(0deg);
}
}
.animation {
animation: rotateMenu 400ms ease-in-out forwards;
transform-origin: top center;
}
@keyframes rotateMenu {
0% {
transform: rotateX(-90deg);
}
70% {
transform: rotateX(20deg);
}
100% {
transform: rotateX(0deg);
}
}
/* ---------------preload-------------- */
.pl {
width: 8em;
height: 8em;
}
.pl circle {
transform-box: fill-box;
transform-origin: 50% 50%;
}
.pl__ring1 {
animation: ring1 4s 0s ease-in-out infinite;
}
.pl__ring2 {
animation: ring2 4s 0.04s ease-in-out infinite;
}
.pl__ring3 {
animation: ring3 4s 0.08s ease-in-out infinite;
}
.pl__ring4 {
animation: ring4 4s 0.12s ease-in-out infinite;
}
.pl__ring5 {
animation: ring5 4s 0.16s ease-in-out infinite;
}
.pl__ring6 {
animation: ring6 4s 0.2s ease-in-out infinite;
}
/* Animations */
@keyframes ring1 {
from {
stroke-dashoffset: -376.237129776;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -94.247778;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -376.237129776;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -94.247778;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -376.237129776;
transform: rotate(4.75turn);
}
}
@keyframes ring2 {
from {
stroke-dashoffset: -329.207488554;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -82.46680575;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -329.207488554;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -82.46680575;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -329.207488554;
transform: rotate(4.75turn);
}
}
@keyframes ring3 {
from {
stroke-dashoffset: -288.4484661616;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -72.2566298;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -288.4484661616;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -72.2566298;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -288.4484661616;
transform: rotate(4.75turn);
}
}
@keyframes ring4 {
from {
stroke-dashoffset: -253.9600625988;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -63.61725015;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -253.9600625988;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -63.61725015;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -253.9600625988;
transform: rotate(4.75turn);
}
}
@keyframes ring5 {
from {
stroke-dashoffset: -225.7422778656;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -56.5486668;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -225.7422778656;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -56.5486668;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -225.7422778656;
transform: rotate(4.75turn);
}
}
@keyframes ring6 {
from {
stroke-dashoffset: -203.795111962;
transform: rotate(-0.25turn);
animation-timing-function: ease-in;
}
23% {
stroke-dashoffset: -51.05087975;
transform: rotate(1turn);
animation-timing-function: ease-out;
}
46%,
50% {
stroke-dashoffset: -203.795111962;
transform: rotate(2.25turn);
animation-timing-function: ease-in;
}
73% {
stroke-dashoffset: -51.05087975;
transform: rotate(3.5turn);
animation-timing-function: ease-out;
}
96%,
to {
stroke-dashoffset: -203.795111962;
transform: rotate(4.75turn);
}
} | 0.405802 | 0.06767 |
body
{
margin: 0;
font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
.ar-card
{
-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
}
.ar-card .card-header
{
font-size: 18px;
font-weight: 300;
padding-left: 0;
padding-right: 0;
padding-top: 1.5384rem;
margin: 0 1.538rem;
border-bottom-width: 0;
border-radius: 3px 3px 0 0;
background-color: transparent;
}
.ar-card .card-header:first-child
{
border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;
}
.ar-card .card-header-divider
{
border-bottom: 1px solid #d9d9d9;
margin: 0 1.138rem 8px;
padding-left: 0;
padding-right: 0;
padding-bottom: 1.2307rem;
}
.card-border-color
{
border-top: 3px solid #c9c9c9;
}
.card-border-color-primary
{
border-top-color: #4285f4;
}
.card-border-color-dark
{
border-top-color: #3d3c3c;
}
.card-border-color-danger
{
border-top-color: #ea4335;
}
.card-border-color-warning
{
border-top-color: #fbbc05;
}
.card-border-color-success
{
border-top-color: #34a853;
}
.card-border-color-redvelvet
{
border-top-color: #82172B;
}
.card-border-color-aruna
{
border-top-color: #039be5;
}
.card-full-color .card-header .card-subtitle, .card-full-color .card-header .icon, .card-full-primary, .card-full-primary .tools .icon {
color: #FFF;
}
.card-full, .card-full .tools .icon
{
color: #FFF;
}
.card-full {
background-color: #bdbdbd;
}
.card-full-primary
{
background-color: #5f99f5;
}
.card-full-danger
{
background-color: #eb6357;
color: #FFF;
}
.card-full-warning
{
background-color: #f6c163;
color: #FFF;
}
.card-full-success
{
background-color: #37b358;
color: #FFF;
}
.card-full-dark
{
background-color: #333;
color: #FFF;
}
.card-full-info
{
background-color: #17a2b8;
color: #FFF;
}
.card-full-aruna
{
background-color: #039be5;
color: #FFF;
} | assets/css/aruna.css | body
{
margin: 0;
font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
.ar-card
{
-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
}
.ar-card .card-header
{
font-size: 18px;
font-weight: 300;
padding-left: 0;
padding-right: 0;
padding-top: 1.5384rem;
margin: 0 1.538rem;
border-bottom-width: 0;
border-radius: 3px 3px 0 0;
background-color: transparent;
}
.ar-card .card-header:first-child
{
border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;
}
.ar-card .card-header-divider
{
border-bottom: 1px solid #d9d9d9;
margin: 0 1.138rem 8px;
padding-left: 0;
padding-right: 0;
padding-bottom: 1.2307rem;
}
.card-border-color
{
border-top: 3px solid #c9c9c9;
}
.card-border-color-primary
{
border-top-color: #4285f4;
}
.card-border-color-dark
{
border-top-color: #3d3c3c;
}
.card-border-color-danger
{
border-top-color: #ea4335;
}
.card-border-color-warning
{
border-top-color: #fbbc05;
}
.card-border-color-success
{
border-top-color: #34a853;
}
.card-border-color-redvelvet
{
border-top-color: #82172B;
}
.card-border-color-aruna
{
border-top-color: #039be5;
}
.card-full-color .card-header .card-subtitle, .card-full-color .card-header .icon, .card-full-primary, .card-full-primary .tools .icon {
color: #FFF;
}
.card-full, .card-full .tools .icon
{
color: #FFF;
}
.card-full {
background-color: #bdbdbd;
}
.card-full-primary
{
background-color: #5f99f5;
}
.card-full-danger
{
background-color: #eb6357;
color: #FFF;
}
.card-full-warning
{
background-color: #f6c163;
color: #FFF;
}
.card-full-success
{
background-color: #37b358;
color: #FFF;
}
.card-full-dark
{
background-color: #333;
color: #FFF;
}
.card-full-info
{
background-color: #17a2b8;
color: #FFF;
}
.card-full-aruna
{
background-color: #039be5;
color: #FFF;
} | 0.179207 | 0.058561 |
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Heavy.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Medium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-ThinItalic.woff2') format('woff2');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Black.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-SemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-SemiBoldItalic.woff2') format('woff2');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Bold.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-LightItalic.woff2') format('woff2');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-UltraLight.woff2') format('woff2');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-RegularItalic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-HeavyItalic.woff2') format('woff2');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-BlackItalic.woff2') format('woff2');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-BoldItalic.woff2') format('woff2');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Thin.woff2') format('woff2');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-UltraLightItalic.woff2') format('woff2');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-MediumItalic.woff2') format('woff2');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Light.woff2') format('woff2');
font-weight: 300;
font-style: normal;
} | assets/fonts/fonts.css | @font-face {
font-family: 'Gilroy';
src: url('Gilroy-Heavy.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Medium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-ThinItalic.woff2') format('woff2');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Black.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-SemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-SemiBoldItalic.woff2') format('woff2');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Bold.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-LightItalic.woff2') format('woff2');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-UltraLight.woff2') format('woff2');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-RegularItalic.woff2') format('woff2');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-HeavyItalic.woff2') format('woff2');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-BlackItalic.woff2') format('woff2');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-BoldItalic.woff2') format('woff2');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Thin.woff2') format('woff2');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-UltraLightItalic.woff2') format('woff2');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-MediumItalic.woff2') format('woff2');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Gilroy';
src: url('Gilroy-Light.woff2') format('woff2');
font-weight: 300;
font-style: normal;
} | 0.413477 | 0.071754 |
@import url(https://fonts.googleapis.com/css?family=Lobster&subset=cyrillic);
/*Стили для меню навигации*/
.navbar-inverse {
background-color: rgba(249, 193, 194, 0.95);
border-color: rgba(249, 193, 194, 0.95);
}
.navbar-inverse .navbar-brand {
color: #ffffff;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-text {
color: #ffffff;
}
.navbar-inverse .navbar-nav > li > a {
text-rendering: geometricPrecision;
color: #ffffff;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: black;
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: rgba(191, 225, 223, 0.8);
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #ffffff;
background-color: #9A6C72;
}
.navbar-inverse .navbar-toggle {
border-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #C2E5E3;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #C2E5E3;
color: #ffffff;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #C2E5E3;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #ffffff;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ffffff;
background-color: #9A6C72;
}
}
/*
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #ffffff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444444;
}
*/
/**/
/**/
.wrapper {
text-align: center;
margin-top: 5px;
}
.undermenu {
padding-top: 51px;
}
hr {
border: none;
color: rgba(249, 193, 194, 0.8);
background-color: rgba(249, 193, 194, 0.8);
height: 1px;
}
.wrap {
box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-moz-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-webkit-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-ms-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-o-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
/* Параметры тени */
}
/* Footer styles
-------------------------------------------------- */
#footer {
background-color: rgba(249, 193, 194, 0.8);
margin-top: 15px;
bottom: 0;
width: 100%;
height: 100%;
background-image: url(../img/design.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-blend-mode: multiply;
}
/* Custom footer CSS
-------------------------------------------------- */
.footertext {
color: #ffffff;
}
.text-area-footer {
background-color: rgba(194, 229, 227, 0.75);
padding: 10px 10px;
color: black;
font-family: 'Lobster', cursive;
font-weight: 400;
}
/**/
.img-for-text {
position: relative;
font-family: 'Lobster', cursive;
font-weight: 400;
}
.text-circle {
position: absolute;
top: 115px;
left: 0;
width: 100%;
}
.text-circle span {
background: rgba(194, 229, 227, 0.8);
padding: 10px;
}
.about {
margin-top: 50px;
}
.content {
padding-top: 15px;
}
/*Розовая кнопка*/
.btn-pink {
background-color: rgba(249, 193, 194, 0.7);
color: #000000;
border-color: rgba(249, 193, 194, 0.7);
}
.btn-pink:hover,
.btn-pink:focus {
background-color: #ebb5b6;
color: #000000;
}
.btn-pink:active {
background-color: pink;
color: #000000;
}
/*Кнопка Тифани*/
.btn-tiffany {
background-color: #C2E5E3;
color: #000000;
border-color: #C2E5E3;
}
.btn-tiffany:hover,
.btn-gold:focus {
background-color: #a2bfbe;
color: #000000;
}
.btn-tiffany:active {
background-color: aqua;
color: #000000;
}
.slider-text {
color: white;
text-decoration: none;
text-align: center;
width: 100%;
}
.slider-text p {
background-color: rgba(249, 193, 194, 0.8);
color: #505050;
}
.slider-text:hover {
text-decoration: none;
}
.slider-text p {
background-color: rgba(255, 255, 255, 0.8);
padding: 3px;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.slider-text p:hover {
background-color: rgba(249, 193, 194, 0.8);
text-decoration: none;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
/*Fix border navbar*/
.navbar {
border-radius: 0px;
margin-bottom: 0px;
}
#navbar.fix {
position: fixed;
top: 0;
z-index: 7999;
width: 100%;
}
/*Стили для якоря*/
.anchorup.hide {
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.anchorup {
position: fixed;
left: 20px;
bottom: 20px;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- .grid-item ---- */
.grid-sizer,
.grid-item {
width: 33.333%;
}
.grid-item {
float: left;
}
.grid-item img {
display: block;
max-width: 100%;
}
.grid a {
padding: 3px;
margin: 0;
border-radius: 3px;
border: 3px;
}
.grid img {
border-radius: 5px;
}
/*Стилия для формы отзыва*/
.review {
padding: 5px 5px 5px 5px;
margin-top: 5px;
}
.navbar-toggle {
float: left;
margin-left: 7px;
}
/*
.author-img {
display: block;
float: right;
}*/
.time-rev {
text-align: center;
}
.name-rev {
text-align: center;
}
#navbar {
position: fixed;
top: 0px;
}
.font {
font-family: 'Lobster', cursive;
font-weight: 400;
}
.list-item {
border: 1px solid #F9C1C2;
} | css/style.css | @import url(https://fonts.googleapis.com/css?family=Lobster&subset=cyrillic);
/*Стили для меню навигации*/
.navbar-inverse {
background-color: rgba(249, 193, 194, 0.95);
border-color: rgba(249, 193, 194, 0.95);
}
.navbar-inverse .navbar-brand {
color: #ffffff;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-text {
color: #ffffff;
}
.navbar-inverse .navbar-nav > li > a {
text-rendering: geometricPrecision;
color: #ffffff;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: black;
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: rgba(191, 225, 223, 0.8);
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #ffffff;
background-color: #9A6C72;
}
.navbar-inverse .navbar-toggle {
border-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: rgba(194, 229, 227, 0.8);
-webkit-transition: all 0.3s ease-out 0.1s;
transition: all 0.3s ease-out 0.1s;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #C2E5E3;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #C2E5E3;
color: #ffffff;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #C2E5E3;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #ffffff;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: #F9C1C2;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ffffff;
background-color: #9A6C72;
}
}
/*
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #ffffff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444444;
}
*/
/**/
/**/
.wrapper {
text-align: center;
margin-top: 5px;
}
.undermenu {
padding-top: 51px;
}
hr {
border: none;
color: rgba(249, 193, 194, 0.8);
background-color: rgba(249, 193, 194, 0.8);
height: 1px;
}
.wrap {
box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-moz-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-webkit-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-ms-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
-o-box-shadow: 0px 0px 15px rgba(249, 193, 194, 0.8);
/* Параметры тени */
}
/* Footer styles
-------------------------------------------------- */
#footer {
background-color: rgba(249, 193, 194, 0.8);
margin-top: 15px;
bottom: 0;
width: 100%;
height: 100%;
background-image: url(../img/design.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-blend-mode: multiply;
}
/* Custom footer CSS
-------------------------------------------------- */
.footertext {
color: #ffffff;
}
.text-area-footer {
background-color: rgba(194, 229, 227, 0.75);
padding: 10px 10px;
color: black;
font-family: 'Lobster', cursive;
font-weight: 400;
}
/**/
.img-for-text {
position: relative;
font-family: 'Lobster', cursive;
font-weight: 400;
}
.text-circle {
position: absolute;
top: 115px;
left: 0;
width: 100%;
}
.text-circle span {
background: rgba(194, 229, 227, 0.8);
padding: 10px;
}
.about {
margin-top: 50px;
}
.content {
padding-top: 15px;
}
/*Розовая кнопка*/
.btn-pink {
background-color: rgba(249, 193, 194, 0.7);
color: #000000;
border-color: rgba(249, 193, 194, 0.7);
}
.btn-pink:hover,
.btn-pink:focus {
background-color: #ebb5b6;
color: #000000;
}
.btn-pink:active {
background-color: pink;
color: #000000;
}
/*Кнопка Тифани*/
.btn-tiffany {
background-color: #C2E5E3;
color: #000000;
border-color: #C2E5E3;
}
.btn-tiffany:hover,
.btn-gold:focus {
background-color: #a2bfbe;
color: #000000;
}
.btn-tiffany:active {
background-color: aqua;
color: #000000;
}
.slider-text {
color: white;
text-decoration: none;
text-align: center;
width: 100%;
}
.slider-text p {
background-color: rgba(249, 193, 194, 0.8);
color: #505050;
}
.slider-text:hover {
text-decoration: none;
}
.slider-text p {
background-color: rgba(255, 255, 255, 0.8);
padding: 3px;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
.slider-text p:hover {
background-color: rgba(249, 193, 194, 0.8);
text-decoration: none;
-webkit-transition: all 0.5s ease-out 0.1s;
transition: all 0.5s ease-out 0.1s;
}
/*Fix border navbar*/
.navbar {
border-radius: 0px;
margin-bottom: 0px;
}
#navbar.fix {
position: fixed;
top: 0;
z-index: 7999;
width: 100%;
}
/*Стили для якоря*/
.anchorup.hide {
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.anchorup {
position: fixed;
left: 20px;
bottom: 20px;
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- .grid-item ---- */
.grid-sizer,
.grid-item {
width: 33.333%;
}
.grid-item {
float: left;
}
.grid-item img {
display: block;
max-width: 100%;
}
.grid a {
padding: 3px;
margin: 0;
border-radius: 3px;
border: 3px;
}
.grid img {
border-radius: 5px;
}
/*Стилия для формы отзыва*/
.review {
padding: 5px 5px 5px 5px;
margin-top: 5px;
}
.navbar-toggle {
float: left;
margin-left: 7px;
}
/*
.author-img {
display: block;
float: right;
}*/
.time-rev {
text-align: center;
}
.name-rev {
text-align: center;
}
#navbar {
position: fixed;
top: 0px;
}
.font {
font-family: 'Lobster', cursive;
font-weight: 400;
}
.list-item {
border: 1px solid #F9C1C2;
} | 0.41941 | 0.084266 |
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Lato", sans-serif;
}
.header {
padding: 15px 0;
}
.navigation {
list-style: none;
padding: 0;
margin: 0;
}
.navigation-link {
text-decoration: none;
color: #939699;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.button {
padding: 10px 20px;
background: #4592ff;
border-radius: 20px;
border: none;
color: #fff;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
display: flex;
align-items: center;
cursor: pointer;
outline: none;
}
.button-icon,
.button-price {
margin-right: 10px;
}
.button-icon:last-child {
margin-right: 0;
margin-left: 10px;
}
.fit-content {
width: fit-content;
}
.slide {
padding-top: 90px;
padding-bottom: 110px;
}
.slide-1 {
background: #b4d1e0 url("../src/img/slide-img-1.png") no-repeat top right 30%;
}
.label {
background: #3dc47e;
border-radius: 3px;
padding: 5px 12px;
color: #fff;
font-size: 12px;
line-height: 15px;
}
.slide-title {
color: #262d33;
font-size: 55px;
line-height: 70px;
font-family: "Roboto Slab", serif;
margin-top: 20px;
margin-bottom: 15px;
}
.slide-description {
color: #636568;
font-size: 18px;
line-height: 30px;
max-width: 335px;
margin-bottom: 40px;
}
.slider {
position: relative;
}
.slider-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
}
.slide-button {
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
}
.card {
min-height: 370px;
border-radius: 10px;
padding-top: 60px;
padding-left: 46px;
padding-right: 46px;
padding-bottom: 80px;
border: none;
}
.card-1 {
background: #e3e2e3 url("../src/img/image-016.jpg") no-repeat top right;
background-size: cover;
}
.card-2 {
background: #000 url("../src/img/image-2.jpg") no-repeat top right;
background-size: cover;
}
.card-3 {
padding-top: 35px;
background: #ccd5e6 url("../src/img/image-3.png") no-repeat top right 10%;
background-size: contain;
}
.card-4 {
padding-top: 35px;
padding-left: 25px;
background: #ff4f52 url("../src/img/image-4.png") no-repeat top right;
background-size: contain;
}
.card-title {
color: #262d33;
font-size: 25px;
line-height: 30px;
font-family: "Roboto Slab", serif;
max-width: 222px;
margin: 0;
}
.card-title.large {
max-width: 420px;
font-size: 40px;
line-height: 50px;
margin-top: 30px;
margin-bottom: 20px;
}
.card-text {
max-width: 176px;
font-size: 14px;
line-height: 20px;
color: #4b5157;
margin-bottom: 25px;
}
.card-text.large {
max-width: 320px;
}
.card-price {
color: #fff;
font-weight: 900;
font-size: 14px;
line-height: 20px;
}
.text-light {
color: #fff;
}
.arrival-row {
margin-top: 36px;
margin-bottom: 30px;
}
.title-new-card {
font-family: "Roboto Slab", serif;
font-size: 25px;
line-height: 30px;
color: #262d33;
display: flex;
align-items: center;
}
.view {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #262d33;
font-weight: 900;
}
.line {
background-color: #b5d2e1;
height: 2px;
width: 100%;
}
.card-trade:hover {
box-shadow: 0 0 15px #907ad5;
padding-top: 10px;
padding-bottom: 10px;
cursor: pointer;
}
.df {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.mini-card-title {
margin-top: 19px;
margin-bottom: 5px;
font-family: "Roboto Slab", serif;
font-size: 16px;
line-height: 25px;
color: #262d33;
}
.mini-card-title-description {
margin-top: 0;
margin-bottom: 20px;
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #4b5157;
}
.mini-card-price {
margin-top: 0;
font-family: "Lato", sans-serif;
color: #262d33;
font-size: 18px;
line-height: 30px;
}
.mini-card-1 {
background: transparent url("../src/img/mini-card-1.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-2 {
background: transparent url("../src/img/mini-card-2.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-3 {
background: transparent url("../src/img/mini-card-3.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-4 {
background: transparent url("../src/img/mini-card-4.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.sect-footer {
width: 100%;
background: #8f79d4;
}
.footer {
margin-top: 70px;
}
.row-1 {
margin-top: 45px;
margin-bottom: 44px;
}
.footer-navigation-link {
text-decoration: none;
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #fff;
}
.follow {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #e7d9ff;
}
.footer-navigation-link-2 {
margin-right: 15px;
}
.copyright {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #e7d9ff;
}
hr {
height: 1px;
color: #e7d9ff;
margin-top: 0;
margin-bottom: 0;
}
.row-2 {
margin-top: 30px;
margin-bottom: 40px;
}
.footer-navigation-link-3 {
margin-right: 25px;
}
.top {
font-family: "Lato", sans-serif;
font-weight: 900;
font-size: 14px;
line-height: 20px;
color: #ffffff;
}
.footer-button {
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
margin-left: 15px;
} | css/style-women.css | * {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Lato", sans-serif;
}
.header {
padding: 15px 0;
}
.navigation {
list-style: none;
padding: 0;
margin: 0;
}
.navigation-link {
text-decoration: none;
color: #939699;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.button {
padding: 10px 20px;
background: #4592ff;
border-radius: 20px;
border: none;
color: #fff;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
display: flex;
align-items: center;
cursor: pointer;
outline: none;
}
.button-icon,
.button-price {
margin-right: 10px;
}
.button-icon:last-child {
margin-right: 0;
margin-left: 10px;
}
.fit-content {
width: fit-content;
}
.slide {
padding-top: 90px;
padding-bottom: 110px;
}
.slide-1 {
background: #b4d1e0 url("../src/img/slide-img-1.png") no-repeat top right 30%;
}
.label {
background: #3dc47e;
border-radius: 3px;
padding: 5px 12px;
color: #fff;
font-size: 12px;
line-height: 15px;
}
.slide-title {
color: #262d33;
font-size: 55px;
line-height: 70px;
font-family: "Roboto Slab", serif;
margin-top: 20px;
margin-bottom: 15px;
}
.slide-description {
color: #636568;
font-size: 18px;
line-height: 30px;
max-width: 335px;
margin-bottom: 40px;
}
.slider {
position: relative;
}
.slider-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
}
.slide-button {
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
}
.card {
min-height: 370px;
border-radius: 10px;
padding-top: 60px;
padding-left: 46px;
padding-right: 46px;
padding-bottom: 80px;
border: none;
}
.card-1 {
background: #e3e2e3 url("../src/img/image-016.jpg") no-repeat top right;
background-size: cover;
}
.card-2 {
background: #000 url("../src/img/image-2.jpg") no-repeat top right;
background-size: cover;
}
.card-3 {
padding-top: 35px;
background: #ccd5e6 url("../src/img/image-3.png") no-repeat top right 10%;
background-size: contain;
}
.card-4 {
padding-top: 35px;
padding-left: 25px;
background: #ff4f52 url("../src/img/image-4.png") no-repeat top right;
background-size: contain;
}
.card-title {
color: #262d33;
font-size: 25px;
line-height: 30px;
font-family: "Roboto Slab", serif;
max-width: 222px;
margin: 0;
}
.card-title.large {
max-width: 420px;
font-size: 40px;
line-height: 50px;
margin-top: 30px;
margin-bottom: 20px;
}
.card-text {
max-width: 176px;
font-size: 14px;
line-height: 20px;
color: #4b5157;
margin-bottom: 25px;
}
.card-text.large {
max-width: 320px;
}
.card-price {
color: #fff;
font-weight: 900;
font-size: 14px;
line-height: 20px;
}
.text-light {
color: #fff;
}
.arrival-row {
margin-top: 36px;
margin-bottom: 30px;
}
.title-new-card {
font-family: "Roboto Slab", serif;
font-size: 25px;
line-height: 30px;
color: #262d33;
display: flex;
align-items: center;
}
.view {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #262d33;
font-weight: 900;
}
.line {
background-color: #b5d2e1;
height: 2px;
width: 100%;
}
.card-trade:hover {
box-shadow: 0 0 15px #907ad5;
padding-top: 10px;
padding-bottom: 10px;
cursor: pointer;
}
.df {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.mini-card-title {
margin-top: 19px;
margin-bottom: 5px;
font-family: "Roboto Slab", serif;
font-size: 16px;
line-height: 25px;
color: #262d33;
}
.mini-card-title-description {
margin-top: 0;
margin-bottom: 20px;
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #4b5157;
}
.mini-card-price {
margin-top: 0;
font-family: "Lato", sans-serif;
color: #262d33;
font-size: 18px;
line-height: 30px;
}
.mini-card-1 {
background: transparent url("../src/img/mini-card-1.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-2 {
background: transparent url("../src/img/mini-card-2.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-3 {
background: transparent url("../src/img/mini-card-3.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.mini-card-4 {
background: transparent url("../src/img/mini-card-4.png") no-repeat center top
10px;
background-size: 190px 190px;
}
.sect-footer {
width: 100%;
background: #8f79d4;
}
.footer {
margin-top: 70px;
}
.row-1 {
margin-top: 45px;
margin-bottom: 44px;
}
.footer-navigation-link {
text-decoration: none;
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #fff;
}
.follow {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #e7d9ff;
}
.footer-navigation-link-2 {
margin-right: 15px;
}
.copyright {
font-family: "Lato", sans-serif;
font-size: 14px;
line-height: 20px;
color: #e7d9ff;
}
hr {
height: 1px;
color: #e7d9ff;
margin-top: 0;
margin-bottom: 0;
}
.row-2 {
margin-top: 30px;
margin-bottom: 40px;
}
.footer-navigation-link-3 {
margin-right: 25px;
}
.top {
font-family: "Lato", sans-serif;
font-weight: 900;
font-size: 14px;
line-height: 20px;
color: #ffffff;
}
.footer-button {
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
margin-left: 15px;
} | 0.298491 | 0.086748 |
body {
font:normal 80% Verdana, Helvetica, Arial, sans-serif;
padding: 0;
margin: 0 2em;
}
header,
footer,
article,
section,
aside,
nav {
display:block;
}
table {
border: 1px solid #EEEEEE;
border-collapse:collapse;
}
td, th {
border: thin solid #777777;
padding: 0.25em 0.5em;
}
header {
padding: 8px;
height: 90px;
}
#art_niche {
float: left;
margin-right: 1em;
background-image: url("../images/FitNesseLogo.png");
width: 90px;
height: 90px;
}
#art_niche span {
display: none;
}
header ul {
margin: 0;
padding: 0;
}
header li {
display: inline;
}
header li+li:before {
content: "> ";
}
header h1 {
font: bold 2em;
margin: 0 0 0 102px;
font-weight: normal;
letter-spacing: 0.08em;
margin: 0 0 0 102px;
top: 25px;
position: absolute;
}
header h5 {
color: #aaaaaa;
font: bold 2em;
font-weight: normal;
letter-spacing: 0.08em;
margin: 0 0 0 105px;
top: 56px;
position: absolute;
}
header a, header a:active, header a:visited {
color:#800000
}
header a:hover {
text-decoration:none;
color:#880000
}
nav {
font-size: 0.9em;
border-bottom: 1px solid #800000;
}
nav ul {
float: right;
margin-top: -2.5em;
}
nav ul li {
display: block;
float: left;
list-style: none;
text-align:center;
z-index: 99;
}
nav a, nav a:active, nav a:visited {
color: #000000;
white-space: nowrap;
text-decoration: none;
width: 5em;
height: 1.5em;
color: black;
letter-spacing: 0.1em;
margin-right: 1em;
padding: 0.5em 3em;
background-color: #eeeeee;
border-radius: 0.25em;
border: 1pt solid #aaaaaa;
}
nav a:hover, nav a:active {
background-color: white;
}
nav ul ul {
background: #eeeeee; /* Adding a background makes the dropdown work properly in IE7+. */
position: absolute;
display: none;
border: 1pt solid #aaaaaa;
z-index: 999;
width: 10em;
margin: 0.5em 0 0 0;
padding: .25em;
border-radius: 0.25em;
}
nav hr {
border: 1px solid black;
margin: 0;
}
nav ul ul li {
float: none;
display: block;
line-height: 1.5em;
margin: 0;
text-align: left;
}
nav ul ul li.divider {
border-top: 1px solid #999999;
}
nav ul ul li a,
nav ul ul li a:active {
display: block;
border-radius: 0px;
padding: 0.5em;
height: 1.5em;
border: none;
}
nav ul ul li a:hover {
background-color: white;
width:9em;
}
nav ul ul li a:active {
background-color: #eee;
}
nav li:hover ul {
display: block;
}
article {
padding: 0.5em;
}
footer {
margin: 0;
padding: 0.5em; /* Use same color as border color for div.header. */
border-top: 1px solid #800000;
font-size: 80%;
text-align: center;
}
footer a, header a:active, header a:visited {
color:#800000;
}
footer a:hover {
text-decoration:none;
color:#880000;
}
/** Page content (article) styles **/
h1+br, h2+br, h3+br, h4+br, h5+br, h6+br {
display: none;
}
article h1 {
font: bold 1.5em;
}
article a, header a:active, header a:visited {
color:#800000;
}
article a:hover {
text-decoration:none;
color:#880000;
}
th {
text-align: left;
}
article th {
white-space:nowrap;
}
.dirListing tbody tr:nth-child(odd) {
background: #fff
}
.dirListing tbody tr:nth-child(even) {
background: #efefef
}
#test-action .ok {
background-color: lightblue;
}
#test-action .output {
background-color: lightblue;
}
@media print {
nav ul {
display: none;
}
}
#error-nav {
position: fixed;
right: 0px;
top: 0px;
font-weight: bold;
border-width: 3px;
border-style: solid;
border-color: Black;
height: 60px;
width: 180px;
background-color: #FFAAAA ;
}
#error-nav-label {
text-align: center;
line-height: 50%;
}
#error-nav-controls {
text-align: center;
}
#error-nav button{
width: 30px;
}
#error-nav input{
width: 40px;
}
.error-nav-hidden{
visibility:hidden;
}
.selected-error{
border-style:solid;
border-width:4px;
border-color:SlateGray;
} | FitNesseRoot/ReportFiles/files/fitnesse/css/fitnesse_straight.css | body {
font:normal 80% Verdana, Helvetica, Arial, sans-serif;
padding: 0;
margin: 0 2em;
}
header,
footer,
article,
section,
aside,
nav {
display:block;
}
table {
border: 1px solid #EEEEEE;
border-collapse:collapse;
}
td, th {
border: thin solid #777777;
padding: 0.25em 0.5em;
}
header {
padding: 8px;
height: 90px;
}
#art_niche {
float: left;
margin-right: 1em;
background-image: url("../images/FitNesseLogo.png");
width: 90px;
height: 90px;
}
#art_niche span {
display: none;
}
header ul {
margin: 0;
padding: 0;
}
header li {
display: inline;
}
header li+li:before {
content: "> ";
}
header h1 {
font: bold 2em;
margin: 0 0 0 102px;
font-weight: normal;
letter-spacing: 0.08em;
margin: 0 0 0 102px;
top: 25px;
position: absolute;
}
header h5 {
color: #aaaaaa;
font: bold 2em;
font-weight: normal;
letter-spacing: 0.08em;
margin: 0 0 0 105px;
top: 56px;
position: absolute;
}
header a, header a:active, header a:visited {
color:#800000
}
header a:hover {
text-decoration:none;
color:#880000
}
nav {
font-size: 0.9em;
border-bottom: 1px solid #800000;
}
nav ul {
float: right;
margin-top: -2.5em;
}
nav ul li {
display: block;
float: left;
list-style: none;
text-align:center;
z-index: 99;
}
nav a, nav a:active, nav a:visited {
color: #000000;
white-space: nowrap;
text-decoration: none;
width: 5em;
height: 1.5em;
color: black;
letter-spacing: 0.1em;
margin-right: 1em;
padding: 0.5em 3em;
background-color: #eeeeee;
border-radius: 0.25em;
border: 1pt solid #aaaaaa;
}
nav a:hover, nav a:active {
background-color: white;
}
nav ul ul {
background: #eeeeee; /* Adding a background makes the dropdown work properly in IE7+. */
position: absolute;
display: none;
border: 1pt solid #aaaaaa;
z-index: 999;
width: 10em;
margin: 0.5em 0 0 0;
padding: .25em;
border-radius: 0.25em;
}
nav hr {
border: 1px solid black;
margin: 0;
}
nav ul ul li {
float: none;
display: block;
line-height: 1.5em;
margin: 0;
text-align: left;
}
nav ul ul li.divider {
border-top: 1px solid #999999;
}
nav ul ul li a,
nav ul ul li a:active {
display: block;
border-radius: 0px;
padding: 0.5em;
height: 1.5em;
border: none;
}
nav ul ul li a:hover {
background-color: white;
width:9em;
}
nav ul ul li a:active {
background-color: #eee;
}
nav li:hover ul {
display: block;
}
article {
padding: 0.5em;
}
footer {
margin: 0;
padding: 0.5em; /* Use same color as border color for div.header. */
border-top: 1px solid #800000;
font-size: 80%;
text-align: center;
}
footer a, header a:active, header a:visited {
color:#800000;
}
footer a:hover {
text-decoration:none;
color:#880000;
}
/** Page content (article) styles **/
h1+br, h2+br, h3+br, h4+br, h5+br, h6+br {
display: none;
}
article h1 {
font: bold 1.5em;
}
article a, header a:active, header a:visited {
color:#800000;
}
article a:hover {
text-decoration:none;
color:#880000;
}
th {
text-align: left;
}
article th {
white-space:nowrap;
}
.dirListing tbody tr:nth-child(odd) {
background: #fff
}
.dirListing tbody tr:nth-child(even) {
background: #efefef
}
#test-action .ok {
background-color: lightblue;
}
#test-action .output {
background-color: lightblue;
}
@media print {
nav ul {
display: none;
}
}
#error-nav {
position: fixed;
right: 0px;
top: 0px;
font-weight: bold;
border-width: 3px;
border-style: solid;
border-color: Black;
height: 60px;
width: 180px;
background-color: #FFAAAA ;
}
#error-nav-label {
text-align: center;
line-height: 50%;
}
#error-nav-controls {
text-align: center;
}
#error-nav button{
width: 30px;
}
#error-nav input{
width: 40px;
}
.error-nav-hidden{
visibility:hidden;
}
.selected-error{
border-style:solid;
border-width:4px;
border-color:SlateGray;
} | 0.444565 | 0.110904 |
html {
position: static !important;
margin: 0;
padding: 0;
background-color: #252525;
background-image: url("./image/line-tile.png");
color: #222222;
font-size: 100%;
line-height: 1;
}
body {
max-width: 1200px;
margin: 0 auto;
padding: 0;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.2;
}
p {
margin: 0 0 1.5em;
}
blockquote {
margin: 0 0 1em 0;
padding-left: 1.5em;
border-left: 4px solid rgba(170, 170, 170, .5);
line-height: 1.5;
font-style: italic;
}
pre {
overflow-y: hidden;
overflow-x: auto;
padding: .8em;
border: 1px solid #05232b;
background-color: #002b36;
color: #93a1a1;
line-height: 1.45em;
}
a {
-webkit-transition: color 0.3s;
-moz-transition:color 0.3s;
-ms-transition:color 0.3s;
-o-transition:color 0.3s;
transition:color 0.3s
color: #1863a1;
}
a:visited {
color: #751590;
}
a:focus {
color: #0181eb;
}
a:hover {
color: #0181eb;
}
a:active {
color: #01579f
}
img {
max-width: 100%;
}
em,
strong {
font-weight: bold;
font-style: normal;
}
code {
word-break: break-all;
}
q::before,
q::after {
content: "";
}
/* header */
body > .header {
padding: 1.5em 55px;
background-color: #333333;
font-size: 1.3em;
}
body > .header h1 {
margin: 0;
font-size: 2.2em;
font-weight: normal;
line-height: 1.2;
}
body > .header h1 a {
color: #f2f2f2;
text-decoration: none;
}
body > .header .description {
margin: .2em 0 0;
color: #aaaaaa;
font-size: 1em;
}
/* navigation */
body > .navigation {
position: relative;
margin: 0;
padding: .35em 55px;
border-color: #f2f2f2 transparent #8c8c8c;
border-style: solid;
border-width: thin 0;
background-color: #cccccc;
background-image: -webkit-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -moz-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -ms-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -o-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
font-size: .9em;
}
body > .navigation::after,
body > .navigation ul::after {
display: block;
content: "";
clear: both;
}
body > .navigation a {
float: left;
padding: .1em 0;
color: #6b6b6b;
font-size: 1.1em;
text-decoration: none;
text-shadow: #ebebeb 0 1px;
line-height: 1.5;
}
body > .navigation a:visited {
color: #6b6b6b;
}
body > .navigation a:hover {
color: #2b2b2b;
}
body > .navigation ul {
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
float: left;
display: block;
padding-top: .15em;
}
body > .navigation ul li {
display: inline;
float: left;
white-space: nowrap;
}
body > .navigation ul li:last-child {
padding-left: 0;
}
body > .navigation ul li + li {
margin-left: .8em;
border-left: thin solid #b0b0b0;
}
body > .navigation ul li + li a {
padding-left: .8em;
border-left: thin solid #dedede;
}
body > .navigation .subscription {
position: relative;
top: .2em;
float: right;
margin-left: .8em;
}
body > .navigation .subscription li {
padding: 0;
border: 0;
}
body > .navigation .subscription li a[type="application/rss+xml"] {
position: relative;
top: 0;
margin: 0;
padding: 0;
background-color: #dedede;
text-indent: -999999em;
}
body > .navigation .subscription li a[type="application/rss+xml"],
body > .navigation .subscription li a[type="application/rss+xml"]::after {
-webkit-mask-image: url("./image/rss.png");
-moz-mask-image: url("./image/rss.png");
-ms-mask-image: url("./image/rss.png");
-o-mask-image: url("./image/rss.png");
mask-image: url("./image/rss.png");
-webkit-mask-repeat: no-repeat;
-moz-mask-repeat: no-repeat;
-ms-mask-repeat: no-repeat;
-o-mask-repeat: no-repeat;
mask-repeat: no-repeat;
width: 22px;
height: 22px;
}
body > .navigation .subscription li a[type="application/rss+xml"]::after{
display: block;
content: "";
position: absolute;
top: -1px;
left: 0;
background-color: #ababab
}
body > .navigation .subscription li a[type="application/rss+xml"]:hover::after {
background-color: #9e9e9e;
}
body > .navigation .subscription li:last-child a {
padding-right: 0;
}
body > .navigation form {
float: right;
width: 215px;
padding-left: .8em;
text-align: left;
}
body > .navigation form fieldset {
float: right;
width: 99%;
margin: 0;
padding: 0;
border: 0;
}
body > .navigation form fieldset .search {
width: 93%;
padding: .3em .5em 0;
border: thin solid #b3b3b3;
border-radius: .5em;
box-shadow: #d1d1d1 0 1px;
background-color: #f2f2f2;
color: #888888;
font-size: .95em;
line-height: 1.2;
}
body > .navigation form fieldset .search:focus {
border-color: #80b1df;
outline: none;
-webkit-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-moz-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-ms-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-o-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
background-color: #ffffff;
color: #444444;
}
/* footer */
body > .footer {
position: relative;
margin: 0 0 3em;
padding: 1em 55px;
border-top: thin solid #f2f2f2;
border-bottom-left-radius: 0.4em;
border-bottom-right-radius: 0.4em;
background-color: #cccccc;
background-image: -webkit-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -moz-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -ms-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -o-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
color: #888888;
font-size: .8em;
text-shadow: #d9d9d9 0 1px;
}
body > .footer a {
color: #6b6b6b;
}
body > .footer a:hover {
color: #484848;
}
body > .footer p:last-child {
margin-bottom: 0;
}
/* main */
.main {
width: 100%;
border-bottom: thin solid #bfbfbf;
background-color: #f2f2f2;
background-image: url("./image/noise.png");
display: table;
table-layout: fixed;
}
.main > .content,
.main > .aside {
box-sizing: border-box;
display: table-cell;
vertical-align: top;
}
.main > .aside {
width: 300px;
border-left: 1px solid #e0e0e0;
font-size: .8em;
}
.main > .aside > div {
margin: 0 20px 1.5em;
}
.main > .aside > div:first-child {
margin-top: 40px;
}
.main > .aside a {
color: inherit;
}
.main > .aside:hover a {
color:#1863a1
}
.main > .aside:hover a:hover{
color:#0181eb
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6,
.main > .aside p,
.main > .aside ol,
.main > .aside li {
display: block;
margin: 0;
padding: 0;
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6,
.main > .aside p,
.main > .aside li {
border-bottom: 1px solid #e0e0e0;
-webkit-box-shadow: #fff 0 1px;
-moz-box-shadow: #fff 0 1px;
box-shadow: #fff 0 1px;
padding: .5em 0;
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6 {
font-size: 1.5em;
font-weight: bold;
}
.main > .aside ol + p:last-child {
text-align: right;
}
body > .main .content {
background-color: #f2f2f2;
background-color: #f8f8f8;
background-image: url("./image/noise.png");
}
body.post > .main .content {
padding-top: 27.5px;
padding-bottom: 27.5px;
}
#recent-posts li:nth-child(10) ~ li,
#popular-posts li:nth-child(10) ~ li,
body.post #recent-posts li:nth-child(5) ~ li,
body.post #popular-posts li:nth-child(5) ~ li {
display: none;
}
/* article */
.article {
padding: 2em 55px 0;
}
.article + .article {
border-top: thin dotted #bfbfbf;
}
.article > p,
.article > blockquote p {
text-align: justify;
text-indent: 1em;
}
.article .header {
position: relative;
margin: 0 0 1.5em;
padding: 2em 0 0;
}
.post .article .header {
border-bottom: thin dotted #bfbfbf;
margin-bottom: 1.5em;
padding-bottom: 1em;
}
.article .header h2 {
margin: 0;
font-size: 2.2em;
}
.post .article .header h2 {
font-size: 2.6em;
}
.article .header h2 a {
color: inherit;
text-decoration: none;
}
.article .header h2 a:hover {
color: #0181eb;
text-decoration: underline;
}
.article .header p {
margin: 0;
color: #aaaaaa;
font-size: .9em;
}
.article .header .meta {
position: absolute;
top: 0;
text-transform: uppercase;
}
.article .footer {
margin: 2em 0 0;
padding: 0 0 2.5em;
}
.article .footer .meta {
clear: both;
overflow: hidden;
margin: 0 0 .8em;
font-size: .85em;
}
.article .footer .meta:first-child + * {
padding: 1em 0 0;
border-top: thin dotted #bfbfbf;
}
.article .footer .meta .author ~ *::before {
display: inline-block;
content: "\2022 ";
padding: 0 .4em 0 .2em;
}
.article .footer .meta a[rel="prev"],
.article .footer .meta a[rel="next"] {
margin-bottom: .8em;
}
.article .footer .meta a[rel="prev"] {
float: left;
margin-right: 1.5em;
}
.article .footer .meta a[rel="next"] {
float: right;
margin-left: 1.5em;
}
/* pagination */
.pagination {
margin: 0 35px;
padding: 1.5em 0;
border-top: thin dotted #bfbfbf;
font-size: .95em;
text-align: center;
}
.pagination a {
color: #aaaaaa;
text-decoration: none;
}
.pagination a:hover {
color: #0181eb;
}
.pagination a::before,
.pagination a::after {
content: "\2014";
padding: 0 .3em;
} | octopress-tumblr-theme.css | html {
position: static !important;
margin: 0;
padding: 0;
background-color: #252525;
background-image: url("./image/line-tile.png");
color: #222222;
font-size: 100%;
line-height: 1;
}
body {
max-width: 1200px;
margin: 0 auto;
padding: 0;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.2;
}
p {
margin: 0 0 1.5em;
}
blockquote {
margin: 0 0 1em 0;
padding-left: 1.5em;
border-left: 4px solid rgba(170, 170, 170, .5);
line-height: 1.5;
font-style: italic;
}
pre {
overflow-y: hidden;
overflow-x: auto;
padding: .8em;
border: 1px solid #05232b;
background-color: #002b36;
color: #93a1a1;
line-height: 1.45em;
}
a {
-webkit-transition: color 0.3s;
-moz-transition:color 0.3s;
-ms-transition:color 0.3s;
-o-transition:color 0.3s;
transition:color 0.3s
color: #1863a1;
}
a:visited {
color: #751590;
}
a:focus {
color: #0181eb;
}
a:hover {
color: #0181eb;
}
a:active {
color: #01579f
}
img {
max-width: 100%;
}
em,
strong {
font-weight: bold;
font-style: normal;
}
code {
word-break: break-all;
}
q::before,
q::after {
content: "";
}
/* header */
body > .header {
padding: 1.5em 55px;
background-color: #333333;
font-size: 1.3em;
}
body > .header h1 {
margin: 0;
font-size: 2.2em;
font-weight: normal;
line-height: 1.2;
}
body > .header h1 a {
color: #f2f2f2;
text-decoration: none;
}
body > .header .description {
margin: .2em 0 0;
color: #aaaaaa;
font-size: 1em;
}
/* navigation */
body > .navigation {
position: relative;
margin: 0;
padding: .35em 55px;
border-color: #f2f2f2 transparent #8c8c8c;
border-style: solid;
border-width: thin 0;
background-color: #cccccc;
background-image: -webkit-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -moz-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -ms-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -o-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
font-size: .9em;
}
body > .navigation::after,
body > .navigation ul::after {
display: block;
content: "";
clear: both;
}
body > .navigation a {
float: left;
padding: .1em 0;
color: #6b6b6b;
font-size: 1.1em;
text-decoration: none;
text-shadow: #ebebeb 0 1px;
line-height: 1.5;
}
body > .navigation a:visited {
color: #6b6b6b;
}
body > .navigation a:hover {
color: #2b2b2b;
}
body > .navigation ul {
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
float: left;
display: block;
padding-top: .15em;
}
body > .navigation ul li {
display: inline;
float: left;
white-space: nowrap;
}
body > .navigation ul li:last-child {
padding-left: 0;
}
body > .navigation ul li + li {
margin-left: .8em;
border-left: thin solid #b0b0b0;
}
body > .navigation ul li + li a {
padding-left: .8em;
border-left: thin solid #dedede;
}
body > .navigation .subscription {
position: relative;
top: .2em;
float: right;
margin-left: .8em;
}
body > .navigation .subscription li {
padding: 0;
border: 0;
}
body > .navigation .subscription li a[type="application/rss+xml"] {
position: relative;
top: 0;
margin: 0;
padding: 0;
background-color: #dedede;
text-indent: -999999em;
}
body > .navigation .subscription li a[type="application/rss+xml"],
body > .navigation .subscription li a[type="application/rss+xml"]::after {
-webkit-mask-image: url("./image/rss.png");
-moz-mask-image: url("./image/rss.png");
-ms-mask-image: url("./image/rss.png");
-o-mask-image: url("./image/rss.png");
mask-image: url("./image/rss.png");
-webkit-mask-repeat: no-repeat;
-moz-mask-repeat: no-repeat;
-ms-mask-repeat: no-repeat;
-o-mask-repeat: no-repeat;
mask-repeat: no-repeat;
width: 22px;
height: 22px;
}
body > .navigation .subscription li a[type="application/rss+xml"]::after{
display: block;
content: "";
position: absolute;
top: -1px;
left: 0;
background-color: #ababab
}
body > .navigation .subscription li a[type="application/rss+xml"]:hover::after {
background-color: #9e9e9e;
}
body > .navigation .subscription li:last-child a {
padding-right: 0;
}
body > .navigation form {
float: right;
width: 215px;
padding-left: .8em;
text-align: left;
}
body > .navigation form fieldset {
float: right;
width: 99%;
margin: 0;
padding: 0;
border: 0;
}
body > .navigation form fieldset .search {
width: 93%;
padding: .3em .5em 0;
border: thin solid #b3b3b3;
border-radius: .5em;
box-shadow: #d1d1d1 0 1px;
background-color: #f2f2f2;
color: #888888;
font-size: .95em;
line-height: 1.2;
}
body > .navigation form fieldset .search:focus {
border-color: #80b1df;
outline: none;
-webkit-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-moz-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-ms-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
-o-box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
box-shadow: #80b1df 0 0 4px, #80b1df 0 0 3px inset;
background-color: #ffffff;
color: #444444;
}
/* footer */
body > .footer {
position: relative;
margin: 0 0 3em;
padding: 1em 55px;
border-top: thin solid #f2f2f2;
border-bottom-left-radius: 0.4em;
border-bottom-right-radius: 0.4em;
background-color: #cccccc;
background-image: -webkit-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -moz-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -ms-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: -o-linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
background-image: linear-gradient(#e0e0e0, #cccccc, #b0b0b0);
color: #888888;
font-size: .8em;
text-shadow: #d9d9d9 0 1px;
}
body > .footer a {
color: #6b6b6b;
}
body > .footer a:hover {
color: #484848;
}
body > .footer p:last-child {
margin-bottom: 0;
}
/* main */
.main {
width: 100%;
border-bottom: thin solid #bfbfbf;
background-color: #f2f2f2;
background-image: url("./image/noise.png");
display: table;
table-layout: fixed;
}
.main > .content,
.main > .aside {
box-sizing: border-box;
display: table-cell;
vertical-align: top;
}
.main > .aside {
width: 300px;
border-left: 1px solid #e0e0e0;
font-size: .8em;
}
.main > .aside > div {
margin: 0 20px 1.5em;
}
.main > .aside > div:first-child {
margin-top: 40px;
}
.main > .aside a {
color: inherit;
}
.main > .aside:hover a {
color:#1863a1
}
.main > .aside:hover a:hover{
color:#0181eb
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6,
.main > .aside p,
.main > .aside ol,
.main > .aside li {
display: block;
margin: 0;
padding: 0;
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6,
.main > .aside p,
.main > .aside li {
border-bottom: 1px solid #e0e0e0;
-webkit-box-shadow: #fff 0 1px;
-moz-box-shadow: #fff 0 1px;
box-shadow: #fff 0 1px;
padding: .5em 0;
}
.main > .aside h1,
.main > .aside h2,
.main > .aside h3,
.main > .aside h4,
.main > .aside h5,
.main > .aside h6 {
font-size: 1.5em;
font-weight: bold;
}
.main > .aside ol + p:last-child {
text-align: right;
}
body > .main .content {
background-color: #f2f2f2;
background-color: #f8f8f8;
background-image: url("./image/noise.png");
}
body.post > .main .content {
padding-top: 27.5px;
padding-bottom: 27.5px;
}
#recent-posts li:nth-child(10) ~ li,
#popular-posts li:nth-child(10) ~ li,
body.post #recent-posts li:nth-child(5) ~ li,
body.post #popular-posts li:nth-child(5) ~ li {
display: none;
}
/* article */
.article {
padding: 2em 55px 0;
}
.article + .article {
border-top: thin dotted #bfbfbf;
}
.article > p,
.article > blockquote p {
text-align: justify;
text-indent: 1em;
}
.article .header {
position: relative;
margin: 0 0 1.5em;
padding: 2em 0 0;
}
.post .article .header {
border-bottom: thin dotted #bfbfbf;
margin-bottom: 1.5em;
padding-bottom: 1em;
}
.article .header h2 {
margin: 0;
font-size: 2.2em;
}
.post .article .header h2 {
font-size: 2.6em;
}
.article .header h2 a {
color: inherit;
text-decoration: none;
}
.article .header h2 a:hover {
color: #0181eb;
text-decoration: underline;
}
.article .header p {
margin: 0;
color: #aaaaaa;
font-size: .9em;
}
.article .header .meta {
position: absolute;
top: 0;
text-transform: uppercase;
}
.article .footer {
margin: 2em 0 0;
padding: 0 0 2.5em;
}
.article .footer .meta {
clear: both;
overflow: hidden;
margin: 0 0 .8em;
font-size: .85em;
}
.article .footer .meta:first-child + * {
padding: 1em 0 0;
border-top: thin dotted #bfbfbf;
}
.article .footer .meta .author ~ *::before {
display: inline-block;
content: "\2022 ";
padding: 0 .4em 0 .2em;
}
.article .footer .meta a[rel="prev"],
.article .footer .meta a[rel="next"] {
margin-bottom: .8em;
}
.article .footer .meta a[rel="prev"] {
float: left;
margin-right: 1.5em;
}
.article .footer .meta a[rel="next"] {
float: right;
margin-left: 1.5em;
}
/* pagination */
.pagination {
margin: 0 35px;
padding: 1.5em 0;
border-top: thin dotted #bfbfbf;
font-size: .95em;
text-align: center;
}
.pagination a {
color: #aaaaaa;
text-decoration: none;
}
.pagination a:hover {
color: #0181eb;
}
.pagination a::before,
.pagination a::after {
content: "\2014";
padding: 0 .3em;
} | 0.460532 | 0.115336 |
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-webkit-keyframes moveInFromLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes moveInFromLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes moveOutToLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
}
@keyframes moveOutToLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
}
@-webkit-keyframes moveInFromRight {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes moveInFromRight {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes moveOutToRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
}
}
@keyframes moveOutToRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
}
}
.sceneElement {
-webkit-animation-duration: .1s;
animation-duration: .1s;
transition-timing-function: ease-in;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.is-exiting .sceneElement {
transition-timing-function: ease-out;
}
#main[data-transition=fade] .sceneElement {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
#main[data-transition=fade].is-exiting .sceneElement {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
#main[data-transition=moveleft] .sceneElement {
-webkit-animation-name: moveInFromLeft;
animation-name: moveInFromLeft;
}
#main[data-transition=moveleft].is-exiting .sceneElement {
-webkit-animation-name: moveOutToRight;
animation-name: moveOutToRight;
}
#main[data-transition=moveright] .sceneElement {
-webkit-animation-name: moveInFromRight;
animation-name: moveInFromRight;
}
#main[data-transition=moveright].is-exiting .sceneElement {
-webkit-animation-name: moveOutToLeft;
animation-name: moveOutToLeft;
} | www/css/transitions.css | @-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-webkit-keyframes moveInFromLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes moveInFromLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes moveOutToLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
}
@keyframes moveOutToLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
}
@-webkit-keyframes moveInFromRight {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes moveInFromRight {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes moveOutToRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
}
}
@keyframes moveOutToRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
}
}
.sceneElement {
-webkit-animation-duration: .1s;
animation-duration: .1s;
transition-timing-function: ease-in;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.is-exiting .sceneElement {
transition-timing-function: ease-out;
}
#main[data-transition=fade] .sceneElement {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
#main[data-transition=fade].is-exiting .sceneElement {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
#main[data-transition=moveleft] .sceneElement {
-webkit-animation-name: moveInFromLeft;
animation-name: moveInFromLeft;
}
#main[data-transition=moveleft].is-exiting .sceneElement {
-webkit-animation-name: moveOutToRight;
animation-name: moveOutToRight;
}
#main[data-transition=moveright] .sceneElement {
-webkit-animation-name: moveInFromRight;
animation-name: moveInFromRight;
}
#main[data-transition=moveright].is-exiting .sceneElement {
-webkit-animation-name: moveOutToLeft;
animation-name: moveOutToLeft;
} | 0.455925 | 0.129458 |
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 100;
src: local('Lato Hairline'), local('Lato-Hairline'), url(https://fonts.gstatic.com/s/lato/v11/boeCNmOCCh-EWFLSfVffDg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
src: local('Lato Light'), local('Lato-Light'), url(https://fonts.gstatic.com/s/lato/v11/KT3KS9Aol4WfR6Vas8kNcg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v11/wkfQbvfT_02e2IWO3yYueQ.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 900;
src: local('Lato Black'), local('Lato-Black'), url(https://fonts.gstatic.com/s/lato/v11/BVtM30trf7q_jfqYeHfjtA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 100;
src: local('Lato Hairline Italic'), local('Lato-HairlineItalic'), url(https://fonts.gstatic.com/s/lato/v11/CggrdU0t5c42NcNxN-VM3_esZW2xOQ-xsNqO47m55DA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 300;
src: local('Lato Light Italic'), local('Lato-LightItalic'), url(https://fonts.gstatic.com/s/lato/v11/2HG_tEPiQ4Z6795cGfdivD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 400;
src: local('Lato Italic'), local('Lato-Italic'), url(https://fonts.gstatic.com/s/lato/v11/oUan5VrEkpzIazlUe5ieaA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(https://fonts.gstatic.com/s/lato/v11/HkF_qI1x_noxlxhrhMQYED8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 900;
src: local('Lato Black Italic'), local('Lato-BlackItalic'), url(https://fonts.gstatic.com/s/lato/v11/VNUH7ZAcagYBWsAiBBCEYz8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
} | Documents/Ruby Inheritance, Encapsulation and Polymorphism_files/css_002.css | @font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 100;
src: local('Lato Hairline'), local('Lato-Hairline'), url(https://fonts.gstatic.com/s/lato/v11/boeCNmOCCh-EWFLSfVffDg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
src: local('Lato Light'), local('Lato-Light'), url(https://fonts.gstatic.com/s/lato/v11/KT3KS9Aol4WfR6Vas8kNcg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/9k-RPmcnxYEPm8CNFsH2gg.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v11/wkfQbvfT_02e2IWO3yYueQ.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 900;
src: local('Lato Black'), local('Lato-Black'), url(https://fonts.gstatic.com/s/lato/v11/BVtM30trf7q_jfqYeHfjtA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 100;
src: local('Lato Hairline Italic'), local('Lato-HairlineItalic'), url(https://fonts.gstatic.com/s/lato/v11/CggrdU0t5c42NcNxN-VM3_esZW2xOQ-xsNqO47m55DA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 300;
src: local('Lato Light Italic'), local('Lato-LightItalic'), url(https://fonts.gstatic.com/s/lato/v11/2HG_tEPiQ4Z6795cGfdivD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 400;
src: local('Lato Italic'), local('Lato-Italic'), url(https://fonts.gstatic.com/s/lato/v11/oUan5VrEkpzIazlUe5ieaA.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 700;
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(https://fonts.gstatic.com/s/lato/v11/HkF_qI1x_noxlxhrhMQYED8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 900;
src: local('Lato Black Italic'), local('Lato-BlackItalic'), url(https://fonts.gstatic.com/s/lato/v11/VNUH7ZAcagYBWsAiBBCEYz8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
} | 0.434221 | 0.106737 |
@charset "UTF-8";
@font-face {font-family: "user_iconfont";
src: url('../fonts/iconfont.eot');
src: url('../fonts/iconfont.eot#iefix') format('embedded-opentype'),
url('../fonts/iconfont.woff') format('woff'),
url('../fonts/iconfont.ttf') format('truetype'),
url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
font-family: "user_iconfont" !important;
font-size: 24px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.1px;
-moz-osx-font-smoothing: grayscale;
}
body,html {
font-family: 'PingFang SC','Myriad Pro','Hiragino Sans GB','microsoft yahei'!important;
color: #333;
margin: 0;
font-size: 14px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
background: #fafafa!important
}
blockquote, figure, form, h1, h2, h3, h4, h5, h6, p {
margin: 0;
}
em,i {
font-style: normal
}
b {
font-weight: 400!important
}
a,body {
color: #333;
}
a,a:active,a:hover {
outline: 0
}
dd, dl, li, ol, ul {
margin: 0;
padding: 0;
}
ol,ul {
list-style: none
}
img {
border: 0;
vertical-align: middle;
-ms-interpolation-mode: bicubic
}
input {
line-height: normal;
outline: 0;
}
input[type=checkbox],input[type=radio] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
height: auto
}
input[type=search] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box
}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}
textarea {
resize: vertical;
outline: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
background: 0 0;
text-decoration: none;
font-size: 12px
}
a:hover {
color: #f5546f!important
}
.hide {
display: none
}
.fr {
float: right
}
.ibody, .pho-tabs {
background: #fff;
margin-bottom:10px;
}
.wrap1200 {
position: relative;
margin: 0 auto;
width: 1200px;
zoom: 1
}
.wrap1200:after {
display: block;
content: '';
clear: both
}
.mod-header .logo {
height: 50px;
position: relative
}
.mod-header .logo .logoImage {
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%)
}
.iMod {
height: 72px!important;
clear: both
}
.iMod .mybookshelf,.iMod .search-top {
margin-top: 20px!important
}
.iMod .imotie {
width: 170px;
font-size: 24px;
font-weight: 700;
float: left;
line-height: 72px
}
.iMod .iUl {
padding-top: 13px;
width: 400px;
float: left
}
.iMod .iUl li {
float: left;
margin-right: 50px;
font-size: 16px;
height: 56px;
line-height: 54px;
border-bottom: solid 3px transparent
}
.iMod .iUl li a {
font-size: 16px;
color: #666
}
.iMod .iUl li, .iMod .iUl li.accounts {
position: relative;
}
.iMod .iUl li.on,.iMod .iUl li:hover {
border-bottom: solid 3px #ff4c2f
}
.iMod .iUl li.accounts p {
padding: 10px 0;
position: absolute;
top: 60px;
left: -40px;
z-index: 99999;
display: none;
width: 140px;
background: #fff;
text-align: center;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.iMod .iUl li.accounts p a {
display: block;
color: #333;
font-size: 14px;
height: 30px;
line-height: 30px;
}
.iMod .iUl li.accounts p a:hover{color:#fff!important;background:#ff4c2f}
.searchbox {
width: 247px;
height: 30px;
line-height: 30px;
margin-top: 10px;
top: 10px;
right: 150px;
position: absolute
}
.searchbox .searchbox-inner {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2
}
.searchbox .searchbox-inner .searchinput {
border: 0;
padding: 0 0 0 30px;
font-size: 12px;
width: 217px;
height: 30px;
line-height: 30px;
margin-top: 0;
display: block;
background: #faf9f4;
border-radius: 16px;
outline: 0
}
.searchbox .searchbox-inner .searchinput::-webkit-input-placeholder {
color: #7e7e7e
}
.searchbox .searchbox-inner .searchbtn {
display: block;
background: #333;
border: 0;
cursor: pointer;
position: absolute;
right: 0;
top: 1px;
border-radius: 50%;
width: 30px;
height: 30px
}
.searchbox .searchbox-inner .search-icon {
position: absolute;
right: 4px;
top: 6px;
z-index: 2;
pointer-events: none;
background-image: url(../images/sprite.png);
background-position: -28px -50px;
width: 20px;
height: 21px
}
.mod-header .login {
float: right;
position: relative;
background: #fff;
padding-top: 22px;
}
.mod-header .login .login_after{position: relative;}
.mod-header .login .login_after img{width: 30px; height: 30px; border-radius: 50%;}
.mod-header .login .login_after a{ font-size: 12px; color: #6a6a6a; max-width: 84px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.mod-header .login .login_after .yh{ padding: 0 10px 0 10px; position: relative; z-index: 100;}
.mod-header .login .login_after .yh a{margin: 2px 0 0 0;}
.mod-header .login a:hover{color: #f26552;}
.mod-header .login_after:hover .xiala{display: block;}
.mod-header .login_after .xiala{width: 146px; height: 126px; background:#fff; box-shadow: 0 0 5px rgba(0,0,0,0.1); border-radius: 4px; position: absolute; left: 0; top: -14px; z-index: 99; padding-top: 50px; display: none;}
.mod-header .login_after .xiala li{height: 42px; line-height: 42px; padding: 0 0 0 15px; cursor: pointer;}
.mod-header .login_after .xiala li:hover{background: #fafafa;}
.mod-header .login_after .xiala .on{background: #fafafa;}
.mod-header .login_after .xiala i{font-size: 16px;width: 14px; height: 14px; margin: 15px 14px 0 5px;}
.i-right .bookshelfMod table tr td img,.i-right .myReview .divBd .myBookList li .bookCover img,.i-right .myReview .divBd .reviewList li .bookCover,.img {
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .doneList table tr td.t4 p,.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.none,.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookName,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookName,.i-right .myReview .divBd .fabList li a.reviewTit,.i-right .rewardList table tr td.t3 p,.i-right .subList table tr td.t3 p,.myWorks ul li p .bookName.other,.textStatus {
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden
}
.anormal,.del_Layer_yes,.i-right .bookshelfMod table tr a.goon:hover,.i-right .bookshelfMod table tr td.t7 a.goon:hover,.i-right .i-bot .l-botMod .myMod .bookUl li .addShelf:hover,.i-right .i-bot .l-botMod .myMod .bookUl li p i.goon:hover,.i-right .i-bot .l-botMod .myMod .bookUl li p i.hover,.more:hover,.my_Post_content_del:hover,.my_Post_content_edit:hover,.my_Post_content_look:hover,.my_Post_content_stop:hover {
color: #fff!important;
background: #ff4c2f;
border: 1px solid #ff4c2f!important
}
.ahover,.i-right .moneyBg a.m4:hover,.i-right .myReview .divBd .myBookList li .reviewDetail i a.on:hover {
color: #fff!important;
background: #9e3521;
border: 1px solid #9e3521
}
#main {
padding-top: 0!important
}
.iw-left {
float: left;
width: 240px!important;
background: #fff;
overflow: hidden
}
.iw-left .homeFans {
padding: 30px 0 20px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.iw-left .homeFans li {
float: left;
width: 120px;
text-align: center;
font-size: 12px;
color: #999
}
.iw-left .homeFans li span {
display: block;
margin: 15px auto;
width: 15px;
height: 2px;
background: #f2f2f2
}
.iw-left .homeFans li b {
display: block;
color: #333;
font-size: 14px
}
.iw-left .homeGray {
height: 10px;
background: #fafafa
}
.iw-left .homeBadge {
padding: 0 0 20px 12px;
overflow: hidden
}
.iw-left .homeBadge span {
margin: 20px 0 0 10px;
display: inline-block;
width: 24px;
height: 24px;
border: 1px solid #f2f2f2
}
.i-left,.i-right {
margin-bottom: 50px
}
.iw-right {
width: 950px!important
}
.i-left {
width: 200px;
float: left;
font-size: 14px;
background: #fff;
overflow: hidden
}
.i-left .title {
padding-left: 30px;
height: 40px;
line-height: 40px;
color: #999;
border-bottom: solid 1px #f2f2f2
}
.i-left .title i {
display: inline-block;
margin-right: 10px;
width: 18px;
height: 15px;
font-size: 18px;
}
.i-left ul {
padding: 0 0 15px 30px;
border-bottom: solid 5px #fafafa;
overflow: hidden
}
.i-left ul li {
margin-top: 15px;
border-right: solid 2px transparent
}
.i-left ul li a:hover,.i-left ul li.on {
border-right: solid 2px #ff4c2f
}
.i-left ul li a {
display: block;
color: #333;
font-size: 14px
}
.i-left ul li i {
display: inline-block;
margin-right: 10px;
width: 18px;
height: 15px;
font-size: 18px;
}
.i-left ul li a:hover i {
}
.i-left ul li.on a {
color: #ff4c2f
}
.i-left ul li.on a:hover {
border-right: solid 2px transparent
}
.i-left ul li.on i {
}
.i-left .user_block{
border-bottom: solid 5px #fafafa;
background: url(../images/user-bg.png);
/*background-color: #ec4137;*/
}
.i-left .user_block .header {
width: 100%;
height: 60px;
text-align: center;
padding-top: 20px;
}
.i-left .user_block .header span {
width: 60px;
height: 60px;
display: block;
margin: 0 auto;
background-color: #e1e1e1;
border: 3px solid #fff;
border-radius: 50%;
overflow: hidden;
}
.i-left .user_block .header img {
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
}
.i-left .user_block .name {
width: 100%;
padding: 15px 0;
text-align: center;
font-size: 16px;
color: #fafafa;
}
.i-left .user_block_list2 {
width: 100%;
background-color: #fff
}
.i-left .user_block_list2 ul {
width: 100%;
display: block;
padding: 0px;
}
.i-left .user_block_list2 ul li {
display: block;
width: auto;
padding-left: 20px;
padding-right: 20px;
margin-top: 0px;
font-size: 14px;
cursor: pointer;
}
.i-left .user_block_list2 ul li .borderBottom {
display: inline-block;
width: 140px;
border-bottom: 1px dashed #e9e9e9;
height: 35px;
line-height: 35px;
position: relative;
padding-left: 10px;
}
.i-left .user_block_list2 ul li:last-child .borderBottom, .i-left .user_block_list2 ul li.last .borderBottom {
border-bottom: #fff;
}
.i-right {
float: right;
width: 990px;
overflow: hidden
}
.i-right .i-top,.i-right .i-top .iDetail dl {
margin-bottom: 10px;
overflow: hidden
}
.i-right .i-top {
padding: 15px 30px;
height: 150px;
background: #fff
}
.i-right .i-top .iDetail {
width: 195px;
height: 150px;
float: left;
padding-right: 30px;
border-right: solid 1px #e6e6e6
}
.i-right .i-top .iDetail dl dt {
margin-right: 15px;
float: left;
width: 60px
}
.i-right .i-top .iDetail dl dt a {
display: block
}
.i-right .i-top .iDetail dl dt img {
width: 60px;
height: 60px;
border-radius: 50%;
display: block
}
.i-right .i-top .iDetail dl dd {
float: left;
width: 120px
}
.i-right .i-top .iDetail dl dd a {
display: inline-block;
line-height: 18px;
color: #000;
font-size: 14px
}
.i-right .i-top .iDetail dl dd cite {
height: 14px;
width: 14px;
display: inline-block;
margin: 0 0 0 10px
}
.i-right .i-top .iDetail dl dd cite.v0 {
background-position: -60px 0
}
.i-right .i-top .iDetail dl dd cite.v1 {
background-position: -60px -30px
}
.i-right .i-top .iDetail dl dd cite.v2 {
background-position: -60px -62px
}
.i-right .i-top .iDetail dl dd cite.v3 {
background-position: -60px -92px
}
.i-right .i-top .iDetail dl dd cite.v4 {
background-position: -60px -131px
}
.i-right .i-top .iDetail dl dd cite.v5 {
background-position: -60px -161px
}
.i-right .i-top .iDetail dl dd span {
padding: 0 12px;
height: 20px;
line-height: 20px;
color: #fff;
display: inline-block;
margin-top: 10px;
border-radius: 12px;
background: #ff4c2f
}
.i-right .i-top .iDetail dl dd span.nosign {
background: #999
}
.i-right .i-top .iDetail .medal {
overflow: hidden
}
.i-right .i-top .iDetail .medal img {
display: inline-block;
margin: 10px 10px 0 0;
width: 24px;
height: 24px
}
.i-right .i-top .iAttend {
padding-top: 45px;
float: left;
width: 230px;
height: 105px;
text-align: center;
border-right: solid 1px #e6e6e6;
overflow: hidden
}
.i-right .i-top .iAttend a {
width: 115px;
display: block;
float: left;
color: grey;
font-size: 14px
}
.i-right .i-top .iAttend a em {
display: block;
margin: 15px auto;
width: 15px;
height: 2px;
background: #ccc
}
.i-right .i-top .iAttend a b {
color: #000
}
.i-right .i-top .iBookshelf {
padding-top: 25px;
width: 135px;
height: 125px;
float: left;
padding-left: 40px;
border-right: solid 1px #e6e6e6;
overflow: hidden
}
.i-right .i-top .iBookshelf a {
display: block;
color: #000;
font-size: 14px;
line-height: 40px
}
.i-right .i-top .iBookshelf a em {
display: inline-block;
margin-right: 20px;
width: 40px;
height: 40px;
color: #fff;
text-align: center;
background: #ff4c2f;
border-radius: 50%
}
.i-right .i-bot .l-botMod .myMod .bookUl li a,.i-right .i-bot .l-botMod .myMod .bookUl li p i,.i-right .i-bot .l-botMod .myMod .bookUl li p span {
display: block
}
.i-right .i-top .iBookshelf a.readed {
margin-top: 15px
}
.i-right .i-top .iBookshelf a.readed em {
background: #6cd
}
.i-right .i-top .iTicket {
width: 336px;
border: none
}
.i-right .i-top .iTicket a {
width: 112px
}
.i-right .i-top .iTicket a .red {
font-weight: 700!important;
color: #ff4c2f
}
.i-right .i-bot {
overflow: hidden
}
.i-right .i-bot .l-botMod {
float: left;
width: 740px;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod {
margin-bottom: 10px;
padding-left: 30px;
background: #fff;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookNone {
padding: 50px 0;
text-align: center;
font-size: 16px;
color: #666
}
.i-right .i-bot .l-botMod .myMod .bookNone a {
font-weight: 700;
color: #ff4c2f;
font-size: 16px
}
.i-right .i-bot .l-botMod .myMod .bookUl {
width: 690px;
padding: 0 20px 10px 0;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookUl li {
position: relative;
padding: 20px 0;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookUl li:last-child {
border-bottom: none
}
.i-right .i-bot .l-botMod .myMod .bookUl li .addShelf {
position: absolute;
top: 80px;
right: 25px;
z-index: 999;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .i-bot .l-botMod .myMod .bookUl li img {
margin-right: 15px;
display: block;
float: left;
width: 74px;
height: 100px;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .i-bot .l-botMod .myMod .bookUl li p {
position: relative;
width: 575px;
float: left
}
.i-right .i-bot .l-botMod .myMod .bookUl li p i {
position: absolute;
top: 10px;
right: 0;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p i.goon,.i-right .i-bot .l-botMod .myMod .bookUl li p i.hover {
top: 55px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookName {
padding: 15px 0;
font-size: 16px;
color: #333;
font-weight: 700
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus {
color: #999;
font-size: 12px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt {
display: inline-block;
margin-right: 75px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt.chapterSt {
margin-right: 0
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em {
line-height: 12px;
display: block;
margin-bottom: 10px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.none {
margin-bottom: 0
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.ct {
color: #333
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.time {
color: #666
}
.i-right .i-bot .l-botMod .myMod .hotBookBd {
padding: 20px 0;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li {
margin-right: 43px;
float: left;
width: 140px;
text-align: center;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li:last-child {
margin: 0
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li img {
width: 110px;
height: 150px;
display: inline-block;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a,.i-right .i-bot .l-botMod .myMod .hotBookBd li span {
display: block
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookName,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookName {
font-size: 16px;
line-height: 16px;
padding: 10px 0 5px;
color: #333
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookAuthor,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookAuthor {
font-size: 14px;
color: #999
}
.i-right .i-bot .r-botMod {
float: right;
width: 240px;
overflow: hidden
}
.i-right .i-level {
margin-bottom: 10px;
padding: 0 0 10px 30px;
background: #fff;
overflow: hidden
}
.i-right .i-level p span,.i-right .i-level p span.v0 {
background-position: -78px 0
}
.i-right .i-level p {
padding-top: 10px;
line-height: 36px;
color: #666;
font-size: 14px
}
.i-right .i-level p span {
width: 38px;
height: 14px
}
.i-right .i-level p span.v1 {
background-position: -78px -30px
}
.i-right .i-level p span.v2 {
background-position: -78px -62px
}
.i-right .i-level p span.v3 {
background-position: -78px -92px
}
.i-right .i-level p span.v4 {
background-position: -78px -131px
}
.i-right .i-level p span.v5 {
background-position: -78px -161px
}
.i-right .i-level p a {
font-size: 14px;
display: inline-block;
color: #ff4c2f
}
.i-right .i-level p b {
font-weight: 700!important;
color: #ff4c2f
}
.i-right .i-vip {
padding-left: 30px;
background: #fff;
overflow: hidden
}
.i-right .i-vip p {
padding-bottom: 25px;
color: grey;
font-size: 12px;
line-height: 24px;
border-bottom: solid 1px #f2f2f2
}
.i-right .i-vip p.record {
font-size: 14px
}
.i-right .i-vip p:last-child {
border-bottom: none
}
.i-right .i-vip p span {
padding: 25px 0 15px;
display: block;
color: #333;
font-size: 16px
}
.i-right .i-vip p b {
padding-bottom: 15px
}
.i-right .i-vip p b em {
display: inline-block
}
.i-right .i-vip p b em.arrow {
width: 33px;
height: 10px;
margin-right: 20px;
background-position: -60px -193px;
vertical-align: 40px
}
.i-right .i-vip p b em cite {
margin-right: 0;
width: 38px;
height: 14px;
background-position: -78px 0
}
.i-right .i-vip p b em cite.v1 {
background-position: -78px -30px
}
.i-right .i-vip p b em cite.v2 {
background-position: -78px -62px
}
.i-right .i-vip p b em cite.v3 {
background-position: -78px -92px
}
.i-right .i-vip p b em cite.v4 {
background-position: -78px -131px
}
.i-right .i-vip p b em cite.v5 {
background-position: -78px -161px
}
.i-right .bookshelfMod,.i-right .i-integal,.i-right .myReview {
background: #fff;
overflow: hidden
}
.i-right .i-vip p b em i {
padding-top: 15px;
display: block;
color: grey;
font-size: 12px
}
.i-right .i-integal {
margin-bottom: 50px;
padding-left: 30px
}
.i-right .i-integal table {
display: block;
width: 100%
}
.i-right .i-integal table tr {
color: #333;
font-size: 12px;
line-height: 42px;
border-bottom: solid 1px #f2f2f2
}
.i-right .i-integal table tr.head {
color: #999;
font-size: 14px
}
.i-right .i-integal table tr td {
padding-right: 20px;
min-width: 150px
}
.i-right .i-integal table tr td.last {
width: 450px
}
.i-right .i-integal p {
margin-right: 20px;
font-size: 12px;
color: grey;
line-height: 42px;
text-align: right
}
.i-right .bookshelfMod {
padding-left: 15px;
padding-right: 15px;
margin-top: 5px
}
.i-right .bookshelfMod table {
display: block;
width: 100%
}
.i-right .bookshelfMod table tr {
color: #333;
font-size: 12px;
border-top: solid 1px #f2f2f2
}
.i-right .bookshelfMod table tr td {
padding: 20px 15px 20px 0;
width: 110px
}
.i-right .bookshelfMod table tr td img {
width: 74px;
height: 100px;
display: block
}
.i-right .bookshelfMod table tr td.t2 {
width: 125px
}
.i-right .bookshelfMod table tr td.t2 a {
font-size: 14px;
color: #333;
line-height: 20px
}
.i-right .bookshelfMod table tr td.t3 {
width: 230px
}
.i-right .bookshelfMod table tr td.t4 {
width: 120px
}
.i-right .bookshelfMod table tr td.t5 {
width: 145px
}
.i-right .bookshelfMod table tr td.t5 em {
display: block;
color: #ff4c2f
}
.i-right .bookshelfMod table tr td.t6 {
width: 70px
}
.i-right .bookshelfMod table tr td.t7 {
text-align: center;
width: 130px
}
.i-right .bookshelfMod table tr td.t7 a.goon {
margin: 0 auto 10px;
display: block;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .bookshelfMod table tr td.t7 i {
display: block
}
.i-right .bookshelfMod table tr td.t7 i .Collection,.i-right .bookshelfMod table tr td.t7 i .autoSub,.i-right .bookshelfMod table tr td.t7 i .del,.i-right .bookshelfMod table tr td.t7 i .havaSub {
cursor: pointer;
line-height: 22px;
padding: 0 5px
}
.i-right .bookshelfMod table tr td.t7 i a.donshelf:hover {
color: #333!important;
cursor: text
}
.i-right .bookshelfMod table tr.head {
padding: 0;
height: 42px;
line-height: 42px;
color: #999;
font-size: 14px
}
.i-right .bookshelfMod table tr.head td {
padding: 0 15px 0 0
}
.i-right .bookshelfMod table tr a {
color: #666;
line-height: 18px
}
.i-right .bookshelfMod table .on {
border: none
}
.i-right .page-box {
width: 100%;
border-top: solid 1px #f2f2f2
}
.i-right .page-box .page-content {
float: right;
margin: 15px
}
.i-right .myReview .divBd .reviewList li .reviewDetail .bookAuthor,.i-right .myReview .divBd .reviewList li .reviewDetail .reviewCont {
margin-bottom: 10px
}
.i-right .myReview {
padding: 0 30px
}
.i-right .myReview .divBd {
overflow: hidden
}
.i-right .myReview .divBd .reviewList li {
padding: 20px 0;
width: 960px;
margin-right: 40px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .myReview .divBd .reviewList li:last-child{
border-bottom:none;
}
.i-right .myReview .divBd .reviewList li .bookCover {
float: left;
display: block;
width: 74px;
height: 100px
}
.i-right .myReview .divBd .reviewList li .bookCover img {
width: 74px;
height: 100px
}
.i-right .myReview .divBd .reviewList li .reviewDetail {
margin-left: 20px;
width: 860px;
float: left;
color: #666;
font-size: 12px;
overflow: hidden
}
.i-right .myReview .divBd .reviewList li .reviewDetail span {
display: block
}
.i-right .myReview .divBd .reviewList li .reviewDetail span.title {
font-size: 14px;
margin-bottom: 10px
}
.i-right .myReview .divBd .reviewList li .reviewDetail span.title a{
font-size: 14px;
}
.i-right .myReview .divBd .reviewList li .reviewDetail .time {
color: #999;
font-family: Arial
}
.i-right .myReview .divBd .reviewList li .reviewDetail i {
display: block;
float: right
}
.i-right .myReview .divBd .reviewList li .reviewDetail i a {
color: #999;
margin-right: 5px
}
.i-right .myReview .divBd .replyList li {
padding: 20px 0;
font-size: 12px;
color: #666;
line-height: 24px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .myReview .divBd .replyList li .person {
float: left;
margin-right: 10px;
font-size: 14px
}
.i-right .myReview .divBd .replyList li .person a {
color: #ff4c2f;
font-size: 14px
}
.i-right .myReview .divBd .replyList li .text {
margin-right: 30px;
float: left;
width: 750px
}
.i-right .myReview .divBd .replyList li span {
clear: both;
padding-right: 30px;
margin-top: 5px;
display: block;
text-align: right;
color: #999;
font-family: Arial
}
.i-right .myReview .divBd .fabList {
padding: 10px 0;
overflow: hidden
}
.i-right .myReview .divBd .fabList li {
font-size: 12px;
line-height: 40px;
color: #666;
border-bottom: solid 1px #f2f2f2
}
.i-right .myReview .divBd .fabList li a {
color: #ff4c2f;
display: inline-block;
margin: 0 5px
}
.i-right .myReview .divBd .fabList li a.reviewTit {
max-width: 160px;
vertical-align: middle
}
.i-right .noActive {
margin: 10px 0;
padding: 20px 30px;
color: #333;
font-size: 14px;
line-height: 24px;
background: #fff;
overflow: hidden
}
.i-right .noActive a {
font-size: 14px;
color: #ff4c2f
}
.i-right .noActive cite {
margin-top: 20px;
display: block;
font-size: 12px;
color: #b2b2b2
}
.i-right .noActive cite a {
font-size: 12px
}
.i-right .noActive cite em {
font-family: Arial
}
.i-right .doneList,.i-right .rechangeList,.i-right .rewardList,.i-right .subList {
position: relative;
background: #fff
}
.i-right .doneList table,.i-right .rechangeList table,.i-right .rewardList table,.i-right .subList table {
display: block;
width: 100%
}
.i-right .doneList table tr,.i-right .rechangeList table tr,.i-right .rewardList table tr,.i-right .subList table tr {
line-height: 40px;
height: 40px;
font-size: 12px
}
.i-right .doneList table tr.head,.i-right .rechangeList table tr.head,.i-right .rewardList table tr.head,.i-right .subList table tr.head {
color: #999;
font-size: 14px;
background: #f2f2f2
}
.i-right .doneList table tr td,.i-right .rechangeList table tr td,.i-right .rewardList table tr td,.i-right .subList table tr td {
width: 194px;
border-bottom: solid 1px #f2f2f2
}
.i-right .doneList table tr td.t1,.i-right .rechangeList table tr td.t1,.i-right .rewardList table tr td.t1,.i-right .subList table tr td.t1 {
width: 280px;
padding-left: 30px
}
.i-right .doneList table tr td.t4,.i-right .rechangeList table tr td.t4,.i-right .rewardList table tr td.t4,.i-right .subList table tr td.t4 {
width: 224px
}
.i-right .doneList table tr td.t5,.i-right .rechangeList table tr td.t5,.i-right .rewardList table tr td.t5,.i-right .subList table tr td.t5 {
width: 124px;
padding-right: 30px
}
.i-right .rewardList table tr td,.i-right .subList table tr td {
width: 220px
}
.i-right .rewardList table tr td.t3,.i-right .subList table tr td.t3 {
padding-right: 0;
width: 400px
}
.i-right .rewardList table tr td.t3 p,.i-right .subList table tr td.t3 p {
width: 300px
}
.i-right .rewardList table tr td.t4,.i-right .subList table tr td.t4 {
width: 160px
}
.i-right .doneList table tr td {
width: 170px
}
.i-right .doneList table tr td.t4 {
padding-right: 0;
margin-right: 0;
width: 380px!important
}
.i-right .doneList table tr td.t4 p {
width: 330px
}
.i-right .systemMod {
padding: 0 30px;
background: #fff;
overflow: hidden
}
.i-right .systemMod .systemUl {
overflow: hidden
}
.i-right .systemMod .systemUl li {
padding: 20px 0 15px;
color: #999;
font-size: 14px;
line-height: 24px;
border-bottom: solid 1px #f2f2f2
}
.i-right .systemMod .systemUl li span {
position: relative;
display: block;
font-size: 14px;
margin-bottom: 10px;
color: #333;
line-height: 16px
}
.i-right .systemMod .systemUl li span i {
display: block;
position: absolute;
top: -8px;
right: 0;
font-size: 12px;
color: #999
}
.i-right .systemMod .systemUl li span b {
color: #ff4c2f
}
.i-right .systemMod .systemUl li a {
color: #ff4c2f;
font-size: 14px
}
.i-right .myReview .divBd .myBookList li .reviewDetail .bookName {
font-weight: 700
}
.i-right .myReview .divBd .myBookList li .bookCover,.i-right .myReview .divBd .myBookList li .bookCover img {
width: 110px;
height: 150px
}
.i-right .myReview .divBd .myBookList li .reviewDetail {
position: relative;
margin-left: 30px;
width: 690px;
overflow: visible
}
.i-right .myReview .divBd .myBookList li .reviewDetail .reviewCont {
height: 48px;
line-height: 24px;
overflow: hidden
}
.i-right .myReview .divBd .myBookList li .reviewDetail i {
display: block;
position: absolute;
top: 15px;
right: -130px
}
.i-right .myReview .divBd .myBookList li .reviewDetail i a {
margin-top: 20px;
display: block;
font-size: 16px;
height: 32px;
line-height: 32px;
width: 100px;
text-align: center;
border: 1px solid #ccc;
border-radius: 4px
}
.i-right .myReview .divBd .myBookList li .reviewDetail i a.on {
color: #fff;
background: #ff4c2f;
border: 1px solid #ff4c2f
}
.i-title {
position: relative;
height: 46px;
line-height: 46px;
font-size: 18px;
color: #333;
border-bottom: solid 1px #f2f2f2;
background: #fff
}
.i-title .screenMod {
position: absolute;
top: 11px;
right: 30px;
text-align: center;
color: #666;
font-size: 12px
}
.i-title .screenMod .screenSelect {
margin-right: 10px;
float: left;
width: 150px;
height: 24px;
line-height: 24px;
border: 1px solid #ccc;
border-radius: 5px
}
.i-title .screenMod .screenBtn {
float: left;
height: 22px;
line-height: 22px;
display: block;
border: 1px solid #ccc;
border-radius: 5px;
width: 40px;
cursor: pointer
}
.i-title .clickMore,.i-title .goLevel {
margin-right: 20px;
color: #999;
font-size: 14px;
float: right;
display: block
}
.i-title .goLevel {
padding: 0 10px;
margin-top: 10px;
color: #ff4c2f;
font-size: 12px;
border: 1px solid #ff4c2f;
border-radius: 15px;
height: 24px;
line-height: 24px
}
.i-title .ulHd {
overflow: hidden
}
.i-title .ulHd li {
margin-right: 45px;
font-size: 18px;
position: relative;
float: left;
cursor: pointer
}
.i-title .ulHd li span {
display: block;
position: absolute;
bottom: 0;
left: 50%;
margin: 0 auto 0 -20px;
width: 40px;
height: 2px;
background: 0 0
}
.i-title .ulHd li.on,.i-title .ulHd li.on a {
color: #ff4c2f
}
.i-title .ulHd li.on span {
background: #ff4c2f
}
.i-title .ulHd li a{
font-size: 18px;
}
.i-title .ulType {
position: absolute;
right: 0;
top: 0
}
.i-title .ulType li {
line-height: 18px;
height: 18px;
float: left;
color: #999;
font-size: 14px;
text-align: center;
border-radius: 9px;
border: 1px solid transparent;
padding: 0 10px;
margin-right: 10px;
margin-top: 14px;
cursor: pointer
}
.i-title .ulType li.on {
border-color: #ff4c2f;
color: #ff4c2f
}
.i-title .tabHd {
position: absolute;
top: 20px;
right: 20px
}
.i-title .tabHd li {
margin-left: 10px;
float: left;
width: 8px;
height: 8px;
border-radius: 50%;
background: #ccc
}
.i-title .tabHd li.on {
background: #ff4c2f
}
.i-title .writeBook {
display: block;
position: absolute;
top: 0;
right: 20px;
font-size: 14px;
color: #333
}
.i-title .writeBook i {
width: 20px;
height: 20px;
background-position: -106px -214px;
vertical-align: -4px
}
.bookNone {
padding: 100px 0;
text-align: center;
color: #666;
font-size: 16px
}
.bookNone a {
font-weight: 700;
color: #ff4c2f;
font-size: 16px
}
.myWorks {
margin-bottom: 10px;
padding-left: 20px;
background: #fff;
overflow: hidden
}
.myWorks ul {
margin: 0 30px 20px 0;
overflow: hidden
}
.myWorks ul li {
margin-top: 15px;
overflow: hidden
}
.myWorks ul li a {
display: block
}
.myWorks ul li img {
display: block;
float: left;
width: 60px;
height: 84px;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.myWorks ul li p {
margin-left: 15px;
float: left;
width: 115px
}
.myWorks ul li p span {
display: block
}
.myWorks ul li p .bookName {
padding: 10px 0;
color: #000;
font-size: 14px
}
.myWorks ul li p .bookName.other {
padding: 2px 0 6px
}
.myWorks ul li p .bookStatus {
font-size: 12px;
color: #999
}
.myWorks ul li p .bookStatus.other {
margin-bottom: 5px
}
.myWorks ul li p .bookBrief {
font-size: 12px;
color: #999;
line-height: 14px;
height: 28px;
overflow: hidden
}
.iw-right .myReview .divBd .fabList li a,.more,.nomore {
font-size: 14px
}
.more {
margin: 15px auto 20px;
display: block;
width: 150px;
height: 28px;
line-height: 28px;
color: #999;
text-align: center;
border: 1px solid #b5b5b5;
border-radius: 20px
}
.nomore {
margin: 20px 0;
display: block;
text-align: center;
color: #999
}
.iw-right .myReview .divBd .reviewList li .reviewDetail {
width: 800px
}
.iw-right .myReview .divBd .fabList li {
color: #999;
font-size: 14px;
position: relative
}
.iw-right .myReview .divBd .fabList li b {
color: #333
}
.iw-right .myReview .divBd .fabList li span {
display: block;
position: absolute;
top: 0;
right: 30px;
font-size: 12px;
font-family: Arial
}
.iHomeBanner {
margin-bottom: 10px;
clear: both;
padding-top: 50px;
height: 230px;
color: #333;
font-size: 14px;
background: url(../../img/ihomeBg.jpg);
text-align: center
}
.iHomeBanner .personMod {
position: relative;
margin: 0 auto 20px;
width: 80px
}
.iHomeBanner .personMod img {
display: block;
width: 80px;
height: 80px;
border-radius: 50%
}
.iHomeBanner .personMod span {
padding: 0 10px;
position: absolute;
bottom: -10px;
left: -6px;
display: block;
font-size: 14px;
color: #fff;
height: 20px;
line-height: 20px;
border-radius: 12px;
background: #ff4c2f;
width: 100%
}
.iHomeBanner p a {
display: inline-block
}
.iHomeBanner p cite {
margin: 0 0 0 10px;
background-position: -136px -214px;
width: 16px;
height: 16px
}
.iHomeBanner p.name {
margin-bottom: 5px;
font-weight: 700;
font-size: 18px
}
.iHomeBanner p.name cite {
width: 14px;
height: 14px
}
.iHomeBanner p.name cite.v0 {
background-position: -60px 0
}
.iHomeBanner p.name cite.v1 {
background-position: -60px -30px
}
.iHomeBanner p.name cite.v2 {
background-position: -60px -62px
}
.iHomeBanner p.name cite.v3 {
background-position: -60px -92px
}
.iHomeBanner p.name cite.v4 {
background-position: -60px -131px
}
.iHomeBanner p.name cite.v5 {
background-position: -60px -161px
}
.attendDoneMod,.attendHxMod,.attendMod {
width: 120px;
margin: 15px auto 0;
text-align: center;
height: 30px;
line-height: 30px;
border-radius: 4px;
background: #ff4c2f;
color: #fff;
cursor: pointer
}
.attendDoneMod,.attendHxMod {
padding-left: 10px;
width: 110px;
position: relative;
background: #999;
text-align: left
}
.attendDoneMod p,.attendHxMod p {
position: absolute;
top: 30px;
left: 0;
width: 120px;
line-height: 30px;
text-align: center;
color: #ff4c2f;
background: #fff;
display: none;
cursor: pointer
}
.attendDoneMod span,.attendHxMod span {
display: inline-block
}
.attendDoneMod span.arrow,.attendHxMod span.arrow {
position: absolute;
top: 13px;
right: -5px;
width: 12px;
height: 7px;
background-position: -128px -186px
}
.attendDoneMod span.qx,.attendHxMod span.qx {
width: 20px;
height: 17px;
background-position: -162px -214px
}
.attendDoneMod span.hx,.attendHxMod span.hx {
width: 18px;
height: 20px;
background-position: -100px -186px;
vertical-align: -4px
}
.iAttend {
margin-bottom: 50px;
background: #fff;
overflow: hidden
}
.iAttend .attendBd {
overflow: hidden
}
.iAttend .attendBd .attendUl {
margin-bottom: 30px;
overflow: hidden
}
.iAttend .attendBd .attendUl li {
position: relative;
margin-top: 20px;
float: left;
padding: 20px 30px;
margin-left: 30px;
width: 298px;
border: 1px solid #f2f2f2
}
.iAttend .attendBd .attendUl li cite {
display: block;
background: url(../../img/sprite/i_icon.png) no-repeat
}
.iAttend .attendBd .attendUl li .redBg {
position: absolute;
top: 0;
right: 0;
width: 48px;
height: 48px;
background-position: -60px -417px
}
.iAttend .attendBd .attendUl li .hg {
position: absolute;
top: 5px;
right: 3px;
width: 18px;
height: 20px;
background-position: -100px -186px
}
.iAttend .attendBd .attendUl li .gz {
position: absolute;
top: 7px;
right: 4px;
width: 18px;
height: 20px;
background-position: -162px -214px
}
.iAttend .attendBd .attendUl li img {
float: left;
display: block;
margin-right: 20px;
width: 60px;
height: 60px;
border-radius: 50%
}
.iAttend .attendBd .attendUl li p {
float: left;
width: 218px
}
.iAttend .attendBd .attendUl li p .name {
margin-bottom: 10px;
display: block;
color: #ff4c2f;
font-size: 16px
}
.iAttend .attendBd .attendUl li p .name i {
width: 14px;
height: 14px;
display: inline-block;
margin-left: 10px
}
.iAttend .attendBd .attendUl li p .name i.v0 {
background-position: -78px 0
}
.iAttend .attendBd .attendUl li p .name i.v1 {
background-position: -78px -30px
}
.iAttend .attendBd .attendUl li p .name i.v2 {
background-position: -78px -62px
}
.iAttend .attendBd .attendUl li p .name i.v3 {
background-position: -78px -92px
}
.iAttend .attendBd .attendUl li p .name i.v4 {
background-position: -78px -131px
}
.iAttend .attendBd .attendUl li p .name i.v5 {
background-position: -78px -161px
}
.iAttend .attendBd .attendUl li p .attendNum {
display: block;
height: 37px;
overflow: hidden
}
.iAttend .attendBd .attendUl li p .attendSpan {
overflow: hidden;
display: block
}
.iAttend .attendBd .attendUl li p .attendSpan i {
display: inline-block;
margin: 20px 20px 0 0;
height: 28px;
line-height: 28px;
color: #666;
width: 85px;
font-size: 14px;
text-align: center;
border: 1px solid #999;
border-radius: 4px;
cursor: pointer
}
.iAttend .attendBd .attendUl li p .attendSpan i:last-child {
margin-right: 0
}
.iAttend .attendBd .attendUl li p .attendSpan i.r {
background: #ff4c2f;
border: 1px solid #ff4c2f;
color: #fff
}
.iAttend .attendBd .attendUl li p .attendSpan i cite {
width: 20px;
height: 17px;
margin-right: 5px;
background-position: -162px -186px;
vertical-align: -3px
}
#sendStatus,.nonactived p.send-text * {
vertical-align: middle
}
.iAttend .attendBd .attendUl li p .attendSpan i.done {
cursor: default
}
.basicAccounts {
padding: 20px 0 50px;
overflow: hidden
}
.basicAccounts .basicError {
margin-bottom: 10px;
color: #ff4c2f;
font-size: 14px
}
.basicAccounts table {
width: 100%;
display: block;
border: none;
font-size: 14px;
color: #333;
line-height: 40px
}
.basicAccounts img,.basicAccounts table td input,.basicAccounts table td textarea {
border: 1px solid #f2f2f2
}
.basicAccounts table td.label {
width: 100px
}
.basicAccounts table td .text,.basicAccounts table td .textError {
padding-left: 10px;
color: #999;
font-size: 12px
}
.basicAccounts table td .textError {
color: #ff4c2f
}
.basicAccounts table td input.name {
padding-left: 10px;
width: 270px;
height: 28px;
line-height: 28px
}
.basicAccounts table td .textarea {
padding: 10px 10px 0;
margin-top: 10px;
width: 798px;
height: 58px;
line-height: 22px
}
.basicAccounts table td cite {
width: 38px;
height: 14px
}
.basicAccounts table td cite.v0 {
background-position: -78px 0
}
.basicAccounts table td cite.v1 {
background-position: -78px -30px
}
.basicAccounts table td cite.v2 {
background-position: -78px -62px
}
.basicAccounts table td cite.v3 {
background-position: -78px -92px
}
.basicAccounts table td cite.v4 {
background-position: -78px -131px
}
.basicAccounts table td cite.v5 {
background-position: -78px -161px
}
.basicAccounts .accountsBtn,.basicAccounts .imgBtn {
height: 40px;
line-height: 40px;
background: #ff4c2f;
text-align: center;
}
.basicAccounts .c1,.basicAccounts .c2 {
margin-left: 30px
}
.basicAccounts .accountsBtn,.basicAccounts .imgBtn {
margin: 50px auto 0;
width: 200px;
color: #fff;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
border: none;
outline: 0
}
.webuploader-pick {
position: relative;
display: inline-block;
width: 300px;
height: 40px;
line-height: 40px;
color: #fff!important;
font-size: 16px!important;
background: #ff4c2f;
text-align: center;
cursor: pointer;
border-radius: 4px;
border:none;
}
#errorMessage,.mod-basic-form .desc {
font-size: 12px;
color: #999
}
#jcropSeticon {
padding: 20px 0;
overflow: hidden
}
.fl {
float: left
}
.mod-basic-form .bd {
padding: 20px;
background: #fff
}
.mod-basic-form .desc {
text-align: center
}
.uploader-list{
width: 100%;
overflow: hidden;
}
.uploader-list .error{
color: #ff4c2f;
}
.loading {
padding: 100px 0;
text-align: center
}
.i-right .rechangeList table tr td.t5 {
width: 150px
}
.i-right .rewardList table tr td.t1,.i-right .subList table tr td.t1 {
width: 380px
}
#sendStatus {
margin: 1px 3px 0 0
}
#p-grid input {
color: #09C;
background: 0 0;
border: none;
cursor: pointer
}
#endTime {
color: #f60
}
.mailSending {
background: #fbf6e8;
border-color: #ebca64
}
.ui_bg_bdcolor,.ui_hoverbgbd:hover {
border-color: #ff4c2f!important;
background-color: #ff4c2f!important
}
.password-modi-zsy .title {
line-height: 48px;
border-bottom: 1px solid #f2f2f2;
color: #333;
font-size: 18px;
background: #fff;
padding-left: 29px;
}
.password-modi-zsy .password-modi-content {
height: 600px;
background: #fff;
padding: 100px 0 0 300px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.password-modi-zsy .password-modi-content li {
margin-bottom: 20px;
}
.password-modi-zsy .password-modi-content .label {
width: 70px;
text-align: right;
margin-right: 20px;
color: #666;
font-size: 14px;
line-height: 40px;
display: inline-block;
}
.password-modi-zsy .password-modi-content input {
width: 260px;
height: 40px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: 0;
border: 1px solid #e6e6e6;
padding-left: 17px;
line-height: 40px;
}
.password-modi-zsy .password-modi-content input {
width: 260px;
height: 40px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: 0;
border: 1px solid #e6e6e6;
padding-left: 17px;
line-height: 40px;
}
.password-modi-zsy .password-modi-content #submit-pass {
width: 240px;
height: 40px;
border-radius: 18px;
background: #ff4c2f;
line-height: 40px;
text-align: center;
color: #fff;
margin-left: 91px;
font-size: 16px;
cursor: pointer;
}
.ui-pagination li {
float: left;
margin: 0 5px;
}
.ui-pagination li a, .ui-pagination li span {
float: left;
margin: 0 5px;
height: 28px;
line-height: 28px;
text-align: center;
}
.ui-pagination li a {
padding: 0 10px;
background: #fff;
border: 1px solid #c8c8c8;
color: #333;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
}
.ui-pagination li span {
padding: 0 10px;
color: #333;
font-size: 14px;
border-radius: 5px;
border: 1px solid #c8c8c8;
}
.ui-pagination li.active span {
background: #ff4c2f;
border-color: #ff4c2f;
color: #fff;
}
.ui-pagination li.disabled span{
color: #999;
background: #f0f4f8;
cursor: text;
} | public/static/css/user.css | @charset "UTF-8";
@font-face {font-family: "user_iconfont";
src: url('../fonts/iconfont.eot');
src: url('../fonts/iconfont.eot#iefix') format('embedded-opentype'),
url('../fonts/iconfont.woff') format('woff'),
url('../fonts/iconfont.ttf') format('truetype'),
url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
font-family: "user_iconfont" !important;
font-size: 24px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.1px;
-moz-osx-font-smoothing: grayscale;
}
body,html {
font-family: 'PingFang SC','Myriad Pro','Hiragino Sans GB','microsoft yahei'!important;
color: #333;
margin: 0;
font-size: 14px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
background: #fafafa!important
}
blockquote, figure, form, h1, h2, h3, h4, h5, h6, p {
margin: 0;
}
em,i {
font-style: normal
}
b {
font-weight: 400!important
}
a,body {
color: #333;
}
a,a:active,a:hover {
outline: 0
}
dd, dl, li, ol, ul {
margin: 0;
padding: 0;
}
ol,ul {
list-style: none
}
img {
border: 0;
vertical-align: middle;
-ms-interpolation-mode: bicubic
}
input {
line-height: normal;
outline: 0;
}
input[type=checkbox],input[type=radio] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
height: auto
}
input[type=search] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box
}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}
textarea {
resize: vertical;
outline: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
background: 0 0;
text-decoration: none;
font-size: 12px
}
a:hover {
color: #f5546f!important
}
.hide {
display: none
}
.fr {
float: right
}
.ibody, .pho-tabs {
background: #fff;
margin-bottom:10px;
}
.wrap1200 {
position: relative;
margin: 0 auto;
width: 1200px;
zoom: 1
}
.wrap1200:after {
display: block;
content: '';
clear: both
}
.mod-header .logo {
height: 50px;
position: relative
}
.mod-header .logo .logoImage {
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%)
}
.iMod {
height: 72px!important;
clear: both
}
.iMod .mybookshelf,.iMod .search-top {
margin-top: 20px!important
}
.iMod .imotie {
width: 170px;
font-size: 24px;
font-weight: 700;
float: left;
line-height: 72px
}
.iMod .iUl {
padding-top: 13px;
width: 400px;
float: left
}
.iMod .iUl li {
float: left;
margin-right: 50px;
font-size: 16px;
height: 56px;
line-height: 54px;
border-bottom: solid 3px transparent
}
.iMod .iUl li a {
font-size: 16px;
color: #666
}
.iMod .iUl li, .iMod .iUl li.accounts {
position: relative;
}
.iMod .iUl li.on,.iMod .iUl li:hover {
border-bottom: solid 3px #ff4c2f
}
.iMod .iUl li.accounts p {
padding: 10px 0;
position: absolute;
top: 60px;
left: -40px;
z-index: 99999;
display: none;
width: 140px;
background: #fff;
text-align: center;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.iMod .iUl li.accounts p a {
display: block;
color: #333;
font-size: 14px;
height: 30px;
line-height: 30px;
}
.iMod .iUl li.accounts p a:hover{color:#fff!important;background:#ff4c2f}
.searchbox {
width: 247px;
height: 30px;
line-height: 30px;
margin-top: 10px;
top: 10px;
right: 150px;
position: absolute
}
.searchbox .searchbox-inner {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2
}
.searchbox .searchbox-inner .searchinput {
border: 0;
padding: 0 0 0 30px;
font-size: 12px;
width: 217px;
height: 30px;
line-height: 30px;
margin-top: 0;
display: block;
background: #faf9f4;
border-radius: 16px;
outline: 0
}
.searchbox .searchbox-inner .searchinput::-webkit-input-placeholder {
color: #7e7e7e
}
.searchbox .searchbox-inner .searchbtn {
display: block;
background: #333;
border: 0;
cursor: pointer;
position: absolute;
right: 0;
top: 1px;
border-radius: 50%;
width: 30px;
height: 30px
}
.searchbox .searchbox-inner .search-icon {
position: absolute;
right: 4px;
top: 6px;
z-index: 2;
pointer-events: none;
background-image: url(../images/sprite.png);
background-position: -28px -50px;
width: 20px;
height: 21px
}
.mod-header .login {
float: right;
position: relative;
background: #fff;
padding-top: 22px;
}
.mod-header .login .login_after{position: relative;}
.mod-header .login .login_after img{width: 30px; height: 30px; border-radius: 50%;}
.mod-header .login .login_after a{ font-size: 12px; color: #6a6a6a; max-width: 84px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.mod-header .login .login_after .yh{ padding: 0 10px 0 10px; position: relative; z-index: 100;}
.mod-header .login .login_after .yh a{margin: 2px 0 0 0;}
.mod-header .login a:hover{color: #f26552;}
.mod-header .login_after:hover .xiala{display: block;}
.mod-header .login_after .xiala{width: 146px; height: 126px; background:#fff; box-shadow: 0 0 5px rgba(0,0,0,0.1); border-radius: 4px; position: absolute; left: 0; top: -14px; z-index: 99; padding-top: 50px; display: none;}
.mod-header .login_after .xiala li{height: 42px; line-height: 42px; padding: 0 0 0 15px; cursor: pointer;}
.mod-header .login_after .xiala li:hover{background: #fafafa;}
.mod-header .login_after .xiala .on{background: #fafafa;}
.mod-header .login_after .xiala i{font-size: 16px;width: 14px; height: 14px; margin: 15px 14px 0 5px;}
.i-right .bookshelfMod table tr td img,.i-right .myReview .divBd .myBookList li .bookCover img,.i-right .myReview .divBd .reviewList li .bookCover,.img {
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .doneList table tr td.t4 p,.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.none,.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookName,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookName,.i-right .myReview .divBd .fabList li a.reviewTit,.i-right .rewardList table tr td.t3 p,.i-right .subList table tr td.t3 p,.myWorks ul li p .bookName.other,.textStatus {
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden
}
.anormal,.del_Layer_yes,.i-right .bookshelfMod table tr a.goon:hover,.i-right .bookshelfMod table tr td.t7 a.goon:hover,.i-right .i-bot .l-botMod .myMod .bookUl li .addShelf:hover,.i-right .i-bot .l-botMod .myMod .bookUl li p i.goon:hover,.i-right .i-bot .l-botMod .myMod .bookUl li p i.hover,.more:hover,.my_Post_content_del:hover,.my_Post_content_edit:hover,.my_Post_content_look:hover,.my_Post_content_stop:hover {
color: #fff!important;
background: #ff4c2f;
border: 1px solid #ff4c2f!important
}
.ahover,.i-right .moneyBg a.m4:hover,.i-right .myReview .divBd .myBookList li .reviewDetail i a.on:hover {
color: #fff!important;
background: #9e3521;
border: 1px solid #9e3521
}
#main {
padding-top: 0!important
}
.iw-left {
float: left;
width: 240px!important;
background: #fff;
overflow: hidden
}
.iw-left .homeFans {
padding: 30px 0 20px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.iw-left .homeFans li {
float: left;
width: 120px;
text-align: center;
font-size: 12px;
color: #999
}
.iw-left .homeFans li span {
display: block;
margin: 15px auto;
width: 15px;
height: 2px;
background: #f2f2f2
}
.iw-left .homeFans li b {
display: block;
color: #333;
font-size: 14px
}
.iw-left .homeGray {
height: 10px;
background: #fafafa
}
.iw-left .homeBadge {
padding: 0 0 20px 12px;
overflow: hidden
}
.iw-left .homeBadge span {
margin: 20px 0 0 10px;
display: inline-block;
width: 24px;
height: 24px;
border: 1px solid #f2f2f2
}
.i-left,.i-right {
margin-bottom: 50px
}
.iw-right {
width: 950px!important
}
.i-left {
width: 200px;
float: left;
font-size: 14px;
background: #fff;
overflow: hidden
}
.i-left .title {
padding-left: 30px;
height: 40px;
line-height: 40px;
color: #999;
border-bottom: solid 1px #f2f2f2
}
.i-left .title i {
display: inline-block;
margin-right: 10px;
width: 18px;
height: 15px;
font-size: 18px;
}
.i-left ul {
padding: 0 0 15px 30px;
border-bottom: solid 5px #fafafa;
overflow: hidden
}
.i-left ul li {
margin-top: 15px;
border-right: solid 2px transparent
}
.i-left ul li a:hover,.i-left ul li.on {
border-right: solid 2px #ff4c2f
}
.i-left ul li a {
display: block;
color: #333;
font-size: 14px
}
.i-left ul li i {
display: inline-block;
margin-right: 10px;
width: 18px;
height: 15px;
font-size: 18px;
}
.i-left ul li a:hover i {
}
.i-left ul li.on a {
color: #ff4c2f
}
.i-left ul li.on a:hover {
border-right: solid 2px transparent
}
.i-left ul li.on i {
}
.i-left .user_block{
border-bottom: solid 5px #fafafa;
background: url(../images/user-bg.png);
/*background-color: #ec4137;*/
}
.i-left .user_block .header {
width: 100%;
height: 60px;
text-align: center;
padding-top: 20px;
}
.i-left .user_block .header span {
width: 60px;
height: 60px;
display: block;
margin: 0 auto;
background-color: #e1e1e1;
border: 3px solid #fff;
border-radius: 50%;
overflow: hidden;
}
.i-left .user_block .header img {
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
}
.i-left .user_block .name {
width: 100%;
padding: 15px 0;
text-align: center;
font-size: 16px;
color: #fafafa;
}
.i-left .user_block_list2 {
width: 100%;
background-color: #fff
}
.i-left .user_block_list2 ul {
width: 100%;
display: block;
padding: 0px;
}
.i-left .user_block_list2 ul li {
display: block;
width: auto;
padding-left: 20px;
padding-right: 20px;
margin-top: 0px;
font-size: 14px;
cursor: pointer;
}
.i-left .user_block_list2 ul li .borderBottom {
display: inline-block;
width: 140px;
border-bottom: 1px dashed #e9e9e9;
height: 35px;
line-height: 35px;
position: relative;
padding-left: 10px;
}
.i-left .user_block_list2 ul li:last-child .borderBottom, .i-left .user_block_list2 ul li.last .borderBottom {
border-bottom: #fff;
}
.i-right {
float: right;
width: 990px;
overflow: hidden
}
.i-right .i-top,.i-right .i-top .iDetail dl {
margin-bottom: 10px;
overflow: hidden
}
.i-right .i-top {
padding: 15px 30px;
height: 150px;
background: #fff
}
.i-right .i-top .iDetail {
width: 195px;
height: 150px;
float: left;
padding-right: 30px;
border-right: solid 1px #e6e6e6
}
.i-right .i-top .iDetail dl dt {
margin-right: 15px;
float: left;
width: 60px
}
.i-right .i-top .iDetail dl dt a {
display: block
}
.i-right .i-top .iDetail dl dt img {
width: 60px;
height: 60px;
border-radius: 50%;
display: block
}
.i-right .i-top .iDetail dl dd {
float: left;
width: 120px
}
.i-right .i-top .iDetail dl dd a {
display: inline-block;
line-height: 18px;
color: #000;
font-size: 14px
}
.i-right .i-top .iDetail dl dd cite {
height: 14px;
width: 14px;
display: inline-block;
margin: 0 0 0 10px
}
.i-right .i-top .iDetail dl dd cite.v0 {
background-position: -60px 0
}
.i-right .i-top .iDetail dl dd cite.v1 {
background-position: -60px -30px
}
.i-right .i-top .iDetail dl dd cite.v2 {
background-position: -60px -62px
}
.i-right .i-top .iDetail dl dd cite.v3 {
background-position: -60px -92px
}
.i-right .i-top .iDetail dl dd cite.v4 {
background-position: -60px -131px
}
.i-right .i-top .iDetail dl dd cite.v5 {
background-position: -60px -161px
}
.i-right .i-top .iDetail dl dd span {
padding: 0 12px;
height: 20px;
line-height: 20px;
color: #fff;
display: inline-block;
margin-top: 10px;
border-radius: 12px;
background: #ff4c2f
}
.i-right .i-top .iDetail dl dd span.nosign {
background: #999
}
.i-right .i-top .iDetail .medal {
overflow: hidden
}
.i-right .i-top .iDetail .medal img {
display: inline-block;
margin: 10px 10px 0 0;
width: 24px;
height: 24px
}
.i-right .i-top .iAttend {
padding-top: 45px;
float: left;
width: 230px;
height: 105px;
text-align: center;
border-right: solid 1px #e6e6e6;
overflow: hidden
}
.i-right .i-top .iAttend a {
width: 115px;
display: block;
float: left;
color: grey;
font-size: 14px
}
.i-right .i-top .iAttend a em {
display: block;
margin: 15px auto;
width: 15px;
height: 2px;
background: #ccc
}
.i-right .i-top .iAttend a b {
color: #000
}
.i-right .i-top .iBookshelf {
padding-top: 25px;
width: 135px;
height: 125px;
float: left;
padding-left: 40px;
border-right: solid 1px #e6e6e6;
overflow: hidden
}
.i-right .i-top .iBookshelf a {
display: block;
color: #000;
font-size: 14px;
line-height: 40px
}
.i-right .i-top .iBookshelf a em {
display: inline-block;
margin-right: 20px;
width: 40px;
height: 40px;
color: #fff;
text-align: center;
background: #ff4c2f;
border-radius: 50%
}
.i-right .i-bot .l-botMod .myMod .bookUl li a,.i-right .i-bot .l-botMod .myMod .bookUl li p i,.i-right .i-bot .l-botMod .myMod .bookUl li p span {
display: block
}
.i-right .i-top .iBookshelf a.readed {
margin-top: 15px
}
.i-right .i-top .iBookshelf a.readed em {
background: #6cd
}
.i-right .i-top .iTicket {
width: 336px;
border: none
}
.i-right .i-top .iTicket a {
width: 112px
}
.i-right .i-top .iTicket a .red {
font-weight: 700!important;
color: #ff4c2f
}
.i-right .i-bot {
overflow: hidden
}
.i-right .i-bot .l-botMod {
float: left;
width: 740px;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod {
margin-bottom: 10px;
padding-left: 30px;
background: #fff;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookNone {
padding: 50px 0;
text-align: center;
font-size: 16px;
color: #666
}
.i-right .i-bot .l-botMod .myMod .bookNone a {
font-weight: 700;
color: #ff4c2f;
font-size: 16px
}
.i-right .i-bot .l-botMod .myMod .bookUl {
width: 690px;
padding: 0 20px 10px 0;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookUl li {
position: relative;
padding: 20px 0;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .bookUl li:last-child {
border-bottom: none
}
.i-right .i-bot .l-botMod .myMod .bookUl li .addShelf {
position: absolute;
top: 80px;
right: 25px;
z-index: 999;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .i-bot .l-botMod .myMod .bookUl li img {
margin-right: 15px;
display: block;
float: left;
width: 74px;
height: 100px;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .i-bot .l-botMod .myMod .bookUl li p {
position: relative;
width: 575px;
float: left
}
.i-right .i-bot .l-botMod .myMod .bookUl li p i {
position: absolute;
top: 10px;
right: 0;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p i.goon,.i-right .i-bot .l-botMod .myMod .bookUl li p i.hover {
top: 55px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookName {
padding: 15px 0;
font-size: 16px;
color: #333;
font-weight: 700
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus {
color: #999;
font-size: 12px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt {
display: inline-block;
margin-right: 75px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt.chapterSt {
margin-right: 0
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em {
line-height: 12px;
display: block;
margin-bottom: 10px
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.none {
margin-bottom: 0
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.ct {
color: #333
}
.i-right .i-bot .l-botMod .myMod .bookUl li p .bookStatus .authorSt em.time {
color: #666
}
.i-right .i-bot .l-botMod .myMod .hotBookBd {
padding: 20px 0;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li {
margin-right: 43px;
float: left;
width: 140px;
text-align: center;
overflow: hidden
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li:last-child {
margin: 0
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li img {
width: 110px;
height: 150px;
display: inline-block;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a,.i-right .i-bot .l-botMod .myMod .hotBookBd li span {
display: block
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookName,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookName {
font-size: 16px;
line-height: 16px;
padding: 10px 0 5px;
color: #333
}
.i-right .i-bot .l-botMod .myMod .hotBookBd li a.bookAuthor,.i-right .i-bot .l-botMod .myMod .hotBookBd li span.bookAuthor {
font-size: 14px;
color: #999
}
.i-right .i-bot .r-botMod {
float: right;
width: 240px;
overflow: hidden
}
.i-right .i-level {
margin-bottom: 10px;
padding: 0 0 10px 30px;
background: #fff;
overflow: hidden
}
.i-right .i-level p span,.i-right .i-level p span.v0 {
background-position: -78px 0
}
.i-right .i-level p {
padding-top: 10px;
line-height: 36px;
color: #666;
font-size: 14px
}
.i-right .i-level p span {
width: 38px;
height: 14px
}
.i-right .i-level p span.v1 {
background-position: -78px -30px
}
.i-right .i-level p span.v2 {
background-position: -78px -62px
}
.i-right .i-level p span.v3 {
background-position: -78px -92px
}
.i-right .i-level p span.v4 {
background-position: -78px -131px
}
.i-right .i-level p span.v5 {
background-position: -78px -161px
}
.i-right .i-level p a {
font-size: 14px;
display: inline-block;
color: #ff4c2f
}
.i-right .i-level p b {
font-weight: 700!important;
color: #ff4c2f
}
.i-right .i-vip {
padding-left: 30px;
background: #fff;
overflow: hidden
}
.i-right .i-vip p {
padding-bottom: 25px;
color: grey;
font-size: 12px;
line-height: 24px;
border-bottom: solid 1px #f2f2f2
}
.i-right .i-vip p.record {
font-size: 14px
}
.i-right .i-vip p:last-child {
border-bottom: none
}
.i-right .i-vip p span {
padding: 25px 0 15px;
display: block;
color: #333;
font-size: 16px
}
.i-right .i-vip p b {
padding-bottom: 15px
}
.i-right .i-vip p b em {
display: inline-block
}
.i-right .i-vip p b em.arrow {
width: 33px;
height: 10px;
margin-right: 20px;
background-position: -60px -193px;
vertical-align: 40px
}
.i-right .i-vip p b em cite {
margin-right: 0;
width: 38px;
height: 14px;
background-position: -78px 0
}
.i-right .i-vip p b em cite.v1 {
background-position: -78px -30px
}
.i-right .i-vip p b em cite.v2 {
background-position: -78px -62px
}
.i-right .i-vip p b em cite.v3 {
background-position: -78px -92px
}
.i-right .i-vip p b em cite.v4 {
background-position: -78px -131px
}
.i-right .i-vip p b em cite.v5 {
background-position: -78px -161px
}
.i-right .bookshelfMod,.i-right .i-integal,.i-right .myReview {
background: #fff;
overflow: hidden
}
.i-right .i-vip p b em i {
padding-top: 15px;
display: block;
color: grey;
font-size: 12px
}
.i-right .i-integal {
margin-bottom: 50px;
padding-left: 30px
}
.i-right .i-integal table {
display: block;
width: 100%
}
.i-right .i-integal table tr {
color: #333;
font-size: 12px;
line-height: 42px;
border-bottom: solid 1px #f2f2f2
}
.i-right .i-integal table tr.head {
color: #999;
font-size: 14px
}
.i-right .i-integal table tr td {
padding-right: 20px;
min-width: 150px
}
.i-right .i-integal table tr td.last {
width: 450px
}
.i-right .i-integal p {
margin-right: 20px;
font-size: 12px;
color: grey;
line-height: 42px;
text-align: right
}
.i-right .bookshelfMod {
padding-left: 15px;
padding-right: 15px;
margin-top: 5px
}
.i-right .bookshelfMod table {
display: block;
width: 100%
}
.i-right .bookshelfMod table tr {
color: #333;
font-size: 12px;
border-top: solid 1px #f2f2f2
}
.i-right .bookshelfMod table tr td {
padding: 20px 15px 20px 0;
width: 110px
}
.i-right .bookshelfMod table tr td img {
width: 74px;
height: 100px;
display: block
}
.i-right .bookshelfMod table tr td.t2 {
width: 125px
}
.i-right .bookshelfMod table tr td.t2 a {
font-size: 14px;
color: #333;
line-height: 20px
}
.i-right .bookshelfMod table tr td.t3 {
width: 230px
}
.i-right .bookshelfMod table tr td.t4 {
width: 120px
}
.i-right .bookshelfMod table tr td.t5 {
width: 145px
}
.i-right .bookshelfMod table tr td.t5 em {
display: block;
color: #ff4c2f
}
.i-right .bookshelfMod table tr td.t6 {
width: 70px
}
.i-right .bookshelfMod table tr td.t7 {
text-align: center;
width: 130px
}
.i-right .bookshelfMod table tr td.t7 a.goon {
margin: 0 auto 10px;
display: block;
width: 98px;
height: 28px;
line-height: 28px;
font-size: 16px;
color: #666;
text-align: center;
border: 1px solid #333;
border-radius: 3px
}
.i-right .bookshelfMod table tr td.t7 i {
display: block
}
.i-right .bookshelfMod table tr td.t7 i .Collection,.i-right .bookshelfMod table tr td.t7 i .autoSub,.i-right .bookshelfMod table tr td.t7 i .del,.i-right .bookshelfMod table tr td.t7 i .havaSub {
cursor: pointer;
line-height: 22px;
padding: 0 5px
}
.i-right .bookshelfMod table tr td.t7 i a.donshelf:hover {
color: #333!important;
cursor: text
}
.i-right .bookshelfMod table tr.head {
padding: 0;
height: 42px;
line-height: 42px;
color: #999;
font-size: 14px
}
.i-right .bookshelfMod table tr.head td {
padding: 0 15px 0 0
}
.i-right .bookshelfMod table tr a {
color: #666;
line-height: 18px
}
.i-right .bookshelfMod table .on {
border: none
}
.i-right .page-box {
width: 100%;
border-top: solid 1px #f2f2f2
}
.i-right .page-box .page-content {
float: right;
margin: 15px
}
.i-right .myReview .divBd .reviewList li .reviewDetail .bookAuthor,.i-right .myReview .divBd .reviewList li .reviewDetail .reviewCont {
margin-bottom: 10px
}
.i-right .myReview {
padding: 0 30px
}
.i-right .myReview .divBd {
overflow: hidden
}
.i-right .myReview .divBd .reviewList li {
padding: 20px 0;
width: 960px;
margin-right: 40px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .myReview .divBd .reviewList li:last-child{
border-bottom:none;
}
.i-right .myReview .divBd .reviewList li .bookCover {
float: left;
display: block;
width: 74px;
height: 100px
}
.i-right .myReview .divBd .reviewList li .bookCover img {
width: 74px;
height: 100px
}
.i-right .myReview .divBd .reviewList li .reviewDetail {
margin-left: 20px;
width: 860px;
float: left;
color: #666;
font-size: 12px;
overflow: hidden
}
.i-right .myReview .divBd .reviewList li .reviewDetail span {
display: block
}
.i-right .myReview .divBd .reviewList li .reviewDetail span.title {
font-size: 14px;
margin-bottom: 10px
}
.i-right .myReview .divBd .reviewList li .reviewDetail span.title a{
font-size: 14px;
}
.i-right .myReview .divBd .reviewList li .reviewDetail .time {
color: #999;
font-family: Arial
}
.i-right .myReview .divBd .reviewList li .reviewDetail i {
display: block;
float: right
}
.i-right .myReview .divBd .reviewList li .reviewDetail i a {
color: #999;
margin-right: 5px
}
.i-right .myReview .divBd .replyList li {
padding: 20px 0;
font-size: 12px;
color: #666;
line-height: 24px;
border-bottom: solid 1px #f2f2f2;
overflow: hidden
}
.i-right .myReview .divBd .replyList li .person {
float: left;
margin-right: 10px;
font-size: 14px
}
.i-right .myReview .divBd .replyList li .person a {
color: #ff4c2f;
font-size: 14px
}
.i-right .myReview .divBd .replyList li .text {
margin-right: 30px;
float: left;
width: 750px
}
.i-right .myReview .divBd .replyList li span {
clear: both;
padding-right: 30px;
margin-top: 5px;
display: block;
text-align: right;
color: #999;
font-family: Arial
}
.i-right .myReview .divBd .fabList {
padding: 10px 0;
overflow: hidden
}
.i-right .myReview .divBd .fabList li {
font-size: 12px;
line-height: 40px;
color: #666;
border-bottom: solid 1px #f2f2f2
}
.i-right .myReview .divBd .fabList li a {
color: #ff4c2f;
display: inline-block;
margin: 0 5px
}
.i-right .myReview .divBd .fabList li a.reviewTit {
max-width: 160px;
vertical-align: middle
}
.i-right .noActive {
margin: 10px 0;
padding: 20px 30px;
color: #333;
font-size: 14px;
line-height: 24px;
background: #fff;
overflow: hidden
}
.i-right .noActive a {
font-size: 14px;
color: #ff4c2f
}
.i-right .noActive cite {
margin-top: 20px;
display: block;
font-size: 12px;
color: #b2b2b2
}
.i-right .noActive cite a {
font-size: 12px
}
.i-right .noActive cite em {
font-family: Arial
}
.i-right .doneList,.i-right .rechangeList,.i-right .rewardList,.i-right .subList {
position: relative;
background: #fff
}
.i-right .doneList table,.i-right .rechangeList table,.i-right .rewardList table,.i-right .subList table {
display: block;
width: 100%
}
.i-right .doneList table tr,.i-right .rechangeList table tr,.i-right .rewardList table tr,.i-right .subList table tr {
line-height: 40px;
height: 40px;
font-size: 12px
}
.i-right .doneList table tr.head,.i-right .rechangeList table tr.head,.i-right .rewardList table tr.head,.i-right .subList table tr.head {
color: #999;
font-size: 14px;
background: #f2f2f2
}
.i-right .doneList table tr td,.i-right .rechangeList table tr td,.i-right .rewardList table tr td,.i-right .subList table tr td {
width: 194px;
border-bottom: solid 1px #f2f2f2
}
.i-right .doneList table tr td.t1,.i-right .rechangeList table tr td.t1,.i-right .rewardList table tr td.t1,.i-right .subList table tr td.t1 {
width: 280px;
padding-left: 30px
}
.i-right .doneList table tr td.t4,.i-right .rechangeList table tr td.t4,.i-right .rewardList table tr td.t4,.i-right .subList table tr td.t4 {
width: 224px
}
.i-right .doneList table tr td.t5,.i-right .rechangeList table tr td.t5,.i-right .rewardList table tr td.t5,.i-right .subList table tr td.t5 {
width: 124px;
padding-right: 30px
}
.i-right .rewardList table tr td,.i-right .subList table tr td {
width: 220px
}
.i-right .rewardList table tr td.t3,.i-right .subList table tr td.t3 {
padding-right: 0;
width: 400px
}
.i-right .rewardList table tr td.t3 p,.i-right .subList table tr td.t3 p {
width: 300px
}
.i-right .rewardList table tr td.t4,.i-right .subList table tr td.t4 {
width: 160px
}
.i-right .doneList table tr td {
width: 170px
}
.i-right .doneList table tr td.t4 {
padding-right: 0;
margin-right: 0;
width: 380px!important
}
.i-right .doneList table tr td.t4 p {
width: 330px
}
.i-right .systemMod {
padding: 0 30px;
background: #fff;
overflow: hidden
}
.i-right .systemMod .systemUl {
overflow: hidden
}
.i-right .systemMod .systemUl li {
padding: 20px 0 15px;
color: #999;
font-size: 14px;
line-height: 24px;
border-bottom: solid 1px #f2f2f2
}
.i-right .systemMod .systemUl li span {
position: relative;
display: block;
font-size: 14px;
margin-bottom: 10px;
color: #333;
line-height: 16px
}
.i-right .systemMod .systemUl li span i {
display: block;
position: absolute;
top: -8px;
right: 0;
font-size: 12px;
color: #999
}
.i-right .systemMod .systemUl li span b {
color: #ff4c2f
}
.i-right .systemMod .systemUl li a {
color: #ff4c2f;
font-size: 14px
}
.i-right .myReview .divBd .myBookList li .reviewDetail .bookName {
font-weight: 700
}
.i-right .myReview .divBd .myBookList li .bookCover,.i-right .myReview .divBd .myBookList li .bookCover img {
width: 110px;
height: 150px
}
.i-right .myReview .divBd .myBookList li .reviewDetail {
position: relative;
margin-left: 30px;
width: 690px;
overflow: visible
}
.i-right .myReview .divBd .myBookList li .reviewDetail .reviewCont {
height: 48px;
line-height: 24px;
overflow: hidden
}
.i-right .myReview .divBd .myBookList li .reviewDetail i {
display: block;
position: absolute;
top: 15px;
right: -130px
}
.i-right .myReview .divBd .myBookList li .reviewDetail i a {
margin-top: 20px;
display: block;
font-size: 16px;
height: 32px;
line-height: 32px;
width: 100px;
text-align: center;
border: 1px solid #ccc;
border-radius: 4px
}
.i-right .myReview .divBd .myBookList li .reviewDetail i a.on {
color: #fff;
background: #ff4c2f;
border: 1px solid #ff4c2f
}
.i-title {
position: relative;
height: 46px;
line-height: 46px;
font-size: 18px;
color: #333;
border-bottom: solid 1px #f2f2f2;
background: #fff
}
.i-title .screenMod {
position: absolute;
top: 11px;
right: 30px;
text-align: center;
color: #666;
font-size: 12px
}
.i-title .screenMod .screenSelect {
margin-right: 10px;
float: left;
width: 150px;
height: 24px;
line-height: 24px;
border: 1px solid #ccc;
border-radius: 5px
}
.i-title .screenMod .screenBtn {
float: left;
height: 22px;
line-height: 22px;
display: block;
border: 1px solid #ccc;
border-radius: 5px;
width: 40px;
cursor: pointer
}
.i-title .clickMore,.i-title .goLevel {
margin-right: 20px;
color: #999;
font-size: 14px;
float: right;
display: block
}
.i-title .goLevel {
padding: 0 10px;
margin-top: 10px;
color: #ff4c2f;
font-size: 12px;
border: 1px solid #ff4c2f;
border-radius: 15px;
height: 24px;
line-height: 24px
}
.i-title .ulHd {
overflow: hidden
}
.i-title .ulHd li {
margin-right: 45px;
font-size: 18px;
position: relative;
float: left;
cursor: pointer
}
.i-title .ulHd li span {
display: block;
position: absolute;
bottom: 0;
left: 50%;
margin: 0 auto 0 -20px;
width: 40px;
height: 2px;
background: 0 0
}
.i-title .ulHd li.on,.i-title .ulHd li.on a {
color: #ff4c2f
}
.i-title .ulHd li.on span {
background: #ff4c2f
}
.i-title .ulHd li a{
font-size: 18px;
}
.i-title .ulType {
position: absolute;
right: 0;
top: 0
}
.i-title .ulType li {
line-height: 18px;
height: 18px;
float: left;
color: #999;
font-size: 14px;
text-align: center;
border-radius: 9px;
border: 1px solid transparent;
padding: 0 10px;
margin-right: 10px;
margin-top: 14px;
cursor: pointer
}
.i-title .ulType li.on {
border-color: #ff4c2f;
color: #ff4c2f
}
.i-title .tabHd {
position: absolute;
top: 20px;
right: 20px
}
.i-title .tabHd li {
margin-left: 10px;
float: left;
width: 8px;
height: 8px;
border-radius: 50%;
background: #ccc
}
.i-title .tabHd li.on {
background: #ff4c2f
}
.i-title .writeBook {
display: block;
position: absolute;
top: 0;
right: 20px;
font-size: 14px;
color: #333
}
.i-title .writeBook i {
width: 20px;
height: 20px;
background-position: -106px -214px;
vertical-align: -4px
}
.bookNone {
padding: 100px 0;
text-align: center;
color: #666;
font-size: 16px
}
.bookNone a {
font-weight: 700;
color: #ff4c2f;
font-size: 16px
}
.myWorks {
margin-bottom: 10px;
padding-left: 20px;
background: #fff;
overflow: hidden
}
.myWorks ul {
margin: 0 30px 20px 0;
overflow: hidden
}
.myWorks ul li {
margin-top: 15px;
overflow: hidden
}
.myWorks ul li a {
display: block
}
.myWorks ul li img {
display: block;
float: left;
width: 60px;
height: 84px;
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3);
box-shadow: 1px 1px 2px rgba(0,0,0,.3)
}
.myWorks ul li p {
margin-left: 15px;
float: left;
width: 115px
}
.myWorks ul li p span {
display: block
}
.myWorks ul li p .bookName {
padding: 10px 0;
color: #000;
font-size: 14px
}
.myWorks ul li p .bookName.other {
padding: 2px 0 6px
}
.myWorks ul li p .bookStatus {
font-size: 12px;
color: #999
}
.myWorks ul li p .bookStatus.other {
margin-bottom: 5px
}
.myWorks ul li p .bookBrief {
font-size: 12px;
color: #999;
line-height: 14px;
height: 28px;
overflow: hidden
}
.iw-right .myReview .divBd .fabList li a,.more,.nomore {
font-size: 14px
}
.more {
margin: 15px auto 20px;
display: block;
width: 150px;
height: 28px;
line-height: 28px;
color: #999;
text-align: center;
border: 1px solid #b5b5b5;
border-radius: 20px
}
.nomore {
margin: 20px 0;
display: block;
text-align: center;
color: #999
}
.iw-right .myReview .divBd .reviewList li .reviewDetail {
width: 800px
}
.iw-right .myReview .divBd .fabList li {
color: #999;
font-size: 14px;
position: relative
}
.iw-right .myReview .divBd .fabList li b {
color: #333
}
.iw-right .myReview .divBd .fabList li span {
display: block;
position: absolute;
top: 0;
right: 30px;
font-size: 12px;
font-family: Arial
}
.iHomeBanner {
margin-bottom: 10px;
clear: both;
padding-top: 50px;
height: 230px;
color: #333;
font-size: 14px;
background: url(../../img/ihomeBg.jpg);
text-align: center
}
.iHomeBanner .personMod {
position: relative;
margin: 0 auto 20px;
width: 80px
}
.iHomeBanner .personMod img {
display: block;
width: 80px;
height: 80px;
border-radius: 50%
}
.iHomeBanner .personMod span {
padding: 0 10px;
position: absolute;
bottom: -10px;
left: -6px;
display: block;
font-size: 14px;
color: #fff;
height: 20px;
line-height: 20px;
border-radius: 12px;
background: #ff4c2f;
width: 100%
}
.iHomeBanner p a {
display: inline-block
}
.iHomeBanner p cite {
margin: 0 0 0 10px;
background-position: -136px -214px;
width: 16px;
height: 16px
}
.iHomeBanner p.name {
margin-bottom: 5px;
font-weight: 700;
font-size: 18px
}
.iHomeBanner p.name cite {
width: 14px;
height: 14px
}
.iHomeBanner p.name cite.v0 {
background-position: -60px 0
}
.iHomeBanner p.name cite.v1 {
background-position: -60px -30px
}
.iHomeBanner p.name cite.v2 {
background-position: -60px -62px
}
.iHomeBanner p.name cite.v3 {
background-position: -60px -92px
}
.iHomeBanner p.name cite.v4 {
background-position: -60px -131px
}
.iHomeBanner p.name cite.v5 {
background-position: -60px -161px
}
.attendDoneMod,.attendHxMod,.attendMod {
width: 120px;
margin: 15px auto 0;
text-align: center;
height: 30px;
line-height: 30px;
border-radius: 4px;
background: #ff4c2f;
color: #fff;
cursor: pointer
}
.attendDoneMod,.attendHxMod {
padding-left: 10px;
width: 110px;
position: relative;
background: #999;
text-align: left
}
.attendDoneMod p,.attendHxMod p {
position: absolute;
top: 30px;
left: 0;
width: 120px;
line-height: 30px;
text-align: center;
color: #ff4c2f;
background: #fff;
display: none;
cursor: pointer
}
.attendDoneMod span,.attendHxMod span {
display: inline-block
}
.attendDoneMod span.arrow,.attendHxMod span.arrow {
position: absolute;
top: 13px;
right: -5px;
width: 12px;
height: 7px;
background-position: -128px -186px
}
.attendDoneMod span.qx,.attendHxMod span.qx {
width: 20px;
height: 17px;
background-position: -162px -214px
}
.attendDoneMod span.hx,.attendHxMod span.hx {
width: 18px;
height: 20px;
background-position: -100px -186px;
vertical-align: -4px
}
.iAttend {
margin-bottom: 50px;
background: #fff;
overflow: hidden
}
.iAttend .attendBd {
overflow: hidden
}
.iAttend .attendBd .attendUl {
margin-bottom: 30px;
overflow: hidden
}
.iAttend .attendBd .attendUl li {
position: relative;
margin-top: 20px;
float: left;
padding: 20px 30px;
margin-left: 30px;
width: 298px;
border: 1px solid #f2f2f2
}
.iAttend .attendBd .attendUl li cite {
display: block;
background: url(../../img/sprite/i_icon.png) no-repeat
}
.iAttend .attendBd .attendUl li .redBg {
position: absolute;
top: 0;
right: 0;
width: 48px;
height: 48px;
background-position: -60px -417px
}
.iAttend .attendBd .attendUl li .hg {
position: absolute;
top: 5px;
right: 3px;
width: 18px;
height: 20px;
background-position: -100px -186px
}
.iAttend .attendBd .attendUl li .gz {
position: absolute;
top: 7px;
right: 4px;
width: 18px;
height: 20px;
background-position: -162px -214px
}
.iAttend .attendBd .attendUl li img {
float: left;
display: block;
margin-right: 20px;
width: 60px;
height: 60px;
border-radius: 50%
}
.iAttend .attendBd .attendUl li p {
float: left;
width: 218px
}
.iAttend .attendBd .attendUl li p .name {
margin-bottom: 10px;
display: block;
color: #ff4c2f;
font-size: 16px
}
.iAttend .attendBd .attendUl li p .name i {
width: 14px;
height: 14px;
display: inline-block;
margin-left: 10px
}
.iAttend .attendBd .attendUl li p .name i.v0 {
background-position: -78px 0
}
.iAttend .attendBd .attendUl li p .name i.v1 {
background-position: -78px -30px
}
.iAttend .attendBd .attendUl li p .name i.v2 {
background-position: -78px -62px
}
.iAttend .attendBd .attendUl li p .name i.v3 {
background-position: -78px -92px
}
.iAttend .attendBd .attendUl li p .name i.v4 {
background-position: -78px -131px
}
.iAttend .attendBd .attendUl li p .name i.v5 {
background-position: -78px -161px
}
.iAttend .attendBd .attendUl li p .attendNum {
display: block;
height: 37px;
overflow: hidden
}
.iAttend .attendBd .attendUl li p .attendSpan {
overflow: hidden;
display: block
}
.iAttend .attendBd .attendUl li p .attendSpan i {
display: inline-block;
margin: 20px 20px 0 0;
height: 28px;
line-height: 28px;
color: #666;
width: 85px;
font-size: 14px;
text-align: center;
border: 1px solid #999;
border-radius: 4px;
cursor: pointer
}
.iAttend .attendBd .attendUl li p .attendSpan i:last-child {
margin-right: 0
}
.iAttend .attendBd .attendUl li p .attendSpan i.r {
background: #ff4c2f;
border: 1px solid #ff4c2f;
color: #fff
}
.iAttend .attendBd .attendUl li p .attendSpan i cite {
width: 20px;
height: 17px;
margin-right: 5px;
background-position: -162px -186px;
vertical-align: -3px
}
#sendStatus,.nonactived p.send-text * {
vertical-align: middle
}
.iAttend .attendBd .attendUl li p .attendSpan i.done {
cursor: default
}
.basicAccounts {
padding: 20px 0 50px;
overflow: hidden
}
.basicAccounts .basicError {
margin-bottom: 10px;
color: #ff4c2f;
font-size: 14px
}
.basicAccounts table {
width: 100%;
display: block;
border: none;
font-size: 14px;
color: #333;
line-height: 40px
}
.basicAccounts img,.basicAccounts table td input,.basicAccounts table td textarea {
border: 1px solid #f2f2f2
}
.basicAccounts table td.label {
width: 100px
}
.basicAccounts table td .text,.basicAccounts table td .textError {
padding-left: 10px;
color: #999;
font-size: 12px
}
.basicAccounts table td .textError {
color: #ff4c2f
}
.basicAccounts table td input.name {
padding-left: 10px;
width: 270px;
height: 28px;
line-height: 28px
}
.basicAccounts table td .textarea {
padding: 10px 10px 0;
margin-top: 10px;
width: 798px;
height: 58px;
line-height: 22px
}
.basicAccounts table td cite {
width: 38px;
height: 14px
}
.basicAccounts table td cite.v0 {
background-position: -78px 0
}
.basicAccounts table td cite.v1 {
background-position: -78px -30px
}
.basicAccounts table td cite.v2 {
background-position: -78px -62px
}
.basicAccounts table td cite.v3 {
background-position: -78px -92px
}
.basicAccounts table td cite.v4 {
background-position: -78px -131px
}
.basicAccounts table td cite.v5 {
background-position: -78px -161px
}
.basicAccounts .accountsBtn,.basicAccounts .imgBtn {
height: 40px;
line-height: 40px;
background: #ff4c2f;
text-align: center;
}
.basicAccounts .c1,.basicAccounts .c2 {
margin-left: 30px
}
.basicAccounts .accountsBtn,.basicAccounts .imgBtn {
margin: 50px auto 0;
width: 200px;
color: #fff;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
border: none;
outline: 0
}
.webuploader-pick {
position: relative;
display: inline-block;
width: 300px;
height: 40px;
line-height: 40px;
color: #fff!important;
font-size: 16px!important;
background: #ff4c2f;
text-align: center;
cursor: pointer;
border-radius: 4px;
border:none;
}
#errorMessage,.mod-basic-form .desc {
font-size: 12px;
color: #999
}
#jcropSeticon {
padding: 20px 0;
overflow: hidden
}
.fl {
float: left
}
.mod-basic-form .bd {
padding: 20px;
background: #fff
}
.mod-basic-form .desc {
text-align: center
}
.uploader-list{
width: 100%;
overflow: hidden;
}
.uploader-list .error{
color: #ff4c2f;
}
.loading {
padding: 100px 0;
text-align: center
}
.i-right .rechangeList table tr td.t5 {
width: 150px
}
.i-right .rewardList table tr td.t1,.i-right .subList table tr td.t1 {
width: 380px
}
#sendStatus {
margin: 1px 3px 0 0
}
#p-grid input {
color: #09C;
background: 0 0;
border: none;
cursor: pointer
}
#endTime {
color: #f60
}
.mailSending {
background: #fbf6e8;
border-color: #ebca64
}
.ui_bg_bdcolor,.ui_hoverbgbd:hover {
border-color: #ff4c2f!important;
background-color: #ff4c2f!important
}
.password-modi-zsy .title {
line-height: 48px;
border-bottom: 1px solid #f2f2f2;
color: #333;
font-size: 18px;
background: #fff;
padding-left: 29px;
}
.password-modi-zsy .password-modi-content {
height: 600px;
background: #fff;
padding: 100px 0 0 300px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.password-modi-zsy .password-modi-content li {
margin-bottom: 20px;
}
.password-modi-zsy .password-modi-content .label {
width: 70px;
text-align: right;
margin-right: 20px;
color: #666;
font-size: 14px;
line-height: 40px;
display: inline-block;
}
.password-modi-zsy .password-modi-content input {
width: 260px;
height: 40px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: 0;
border: 1px solid #e6e6e6;
padding-left: 17px;
line-height: 40px;
}
.password-modi-zsy .password-modi-content input {
width: 260px;
height: 40px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: 0;
border: 1px solid #e6e6e6;
padding-left: 17px;
line-height: 40px;
}
.password-modi-zsy .password-modi-content #submit-pass {
width: 240px;
height: 40px;
border-radius: 18px;
background: #ff4c2f;
line-height: 40px;
text-align: center;
color: #fff;
margin-left: 91px;
font-size: 16px;
cursor: pointer;
}
.ui-pagination li {
float: left;
margin: 0 5px;
}
.ui-pagination li a, .ui-pagination li span {
float: left;
margin: 0 5px;
height: 28px;
line-height: 28px;
text-align: center;
}
.ui-pagination li a {
padding: 0 10px;
background: #fff;
border: 1px solid #c8c8c8;
color: #333;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
}
.ui-pagination li span {
padding: 0 10px;
color: #333;
font-size: 14px;
border-radius: 5px;
border: 1px solid #c8c8c8;
}
.ui-pagination li.active span {
background: #ff4c2f;
border-color: #ff4c2f;
color: #fff;
}
.ui-pagination li.disabled span{
color: #999;
background: #f0f4f8;
cursor: text;
} | 0.252753 | 0.048564 |
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 12px;
font-family: inherit;
vertical-align: baseline;
}
body {
line-height: 1.5;
}
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
a img { border: none; }
body {
font-size: 75%;
color: #000;
background: #fff;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }
h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
margin: 0;
}
p { margin: 0 0 1.5em; }
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
a:focus,
a:hover { color: #000; }
a { color: #009; text-decoration: underline; outline: none; }
blockquote { margin: 1.5em; color: #666; font-style: italic; }
strong { font-weight: bold; }
em,dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }
abbr,
acronym { border-bottom: 1px dotted #666; }
address { margin: 0 0 1.5em; font-style: italic; }
del { color:#666; }
pre { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
li ul,
li ol { margin:0 1.5em; }
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em;}
table { margin-bottom: 1.4em; width:100%; }
th { font-weight: bold; }
thead th { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td { background: #e5ecf9; }
tfoot { font-style: italic; }
caption { background: #eee; }
hr {
background: #ddd;
color: #ddd;
clear: both;
float: none;
width: 100%;
height: .1em;
margin: 0 0 1.45em;
border: none;
}
hr.space {
background: #fff;
color: #fff;
}
.tiny{
font-size:11px;
line-height:1.2em;
}
.verytiny{
font-size:9px;
line-height:1.4em;
}
.alignright {
float: right;
}
.alignleft {
float: left
}
.center {
text-align: center;
}
.clear {
clear:both;
}
.error,
.notice,
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a { color: #8a1f11; }
.notice a { color: #514721; }
.success a { color: #264409; }
/**********************************************************************/
body{
background:#26231E;
}
html, body{ height: 100% !important; }
span.k_desc{ color:#777; }
a{ color:#446F95; text-decoration:none; }
a:hover, a:active, a:focus { color:#D6491B; }
#container {
display:block;
width:1008px;
min-height: 100%;
background: #F0F0F0 url(images/bg-wrapper.jpg) repeat-y left top;
float: left;
}
* html #container {
height: 100%;
}
#container2 {
background: transparent url(images/grad.gif) no-repeat 200px top;
float: left;
}
#header{
height:85px;
position:relative;
margin-bottom: 5px;
}
img#couch-logo{
position:absolute;
top:16px;
left:20px;
}
#header h2{
float:left;
display: inline;
padding-top: 40px;
margin-left: 220px;
margin-bottom:10px;
font-weight: normal;
}
#header div#create_new, #header div#bulk_upload{
float:left;
display: inline;
padding-top: 43px;
padding-left: 10px;
}
#header div#view_template, #header div#view_folders{
float:left;
display: inline;
padding-top: 43px;
padding-left: 0px;
}
#header a.button { margin-right:0; }
#header div.error{
clear: right;
margin-left: 220px;
margin-bottom:10px;
margin-right: 22px;
}
#footer {
clear:both;
padding:20px 0;
margin-left: 220px;
text-align:left;
color:#999;
font-size:11px;
}
#footer a{
color:#999;
font-size:11px;
}
#sidebar{
float: left;
padding-top: 0px;
width: 220px;
min-height:400px;
text-align: right;
}
#sidebar ul{
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin: 0;
}
#sidebar ul li{
display: inline;
}
#sidebar ul li a{
color: #AAAAAA;
display: block;
font-size: 13px;
line-height: 1.2em;
padding: 8px 40px 8px 15px;
outline: none;
}
#sidebar ul li a:hover{
color: #FFFFFF;
outline: none;
}
#sidebar ul li.active-template a{
color: #FFFFFF;
background: transparent url(images/arrow.gif) no-repeat scroll 15px 3px;
}
#sidebar ul li.hidden-template a{
text-decoration: line-through;
}
#sidebar ul li.template-separator a{
padding: 0;
margin: 12px 20px 6px;
border-top: 1px solid #45423E;
line-height: 0;
}
#sidebar ul li a img{
margin-bottom: -2px;
}
#admin-wrapper {
float:left;
min-height:480px;
width:764px;
border: 1px solid #CCC;
background-color: #FFF;
-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
display:inline;
position: relative;
}
#admin-wrapper-header{
height: 30px;
background: #4B4B4B url(images/bg-header.gif) repeat-x scroll left top;
-moz-border-radius-topleft: 6px; -webkit-border-radius: 6px; border-radius: 6px;
-moz-border-radius-topright: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}
#admin-wrapper-header h3{
padding: 5px 10px 8px;
margin: 0px;
color: #FFF;
}
#admin-wrapper-header div#advanced-settings{
float: right;
display: inline;
margin-right: 12px;
height: 30px;
border-left: 1px solid #45423E;
border-right: 1px solid #45423E;
}
#admin-wrapper-header div#advanced-settings a{
color: #AAA;
padding: 0 20px 0 6px;
line-height: 30px;
outline: none;
}
#admin-wrapper-header div#advanced-settings a.collapsed{
background: transparent url(images/arrows.gif) no-repeat right -7px;
}
#admin-wrapper-header div#advanced-settings a.expanded{
background: transparent url(images/arrows.gif) no-repeat right -38px;
}
#admin-wrapper-header div#advanced-settings a:hover{
color: #FFF;
outline: none;
}
#admin-wrapper-body{
float: left;
width: 736px;
padding: 14px 14px 6px 14px;
display:inline;
position: relative;
}
#admin-sidebar{
float:right;
width:200px;
padding: 14px;
margin-right: 6px;
display:none;
border: 1px solid #E6E6E3;
-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}
input#f_k_year{width:30px;}
input#f_k_day,
input#f_k_hour,
input#f_k_min
{width:18px;}
div#access-levels select{width: 185px;}
#admin-content{
float:left;
/*width:520px;*/
width: 733px;
display:inline;
margin-bottom: 16px;
position: relative;
}
span.k_notice{
display: block;
}
div.k_element{
margin-bottom: 18px;
clear: both;
position: relative;
background-color: #fff;
overflow: hidden;
zoom: 1;
}
div.k_element_deleted{
opacity: 0.6;
filter: alpha(opacity=60);
position: absolute;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #FBE3E4;
cursor: pointer;
}
.k_image_text, .k_file_text{
float: left;
margin-right: 5px;
margin-bottom: 16px;
margin-top: 3px;
}
.group-wrapper, .group-wrapper_ex{
margin-bottom:16px;
border:1px solid #E6E6E3;
padding:0px;
-moz-border-radius:5px; -webkit-border-radius: 5px; border-radius: 5px;
}
div.group-wrapper.listing{
float:right;
width:734px
}
.group-toggler, .group-toggler_ex{
border-bottom:1px solid #E6E6E3;
background-color: #F9F9F8;
padding: 6px;
margin:0px;
cursor: pointer;
/*background-image:url(images/bg.jpg);*/
background-position:0 0;
background-repeat:repeat-x;
zoom: 1;
}
.group-toggler_ex{ cursor: default; }
.group-slider, .group-slider_ex{
padding:10px;
padding-top:15px !important;
padding-right:15px !important;
position: relative;
zoom: 1;
}
table.listing{
margin-bottom: 0;
}
table.listing th{
overflow: hidden;
vertical-align: top;
white-space: nowrap;
background-color: transparent;
border-bottom: 1px solid #E6E6E3;
color: #333;
background-color:#F9F9F8;
}
table.listing th.checkbox{
padding-right: 0;
width: 20px;
}
table.listing tbody tr:hover td {
background-color: #F9F9F8;
}
table.listing td{
overflow: hidden;
vertical-align: top;
white-space: nowrap;
border-bottom: 1px solid #E6E6E3;
}
table.listing td img{ margin-bottom:-2px; }
table.listing td.last_row{
border-bottom: 0;
}
table.listing td.checkbox{
border-left: 0;
width: 20px;
}
table.listing td.up-down{
background-color: #F9F9F8;
width: 30px;
padding: 0;
}
table.listing td.up-down a{
margin: 0;
padding: 0;
line-height:4px;
display: block;
}
table.listing td.name{
width: 320px;
padding-right: 5px;
}
table.listing.nested td.name{
width: 560px;
}
table.listing.nested span.pointer_links{ color: #a0a0a0; }
table.listing.nested span.pointer_links a{
font-size: 11px;
color: #a0a0a0;
text-decoration: underline !important;
}
table.listing.nested td.name span.unpublished{
/*color:red !important;*/
text-decoration: line-through !important;
}
table.listing td.comments-count{
padding-right: 6px;
text-align: right;
width: 70px;
}
table.listing td.comments-count a{
font-size: 10px;
}
table.listing td.comments-count img{
margin-bottom: -2px;
margin-left: 1px;
}
table.listing td.comments-count span.comments-count{
padding-left: 6px;
}
table.listing td.user_name{
width: 20%;
}
table.listing td.folder{
width: 120px;
background-color: #F9F9F8;
font-size: 11px;
}
table.listing td.folder.drafts{
width: 105px;
}
table.listing td.date{
width: 75px;
font-size: 11px;
}
table.listing td.date.drafts{
width: 95px;
_width:115px;
}
table.listing td.actions{
width: 70px;
background-color: #F9F9F8;
padding-right: 5px;
}
table.listing.nested td.actions{
width: 80px;
}
table.listing td.actions img{
margin-right: 7px;
}
a#listing-header{
font-size: 24px;
color: #111;
}
table.listing td.folder-title{
width: 400px;
}
table.listing td.folder-name{
background-color:#F9F9F8;
}
textarea,
input[type="text"],
input[type="password"],
select {
background-color:#FFFFFF;
border: 1px solid #E6E6E3;
padding: 1px;
}
input:focus,
textarea:focus{
/*border-color: #999;*/
background-color:#FBFBFB;
}
ul#admin-subnav, ul.k_element_deleted_nav{
height:26px;
position:absolute;
right:0;
top:0;
margin:10px 1px 5px;
}
#admin-subnav li, ul.k_element_deleted_nav li{
display:inline;
float:left;
margin:0 0 0 10px;
color:#333;
font-size:12px;
line-height:26px;
}
#admin-subnav li a, ul.k_element_deleted_nav li a{
color:#333;
text-decoration:none;
font-size:12px;
}
#admin-subnav li a:hover, ul.k_element_deleted_nav li a:hover {text-decoration:underline;}
ul.k_element_deleted_nav{ background-color: #FFFFE0; opacity:1 !important; border: 1px solid #777; margin-top: 2px; padding-right:10px}
body.login{
background-image: none;
background: #F0F0F0 url(images/grad.gif) no-repeat fixed left top;
}
div#login{
margin:100px auto;
width:300px;
}
#login form, #login div.wrapper{
padding:15px;
background-color:#fff;
border:1px solid #E6E6E3;
-moz-border-radius:10px; -webkit-border-radius: 10px; border-radius: 10px;
margin-bottom:10px;
}
#login form label{
color:#777;
}
#login form p{ margin:0;}
#login form #k_user_name, #login form #k_user_pwd, #login form #k_user_pwd_repeat, #login form #k_user_email{
width:99%;
font-size:20px;
margin-bottom:10px;
background-color:#FBFBFB;
border: 1px solid #E6E6E3;
}
/* Comments */
.comment{
color:#777777;
font-size:12px;
}
.approved{
}
.unapproved{
background-color:#FFFFE0;
}
.comment-checkbox{
vertical-align:top;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
width: 20px;
}
.comment-author{
vertical-align:top;
width:20%;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
}
.comment-body{
vertical-align:top;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
}
.comment-meta{
margin-bottom:0;
}
.comment-content{
vertical-align:top;
margin:0.6em 0;
}
.comment-actions{
margin-bottom:0;
}
.comment-date{
font-size:10px;
}
.wrap-paginator{
float:left;
height: 34px;
/*width:734px;*/
}
.wrap-paginator .record-count{
float:right;
padding: 3px;
margin: 3px 3px 8px;
color:#777777;
font-size:13px;
font-style:italic;
}
.wrap-paginator .bulk-actions{
float:left;
color:#777777;
margin: 0px 10px 12px 0;
height: 24px;
}
.wrap-paginator .bulk-actions select{
float: left;
margin:1px 4px 1px 0;
}
.filter{
float:left;
list-style-type:none;
margin: 10px 0 10px 3px;
color:#777777;
}
.filter li{
display:inline;
}
.filter a.current{
font-weight:bold;
color:#000;
}
/*
Pagination
Source: http://www.strangerstudios.com/sandbox/pagination/diggstyle.php (strangerstudios.com)
*/
div.pagination {
padding: 3px 0 3px 3px;
margin: 3px 0px 8px;
float:right;
}
div.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #CCC;
text-decoration: none; /* no underline */
color: #446F95;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
div.pagination a:hover, div.pagination a:active {
border: 1px solid #D6491B;
color: #D6491B;
}
div.pagination span.page_current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #CCC;
font-weight: bold;
background-color: #EEE;
color: #446F95;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
div.pagination span.page_disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #EEE;
color: #DDD;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
/*
Buttons
http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
*/
a.button {
background: transparent url('images/bg_button_a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
outline: none;
}
a.button.nocurve {
background-image: url('images/bg_button_a2.gif')
}
a.button span {
background: transparent url('images/bg_button_span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button span.nocurve {
background-image: url('images/bg_button_span2.gif')
}
a.button:active, a.button:hover {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span, a.button:hover span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
/* Gallery */
div#gallery.group-wrapper.listing {
border:0;
margin-bottom:6px;
}
#gallery .item {
color:#666666;
font-family:Arial,Helevtica,Verdana,san-serif;
font-size:12px;
float:left;
font-size:12px;
line-height:1.7em;
margin:0 14px 18px 0;
position:relative;
width:135px;
}
#gallery .item.last {
margin-right:0;
}
#gallery .item_inner {
background:#FFFFFF none repeat scroll 0;
border:1px solid #E3E3E3;
-moz-border-radius: 3px;
-webkit-border-radius:3px;
border-radius:3px;
float:left;
height:148px;
padding:9px 9px 0;
width:115px;
}
#gallery .item_inner.folder {
border: 0;
}
#gallery .item_image {
border:medium none;
display:block;
height:115px;
left:10px;
overflow:hidden;
position:absolute;
top:10px;
width:115px;
color:#888F96;
background: no-repeat center center;
background-color: #F0F0F0;
}
#gallery .item_image.folder {
background-color: #FFFFFF;
}
#gallery .item .checkbox{
padding:0 20px 0 0;
position:absolute;
left:10px;
top:135px;
}
#gallery .actions {
height:18px;
width:60px;
opacity:1;
overflow:hidden;
position:absolute;
top:135px;
right:12px;
z-index:10;
}
#gallery .actions a {
display:block;
float:right;
width:16px;
height:16px;
border:0 none;
margin:0;
padding:0;
padding-left:4px;
text-decoration:none;
}
#gallery .actions a img{
border:0 none;
margin:0;
padding:0;
}
#gallery .item .name, #gallery .item .time, #gallery .item .size {
clear: both;
text-align: center;
cursor: default;
white-space: nowrap;
overflow: hidden;
}
#gallery .item .name {
font-weight: bold;
padding:5px 8px 0;
margin-top: 4px;
}
#gallery .item .time, #gallery .item .size {
font-size: 11px;
}
#gallery .item .size{
line-height: 1.4em;
}
#gallery .select_all {
color:#777777;
float:left;
height:24px;
margin:0;
}
#gallery .empty {
padding: 25px;
margin-top: 25px;
border: 1px solid #E3E3E3;
color:#666666;
} | couch/theme/styles.css | html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 12px;
font-family: inherit;
vertical-align: baseline;
}
body {
line-height: 1.5;
}
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
a img { border: none; }
body {
font-size: 75%;
color: #000;
background: #fff;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }
h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
margin: 0;
}
p { margin: 0 0 1.5em; }
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
a:focus,
a:hover { color: #000; }
a { color: #009; text-decoration: underline; outline: none; }
blockquote { margin: 1.5em; color: #666; font-style: italic; }
strong { font-weight: bold; }
em,dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }
abbr,
acronym { border-bottom: 1px dotted #666; }
address { margin: 0 0 1.5em; font-style: italic; }
del { color:#666; }
pre { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
li ul,
li ol { margin:0 1.5em; }
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em;}
table { margin-bottom: 1.4em; width:100%; }
th { font-weight: bold; }
thead th { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td { background: #e5ecf9; }
tfoot { font-style: italic; }
caption { background: #eee; }
hr {
background: #ddd;
color: #ddd;
clear: both;
float: none;
width: 100%;
height: .1em;
margin: 0 0 1.45em;
border: none;
}
hr.space {
background: #fff;
color: #fff;
}
.tiny{
font-size:11px;
line-height:1.2em;
}
.verytiny{
font-size:9px;
line-height:1.4em;
}
.alignright {
float: right;
}
.alignleft {
float: left
}
.center {
text-align: center;
}
.clear {
clear:both;
}
.error,
.notice,
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a { color: #8a1f11; }
.notice a { color: #514721; }
.success a { color: #264409; }
/**********************************************************************/
body{
background:#26231E;
}
html, body{ height: 100% !important; }
span.k_desc{ color:#777; }
a{ color:#446F95; text-decoration:none; }
a:hover, a:active, a:focus { color:#D6491B; }
#container {
display:block;
width:1008px;
min-height: 100%;
background: #F0F0F0 url(images/bg-wrapper.jpg) repeat-y left top;
float: left;
}
* html #container {
height: 100%;
}
#container2 {
background: transparent url(images/grad.gif) no-repeat 200px top;
float: left;
}
#header{
height:85px;
position:relative;
margin-bottom: 5px;
}
img#couch-logo{
position:absolute;
top:16px;
left:20px;
}
#header h2{
float:left;
display: inline;
padding-top: 40px;
margin-left: 220px;
margin-bottom:10px;
font-weight: normal;
}
#header div#create_new, #header div#bulk_upload{
float:left;
display: inline;
padding-top: 43px;
padding-left: 10px;
}
#header div#view_template, #header div#view_folders{
float:left;
display: inline;
padding-top: 43px;
padding-left: 0px;
}
#header a.button { margin-right:0; }
#header div.error{
clear: right;
margin-left: 220px;
margin-bottom:10px;
margin-right: 22px;
}
#footer {
clear:both;
padding:20px 0;
margin-left: 220px;
text-align:left;
color:#999;
font-size:11px;
}
#footer a{
color:#999;
font-size:11px;
}
#sidebar{
float: left;
padding-top: 0px;
width: 220px;
min-height:400px;
text-align: right;
}
#sidebar ul{
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin: 0;
}
#sidebar ul li{
display: inline;
}
#sidebar ul li a{
color: #AAAAAA;
display: block;
font-size: 13px;
line-height: 1.2em;
padding: 8px 40px 8px 15px;
outline: none;
}
#sidebar ul li a:hover{
color: #FFFFFF;
outline: none;
}
#sidebar ul li.active-template a{
color: #FFFFFF;
background: transparent url(images/arrow.gif) no-repeat scroll 15px 3px;
}
#sidebar ul li.hidden-template a{
text-decoration: line-through;
}
#sidebar ul li.template-separator a{
padding: 0;
margin: 12px 20px 6px;
border-top: 1px solid #45423E;
line-height: 0;
}
#sidebar ul li a img{
margin-bottom: -2px;
}
#admin-wrapper {
float:left;
min-height:480px;
width:764px;
border: 1px solid #CCC;
background-color: #FFF;
-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
display:inline;
position: relative;
}
#admin-wrapper-header{
height: 30px;
background: #4B4B4B url(images/bg-header.gif) repeat-x scroll left top;
-moz-border-radius-topleft: 6px; -webkit-border-radius: 6px; border-radius: 6px;
-moz-border-radius-topright: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}
#admin-wrapper-header h3{
padding: 5px 10px 8px;
margin: 0px;
color: #FFF;
}
#admin-wrapper-header div#advanced-settings{
float: right;
display: inline;
margin-right: 12px;
height: 30px;
border-left: 1px solid #45423E;
border-right: 1px solid #45423E;
}
#admin-wrapper-header div#advanced-settings a{
color: #AAA;
padding: 0 20px 0 6px;
line-height: 30px;
outline: none;
}
#admin-wrapper-header div#advanced-settings a.collapsed{
background: transparent url(images/arrows.gif) no-repeat right -7px;
}
#admin-wrapper-header div#advanced-settings a.expanded{
background: transparent url(images/arrows.gif) no-repeat right -38px;
}
#admin-wrapper-header div#advanced-settings a:hover{
color: #FFF;
outline: none;
}
#admin-wrapper-body{
float: left;
width: 736px;
padding: 14px 14px 6px 14px;
display:inline;
position: relative;
}
#admin-sidebar{
float:right;
width:200px;
padding: 14px;
margin-right: 6px;
display:none;
border: 1px solid #E6E6E3;
-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
}
input#f_k_year{width:30px;}
input#f_k_day,
input#f_k_hour,
input#f_k_min
{width:18px;}
div#access-levels select{width: 185px;}
#admin-content{
float:left;
/*width:520px;*/
width: 733px;
display:inline;
margin-bottom: 16px;
position: relative;
}
span.k_notice{
display: block;
}
div.k_element{
margin-bottom: 18px;
clear: both;
position: relative;
background-color: #fff;
overflow: hidden;
zoom: 1;
}
div.k_element_deleted{
opacity: 0.6;
filter: alpha(opacity=60);
position: absolute;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #FBE3E4;
cursor: pointer;
}
.k_image_text, .k_file_text{
float: left;
margin-right: 5px;
margin-bottom: 16px;
margin-top: 3px;
}
.group-wrapper, .group-wrapper_ex{
margin-bottom:16px;
border:1px solid #E6E6E3;
padding:0px;
-moz-border-radius:5px; -webkit-border-radius: 5px; border-radius: 5px;
}
div.group-wrapper.listing{
float:right;
width:734px
}
.group-toggler, .group-toggler_ex{
border-bottom:1px solid #E6E6E3;
background-color: #F9F9F8;
padding: 6px;
margin:0px;
cursor: pointer;
/*background-image:url(images/bg.jpg);*/
background-position:0 0;
background-repeat:repeat-x;
zoom: 1;
}
.group-toggler_ex{ cursor: default; }
.group-slider, .group-slider_ex{
padding:10px;
padding-top:15px !important;
padding-right:15px !important;
position: relative;
zoom: 1;
}
table.listing{
margin-bottom: 0;
}
table.listing th{
overflow: hidden;
vertical-align: top;
white-space: nowrap;
background-color: transparent;
border-bottom: 1px solid #E6E6E3;
color: #333;
background-color:#F9F9F8;
}
table.listing th.checkbox{
padding-right: 0;
width: 20px;
}
table.listing tbody tr:hover td {
background-color: #F9F9F8;
}
table.listing td{
overflow: hidden;
vertical-align: top;
white-space: nowrap;
border-bottom: 1px solid #E6E6E3;
}
table.listing td img{ margin-bottom:-2px; }
table.listing td.last_row{
border-bottom: 0;
}
table.listing td.checkbox{
border-left: 0;
width: 20px;
}
table.listing td.up-down{
background-color: #F9F9F8;
width: 30px;
padding: 0;
}
table.listing td.up-down a{
margin: 0;
padding: 0;
line-height:4px;
display: block;
}
table.listing td.name{
width: 320px;
padding-right: 5px;
}
table.listing.nested td.name{
width: 560px;
}
table.listing.nested span.pointer_links{ color: #a0a0a0; }
table.listing.nested span.pointer_links a{
font-size: 11px;
color: #a0a0a0;
text-decoration: underline !important;
}
table.listing.nested td.name span.unpublished{
/*color:red !important;*/
text-decoration: line-through !important;
}
table.listing td.comments-count{
padding-right: 6px;
text-align: right;
width: 70px;
}
table.listing td.comments-count a{
font-size: 10px;
}
table.listing td.comments-count img{
margin-bottom: -2px;
margin-left: 1px;
}
table.listing td.comments-count span.comments-count{
padding-left: 6px;
}
table.listing td.user_name{
width: 20%;
}
table.listing td.folder{
width: 120px;
background-color: #F9F9F8;
font-size: 11px;
}
table.listing td.folder.drafts{
width: 105px;
}
table.listing td.date{
width: 75px;
font-size: 11px;
}
table.listing td.date.drafts{
width: 95px;
_width:115px;
}
table.listing td.actions{
width: 70px;
background-color: #F9F9F8;
padding-right: 5px;
}
table.listing.nested td.actions{
width: 80px;
}
table.listing td.actions img{
margin-right: 7px;
}
a#listing-header{
font-size: 24px;
color: #111;
}
table.listing td.folder-title{
width: 400px;
}
table.listing td.folder-name{
background-color:#F9F9F8;
}
textarea,
input[type="text"],
input[type="password"],
select {
background-color:#FFFFFF;
border: 1px solid #E6E6E3;
padding: 1px;
}
input:focus,
textarea:focus{
/*border-color: #999;*/
background-color:#FBFBFB;
}
ul#admin-subnav, ul.k_element_deleted_nav{
height:26px;
position:absolute;
right:0;
top:0;
margin:10px 1px 5px;
}
#admin-subnav li, ul.k_element_deleted_nav li{
display:inline;
float:left;
margin:0 0 0 10px;
color:#333;
font-size:12px;
line-height:26px;
}
#admin-subnav li a, ul.k_element_deleted_nav li a{
color:#333;
text-decoration:none;
font-size:12px;
}
#admin-subnav li a:hover, ul.k_element_deleted_nav li a:hover {text-decoration:underline;}
ul.k_element_deleted_nav{ background-color: #FFFFE0; opacity:1 !important; border: 1px solid #777; margin-top: 2px; padding-right:10px}
body.login{
background-image: none;
background: #F0F0F0 url(images/grad.gif) no-repeat fixed left top;
}
div#login{
margin:100px auto;
width:300px;
}
#login form, #login div.wrapper{
padding:15px;
background-color:#fff;
border:1px solid #E6E6E3;
-moz-border-radius:10px; -webkit-border-radius: 10px; border-radius: 10px;
margin-bottom:10px;
}
#login form label{
color:#777;
}
#login form p{ margin:0;}
#login form #k_user_name, #login form #k_user_pwd, #login form #k_user_pwd_repeat, #login form #k_user_email{
width:99%;
font-size:20px;
margin-bottom:10px;
background-color:#FBFBFB;
border: 1px solid #E6E6E3;
}
/* Comments */
.comment{
color:#777777;
font-size:12px;
}
.approved{
}
.unapproved{
background-color:#FFFFE0;
}
.comment-checkbox{
vertical-align:top;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
width: 20px;
}
.comment-author{
vertical-align:top;
width:20%;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
}
.comment-body{
vertical-align:top;
border-bottom:1px solid #DFDFDF;
padding-bottom:12px;
padding-top:8px;
}
.comment-meta{
margin-bottom:0;
}
.comment-content{
vertical-align:top;
margin:0.6em 0;
}
.comment-actions{
margin-bottom:0;
}
.comment-date{
font-size:10px;
}
.wrap-paginator{
float:left;
height: 34px;
/*width:734px;*/
}
.wrap-paginator .record-count{
float:right;
padding: 3px;
margin: 3px 3px 8px;
color:#777777;
font-size:13px;
font-style:italic;
}
.wrap-paginator .bulk-actions{
float:left;
color:#777777;
margin: 0px 10px 12px 0;
height: 24px;
}
.wrap-paginator .bulk-actions select{
float: left;
margin:1px 4px 1px 0;
}
.filter{
float:left;
list-style-type:none;
margin: 10px 0 10px 3px;
color:#777777;
}
.filter li{
display:inline;
}
.filter a.current{
font-weight:bold;
color:#000;
}
/*
Pagination
Source: http://www.strangerstudios.com/sandbox/pagination/diggstyle.php (strangerstudios.com)
*/
div.pagination {
padding: 3px 0 3px 3px;
margin: 3px 0px 8px;
float:right;
}
div.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #CCC;
text-decoration: none; /* no underline */
color: #446F95;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
div.pagination a:hover, div.pagination a:active {
border: 1px solid #D6491B;
color: #D6491B;
}
div.pagination span.page_current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #CCC;
font-weight: bold;
background-color: #EEE;
color: #446F95;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
div.pagination span.page_disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #EEE;
color: #DDD;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
/*
Buttons
http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
*/
a.button {
background: transparent url('images/bg_button_a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
outline: none;
}
a.button.nocurve {
background-image: url('images/bg_button_a2.gif')
}
a.button span {
background: transparent url('images/bg_button_span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button span.nocurve {
background-image: url('images/bg_button_span2.gif')
}
a.button:active, a.button:hover {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span, a.button:hover span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
/* Gallery */
div#gallery.group-wrapper.listing {
border:0;
margin-bottom:6px;
}
#gallery .item {
color:#666666;
font-family:Arial,Helevtica,Verdana,san-serif;
font-size:12px;
float:left;
font-size:12px;
line-height:1.7em;
margin:0 14px 18px 0;
position:relative;
width:135px;
}
#gallery .item.last {
margin-right:0;
}
#gallery .item_inner {
background:#FFFFFF none repeat scroll 0;
border:1px solid #E3E3E3;
-moz-border-radius: 3px;
-webkit-border-radius:3px;
border-radius:3px;
float:left;
height:148px;
padding:9px 9px 0;
width:115px;
}
#gallery .item_inner.folder {
border: 0;
}
#gallery .item_image {
border:medium none;
display:block;
height:115px;
left:10px;
overflow:hidden;
position:absolute;
top:10px;
width:115px;
color:#888F96;
background: no-repeat center center;
background-color: #F0F0F0;
}
#gallery .item_image.folder {
background-color: #FFFFFF;
}
#gallery .item .checkbox{
padding:0 20px 0 0;
position:absolute;
left:10px;
top:135px;
}
#gallery .actions {
height:18px;
width:60px;
opacity:1;
overflow:hidden;
position:absolute;
top:135px;
right:12px;
z-index:10;
}
#gallery .actions a {
display:block;
float:right;
width:16px;
height:16px;
border:0 none;
margin:0;
padding:0;
padding-left:4px;
text-decoration:none;
}
#gallery .actions a img{
border:0 none;
margin:0;
padding:0;
}
#gallery .item .name, #gallery .item .time, #gallery .item .size {
clear: both;
text-align: center;
cursor: default;
white-space: nowrap;
overflow: hidden;
}
#gallery .item .name {
font-weight: bold;
padding:5px 8px 0;
margin-top: 4px;
}
#gallery .item .time, #gallery .item .size {
font-size: 11px;
}
#gallery .item .size{
line-height: 1.4em;
}
#gallery .select_all {
color:#777777;
float:left;
height:24px;
margin:0;
}
#gallery .empty {
padding: 25px;
margin-top: 25px;
border: 1px solid #E3E3E3;
color:#666666;
} | 0.382026 | 0.10026 |
.algn-content-baseline {
align-content: baseline;
}
.algn-content-center {
align-content: center;
}
.algn-content-end {
align-content: end;
}
.algn-content-flex-end {
align-content: flex-end;
}
.algn-content-flex-start {
align-content: flex-start;
}
.algn-content-inherit {
align-content: inherit;
}
.algn-content-initial {
align-content: initial;
}
.algn-content-normal {
align-content: normal;
}
.algn-content-space-around {
align-content: space-around;
}
.algn-content-space-evenly {
align-content: space-evenly;
}
.algn-content-space-between {
align-content: space-between;
}
.algn-content-start {
align-content: start;
}
.algn-content-stretch {
align-content: stretch;
}
.algn-content-unset {
align-content: unset;
}
.algn-items-baseline {
align-items: baseline;
}
.algn-items-center {
align-items: center;
}
.algn-items-end {
align-items: end;
}
.algn-items-flex-end {
align-items: flex-end;
}
.algn-items-flex-start {
align-items: flex-start;
}
.algn-items-inherit {
align-items: inherit;
}
.algn-items-initial {
align-items: initial;
}
.algn-items-normal {
align-items: normal;
}
.algn-items-start {
align-items: start;
}
.algn-items-stretch {
align-items: stretch;
}
.flex-inherit {
flex-direction: inherit;
}
.flex-initial {
flex-direction: initial;
}
.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-unset {
flex-direction: unset;
}
.just-content-center {
justify-content: center;
}
.just-content-end {
justify-content: end;
}
.just-content-flex-end {
justify-content: flex-end;
}
.just-content-flex-start {
justify-content: flex-start;
}
.just-content-inherit {
justify-content: inherit;
}
.just-content-initial {
justify-content: initial;
}
.just-content-left {
justify-content: left;
}
.just-content-normal {
justify-content: normal;
}
.just-content-right {
justify-content: right;
}
.just-content-space-around {
justify-content: space-around;
}
.just-content-space-evenly {
justify-content: space-evenly;
}
.just-content-space-between {
justify-content: space-between;
}
.just-content-start {
justify-content: start;
}
.just-content-stretch {
justify-content: stretch;
}
.just-items-auto {
justify-items: auto;
}
.just-items-baseline {
justify-items: baseline;
}
.just-items-center {
justify-items: center;
}
.just-items-end {
justify-items: end;
}
.just-items-flex-end {
justify-items: flex-end;
}
.just-items-flex-start {
justify-items: flex-start;
}
.just-items-inherit {
justify-items: inherit;
}
.just-items-initial {
justify-items: initial;
}
.just-items-left {
justify-items: left;
}
.just-items-normal {
justify-items: normal;
}
.just-items-right {
justify-items: right;
}
.just-items-self-end {
justify-items: self-end;
}
.just-items-self-start {
justify-items: self-start;
}
.just-items-start {
justify-items: start;
}
.just-items-stretch {
justify-items: stretch;
}
.just-items-unset {
justify-items: unset;
}
/*# sourceMappingURL=flex.css.map */ | dist/utils/flex.css | .algn-content-baseline {
align-content: baseline;
}
.algn-content-center {
align-content: center;
}
.algn-content-end {
align-content: end;
}
.algn-content-flex-end {
align-content: flex-end;
}
.algn-content-flex-start {
align-content: flex-start;
}
.algn-content-inherit {
align-content: inherit;
}
.algn-content-initial {
align-content: initial;
}
.algn-content-normal {
align-content: normal;
}
.algn-content-space-around {
align-content: space-around;
}
.algn-content-space-evenly {
align-content: space-evenly;
}
.algn-content-space-between {
align-content: space-between;
}
.algn-content-start {
align-content: start;
}
.algn-content-stretch {
align-content: stretch;
}
.algn-content-unset {
align-content: unset;
}
.algn-items-baseline {
align-items: baseline;
}
.algn-items-center {
align-items: center;
}
.algn-items-end {
align-items: end;
}
.algn-items-flex-end {
align-items: flex-end;
}
.algn-items-flex-start {
align-items: flex-start;
}
.algn-items-inherit {
align-items: inherit;
}
.algn-items-initial {
align-items: initial;
}
.algn-items-normal {
align-items: normal;
}
.algn-items-start {
align-items: start;
}
.algn-items-stretch {
align-items: stretch;
}
.flex-inherit {
flex-direction: inherit;
}
.flex-initial {
flex-direction: initial;
}
.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-unset {
flex-direction: unset;
}
.just-content-center {
justify-content: center;
}
.just-content-end {
justify-content: end;
}
.just-content-flex-end {
justify-content: flex-end;
}
.just-content-flex-start {
justify-content: flex-start;
}
.just-content-inherit {
justify-content: inherit;
}
.just-content-initial {
justify-content: initial;
}
.just-content-left {
justify-content: left;
}
.just-content-normal {
justify-content: normal;
}
.just-content-right {
justify-content: right;
}
.just-content-space-around {
justify-content: space-around;
}
.just-content-space-evenly {
justify-content: space-evenly;
}
.just-content-space-between {
justify-content: space-between;
}
.just-content-start {
justify-content: start;
}
.just-content-stretch {
justify-content: stretch;
}
.just-items-auto {
justify-items: auto;
}
.just-items-baseline {
justify-items: baseline;
}
.just-items-center {
justify-items: center;
}
.just-items-end {
justify-items: end;
}
.just-items-flex-end {
justify-items: flex-end;
}
.just-items-flex-start {
justify-items: flex-start;
}
.just-items-inherit {
justify-items: inherit;
}
.just-items-initial {
justify-items: initial;
}
.just-items-left {
justify-items: left;
}
.just-items-normal {
justify-items: normal;
}
.just-items-right {
justify-items: right;
}
.just-items-self-end {
justify-items: self-end;
}
.just-items-self-start {
justify-items: self-start;
}
.just-items-start {
justify-items: start;
}
.just-items-stretch {
justify-items: stretch;
}
.just-items-unset {
justify-items: unset;
}
/*# sourceMappingURL=flex.css.map */ | 0.582254 | 0.083853 |
*, *::before, *::after {
box-sizing: border-box;
}
nav {
position: relative;
width: 100%;
margin: 0;
top: 0;
padding: 1em 0;
left: 0;
font-size: 1.0125rem;
font-family: Roboto, sans-serif;
background: hsl(219, 36%, 45%);
display: flex;
justify-content: center;
}
nav > button {
border: 1px solid #fff;
border-radius: .5em;
padding: 0 1em;
margin: 0 2em;
font-family: Roboto, sans-serif;
font-size: 1.01em;
font-weight: bolder;
color: hsl(219, 36%, 40%);
cursor: pointer;
background: #fff;
}
nav .fa-icon {
margin-right: .2em;
}
nav > button:hover {
color: white;
background: hsl(219, 20%, 20%);
border-color: hsl(219, 20%, 20%);
}
.wrapper-dropdown {
position: relative;
width: 23ch;
margin: 0 2em;
padding: 12px 15px;
color: hsl(219, 36%, 40%);
font-weight: bold;
background: #fff;
border-radius: .5em;
cursor: pointer;
outline: none;
transition: all 0.3s ease-out;
z-index: 10;
}
.wrapper-dropdown:after {
content: "";
width: 0;
height: 0;
position: absolute;
top: 50%;
right: 15px;
margin-top: -3px;
border-width: 6px 6px 0 6px;
border-style: solid;
border-color: hsl(219, 36%, 40%) transparent;
}
.wrapper-dropdown > p {
margin: 0 0 0 1em;
padding: 0;
}
.wrapper-dropdown .dropdown {
position: absolute;
top: 1.65em;
left: 0;
right: 0;
padding: 0;
background: #fff;
border-radius: 0 0 .5em .5em;
border: none;
list-style: none;
transition: all 0.3s ease-out;
max-height: 0;
overflow: hidden;
}
.wrapper-dropdown .dropdown li {
padding: 0;
margin: 0;
height: 45px;
left: 0;
border-bottom: 1px solid hsl(219, 36%, 40%);
}
.wrapper-dropdown .dropdown li p {
display: block;
margin: 0 0 0 2em;
color: hsl(219, 36%, 40%);
font-weight: bolder;
height: 100%;
padding: 10px 0;
transition: all 0.3s ease-out;
}
.wrapper-dropdown .dropdown li:last-of-type p {
border: none;
}
.wrapper-dropdown .dropdown li:hover p {
color: hsl(219, 36%, 60%);
}
.wrapper-dropdown.active {
border-radius: .5em .5em 0 0;
background: hsl(219, 20%, 20%);
box-shadow: none;
border-bottom: none;
color: white;
}
.wrapper-dropdown.active:after {
border-color: #fff transparent;
}
.wrapper-dropdown.active .dropdown {
max-height: 100em;
}
.wrapper-slider {
position: relative;
background: #fff;
border-radius: .5em;
}
.slider-label {
color: hsl(219, 36%, 40%);
font-weight: bold;
font-size: 0.9em;
top: 10%;
left: 50%;
width: 100%;
transform: translateX(-50%);
text-align: center;
position: absolute;
}
.slider {
position: relative;
top: 40%;
width: 10em;
margin: 0 5ch;
-webkit-appearance: none;
appearance: none;
background: hsl(219, 36%, 45%);
height: .6em;
border-radius: .5em;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 1.2em;
height: 1.2em;
border-radius: .5em;
background: hsl(219, 20%, 20%);
}
.slider::before,
.slider::after {
position: absolute;
font-weight: bold;
top: -40%;
color: hsl(219, 36%, 40%);
font-size: .9em;
}
.slider::before {
content: "Slow";
left: -2.75em;
}
.slider::after {
content: "Fast";
right: -2.5em;
} | src/styles/Navbar.css | *, *::before, *::after {
box-sizing: border-box;
}
nav {
position: relative;
width: 100%;
margin: 0;
top: 0;
padding: 1em 0;
left: 0;
font-size: 1.0125rem;
font-family: Roboto, sans-serif;
background: hsl(219, 36%, 45%);
display: flex;
justify-content: center;
}
nav > button {
border: 1px solid #fff;
border-radius: .5em;
padding: 0 1em;
margin: 0 2em;
font-family: Roboto, sans-serif;
font-size: 1.01em;
font-weight: bolder;
color: hsl(219, 36%, 40%);
cursor: pointer;
background: #fff;
}
nav .fa-icon {
margin-right: .2em;
}
nav > button:hover {
color: white;
background: hsl(219, 20%, 20%);
border-color: hsl(219, 20%, 20%);
}
.wrapper-dropdown {
position: relative;
width: 23ch;
margin: 0 2em;
padding: 12px 15px;
color: hsl(219, 36%, 40%);
font-weight: bold;
background: #fff;
border-radius: .5em;
cursor: pointer;
outline: none;
transition: all 0.3s ease-out;
z-index: 10;
}
.wrapper-dropdown:after {
content: "";
width: 0;
height: 0;
position: absolute;
top: 50%;
right: 15px;
margin-top: -3px;
border-width: 6px 6px 0 6px;
border-style: solid;
border-color: hsl(219, 36%, 40%) transparent;
}
.wrapper-dropdown > p {
margin: 0 0 0 1em;
padding: 0;
}
.wrapper-dropdown .dropdown {
position: absolute;
top: 1.65em;
left: 0;
right: 0;
padding: 0;
background: #fff;
border-radius: 0 0 .5em .5em;
border: none;
list-style: none;
transition: all 0.3s ease-out;
max-height: 0;
overflow: hidden;
}
.wrapper-dropdown .dropdown li {
padding: 0;
margin: 0;
height: 45px;
left: 0;
border-bottom: 1px solid hsl(219, 36%, 40%);
}
.wrapper-dropdown .dropdown li p {
display: block;
margin: 0 0 0 2em;
color: hsl(219, 36%, 40%);
font-weight: bolder;
height: 100%;
padding: 10px 0;
transition: all 0.3s ease-out;
}
.wrapper-dropdown .dropdown li:last-of-type p {
border: none;
}
.wrapper-dropdown .dropdown li:hover p {
color: hsl(219, 36%, 60%);
}
.wrapper-dropdown.active {
border-radius: .5em .5em 0 0;
background: hsl(219, 20%, 20%);
box-shadow: none;
border-bottom: none;
color: white;
}
.wrapper-dropdown.active:after {
border-color: #fff transparent;
}
.wrapper-dropdown.active .dropdown {
max-height: 100em;
}
.wrapper-slider {
position: relative;
background: #fff;
border-radius: .5em;
}
.slider-label {
color: hsl(219, 36%, 40%);
font-weight: bold;
font-size: 0.9em;
top: 10%;
left: 50%;
width: 100%;
transform: translateX(-50%);
text-align: center;
position: absolute;
}
.slider {
position: relative;
top: 40%;
width: 10em;
margin: 0 5ch;
-webkit-appearance: none;
appearance: none;
background: hsl(219, 36%, 45%);
height: .6em;
border-radius: .5em;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 1.2em;
height: 1.2em;
border-radius: .5em;
background: hsl(219, 20%, 20%);
}
.slider::before,
.slider::after {
position: absolute;
font-weight: bold;
top: -40%;
color: hsl(219, 36%, 40%);
font-size: .9em;
}
.slider::before {
content: "Slow";
left: -2.75em;
}
.slider::after {
content: "Fast";
right: -2.5em;
} | 0.46393 | 0.055336 |
@charset 'utf-8';
h1 {
background: #8EB8FF; /*背景色*/
padding: 0.5em;/*文字周りの余白*/
color: white;/*文字を白に*/
border-radius: 0.5em;/*角の丸み*/
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
div {
max-width: 100%;
margin: 0 auto;
font-family:'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
.container {
font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
text-align: center;
padding-top: 40px;
display: flex;
float: none;
flex-direction: column;
height: 100%;
min-height: 100%;
}
.center{
text-align: center;
}
img.example1 {
width: 700px;
display: block;
margin-left: auto;
margin-right: auto;
}
p {
text-align: center;
color: #8EB8FF;
}
h2 {
text-align: center;
color: black;
}
h3 {
color: black;
text-align: center;
}
h4 {
color: black;
text-align: center;
}
img.small {
width: 223;
height: 140;
}
ol {
counter-reset:number; /*数字をリセット*/
list-style-type: none!important; /*数字を一旦消す*/
padding:0.5em;
border: dashed 1px white;
margin-left: 20%;
margin-right: 20%;
}
ol li {
position: relative;
line-height: 1.5em;
padding: 0.5em 0.5em 0.5em 30px;
}
ol li:before{
/* 以下数字をつける */
position: absolute;
counter-increment: number;
content: counter(number);
/*数字のデザイン変える*/
display:inline-block;
background: #8EB8FF;
color: white;
font-family: 'Avenir','Arial Black','Arial',sans-serif;
font-weight:bold;
font-size: 15px;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
/*以下上下中央寄せのため*/
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
button.btn-circle-3d {
display: inline-block;
text-decoration: none;
background: #8EB8FF;
color: #FFF;
width: 120px;
height: 120px;
line-height: 120px;
border-radius: 50%;
text-align: center;
font-weight: bold;
overflow: hidden;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
border-bottom: solid 3px #888888;
transition: .4s;
}
button.btn-circle-3d:active {
-webkit-transform: translateY(2px);
transform: translateY(2px);
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
border-bottom: none;
}
header {
padding:20px;
background: linear-gradient(to right, rgb(1865, 186, 215), #8EB8FF);
}
footer{
width: 100%;
background: linear-gradient(to right, rgb(1865, 186, 215), #8EB8FF);
color: #fff;
text-align: center;
padding: 90px 0;
position: relative;/*←絶対位置*/
bottom: 0; /*下に固定*/
font-family:'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
.btn-flat-logo {
position: relative;
display: inline-block;
font-weight: bold;
padding: 1em 2em;
text-decoration: none;
color: #FFF;
background: #8EB8FF;
transition: .4s;
}
.btn-flat-logo:hover {
background: rgb(1865, 186, 215);
}
.semilong {
padding-top: 5vh;
padding-bottom: 1vh;
}
.balloon1 {
position: relative;
display: inline-block;
margin: 1.5em 0;
padding: 7px 10px;
min-width: 120px;
max-width: 100%;
color: black;
font-size: 16px;
background: #FFF;
border: solid 2px black;
box-sizing: border-box;
border-radius: 15px;
}
.balloon1:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 11px solid transparent;
border-top: 13px solid #FFF;
z-index: 2;
}
.balloon1:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -17px;
border: 14px solid transparent;
border-top: 14px solid black;
z-index: 1;
}
.balloon1 p {
margin: 0;
padding: 0;
}
.green {
background-color: #f0fff0;
}
.red {
background-color: #ffe4e1;
}
.pink {
background-color: #fff0f5;
}
.purple {
background-color: #e6e6fa;
}
.cyan {
background-color: #e0ffff;
}
.orange {
background-color: #fdf5e6;
}
.silver {
background-color: #f5f5f5;
} | go/static/pata.css | @charset 'utf-8';
h1 {
background: #8EB8FF; /*背景色*/
padding: 0.5em;/*文字周りの余白*/
color: white;/*文字を白に*/
border-radius: 0.5em;/*角の丸み*/
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
div {
max-width: 100%;
margin: 0 auto;
font-family:'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
.container {
font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
text-align: center;
padding-top: 40px;
display: flex;
float: none;
flex-direction: column;
height: 100%;
min-height: 100%;
}
.center{
text-align: center;
}
img.example1 {
width: 700px;
display: block;
margin-left: auto;
margin-right: auto;
}
p {
text-align: center;
color: #8EB8FF;
}
h2 {
text-align: center;
color: black;
}
h3 {
color: black;
text-align: center;
}
h4 {
color: black;
text-align: center;
}
img.small {
width: 223;
height: 140;
}
ol {
counter-reset:number; /*数字をリセット*/
list-style-type: none!important; /*数字を一旦消す*/
padding:0.5em;
border: dashed 1px white;
margin-left: 20%;
margin-right: 20%;
}
ol li {
position: relative;
line-height: 1.5em;
padding: 0.5em 0.5em 0.5em 30px;
}
ol li:before{
/* 以下数字をつける */
position: absolute;
counter-increment: number;
content: counter(number);
/*数字のデザイン変える*/
display:inline-block;
background: #8EB8FF;
color: white;
font-family: 'Avenir','Arial Black','Arial',sans-serif;
font-weight:bold;
font-size: 15px;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
/*以下上下中央寄せのため*/
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
button.btn-circle-3d {
display: inline-block;
text-decoration: none;
background: #8EB8FF;
color: #FFF;
width: 120px;
height: 120px;
line-height: 120px;
border-radius: 50%;
text-align: center;
font-weight: bold;
overflow: hidden;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
border-bottom: solid 3px #888888;
transition: .4s;
}
button.btn-circle-3d:active {
-webkit-transform: translateY(2px);
transform: translateY(2px);
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
border-bottom: none;
}
header {
padding:20px;
background: linear-gradient(to right, rgb(1865, 186, 215), #8EB8FF);
}
footer{
width: 100%;
background: linear-gradient(to right, rgb(1865, 186, 215), #8EB8FF);
color: #fff;
text-align: center;
padding: 90px 0;
position: relative;/*←絶対位置*/
bottom: 0; /*下に固定*/
font-family:'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
.btn-flat-logo {
position: relative;
display: inline-block;
font-weight: bold;
padding: 1em 2em;
text-decoration: none;
color: #FFF;
background: #8EB8FF;
transition: .4s;
}
.btn-flat-logo:hover {
background: rgb(1865, 186, 215);
}
.semilong {
padding-top: 5vh;
padding-bottom: 1vh;
}
.balloon1 {
position: relative;
display: inline-block;
margin: 1.5em 0;
padding: 7px 10px;
min-width: 120px;
max-width: 100%;
color: black;
font-size: 16px;
background: #FFF;
border: solid 2px black;
box-sizing: border-box;
border-radius: 15px;
}
.balloon1:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 11px solid transparent;
border-top: 13px solid #FFF;
z-index: 2;
}
.balloon1:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -17px;
border: 14px solid transparent;
border-top: 14px solid black;
z-index: 1;
}
.balloon1 p {
margin: 0;
padding: 0;
}
.green {
background-color: #f0fff0;
}
.red {
background-color: #ffe4e1;
}
.pink {
background-color: #fff0f5;
}
.purple {
background-color: #e6e6fa;
}
.cyan {
background-color: #e0ffff;
}
.orange {
background-color: #fdf5e6;
}
.silver {
background-color: #f5f5f5;
} | 0.366363 | 0.083329 |
body {
font-family: Century Gothic;
font-size: 12px;
background-color: #fafafa;
}
.panel {
position: fixed;
background-color: transparent;
right: -15.625em; /*left or right and the width of your navigation panel*/
width: 15.625em; /*should match the above value*/
}
hr {
margin: 10px 10px;
}
/*1. Top Nav bar */
.navbar-fixed-top {
background-color: #0093D1;
}
.navbar-default .navbar-nav > li > a, #logo > a, a:focus {
text-decoration: none;
color: #000000;
}
.navbar-default .navbar-nav > li > a:hover {
color: #ffffff;
}
.nav_selected {
background-color: white;
}
.nav_selected a:hover {
color: #0093D1 !important;
}
.navicon-line {
width: 24px;
height: 4px;
border-radius: 1px;
margin-bottom: 3px;
background-color: #aaaaaa;
}
/*3. site content*/
#sb-site {
position: relative;
margin-top: 50px;
}
.sb-site-content {
width: 80%;
position: relative;
margin-left: auto;
margin-right: auto;
}
.btn, .btn-sm {
margin-top: 10px;
padding: 2px 5px 2px;
font-size: 100%;
}
h3 {
margin-top: 10px;
padding: 10px 10px 10px 10px;
border-top: 1px solid #0093D1;
}
div .left {
margin-right: 50px;
}
/*3.1 site common sections */
.sb-site-content a, .sb-site-content a:hover, .sb-site-content a:visited {
color: #0093D1;
}
/*3.B site common articles */
.sb-site-content article {
margin: 10px auto 25px auto;
background-color: #ffffff;
box-shadow: 0px 0px 2px #0093D1;
padding: 10px;
width: 100%;
}
/* table */
th {
text-transform: uppercase;
align: center;
}
.oid_row {
vertical-align: top;
}
.oid_column_button {
width: 10px !important;
padding: 0 !important;
}
.oid_tree_button {
padding: 0 !important;
border-width: 0 !important;
}
.oid_tree_data {
padding-bottom: 0 !important;
padding-top: 5px !important;
padding-right: 0 !important;
}
.oid_syntax {
text-decoration: underline;
color: #0093D1;
padding: 0;
margin-top: 0;
border-width: 0;
}
/* detail bar at the bottom of tha page */
#entry_detail {
min-height: 0;
list-style: none;
margin: 0;
padding: 0 10px 10px 10px;
border: 1px solid #ccc;
border-width: 1px 0;
position: fixed; /* new */
bottom: 0; /* new */
left: 0;
width: 100%; /* new */
background-color: #ffffff;
}
.search {
padding: 5px 5px 0px;
margin-bottom: 5px;
width: 90%;
border-width: 0px 0px 2px 0px;
border-color: #444444;
}
label {
padding: 0px 15px 0px 5px;
}
label.disabled {
color: gray;
}
.autocomplete-suggestions {
border: 1px solid #999;
background: #FFF;
overflow: auto;
}
.autocomplete-suggestion {
padding: 2px 5px;
white-space: nowrap;
overflow: hidden;
}
.autocomplete-selected {
background: #F0F0F0;
}
.autocomplete-suggestions strong {
font-weight: normal;
color: #3399FF;
}
.autocomplete-group {
padding: 2px 5px;
}
.autocomplete-group strong {
display: block;
border-bottom: 1px solid #000;
}
.ap_list {
width: 30%;
background-color: #eeeeee;
margin: 10px;
padding: 10px;
float: left;
}
.container {
margin : auto;
width: auto;
}
.btn-selected {
background-color: #0093D1;
color: white;
} | static/css/sentinelle.css | body {
font-family: Century Gothic;
font-size: 12px;
background-color: #fafafa;
}
.panel {
position: fixed;
background-color: transparent;
right: -15.625em; /*left or right and the width of your navigation panel*/
width: 15.625em; /*should match the above value*/
}
hr {
margin: 10px 10px;
}
/*1. Top Nav bar */
.navbar-fixed-top {
background-color: #0093D1;
}
.navbar-default .navbar-nav > li > a, #logo > a, a:focus {
text-decoration: none;
color: #000000;
}
.navbar-default .navbar-nav > li > a:hover {
color: #ffffff;
}
.nav_selected {
background-color: white;
}
.nav_selected a:hover {
color: #0093D1 !important;
}
.navicon-line {
width: 24px;
height: 4px;
border-radius: 1px;
margin-bottom: 3px;
background-color: #aaaaaa;
}
/*3. site content*/
#sb-site {
position: relative;
margin-top: 50px;
}
.sb-site-content {
width: 80%;
position: relative;
margin-left: auto;
margin-right: auto;
}
.btn, .btn-sm {
margin-top: 10px;
padding: 2px 5px 2px;
font-size: 100%;
}
h3 {
margin-top: 10px;
padding: 10px 10px 10px 10px;
border-top: 1px solid #0093D1;
}
div .left {
margin-right: 50px;
}
/*3.1 site common sections */
.sb-site-content a, .sb-site-content a:hover, .sb-site-content a:visited {
color: #0093D1;
}
/*3.B site common articles */
.sb-site-content article {
margin: 10px auto 25px auto;
background-color: #ffffff;
box-shadow: 0px 0px 2px #0093D1;
padding: 10px;
width: 100%;
}
/* table */
th {
text-transform: uppercase;
align: center;
}
.oid_row {
vertical-align: top;
}
.oid_column_button {
width: 10px !important;
padding: 0 !important;
}
.oid_tree_button {
padding: 0 !important;
border-width: 0 !important;
}
.oid_tree_data {
padding-bottom: 0 !important;
padding-top: 5px !important;
padding-right: 0 !important;
}
.oid_syntax {
text-decoration: underline;
color: #0093D1;
padding: 0;
margin-top: 0;
border-width: 0;
}
/* detail bar at the bottom of tha page */
#entry_detail {
min-height: 0;
list-style: none;
margin: 0;
padding: 0 10px 10px 10px;
border: 1px solid #ccc;
border-width: 1px 0;
position: fixed; /* new */
bottom: 0; /* new */
left: 0;
width: 100%; /* new */
background-color: #ffffff;
}
.search {
padding: 5px 5px 0px;
margin-bottom: 5px;
width: 90%;
border-width: 0px 0px 2px 0px;
border-color: #444444;
}
label {
padding: 0px 15px 0px 5px;
}
label.disabled {
color: gray;
}
.autocomplete-suggestions {
border: 1px solid #999;
background: #FFF;
overflow: auto;
}
.autocomplete-suggestion {
padding: 2px 5px;
white-space: nowrap;
overflow: hidden;
}
.autocomplete-selected {
background: #F0F0F0;
}
.autocomplete-suggestions strong {
font-weight: normal;
color: #3399FF;
}
.autocomplete-group {
padding: 2px 5px;
}
.autocomplete-group strong {
display: block;
border-bottom: 1px solid #000;
}
.ap_list {
width: 30%;
background-color: #eeeeee;
margin: 10px;
padding: 10px;
float: left;
}
.container {
margin : auto;
width: auto;
}
.btn-selected {
background-color: #0093D1;
color: white;
} | 0.4231 | 0.157428 |
@-moz-document domain('firstdirect.com')
{
body {
background-color: #FFF !important;
}
div#csContainerWrap {
background-color: #FFF !important;
}
.csColumns {
width: 100% !important;
}
div.csColumnsWrap {
width: 100% !important;
}
#csMain {
width: 100% !important;
}
div.fdMastheadLogo {
width: 100%;
min-height: 40px;
margin-bottom: 20px;
background-image: -webkit-linear-gradient(top,#3c3c3c 0,#222 100%);
background-image: linear-gradient(to bottom,#3c3c3c 0,#222 100%);
background-repeat: repeat-x;
}
.csV-3 div.fdCurveTop {
display: none !important;
}
.csV-3 div.fdCurveBottom {
display: none !important;
}
div.fdCurveContent {
margin: auto;
width: 1100px;
}
div.idvFullWidthWrapper {
width: auto !important;
margin-left: 0 !important;
}
/* Buttons */
a.csButton {
background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%) !important;
background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%) !important;
background-repeat: repeat-x !important;
text-shadow: 0 1px 0 #fff;
border: 1px solid #ccc !important;
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
display: inline-block !important;
font-weight: 400 !important;
text-align: center !important;
vertical-align: middle !important;
cursor: pointer !important;
text-decoration: none !important;
padding: 6px 12px !important;
margin: 5px 0 !important;
font-size: 14px !important;
border-radius: 4px !important;
}
.csV-3 .oh .csButtonWrap {
background-image: none !important;
}
/* Footer */
div.idvFooterContainer {
margin-left: 0 !important;
padding-bottom: 0 !important;
}
div.footerText {
width: auto !important;
}
div.footerText p {
margin: 0 !important;
}
/* Global Font */
.csV-3 p, .csV-3 cite, .csV-3 kbd, .csV-3 small, .csV-3 th, .csV-3 td, .csV-3 .csPipe,
.csV-3 ul li, .csV-3 ol li, .csV-3 .csButtonWrap button, .csV-3 .csButtonWrap .csButton,
.csV-3 .csButtonWrap input, .csV-3 .csButtons input {
font-size: 1.1em !important;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
color: #333 !important;
}
} | data/usercss/101936.user.css | @-moz-document domain('firstdirect.com')
{
body {
background-color: #FFF !important;
}
div#csContainerWrap {
background-color: #FFF !important;
}
.csColumns {
width: 100% !important;
}
div.csColumnsWrap {
width: 100% !important;
}
#csMain {
width: 100% !important;
}
div.fdMastheadLogo {
width: 100%;
min-height: 40px;
margin-bottom: 20px;
background-image: -webkit-linear-gradient(top,#3c3c3c 0,#222 100%);
background-image: linear-gradient(to bottom,#3c3c3c 0,#222 100%);
background-repeat: repeat-x;
}
.csV-3 div.fdCurveTop {
display: none !important;
}
.csV-3 div.fdCurveBottom {
display: none !important;
}
div.fdCurveContent {
margin: auto;
width: 1100px;
}
div.idvFullWidthWrapper {
width: auto !important;
margin-left: 0 !important;
}
/* Buttons */
a.csButton {
background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%) !important;
background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%) !important;
background-repeat: repeat-x !important;
text-shadow: 0 1px 0 #fff;
border: 1px solid #ccc !important;
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
display: inline-block !important;
font-weight: 400 !important;
text-align: center !important;
vertical-align: middle !important;
cursor: pointer !important;
text-decoration: none !important;
padding: 6px 12px !important;
margin: 5px 0 !important;
font-size: 14px !important;
border-radius: 4px !important;
}
.csV-3 .oh .csButtonWrap {
background-image: none !important;
}
/* Footer */
div.idvFooterContainer {
margin-left: 0 !important;
padding-bottom: 0 !important;
}
div.footerText {
width: auto !important;
}
div.footerText p {
margin: 0 !important;
}
/* Global Font */
.csV-3 p, .csV-3 cite, .csV-3 kbd, .csV-3 small, .csV-3 th, .csV-3 td, .csV-3 .csPipe,
.csV-3 ul li, .csV-3 ol li, .csV-3 .csButtonWrap button, .csV-3 .csButtonWrap .csButton,
.csV-3 .csButtonWrap input, .csV-3 .csButtons input {
font-size: 1.1em !important;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
color: #333 !important;
}
} | 0.227727 | 0.06354 |
body {
font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 15px;
}
h1, h2, h3, h4 {
font-family: 'PT Sans', Helvetica, 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
}
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
code, pre {
font-family: Inconsolata, Monaco, Courier, monospace;
font-size: 14px;
color: black;
border: none;
}
code {
padding: 0px;
}
.module-header {
float: left;
display: block;
font-size: 20px;
font-weight: bold;
margin: 4px 0 0 -16px;
}
.module-header:HOVER {
text-decoration: none;
cursor: pointer;
}
.module-header:HOVER .module-name {
color: rgb(242, 223, 183);
}
.module-name {
color: rgb(250, 250, 250);
margin-top: 6px;
vertical-align: top;
display: inline-block;
}
.module-label,
.module-version {
color: rgb(160, 160, 160);
margin: 6px 6px 0 6px;
vertical-align: top;
display: inline-block;
}
.module-logo {
display: inline-block;
background-image: url("ceylondoc-logo.png");
background-repeat: no-repeat;
height: 28px;
width: 28px;
margin-top: 3px;
margin-left: 3px;
}
.sub-navbar {
background-color: #EEE;
border-top: 1px solid rgb(190, 190, 190);
border-bottom: 1px solid rgb(190, 190, 190);
margin-bottom: 10px;
}
.sub-navbar-inner {
font-size: 20px;
font-weight: bold;
padding: 14px 6px 6px 20px;
}
.sub-navbar-label {
color: rgb(76,76,76);
padding-right: 6px;
}
.sub-navbar-package {
font-size: 16px;
}
.sub-navbar-menu {
margin-top: 1em;
text-align: center;
line-height: 15px;
position: relative;
top: -4px;
font-weight: bold;
}
.sub-navbar-menu a {
color: rgb(80, 80, 80);
padding: 0 20px;
}
.sub-navbar-menu .accesskey {
//color: #0088cc;
text-decoration: underline;
}
.section {
padding: 4px 0;
}
.section .title {
font-weight: bold;
}
.section .title:HOVER {
text-decoration: none;
}
.section .title .icon-expand,
.section .title .icon-collapse {
margin: 0px;
vertical-align: text-top;
}
.table-bordered th, .table-bordered td {
padding: 6px;
}
.table-header {
font-weight: bold;
background-color: #EEE;
color: #333;
cursor: pointer;
}
.table-header:HOVER {
background-color: rgb(232, 232, 232);
}
.doc a {
color: #005580;
}
.link, .link-custom-text,
.link code, .link-custom-text code {
color: #005580;
}
.link-one-self,
.link-source-code,
.link-collapsible {
float: right;
font-size: 0.8em;
padding-left: 10px;
}
.link-source-code:VISITED
.link-collapsible:VISITED {
color: #0088cc;
}
.link-unresolvable code {
color: red;
}
.link-dropdown {
position: relative;
}
.link-dropdown .caret {
position: absolute;
right: -8px;
bottom: 0px;
border-top: 5px solid #005580;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
display: none;
}
.link-dropdown:HOVER .caret {
display: inline-block;
}
.link-dropdown .dropdown-menu small {
color: #999999;
}
.module-description,
.class-description {
padding: 10px 0;
}
.module-description .link-source-code {
position: relative;
top: -8px;
}
.sub-navbar .link-source-code {
padding-top: 2px;
padding-right: 24px;
}
.parameter, .parameter-default-value, .signature {
//font-weight: bold;
}
.parameter-default-value {
color: rgb(120, 120, 120);
}
.identifier,
.identifier a.link,
.identifier a.link code {
color: rgb(0,51,153);
}
.type-identifier,
.type-identifier a.link,
.type-identifier a.link code {
color: rgb(153,0,102);
}
.sub-navbar-name .package-identifier a {
font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', Helvetica, sans-serif;
vertical-align: top;
}
.modifiers {
color: rgb(51,153,204);
}
.parameter {
//color: rgb(102,51,153);
}
.by, .license, .platform {
font-size: 14px;
}
.signature a {
color: rgb(153,0,102);
}
.void {
color: rgb(76,76,76);
}
.dynamic {
color: rgb(76,76,76);
}
.type-parameter {
font-style: italic;
padding-right: 2px;
padding-left: 1px;
color: grey;
}
.sub-navbar-inner .type-parameter-constraint,
.inheritance-satisfies,
.inheritance-extends,
.inheritance-of {
padding-left: 30px;
font-size: 16px;
padding-top: 3px;
}
.signature .type-parameter-constraint {
padding-left: 60px;
}
.type-parameter-keyword {
color: rgb(76,76,76);
}
.type-parameter-value a {
color: #005580;
font-style: normal;
}
.decl-label, a.decl-label {
//font-weight: bold;
color: #333;
}
.literal {
color: darkblue;
}
.keyword {
color: rgb(76,76,76);
//font-weight: bold;
}
.specifier,
.specifier-rest {
padding-left: 6px;
}
.specifier-rest {
display: none;
white-space: pre;
}
.specifier-ellipsis {
color: #0088cc;
padding-left: 4px;
}
div .type-alias-specifier {
padding-left: 60px;
}
.inherited-members {
padding-left: 30px;
}
.type-tabs {
margin-bottom: 10px;
}
.type-tabs .nav-tabs {
margin-bottom: 4px;
}
.type-tabs [class^='icon-'] {
vertical-align: text-bottom;
}
.type-tabs li>a {
color: #333;
font-size: 14px;
padding-top: 2px;
padding-bottom: 2px;
}
.type-tabs .nav-tabs {
font-weight: bold;
}
.type-tabs .nav-tabs>.active>a {}
.type-tabs .nav-tabs a>.disabled,
.type-tabs .nav-tabs>.active>a>.disabled {
color: #aaa;
}
.type-tabs li>a.hint {
color: rgb(180,180,180);
cursor: pointer;
font-style: italic;
}
.hierarchy-level {
list-style-type: none;
}
.hierarchy-arrow-none {
display: inline-block;
min-width: 10px;
}
.hierarchy-arrow-right,
.hierarchy-arrow-down {
width: 0;
height: 0;
display: inline-block;
}
.hierarchy-arrow-right {
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid transparent;
border-left: 5px solid rgb(80, 80, 80);
}
.hierarchy-arrow-down {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid transparent;
border-top: 5px solid rgb(80, 80, 80);
}
.hierarchy-arrow-container {
cursor: pointer;
display: inline-block;
width: 16px;
}
td.shrink {
width: 1px;
white-space: nowrap;
}
td .description {
padding: 0 30px;
}
td .import-description {
padding: 0 6px;
}
.description-collapsed {
height: 26px;
overflow: hidden;
}
.row-collapsible {
cursor: pointer;
}
.description-decoration {
height: 4px;
margin: 0px;
padding: 0px;
text-align: center;
}
.tags.section {
padding: 0;
float: right;
clear: right;
}
.tag {
position: relative;
top: -4px;
margin-left: 4px;
}
.tag:HOVER {
background-color: rgb(120, 120, 120);
}
.tagOccurrenceCount {
font-size: small;
float: right;
position: relative;
top: 6px;
}
.tagSelected {
background-color: #468847;
}
.tagSelected:hover {
background-color: #356635;
}
.assertions ul {
margin-left: 20px;
}
.assertions li {
list-style-type: none;
}
.assertions p {
display: inline;
}
.assertions code {
font-size: 13px;
background-color: inherit;
border: none;
padding: 0;
margin: 0;
}
#info-dropdown-panel {
min-width: 600px;
padding: 16px;
}
#info-dropdown-panel .key {
float: left;
margin-right: 10px;
text-align: center;
min-width: 10px;
}
#info-search-shortcuts .key {
min-width: 30px;
}
#info-dropdown-panel .info {
position: relative;
top: -2px;
}
#filterDropdown {
display: none;
}
#filterDropdownPanel {
min-width: 260px;
}
#filterDropdownPanelInfo {
padding: 10px 8px 2px 8px;
}
#filterActions {
text-align: center;
}
#filterActions a {
cursor: pointer;
padding: 0 16px;
display: inline;
color: #08C;
font-size: 12px;
}
#filterDropdownPanelTags {
margin: 0 4px;
}
#filterDropdownPanelTags .tag {
padding: 1px 4px 2px;
line-height: 14px;
color: white;
display: inline-block;
vertical-align: sub;
top: 0;
}
#search {
padding: 40px 0 20px 0;
text-align: center;
}
#search input {
width: 200px;
}
.highlight {
background-color: #fcf8e3;
}
.doc.section {
margin-bottom: -10px; /* HACK for <p> padding-bottom 10px */
}
.class-description .doc {
margin-top: 10px;
}
td>p:FIRST-CHILD {
margin: 0; /* HACK for markdown first paragraph */
}
code {
color: #333; /* default bootstrap color is red */
border:none;
background-color:inherit;
}
[class^='icon-'] {
display: inline-block;
background-image: url("ceylondoc-icons.png") !important;
background-repeat: no-repeat;
height: 16px;
width: 16px;
vertical-align: baseline;
margin-right: 4px;
}
td [class^='icon-'] {
vertical-align: text-top;
}
.icon-none {
background-image: none;
}
.icon-local-member {
background-position: 0px 0px;
}
.icon-shared-member {
background-position: -16px 0px;
}
.icon-interface {
background-position: -32px 0px;
}
.icon-class {
background-position: -48px 0px;
}
.icon-object {
background-position: -64px 0px;
}
.icon-package {
background-position: -80px 0px;
}
.icon-decoration-local {
background-position: 4px 4px;
}
.icon-decoration-abstract {
background-position: -96px 0px;
}
.icon-decoration-final,
.icon-decoration-formal {
background-position: -112px 0px;
}
.icon-decoration-impl {
background-position: -128px 0px;
}
.icon-decoration-over {
background-position: -144px 0px;
}
.icon-decoration-deprecated {
background-position: -160px 0px;
}
.icon-search {
vertical-align: text-bottom;
background-position: -192px 0px;
}
.icon-filter {
vertical-align: text-bottom;
background-position: -224px 0px;
}
.icon-info {
vertical-align: text-bottom;
background-position: -256px 0px;
}
.icon-expand {
background-position: -272px 0px;
}
.icon-collapse {
background-position: -288px 0px;
}
.icon-indentation {
background-position: -304px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-source-code {
background-position: -320px 0px;
vertical-align: top;
margin-right: 1px;
}
.icon-link {
background-position: -336px 0px;
}
.icon-expand2 {
background-position: -352px 0px;
}
.icon-collapse2 {
background-position: -368px 0px;
}
.icon-decoration-expand {
background-position: -384px 0px;
width: 32px;
height: 4px;
}
.icon-decoration-collapse {
background-position: -416px 0px;
width: 32px;
height: 4px;
}
.icon-expand-all {
background-position: -448px 0px;
}
.icon-collapse-all {
background-position: -480px 0px;
}
.icon-type-alias {
background-position: -512px 0px;
}
.icon-module {
background-position: -528px 0px;
}
.icon-module-exported-decoration {
background-position: -544px -4px;
}
.icon-module-optional-decoration {
background-position: -560px -1px;
}
.icon-decoration-annotation {
background-position: -576px 0px;
}
.icon-decoration-variable {
background-position: -592px 0px;
}
.icon-assertion {
background-position: -608px 0px;
}
.icon-subtype-hierarchy {
background-position: -624px 0px;
}
.icon-supertype-hierarchy {
background-position: -640px 0px;
}
.icon-type-hierarchy {
background-position: -656px 0px;
}
.icon-indentation-arrow-up {
background-position: -672px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-indentation-arrow-right {
background-position: -688px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-subtype-hierarchy-disabled {
background-position: -704px 0px;
}
.icon-supertype-hierarchy-disabled {
background-position: -720px 0px;
}
.icon-type-hierarchy-disabled {
background-position: -736px 0px;
}
.icon-decoration-enumerated {
background-position: -752px 0px;
position: relative;
top: -3px;
left: -7px;
}
.icon-documentation {
background-position: -769px 0px;
}
a:HOVER .icon-expand-all,
a:FOCUS .icon-expand-all {
background-position: -464px 0px;
}
a:HOVER .icon-collapse-all,
a:FOCUS .icon-collapse-all {
background-position: -496px 0px;
}
a:HOVER .icon-search,
a:FOCUS .icon-search {
vertical-align: text-bottom;
background-position: -176px 0px;
}
a:HOVER .icon-filter,
a:FOCUS .icon-filter,
.dropdown.open .icon-filter {
vertical-align: text-bottom;
background-position: -208px 0px;
}
a:HOVER .icon-info,
a:FOCUS .icon-info,
.dropdown.open .icon-info {
vertical-align: text-bottom;
background-position: -240px 0px;
}
thead .icon-expand,
thead .icon-collapse {
float: right;
}
td .icon-source-code,
td .icon-link,
td .icon-expand2,
td .icon-collapse2 {
vertical-align: top;
margin-right: 1px;
margin-top: 3px;
}
.expand-all,
.collapse-all {
padding: 10px 5px 10px !important;
}
table.rainbow {
border-collapse: collapse;
} | api/resources/ceylondoc.css | body {
font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 15px;
}
h1, h2, h3, h4 {
font-family: 'PT Sans', Helvetica, 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
}
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
code, pre {
font-family: Inconsolata, Monaco, Courier, monospace;
font-size: 14px;
color: black;
border: none;
}
code {
padding: 0px;
}
.module-header {
float: left;
display: block;
font-size: 20px;
font-weight: bold;
margin: 4px 0 0 -16px;
}
.module-header:HOVER {
text-decoration: none;
cursor: pointer;
}
.module-header:HOVER .module-name {
color: rgb(242, 223, 183);
}
.module-name {
color: rgb(250, 250, 250);
margin-top: 6px;
vertical-align: top;
display: inline-block;
}
.module-label,
.module-version {
color: rgb(160, 160, 160);
margin: 6px 6px 0 6px;
vertical-align: top;
display: inline-block;
}
.module-logo {
display: inline-block;
background-image: url("ceylondoc-logo.png");
background-repeat: no-repeat;
height: 28px;
width: 28px;
margin-top: 3px;
margin-left: 3px;
}
.sub-navbar {
background-color: #EEE;
border-top: 1px solid rgb(190, 190, 190);
border-bottom: 1px solid rgb(190, 190, 190);
margin-bottom: 10px;
}
.sub-navbar-inner {
font-size: 20px;
font-weight: bold;
padding: 14px 6px 6px 20px;
}
.sub-navbar-label {
color: rgb(76,76,76);
padding-right: 6px;
}
.sub-navbar-package {
font-size: 16px;
}
.sub-navbar-menu {
margin-top: 1em;
text-align: center;
line-height: 15px;
position: relative;
top: -4px;
font-weight: bold;
}
.sub-navbar-menu a {
color: rgb(80, 80, 80);
padding: 0 20px;
}
.sub-navbar-menu .accesskey {
//color: #0088cc;
text-decoration: underline;
}
.section {
padding: 4px 0;
}
.section .title {
font-weight: bold;
}
.section .title:HOVER {
text-decoration: none;
}
.section .title .icon-expand,
.section .title .icon-collapse {
margin: 0px;
vertical-align: text-top;
}
.table-bordered th, .table-bordered td {
padding: 6px;
}
.table-header {
font-weight: bold;
background-color: #EEE;
color: #333;
cursor: pointer;
}
.table-header:HOVER {
background-color: rgb(232, 232, 232);
}
.doc a {
color: #005580;
}
.link, .link-custom-text,
.link code, .link-custom-text code {
color: #005580;
}
.link-one-self,
.link-source-code,
.link-collapsible {
float: right;
font-size: 0.8em;
padding-left: 10px;
}
.link-source-code:VISITED
.link-collapsible:VISITED {
color: #0088cc;
}
.link-unresolvable code {
color: red;
}
.link-dropdown {
position: relative;
}
.link-dropdown .caret {
position: absolute;
right: -8px;
bottom: 0px;
border-top: 5px solid #005580;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
display: none;
}
.link-dropdown:HOVER .caret {
display: inline-block;
}
.link-dropdown .dropdown-menu small {
color: #999999;
}
.module-description,
.class-description {
padding: 10px 0;
}
.module-description .link-source-code {
position: relative;
top: -8px;
}
.sub-navbar .link-source-code {
padding-top: 2px;
padding-right: 24px;
}
.parameter, .parameter-default-value, .signature {
//font-weight: bold;
}
.parameter-default-value {
color: rgb(120, 120, 120);
}
.identifier,
.identifier a.link,
.identifier a.link code {
color: rgb(0,51,153);
}
.type-identifier,
.type-identifier a.link,
.type-identifier a.link code {
color: rgb(153,0,102);
}
.sub-navbar-name .package-identifier a {
font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', Helvetica, sans-serif;
vertical-align: top;
}
.modifiers {
color: rgb(51,153,204);
}
.parameter {
//color: rgb(102,51,153);
}
.by, .license, .platform {
font-size: 14px;
}
.signature a {
color: rgb(153,0,102);
}
.void {
color: rgb(76,76,76);
}
.dynamic {
color: rgb(76,76,76);
}
.type-parameter {
font-style: italic;
padding-right: 2px;
padding-left: 1px;
color: grey;
}
.sub-navbar-inner .type-parameter-constraint,
.inheritance-satisfies,
.inheritance-extends,
.inheritance-of {
padding-left: 30px;
font-size: 16px;
padding-top: 3px;
}
.signature .type-parameter-constraint {
padding-left: 60px;
}
.type-parameter-keyword {
color: rgb(76,76,76);
}
.type-parameter-value a {
color: #005580;
font-style: normal;
}
.decl-label, a.decl-label {
//font-weight: bold;
color: #333;
}
.literal {
color: darkblue;
}
.keyword {
color: rgb(76,76,76);
//font-weight: bold;
}
.specifier,
.specifier-rest {
padding-left: 6px;
}
.specifier-rest {
display: none;
white-space: pre;
}
.specifier-ellipsis {
color: #0088cc;
padding-left: 4px;
}
div .type-alias-specifier {
padding-left: 60px;
}
.inherited-members {
padding-left: 30px;
}
.type-tabs {
margin-bottom: 10px;
}
.type-tabs .nav-tabs {
margin-bottom: 4px;
}
.type-tabs [class^='icon-'] {
vertical-align: text-bottom;
}
.type-tabs li>a {
color: #333;
font-size: 14px;
padding-top: 2px;
padding-bottom: 2px;
}
.type-tabs .nav-tabs {
font-weight: bold;
}
.type-tabs .nav-tabs>.active>a {}
.type-tabs .nav-tabs a>.disabled,
.type-tabs .nav-tabs>.active>a>.disabled {
color: #aaa;
}
.type-tabs li>a.hint {
color: rgb(180,180,180);
cursor: pointer;
font-style: italic;
}
.hierarchy-level {
list-style-type: none;
}
.hierarchy-arrow-none {
display: inline-block;
min-width: 10px;
}
.hierarchy-arrow-right,
.hierarchy-arrow-down {
width: 0;
height: 0;
display: inline-block;
}
.hierarchy-arrow-right {
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid transparent;
border-left: 5px solid rgb(80, 80, 80);
}
.hierarchy-arrow-down {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid transparent;
border-top: 5px solid rgb(80, 80, 80);
}
.hierarchy-arrow-container {
cursor: pointer;
display: inline-block;
width: 16px;
}
td.shrink {
width: 1px;
white-space: nowrap;
}
td .description {
padding: 0 30px;
}
td .import-description {
padding: 0 6px;
}
.description-collapsed {
height: 26px;
overflow: hidden;
}
.row-collapsible {
cursor: pointer;
}
.description-decoration {
height: 4px;
margin: 0px;
padding: 0px;
text-align: center;
}
.tags.section {
padding: 0;
float: right;
clear: right;
}
.tag {
position: relative;
top: -4px;
margin-left: 4px;
}
.tag:HOVER {
background-color: rgb(120, 120, 120);
}
.tagOccurrenceCount {
font-size: small;
float: right;
position: relative;
top: 6px;
}
.tagSelected {
background-color: #468847;
}
.tagSelected:hover {
background-color: #356635;
}
.assertions ul {
margin-left: 20px;
}
.assertions li {
list-style-type: none;
}
.assertions p {
display: inline;
}
.assertions code {
font-size: 13px;
background-color: inherit;
border: none;
padding: 0;
margin: 0;
}
#info-dropdown-panel {
min-width: 600px;
padding: 16px;
}
#info-dropdown-panel .key {
float: left;
margin-right: 10px;
text-align: center;
min-width: 10px;
}
#info-search-shortcuts .key {
min-width: 30px;
}
#info-dropdown-panel .info {
position: relative;
top: -2px;
}
#filterDropdown {
display: none;
}
#filterDropdownPanel {
min-width: 260px;
}
#filterDropdownPanelInfo {
padding: 10px 8px 2px 8px;
}
#filterActions {
text-align: center;
}
#filterActions a {
cursor: pointer;
padding: 0 16px;
display: inline;
color: #08C;
font-size: 12px;
}
#filterDropdownPanelTags {
margin: 0 4px;
}
#filterDropdownPanelTags .tag {
padding: 1px 4px 2px;
line-height: 14px;
color: white;
display: inline-block;
vertical-align: sub;
top: 0;
}
#search {
padding: 40px 0 20px 0;
text-align: center;
}
#search input {
width: 200px;
}
.highlight {
background-color: #fcf8e3;
}
.doc.section {
margin-bottom: -10px; /* HACK for <p> padding-bottom 10px */
}
.class-description .doc {
margin-top: 10px;
}
td>p:FIRST-CHILD {
margin: 0; /* HACK for markdown first paragraph */
}
code {
color: #333; /* default bootstrap color is red */
border:none;
background-color:inherit;
}
[class^='icon-'] {
display: inline-block;
background-image: url("ceylondoc-icons.png") !important;
background-repeat: no-repeat;
height: 16px;
width: 16px;
vertical-align: baseline;
margin-right: 4px;
}
td [class^='icon-'] {
vertical-align: text-top;
}
.icon-none {
background-image: none;
}
.icon-local-member {
background-position: 0px 0px;
}
.icon-shared-member {
background-position: -16px 0px;
}
.icon-interface {
background-position: -32px 0px;
}
.icon-class {
background-position: -48px 0px;
}
.icon-object {
background-position: -64px 0px;
}
.icon-package {
background-position: -80px 0px;
}
.icon-decoration-local {
background-position: 4px 4px;
}
.icon-decoration-abstract {
background-position: -96px 0px;
}
.icon-decoration-final,
.icon-decoration-formal {
background-position: -112px 0px;
}
.icon-decoration-impl {
background-position: -128px 0px;
}
.icon-decoration-over {
background-position: -144px 0px;
}
.icon-decoration-deprecated {
background-position: -160px 0px;
}
.icon-search {
vertical-align: text-bottom;
background-position: -192px 0px;
}
.icon-filter {
vertical-align: text-bottom;
background-position: -224px 0px;
}
.icon-info {
vertical-align: text-bottom;
background-position: -256px 0px;
}
.icon-expand {
background-position: -272px 0px;
}
.icon-collapse {
background-position: -288px 0px;
}
.icon-indentation {
background-position: -304px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-source-code {
background-position: -320px 0px;
vertical-align: top;
margin-right: 1px;
}
.icon-link {
background-position: -336px 0px;
}
.icon-expand2 {
background-position: -352px 0px;
}
.icon-collapse2 {
background-position: -368px 0px;
}
.icon-decoration-expand {
background-position: -384px 0px;
width: 32px;
height: 4px;
}
.icon-decoration-collapse {
background-position: -416px 0px;
width: 32px;
height: 4px;
}
.icon-expand-all {
background-position: -448px 0px;
}
.icon-collapse-all {
background-position: -480px 0px;
}
.icon-type-alias {
background-position: -512px 0px;
}
.icon-module {
background-position: -528px 0px;
}
.icon-module-exported-decoration {
background-position: -544px -4px;
}
.icon-module-optional-decoration {
background-position: -560px -1px;
}
.icon-decoration-annotation {
background-position: -576px 0px;
}
.icon-decoration-variable {
background-position: -592px 0px;
}
.icon-assertion {
background-position: -608px 0px;
}
.icon-subtype-hierarchy {
background-position: -624px 0px;
}
.icon-supertype-hierarchy {
background-position: -640px 0px;
}
.icon-type-hierarchy {
background-position: -656px 0px;
}
.icon-indentation-arrow-up {
background-position: -672px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-indentation-arrow-right {
background-position: -688px 0px;
position: relative;
top: -6px;
left: -2px;
}
.icon-subtype-hierarchy-disabled {
background-position: -704px 0px;
}
.icon-supertype-hierarchy-disabled {
background-position: -720px 0px;
}
.icon-type-hierarchy-disabled {
background-position: -736px 0px;
}
.icon-decoration-enumerated {
background-position: -752px 0px;
position: relative;
top: -3px;
left: -7px;
}
.icon-documentation {
background-position: -769px 0px;
}
a:HOVER .icon-expand-all,
a:FOCUS .icon-expand-all {
background-position: -464px 0px;
}
a:HOVER .icon-collapse-all,
a:FOCUS .icon-collapse-all {
background-position: -496px 0px;
}
a:HOVER .icon-search,
a:FOCUS .icon-search {
vertical-align: text-bottom;
background-position: -176px 0px;
}
a:HOVER .icon-filter,
a:FOCUS .icon-filter,
.dropdown.open .icon-filter {
vertical-align: text-bottom;
background-position: -208px 0px;
}
a:HOVER .icon-info,
a:FOCUS .icon-info,
.dropdown.open .icon-info {
vertical-align: text-bottom;
background-position: -240px 0px;
}
thead .icon-expand,
thead .icon-collapse {
float: right;
}
td .icon-source-code,
td .icon-link,
td .icon-expand2,
td .icon-collapse2 {
vertical-align: top;
margin-right: 1px;
margin-top: 3px;
}
.expand-all,
.collapse-all {
padding: 10px 5px 10px !important;
}
table.rainbow {
border-collapse: collapse;
} | 0.417509 | 0.09426 |
.container{
display:flex;
}
.topnav {
border: none;
background-color: #333333;
position: absolute;
width: 1280px;
height: 39px;
left: 0px;
top: 0px;
}
.topnav-1 {
border: none;
background-color: #1E1E1E;
position: absolute;
width: 1280px;
height:75px;
left: 0px;
top: 39px;
}
.topnav-2 {
border: none;
background-color: #111112;
position: absolute;
width: 1280px;
height: 39px;
left: 0px;
top: 114px;
}
.pic-1 {
position: absolute;
width: 271px;
height: 312px;
left: 0px;
top: 153px;
}
.pic-2 {
position: absolute;
width: 227px;
height: 171px;
left: 187px;
top: 153px;
}
.pic-3 {
position: absolute;
width: 173px;
height: 207px;
left: 437px;
top: 153px;
}
.pic-4 {
position: absolute;
width: 251px;
height: 164.88px;
left: 629px;
top: 175px;
}
.pic-5 {
position: absolute;
width: 119px;
height: 180px;
left: 889px;
top: 153px;
}
.pic-6 {
position: absolute;
width: 303px;
height: 380px;
left: 1024px;
top: 153px;
}
.pic-7 {
position: absolute;
width: 68px;
height: 101px;
left: 187px;
top: 360px;
}
.pic-8 {
position: absolute;
width: 91px;
height: 124px;
left: 260px;
top: 337px;
}
.pic-9 {
position: absolute;
width: 150px;
height: 268px;
left: 0px;
top: 468px;
}
.pic-10 {
position: absolute;
width: 200px;
height: 252px;
left: 151px;
top: 468px;
}
.pic-11 {
position: absolute;
width: 244px;
height: 368px;
left: 368px;
top: 374px;
}
.pic-12 {
position: absolute;
width: 247px;
height: 161.55px;
left: 629px;
top: 374px;
}
.pic-13 {
position: absolute;
width: 146px;
height: 195px;
left: 629px;
top: 540px;
}
.pic-14 {
position: absolute;
width: 237px;
height: 180px;
left: 782px;
top: 540px;
}
.pic-15 {
position: absolute;
width: 125px;
height: 192px;
left: 886px;
top: 344px;
}
.pic-16 {
position: absolute;
width: 180px;
height: 256px;
left: 1024px;
top: 540px;
}
.pic-t1 {
position: absolute;
width: 608px;
height: 797px;
top: 856px;
left: 37px;
}
.pic-t2 {
position: absolute;
width: 547px;
height: 798px;
left: 673.5px;
top: 856px;
}
.pic-t3 {
position: absolute;
width: 31px;
height: 797px;
Top:856px;
Left:1249px;
}
.pic-t4 {
position: absolute;
width: 303px;
height: 380px;
left: 36px;
top: 1841px;
}
.pic-t5 {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 2401px;
}
.text {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 790px;
}
.text-1 {
position: absolute;
width: 283px;
height: 36px;
left: 37px;
top: 1778px;
}
.pic-b1 {
position: absolute;
width: 303px;
height: 380px;
left: 36px;
top: 1841px;
}
.pic-b2 {
position: absolute;
width: 303px;
height: 380px;
left: 368px;
top: 1841px;
}
.pic-b3 {
position: absolute;
width: 303px;
height: 380px;
left: 703px;
top: 1841px;
}
.pic-b4 {
position: absolute;
width: 303px;
height: 380px;
left: 1036px;
top: 1841px;
}
.text-2 {
position: absolute;
width: 170px;
height: 56px;
left: 36px;
top: 2318px;
}
.pic-l1 {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 2401px;
}
.pic-l2 {
position: absolute;
width: 302px;
height: 519px;
left: 368px;
top: 2405px;
}
.pic-l3 {
position: absolute;
width: 302px;
height: 519px;
left: 704px;
top: 2408px;
}
.pic-l4 {
position: absolute;
width: 302px;
height: 519px;
left: 1035px;
top: 2405px;
} | style.css | .container{
display:flex;
}
.topnav {
border: none;
background-color: #333333;
position: absolute;
width: 1280px;
height: 39px;
left: 0px;
top: 0px;
}
.topnav-1 {
border: none;
background-color: #1E1E1E;
position: absolute;
width: 1280px;
height:75px;
left: 0px;
top: 39px;
}
.topnav-2 {
border: none;
background-color: #111112;
position: absolute;
width: 1280px;
height: 39px;
left: 0px;
top: 114px;
}
.pic-1 {
position: absolute;
width: 271px;
height: 312px;
left: 0px;
top: 153px;
}
.pic-2 {
position: absolute;
width: 227px;
height: 171px;
left: 187px;
top: 153px;
}
.pic-3 {
position: absolute;
width: 173px;
height: 207px;
left: 437px;
top: 153px;
}
.pic-4 {
position: absolute;
width: 251px;
height: 164.88px;
left: 629px;
top: 175px;
}
.pic-5 {
position: absolute;
width: 119px;
height: 180px;
left: 889px;
top: 153px;
}
.pic-6 {
position: absolute;
width: 303px;
height: 380px;
left: 1024px;
top: 153px;
}
.pic-7 {
position: absolute;
width: 68px;
height: 101px;
left: 187px;
top: 360px;
}
.pic-8 {
position: absolute;
width: 91px;
height: 124px;
left: 260px;
top: 337px;
}
.pic-9 {
position: absolute;
width: 150px;
height: 268px;
left: 0px;
top: 468px;
}
.pic-10 {
position: absolute;
width: 200px;
height: 252px;
left: 151px;
top: 468px;
}
.pic-11 {
position: absolute;
width: 244px;
height: 368px;
left: 368px;
top: 374px;
}
.pic-12 {
position: absolute;
width: 247px;
height: 161.55px;
left: 629px;
top: 374px;
}
.pic-13 {
position: absolute;
width: 146px;
height: 195px;
left: 629px;
top: 540px;
}
.pic-14 {
position: absolute;
width: 237px;
height: 180px;
left: 782px;
top: 540px;
}
.pic-15 {
position: absolute;
width: 125px;
height: 192px;
left: 886px;
top: 344px;
}
.pic-16 {
position: absolute;
width: 180px;
height: 256px;
left: 1024px;
top: 540px;
}
.pic-t1 {
position: absolute;
width: 608px;
height: 797px;
top: 856px;
left: 37px;
}
.pic-t2 {
position: absolute;
width: 547px;
height: 798px;
left: 673.5px;
top: 856px;
}
.pic-t3 {
position: absolute;
width: 31px;
height: 797px;
Top:856px;
Left:1249px;
}
.pic-t4 {
position: absolute;
width: 303px;
height: 380px;
left: 36px;
top: 1841px;
}
.pic-t5 {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 2401px;
}
.text {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 790px;
}
.text-1 {
position: absolute;
width: 283px;
height: 36px;
left: 37px;
top: 1778px;
}
.pic-b1 {
position: absolute;
width: 303px;
height: 380px;
left: 36px;
top: 1841px;
}
.pic-b2 {
position: absolute;
width: 303px;
height: 380px;
left: 368px;
top: 1841px;
}
.pic-b3 {
position: absolute;
width: 303px;
height: 380px;
left: 703px;
top: 1841px;
}
.pic-b4 {
position: absolute;
width: 303px;
height: 380px;
left: 1036px;
top: 1841px;
}
.text-2 {
position: absolute;
width: 170px;
height: 56px;
left: 36px;
top: 2318px;
}
.pic-l1 {
position: absolute;
width: 302px;
height: 519px;
left: 37px;
top: 2401px;
}
.pic-l2 {
position: absolute;
width: 302px;
height: 519px;
left: 368px;
top: 2405px;
}
.pic-l3 {
position: absolute;
width: 302px;
height: 519px;
left: 704px;
top: 2408px;
}
.pic-l4 {
position: absolute;
width: 302px;
height: 519px;
left: 1035px;
top: 2405px;
} | 0.45423 | 0.047713 |
@charset "UTF-8";
/**
* Swagger UI Theme Overrides
*/
.swagger-ui .opblock.opblock-post {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-post .opblock-summary-method {
background: #205493;
}
.swagger-ui .opblock.opblock-post .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-put {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-put .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-put .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-delete {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-delete .opblock-summary-method {
background: #112e51;
}
.swagger-ui .opblock.opblock-delete .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-get {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-get .opblock-summary-method {
background: #34495E;
}
.swagger-ui .opblock.opblock-get .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-patch {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-patch .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-patch .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-head {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-head .opblock-summary-method {
background: #5C6BC0;
}
.swagger-ui .opblock.opblock-head .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-options {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-options .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-options .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .topbar {
background-color: #1a1e4f;
}
.swagger-ui .topbar .topbar-wrapper {
background-image: url("./logo-pdok.svg");
padding: 45px;
background-repeat: no-repeat;
background-position: 0px 15px;
}
.swagger-ui .topbar .topbar-wrapper a {
display: none;
}
.swagger-ui .topbar .download-url-wrapper {
display: none;
}
.swagger-ui .info a {
font-size: 14px;
-webkit-transition: all .4s;
transition: all .4s;
font-family: Open Sans, sans-serif;
color: #34495E;
}
.swagger-ui .info a:hover {
color: #34495E;
}
.swagger-ui .btn.authorize {
line-height: 1;
display: inline;
color: #336E7B;
border-color: #336E7B;
}
.swagger-ui .btn.authorize svg {
fill: #336E7B;
} | swagger-ui/swagger-ui-pdok.css | @charset "UTF-8";
/**
* Swagger UI Theme Overrides
*/
.swagger-ui .opblock.opblock-post {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-post .opblock-summary-method {
background: #205493;
}
.swagger-ui .opblock.opblock-post .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-put {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-put .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-put .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-delete {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-delete .opblock-summary-method {
background: #112e51;
}
.swagger-ui .opblock.opblock-delete .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-get {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-get .opblock-summary-method {
background: #34495E;
}
.swagger-ui .opblock.opblock-get .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-patch {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-patch .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-patch .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-head {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-head .opblock-summary-method {
background: #5C6BC0;
}
.swagger-ui .opblock.opblock-head .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .opblock.opblock-options {
border-color: #DADFE1;
background: rgba(241, 241, 241, .1);
}
.swagger-ui .opblock.opblock-options .opblock-summary-method {
background: #0071bc;
}
.swagger-ui .opblock.opblock-options .opblock-summary {
border-color: #DADFE1;
}
.swagger-ui .topbar {
background-color: #1a1e4f;
}
.swagger-ui .topbar .topbar-wrapper {
background-image: url("./logo-pdok.svg");
padding: 45px;
background-repeat: no-repeat;
background-position: 0px 15px;
}
.swagger-ui .topbar .topbar-wrapper a {
display: none;
}
.swagger-ui .topbar .download-url-wrapper {
display: none;
}
.swagger-ui .info a {
font-size: 14px;
-webkit-transition: all .4s;
transition: all .4s;
font-family: Open Sans, sans-serif;
color: #34495E;
}
.swagger-ui .info a:hover {
color: #34495E;
}
.swagger-ui .btn.authorize {
line-height: 1;
display: inline;
color: #336E7B;
border-color: #336E7B;
}
.swagger-ui .btn.authorize svg {
fill: #336E7B;
} | 0.574037 | 0.07538 |
:root {
--primary-color: #0d698b;
--secondary-color: #f2f1e8;
--tertiary-color: #050533;
--quaternary-color: #E32234;
--font-one: 'Noto Serif', serif;
--font-two: 'Nunito Sans', sans-serif;
}
* {
margin: 0;
padding: 0;
max-width: 100%;
box-sizing: border-box;
color: var(--tertiary-color);
background-color: var(--secondary-color);
font-family: var(--font-one);
}
.primary {
color: var(--primary-color)
}
.secondary {
color: var(--secondary-color)
}
.top-nav *:not(.burger) {
background-color: var(--tertiary-color)!important;
}
.tert {
color: var(--tertiary-color)
}
.quad {
color: var(--quaternary-color)!important
}
.bkg-tert {
background-color: var(--tertiary-color);
}
.disc {
list-style: disc!important;
font-size: 1.3rem;
}
.disc>li {
margin-left: 75px;
}
.resume * {
margin-bottom: 15px;
line-height: 1.3;
}
.img-thumb {
background-color: var(--primary-color);
/* border:solid 1rem var(--quaternary-color); */
border-radius: 10% 15%;
}
#self-img {
border-radius: 50%;
max-height: 200px;
}
.name-header {
min-width: 100%;
}
.pt-13 {
padding-top: 11rem!important;
}
.pb-13 {
padding-bottom: 11rem!important;
}
.pointer {
cursor: pointer;
}
.modalBackdrop {
background: rgba(0, 0, 0, .75);
bottom: 0;
left: 0;
overflow: auto;
position: fixed;
right: 0;
top: 0;
z-index: 10000;
}
.modalContainer {
background-color: var(--tertiary-color);
border-radius: 5px;
max-width: 100%;
margin: 50px auto;
padding: 15px;
width: 960px;
}
.modalContainer * {
color: var(--quaternary-color);
background-color: var(--tertiary-color);
}
.navActive {
color: var(--secondary-color);
}
h2 {
font-style: italic;
font-weight: bold;
}
.is-fixed-bottom {
background-color: var(--secondary-color);
z-index: -1;
}
.is-fixed-bottom > div {
margin: 0 auto;
z-index: -1;
}
@media only screen and (max-width: 430px) {
.mobile-nav {
font-size: 1.6rem!important;
margin-left: .1rem!important;
}
} | src/index.css | :root {
--primary-color: #0d698b;
--secondary-color: #f2f1e8;
--tertiary-color: #050533;
--quaternary-color: #E32234;
--font-one: 'Noto Serif', serif;
--font-two: 'Nunito Sans', sans-serif;
}
* {
margin: 0;
padding: 0;
max-width: 100%;
box-sizing: border-box;
color: var(--tertiary-color);
background-color: var(--secondary-color);
font-family: var(--font-one);
}
.primary {
color: var(--primary-color)
}
.secondary {
color: var(--secondary-color)
}
.top-nav *:not(.burger) {
background-color: var(--tertiary-color)!important;
}
.tert {
color: var(--tertiary-color)
}
.quad {
color: var(--quaternary-color)!important
}
.bkg-tert {
background-color: var(--tertiary-color);
}
.disc {
list-style: disc!important;
font-size: 1.3rem;
}
.disc>li {
margin-left: 75px;
}
.resume * {
margin-bottom: 15px;
line-height: 1.3;
}
.img-thumb {
background-color: var(--primary-color);
/* border:solid 1rem var(--quaternary-color); */
border-radius: 10% 15%;
}
#self-img {
border-radius: 50%;
max-height: 200px;
}
.name-header {
min-width: 100%;
}
.pt-13 {
padding-top: 11rem!important;
}
.pb-13 {
padding-bottom: 11rem!important;
}
.pointer {
cursor: pointer;
}
.modalBackdrop {
background: rgba(0, 0, 0, .75);
bottom: 0;
left: 0;
overflow: auto;
position: fixed;
right: 0;
top: 0;
z-index: 10000;
}
.modalContainer {
background-color: var(--tertiary-color);
border-radius: 5px;
max-width: 100%;
margin: 50px auto;
padding: 15px;
width: 960px;
}
.modalContainer * {
color: var(--quaternary-color);
background-color: var(--tertiary-color);
}
.navActive {
color: var(--secondary-color);
}
h2 {
font-style: italic;
font-weight: bold;
}
.is-fixed-bottom {
background-color: var(--secondary-color);
z-index: -1;
}
.is-fixed-bottom > div {
margin: 0 auto;
z-index: -1;
}
@media only screen and (max-width: 430px) {
.mobile-nav {
font-size: 1.6rem!important;
margin-left: .1rem!important;
}
} | 0.532182 | 0.176743 |
background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
}
#efecto p{
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
width: 100%;
height: 100%;
}
#efecto:before{
content: '';
position: absolute;
width: 50px;
height: 50px;
bottom: 0px;
left: 0px;
}
#efecto:hover:before{
background: linear-gradient(45deg, white 45%, gray 50%, white);
transition: 0.7s;
}
#efecto-10{
background: gray;
height: 200px;
position: relative;
text-align: center;
margin-bottom: 40px;
}
#efecto-10 p{
width: 100%;
height: 100%;
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
}
#efecto-10:after{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 15px 15px;
border-color: transparent
transparent
transparent
transparent;
bottom: 0px;
right: 50%;
transition: 0.4s;
}
#efecto-10:hover::after{
bottom: -30px;
border-color: gray
transparent
transparent
transparent;
}
/* HACK: sombra abajo */
#efecto-20{
background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
}
#efecto-20:before{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
bottom: -20px;
background: radial-gradient(
rgba(0, 0, 0, 0.45) 0%,
rgba(0, 0, 0, 0) 80%);
transition: 1s;
opacity: 0;
}
#efecto-20:hover{
transition: 0.5s;
transform: translateY(-10px);
}
#efecto-20:hover:before{
transform: translateY(10px);
opacity: 1;
}
#efecto-20 p{
width: 100%;
height: 100%;
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
}
/* HACK: sombra arriba y abajo */
#efecto-30{
background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
box-shadow: 0px 0px 5px black;
}
#efecto-30:before{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
top: -20px;
background: radial-gradient(
ellipse at 50% 150%,
rgba(0, 0, 0, 0.55) 0%,
rgba(0, 0, 0, 0) 80%);
opacity: 0;
transition: 0.5s;
}
#efecto-30:after{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
bottom: -20px;
background: radial-gradient(
ellipse at 50% -50%,
rgba(0, 0, 0, 0.55) 0%,
rgba(0, 0, 0, 0) 80%);
opacity: 0;
transition: 0.3s;
}
#efecto-30:hover:before{
opacity: 1;
}
#efecto-30:hover:after{
opacity: 1;
}
#efecto-30 p{
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
} | css/efectos.css | background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
}
#efecto p{
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
width: 100%;
height: 100%;
}
#efecto:before{
content: '';
position: absolute;
width: 50px;
height: 50px;
bottom: 0px;
left: 0px;
}
#efecto:hover:before{
background: linear-gradient(45deg, white 45%, gray 50%, white);
transition: 0.7s;
}
#efecto-10{
background: gray;
height: 200px;
position: relative;
text-align: center;
margin-bottom: 40px;
}
#efecto-10 p{
width: 100%;
height: 100%;
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
}
#efecto-10:after{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 15px 15px;
border-color: transparent
transparent
transparent
transparent;
bottom: 0px;
right: 50%;
transition: 0.4s;
}
#efecto-10:hover::after{
bottom: -30px;
border-color: gray
transparent
transparent
transparent;
}
/* HACK: sombra abajo */
#efecto-20{
background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
}
#efecto-20:before{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
bottom: -20px;
background: radial-gradient(
rgba(0, 0, 0, 0.45) 0%,
rgba(0, 0, 0, 0) 80%);
transition: 1s;
opacity: 0;
}
#efecto-20:hover{
transition: 0.5s;
transform: translateY(-10px);
}
#efecto-20:hover:before{
transform: translateY(10px);
opacity: 1;
}
#efecto-20 p{
width: 100%;
height: 100%;
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
}
/* HACK: sombra arriba y abajo */
#efecto-30{
background: gray;
height: 200px;
text-align: center;
position: relative;
margin-bottom: 40px;
box-shadow: 0px 0px 5px black;
}
#efecto-30:before{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
top: -20px;
background: radial-gradient(
ellipse at 50% 150%,
rgba(0, 0, 0, 0.55) 0%,
rgba(0, 0, 0, 0) 80%);
opacity: 0;
transition: 0.5s;
}
#efecto-30:after{
content: '';
position: absolute;
width: 90%;
height: 20px;
left: 5%;
bottom: -20px;
background: radial-gradient(
ellipse at 50% -50%,
rgba(0, 0, 0, 0.55) 0%,
rgba(0, 0, 0, 0) 80%);
opacity: 0;
transition: 0.3s;
}
#efecto-30:hover:before{
opacity: 1;
}
#efecto-30:hover:after{
opacity: 1;
}
#efecto-30 p{
font-size: 1.6em;
font-family: 'Passion One', cursive;
position: relative;
top: 40px;
color: black;
} | 0.44071 | 0.07989 |
.modal {
position: absolute;
max-width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: auto;
z-index: 1001;
}
.overlay {
z-index: 1000;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: hsla(0, 0%, 0%, 0.8)
}
.area {
background-color: #fff;
text-align: right;
padding-top: 10px;
min-width: 80vw;
}
.area button {
background: none;
border: none;
margin-right: 10px;;
}
.area button:hover {
cursor: pointer;
}
.content {
text-align: left;
background-color: #fff;
display: grid;
grid-template-columns: 2fr 1fr;
padding-top: 65px;
padding-left: 120px;
padding-right: 120px;
padding-bottom: 75px;
}
.message {
max-width: 70%;
}
.message span {
color: var(--color)
}
.message h1 {
font-family: 'IBM Plex Mono', monospace;
font-weight: 600;
font-size: 3.125rem;
}
.message p {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
font-size: 1.125rem;
}
.profile {
display: flex;
flex-wrap: wrap;
align-items: stretch;
flex-direction: column;
align-content: center;
}
.avatar {
border-radius: 50%;
z-index: 1002;
border: 15px solid var(--color) !important;
}
.photo {
position: relative;
margin: 0 auto;
align-items: center;
display: flex;
justify-content: center;
}
.social a {
min-height: 40px;
display: block;
background-color: var(--color);
color: #fff;
text-align: center;
max-width: 216px;
font-family: 'IBM Plex Mono', monospace;
font-weight: 500;
font-size: 1.125rem;
margin-bottom: 10px;
display: flex;
justify-content: space-around;
align-items: center;
margin: 10px auto;
}
.social a:hover,
.me a:hover {
cursor: pointer;
background-color: var(--orange);
transition: background-color 0.3s ease;
}
.me a {
background-color: #000;
color: #fff;
min-height: 40px;
border-radius: 20px;
text-align: center;
max-width: 216px;
font-family: 'IBM Plex Mono',monospace;
font-weight: 500;
font-size: 1.125rem;
display: flex;
justify-content: space-around;
align-items: center;
margin: 10px auto 60px auto;
}
@media (max-width: 1080px) {
.content {
grid-template-columns: repeat(1, 1fr);
padding: 20px;
}
.modal {
transform: translate(-50%, -50%);
width: 90%;
}
.message {
max-width: 85%;
max-width: 85%;
margin: 0 auto;
margin-bottom: 60px;
}
} | styles/Modal.module.css | .modal {
position: absolute;
max-width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: auto;
z-index: 1001;
}
.overlay {
z-index: 1000;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: hsla(0, 0%, 0%, 0.8)
}
.area {
background-color: #fff;
text-align: right;
padding-top: 10px;
min-width: 80vw;
}
.area button {
background: none;
border: none;
margin-right: 10px;;
}
.area button:hover {
cursor: pointer;
}
.content {
text-align: left;
background-color: #fff;
display: grid;
grid-template-columns: 2fr 1fr;
padding-top: 65px;
padding-left: 120px;
padding-right: 120px;
padding-bottom: 75px;
}
.message {
max-width: 70%;
}
.message span {
color: var(--color)
}
.message h1 {
font-family: 'IBM Plex Mono', monospace;
font-weight: 600;
font-size: 3.125rem;
}
.message p {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: 400;
font-size: 1.125rem;
}
.profile {
display: flex;
flex-wrap: wrap;
align-items: stretch;
flex-direction: column;
align-content: center;
}
.avatar {
border-radius: 50%;
z-index: 1002;
border: 15px solid var(--color) !important;
}
.photo {
position: relative;
margin: 0 auto;
align-items: center;
display: flex;
justify-content: center;
}
.social a {
min-height: 40px;
display: block;
background-color: var(--color);
color: #fff;
text-align: center;
max-width: 216px;
font-family: 'IBM Plex Mono', monospace;
font-weight: 500;
font-size: 1.125rem;
margin-bottom: 10px;
display: flex;
justify-content: space-around;
align-items: center;
margin: 10px auto;
}
.social a:hover,
.me a:hover {
cursor: pointer;
background-color: var(--orange);
transition: background-color 0.3s ease;
}
.me a {
background-color: #000;
color: #fff;
min-height: 40px;
border-radius: 20px;
text-align: center;
max-width: 216px;
font-family: 'IBM Plex Mono',monospace;
font-weight: 500;
font-size: 1.125rem;
display: flex;
justify-content: space-around;
align-items: center;
margin: 10px auto 60px auto;
}
@media (max-width: 1080px) {
.content {
grid-template-columns: repeat(1, 1fr);
padding: 20px;
}
.modal {
transform: translate(-50%, -50%);
width: 90%;
}
.message {
max-width: 85%;
max-width: 85%;
margin: 0 auto;
margin-bottom: 60px;
}
} | 0.667148 | 0.090897 |
@-moz-document url-prefix("https://www.horsereality.com/user/") {
.header-cta {
visibility: hidden;
height: 0px;
}
.container.cta {
padding-top: 50px;
}
@media (min-width: 768px) {
.select_nav {
visibility: hidden !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/13263/Samarti") {
/* latin */
@font-face {
font-family: 'Cinzel Decorative';
font-style: normal;
font-weight: 400;
src: local('Cinzel Decorative Regular'), local('CinzelDecorative-Regular'), url(https://fonts.gstatic.com/s/cinzeldecorative/v7/daaCSScvJGqLYhG8nNt8KPPswUAPni7TTMw.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Lobster Two';
font-style: normal;
font-weight: 400;
src: local('Lobster Two'), local('LobsterTwo'), url(https://fonts.gstatic.com/s/lobstertwo/v11/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #a62121) brightness(100%) !important;
}
h2 {
font-family: Lobster Two !important;
font-size: 18px !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #715151 !important;
text-shadow: 0 0 5px #b0184633 !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #eeeaea !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #d5c8c8 !important;
border: 2px ridge #ffde5e !important;
color: #715151 !important;
text-shadow: 0 0 5px #b0184652 !important;
box-shadow: 0 0 8px -2px #00000052 inset !important;
font-family: Quicksand !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #b78092 !important;
color: #eeeaea !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, body p, a {
color: #715151 !important;
font-family: Quicksand !important;
}
#tab_profile2 > section > p:nth-child(n), #tab_profile2 > section > p:nth-child(n) a {
font-family: Roboto !important;
}
#tab_profile2 > section > p:nth-child(1) {
font-family: Roboto !important;
text-align: right !important;
}
tr {
color: black !important;
}
table tr td a:hover {
color: #d07886 !important;
}
table thead tr.top {
background-color: white !important; }
table {
border: none !important;
background: white;
}
.center {
background-color: white !important;
outline: 2px ridge #ffde5e !important;
outline-offset: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #ffde5e !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #cbbdb8e0 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #865e6d !important;
font-family: Quicksand !important;
font-weight: bold !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: none !important;
filter: drop-shadow(0 0 5px #000000ab) !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #9b8c8e !important;
border-top: 3px ridge #ffde5e !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #9b8c8e !important;
border: none !important;
}
.footer {
background-color: #6c6364 !important;
border: 2px ridge #ffde5e !important;
background-image: none !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar {
height: 175px !important;
width: 155px !important;
background-position: center !important;
background-size: 100% 89% !important;
border: none !important;
border-radius: 10% 10% 100% 100% !important;
box-shadow: none !important;
filter: drop-shadow(0 0 5px #000000a3) !important;
}
.bluebar_container {
border-bottom: 3px ridge #ffde5e !important;
border-top: 3px ridge #ffde5e !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat !important;
background-size: 200% !important;
background-color: hsla(12, 3%, 39%, .7) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #f0edef !important;
border-left: 2px ridge #ffde5e !important;
border-right: 2px ridge #ffde5e !important;
}
.leftnav {
background-color: #f0edef !important;
border: none !important;
border-radius: 0 !important;
border-right: 2px ridge #ffde5e !important;
box-shadow: none !important;
margin-left: 0px !important;
position: fixed !important;
width: 148px !important;
}
.leftnav > ul > li {
color: #d07886 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
font-size: 12px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #1c7378 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #715151 !important;
text-transform: capitalize !important;
font-size: 13px !important;
text-shadow: none !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #d07886 !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #cc464680 !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 11px !important;
font-family: Quicksand !important;
}
.minimap {
border: 3px ridge #ffde5e !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
background-color: #f0edef !important;
border: 2px ridge #ffde5e !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
.profile_account h2 {
border: 2px ridge #ffde5e !important;
border-bottom: 3px ridge #ffde5e !important;
border-top: 1px ridge #ffde5e !important;
border-radius: 10px !important;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1) !important;
color: #865e6d !important;
text-shadow: 0 0 5px #00000040;
font-family: Lobster Two !important;
font-size: 18px !important;
font-weight: 500 !important;
padding: 0 10px !important;
text-align: center !important;
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat center center !important;
background-size: 200% !important;
background-color: hsla(0, 11%, 92%, .7) !important;
background-blend-mode: overlay !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
.profile_menu {
background-color: #785f6382 !important;
border-bottom: 3px ridge #ffde5e !important;
border-top: 3px ridge #ffde5e !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: none !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 18px !important;
color: white !important;
text-shadow: 0 0 5px #000000bd !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #785f63 !important;
text-shadow: 0 0 5px white;
text-transform: lowercase !important;
border: none !important;
}
.profile_ranking span {
text-transform: uppercase !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 20px !important;
opacity: 0.9 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Cinzel Decorative !important;
font-size: 30px !important;
letter-spacing: 2px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 0px !important;
text-align: right !important;
margin-right: -20px !important;
line-height: 36px !important;
padding-top: 10px !important;
}
.profile_username::after {
content: "Antarctica";
margin-right: 0 !important;
margin-top: -30px !important;
letter-spacing: 4px !important;
text-transform: uppercase !important;
float: right !important;
text-shadow: 0 0 5px #000 !important;
font-weight: 100 !important;
color: #ffffffcf !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Roboto !important;
text-transform: uppercase;
letter-spacing: 1px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 11px !important;
opacity: 0 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #d07886 !important;
text-shadow: none !important;
font-family: Quicksand !important;
}
::selection {
background-color: #e3d4cf;
text-shadow: 0px 0px 2px #ff69bb94;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #715151 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #d5b332 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #ffde5e !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/7Agq1qf.jpg") !important;
background-size: 150% !important;
background-position: center !important;
}
p a:hover {
color: #d07886 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #d07886 !important;
}
table thead tr.sub {
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat center center !important;
background-size: 200% !important;
background-color: hsla(0, 8%, 80%, .7) !important;
background-blend-mode: overlay !important;
border: none!important;
color: #865e6d !important;
font-family: Lobster Two !important;
text-shadow: 0 0 5px #0000003d !important;
font-size: 18px !important;
font-weight: 100 !important;
outline: 2px ridge #ffde5e !important;
outline-offset: -2px !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #d07886 !important;
}
tr.even td {
background-color: #f2edee !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #ece3e4 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: #fff !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #6d4949 !important;
text-shadow: 0 0 5px white !important;
font-weight: bold !important;
}
.xpvalue {
background: #e4b3b6; /* fallback */
background: -moz-linear-gradient(top, #e4b3b6 0%, #cb738f 100%);
background: -webkit-linear-gradient(top, #e4b3b6 0%,#cb738f 100%);
background: linear-gradient(to bottom, #e4b3b6 0%,#cb738f 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #ffde5e !important;
}
.value {
padding-top: 2px !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #f0edef !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #1c3738 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/5099/rowannn") {
/** D0BBE2 hell, D0D0D0 silber, A088B5 dunkel (lilacs and light greys - my wifi is super slow rn so it isn't loading websites properly but it's generally those kinda colours XD) **/
/* latin-ext */
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
src: local('Parisienne'), local('Parisienne-Regular'), url(https://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpQyZwD9Ku.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
src: local('Parisienne'), local('Parisienne-Regular'), url(https://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpQyhwDw.woff2) format('woff2');
}
/* vietnamese */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
body p {
color: black !important;
font-family: Quicksand !important;
}
tr {
color: black !important;
font-family: Quicksand !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: black !important;
}
table tr td a:hover {
color: #715986 !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: white;
}
.center {
background-color: #e9e9e9 !important;
outline: 1.3px solid #D0BBE2 !important;
outline-offset: 1.3px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #d1bfbe !important;
border: 1.3px solid #D0BBE2 !important;
border-radius: 0 0 20px 20px !important;
border-top: none !important;
opacity: 0.95 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #d1bfbe !important;
}
.advertising {
background-color: #A088B5 !important;
border-top: 1.3px solid #D0BBE2 !important;
background-image: none !important;
filter: brightness(1) !important;
}
ins {
background-image: none !important;
}
.footer {
background-color: #877299 !important;
border: 1.3px solid #D0BBE2 !important;
background-image: none !important;
}
.footer.user .botleft img {
filter: none !important;
}
.footer h6 {
color: white !important;
}
.footer ul li a:active, .footer ul li a:visited, .footer ul li a:link {
color: white !important;
}
.footer ul li a:hover {
color: #D0BBE2 !important;
}
ins, .a_c_div {
background-color: #A088B5 !important;
border: none !important;
}
.avatar {
height: 142px !important;
width: 142px !important;
background-position: center !important;
background-size: 100% !important;
border: 1.3px solid #D0BBE2 !important;
border-radius: 100% !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
}
.bluebar_container {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: cover !important;
background-position: 0px -340px !important;
border-bottom: 1.3px solid #D0BBE2 !important;
border-top: 1.3px solid #D0BBE2 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background-blend-mode: normal !important;
}
.logo.user img {
filter: brightness(0) !important;
opacity: 0.75 !important;
}
ul li a:active, ul li a:link, ul li a:visited, .gamestats, .gamestats a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #573b60 !important;
font-family: Quicksand !important;
font-weight: bold !important;
text-shadow: none !important;
}
ul li a:active, ul li a:link, ul li a:visited {
font-size: 13px !important;
}
ul li a:hover, .gamestats a:hover {
color: #a27eae !important;
}
.container {
background-color: #e5e2e9 !important;
border-left: 3px ridge #D0BBE2 !important;
border-right: 3px ridge #D0BBE2 !important;
}
.footer h6 {
font-family: Quicksand !important;
}
.leftnav {
background-color: #e5e2e9 !important;
border-right: 1.3px solid #D0BBE2 !important;
border-radius: 0px !important;
border-bottom: none !important;
border-left: none !important;
box-shadow: none !important;
margin-left: 0px !important;
width: 148px !important;
position: absolute !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
text-transform: uppercase !important;
font-family: Quicksand !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #1c7378 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #1c3738 !important;
text-transform: capitalize !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #a27eae !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #7528bf99 !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 11px !important;
font-family: Quicksand !important;
}
.leftnav::after {
border-top-color: black !important;
}
.minimap {
border: 3px ridge #D0BBE2 !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
border: 1.3px solid #D0BBE2 !important;
border-radius: 25px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
div.profile_account {
background-color: #e5e2e9 !important;
}
.milestone_text h2 {
font-family: Parisienne !important;
font-size: 18px !important;
font-weight: bold !important;
color: #573b60 !important;
}
.profile_account h2 {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: cover !important;
background-color: hsla(0, 0%, 65%, .7) !important;
background-blend-mode: overlay !important;
border: 1.4px inset #D0BBE2 !important;
border-radius: 50px !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.05) !important;
color: #573b60 !important;
font-family: Parisienne !important;
font-size: 21px !important;
font-weight: bold !important;
padding: 0 10px !important;
text-align: center !important;
text-shadow: 0px 0px 5px grey;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.profile_menu {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: 100% !important;
background-position: center 151% !important;
border-bottom: 2px ridge #D0BBE2 !important;
border-top: 2px ridge #A088B5 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: none !important;
}
.profile_menu ul li {
color: #381a42 !important;
text-shadow: 0px 0px 5px grey !important;
font-size: 22px !important;
font-weight: bold !important;
font-family: Parisienne !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #e5d8e8 !important;
text-transform: none !important;
border: none !important;
}
.profile_ranking {
font-size: 12px !important;
color: #e5d8e8 !important;
margin-top: 20px !important;
opacity: 0.8 !important;
font-family: Quicksand !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_username h1 {
color: #e5d8e8 !important;
font-family: Parisienne !important;
font-size: 32px !important;
text-shadow: 0px 0px 8px black !important;
font-weight: bold !important;
padding-top: 0px !important;
}
.profile_username h2 {
color: #e5d8e8 !important;
font-family: Parisienne !important;
font-size: 17px !important;
text-shadow: 0px 0px 8px black !important;
text-transform: none !important;
padding-top: 0px !important;
margin: 5px 0 !important;
letter-spacing: 0 !important;
}
.subtitle {
color: #716375 !important;
}
::-webkit-scrollbar {
height: 12px !important;
width: 12px !important;
background: #463b65 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #a27eae !important;
border-radius: 3px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #D0BBE2 !important;
border-radius: 3px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://www.horsereality.com/images/profilebg_provence_lavender.jpg") !important;
background-position: center !important;
}
table tr td {
background-color: transparent !important;
}
p a:hover {
color: #a27eae !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #a27eae !important;
}
table thead tr.sub {
background-color: #2a4b4c !important;
border: 1.3px solid #7f6695 !important;
color: #f3f4ec !important;
}
tr.even td {
background-color: #edeaf0 !important;
border: none !important;
}
tr.odd td {
background-color: #e2dde3 !important;
border: none !important;
}
tr.sub td {
background-color: #A088B5 !important;
border-width: 2px !important;
background-image: none !important;
}
tr.top {
background-color: #fff !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #D0BBE2 !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:active {
text-transform: none !important;
}
table {
background-color: transparent !important;
}
button.button.yellow {
background-color: #e9dfdb !important;
border: 1px solid #8f7ba1 !important;
color: #573b60 !important;
text-shadow: 0 0 5px #9918b052 !important;
box-shadow: 0 0 5px #0000004d !important;
font-family: Quicksand !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #e4d2eb !important;
color: #573b60 !important;
text-shadow: 0px 0px 5px #0000004d !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #e5e2e9 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #1c3738 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/126/AlmostSane") {
/* latin-ext */
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
src: local('Clicker Script'), local('ClickerScript-Regular'), url(https://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq71rR0TukKQ.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
src: local('Clicker Script'), local('ClickerScript-Regular'), url(https://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq71rf0Ts.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
.profile_menu ul li:hover {
background-image: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
/* COLOR CODES
#7bf4bf green
#f99ab2 pink
#9a8dc5 purple
#395374 blue
#cf9a8a orange
#0e9da1 turquoise*/
h1 {
padding-top: 0px !important;
}
.avatar {
border: none !important;
background-size: contain !important;
background-repeat: no-repeat !important;
box-shadow: none !important;
width: 148px !important;
height: 148px !important;
filter: drop-shadow(0 0 5px #ffffff5e) !important;
}
.milestone_text h2 {
color: white;
}
.container {
background: #0d192d !important;
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
}
.center {
background-color: #083c54 !important;
outline: 3px ridge #d686e8 !important;
outline-offset: 0px !important;
}
.subtitle {
font-family: Clicker Script !important;
text-transform: capitalize !important;
color: white !important;
font-size: 22px !important;
text-shadow: 0px 0px 10px grey !important;
padding-top: 10px !important;
}
.leftnav {
padding-top: 20px !important;
background: #0d192d !important;
border: none !important;
box-shadow: none !important;
margin-left: 0 !important;
position: absolute !important;
width: 140px !important;
margin-top: -10px;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #ffffff4f !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 10px !important;
}
tr {
color: #ccdce8 !important;
}
.leftnav > ul > li {
margin-top: 0 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
line-height: 1.6 !important;
color: #ccdce8 !important;
}
.leftnav > ul > li > ul > li a:hover {
color: white !important;
text-shadow: 0px 0px 3px white !important;
}
.footer.user .botleft img {
filter: brightness(100%) !important;
}
.footer h6 {
color: #ccdce8 !important;
}
.advertising {
background: #0d192d !important;
border-top: 3px ridge #89f9cc !important;
background-image: none !important;
filter: brightness(100%) !important;
}
ins {
background-image: none !important;
background-color: #0d192d !important;
}
.minimap {
margin-top: 10px !important;
border-left: 1px ridge #ea52a5 !important;
border-top: 1px ridge #89f9cc !important;
border-right: 1px ridge #d686e8 !important;
border-bottom: 1px ridge #7ef6fc !important;
box-shadow: 0px 0px 10px grey !important;
margin-left: -3px;
border-radius: 1000px !important;
width: 140px !important;
height: 140px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/JGF7EBZ.jpg") !important;
background-size: cover !important;
background-color: #395374 !important;
}
.footer {
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
background-color: #0d192d !important;
border-top: none !important;
background-image: none !important;
}
p {
color: white !important;
font-size: 13.5px !important;
line-height: 1.4 !important;
}
/* PROFILE */
.profile_menu {
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #7ef6fc !important;
background-color: #0d192d !important;
box-shadow: 0px 0px 30px black !important;
background-image: none !important;
}
table tr td {
background-color: transparent !important;
}
.profile_menu ul li {
text-transform: none !important;
color: white !important;
font-size: 14px !important;
font-family: Roboto !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
color: white !important;
background-color: transparent !important;
font-family: Clicker Script !important;
font-size: 25px !important;
text-shadow: 0px 0px 10px white !important;
border: none !important;
}
.profile_ranking {
text-shadow: 0px 0px 10px white !important;
font-size: 26px !important;
margin-top: 220px !important;
opacity: 1 !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_account {
background: #0d192d !important;
color: #ccdce8 !important;
box-shadow: 0px 0px 10px -4px white !important;
border-left: 2px ridge #ea52a5 !important;
border-top: 2px ridge #89f9cc !important;
border-right: 2px ridge #d686e8 !important;
border-bottom: 2px ridge #7ef6fc !important;
border-radius: 10px !important;
}
.profile_account h2 {
font-family: Clicker Script !important;
font-size: 20px !important;
color: white !important;
text-align: center !important;
text-shadow: 0px 0px 10px grey !important;
background-image: none !important;
border: none !important;
box-shadow: none !important;
font-weight: 600 !important;
margin-top: 0 !important;
margin-left: 0 !important;
margin-bottom: 5px !important;
width: 200px !important;
text-transform: none !important;
padding: 0px !important;
}
.profile_username h1 {
font-family: Clicker Script !important;
font-size: 50px !important;
text-shadow: 0px 0px 20px white !important;
font-weight: bold !important;
}
.profile_username h2 {
opacity: 0.9 !important;
text-shadow: 0px 0px 5px grey !important;
font-family: Roboto !important;
font-size: 18px !important;
font-weight: normal !important;
text-transform: none !important;
color: white !important;
letter-spacing: 0 !important;
margin-top: 0px !important;
}
h2 {
padding-top: 0px !important;
}
.profile_username::after {
content: "Current Location: Your Nightmares" !important;
margin-left: -4px !important;
color: white !important;
opacity: 0.7 !important;
}
#user > div.container > div.container_12.center > div.profile_banner > div.profile_username > h2::after {
content: "Fortress of Solitude ⋨⅍⋩" !important;
visibility: visible !important;
margin-left: -263px !important;
}
#user > div.container > div.container_12.center > div.profile_banner > div.profile_username > h2 {
visibility: hidden !important;
}
/* BLUEBAR */
.bluebar_container {
border-left: none !important;
border-top: 3px ridge #89f9cc !important;
border-right: none !important;
border-bottom: 3px ridge #7ef6fc !important;
background: #0d192d !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border-left: 3px ridge #ea52a5 !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
box-shadow: 0px 0px 10px black !important;
border-radius: 0 0 15px 15px !important;
background: #183448 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #183448 !important;
}
ul li a:active, ul li a:link, ul li a:visited {
font-size: 13px !important;
}
/* TABLES */
table {
border: none !important;
}
table thead tr.sub {
border: none !important;
}
/* Scrollbar styles */
::-webkit-scrollbar {
width: 13px !important;
height: 13px !important;
background-color: black !important;
}
::-webkit-scrollbar-thumb {
background: #0d192d !important;
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #d686e8 !important;
border-right: 3px ridge #7ef6fc !important;
border-radius: 10px !important;
}
::-webkit-scrollbar-thumb:hover {
background: white !important;
box-shadow: 0px 0px 25px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #d686e8 !important;
border-right: 3px ridge #7ef6fc !important;
border-radius: 10px !important;
}
tr.top {
background-color: #0d192d !important;
}
tr.odd td {
background-color: #0d394d !important;
border: none !important;
}
tr.even td {
background-color: #194c63 !important;
border: none !important;
}
div section table {
background-color: #0d192d !important;
border-bottom: 3px ridge #7ef6fc !important;
}
td p a {
color: #ccdce8 !important;
}
td p a:hover {
color: #ffffff !important;
text-shadow: 0px 0px 3px white !important;
}
a {
color: #ccdce8 !important;
}
a:hover {
color: white !important;
text-shadow: 0px 0px 3px white !important;
}
ins {
background-color: #0d192d !important;
}
div.himage_tiny a img {
filter: drop-shadow(0px 0px 18px grey) !important;
}
tr.sub td {
background-color: #0d192d !important;
font-family: Clicker Script !important;
font-size: 22px !important;
text-shadow: 0px 0px 10px white !important;
background-image: none !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
button.button.yellow {
border-left: 2px ridge #ea52a5 !important;
border-top: 2px ridge #89f9cc !important;
border-right: 2px ridge #d686e8 !important;
border-bottom: 2px ridge #7ef6fc !important;
background-color: #0d192d !important;
color: #ffffffdb !important;
font-weight: 100 !important;
font-size: 11px !important;
}
button.button.yellow:hover {
box-shadow: 0 0 7px white !important;
text-shadow: 0 0 5px white !important;
}
.logo img {
filter: brightness(100%) drop-shadow(0 0 5px #ffffffa8) !important;
}
.gamestats {
color: #ccdce8 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #0d192d !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
box-shadow: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #fdfdfd !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/14835/mintea") {
/* vietnamese */
@font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8UcLLq7s.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8UMLLq7s.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: '<NAME>' ;
font-style: normal ;
font-weight: 400 ;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8XsLL.woff2) format('woff2') ;
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
body, p, a, h1, h2, h3, h4, .subtitle, .footer h6, .gamestats, .container_12 h1, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
font-family: Patrick Hand !important;
}
p, .profile_account table tr td, table tr td a:active, table tr td a:link, table tr td a:visited {
font-size: 15.4px !important;
color: #646464 !important;
}
table tr td a:hover, tr {
color: black !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
font-size: 15.4px !important;
color: white !important;
}
.gamestats {
font-size: 13px !important; }
table thead tr.top, div.tabtext.flex-container.wrap table, div section table {
background-color: #c7cccc !important;
}
/* Bluebar */
.bluebar_container {
background: #2f3e3b !important;
border-bottom: 3px ridge #e0f9aa !important;
border-top: 3px ridge #e0f9aa !important;
box-shadow: 0px 14px 20px -9px rgba(0, 0, 0, 0.36) !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #2f3e3b !important;
border: 3px ridge #e0f9aa !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #2f3e3b !important;
}
.advertising {
background-color: #2f3e3b !important;
border-top: 3px ridge #e0f9aa !important;
background-image: none !important;
filter: none !important;
}
ins {
background-image: none !important;
background-color: #2f3e3b !important;
}
.avatar {
border: 2px ridge #e0f9aa !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.60) !important;
width: 142px !important;
height: 142px !important;
}
.container {
background-color: #595f58 !important;
border: 3px ridge #e0f9aa !important;
}
.center {
outline: 3px ridge #e0f9aa !important;
outline-offset: 0px !important;
}
.leftnav {
background-color: #595f58 !important;
position: absolute !important;
border-right: 3px ridge #e0f9aa !important;
border-bottom: none !important;
border-radius: 0 !important;
box-shadow: none !important;
border-left: none !important;
margin-left: 0 !important;
width: 147px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #ffffff4f !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 9px !important;
}
.leftnav > ul > li {
color: #e0e0e0 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #e0e0e0 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #e0e0e0 !important;
text-transform: capitalize !important;
font-size: 14px !important;
font-weight: lighter !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #e0e0e0 !important;
text-transform: uppercase !important;
font-size: 14px !important;
}
ul li a:active, ul li a:link, ul li a:visited, .subtitle {
font-size: 17px !important;
}
.minimap {
border: 3px ridge #e0f9aa !important;
border-radius: 0% !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
height: 115px !important;
}
.minimap:hover {
filter: brightness(120%);
}
.profile_account {
background-color: #dfe5e4 !important;
border: 3px ridge #e0f9aa !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20) !important;
}
.profile_account h2 {
background: url(https://i.imgur.com/RD0xRve.png) no-repeat center !important;
background-size: cover !important;
border: 3px ridge #e0f9aa !important;
border-radius: 10px !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
color: #f9eae1 !important;
font-family: Patrick Hand !important;
font-size: 18px !important;
font-weight: 500 !important;
padding: 0 10px !important;
text-align: center !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.profile_menu {
background-color: #2f3e3b !important;
border-bottom: 3px ridge #e0f9aa !important;
border-top: 3px ridge #e0f9aa !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.60) !important;
text-transform: uppercase !important;
border-right: none;
background-image: none !important;
}
.profile_menu ul li {
color: white !important;
font-size: 14px !important;
font-family: Patrick Hand !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
text-transform: lowercase !important;
border: none !important;
}
.profile_ranking {
font-size: 12px !important;
margin-top: 20px !important;
opacity: 0.8 !important;
}
.profile_username h1 {
color: white !important;
font-family: <NAME> !important;
text-shadow: 0px 0px 8px black !important;
}
.profile_username h2 {
color: #f3f4ec !important;
font-family: <NAME> !important;
display: none;
text-shadow: 0px 0px 8px black !important;
}
.profile_username::after {
content: "<NAME>, Nowhere" !important;
color: #f3f4ec !important;
font-family: Patrick Hand !important;
font-size: 20px !important;
margin-top: -10px !important;
text-shadow: 0px 0px 8px black !important;
}
.subtitle {
color: white !important;
}
::-webkit-scrollbar {
height: 0px !important;
width: 10px !important;
}
::-webkit-scrollbar-thumb {
background: #1c3738 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #2a4b4c !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/3yKg8T0.jpg") !important;
background-position: center +50% !important;
}
div section table {
border-color: #e0f9aa !important;
border-left-width: 0 !important;
border-right-width: 0 !important;
border-style: ridge !important;
border-top-width: 0 !important;
}
div.container_12.center {
background-color: #c7cccc !important;
}
div.footer.user {
background-color: #1c3738 !important;
border: 2px ridge #e0f9aa !important;
border-top: none !important;
background-image: none !important;
}
div.profile_account {
border-style: ridge !important;
}
p a:hover {
color: black !important;
}
table thead tr.sub {
background-color: #2a4b4c !important;
outline: 3px ridge #e0f9aa !important;
outline-offset: -3px !important;
color: #f3f4ec !important;
border: none !important;
}
tr.even td {
background-color: #ebebeb !important;
border: none !important;
}
tr.odd td {
background-color: #f5f5f5 !important;
border: none !important;
}
.footer.user .botleft img, .logo.user img {
filter: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .subtitle,.footer h6, .gamestats, .gamestats a {
color: white !important;
}
ul li a:hover {
color: #c0d78f !important;
}
button.button.yellow {
background-color: #39473d !important;
border: 2px ridge #c0d78f !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20) !important;
color: white !important;
font-family: <NAME> !important;
font-weight: 100 !important;
}
button.button.yellow:hover {
background-color: #617467 !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
color: white !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
h2 {
color: #484848 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #595f58 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
box-shadow: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #fdfdfd !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/20072/Reysies") {
/* latin */
@font-face {
font-family: 'UnifrakturCook';
font-style: normal;
font-weight: 700;
src: local('UnifrakturCook'), local('UnifrakturCook-Bold'), url(https://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Xwy1oM.woff2) format('woff2');
}
/* latin-text */
@font-face {
font-family: 'Metamorphous';
font-style: normal;
font-weight: 400;
src: local('Metamorphous'), url(https://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y133ENSqstTs.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Metamorphous';
font-style: normal;
font-weight: 400;
src: local('Metamorphous'), url(https://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y133EOyqs.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .gamestats {
font-family: Metamorphous !important;
}
body p {
color: #726f61 !important;
font-family: Metamorphous !important;
}
tr {
color: #726f61 !important;
font-family: Metamorphous !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #726f61 !important;
font-family: Metamorphous !important;
}
table tr td a:hover {
color: #dcb912 !important;
font-family: Metamorphous !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: white;
}
table tr td {
background-color: transparent !important;
}
.center {
background-color: #e8e6df !important;
outline: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #726f61 !important;
border: 4px ridge #dcb912 !important;
border-radius: 0 0 5px 5px !important;
border-top: none !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #726f61 !important;
}
.advertising {
background-color: #726f61 !important;
border-top: 4px ridge #dcb912 !important;
background-image: none !important;
}
ins {
background-image: none !important;
}
.footer {
background-color: #726f61 !important;
border: 4px ridge #dcb912 !important;
background-image: none !important;
}
ins, .a_c_div {
background-color: #726f61 !important;
border: none !important;
}
.avatar {
height: 142px !important;
width: 142px !important;
background-repeat: no-repeat !important;
background-position: center !important;
border: none !important;
box-shadow: none !important;
border-radius: 0px !important;
}
.bluebar_container {
background: #726f61 !important;
border-bottom: 4px ridge #dcb912 !important;
border-top: 3px ridge #dcb912 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
}
.container {
background-color: #e8e6df !important;
border-left: 4px ridge #dcb912 !important;
border-right: 4px ridge #dcb912 !important;
}
.leftnav {
background-image: url(https://i.imgur.com/z1KDuvn.png) !important;
padding-bottom: 50px !important;
background-repeat: no-repeat !important;
background-size: contain !important;
border: none !important;
border-radius: 0 !important;
margin-left: 0px !important;
position: absolute !important;
width: 150px !important;
background-color: #e8e6df !important;
height: 760px !important;
box-shadow: none !important;
}
.leftnav > ul > li {
color: #162928 !important;
font-family: Metamorphous !important;
margin-top: 10px !important;
text-transform: uppercase !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #162928 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #726f61 !important;
text-transform: capitalize !important;
font-size: 12px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #dcb912 !important;
}
.leftnav::before {
content: "Profile layout © Samarti/Reysies" !important;
font-family: Metamorphous !important;
color: #0000008a !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 10px !important;
}
.minimap {
border: 3px ridge #dcb912 !important;
border-radius: 0% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 0px !important;
margin-top: 0 !important;
width: 140px !important;
height: 90px !important;
}
.profile_account {
background-color: #bdb8a0 !important;
border: 3px ridge #dcb912 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
table tr td {
line-height: 1.15;
}
.profile_account h2 {
background-image: none !important;
background-color: #979380 !important;
background-size: cover !important;
border: none !important;
border-bottom: 3px ridge #dcb912 !important;
width: 109% !important;
margin-left: -10px !important;
border-radius: 0px !important;
box-shadow: none !important;
color: #e8e6df !important;
font-family: UnifrakturCook !important;
font-size: 22px !important;
font-weight: 500 !important;
padding: 5px 0px !important;
margin-top: -10px !important;
text-align: center !important;
text-transform: none !important;
margin-bottom: 0 !important;
}
.profile_menu {
background-color: #726f61 !important;
border-bottom: 3px ridge #dcb912 !important;
border-top: 3px ridge #dcb912 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: uppercase !important;
background-image: none !important;
font-family: Metamorphous !important;
}
.profile_menu ul li {
color: #e8e6df !important;
text-transform: none !important;
font-size: 22px !important;
font-family: UnifrakturCook !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #dcb912 !important;
text-transform: none !important;
font-size: 22px !important;
font-family: UnifrakturCook !important;
border: none !important;
}
.profile_ranking {
font-size: 22px !important;
margin-top: 220px !important;
opacity: 1 !important;
font-family: Metamorphous !important;
color: #f7f5f1 !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_username h1 {
color: #e8e6df !important;
font-family: UnifrakturCook !important;
font-size: 50px !important;
text-shadow: 0px 0px 8px black !important;
padding-bottom: 5px !important;
}
h1 {
padding-top: 0 !important;
}
.profile_username h2 {
color: #e8e6df !important;
font-family: UnifrakturCook !important;
text-shadow: 0px 0px 8px black !important;
font-size: 17px !important;
display: none;
}
.profile_username::after {
content: "Erebor, Middle-earth";
color: #e8e6df !important;
font-family: UnifrakturCook !important;
text-shadow: 0px 0px 8px black !important;
font-size: 17px !important;
}
.subtitle {
color: #e8e6df !important;
font-family: Metamorphous !important;
text-shadow: 0 0 10px #0000008c !important;
}
::-webkit-scrollbar {
height: 12px !important;
width: 12px !important;
background: #979380 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #595949 !important;
border-radius: 0px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #979380 !important;
border-radius: 0px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://www.horsereality.com/images/wildlifepark_southamerica.jpg") !important;
}
p a:hover {
color: red !important;
font-family: Metamorphous !important;
}
p i a {
color: #2a4b4c !important;
font-family: Metamorphous !important;
}
p i a:hover {
color: red !important;
font-family: Metamorphous !important;
}
table thead tr.sub {
background-color: #979380 !important;
border: 3px ridge #dcb912 !important;
color: #f3f4ec !important;
font-family: UnifrakturCook !important;
font-size: 18px !important;
}
td p a {
color: #1c3738 !important;
font-family: Metamorphous !important;
}
td p a:hover {
color: red !important;
font-family: Metamorphous !important;
}
tr.even td {
background-color: #bdb8a0 !important;
}
tr.odd td {
background-color: #e8e6df !important;
}
tr.sub td {
background-color: #979380 !important;
border-width: 2px !important;
background-image: none !important;
}
tr.top {
background-color: #e8e6df !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #dcb912 !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:active {
text-transform: none !important;
}
.milestone_text h2 {
font-family: UnifrakturCook !important;
color: #65664e;
}
table {
background: transparent !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .footer h6, .gamestats, .gamestats a {
color: white !important;
font-family: Metamorphous !important;
}
ul li a:hover {
color: #162928 !important;
}
button.button.yellow {
background-color: #82845d !important;
border: 2px ridge #dcb912 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
color: #e8e6df !important;
font-family: Metamorphous !important;
}
button.button.yellow:hover {
background-color: #bdb8a0 !important;
color: #282828 !important;
}
.footer.user .botleft img, .logo.user img {
filter: none !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #979380 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #715151 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/5612/JadedOpal") {
/* latin-ext */
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
src: local('Playball'), local('Playball-Regular'), url(https://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcg8Knep_Kg.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
src: local('Playball'), local('Playball-Regular'), url(https://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcg8Eneo.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
src: local('Miniver'), url(https://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC37oIyg.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Trochut';
font-style: normal;
font-weight: 400;
src: local('Trochut'), url(https://fonts.gstatic.com/s/trochut/v7/CHyjV-fDDlP9bDIw1nOCfA.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #6a4d38 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #84d718) brightness(100%) !important;
}
h2 {
font-family: Miniver !important;
font-size: 16px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Roboto !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #84ca9f !important;
border: 1px dotted #ffb400 !important;
color: #ffea2f !important;
text-shadow: 0 0 5px #020400a3 !important;
box-shadow: 0 0 8px -2px #000000ad inset !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 12px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #ffd000 !important;
color: #8c5914 !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Roboto !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #eee7d1 !important;
outline: 1px solid #7eae40 !important;
outline-offset: 0px !important;
box-shadow: 3px 0 10px #00000029 inset;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #ffb400 !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #698966 !important;
margin-top: 41px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-size: 13px !important;
font-family: Roboto !important;
font-weight: normal !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: 1px ridge #ffb400 !important;
box-shadow: 0 0 5px #00000070 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #8a7142 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #ce9d61 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #514837 !important;
background-image: none !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar::before {
content: "";
position: absolute !important;
margin-top: -10px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/IW7Mz3q.png") !important;
background-size: 170px 170px !important;
background-repeat: no-repeat !important;
width: 170px !important;
height: 170px !important;
filter: drop-shadow(0 0 10px #000000ad);
}
.avatar {
height: 142px !important;
width: 142px !important;
border-radius: 100% !important;
border: none !important;
border-bottom: 3px ridge #a8bb87 !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container::before {
position: absolute !important;
content: "" !important;
background-image: url("https://i.imgur.com/QkvGYQm.png") !important;
width: 100% !important;
height: 18px !important;
background-size: 210px 220px !important;
background-repeat: repeat-x !important;
margin-left: 0 !important;
margin-top: 41px !important;
background-position: bottom !important;
filter: drop-shadow(0 0 5px #1b35069c) !important;
}
.bluebar_container {
border-bottom: 2px solid #e5c883 !important;
border-top: 2px solid #444573 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/ISsR9He.jpg) !important;
background-position: center top !important;
background-size: 100% !important;
background-color: hsla(59, 62%, 61%, .45) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #d5ccb3 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #d5ccb3 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #7d6c53 !important;
text-shadow: none !important;
}
}
.leftnav {
background-color: #d5ccb3 !important;
border: none !important;
border-left: none !important;
border-radius: 0 !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #7d6c53 !important;
text-transform: capitalize !important;
font-size: 15px !important;
text-shadow: none !important;
font-family: Trochut !important;
letter-spacing: 0px !important;
line-height: 0px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #ffd403 !important;
text-shadow: 0 0 5px #51330a !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #6a431f9c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Roboto !important;
text-transform: uppercase !important;
}
.minimap {
border: 2px ridge #91711a !important;
margin-bottom: 10px !important;
border-radius: 2% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 5px !important;
margin-top: 10% !important;
width: 120px !important;
height: 100px !important;
z-index: 1000 !important;
}
.minimap:hover {
filter: brightness(120%);
}
.profile_account {
background-color: #e3d8bfde !important;
border: 1px dotted #8d9b6c !important;
border-radius: 2px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
margin-bottom: 35px !important;
}
.profile_account h2 {
border: none !important;
border-radius: 20px !important;
box-shadow: none !important;
color: #755f34 !important;
text-shadow: 0 0 5px #00000040;
font-family: Miniver !important;
font-size: 18px !important;
font-weight: normal !important;
padding: 0px 10px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: #8d936200 !important;
background-blend-mode: normal !important;
margin-top: 0px !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
font-family: Miniver !important;
font-size: 16px !important;
}
.profile_menu {
border-bottom: 2px ridge #dfb448 !important;
border-top: 2px ridge #dfb448 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: url(https://i.imgur.com/5cU7ykV.jpg) !important;
background-size: cover !important;
background-position: top !important;
background-color: hsla(31, 20%, 17%, .69) !important;
background-blend-mode: overlay !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 19px !important;
color: #f2d89c !important;
font-family: Trochut !important;
text-shadow: 0 0 5px #000000bd !important;
text-transform: none !important;
margin-top: -2px !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
font-family: Miniver !important;
color: #fbb514 !important;
text-shadow: 0 0 5px #000 !important;
text-transform: capitalize !important;
border: none !important;
margin-top: 1px !important;
border-bottom: none !important;
border-radius: 0 !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 230px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Playball !important;
font-size: 45px !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 24px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Trochut !important;
text-transform: none !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 17px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #91711a !important;
text-shadow: 0 0 10px #a57c2a75 !important;
font-family: Miniver !important;
font-weight: normal !important;
text-transform: none !important;
font-size: 20px !important;
padding-top: 5px !important;
}
::selection {
background-color: #ffe586;
text-shadow: 0px 0px 2px #9b791794;
color: #8c4a14 !important;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #573020 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #5a6f38 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #7d9b4d !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/lsW219m.jpg") !important;
background-size: cover !important;
background-repeat: repeat !important;
background-position: -800px center !important;
background-color: hsla(31, 12%, 23%, .42) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8aaa53 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8aaa53 !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #d5ccb3 !important;
border: none !important;
outline: 1px dotted #8d9b6c !important;
outline-offset: -1px !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #db7700 !important;
text-shadow: none !important;
}
tr.even td {
background-color: #f2ead2 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #f2eeda !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #f4efe3 !important;
text-shadow: none !important;
font-weight: normal !important;
font-family: Miniver !important;
font-size: 15px !important;
}
#bbmenu > ul > li > a {
font-weight: normal !important;
text-shadow: none !important;
font-family: Miniver !important;
font-size: 18px !important;
margin-top: 2px !important;
}
.xpvalue {
background: #a8bb87; /* fallback */
background: -moz-linear-gradient(top, #b7cc93 0%, #779543 100%);
background: -webkit-linear-gradient(top, #b7cc93 0%,#779543 100%);
background: linear-gradient(to bottom, #b7cc93 0%,#779543 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #ffb80f !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Roboto !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
}
@-moz-document url("https://www.horsereality.com/user/34587/Ponies69") {
/* latin */
@font-face {
font-family: 'Fredericka the Great';
font-style: normal;
font-weight: 400;
src: local('Fredericka the Great'), local('FrederickatheGreat'), url(https://fonts.gstatic.com/s/frederickathegreat/v9/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--Sjxbc.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #6a4d38 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #8d95c7) brightness(100%) !important;
}
h2 {
font-family: Fredericka the Great !important;
font-size: 14px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Georgia !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #5b3d3d !important;
border: 1px dotted #f4efe3 !important;
color: #f4efe3 !important;
text-shadow: 0 0 5px #8d9bad !important;
box-shadow: 0 0 8px -2px #00000052 inset !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #f4efe3 !important;
color: #8d9bad !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Georgia !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #e6e4e2 !important;
outline: 1px dotted #8d9bad !important;
outline-offset: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #f4efe3 !important;
border-radius: 0 0 2px 2px !important;
border-top: none !important;
background-color: #4a2b23e0 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-family: Georgia !important;
font-weight: bold !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: none !important;
filter: drop-shadow(0 0 5px #000000ab) !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #514137 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #514137 !important;
background-image: none !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar {
height: 148px !important;
width: 148px !important;
border: none !important;
border-bottom: 3px ridge #94b4de !important;
border-radius: 2% !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container {
border-bottom: 2px solid #f4efe3 !important;
border-top: 2px solid #f4efe3 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/SyWgCyN.jpg) !important;
background-position: 0px 900px !important;
background-size: cover !important;
background-color: hsla(114, 0%, 0%, .5) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #eeece8 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.leftnav {
background-color: #eeece8 !important;
border: none !important;
border-radius: 0 !important;
border-right: none !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li {
color: #d07886 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
font-size: 12px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #715151 !important;
text-transform: capitalize !important;
font-size: 13px !important;
text-shadow: none !important;
font-family: Times New Roman !important;
letter-spacing: 1px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #8d9bad !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #6a431f9c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Roboto !important;
text-transform: uppercase !important;
}
.minimap {
border: 2px ridge #a098dc !important;
border-radius: 2% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -2px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
background-color: #eeeae8 !important;
border: 1px dotted #66717f !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
}
.profile_account h2 {
border: none !important;
border-bottom: 3px ridge #f4efe3 !important;
border-top: 1px ridge #f4efe3 !important;
border-radius: 10px !important;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1) !important;
color: #86735f !important;
text-shadow: 0 0 5px #00000040;
font-family: Fredericka the Great !important;
font-size: 18px !important;
font-weight: bold !important;
padding: 0 10px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: rgba(200, 187, 180, .4) !important;
background-blend-mode: overlay !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
.profile_menu {
background-color: #514137 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: none !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 15px !important;
color: #f4efe3 !important;
font-family: Fredericka the Great !important;
text-shadow: 0 0 5px #000000bd !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #c7cfff !important;
text-shadow: 0 0 5px #000 !important;
text-transform: lowercase !important;
border: none !important;
border-bottom: 2px solid #8d95c7 !important;
border-radius: 0 !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 230px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Fredericka the Great !important;
font-size: 30px !important;
letter-spacing: 2px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 16px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Roboto !important;
text-transform: uppercase;
letter-spacing: 1px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 11px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #66717f !important;
text-shadow: none !important;
font-family: Fredericka the Great !important;
font-weight: bold !important;
margin-top: 0px !important;
}
::selection {
background-color: #e3d4cf;
text-shadow: 0px 0px 2px #ff69bb94;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #5d4a43 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #6d7c9c !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #8d9bad !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/HjPLCLq.jpg") !important;
background-size: cover !important;
background-position: top !important;
background-color: hsla(32, 22%, 87%, .27) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8d9bad !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8d9bad !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #cabfba !important;
border: none !important;
border-bottom: 1px dotted #485534 !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
outline: none !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #8d9bad !important;
}
tr.even td {
background-color: #eae7e1 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #f4f1ec !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #f4efe3 !important;
text-shadow: 0 0 5px #8d95c7 !important;
font-weight: bold !important;
}
#bbmenu > ul > li > a {
font-weight: bold !important;
text-shadow: 0 0 5px #6877d2 !important;
}
.xpvalue {
background: #8d95c7; /* fallback */
background: -moz-linear-gradient(top, #8d95c7 0%, #66717f 100%);
background: -webkit-linear-gradient(top, #8d95c7 0%,#66717f 100%);
background: linear-gradient(to bottom, #8d95c7 0%,#66717f 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #f4efe3 !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Georgia !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #eeece8 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #715151 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/8998/GabesMom") {
/* latin-ext */
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
src: local('Dynalight'), local('Dynalight-Regular'), url(https://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF44Q4FqPfE.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
src: local('Dynalight'), local('Dynalight-Regular'), url(https://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF44TYFq.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
src: local('Miniver'), url(https://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC37oIyg.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #ffffffd4 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #84d718) brightness(100%) !important;
}
h2 {
font-family: Miniver !important;
font-size: 16px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Roboto !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-family: Raleway !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #b75cb9 !important;
border: 1px dotted #e0f7c4 !important;
color: #eaece0 !important;
text-shadow: 0 0 5px #020400a3 !important;
box-shadow: 0 0 8px -2px #000000ad !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 12px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #f4a3e8 !important;
color: #570c68 !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Roboto !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #452451 !important;
outline: 1px solid #7eae40 !important;
outline-offset: 0px !important;
box-shadow: 3px 0 10px #00000029 inset;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #e5c883 !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #7b4f77 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-size: 13px !important;
font-family: Roboto !important;
font-weight: normal !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: 1px ridge #e5c883 !important;
box-shadow: 0 0 5px #00000070 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #473255 !important;
border-bottom: 2px outset #7b8859 !important;
border-top: 2px outset #a3b081 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #281a31 !important;
background-image: none !important;
border-bottom: 2px outset #7b8859 !important;
border-top: 2px outset #7b8859 !important;
border-left: 1px solid #7b8859 !important;
border-right: 1px solid #7b8859 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar::before {
content: "";
position: absolute !important;
margin-top: -20px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/6Cwhi73.png") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
width: 190px !important;
height: 190px !important;
filter: drop-shadow(0 0 10px #000000ad);
}
.avatar {
height: 142px !important;
width: 142px !important;
border-radius: 100% !important;
border: none !important;
border-bottom: 3px ridge #a8bb87 !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container {
border-bottom: 2px solid #e5c883 !important;
border-top: 2px solid #444573 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/FSZKaAJ.jpg) !important;
background-position: center -100px !important;
background-size: 100% !important;
background-color: hsla(268, 45%, 15%, .5) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #774f7b !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #774f7b !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #f4f4f4 !important;
text-shadow: none !important;
}
}
.leftnav {
background-color: #774f7b !important;
border: none !important;
border-left: none !important;
border-radius: 0 !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #d6ddd0 !important;
text-transform: capitalize !important;
font-size: 14px !important;
text-shadow: none !important;
font-family: Raleway !important;
letter-spacing: 0px !important;
line-height: 0px !important;
font-weight: bold !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #db9fd4 !important;
text-shadow: 0 0 5px #51330a !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #f6e5f99c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Raleway !important;
text-transform: none !important;
letter-spacing: 1px !important;
}
.minimap {
border: 2px ridge #8db35f !important;
margin-bottom: 10px !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 5px !important;
margin-top: 10% !important;
width: 120px !important;
height: 120px !important;
z-index: 1000 !important;
}
.minimap:hover {
filter: brightness(120%) !important;
}
.profile_account {
background-color: #613873 !important;
border: 2px ridge #e6f4b0 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
margin-bottom: 30px !important;
margin-top: 20px !important;
}
.profile_account::before {
content: "";
position: absolute !important;
margin-top: -25px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 250px !important;
height: 40px !important;
filter: invert(1) !important;
opacity: 0.5 !important;
transform: scaleY(-1) !important;
}
.profile_account::after {
content: "";
position: absolute !important;
margin-top: -15px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 250px !important;
height: 40px !important;
filter: invert(1) !important;
opacity: 0.4 !important;
transform: none !important;
}
.profile_right {
margin-top: 40px !important;
border: 2px ridge #e6f4b0 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
background-color: #613873 !important;
}
.profile_right::before {
content: "";
position: absolute !important;
margin-top: -30px !important;
margin-left: 140px !important;
margin-right: auto !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 400px !important;
height: 65px !important;
filter: invert(1) !important;
opacity: 0.7 !important;
transform: scaleY(-1) !important;
}
.profile_right::after {
content: "";
position: absolute !important;
margin-top: -35px !important;
margin-left: 140px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 400px !important;
height: 65px !important;
filter: invert(1) !important;
opacity: 0.7 !important;
transform: none !important;
}
.profile_account h2 {
border: none !important;
border-radius: 20px !important;
box-shadow: none !important;
color: #e1e1e1 !important;
text-shadow: 0 0 5px #00000040;
font-family: Miniver !important;
font-size: 18px !important;
font-weight: normal !important;
padding: 0px 10px !important;
padding-top: 5px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: #8d936200 !important;
background-blend-mode: normal !important;
margin-top: 0px !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
font-family: Miniver !important;
font-size: 16px !important;
}
.profile_menu {
border-bottom: 2px ridge #e6f4b0 !important;
border-top: 2px ridge #e6f4b0 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background: url(https://i.imgur.com/FSZKaAJ.jpg) !important;
background-position: center !important;
background-size: 100% !important;
background-color: hsla(268, 45%, 15%, .77) !important;
background-blend-mode: overlay !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 15px !important;
color: #f0c9db !important;
font-family: Raleway !important;
text-shadow: 0 0 5px #000000bd !important;
text-transform: none !important;
margin-top: 0px !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
font-family: Miniver !important;
font-size: 16px !important;
color: #ea8eba !important;
text-shadow: 0 0 5px #000 !important;
text-transform: capitalize !important;
border: none !important;
margin-top: 1px !important;
border-bottom: none !important;
border-radius: 0 !important;
}
#tab_profile2 > section > p:nth-child(1) {
text-align: center !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 25px !important;
font-family: Miniver !important;
margin-top: 225px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Dynalight !important;
font-style: normal !important;
font-size: 55px !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 24px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Raleway !important;
text-transform: none !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 15px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #e9cbee !important;
text-shadow: 0 0 10px #a57c2a75 !important;
font-family: Miniver !important;
font-weight: normal !important;
text-transform: none !important;
font-size: 20px !important;
padding-top: 5px !important;
margin-top: 0px !important;
}
::selection {
background-color: #ecd2f9;
text-shadow: 0px 0px 2px #9b791794;
color: #000 !important;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #2b133c !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #4e3c66 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #905b97 !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/wRVM34v.jpg") !important;
background-size: cover !important;
background-repeat: repeat !important;
background-position: -750px center !important;
background-color: hsla(338, 89%, 48%, .1) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8aaa53 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8aaa53 !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #613873 !important;
border: none !important;
outline: 1px dotted #8d9b6c !important;
outline-offset: -1px !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
}
table thead tr.top {
display: none !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #fff !important;
}
table tr td a:hover {
color: #f0c9db !important;
text-shadow: none !important;
}
#tab_horses2 > div > section > table > tbody > tr:nth-child(n) > td:nth-child(n) > p,
#tab_forum2 > div > section > table > tbody > tr:nth-child(n) > td:nth-child(n) > p
{
color: white !important;
}
tr.even td {
background-color: #5a3e64 !important;
border: none !important;
border-bottom: 1px dotted #d9d0d39c !important;
}
tr.odd td {
background-color: #654873 !important;
border: none !important;
border-bottom: 1px dotted #d9d0d39c !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #db9fd4 !important;
text-shadow: none !important;
font-weight: normal !important;
font-family: Raleway !important;
font-size: 14px !important;
}
#bbmenu > ul > li > a {
font-weight: normal !important;
text-shadow: none !important;
font-family: Miniver !important;
font-size: 18px !important;
margin-top: 2px !important;
}
.xpvalue {
background: #a8bb87; /* fallback */
background: -moz-linear-gradient(top, #b7cc93 0%, #779543 100%);
background: -webkit-linear-gradient(top, #b7cc93 0%,#779543 100%);
background: linear-gradient(to bottom, #b7cc93 0%,#779543 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #e5c883 !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Roboto !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
body, p, a, h2 {
color: #eae1ec !important;
}
} | data/usercss/171323.user.css | @-moz-document url-prefix("https://www.horsereality.com/user/") {
.header-cta {
visibility: hidden;
height: 0px;
}
.container.cta {
padding-top: 50px;
}
@media (min-width: 768px) {
.select_nav {
visibility: hidden !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/13263/Samarti") {
/* latin */
@font-face {
font-family: 'Cinzel Decorative';
font-style: normal;
font-weight: 400;
src: local('Cinzel Decorative Regular'), local('CinzelDecorative-Regular'), url(https://fonts.gstatic.com/s/cinzeldecorative/v7/daaCSScvJGqLYhG8nNt8KPPswUAPni7TTMw.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Lobster Two';
font-style: normal;
font-weight: 400;
src: local('Lobster Two'), local('LobsterTwo'), url(https://fonts.gstatic.com/s/lobstertwo/v11/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #a62121) brightness(100%) !important;
}
h2 {
font-family: Lobster Two !important;
font-size: 18px !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #715151 !important;
text-shadow: 0 0 5px #b0184633 !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #eeeaea !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #d5c8c8 !important;
border: 2px ridge #ffde5e !important;
color: #715151 !important;
text-shadow: 0 0 5px #b0184652 !important;
box-shadow: 0 0 8px -2px #00000052 inset !important;
font-family: Quicksand !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #b78092 !important;
color: #eeeaea !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, body p, a {
color: #715151 !important;
font-family: Quicksand !important;
}
#tab_profile2 > section > p:nth-child(n), #tab_profile2 > section > p:nth-child(n) a {
font-family: Roboto !important;
}
#tab_profile2 > section > p:nth-child(1) {
font-family: Roboto !important;
text-align: right !important;
}
tr {
color: black !important;
}
table tr td a:hover {
color: #d07886 !important;
}
table thead tr.top {
background-color: white !important; }
table {
border: none !important;
background: white;
}
.center {
background-color: white !important;
outline: 2px ridge #ffde5e !important;
outline-offset: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #ffde5e !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #cbbdb8e0 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #865e6d !important;
font-family: Quicksand !important;
font-weight: bold !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: none !important;
filter: drop-shadow(0 0 5px #000000ab) !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #9b8c8e !important;
border-top: 3px ridge #ffde5e !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #9b8c8e !important;
border: none !important;
}
.footer {
background-color: #6c6364 !important;
border: 2px ridge #ffde5e !important;
background-image: none !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar {
height: 175px !important;
width: 155px !important;
background-position: center !important;
background-size: 100% 89% !important;
border: none !important;
border-radius: 10% 10% 100% 100% !important;
box-shadow: none !important;
filter: drop-shadow(0 0 5px #000000a3) !important;
}
.bluebar_container {
border-bottom: 3px ridge #ffde5e !important;
border-top: 3px ridge #ffde5e !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat !important;
background-size: 200% !important;
background-color: hsla(12, 3%, 39%, .7) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #f0edef !important;
border-left: 2px ridge #ffde5e !important;
border-right: 2px ridge #ffde5e !important;
}
.leftnav {
background-color: #f0edef !important;
border: none !important;
border-radius: 0 !important;
border-right: 2px ridge #ffde5e !important;
box-shadow: none !important;
margin-left: 0px !important;
position: fixed !important;
width: 148px !important;
}
.leftnav > ul > li {
color: #d07886 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
font-size: 12px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #1c7378 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #715151 !important;
text-transform: capitalize !important;
font-size: 13px !important;
text-shadow: none !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #d07886 !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #cc464680 !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 11px !important;
font-family: Quicksand !important;
}
.minimap {
border: 3px ridge #ffde5e !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
background-color: #f0edef !important;
border: 2px ridge #ffde5e !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
.profile_account h2 {
border: 2px ridge #ffde5e !important;
border-bottom: 3px ridge #ffde5e !important;
border-top: 1px ridge #ffde5e !important;
border-radius: 10px !important;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1) !important;
color: #865e6d !important;
text-shadow: 0 0 5px #00000040;
font-family: Lobster Two !important;
font-size: 18px !important;
font-weight: 500 !important;
padding: 0 10px !important;
text-align: center !important;
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat center center !important;
background-size: 200% !important;
background-color: hsla(0, 11%, 92%, .7) !important;
background-blend-mode: overlay !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
.profile_menu {
background-color: #785f6382 !important;
border-bottom: 3px ridge #ffde5e !important;
border-top: 3px ridge #ffde5e !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: none !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 18px !important;
color: white !important;
text-shadow: 0 0 5px #000000bd !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #785f63 !important;
text-shadow: 0 0 5px white;
text-transform: lowercase !important;
border: none !important;
}
.profile_ranking span {
text-transform: uppercase !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 20px !important;
opacity: 0.9 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Cinzel Decorative !important;
font-size: 30px !important;
letter-spacing: 2px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 0px !important;
text-align: right !important;
margin-right: -20px !important;
line-height: 36px !important;
padding-top: 10px !important;
}
.profile_username::after {
content: "Antarctica";
margin-right: 0 !important;
margin-top: -30px !important;
letter-spacing: 4px !important;
text-transform: uppercase !important;
float: right !important;
text-shadow: 0 0 5px #000 !important;
font-weight: 100 !important;
color: #ffffffcf !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Roboto !important;
text-transform: uppercase;
letter-spacing: 1px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 11px !important;
opacity: 0 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #d07886 !important;
text-shadow: none !important;
font-family: Quicksand !important;
}
::selection {
background-color: #e3d4cf;
text-shadow: 0px 0px 2px #ff69bb94;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #715151 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #d5b332 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #ffde5e !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/7Agq1qf.jpg") !important;
background-size: 150% !important;
background-position: center !important;
}
p a:hover {
color: #d07886 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #d07886 !important;
}
table thead tr.sub {
background: url(https://i.imgur.com/kWhF5Jx.png) no-repeat center center !important;
background-size: 200% !important;
background-color: hsla(0, 8%, 80%, .7) !important;
background-blend-mode: overlay !important;
border: none!important;
color: #865e6d !important;
font-family: Lobster Two !important;
text-shadow: 0 0 5px #0000003d !important;
font-size: 18px !important;
font-weight: 100 !important;
outline: 2px ridge #ffde5e !important;
outline-offset: -2px !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #d07886 !important;
}
tr.even td {
background-color: #f2edee !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #ece3e4 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: #fff !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #6d4949 !important;
text-shadow: 0 0 5px white !important;
font-weight: bold !important;
}
.xpvalue {
background: #e4b3b6; /* fallback */
background: -moz-linear-gradient(top, #e4b3b6 0%, #cb738f 100%);
background: -webkit-linear-gradient(top, #e4b3b6 0%,#cb738f 100%);
background: linear-gradient(to bottom, #e4b3b6 0%,#cb738f 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #ffde5e !important;
}
.value {
padding-top: 2px !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #f0edef !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #1c3738 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/5099/rowannn") {
/** D0BBE2 hell, D0D0D0 silber, A088B5 dunkel (lilacs and light greys - my wifi is super slow rn so it isn't loading websites properly but it's generally those kinda colours XD) **/
/* latin-ext */
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
src: local('Parisienne'), local('Parisienne-Regular'), url(https://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpQyZwD9Ku.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
src: local('Parisienne'), local('Parisienne-Regular'), url(https://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpQyhwDw.woff2) format('woff2');
}
/* vietnamese */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
body p {
color: black !important;
font-family: Quicksand !important;
}
tr {
color: black !important;
font-family: Quicksand !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: black !important;
}
table tr td a:hover {
color: #715986 !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: white;
}
.center {
background-color: #e9e9e9 !important;
outline: 1.3px solid #D0BBE2 !important;
outline-offset: 1.3px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #d1bfbe !important;
border: 1.3px solid #D0BBE2 !important;
border-radius: 0 0 20px 20px !important;
border-top: none !important;
opacity: 0.95 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #d1bfbe !important;
}
.advertising {
background-color: #A088B5 !important;
border-top: 1.3px solid #D0BBE2 !important;
background-image: none !important;
filter: brightness(1) !important;
}
ins {
background-image: none !important;
}
.footer {
background-color: #877299 !important;
border: 1.3px solid #D0BBE2 !important;
background-image: none !important;
}
.footer.user .botleft img {
filter: none !important;
}
.footer h6 {
color: white !important;
}
.footer ul li a:active, .footer ul li a:visited, .footer ul li a:link {
color: white !important;
}
.footer ul li a:hover {
color: #D0BBE2 !important;
}
ins, .a_c_div {
background-color: #A088B5 !important;
border: none !important;
}
.avatar {
height: 142px !important;
width: 142px !important;
background-position: center !important;
background-size: 100% !important;
border: 1.3px solid #D0BBE2 !important;
border-radius: 100% !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
}
.bluebar_container {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: cover !important;
background-position: 0px -340px !important;
border-bottom: 1.3px solid #D0BBE2 !important;
border-top: 1.3px solid #D0BBE2 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background-blend-mode: normal !important;
}
.logo.user img {
filter: brightness(0) !important;
opacity: 0.75 !important;
}
ul li a:active, ul li a:link, ul li a:visited, .gamestats, .gamestats a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #573b60 !important;
font-family: Quicksand !important;
font-weight: bold !important;
text-shadow: none !important;
}
ul li a:active, ul li a:link, ul li a:visited {
font-size: 13px !important;
}
ul li a:hover, .gamestats a:hover {
color: #a27eae !important;
}
.container {
background-color: #e5e2e9 !important;
border-left: 3px ridge #D0BBE2 !important;
border-right: 3px ridge #D0BBE2 !important;
}
.footer h6 {
font-family: Quicksand !important;
}
.leftnav {
background-color: #e5e2e9 !important;
border-right: 1.3px solid #D0BBE2 !important;
border-radius: 0px !important;
border-bottom: none !important;
border-left: none !important;
box-shadow: none !important;
margin-left: 0px !important;
width: 148px !important;
position: absolute !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
text-transform: uppercase !important;
font-family: Quicksand !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #1c7378 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #1c3738 !important;
text-transform: capitalize !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #a27eae !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #7528bf99 !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 11px !important;
font-family: Quicksand !important;
}
.leftnav::after {
border-top-color: black !important;
}
.minimap {
border: 3px ridge #D0BBE2 !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
border: 1.3px solid #D0BBE2 !important;
border-radius: 25px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
div.profile_account {
background-color: #e5e2e9 !important;
}
.milestone_text h2 {
font-family: Parisienne !important;
font-size: 18px !important;
font-weight: bold !important;
color: #573b60 !important;
}
.profile_account h2 {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: cover !important;
background-color: hsla(0, 0%, 65%, .7) !important;
background-blend-mode: overlay !important;
border: 1.4px inset #D0BBE2 !important;
border-radius: 50px !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.05) !important;
color: #573b60 !important;
font-family: Parisienne !important;
font-size: 21px !important;
font-weight: bold !important;
padding: 0 10px !important;
text-align: center !important;
text-shadow: 0px 0px 5px grey;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.profile_menu {
background-image: url("https://i.imgur.com/hGv39w5.png") !important;
background-size: 100% !important;
background-position: center 151% !important;
border-bottom: 2px ridge #D0BBE2 !important;
border-top: 2px ridge #A088B5 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: none !important;
}
.profile_menu ul li {
color: #381a42 !important;
text-shadow: 0px 0px 5px grey !important;
font-size: 22px !important;
font-weight: bold !important;
font-family: Parisienne !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #e5d8e8 !important;
text-transform: none !important;
border: none !important;
}
.profile_ranking {
font-size: 12px !important;
color: #e5d8e8 !important;
margin-top: 20px !important;
opacity: 0.8 !important;
font-family: Quicksand !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_username h1 {
color: #e5d8e8 !important;
font-family: Parisienne !important;
font-size: 32px !important;
text-shadow: 0px 0px 8px black !important;
font-weight: bold !important;
padding-top: 0px !important;
}
.profile_username h2 {
color: #e5d8e8 !important;
font-family: Parisienne !important;
font-size: 17px !important;
text-shadow: 0px 0px 8px black !important;
text-transform: none !important;
padding-top: 0px !important;
margin: 5px 0 !important;
letter-spacing: 0 !important;
}
.subtitle {
color: #716375 !important;
}
::-webkit-scrollbar {
height: 12px !important;
width: 12px !important;
background: #463b65 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #a27eae !important;
border-radius: 3px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #D0BBE2 !important;
border-radius: 3px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://www.horsereality.com/images/profilebg_provence_lavender.jpg") !important;
background-position: center !important;
}
table tr td {
background-color: transparent !important;
}
p a:hover {
color: #a27eae !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #a27eae !important;
}
table thead tr.sub {
background-color: #2a4b4c !important;
border: 1.3px solid #7f6695 !important;
color: #f3f4ec !important;
}
tr.even td {
background-color: #edeaf0 !important;
border: none !important;
}
tr.odd td {
background-color: #e2dde3 !important;
border: none !important;
}
tr.sub td {
background-color: #A088B5 !important;
border-width: 2px !important;
background-image: none !important;
}
tr.top {
background-color: #fff !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #D0BBE2 !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:active {
text-transform: none !important;
}
table {
background-color: transparent !important;
}
button.button.yellow {
background-color: #e9dfdb !important;
border: 1px solid #8f7ba1 !important;
color: #573b60 !important;
text-shadow: 0 0 5px #9918b052 !important;
box-shadow: 0 0 5px #0000004d !important;
font-family: Quicksand !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #e4d2eb !important;
color: #573b60 !important;
text-shadow: 0px 0px 5px #0000004d !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #e5e2e9 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #1c3738 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/126/AlmostSane") {
/* latin-ext */
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
src: local('Clicker Script'), local('ClickerScript-Regular'), url(https://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq71rR0TukKQ.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
src: local('Clicker Script'), local('ClickerScript-Regular'), url(https://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq71rf0Ts.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
.profile_menu ul li:hover {
background-image: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
/* COLOR CODES
#7bf4bf green
#f99ab2 pink
#9a8dc5 purple
#395374 blue
#cf9a8a orange
#0e9da1 turquoise*/
h1 {
padding-top: 0px !important;
}
.avatar {
border: none !important;
background-size: contain !important;
background-repeat: no-repeat !important;
box-shadow: none !important;
width: 148px !important;
height: 148px !important;
filter: drop-shadow(0 0 5px #ffffff5e) !important;
}
.milestone_text h2 {
color: white;
}
.container {
background: #0d192d !important;
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
}
.center {
background-color: #083c54 !important;
outline: 3px ridge #d686e8 !important;
outline-offset: 0px !important;
}
.subtitle {
font-family: Clicker Script !important;
text-transform: capitalize !important;
color: white !important;
font-size: 22px !important;
text-shadow: 0px 0px 10px grey !important;
padding-top: 10px !important;
}
.leftnav {
padding-top: 20px !important;
background: #0d192d !important;
border: none !important;
box-shadow: none !important;
margin-left: 0 !important;
position: absolute !important;
width: 140px !important;
margin-top: -10px;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #ffffff4f !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 10px !important;
}
tr {
color: #ccdce8 !important;
}
.leftnav > ul > li {
margin-top: 0 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
line-height: 1.6 !important;
color: #ccdce8 !important;
}
.leftnav > ul > li > ul > li a:hover {
color: white !important;
text-shadow: 0px 0px 3px white !important;
}
.footer.user .botleft img {
filter: brightness(100%) !important;
}
.footer h6 {
color: #ccdce8 !important;
}
.advertising {
background: #0d192d !important;
border-top: 3px ridge #89f9cc !important;
background-image: none !important;
filter: brightness(100%) !important;
}
ins {
background-image: none !important;
background-color: #0d192d !important;
}
.minimap {
margin-top: 10px !important;
border-left: 1px ridge #ea52a5 !important;
border-top: 1px ridge #89f9cc !important;
border-right: 1px ridge #d686e8 !important;
border-bottom: 1px ridge #7ef6fc !important;
box-shadow: 0px 0px 10px grey !important;
margin-left: -3px;
border-radius: 1000px !important;
width: 140px !important;
height: 140px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/JGF7EBZ.jpg") !important;
background-size: cover !important;
background-color: #395374 !important;
}
.footer {
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
background-color: #0d192d !important;
border-top: none !important;
background-image: none !important;
}
p {
color: white !important;
font-size: 13.5px !important;
line-height: 1.4 !important;
}
/* PROFILE */
.profile_menu {
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #7ef6fc !important;
background-color: #0d192d !important;
box-shadow: 0px 0px 30px black !important;
background-image: none !important;
}
table tr td {
background-color: transparent !important;
}
.profile_menu ul li {
text-transform: none !important;
color: white !important;
font-size: 14px !important;
font-family: Roboto !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
color: white !important;
background-color: transparent !important;
font-family: Clicker Script !important;
font-size: 25px !important;
text-shadow: 0px 0px 10px white !important;
border: none !important;
}
.profile_ranking {
text-shadow: 0px 0px 10px white !important;
font-size: 26px !important;
margin-top: 220px !important;
opacity: 1 !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_account {
background: #0d192d !important;
color: #ccdce8 !important;
box-shadow: 0px 0px 10px -4px white !important;
border-left: 2px ridge #ea52a5 !important;
border-top: 2px ridge #89f9cc !important;
border-right: 2px ridge #d686e8 !important;
border-bottom: 2px ridge #7ef6fc !important;
border-radius: 10px !important;
}
.profile_account h2 {
font-family: Clicker Script !important;
font-size: 20px !important;
color: white !important;
text-align: center !important;
text-shadow: 0px 0px 10px grey !important;
background-image: none !important;
border: none !important;
box-shadow: none !important;
font-weight: 600 !important;
margin-top: 0 !important;
margin-left: 0 !important;
margin-bottom: 5px !important;
width: 200px !important;
text-transform: none !important;
padding: 0px !important;
}
.profile_username h1 {
font-family: Clicker Script !important;
font-size: 50px !important;
text-shadow: 0px 0px 20px white !important;
font-weight: bold !important;
}
.profile_username h2 {
opacity: 0.9 !important;
text-shadow: 0px 0px 5px grey !important;
font-family: Roboto !important;
font-size: 18px !important;
font-weight: normal !important;
text-transform: none !important;
color: white !important;
letter-spacing: 0 !important;
margin-top: 0px !important;
}
h2 {
padding-top: 0px !important;
}
.profile_username::after {
content: "Current Location: Your Nightmares" !important;
margin-left: -4px !important;
color: white !important;
opacity: 0.7 !important;
}
#user > div.container > div.container_12.center > div.profile_banner > div.profile_username > h2::after {
content: "Fortress of Solitude ⋨⅍⋩" !important;
visibility: visible !important;
margin-left: -263px !important;
}
#user > div.container > div.container_12.center > div.profile_banner > div.profile_username > h2 {
visibility: hidden !important;
}
/* BLUEBAR */
.bluebar_container {
border-left: none !important;
border-top: 3px ridge #89f9cc !important;
border-right: none !important;
border-bottom: 3px ridge #7ef6fc !important;
background: #0d192d !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border-left: 3px ridge #ea52a5 !important;
border-right: 3px ridge #d686e8 !important;
border-bottom: 3px ridge #7ef6fc !important;
box-shadow: 0px 0px 10px black !important;
border-radius: 0 0 15px 15px !important;
background: #183448 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #183448 !important;
}
ul li a:active, ul li a:link, ul li a:visited {
font-size: 13px !important;
}
/* TABLES */
table {
border: none !important;
}
table thead tr.sub {
border: none !important;
}
/* Scrollbar styles */
::-webkit-scrollbar {
width: 13px !important;
height: 13px !important;
background-color: black !important;
}
::-webkit-scrollbar-thumb {
background: #0d192d !important;
box-shadow: 0px 0px 25px -3px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #d686e8 !important;
border-right: 3px ridge #7ef6fc !important;
border-radius: 10px !important;
}
::-webkit-scrollbar-thumb:hover {
background: white !important;
box-shadow: 0px 0px 25px white !important;
border-left: 3px ridge #ea52a5 !important;
border-top: 3px ridge #89f9cc !important;
border-bottom: 3px ridge #d686e8 !important;
border-right: 3px ridge #7ef6fc !important;
border-radius: 10px !important;
}
tr.top {
background-color: #0d192d !important;
}
tr.odd td {
background-color: #0d394d !important;
border: none !important;
}
tr.even td {
background-color: #194c63 !important;
border: none !important;
}
div section table {
background-color: #0d192d !important;
border-bottom: 3px ridge #7ef6fc !important;
}
td p a {
color: #ccdce8 !important;
}
td p a:hover {
color: #ffffff !important;
text-shadow: 0px 0px 3px white !important;
}
a {
color: #ccdce8 !important;
}
a:hover {
color: white !important;
text-shadow: 0px 0px 3px white !important;
}
ins {
background-color: #0d192d !important;
}
div.himage_tiny a img {
filter: drop-shadow(0px 0px 18px grey) !important;
}
tr.sub td {
background-color: #0d192d !important;
font-family: Clicker Script !important;
font-size: 22px !important;
text-shadow: 0px 0px 10px white !important;
background-image: none !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
button.button.yellow {
border-left: 2px ridge #ea52a5 !important;
border-top: 2px ridge #89f9cc !important;
border-right: 2px ridge #d686e8 !important;
border-bottom: 2px ridge #7ef6fc !important;
background-color: #0d192d !important;
color: #ffffffdb !important;
font-weight: 100 !important;
font-size: 11px !important;
}
button.button.yellow:hover {
box-shadow: 0 0 7px white !important;
text-shadow: 0 0 5px white !important;
}
.logo img {
filter: brightness(100%) drop-shadow(0 0 5px #ffffffa8) !important;
}
.gamestats {
color: #ccdce8 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #0d192d !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
box-shadow: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #fdfdfd !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/14835/mintea") {
/* vietnamese */
@font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8UcLLq7s.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8UMLLq7s.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: '<NAME>' ;
font-style: normal ;
font-weight: 400 ;
src: local('<NAME>'), local('PatrickHand-Regular'), url(https://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYe8XsLL.woff2) format('woff2') ;
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
body, p, a, h1, h2, h3, h4, .subtitle, .footer h6, .gamestats, .container_12 h1, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
font-family: Patrick Hand !important;
}
p, .profile_account table tr td, table tr td a:active, table tr td a:link, table tr td a:visited {
font-size: 15.4px !important;
color: #646464 !important;
}
table tr td a:hover, tr {
color: black !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
font-size: 15.4px !important;
color: white !important;
}
.gamestats {
font-size: 13px !important; }
table thead tr.top, div.tabtext.flex-container.wrap table, div section table {
background-color: #c7cccc !important;
}
/* Bluebar */
.bluebar_container {
background: #2f3e3b !important;
border-bottom: 3px ridge #e0f9aa !important;
border-top: 3px ridge #e0f9aa !important;
box-shadow: 0px 14px 20px -9px rgba(0, 0, 0, 0.36) !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #2f3e3b !important;
border: 3px ridge #e0f9aa !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #2f3e3b !important;
}
.advertising {
background-color: #2f3e3b !important;
border-top: 3px ridge #e0f9aa !important;
background-image: none !important;
filter: none !important;
}
ins {
background-image: none !important;
background-color: #2f3e3b !important;
}
.avatar {
border: 2px ridge #e0f9aa !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.60) !important;
width: 142px !important;
height: 142px !important;
}
.container {
background-color: #595f58 !important;
border: 3px ridge #e0f9aa !important;
}
.center {
outline: 3px ridge #e0f9aa !important;
outline-offset: 0px !important;
}
.leftnav {
background-color: #595f58 !important;
position: absolute !important;
border-right: 3px ridge #e0f9aa !important;
border-bottom: none !important;
border-radius: 0 !important;
box-shadow: none !important;
border-left: none !important;
margin-left: 0 !important;
width: 147px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #ffffff4f !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 9px !important;
}
.leftnav > ul > li {
color: #e0e0e0 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #e0e0e0 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #e0e0e0 !important;
text-transform: capitalize !important;
font-size: 14px !important;
font-weight: lighter !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #e0e0e0 !important;
text-transform: uppercase !important;
font-size: 14px !important;
}
ul li a:active, ul li a:link, ul li a:visited, .subtitle {
font-size: 17px !important;
}
.minimap {
border: 3px ridge #e0f9aa !important;
border-radius: 0% !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
margin-left: -3px !important;
margin-top: 7% !important;
height: 115px !important;
}
.minimap:hover {
filter: brightness(120%);
}
.profile_account {
background-color: #dfe5e4 !important;
border: 3px ridge #e0f9aa !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20) !important;
}
.profile_account h2 {
background: url(https://i.imgur.com/RD0xRve.png) no-repeat center !important;
background-size: cover !important;
border: 3px ridge #e0f9aa !important;
border-radius: 10px !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
color: #f9eae1 !important;
font-family: Patrick Hand !important;
font-size: 18px !important;
font-weight: 500 !important;
padding: 0 10px !important;
text-align: center !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.profile_menu {
background-color: #2f3e3b !important;
border-bottom: 3px ridge #e0f9aa !important;
border-top: 3px ridge #e0f9aa !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.60) !important;
text-transform: uppercase !important;
border-right: none;
background-image: none !important;
}
.profile_menu ul li {
color: white !important;
font-size: 14px !important;
font-family: Patrick Hand !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
text-transform: lowercase !important;
border: none !important;
}
.profile_ranking {
font-size: 12px !important;
margin-top: 20px !important;
opacity: 0.8 !important;
}
.profile_username h1 {
color: white !important;
font-family: <NAME> !important;
text-shadow: 0px 0px 8px black !important;
}
.profile_username h2 {
color: #f3f4ec !important;
font-family: <NAME> !important;
display: none;
text-shadow: 0px 0px 8px black !important;
}
.profile_username::after {
content: "<NAME>, Nowhere" !important;
color: #f3f4ec !important;
font-family: Patrick Hand !important;
font-size: 20px !important;
margin-top: -10px !important;
text-shadow: 0px 0px 8px black !important;
}
.subtitle {
color: white !important;
}
::-webkit-scrollbar {
height: 0px !important;
width: 10px !important;
}
::-webkit-scrollbar-thumb {
background: #1c3738 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #2a4b4c !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/3yKg8T0.jpg") !important;
background-position: center +50% !important;
}
div section table {
border-color: #e0f9aa !important;
border-left-width: 0 !important;
border-right-width: 0 !important;
border-style: ridge !important;
border-top-width: 0 !important;
}
div.container_12.center {
background-color: #c7cccc !important;
}
div.footer.user {
background-color: #1c3738 !important;
border: 2px ridge #e0f9aa !important;
border-top: none !important;
background-image: none !important;
}
div.profile_account {
border-style: ridge !important;
}
p a:hover {
color: black !important;
}
table thead tr.sub {
background-color: #2a4b4c !important;
outline: 3px ridge #e0f9aa !important;
outline-offset: -3px !important;
color: #f3f4ec !important;
border: none !important;
}
tr.even td {
background-color: #ebebeb !important;
border: none !important;
}
tr.odd td {
background-color: #f5f5f5 !important;
border: none !important;
}
.footer.user .botleft img, .logo.user img {
filter: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .subtitle,.footer h6, .gamestats, .gamestats a {
color: white !important;
}
ul li a:hover {
color: #c0d78f !important;
}
button.button.yellow {
background-color: #39473d !important;
border: 2px ridge #c0d78f !important;
border-radius: 10px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20) !important;
color: white !important;
font-family: <NAME> !important;
font-weight: 100 !important;
}
button.button.yellow:hover {
background-color: #617467 !important;
box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.1) !important;
color: white !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
h2 {
color: #484848 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #595f58 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
box-shadow: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #fdfdfd !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/20072/Reysies") {
/* latin */
@font-face {
font-family: 'UnifrakturCook';
font-style: normal;
font-weight: 700;
src: local('UnifrakturCook'), local('UnifrakturCook-Bold'), url(https://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Xwy1oM.woff2) format('woff2');
}
/* latin-text */
@font-face {
font-family: 'Metamorphous';
font-style: normal;
font-weight: 400;
src: local('Metamorphous'), url(https://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y133ENSqstTs.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Metamorphous';
font-style: normal;
font-weight: 400;
src: local('Metamorphous'), url(https://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y133EOyqs.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .gamestats {
font-family: Metamorphous !important;
}
body p {
color: #726f61 !important;
font-family: Metamorphous !important;
}
tr {
color: #726f61 !important;
font-family: Metamorphous !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #726f61 !important;
font-family: Metamorphous !important;
}
table tr td a:hover {
color: #dcb912 !important;
font-family: Metamorphous !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: white;
}
table tr td {
background-color: transparent !important;
}
.center {
background-color: #e8e6df !important;
outline: none !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
background-color: #726f61 !important;
border: 4px ridge #dcb912 !important;
border-radius: 0 0 5px 5px !important;
border-top: none !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: #726f61 !important;
}
.advertising {
background-color: #726f61 !important;
border-top: 4px ridge #dcb912 !important;
background-image: none !important;
}
ins {
background-image: none !important;
}
.footer {
background-color: #726f61 !important;
border: 4px ridge #dcb912 !important;
background-image: none !important;
}
ins, .a_c_div {
background-color: #726f61 !important;
border: none !important;
}
.avatar {
height: 142px !important;
width: 142px !important;
background-repeat: no-repeat !important;
background-position: center !important;
border: none !important;
box-shadow: none !important;
border-radius: 0px !important;
}
.bluebar_container {
background: #726f61 !important;
border-bottom: 4px ridge #dcb912 !important;
border-top: 3px ridge #dcb912 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
}
.container {
background-color: #e8e6df !important;
border-left: 4px ridge #dcb912 !important;
border-right: 4px ridge #dcb912 !important;
}
.leftnav {
background-image: url(https://i.imgur.com/z1KDuvn.png) !important;
padding-bottom: 50px !important;
background-repeat: no-repeat !important;
background-size: contain !important;
border: none !important;
border-radius: 0 !important;
margin-left: 0px !important;
position: absolute !important;
width: 150px !important;
background-color: #e8e6df !important;
height: 760px !important;
box-shadow: none !important;
}
.leftnav > ul > li {
color: #162928 !important;
font-family: Metamorphous !important;
margin-top: 10px !important;
text-transform: uppercase !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li {
color: #162928 !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #726f61 !important;
text-transform: capitalize !important;
font-size: 12px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #dcb912 !important;
}
.leftnav::before {
content: "Profile layout © Samarti/Reysies" !important;
font-family: Metamorphous !important;
color: #0000008a !important;
text-align: center !important;
padding-left: 10px !important;
font-size: 10px !important;
}
.minimap {
border: 3px ridge #dcb912 !important;
border-radius: 0% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 0px !important;
margin-top: 0 !important;
width: 140px !important;
height: 90px !important;
}
.profile_account {
background-color: #bdb8a0 !important;
border: 3px ridge #dcb912 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
}
table tr td {
line-height: 1.15;
}
.profile_account h2 {
background-image: none !important;
background-color: #979380 !important;
background-size: cover !important;
border: none !important;
border-bottom: 3px ridge #dcb912 !important;
width: 109% !important;
margin-left: -10px !important;
border-radius: 0px !important;
box-shadow: none !important;
color: #e8e6df !important;
font-family: UnifrakturCook !important;
font-size: 22px !important;
font-weight: 500 !important;
padding: 5px 0px !important;
margin-top: -10px !important;
text-align: center !important;
text-transform: none !important;
margin-bottom: 0 !important;
}
.profile_menu {
background-color: #726f61 !important;
border-bottom: 3px ridge #dcb912 !important;
border-top: 3px ridge #dcb912 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: uppercase !important;
background-image: none !important;
font-family: Metamorphous !important;
}
.profile_menu ul li {
color: #e8e6df !important;
text-transform: none !important;
font-size: 22px !important;
font-family: UnifrakturCook !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #dcb912 !important;
text-transform: none !important;
font-size: 22px !important;
font-family: UnifrakturCook !important;
border: none !important;
}
.profile_ranking {
font-size: 22px !important;
margin-top: 220px !important;
opacity: 1 !important;
font-family: Metamorphous !important;
color: #f7f5f1 !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_username h1 {
color: #e8e6df !important;
font-family: UnifrakturCook !important;
font-size: 50px !important;
text-shadow: 0px 0px 8px black !important;
padding-bottom: 5px !important;
}
h1 {
padding-top: 0 !important;
}
.profile_username h2 {
color: #e8e6df !important;
font-family: UnifrakturCook !important;
text-shadow: 0px 0px 8px black !important;
font-size: 17px !important;
display: none;
}
.profile_username::after {
content: "Erebor, Middle-earth";
color: #e8e6df !important;
font-family: UnifrakturCook !important;
text-shadow: 0px 0px 8px black !important;
font-size: 17px !important;
}
.subtitle {
color: #e8e6df !important;
font-family: Metamorphous !important;
text-shadow: 0 0 10px #0000008c !important;
}
::-webkit-scrollbar {
height: 12px !important;
width: 12px !important;
background: #979380 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #595949 !important;
border-radius: 0px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #979380 !important;
border-radius: 0px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://www.horsereality.com/images/wildlifepark_southamerica.jpg") !important;
}
p a:hover {
color: red !important;
font-family: Metamorphous !important;
}
p i a {
color: #2a4b4c !important;
font-family: Metamorphous !important;
}
p i a:hover {
color: red !important;
font-family: Metamorphous !important;
}
table thead tr.sub {
background-color: #979380 !important;
border: 3px ridge #dcb912 !important;
color: #f3f4ec !important;
font-family: UnifrakturCook !important;
font-size: 18px !important;
}
td p a {
color: #1c3738 !important;
font-family: Metamorphous !important;
}
td p a:hover {
color: red !important;
font-family: Metamorphous !important;
}
tr.even td {
background-color: #bdb8a0 !important;
}
tr.odd td {
background-color: #e8e6df !important;
}
tr.sub td {
background-color: #979380 !important;
border-width: 2px !important;
background-image: none !important;
}
tr.top {
background-color: #e8e6df !important;
border-color: white !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #dcb912 !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:active {
text-transform: none !important;
}
.milestone_text h2 {
font-family: UnifrakturCook !important;
color: #65664e;
}
table {
background: transparent !important;
}
tr:hover {
border: none !important;
}
tr, table tr td {
border: none !important;
}
ul li a:active, ul li a:link, ul li a:visited, .footer h6, .gamestats, .gamestats a {
color: white !important;
font-family: Metamorphous !important;
}
ul li a:hover {
color: #162928 !important;
}
button.button.yellow {
background-color: #82845d !important;
border: 2px ridge #dcb912 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20) !important;
color: #e8e6df !important;
font-family: Metamorphous !important;
}
button.button.yellow:hover {
background-color: #bdb8a0 !important;
color: #282828 !important;
}
.footer.user .botleft img, .logo.user img {
filter: none !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #979380 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #715151 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/5612/JadedOpal") {
/* latin-ext */
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
src: local('Playball'), local('Playball-Regular'), url(https://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcg8Knep_Kg.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
src: local('Playball'), local('Playball-Regular'), url(https://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcg8Eneo.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
src: local('Miniver'), url(https://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC37oIyg.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Trochut';
font-style: normal;
font-weight: 400;
src: local('Trochut'), url(https://fonts.gstatic.com/s/trochut/v7/CHyjV-fDDlP9bDIw1nOCfA.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #6a4d38 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #84d718) brightness(100%) !important;
}
h2 {
font-family: Miniver !important;
font-size: 16px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Roboto !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #84ca9f !important;
border: 1px dotted #ffb400 !important;
color: #ffea2f !important;
text-shadow: 0 0 5px #020400a3 !important;
box-shadow: 0 0 8px -2px #000000ad inset !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 12px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #ffd000 !important;
color: #8c5914 !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Roboto !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #eee7d1 !important;
outline: 1px solid #7eae40 !important;
outline-offset: 0px !important;
box-shadow: 3px 0 10px #00000029 inset;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #ffb400 !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #698966 !important;
margin-top: 41px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-size: 13px !important;
font-family: Roboto !important;
font-weight: normal !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: 1px ridge #ffb400 !important;
box-shadow: 0 0 5px #00000070 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #8a7142 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #ce9d61 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #514837 !important;
background-image: none !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar::before {
content: "";
position: absolute !important;
margin-top: -10px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/IW7Mz3q.png") !important;
background-size: 170px 170px !important;
background-repeat: no-repeat !important;
width: 170px !important;
height: 170px !important;
filter: drop-shadow(0 0 10px #000000ad);
}
.avatar {
height: 142px !important;
width: 142px !important;
border-radius: 100% !important;
border: none !important;
border-bottom: 3px ridge #a8bb87 !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container::before {
position: absolute !important;
content: "" !important;
background-image: url("https://i.imgur.com/QkvGYQm.png") !important;
width: 100% !important;
height: 18px !important;
background-size: 210px 220px !important;
background-repeat: repeat-x !important;
margin-left: 0 !important;
margin-top: 41px !important;
background-position: bottom !important;
filter: drop-shadow(0 0 5px #1b35069c) !important;
}
.bluebar_container {
border-bottom: 2px solid #e5c883 !important;
border-top: 2px solid #444573 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/ISsR9He.jpg) !important;
background-position: center top !important;
background-size: 100% !important;
background-color: hsla(59, 62%, 61%, .45) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #d5ccb3 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #d5ccb3 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #7d6c53 !important;
text-shadow: none !important;
}
}
.leftnav {
background-color: #d5ccb3 !important;
border: none !important;
border-left: none !important;
border-radius: 0 !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #7d6c53 !important;
text-transform: capitalize !important;
font-size: 15px !important;
text-shadow: none !important;
font-family: Trochut !important;
letter-spacing: 0px !important;
line-height: 0px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #ffd403 !important;
text-shadow: 0 0 5px #51330a !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #6a431f9c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Roboto !important;
text-transform: uppercase !important;
}
.minimap {
border: 2px ridge #91711a !important;
margin-bottom: 10px !important;
border-radius: 2% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 5px !important;
margin-top: 10% !important;
width: 120px !important;
height: 100px !important;
z-index: 1000 !important;
}
.minimap:hover {
filter: brightness(120%);
}
.profile_account {
background-color: #e3d8bfde !important;
border: 1px dotted #8d9b6c !important;
border-radius: 2px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
margin-bottom: 35px !important;
}
.profile_account h2 {
border: none !important;
border-radius: 20px !important;
box-shadow: none !important;
color: #755f34 !important;
text-shadow: 0 0 5px #00000040;
font-family: Miniver !important;
font-size: 18px !important;
font-weight: normal !important;
padding: 0px 10px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: #8d936200 !important;
background-blend-mode: normal !important;
margin-top: 0px !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
font-family: Miniver !important;
font-size: 16px !important;
}
.profile_menu {
border-bottom: 2px ridge #dfb448 !important;
border-top: 2px ridge #dfb448 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: url(https://i.imgur.com/5cU7ykV.jpg) !important;
background-size: cover !important;
background-position: top !important;
background-color: hsla(31, 20%, 17%, .69) !important;
background-blend-mode: overlay !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 19px !important;
color: #f2d89c !important;
font-family: Trochut !important;
text-shadow: 0 0 5px #000000bd !important;
text-transform: none !important;
margin-top: -2px !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
font-family: Miniver !important;
color: #fbb514 !important;
text-shadow: 0 0 5px #000 !important;
text-transform: capitalize !important;
border: none !important;
margin-top: 1px !important;
border-bottom: none !important;
border-radius: 0 !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 230px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Playball !important;
font-size: 45px !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 24px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Trochut !important;
text-transform: none !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 17px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #91711a !important;
text-shadow: 0 0 10px #a57c2a75 !important;
font-family: Miniver !important;
font-weight: normal !important;
text-transform: none !important;
font-size: 20px !important;
padding-top: 5px !important;
}
::selection {
background-color: #ffe586;
text-shadow: 0px 0px 2px #9b791794;
color: #8c4a14 !important;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #573020 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #5a6f38 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #7d9b4d !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/lsW219m.jpg") !important;
background-size: cover !important;
background-repeat: repeat !important;
background-position: -800px center !important;
background-color: hsla(31, 12%, 23%, .42) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8aaa53 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8aaa53 !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #d5ccb3 !important;
border: none !important;
outline: 1px dotted #8d9b6c !important;
outline-offset: -1px !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #db7700 !important;
text-shadow: none !important;
}
tr.even td {
background-color: #f2ead2 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #f2eeda !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #f4efe3 !important;
text-shadow: none !important;
font-weight: normal !important;
font-family: Miniver !important;
font-size: 15px !important;
}
#bbmenu > ul > li > a {
font-weight: normal !important;
text-shadow: none !important;
font-family: Miniver !important;
font-size: 18px !important;
margin-top: 2px !important;
}
.xpvalue {
background: #a8bb87; /* fallback */
background: -moz-linear-gradient(top, #b7cc93 0%, #779543 100%);
background: -webkit-linear-gradient(top, #b7cc93 0%,#779543 100%);
background: linear-gradient(to bottom, #b7cc93 0%,#779543 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #ffb80f !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Roboto !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
}
@-moz-document url("https://www.horsereality.com/user/34587/Ponies69") {
/* latin */
@font-face {
font-family: 'Fredericka the Great';
font-style: normal;
font-weight: 400;
src: local('Fredericka the Great'), local('FrederickatheGreat'), url(https://fonts.gstatic.com/s/frederickathegreat/v9/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--Sjxbc.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #6a4d38 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #8d95c7) brightness(100%) !important;
}
h2 {
font-family: Fredericka the Great !important;
font-size: 14px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Georgia !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #5b3d3d !important;
border: 1px dotted #f4efe3 !important;
color: #f4efe3 !important;
text-shadow: 0 0 5px #8d9bad !important;
box-shadow: 0 0 8px -2px #00000052 inset !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 11px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #f4efe3 !important;
color: #8d9bad !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Georgia !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #e6e4e2 !important;
outline: 1px dotted #8d9bad !important;
outline-offset: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #f4efe3 !important;
border-radius: 0 0 2px 2px !important;
border-top: none !important;
background-color: #4a2b23e0 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-family: Georgia !important;
font-weight: bold !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: none !important;
filter: drop-shadow(0 0 5px #000000ab) !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #514137 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #514137 !important;
background-image: none !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar {
height: 148px !important;
width: 148px !important;
border: none !important;
border-bottom: 3px ridge #94b4de !important;
border-radius: 2% !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container {
border-bottom: 2px solid #f4efe3 !important;
border-top: 2px solid #f4efe3 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/SyWgCyN.jpg) !important;
background-position: 0px 900px !important;
background-size: cover !important;
background-color: hsla(114, 0%, 0%, .5) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #eeece8 !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
.leftnav {
background-color: #eeece8 !important;
border: none !important;
border-radius: 0 !important;
border-right: none !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li {
color: #d07886 !important;
margin-top: 10px !important;
text-transform: uppercase !important;
font-size: 12px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #715151 !important;
text-transform: capitalize !important;
font-size: 13px !important;
text-shadow: none !important;
font-family: Times New Roman !important;
letter-spacing: 1px !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #8d9bad !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #6a431f9c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Roboto !important;
text-transform: uppercase !important;
}
.minimap {
border: 2px ridge #a098dc !important;
border-radius: 2% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: -2px !important;
margin-top: 7% !important;
width: 140px !important;
height: 140px !important;
}
.profile_account {
background-color: #eeeae8 !important;
border: 1px dotted #66717f !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
}
.profile_account h2 {
border: none !important;
border-bottom: 3px ridge #f4efe3 !important;
border-top: 1px ridge #f4efe3 !important;
border-radius: 10px !important;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1) !important;
color: #86735f !important;
text-shadow: 0 0 5px #00000040;
font-family: Fredericka the Great !important;
font-size: 18px !important;
font-weight: bold !important;
padding: 0 10px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: rgba(200, 187, 180, .4) !important;
background-blend-mode: overlay !important;
margin-top: 0 !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
}
.profile_menu {
background-color: #514137 !important;
border-bottom: 2px outset #887359 !important;
border-top: 2px outset #887359 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background-image: none !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 15px !important;
color: #f4efe3 !important;
font-family: Fredericka the Great !important;
text-shadow: 0 0 5px #000000bd !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
color: #c7cfff !important;
text-shadow: 0 0 5px #000 !important;
text-transform: lowercase !important;
border: none !important;
border-bottom: 2px solid #8d95c7 !important;
border-radius: 0 !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 15px !important;
margin-top: 230px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Fredericka the Great !important;
font-size: 30px !important;
letter-spacing: 2px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 16px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Roboto !important;
text-transform: uppercase;
letter-spacing: 1px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 11px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #66717f !important;
text-shadow: none !important;
font-family: Fredericka the Great !important;
font-weight: bold !important;
margin-top: 0px !important;
}
::selection {
background-color: #e3d4cf;
text-shadow: 0px 0px 2px #ff69bb94;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #5d4a43 !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #6d7c9c !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #8d9bad !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/HjPLCLq.jpg") !important;
background-size: cover !important;
background-position: top !important;
background-color: hsla(32, 22%, 87%, .27) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8d9bad !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8d9bad !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #cabfba !important;
border: none !important;
border-bottom: 1px dotted #485534 !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
outline: none !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #715151 !important;
}
table tr td a:hover {
color: #8d9bad !important;
}
tr.even td {
background-color: #eae7e1 !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.odd td {
background-color: #f4f1ec !important;
border: none !important;
border-bottom: 1px ridge #d9d0d3 !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #f4efe3 !important;
text-shadow: 0 0 5px #8d95c7 !important;
font-weight: bold !important;
}
#bbmenu > ul > li > a {
font-weight: bold !important;
text-shadow: 0 0 5px #6877d2 !important;
}
.xpvalue {
background: #8d95c7; /* fallback */
background: -moz-linear-gradient(top, #8d95c7 0%, #66717f 100%);
background: -webkit-linear-gradient(top, #8d95c7 0%,#66717f 100%);
background: linear-gradient(to bottom, #8d95c7 0%,#66717f 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #f4efe3 !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Georgia !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #eeece8 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #715151 !important;
text-shadow: none !important;
}
}
}
@-moz-document url("https://www.horsereality.com/user/8998/GabesMom") {
/* latin-ext */
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
src: local('Dynalight'), local('Dynalight-Regular'), url(https://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF44Q4FqPfE.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
src: local('Dynalight'), local('Dynalight-Regular'), url(https://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF44TYFq.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
src: local('Miniver'), url(https://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC37oIyg.woff2) format('woff2');
}
/* latin-ext */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
}
/* latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
}
#tab_horses2 > div > section > table > tbody {
outline: none !important;
}
table thead tr.sub {
outline: none !important;
}
* {
cursor: auto !important;
}
a, .profile_menu ul li, .profile_menu ul li.rightside img, .minimap, .footer.user .botleft img, .logo.user img {
cursor: pointer !important;
}
.leftnav {
background-image: none !important;
}
.minimap::after {
display: none !important;
}
.profile_account {
background-image: none !important;
}
.bluebar_container, .container, .footer {
outline: none !important;
}
body.background::before {
display: none !important;
}
table tr td {
color: #ffffffd4 !important;
}
.logo.user img {
filter: drop-shadow(0 0 5px #84d718) brightness(100%) !important;
}
h2 {
font-family: Miniver !important;
font-size: 16px !important;
font-weight: bold !important;
color: #715151 !important;
}
.gamestats, .gamestats a:link, .gamestats a:hover, .gamestats a:active, .gamestats a:visited {
color: #f4efe3 !important;
text-shadow: 0 0 5px #b0184633 !important;
font-family: Roboto !important;
}
ul li a:active, ul li a:link, ul li a:visited {
color: #f4efe3 !important;
font-family: Raleway !important;
font-size: 14px !important;
text-shadow: 0 0 3px #000 !important;
}
button.button.yellow {
background-color: #b75cb9 !important;
border: 1px dotted #e0f7c4 !important;
color: #eaece0 !important;
text-shadow: 0 0 5px #020400a3 !important;
box-shadow: 0 0 8px -2px #000000ad !important;
font-family: Roboto !important;
font-weight: bold !important;
width: 150px !important;
font-size: 12px !important;
border-radius: 5px !important;
}
button.button.yellow:hover {
background-color: #f4a3e8 !important;
color: #570c68 !important;
border: 1px dotted #5b3d3d !important;
text-shadow: 0px 0px 5px #ffffff7a !important;
}
body, p, a {
color: #715151 !important;
font-family: Roboto !important;
font-size: 12px !important;
}
#tab_profile2 p {
font-family: Roboto !important;
font-size: 13px !important;
}
tr {
color: black !important;
}
table thead tr.top {
background-color: transparent !important; }
table {
border: none !important;
background: transparent !important;
}
.center {
background-color: #452451 !important;
outline: 1px solid #7eae40 !important;
outline-offset: 0px !important;
box-shadow: 3px 0 10px #00000029 inset;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: 2px ridge #e5c883 !important;
border-radius: 0 0 10px 10px !important;
border-top: none !important;
background-color: #7b4f77 !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
color: #f4efe3 !important;
font-size: 13px !important;
font-family: Roboto !important;
font-weight: normal !important;
margin-top: 10px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .ava {
border: 1px ridge #e5c883 !important;
box-shadow: 0 0 5px #00000070 !important;
}
#bbmenu.user ul.slidedown li:hover, #bbmenu.user ul.slidedown li:focus, #bbmenu.user ul.slidedown li:active {
background-color: transparent !important;
}
.advertising {
background-color: #473255 !important;
border-bottom: 2px outset #7b8859 !important;
border-top: 2px outset #a3b081 !important;
background-image: none !important;
filter: none !important;
}
ins, .a_c_div {
background-color: #514137 !important;
border: none !important;
}
.footer {
background-color: #281a31 !important;
background-image: none !important;
border-bottom: 2px outset #7b8859 !important;
border-top: 2px outset #7b8859 !important;
border-left: 1px solid #7b8859 !important;
border-right: 1px solid #7b8859 !important;
}
.footer.user .botleft img {
filter: none !important;
}
.img_ad {
background-color: transparent !important;
}
.avatar::before {
content: "";
position: absolute !important;
margin-top: -20px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/6Cwhi73.png") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
width: 190px !important;
height: 190px !important;
filter: drop-shadow(0 0 10px #000000ad);
}
.avatar {
height: 142px !important;
width: 142px !important;
border-radius: 100% !important;
border: none !important;
border-bottom: 3px ridge #a8bb87 !important;
box-shadow: 0 0 5px #00000094 !important;
filter: none !important;
}
.bluebar_container {
border-bottom: 2px solid #e5c883 !important;
border-top: 2px solid #444573 !important;
box-shadow: 0px 14px 20px -9px rgba(0,0,0,0.36) !important;
background: url(https://i.imgur.com/FSZKaAJ.jpg) !important;
background-position: center -100px !important;
background-size: 100% !important;
background-color: hsla(268, 45%, 15%, .5) !important;
background-blend-mode: overlay !important;
}
.container {
background-color: #774f7b !important;
border-left: 1px solid #887359 !important;
border-right: 1px solid #887359 !important;
}
@media (max-width: 768px) {
.mobile-menu-container {
background-color: #774f7b !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
border: none !important;
background-color: transparent !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu {
margin-top: 0px !important;
}
#bbmenu.user ul.slidedown li ul.slidedownmenu li .level p {
margin-top: 0px !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li .minimap {
margin: 0 auto !important;
}
.mobile-menu-container .mobile-menu-scroller .sidemenu li ul li a, .mobile-menu-container .mobile-menu-scroller>ul.slidedownmenu li a, #bbmenu.user ul.slidedown li ul.slidedownmenu li .level p, .mobile-menu-container .mobile-menu-scroller #bbmenu ul.slidedown li:not(.nav) ul.slidedownmenu li:first-child, .mobile-menu-container .mobile-menu-scroller #bbmenu>ul li:not(.nav) ul.slidedownmenu li:first-child, ul li a:active, ul li a:link, ul li a:visited {
color: #f4f4f4 !important;
text-shadow: none !important;
}
}
.leftnav {
background-color: #774f7b !important;
border: none !important;
border-left: none !important;
border-radius: 0 !important;
box-shadow: none !important;
margin-left: 0px !important;
position: absolute !important;
width: 148px !important;
}
.leftnav > ul > li > a:link {
text-transform: uppercase !important;
}
.leftnav > ul > li {
margin-top: 10px !important;
}
.leftnav > ul > li > ul > li a:active, .leftnav > ul > li > ul > li a:link, .leftnav > ul > li > ul > li a:visited {
color: #d6ddd0 !important;
text-transform: capitalize !important;
font-size: 14px !important;
text-shadow: none !important;
font-family: Raleway !important;
letter-spacing: 0px !important;
line-height: 0px !important;
font-weight: bold !important;
}
.leftnav > ul > li > ul > li a:hover {
color: #db9fd4 !important;
text-shadow: 0 0 5px #51330a !important;
}
.leftnav>ul>li>ul>li {
width: 140px !important;
padding-left: 12px !important;
}
.leftnav::before {
content: "Profile layout © Samarti" !important;
color: #f6e5f99c !important;
text-align: center !important;
padding-left: 8px !important;
font-size: 10px !important;
font-family: Raleway !important;
text-transform: none !important;
letter-spacing: 1px !important;
}
.minimap {
border: 2px ridge #8db35f !important;
margin-bottom: 10px !important;
border-radius: 100% !important;
box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1) !important;
margin-left: 5px !important;
margin-top: 10% !important;
width: 120px !important;
height: 120px !important;
z-index: 1000 !important;
}
.minimap:hover {
filter: brightness(120%) !important;
}
.profile_account {
background-color: #613873 !important;
border: 2px ridge #e6f4b0 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
margin-bottom: 30px !important;
margin-top: 20px !important;
}
.profile_account::before {
content: "";
position: absolute !important;
margin-top: -25px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 250px !important;
height: 40px !important;
filter: invert(1) !important;
opacity: 0.5 !important;
transform: scaleY(-1) !important;
}
.profile_account::after {
content: "";
position: absolute !important;
margin-top: -15px !important;
margin-left: -10px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 250px !important;
height: 40px !important;
filter: invert(1) !important;
opacity: 0.4 !important;
transform: none !important;
}
.profile_right {
margin-top: 40px !important;
border: 2px ridge #e6f4b0 !important;
border-radius: 5px !important;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .11) !important;
background-color: #613873 !important;
}
.profile_right::before {
content: "";
position: absolute !important;
margin-top: -30px !important;
margin-left: 140px !important;
margin-right: auto !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 400px !important;
height: 65px !important;
filter: invert(1) !important;
opacity: 0.7 !important;
transform: scaleY(-1) !important;
}
.profile_right::after {
content: "";
position: absolute !important;
margin-top: -35px !important;
margin-left: 140px !important;
background-image: url("https://i.imgur.com/kqN1px3.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 400px !important;
height: 65px !important;
filter: invert(1) !important;
opacity: 0.7 !important;
transform: none !important;
}
.profile_account h2 {
border: none !important;
border-radius: 20px !important;
box-shadow: none !important;
color: #e1e1e1 !important;
text-shadow: 0 0 5px #00000040;
font-family: Miniver !important;
font-size: 18px !important;
font-weight: normal !important;
padding: 0px 10px !important;
padding-top: 5px !important;
text-align: center !important;
background-image: none !important;
background-size: 200% !important;
background-color: #8d936200 !important;
background-blend-mode: normal !important;
margin-top: 0px !important;
margin-left: 0 !important;
width: 200px !important;
margin-bottom: 5px !important;
text-transform: none !important;
}
.minidetails, table tr td {
border-left: 2px transparent solid !important;
}
table tr td {
background-color: transparent !important;
}
tr.sub td {
background-image: none !important;
font-family: Miniver !important;
font-size: 16px !important;
}
.profile_menu {
border-bottom: 2px ridge #e6f4b0 !important;
border-top: 2px ridge #e6f4b0 !important;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.60) !important;
text-transform: lowercase !important;
background: url(https://i.imgur.com/FSZKaAJ.jpg) !important;
background-position: center !important;
background-size: 100% !important;
background-color: hsla(268, 45%, 15%, .77) !important;
background-blend-mode: overlay !important;
font-family: Lobster Two !important;
}
.profile_menu ul li {
font-size: 15px !important;
color: #f0c9db !important;
font-family: Raleway !important;
text-shadow: 0 0 5px #000000bd !important;
text-transform: none !important;
margin-top: 0px !important;
}
.profile_menu ul li:hover, .profile_menu ul li.tabclick:hover {
background: none !important;
font-family: Miniver !important;
font-size: 16px !important;
color: #ea8eba !important;
text-shadow: 0 0 5px #000 !important;
text-transform: capitalize !important;
border: none !important;
margin-top: 1px !important;
border-bottom: none !important;
border-radius: 0 !important;
}
#tab_profile2 > section > p:nth-child(1) {
text-align: center !important;
}
.profile_menu ul li.rightside {
height: 40px !important;
}
.profile_ranking span {
text-transform: none !important;
}
.profile_ranking {
font-size: 25px !important;
font-family: Miniver !important;
margin-top: 225px !important;
opacity: 0.9 !important;
height: 0 !important;
}
.profile_username h1 {
color: #fff !important;
font-family: Dynalight !important;
font-style: normal !important;
font-size: 55px !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000b0 !important;
margin-top: 25px !important;
line-height: 24px !important;
padding-top: 10px !important;
}
.profile_username h2 {
color: #ffffffc7 !important;
font-family: Raleway !important;
text-transform: none !important;
letter-spacing: 0px !important;
font-weight: 100 !important;
text-shadow: 0px 0px 5px #000000fc !important;
font-size: 15px !important;
opacity: 1 !important;
margin-top: 0px !important;
padding-top: 0px !important;
}
.subtitle {
color: #e9cbee !important;
text-shadow: 0 0 10px #a57c2a75 !important;
font-family: Miniver !important;
font-weight: normal !important;
text-transform: none !important;
font-size: 20px !important;
padding-top: 5px !important;
margin-top: 0px !important;
}
::selection {
background-color: #ecd2f9;
text-shadow: 0px 0px 2px #9b791794;
color: #000 !important;
}
::-webkit-scrollbar {
height: 10px !important;
width: 10px !important;
background: #2b133c !important;
box-shadow: 0 0 10px black !important;
}
::-webkit-scrollbar-thumb {
background: #4e3c66 !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-thumb:hover {
background: #905b97 !important;
border-radius: 10px !important;
}
body.background.north-america, body.background.south-america, body.background.europe, body.background.australia, body.background.asia, body.background.africa {
background-image: url("https://i.imgur.com/wRVM34v.jpg") !important;
background-size: cover !important;
background-repeat: repeat !important;
background-position: -750px center !important;
background-color: hsla(338, 89%, 48%, .1) !important;
background-blend-mode: overlay !important;
}
p a:hover {
color: #8aaa53 !important;
}
p i a {
color: #2a4b4c !important;
}
p i a:hover {
color: #8aaa53 !important;
}
table thead tr.sub {
background-image: none !important;
background-color: #613873 !important;
border: none !important;
outline: 1px dotted #8d9b6c !important;
outline-offset: -1px !important;
box-shadow: none !important;
color: #6a5e38 !important;
font-family: Fredericka the Great !important;
text-shadow: none !important;
font-size: 14px !important;
font-weight: bold !important;
}
table thead tr.top {
display: none !important;
}
tr:hover {
border: none !important;
}
td p a {
color: #715151 !important;
}
table tr td a:active, table tr td a:link, table tr td a:visited {
color: #fff !important;
}
table tr td a:hover {
color: #f0c9db !important;
text-shadow: none !important;
}
#tab_horses2 > div > section > table > tbody > tr:nth-child(n) > td:nth-child(n) > p,
#tab_forum2 > div > section > table > tbody > tr:nth-child(n) > td:nth-child(n) > p
{
color: white !important;
}
tr.even td {
background-color: #5a3e64 !important;
border: none !important;
border-bottom: 1px dotted #d9d0d39c !important;
}
tr.odd td {
background-color: #654873 !important;
border: none !important;
border-bottom: 1px dotted #d9d0d39c !important;
}
tr.top {
background-color: transparent !important;
border-color: transparent !important;
border-top-width: 0 !important;
}
tr.top td {
border-color: #ffde5e !important;
border-style: ridge !important;
border-width: 2px !important;
}
ul li a:hover {
color: #db9fd4 !important;
text-shadow: none !important;
font-weight: normal !important;
font-family: Raleway !important;
font-size: 14px !important;
}
#bbmenu > ul > li > a {
font-weight: normal !important;
text-shadow: none !important;
font-family: Miniver !important;
font-size: 18px !important;
margin-top: 2px !important;
}
.xpvalue {
background: #a8bb87; /* fallback */
background: -moz-linear-gradient(top, #b7cc93 0%, #779543 100%);
background: -webkit-linear-gradient(top, #b7cc93 0%,#779543 100%);
background: linear-gradient(to bottom, #b7cc93 0%,#779543 100%);
filter: none !important;
height: 20px !important;
border-radius: 2px !important;
}
.statusbar{
background-color: rgba(255, 255, 255, .39) !important;
border-radius: 5px !important;
height: 20px !important;
border: 2px ridge #e5c883 !important;
}
.value {
padding-top: 2px !important;
color: #f4efe3 !important;
font-weight: bold !important;
text-shadow: 0 0 5px #0000008a !important;
}
.footer h6 {
font-family: Roboto !important;
color: #f4efe3 !important;
font-size: 12px !important;
}
body, p, a, h2 {
color: #eae1ec !important;
}
} | 0.287968 | 0.102484 |
form {
display: grid;
grid-auto-columns: 1fr;
grid-auto-flow: column;
grid-template:
'ar ar as'
'd d as'
'f f f';
gap: 30px;
padding: 30px;
}
article {
grid-area: ar;
}
aside {
grid-area: as;
}
#d-send {
grid-area: d;
}
section {
border: 1px solid grey;
padding: 10px;
margin: 10px 0;
}
footer {
grid-area: f;
}
input[type=text]:focus, textarea:focus {
background-color: rgba(255,160,122,0.3);
}
label {
padding-left: 3px;
}
#image {
text-align: center;
border: 1px solid grey;
height: 20em;
}
#image > div {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
}
#title {
border: None;
font-size: 1.5em;
margin-bottom: 20px;
}
.ingredients {
display: grid;
grid-auto-flow: row;
grid-auto-columns: 1fr;
grid-template: 'auto auto auto auto auto auto auto auto auto auto'
'auto auto auto auto auto auto auto auto auto auto';
gap: 0 10px;
}
.steps{
display: grid;
grid-auto-flow: column;
grid-auto-columns: 1fr;
grid-template: auto auto auto auto auto auto auto auto auto 30px;
gap: 10px;
}
.names {
display: grid;
grid-auto-flow: column;
grid-template: auto 30px;
gap: 10px;
}
.portion > label {
width: 65px;
}
.portion > input {
width: 190px;
}
.quantity-hiba {
grid-column-start: 1;
grid-column-end: 11;
}
.raw-material-name {
grid-column-start: 1;
grid-column-end: 5;
}
.raw-material-quantity {
grid-column-start: 5;
grid-column-end: 7;
width: 100%;
}
.raw-material-unit {
grid-column-start: 7;
grid-column-end: 10;
}
.step-txt {
grid-column-start: 1;
grid-column-end: 10;
}
.values {
display: grid;
grid-auto-columns: 145px 80px 40px;
grid-auto-flow: column;
}
.values > span, .values > label, .portion > label {
height: 1.1rem;
margin-top: 7px;
}
.-delete {
grid-column-start: 10;
grid-column-end: 10;
} | public/css/upload-desktop.css | form {
display: grid;
grid-auto-columns: 1fr;
grid-auto-flow: column;
grid-template:
'ar ar as'
'd d as'
'f f f';
gap: 30px;
padding: 30px;
}
article {
grid-area: ar;
}
aside {
grid-area: as;
}
#d-send {
grid-area: d;
}
section {
border: 1px solid grey;
padding: 10px;
margin: 10px 0;
}
footer {
grid-area: f;
}
input[type=text]:focus, textarea:focus {
background-color: rgba(255,160,122,0.3);
}
label {
padding-left: 3px;
}
#image {
text-align: center;
border: 1px solid grey;
height: 20em;
}
#image > div {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
}
#title {
border: None;
font-size: 1.5em;
margin-bottom: 20px;
}
.ingredients {
display: grid;
grid-auto-flow: row;
grid-auto-columns: 1fr;
grid-template: 'auto auto auto auto auto auto auto auto auto auto'
'auto auto auto auto auto auto auto auto auto auto';
gap: 0 10px;
}
.steps{
display: grid;
grid-auto-flow: column;
grid-auto-columns: 1fr;
grid-template: auto auto auto auto auto auto auto auto auto 30px;
gap: 10px;
}
.names {
display: grid;
grid-auto-flow: column;
grid-template: auto 30px;
gap: 10px;
}
.portion > label {
width: 65px;
}
.portion > input {
width: 190px;
}
.quantity-hiba {
grid-column-start: 1;
grid-column-end: 11;
}
.raw-material-name {
grid-column-start: 1;
grid-column-end: 5;
}
.raw-material-quantity {
grid-column-start: 5;
grid-column-end: 7;
width: 100%;
}
.raw-material-unit {
grid-column-start: 7;
grid-column-end: 10;
}
.step-txt {
grid-column-start: 1;
grid-column-end: 10;
}
.values {
display: grid;
grid-auto-columns: 145px 80px 40px;
grid-auto-flow: column;
}
.values > span, .values > label, .portion > label {
height: 1.1rem;
margin-top: 7px;
}
.-delete {
grid-column-start: 10;
grid-column-end: 10;
} | 0.583678 | 0.286554 |
body {
font-family: Roboto, Arial, sans-serif;
background: #ECEFF1;
color: rgba(0, 0, 0, 0.87); }
a {
color: #039be5; }
#message {
max-width: 400px;
margin: 40px auto;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
border-radius: 2px;
background: white;
padding: 16px 24px; }
#message h1 {
font-size: 22px;
font-weight: 500;
text-align: center;
margin: 0 0 16px; }
#message p {
font-weight: 300;
line-height: 150%; }
#message ul {
list-style: none;
margin: 16px 0 0;
padding: 0;
text-align: center; }
#message li a {
display: inline-block;
padding: 8px;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
background: #039be5;
color: white;
border: 1px solid #039be5;
border-radius: 3px;
font-size: 14px;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }
.menu-logo {
max-width: 50%;
margin-top: .5em; }
.button-list {
margin: 1em; }
@font-face {
font-family: bauhaus;
src: url(/fonts/bauhaus-93.ttf); }
.logo {
font-family: bauhaus;
font-size: xx-large;
color: white; }
#logo-pic {
padding: 3em; }
div.stars {
width: 270px;
display: inline-block; }
input.star {
display: none; }
label.star {
float: right;
padding: 10px;
font-size: 36px;
color: #444;
transition: all .2s; }
input.star:checked ~ label.star:before {
content: '\f005';
color: #FD4;
transition: all .25s; }
input.star-5:checked ~ label.star:before {
color: #FE7;
text-shadow: 0 0 20px #952; }
input.star-1:checked ~ label.star:before {
color: #F62; }
label.star:hover {
transform: rotate(-15deg) scale(1.3); }
label.star:before {
content: '\f006';
font-family: FontAwesome; }
.navbar-default {
background-color: #175DC1;
border-color: #4D95D9; }
.navbar-default .navbar-brand {
color: #CCDFF3; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #6CBDF1; }
.navbar-default .navbar-text {
color: #CCDFF3; }
.navbar-default .navbar-nav > li > a {
color: #CCDFF3; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #6CBDF1; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #6CBDF1;
background-color: #4D95D9; }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color: #6CBDF1;
background-color: #4D95D9; }
.navbar-default .navbar-toggle {
border-color: #4D95D9; }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #4D95D9; }
.navbar-default .navbar-toggle .icon-bar {
background-color: #CCDFF3; }
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #CCDFF3; }
.navbar-default .navbar-link {
color: #CCDFF3; }
.navbar-default .navbar-link:hover {
color: #6CBDF1; }
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #CCDFF3; }
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #6CBDF1; }
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #6CBDF1;
background-color: #4D95D9; } }
/*# sourceMappingURL=main.css.map */ | public/css/main.css | body {
font-family: Roboto, Arial, sans-serif;
background: #ECEFF1;
color: rgba(0, 0, 0, 0.87); }
a {
color: #039be5; }
#message {
max-width: 400px;
margin: 40px auto;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
border-radius: 2px;
background: white;
padding: 16px 24px; }
#message h1 {
font-size: 22px;
font-weight: 500;
text-align: center;
margin: 0 0 16px; }
#message p {
font-weight: 300;
line-height: 150%; }
#message ul {
list-style: none;
margin: 16px 0 0;
padding: 0;
text-align: center; }
#message li a {
display: inline-block;
padding: 8px;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
background: #039be5;
color: white;
border: 1px solid #039be5;
border-radius: 3px;
font-size: 14px;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }
.menu-logo {
max-width: 50%;
margin-top: .5em; }
.button-list {
margin: 1em; }
@font-face {
font-family: bauhaus;
src: url(/fonts/bauhaus-93.ttf); }
.logo {
font-family: bauhaus;
font-size: xx-large;
color: white; }
#logo-pic {
padding: 3em; }
div.stars {
width: 270px;
display: inline-block; }
input.star {
display: none; }
label.star {
float: right;
padding: 10px;
font-size: 36px;
color: #444;
transition: all .2s; }
input.star:checked ~ label.star:before {
content: '\f005';
color: #FD4;
transition: all .25s; }
input.star-5:checked ~ label.star:before {
color: #FE7;
text-shadow: 0 0 20px #952; }
input.star-1:checked ~ label.star:before {
color: #F62; }
label.star:hover {
transform: rotate(-15deg) scale(1.3); }
label.star:before {
content: '\f006';
font-family: FontAwesome; }
.navbar-default {
background-color: #175DC1;
border-color: #4D95D9; }
.navbar-default .navbar-brand {
color: #CCDFF3; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #6CBDF1; }
.navbar-default .navbar-text {
color: #CCDFF3; }
.navbar-default .navbar-nav > li > a {
color: #CCDFF3; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #6CBDF1; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #6CBDF1;
background-color: #4D95D9; }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color: #6CBDF1;
background-color: #4D95D9; }
.navbar-default .navbar-toggle {
border-color: #4D95D9; }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #4D95D9; }
.navbar-default .navbar-toggle .icon-bar {
background-color: #CCDFF3; }
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #CCDFF3; }
.navbar-default .navbar-link {
color: #CCDFF3; }
.navbar-default .navbar-link:hover {
color: #6CBDF1; }
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #CCDFF3; }
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #6CBDF1; }
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #6CBDF1;
background-color: #4D95D9; } }
/*# sourceMappingURL=main.css.map */ | 0.259356 | 0.074299 |
body.ui-mobile-viewport.ui-overlay-a {
background-color: white !important;
}
body {
padding-top: 63px;
background: white;
}
.ui-mobile [data-role=page], .ui-page {
background: white;
top: auto !important;
min-height: calc(100vh - 120px) !important;
margin-bottom: 64px;
content: 'viewport-units-buggyfill;' 'min-height: calc(100vh - 120px) !important;';
}
.ui-mobile, .ui-mobile body {
height: calc(100vh - 120px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
.alinha-direita {
text-align: right;
}
.alinha-esquerda {
text-align: left;
}
.alinha-meio {
text-align: center;
}
.sem-margem {
margin: 0;
}
#conteudo {
width: 100%;
height: calc(100vh - 120px);
overflow: scroll;
-webkit-overflow-scrolling: touch;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
#sidebar {
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
#separator {
position: fixed;
top: 0;
right: 359px;
height: calc(100vh - 57px);
border-left: 2px solid rgba(0, 0, 0, 0.3);
z-index: 1050;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 57px);';
}
@media (min-width: 801px) {
#conteudo {
float: left;
width: calc(100% - 360px);
}
#sidebar {
position: relative;
float: right;
height: calc(100vh - 120px);
width: 360px;
z-index: 1020;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
.abas {
display: none;
}
#conteudo.fim-do-jogo {
width: 100%;
}
#sidebar.fim-do-jogo {
display: none;
}
}
* {
font-family: Helvetica, Arial, sans-serif;
text-shadow: none !important;
}
p.info {
font-size: 20px;
}
div#div-fundo {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: white;
}
/*
---- NAVEGAÇÃO ----
*/
div#div-fixo {
width: 100%;
top: 0;
z-index: 999;
}
header {
position: fixed;
left: 0;
right: 0;
top: 0;
height: 63px;
width: 100%;
background-color: #C49F08;
box-shadow: 0 3px 8px 8px white;
z-index: 1030;
}
footer {
position: fixed;
left: 0;
bottom: 0;
height: 57px;
width: 100%;
background-color: #C49F08;
box-shadow: 0 -3px 8px 8px white;
z-index: 1031;
}
#span-jogo {
position: absolute;
top: 8px;
left: 3%;
height: 49px;
width: 45%;
font-size: 43px;
text-align: center;
cursor: pointer;
padding-top: 6px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
#span-placar {
position: absolute;
top: 8px;
right: 3%;
height: 45px;
width: 45%;
font-size: 37px;
text-align: center;
cursor: pointer;
padding-top: 10px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
span.span-tab-nome {
vertical-align: middle;
text-transform: uppercase;
font-size: 18px;
font-weight: bold;
}
.titulo {
color: white;
}
#titulo-jogo {
position: relative;
top: 8px;
height: 49px;
font-size: 43px;
padding-top: 6px;
margin-left: 14px;
}
#titulo-placar {
position: relative;
top: 8px;
height: 45px;
font-size: 37px;
padding-top: 10px;
}
.titulo-conteudo {
float: left;
width: calc(100% - 360px);
}
.titulo-sidebar {
position: fixed;
right: 0;
width: 360px;
text-align: center;
}
.nav-ativo {
color: #C49F08;
background-color: white;
}
.nav-inativo {
color: white;
background-color: #C49F08;
}
@media (max-width: 800px) {
.display-none{
display: none;
}
#conteudo.sidebar-open {
height: auto;
}
#sidebar.sidebar-open {
height: calc(100vh - 120px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
}
#panel-conteudo {
display: table;
width: 100%;
height: 100%;
}
#panel-partida-nao-iniciada, #panel-jogo-encerrado {
display: table-cell;
position: relative;
vertical-align: middle;
}
div#div-aguardando-jogo, div#div-jogo-encerrado {
text-align: center;
width: 100%;
}
span.span-aguardando-jogo {
color: #C49F08;
font-size: 90px;
}
h2.h2-aguardando-jogo {
line-height: 0 !important;
padding-top: 15px;
margin-bottom: 2px;
font-size: 22px
}
p.p-aguardando-jogo {
font-size: 18px;
margin-bottom: 0;
}
div#div-pergunta {
position: relative;
width: 100%;
margin-bottom: 6px;
}
form#form-pergunta {
margin-top: 12px;
}
span.span-pergunta-numero {
color: #FFF;
background-color: #C49F08;
font-size: 15px;
font-weight: bold;
margin: 0 10px;
padding: 2px 5px;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
p#p-pergunta {
margin-top: 7px;
}
p#p-pergunta, p.img-descricao {
color: #000;
font-weight: bold;
font-size: 18px;
margin: 10px 10px;
text-align: justify;
hyphens: auto;
-webkit-hyphens: auto;
}
img.img-pergunta {
max-width: calc(100% - 20px);
margin: 0 10px;
}
p.p-alternativa {
color: #fff;
margin-top: 10px;
margin-left: 40px;
margin-right: 3px;
font-size: 16px !important;
font-weight: bold !important;
/*line-height: 45px;*/
min-height: 25px;
padding: 10px 4px 10px 0;
text-align: justify;
hyphens: auto;
-webkit-hyphens: auto;
}
div.div-indice-alternaviva {
float: left;
margin-top: 7px;
margin-left: 5px;
text-align: center;
color: #FFF;
background-color: rgba(0, 0, 0, 0.6);
opacity: 0.75;
font-weight: bold;
font-size: 20px;
line-height: 30px;
width: 30px;
height: 30px;
border-radius: 50%;
}
div.div-indice-alternativa-escolhida, div.div-badge-jogador-ja-respondeu {
position: absolute;
margin-top: 23px;
margin-left: 23px;
text-align: center;
color: #FFF;
font-weight: bold;
font-size: 20px;
line-height: 30px;
width: 30px;
height: 30px;
border-radius: 50%;
box-shadow: 0px 0 2px 1px rgba(255, 255, 255, 1);
}
div.div-indice-alternativa-escolhida.certa {
background-color: #2eb22e;
}
div.div-indice-alternativa-escolhida.errada {
background-color: #d50f0f;
}
div.div-badge-jogador-ja-respondeu {
background-color: #16aceb;
}
div.div-alternativa {
margin: 0 10px -5px 10px;
border-radius: 5px;
min-height: 45px;
}
div.div-alternativa.nao-escolhida {
background-color: #C49F08;
}
div.div-alternativa.certa {
background-color: #2eb22e;
}
div.div-alternativa.desabilitada {
background-color: #969696;
}
div.div-numero-respostas {
float: right;
margin-top: -5px;
margin-right: -5px;
padding: 0 7px;
color: #FFF;
background-color: #F41827;
min-width: 20px;
height: 34px;
line-height: 34px;
text-align: center;
font-weight: normal;
font-size: 18px;
border-radius: 17px;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4) !important;
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
}
div.div-numero-respostas.certa {
background-color: #54BAF7;
}
div#panel-quant-jogadores-responderam {
width: 100%;
text-align: center;
position: fixed;
bottom: 72px;
pointer-events: none;
}
span.span-quant-jogadores-responderam {
color: #FFF;
padding: 4px 10px;
border-radius: 14px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
span.span-quant-jogadores-responderam.todos {
background-color: #2eb22e;
}
span.span-quant-jogadores-responderam.ainda-nao {
background-color: #16aceb;
}
span.span-quant-jogadores-responderam.nao {
background-color: #d50f0f;
}
.textoDialog {
text-align: center;
font-size: 14pt;
}
.ui-page-theme-a .ui-bar-inherit {
background-color: #C49F08 !important;
color: #FFF !important;
text-shadow: none !important;
border: none !important;
}
.ui-popup.ui-body-inherit, .ui-popup.ui-body-inherit .ui-page-theme-a .ui-bar-inherit {
border: none !important;
}
.ui-header .ui-title {
margin: 0 20px !important;
}
button.ui-shadow {
box-shadow: none !important;
}
.ui-popup .ui-content {
text-align: center !important;
overflow: auto;
padding-bottom: 0 !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
.btn-popup {
width: calc(50% - 4px);
}
.btn-confirma-sim {
background-color: #C49F08 !important;
color: #FFF !important;
text-shadow: none !important;
border: none !important;
}
.btn-confirma-nao {
background-color: #dcdcdc !important;
color: #333 !important;
text-shadow: none !important;
border: none !important;
}
.ui-popup-screen {
position: fixed !important;
}
.img-foto-jogador {
position: fixed;
bottom: 6px;
left: 14px;
width: 46px;
height: 46px;
border-radius: 50%;
background-image: url("#{resource['img/perfil-amarelo.jpg']}");
background-size: contain;
}
span#span-nome-jogador {
position: fixed;
bottom: 27px;
left: 75px;
font-weight: bold;
font-size: 18px;
color: #fff;
text-transform: uppercase;
}
#div-pontuacao-jogador {
position: fixed;
bottom: 6px;
left: 75px;
font-size: 18px;
color: #fff;
text-transform: uppercase;
}
#div-pontuacao-jogador span.fa-check {
color: #07ea07;
}
#div-pontuacao-jogador span.fa-times {
color: #ff1717;
}
div#div-placar {
width: 90%;
margin-left: auto;
margin-right: auto;
}
span.span-placar-colocacao {
text-align: center;
font-size:30px;
font-weight: bold;
}
p.p-placar-jogador {
top: 0;
left: 60px;
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
margin-bottom: -20px;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
p.p-placar-pontuacao {
left: 60px;
top: 20px;
font-size: 18px;
text-transform: uppercase;
}
.p-placar-pontuacao .fa-check {
color: #00a000;
}
.p-placar-pontuacao .fa-times {
color: #d50f0f;
}
.img-placar-foto-jogador {
display: block;
width: 46px;
height: 46px;
border-radius: 50% !important;
margin: auto;
background-image: url("#{resource['img/perfil.jpg']}");
background-size: contain;
}
p.p-placar-vazio {
padding-top: 10px;
font-weight: bold;
font-size: 18px;
text-align: center;
}
#div-fim-do-jogo {
margin-top: 8px;
display: flex;
flex-direction: column;
height: calc(100vh - 128px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 128px);';
}
.logo-topo, .logo-lades {
display: none;
height: 100%;
width: 100%;
text-align: center;
line-height: normal !important;
}
.logo-topo.fim-do-jogo, .logo-lades.fim-do-jogo {
display: table;
}
.logo-topo > div, .logo-lades > div {
display: table-cell;
vertical-align: middle;
}
.logo-topo > div > img {
width: 160px;
}
.logo-lades > div > img {
width: 156px;
}
.logo-topo > div > img, .logo-lades > div > img {
margin-bottom: -2px;
}
.head-perfil {
text-align: center;
flex: 0 1 auto;
}
.head-perfil {
display: table;
margin-top: 10px;
margin-bottom: 10px;
}
.head-perfil > div {
display: table-cell;
vertical-align: middle;
}
.head-perfil > div > img {
width: 180px;
height: 180px;
border-radius: 50%;
background-image: url("#{resource['img/perfil-amarelo.jpg']}");
background-size: contain;
}
.head-perfil > div > p {
margin-top: 0;
margin-bottom: 0;
font-weight: bold;
text-transform: capitalize;
font-size: 1.6em;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
@media (max-width: 480px) {
.logo-topo > div > img {
width: calc(17vw + 80px);
}
.logo-lades > div > img {
width: calc(17vw + 76px);
}
.head-perfil > div > img {
width: calc(30vw + 30px);
height: calc(30vw + 30px);
}
}
.pontuacao {
position: relative;
padding: 0 8px !important;
margin-bottom: 10px;
flex: 0 1 auto;
width: 100%;
}
@media (max-width: 520px) {
.pontuacao {
width: calc(100vw - 16px) !important;
}
}
@media (min-width: 521px) {
.pontuacao {
max-width: 470px !important;
margin-left: auto !important;
margin-right: auto !important;
}
}
.card-colocacao {
background: #C49F08;
width: calc(33.3333333% - 6px) !important;
float: left;
margin-right: 9px;
border-radius: 4px;
}
.card-acertos {
background: #00a000;
width: calc(33.3333333% - 6px) !important;
float: left;
margin-right: 9px;
border-radius: 4px;
}
.card-erros {
background: #d50f0f;
width: calc(33.3333333% - 6px) !important;
float: left;
border-radius: 4px;
}
.card-colocacao, .card-acertos, .card-erros {
text-align: center;
color: white;
font-weight: bold;
text-transform: uppercase;
}
.card-colocacao > p:first-child, .card-acertos > p:first-child, .card-erros > p:first-child {
font-size: 2.5em;
margin-bottom: -7px;
margin-top: -1px;
}
.card-colocacao > p:last-child, .card-acertos > p:last-child, .card-erros > p:last-child {
font-size: 1em;
margin: 0 6px 4px 6px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.agradecimento {
flex: 1 1 auto;
}
.agradecimento > div {
display: table;
height: 100%;
width: 100%;
}
.agradecimento > div > div {
display: table-cell;
vertical-align: middle;
}
p.obrigado {
text-align: center;
font-size: 20px;
width: 100%;
}
.direita {
float: right;
}
.esquerda {
float: left;
}
/*
---- BOTÕES DE CONTROLE DA PARTIDA ----
*/
.div-btn-controle-1 {
margin-right: 9px;
margin-left: 9px;
}
.div-btn-controle-2 {
margin-right: 9px;
}
.div-btn-controle-1, .div-btn-controle-2, .div-btn-controle-3 {
width: calc(33.333333% - 12px);
float: left;
}
.div-btn-principal {
width: 33.333333%;
float: left;
margin-left: calc(50% - 33.333333% / 2);
}
.btn-controle {
background-color: #F6F6F6 !important;
color: #333 !important;
text-shadow: none !important;
border: none !important;
} | src/main/webapp/resources/css/style-adm-partida-amarelo.css | body.ui-mobile-viewport.ui-overlay-a {
background-color: white !important;
}
body {
padding-top: 63px;
background: white;
}
.ui-mobile [data-role=page], .ui-page {
background: white;
top: auto !important;
min-height: calc(100vh - 120px) !important;
margin-bottom: 64px;
content: 'viewport-units-buggyfill;' 'min-height: calc(100vh - 120px) !important;';
}
.ui-mobile, .ui-mobile body {
height: calc(100vh - 120px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
.alinha-direita {
text-align: right;
}
.alinha-esquerda {
text-align: left;
}
.alinha-meio {
text-align: center;
}
.sem-margem {
margin: 0;
}
#conteudo {
width: 100%;
height: calc(100vh - 120px);
overflow: scroll;
-webkit-overflow-scrolling: touch;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
#sidebar {
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
#separator {
position: fixed;
top: 0;
right: 359px;
height: calc(100vh - 57px);
border-left: 2px solid rgba(0, 0, 0, 0.3);
z-index: 1050;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 57px);';
}
@media (min-width: 801px) {
#conteudo {
float: left;
width: calc(100% - 360px);
}
#sidebar {
position: relative;
float: right;
height: calc(100vh - 120px);
width: 360px;
z-index: 1020;
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
.abas {
display: none;
}
#conteudo.fim-do-jogo {
width: 100%;
}
#sidebar.fim-do-jogo {
display: none;
}
}
* {
font-family: Helvetica, Arial, sans-serif;
text-shadow: none !important;
}
p.info {
font-size: 20px;
}
div#div-fundo {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: white;
}
/*
---- NAVEGAÇÃO ----
*/
div#div-fixo {
width: 100%;
top: 0;
z-index: 999;
}
header {
position: fixed;
left: 0;
right: 0;
top: 0;
height: 63px;
width: 100%;
background-color: #C49F08;
box-shadow: 0 3px 8px 8px white;
z-index: 1030;
}
footer {
position: fixed;
left: 0;
bottom: 0;
height: 57px;
width: 100%;
background-color: #C49F08;
box-shadow: 0 -3px 8px 8px white;
z-index: 1031;
}
#span-jogo {
position: absolute;
top: 8px;
left: 3%;
height: 49px;
width: 45%;
font-size: 43px;
text-align: center;
cursor: pointer;
padding-top: 6px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
#span-placar {
position: absolute;
top: 8px;
right: 3%;
height: 45px;
width: 45%;
font-size: 37px;
text-align: center;
cursor: pointer;
padding-top: 10px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
span.span-tab-nome {
vertical-align: middle;
text-transform: uppercase;
font-size: 18px;
font-weight: bold;
}
.titulo {
color: white;
}
#titulo-jogo {
position: relative;
top: 8px;
height: 49px;
font-size: 43px;
padding-top: 6px;
margin-left: 14px;
}
#titulo-placar {
position: relative;
top: 8px;
height: 45px;
font-size: 37px;
padding-top: 10px;
}
.titulo-conteudo {
float: left;
width: calc(100% - 360px);
}
.titulo-sidebar {
position: fixed;
right: 0;
width: 360px;
text-align: center;
}
.nav-ativo {
color: #C49F08;
background-color: white;
}
.nav-inativo {
color: white;
background-color: #C49F08;
}
@media (max-width: 800px) {
.display-none{
display: none;
}
#conteudo.sidebar-open {
height: auto;
}
#sidebar.sidebar-open {
height: calc(100vh - 120px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 120px);';
}
}
#panel-conteudo {
display: table;
width: 100%;
height: 100%;
}
#panel-partida-nao-iniciada, #panel-jogo-encerrado {
display: table-cell;
position: relative;
vertical-align: middle;
}
div#div-aguardando-jogo, div#div-jogo-encerrado {
text-align: center;
width: 100%;
}
span.span-aguardando-jogo {
color: #C49F08;
font-size: 90px;
}
h2.h2-aguardando-jogo {
line-height: 0 !important;
padding-top: 15px;
margin-bottom: 2px;
font-size: 22px
}
p.p-aguardando-jogo {
font-size: 18px;
margin-bottom: 0;
}
div#div-pergunta {
position: relative;
width: 100%;
margin-bottom: 6px;
}
form#form-pergunta {
margin-top: 12px;
}
span.span-pergunta-numero {
color: #FFF;
background-color: #C49F08;
font-size: 15px;
font-weight: bold;
margin: 0 10px;
padding: 2px 5px;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
p#p-pergunta {
margin-top: 7px;
}
p#p-pergunta, p.img-descricao {
color: #000;
font-weight: bold;
font-size: 18px;
margin: 10px 10px;
text-align: justify;
hyphens: auto;
-webkit-hyphens: auto;
}
img.img-pergunta {
max-width: calc(100% - 20px);
margin: 0 10px;
}
p.p-alternativa {
color: #fff;
margin-top: 10px;
margin-left: 40px;
margin-right: 3px;
font-size: 16px !important;
font-weight: bold !important;
/*line-height: 45px;*/
min-height: 25px;
padding: 10px 4px 10px 0;
text-align: justify;
hyphens: auto;
-webkit-hyphens: auto;
}
div.div-indice-alternaviva {
float: left;
margin-top: 7px;
margin-left: 5px;
text-align: center;
color: #FFF;
background-color: rgba(0, 0, 0, 0.6);
opacity: 0.75;
font-weight: bold;
font-size: 20px;
line-height: 30px;
width: 30px;
height: 30px;
border-radius: 50%;
}
div.div-indice-alternativa-escolhida, div.div-badge-jogador-ja-respondeu {
position: absolute;
margin-top: 23px;
margin-left: 23px;
text-align: center;
color: #FFF;
font-weight: bold;
font-size: 20px;
line-height: 30px;
width: 30px;
height: 30px;
border-radius: 50%;
box-shadow: 0px 0 2px 1px rgba(255, 255, 255, 1);
}
div.div-indice-alternativa-escolhida.certa {
background-color: #2eb22e;
}
div.div-indice-alternativa-escolhida.errada {
background-color: #d50f0f;
}
div.div-badge-jogador-ja-respondeu {
background-color: #16aceb;
}
div.div-alternativa {
margin: 0 10px -5px 10px;
border-radius: 5px;
min-height: 45px;
}
div.div-alternativa.nao-escolhida {
background-color: #C49F08;
}
div.div-alternativa.certa {
background-color: #2eb22e;
}
div.div-alternativa.desabilitada {
background-color: #969696;
}
div.div-numero-respostas {
float: right;
margin-top: -5px;
margin-right: -5px;
padding: 0 7px;
color: #FFF;
background-color: #F41827;
min-width: 20px;
height: 34px;
line-height: 34px;
text-align: center;
font-weight: normal;
font-size: 18px;
border-radius: 17px;
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4) !important;
box-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
}
div.div-numero-respostas.certa {
background-color: #54BAF7;
}
div#panel-quant-jogadores-responderam {
width: 100%;
text-align: center;
position: fixed;
bottom: 72px;
pointer-events: none;
}
span.span-quant-jogadores-responderam {
color: #FFF;
padding: 4px 10px;
border-radius: 14px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
span.span-quant-jogadores-responderam.todos {
background-color: #2eb22e;
}
span.span-quant-jogadores-responderam.ainda-nao {
background-color: #16aceb;
}
span.span-quant-jogadores-responderam.nao {
background-color: #d50f0f;
}
.textoDialog {
text-align: center;
font-size: 14pt;
}
.ui-page-theme-a .ui-bar-inherit {
background-color: #C49F08 !important;
color: #FFF !important;
text-shadow: none !important;
border: none !important;
}
.ui-popup.ui-body-inherit, .ui-popup.ui-body-inherit .ui-page-theme-a .ui-bar-inherit {
border: none !important;
}
.ui-header .ui-title {
margin: 0 20px !important;
}
button.ui-shadow {
box-shadow: none !important;
}
.ui-popup .ui-content {
text-align: center !important;
overflow: auto;
padding-bottom: 0 !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
.btn-popup {
width: calc(50% - 4px);
}
.btn-confirma-sim {
background-color: #C49F08 !important;
color: #FFF !important;
text-shadow: none !important;
border: none !important;
}
.btn-confirma-nao {
background-color: #dcdcdc !important;
color: #333 !important;
text-shadow: none !important;
border: none !important;
}
.ui-popup-screen {
position: fixed !important;
}
.img-foto-jogador {
position: fixed;
bottom: 6px;
left: 14px;
width: 46px;
height: 46px;
border-radius: 50%;
background-image: url("#{resource['img/perfil-amarelo.jpg']}");
background-size: contain;
}
span#span-nome-jogador {
position: fixed;
bottom: 27px;
left: 75px;
font-weight: bold;
font-size: 18px;
color: #fff;
text-transform: uppercase;
}
#div-pontuacao-jogador {
position: fixed;
bottom: 6px;
left: 75px;
font-size: 18px;
color: #fff;
text-transform: uppercase;
}
#div-pontuacao-jogador span.fa-check {
color: #07ea07;
}
#div-pontuacao-jogador span.fa-times {
color: #ff1717;
}
div#div-placar {
width: 90%;
margin-left: auto;
margin-right: auto;
}
span.span-placar-colocacao {
text-align: center;
font-size:30px;
font-weight: bold;
}
p.p-placar-jogador {
top: 0;
left: 60px;
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
margin-bottom: -20px;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
p.p-placar-pontuacao {
left: 60px;
top: 20px;
font-size: 18px;
text-transform: uppercase;
}
.p-placar-pontuacao .fa-check {
color: #00a000;
}
.p-placar-pontuacao .fa-times {
color: #d50f0f;
}
.img-placar-foto-jogador {
display: block;
width: 46px;
height: 46px;
border-radius: 50% !important;
margin: auto;
background-image: url("#{resource['img/perfil.jpg']}");
background-size: contain;
}
p.p-placar-vazio {
padding-top: 10px;
font-weight: bold;
font-size: 18px;
text-align: center;
}
#div-fim-do-jogo {
margin-top: 8px;
display: flex;
flex-direction: column;
height: calc(100vh - 128px);
content: 'viewport-units-buggyfill;' 'height: calc(100vh - 128px);';
}
.logo-topo, .logo-lades {
display: none;
height: 100%;
width: 100%;
text-align: center;
line-height: normal !important;
}
.logo-topo.fim-do-jogo, .logo-lades.fim-do-jogo {
display: table;
}
.logo-topo > div, .logo-lades > div {
display: table-cell;
vertical-align: middle;
}
.logo-topo > div > img {
width: 160px;
}
.logo-lades > div > img {
width: 156px;
}
.logo-topo > div > img, .logo-lades > div > img {
margin-bottom: -2px;
}
.head-perfil {
text-align: center;
flex: 0 1 auto;
}
.head-perfil {
display: table;
margin-top: 10px;
margin-bottom: 10px;
}
.head-perfil > div {
display: table-cell;
vertical-align: middle;
}
.head-perfil > div > img {
width: 180px;
height: 180px;
border-radius: 50%;
background-image: url("#{resource['img/perfil-amarelo.jpg']}");
background-size: contain;
}
.head-perfil > div > p {
margin-top: 0;
margin-bottom: 0;
font-weight: bold;
text-transform: capitalize;
font-size: 1.6em;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
@media (max-width: 480px) {
.logo-topo > div > img {
width: calc(17vw + 80px);
}
.logo-lades > div > img {
width: calc(17vw + 76px);
}
.head-perfil > div > img {
width: calc(30vw + 30px);
height: calc(30vw + 30px);
}
}
.pontuacao {
position: relative;
padding: 0 8px !important;
margin-bottom: 10px;
flex: 0 1 auto;
width: 100%;
}
@media (max-width: 520px) {
.pontuacao {
width: calc(100vw - 16px) !important;
}
}
@media (min-width: 521px) {
.pontuacao {
max-width: 470px !important;
margin-left: auto !important;
margin-right: auto !important;
}
}
.card-colocacao {
background: #C49F08;
width: calc(33.3333333% - 6px) !important;
float: left;
margin-right: 9px;
border-radius: 4px;
}
.card-acertos {
background: #00a000;
width: calc(33.3333333% - 6px) !important;
float: left;
margin-right: 9px;
border-radius: 4px;
}
.card-erros {
background: #d50f0f;
width: calc(33.3333333% - 6px) !important;
float: left;
border-radius: 4px;
}
.card-colocacao, .card-acertos, .card-erros {
text-align: center;
color: white;
font-weight: bold;
text-transform: uppercase;
}
.card-colocacao > p:first-child, .card-acertos > p:first-child, .card-erros > p:first-child {
font-size: 2.5em;
margin-bottom: -7px;
margin-top: -1px;
}
.card-colocacao > p:last-child, .card-acertos > p:last-child, .card-erros > p:last-child {
font-size: 1em;
margin: 0 6px 4px 6px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.agradecimento {
flex: 1 1 auto;
}
.agradecimento > div {
display: table;
height: 100%;
width: 100%;
}
.agradecimento > div > div {
display: table-cell;
vertical-align: middle;
}
p.obrigado {
text-align: center;
font-size: 20px;
width: 100%;
}
.direita {
float: right;
}
.esquerda {
float: left;
}
/*
---- BOTÕES DE CONTROLE DA PARTIDA ----
*/
.div-btn-controle-1 {
margin-right: 9px;
margin-left: 9px;
}
.div-btn-controle-2 {
margin-right: 9px;
}
.div-btn-controle-1, .div-btn-controle-2, .div-btn-controle-3 {
width: calc(33.333333% - 12px);
float: left;
}
.div-btn-principal {
width: 33.333333%;
float: left;
margin-left: calc(50% - 33.333333% / 2);
}
.btn-controle {
background-color: #F6F6F6 !important;
color: #333 !important;
text-shadow: none !important;
border: none !important;
} | 0.434701 | 0.079746 |
body {
font-family: arial!important;
font-size: 14px;
min-width:320px;
background-color: #fff;
background: url(/web/images/fon.jpg);
}
p {
margin: 0;
}
h3 {
font-size: 20px;
text-align: center;
font-weight: bold;
}
h4 {
font-size: 18px;
font-weight: bold;
}
.line {
background: url(/web/images/fon.jpg);
}
.line > p {
color:#000033;
text-align: center;
margin:0;
padding: 3px 0;
}
.navbar-inverse {
background-color: #000033;
border-radius: 0;
margin: 0;
}
.navbar-brand > img {
max-height: 30px;
}
.navbar-brand {
padding-top: 10px;
}
.navbar-inverse .navbar-toggle {
background-color: #000033;
border: 2px solid #fff;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
background-color: #cccccc;
}
.navbar-inverse .navbar-nav > li > a {
font-weight: bold;
}
.navbar-inverse .navbar-nav > li > a:hover {
background-color: #fff;
color: #000033;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
background-color: #fff;
color: #000033;
}
.section-calculator {
padding-top: 3px;
}
.link-calculator {
display: none;
background-color: #000033;
padding: 10px 0;
color:#fff;
text-align: center;
cursor: pointer;
font-weight: 700;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.main {
margin-top: 90px;
}
/*calculator*/
.calculator {
color: #000033;
font-size: 11px;
}
#calculator {
padding-top: 10px;
}
.list {
padding: 0 15px;
}
.list > li {
list-style: outside none none;
text-align: center;
border-bottom: 1px solid #000033;
cursor: pointer;
padding-top: 10px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.list > li:hover {
font-weight: bold;
}
.activeelement {
color: #3366ff;
font-weight: bold;
}
.calculator-form {
margin: 20px 13px;
}
.form-control, .input-group-addon, .btn {
font-size: 11px;
border-radius: 0;
border: 1px solid #000033;
}
.form-control:focus {
border-color: #3366ff;
}
.input-group {
margin: 5px 0;
}
.input-group-addon {
color: #000033;
}
.calculator-form > button {
margin-top: 10px;
border-color: #000033!important;
color: #000033!important;
}
.calculator-form > button:hover {
background-color: #6699ff!important;
}
.calculator-result {
text-align: center;
padding-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
.calculator-good {
color: #3366ff;
}
.calculator-bad {
color: red;
}
.calculator-form-IE p {
text-align: center;
}
/*---------currency----------*/
.currency {
margin-top: 25px;
color: #000033;
}
.currency p {
text-align: center;
font-size: 16px;
font-weight: bold;
}
.currency_date {
font-style: italic;
font-size: 13px;
text-align: center;
margin-bottom: 10px;
}
/*---------main----------*/
.main-content {
padding-top: 10px;
}
.main-content p {
padding-bottom: 10px;
}
.main-content h4 {
margin: 10px 0;
}
.main-content img {
margin-bottom: 15px;
}
.contact ul {
margin-left: 35px;
padding-bottom: 20px;
}
.gly {
font-size: 14px;
}
.type {
margin-left: 5px;
font-size: 18px;
font-family: arial;
font-weight: bold;
}
.map {
margin:15px 0;
border: 5px inset #000;
}
/*---employees---*/
.employees span {
margin-left: 10px;
font-weight: bold;
}
/*---footer---*/
footer {
margin-top: 15px;
padding-bottom: 20px;
background-color: #000033;
font-size: 11px;
color: #cccccc;
}
footer p {
margin: 15px 0;
font-weight: bold;
}
.contacts, .copy {
padding-left: 130px;
}
.contacts > dl {
margin: 5px 0;
}
.develop {
margin-top: 15px;
margin-bottom: 40px;
}
/*-----@media------*/
@media only screen and (min-width:1200px) {
body {
font-size: 16px;
}
.calculator-sm, .form-control, footer {
font-size: 14px;
}
}
@media only screen and (max-width:767px) {
.line {
background-image: none;
background-color: #cccccc;
}
body {
background-image: none;
}
.link-calculator {
display: block;
}
.section-calculator {
border-bottom: 2px solid #fff;
}
.calculator-info {
border-bottom: 1px solid #000033;
}
.main {
margin-top: 125px;
}
.main > div {
margin: 0;
}
.section-calculator {
background-color: #fff;
}
.copy {
border-top: 1px solid #cccccc;
}
.contacts, .copy {
padding-left: 50px;
}
}
@media only screen and (max-width:500px) {
.line{
font-size:10px;
}
}
@media only screen and (max-width:350px) {
.line{
font-size:9px;
}
} | web/css/tooin.css | body {
font-family: arial!important;
font-size: 14px;
min-width:320px;
background-color: #fff;
background: url(/web/images/fon.jpg);
}
p {
margin: 0;
}
h3 {
font-size: 20px;
text-align: center;
font-weight: bold;
}
h4 {
font-size: 18px;
font-weight: bold;
}
.line {
background: url(/web/images/fon.jpg);
}
.line > p {
color:#000033;
text-align: center;
margin:0;
padding: 3px 0;
}
.navbar-inverse {
background-color: #000033;
border-radius: 0;
margin: 0;
}
.navbar-brand > img {
max-height: 30px;
}
.navbar-brand {
padding-top: 10px;
}
.navbar-inverse .navbar-toggle {
background-color: #000033;
border: 2px solid #fff;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
background-color: #cccccc;
}
.navbar-inverse .navbar-nav > li > a {
font-weight: bold;
}
.navbar-inverse .navbar-nav > li > a:hover {
background-color: #fff;
color: #000033;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
background-color: #fff;
color: #000033;
}
.section-calculator {
padding-top: 3px;
}
.link-calculator {
display: none;
background-color: #000033;
padding: 10px 0;
color:#fff;
text-align: center;
cursor: pointer;
font-weight: 700;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.main {
margin-top: 90px;
}
/*calculator*/
.calculator {
color: #000033;
font-size: 11px;
}
#calculator {
padding-top: 10px;
}
.list {
padding: 0 15px;
}
.list > li {
list-style: outside none none;
text-align: center;
border-bottom: 1px solid #000033;
cursor: pointer;
padding-top: 10px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.list > li:hover {
font-weight: bold;
}
.activeelement {
color: #3366ff;
font-weight: bold;
}
.calculator-form {
margin: 20px 13px;
}
.form-control, .input-group-addon, .btn {
font-size: 11px;
border-radius: 0;
border: 1px solid #000033;
}
.form-control:focus {
border-color: #3366ff;
}
.input-group {
margin: 5px 0;
}
.input-group-addon {
color: #000033;
}
.calculator-form > button {
margin-top: 10px;
border-color: #000033!important;
color: #000033!important;
}
.calculator-form > button:hover {
background-color: #6699ff!important;
}
.calculator-result {
text-align: center;
padding-bottom: 10px;
font-size: 16px;
font-weight: bold;
}
.calculator-good {
color: #3366ff;
}
.calculator-bad {
color: red;
}
.calculator-form-IE p {
text-align: center;
}
/*---------currency----------*/
.currency {
margin-top: 25px;
color: #000033;
}
.currency p {
text-align: center;
font-size: 16px;
font-weight: bold;
}
.currency_date {
font-style: italic;
font-size: 13px;
text-align: center;
margin-bottom: 10px;
}
/*---------main----------*/
.main-content {
padding-top: 10px;
}
.main-content p {
padding-bottom: 10px;
}
.main-content h4 {
margin: 10px 0;
}
.main-content img {
margin-bottom: 15px;
}
.contact ul {
margin-left: 35px;
padding-bottom: 20px;
}
.gly {
font-size: 14px;
}
.type {
margin-left: 5px;
font-size: 18px;
font-family: arial;
font-weight: bold;
}
.map {
margin:15px 0;
border: 5px inset #000;
}
/*---employees---*/
.employees span {
margin-left: 10px;
font-weight: bold;
}
/*---footer---*/
footer {
margin-top: 15px;
padding-bottom: 20px;
background-color: #000033;
font-size: 11px;
color: #cccccc;
}
footer p {
margin: 15px 0;
font-weight: bold;
}
.contacts, .copy {
padding-left: 130px;
}
.contacts > dl {
margin: 5px 0;
}
.develop {
margin-top: 15px;
margin-bottom: 40px;
}
/*-----@media------*/
@media only screen and (min-width:1200px) {
body {
font-size: 16px;
}
.calculator-sm, .form-control, footer {
font-size: 14px;
}
}
@media only screen and (max-width:767px) {
.line {
background-image: none;
background-color: #cccccc;
}
body {
background-image: none;
}
.link-calculator {
display: block;
}
.section-calculator {
border-bottom: 2px solid #fff;
}
.calculator-info {
border-bottom: 1px solid #000033;
}
.main {
margin-top: 125px;
}
.main > div {
margin: 0;
}
.section-calculator {
background-color: #fff;
}
.copy {
border-top: 1px solid #cccccc;
}
.contacts, .copy {
padding-left: 50px;
}
}
@media only screen and (max-width:500px) {
.line{
font-size:10px;
}
}
@media only screen and (max-width:350px) {
.line{
font-size:9px;
}
} | 0.359139 | 0.08772 |
body {
color: #666666;
background: #fefefe;
font-family: "Raleway", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
}
html, body {
height: 100%;
max-height: 100%;
margin: 0;
}
html * {
-webkit-font-smoothing: antialiased;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
color: #222222;
font-family: "Raleway", sans-serif;
font-weight: 500;
letter-spacing: 0.5px;
margin-top: 0;
}
h1 {
font-size: 36px;
margin-bottom: 24px;
}
h2 {
font-size: 30px;
margin-bottom: 22px;
}
h3 {
font-size: 26px;
margin-bottom: 20px;
}
h4 {
font-size: 22px;
margin-bottom: 18px;
}
h5 {
font-size: 18px;
margin-bottom: 14px;
}
h6 {
font-size: 16px;
margin-bottom: 12px;
}
a {
color: #4cbbdb;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
letter-spacing: 0.5px;
font-size: 14px;
font-weight: 500;
outline: 0 !important;
}
a:hover, a:active, a:focus {
color: #3e9db8;
text-decoration: none;
}
p {
font-family: "Raleway", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #666666;
letter-spacing: 0.5px;
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
}
ul, ol {
padding-left: 16px;
margin-top: 0;
margin-bottom: 20px;
}
.list-featured {
list-style: none;
padding: 0;
}
.list-featured li {
position: relative;
padding-left: 14px;
margin-bottom: 7px;
}
.list-featured li:before {
position: absolute;
display: block;
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
left: 0;
top: 7px;
background-color: #4cbbdb;
}
ol li {
margin-bottom: 7px;
}
li {
color: #666666;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
}
blockquote {
border-left: 3px solid #4cbbdb;
}
.blockquote-reverse, blockquote.pull-right {
border-right: 3px solid #4cbbdb;
}
blockquote p {
font-size: 14px;
font-weight: 400;
}
cite {
color: #cccccc;
font-size: 12px;
}
strong {
font-weight: 500;
}
.text-uppercase {
text-transform: uppercase;
}
.lead {
font-size: 18px;
}
.text-sm {
font-size: 12px;
}
.text-xs {
font-size: 10px;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-default {
color: #333333;
}
.text-primary {
color: #4cbbdb;
}
.text-success {
color: #83be50;
}
.text-info {
color: #44a1e1;
}
.text-warning {
color: #ffb33b;
}
.text-danger {
color: #e31a1a;
}
.bg-default {
color: white;
background: #333333;
padding: 3px 4px;
}
.bg-primary {
color: white;
background: #4cbbdb;
padding: 3px 4px;
}
.bg-success {
color: white;
background: #83be50;
padding: 3px 4px;
}
.bg-info {
color: white;
background: #44a1e1;
padding: 3px 4px;
}
.bg-warning {
color: white;
background: #ffb33b;
padding: 3px 4px;
}
.bg-danger {
color: white;
background: #e31a1a;
padding: 3px 4px;
}
/* / End Typography */
.row {
margin-right: 0;
margin-left: 0;
}
img {
width: 100%;
max-width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
}
img.btn-pill {
border: 1px solid transparent;
}
.page-header {
font-size: 30px;
border: none;
margin-top: 0;
margin-bottom: 30px;
}
.page-header:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -25px;
}
.page-header.text-left:after {
margin-left: 0;
}
.page-header.text-right:after {
margin-left: -50px;
}
.page-header h2 {
margin-bottom: 15px;
}
.page-header.wsub {
margin-bottom: 10px;
}
.page-header.wsub h2 {
margin-bottom: 17px;
}
.sub-title {
color: black;
font-size: 24px;
font-weight: 400;
}
.title-w-divider {
margin-bottom: 25px;
}
.title-w-divider:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -25px;
}
.title-w-divider.text-left:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: 0px;
}
.title-w-divider.text-right:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -50px;
}
.title-description {
text-align: center;
width: 60%;
margin: 15px auto 30px auto;
}
.space-top {
margin-top: 20px !important;
}
.space-top-30 {
margin-top: 30px !important;
}
.space-top-2x {
margin-top: 40px !important;
}
.space-bottom {
margin-bottom: 20px !important;
}
.space-bottom-30 {
margin-bottom: 30px !important;
}
.space-bottom-2x {
margin-bottom: 40px !important;
}
.line-height-30 {
line-height: 30px !important;
}
.space-left {
padding-left: 15px !important;
}
.space-left-2x {
padding-left: 30px !important;
}
.space-right-10 {
padding-right: 10px !important;
}
.space-right {
padding-right: 15px !important;
}
.space-right-2x {
padding-right: 30px !important;
}
.space-25 {
margin: 12.5px 0;
line-height: 0;
}
.space-50 {
margin: 25px 0;
line-height: 0;
}
.space-100 {
margin: 50px 0;
line-height: 0;
}
.space-200 {
margin: 100px 0;
line-height: 0;
}
.margin-left {
margin-left: 15px;
}
.margin-left-2x {
margin-left: 30px;
}
.margin-right {
margin-right: 15px;
}
.margin-right-2x {
margin-right: 30px;
}
.no-margin {
margin: 0 !important;
}
.no-padding {
padding: 0 !important;
}
.no-border {
border: none !important;
}
.no-border-radius {
border-radius: 0 !important;
}
.rounded {
border-radius: 5px !important;
}
a:focus {
outline: none !important;
}
.btn:focus {
outline: none !important;
}
.btn-social:focus {
outline: none !important;
}
input:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
textarea:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
select:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
.form-control:focus {
border: 1px solid #cccccc;
}
.fa {
display: initial !important;
}
/* Animation Durations */
.animated {
-webkit-animation-duration: 1s !important;
animation-duration: 1s !important;
}
.animated.first {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 0.5s;
}
.animated.second {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 0.8s;
}
.animated.third {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1s;
}
.animated.fourth {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 1.4s;
}
.animated.fifth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1.5s;
}
.animated.sixth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1.8s;
}
.animated.seventh {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 2s;
}
.animated.eighth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 2.4s;
}
.animated.nineth {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 2.8s;
}
/* End Animation Durations */
/* Buttons */
.btn {
font-weight: 500;
font-size: 13px;
letter-spacing: 0.5px;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
border-radius: 0;
padding: 10px 18px;
margin: 5px;
}
.btn span {
margin-left: 10px;
margin-right: 10px;
}
.btn:hover {
background: transparent;
}
.btn:focus {
background: transparent;
}
.btn-lg {
font-size: 15px;
padding: 12px 22px;
}
.btn-sm {
font-size: 12px;
padding: 7px 15px;
}
.btn-xs {
font-size: 10px;
padding: 5px 12px;
}
.btn-sm i {
font-size: 10px;
}
.btn-xs i {
font-size: 8px;
}
.btn-social.btn-sm i {
font-size: 14px;
}
.btn-social.btn-xs i {
font-size: 12px;
}
.btn-rounded {
border-radius: 5px !important;
}
.btn-pill {
border-radius: 50px !important;
}
.btn-circle {
border-radius: 50% !important;
height: 40px;
width: 40px;
padding: 3px !Important;
}
.btn-square {
height: 40px;
width: 40px;
border-radius: 5px;
padding: 3px !Important;
}
.btn-link {
color: #4cbbdb;
}
.btn-link:hover {
color: #3e9db8;
text-decoration: none;
}
.btn-link:focus {
color: #3e9db8;
text-decoration: none;
}
a.btn {
white-space: nowrap;
}
/* Default Button */
.btn-default, .btn-default:active, .btn-default:focus {
color: #333333;
background: transparent;
}
.btn-default:hover {
color: white;
background: #333333;
border: 2px solid #333333;
}
.btn-default-filled, .btn-default-filled:active, .btn-default-filled:focus {
color: white;
background: #333333;
border: 2px solid #333333;
}
.btn-default-filled:hover {
color: white;
background: black;
border: 2px solid black;
}
/* / End Default Button */
/* Primary Button */
.btn-primary, .btn-primary:active, .btn-primary:focus {
color: #4cbbdb;
border: 2px solid #4cbbdb;
background: transparent;
}
.btn-primary:hover {
color: white;
background: #4cbbdb;
border: 2px solid #4cbbdb;
}
.btn-primary-filled, .btn-primary-filled:active, .btn-primary-filled:focus {
color: white;
background: #4cbbdb;
border: 2px solid #4cbbdb;
}
.btn-primary-filled:hover {
color: white;
background: #3e9db8;
border: 2px solid #3e9db8;
}
/* / End Primary Button */
/* Success Button */
.btn-success, .btn-success:active, .btn-success:focus {
color: #83be50;
border: 2px solid #83be50;
background: transparent;
}
.btn-success:hover {
color: white;
background: #83be50;
border: 2px solid #83be50;
}
.btn-success-filled, .btn-success-filled:active, .btn-success-filled:focus {
color: white;
background: #83be50;
border: 2px solid #83be50;
}
.btn-success-filled:hover {
color: white;
background: #679440;
border: 2px solid #679440;
}
/* / End Success Button */
/* Info Button */
.btn-info, .btn-info:active, .btn-info:focus {
color: #44a1e1;
border: 2px solid #44a1e1;
background: transparent;
}
.btn-info:hover {
color: white;
background: #44a1e1;
border: 2px solid #44a1e1;
}
.btn-info-filled, .btn-info-filled:active, .btn-info-filled:focus {
color: white;
background: #44a1e1;
border: 2px solid #44a1e1;
}
.btn-info-filled:hover {
color: white;
background: #3379a9;
border: 2px solid #3379a9;
}
/* / End Info Button */
/* Warning Button */
.btn-warning, .btn-warning:active, .btn-warning:focus {
color: #ffb33b;
border: 2px solid #ffb33b;
background: transparent;
}
.btn-warning:hover {
color: white;
background: #ffb33b;
border: 2px solid #ffb33b;
}
.btn-warning-filled, .btn-warning-filled:active, .btn-warning-filled:focus {
color: white;
background: #ffb33b;
border: 2px solid #ffb33b;
}
.btn-warning-filled:hover {
color: white;
background: #e59618;
border: 2px solid #e59618;
}
/* / End Warning Button */
/* Danger Button */
.btn-danger, .btn-danger:active, .btn-danger:focus {
color: #e31a1a;
border: 2px solid #e31a1a;
background: transparent;
}
.btn-danger:hover {
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
}
.btn-danger-filled, .btn-danger-filled:active, .btn-danger-filled:focus {
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
}
.btn-danger-filled:hover {
color: white;
background: #bb0707;
border: 2px solid #bb0707;
}
/* / End Danger Button */
/* Social Buttons */
.btn-social {
font-size: 13px;
padding: 8px 15px;
letter-spacing: 0.5px;
vertical-align: middle;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
margin: 5px;
}
a.btn-social {
white-space: nowrap;
}
.btn-social span {
margin-left: 10px;
}
/* Facebook Button */
.btn-facebook, .btn-facebook:active, .btn-facebook:focus {
color: #4e68a1;
background: transparent;
border: 2px solid #4e68a1;
}
.btn-facebook:hover {
color: white !important;
background: #4e68a1;
border: 2px solid #4e68a1;
}
.btn-facebook-filled, .btn-facebook-filled:active, .btn-facebook-filled:focus {
color: white;
background: #4e68a1;
border: 2px solid #4e68a1;
}
.btn-facebook-filled:hover {
color: white;
background: #3b4f7a;
border: 2px solid #3b4f7a;
}
.btn-facebook-link, .btn-facebook-link:active, .btn-facebook-link:focus {
color: #4e68a1;
background: transparent;
border: none;
}
.btn-facebook-link:hover {
color: #3b4f7a;
}
/* / End Facebook Button */
/* Twitter Button */
.btn-twitter, .btn-twitter:active, .btn-twitter:focus {
color: #65b5f2;
background: transparent;
border: 2px solid #65b5f2;
}
.btn-twitter:hover {
color: white;
background: #65b5f2;
border: 2px solid #65b5f2;
}
.btn-twitter-filled, .btn-twitter-filled:active, .btn-twitter-filled:focus {
color: white;
background: #65b5f2;
border: 2px solid #65b5f2;
}
.btn-twitter-filled:hover {
color: white;
background: #5294c6;
border: 2px solid #5294c6;
}
.btn-twitter-filled:hover {
color: white;
background: #5294c6;
border: 2px solid #5294c6;
}
.btn-twitter-link, .btn-twitter-link:active, .btn-twitter-link:focus {
color: #65b5f2;
background: transparent;
border: none;
}
.btn-twitter-link:hover {
color: #5294c6;
}
/* / End Twitter Button */
/* Google Button */
.btn-google, .btn-google:active, .btn-google:focus {
color: #e05d4b;
background: transparent;
border: 2px solid #e05d4b;
}
.btn-google:hover {
color: white;
background: #e05d4b;
border: 2px solid #e05d4b;
}
.btn-google-filled, .btn-google-filled:active, .btn-google-filled:focus {
color: white;
background: #e05d4b;
border: 2px solid #e05d4b;
}
.btn-google-filled:hover {
color: white;
background: #b94c3d;
border: 2px solid #b94c3d;
}
.btn-google-link, .btn-google-link:active, .btn-google-link:focus {
color: #e05d4b;
background: transparent;
border: none;
}
.btn-google-link:hover {
color: #b94c3d;
}
/* / End Google Button */
/* Linkedin Button */
.btn-linkedin, .btn-linkedin:active, .btn-linkedin:focus {
color: #2083bc;
background: transparent;
border: 2px solid #2083bc;
}
.btn-linkedin:hover {
color: white;
background: #2083bc;
border: 2px solid #2083bc;
}
.btn-linkedin-filled, .btn-linkedin-filled:active, .btn-linkedin-filled:focus {
color: white;
background: #2083bc;
border: 2px solid #2083bc;
}
.btn-linkedin-filled:hover {
color: white;
background: #186592;
border: 2px solid #186592;
}
.btn-linkedin-link, .btn-linkedin-link:active, .btn-linkedin-link:focus {
color: #2083bc;
background: transparent;
border: none;
}
.btn-linkedin-link:hover {
color: #186592;
}
/* / End Linkedin Button */
/* Pinterest Button */
.btn-pinterest, .btn-pinterest:active, .btn-pinterest:focus {
color: #d2373b;
background: transparent;
border: 2px solid #d2373b;
}
.btn-pinterest:hover {
color: white;
background: #d2373b;
border: 2px solid #d2373b;
}
.btn-pinterest-filled, .btn-pinterest-filled:active, .btn-pinterest-filled:focus {
color: white;
background: #d2373b;
border: 2px solid #d2373b;
}
.btn-pinterest-filled:hover {
color: white;
background: #ad2c2f;
border: 2px solid #ad2c2f;
}
.btn-pinterest-link, .btn-pinterest-link:active, .btn-pinterest-link:focus {
color: #d2373b;
background: transparent;
border: none;
}
.btn-pinterest-link:hover {
color: #ad2c2f;
}
/* / End Pinterest Button */
/* Dribbble Button */
.btn-dribbble, .btn-dribbble:active, .btn-dribbble:focus {
color: #ec5f94;
background: transparent;
border: 2px solid #ec5f94;
}
.btn-dribbble:hover {
color: white;
background: #ec5f94;
border: 2px solid #ec5f94;
}
.btn-dribbble-filled, .btn-dribbble-filled:active, .btn-dribbble-filled:focus {
color: white;
background: #ec5f94;
border: 2px solid #ec5f94;
}
.btn-dribbble-filled:hover {
color: white;
background: #b4446e;
border: 2px solid #b4446e;
}
.btn-dribbble-link, .btn-dribbble-link:active, .btn-dribbble-link:focus {
color: #ec5f94;
background: transparent;
border: none;
}
.btn-dribbble-link:hover {
color: #b4446e;
}
/* / End Dribbble Button */
/* / End Social Buttons */
/* Checkboxes */
.checkbox {
padding-left: 10px;
}
.checkbox label {
display: inline-block;
position: relative;
padding-left: 20px;
width: 25px;
height: 25px;
}
.checkbox label span {
margin-top: 4px;
position: absolute;
white-space: nowrap;
}
.checkbox label::before {
content: "";
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
margin-left: -20px;
border: 2px solid #cccccc;
border-radius: 5px;
background-color: white;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
-o-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 label::after {
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
top: 0;
margin-left: -17px;
padding-left: 3px;
padding-top: 3px;
font-size: 14px;
color: #333333;
}
.checkbox + .checkbox, .radio + .radio {
margin-top: 0;
}
.checkbox input[type="checkbox"] {
opacity: 0;
}
.checkbox input[type="checkbox"]:checked + label::after {
font-family: 'FontAwesome';
content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label {
opacity: 0.3;
}
.checkbox input[type="checkbox"]:disabled + label::before {
background-color: #ebebeb;
cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
border-radius: 50%;
}
.checkbox.checkbox-inline {
margin-top: 0;
}
.checkbox-default input[type="checkbox"]:checked + label::before {
background-color: #333333;
border-color: #333333;
}
.checkbox-default input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-default label {
color: #333333;
}
.checkbox-primary input[type="checkbox"]:checked + label::before {
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-primary label {
color: #4cbbdb;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
background-color: #83be50;
border-color: #83be50;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-success label {
color: #83be50;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
background-color: #44a1e1;
border-color: #44a1e1;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-info label {
color: #44a1e1;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
background-color: #ffb33b;
border-color: #ffb33b;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-warning label {
color: #ffb33b;
}
.checkbox-danger input[type="checkbox"]:checked + label::before {
background-color: #e31a1a;
border-color: #e31a1a;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-danger label {
color: #e31a1a;
}
/* / End Checkboxes */
/* Radio Buttons */
.radio {
padding-left: 10px;
}
.radio label {
display: inline-block;
position: relative;
padding-left: 20px;
width: 25px;
height: 25px;
}
.radio label span {
margin-top: 2px;
position: absolute;
white-space: nowrap;
}
.radio label::before {
content: "";
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
margin-left: -20px;
border: 3px solid #cccccc;
border-radius: 50%;
background-color: white;
-webkit-transition: border 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out;
}
.radio label::after {
display: inline-block;
position: absolute;
content: " ";
width: 11px;
height: 11px;
left: 7px;
top: 7px;
margin-left: -20px;
border-radius: 50%;
background-color: #cccccc;
-webkit-transform: scale(0, 0);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
opacity: 0;
}
.radio input[type="radio"]:checked + label::after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
opacity: 0.3;
}
.radio input[type="radio"]:disabled + label::before {
cursor: not-allowed;
}
.radio.radio-inline {
margin-top: 0;
}
.radio-default input[type="radio"] + label::after {
background-color: #333333;
}
.radio-default input[type="radio"]:checked + label::before {
border-color: #333333;
}
.radio-default input[type="radio"]:checked + label::after {
background-color: #333333;
}
.radio-default label {
color: #333333;
}
.radio-primary input[type="radio"] + label::after {
background-color: #4cbbdb;
}
.radio-primary input[type="radio"]:checked + label::before {
border-color: #4cbbdb;
}
.radio-primary input[type="radio"]:checked + label::after {
background-color: #4cbbdb;
}
.radio-primary label {
color: #4cbbdb;
}
.radio-success input[type="radio"] + label::after {
background-color: #83be50;
}
.radio-success input[type="radio"]:checked + label::before {
border-color: #83be50;
}
.radio-success input[type="radio"]:checked + label::after {
background-color: #83be50;
}
.radio-success label {
color: #83be50;
}
.radio-info input[type="radio"] + label::after {
background-color: #44a1e1;
}
.radio-info input[type="radio"]:checked + label::before {
border-color: #44a1e1;
}
.radio-info input[type="radio"]:checked + label::after {
background-color: #44a1e1;
}
.radio-info label {
color: #44a1e1;
}
.radio-warning input[type="radio"] + label::after {
background-color: #ffb33b;
}
.radio-warning input[type="radio"]:checked + label::before {
border-color: #ffb33b;
}
.radio-warning input[type="radio"]:checked + label::after {
background-color: #ffb33b;
}
.radio-warning label {
color: #ffb33b;
}
.radio-danger input[type="radio"] + label::after {
background-color: #e31a1a;
}
.radio-danger input[type="radio"]:checked + label::before {
border-color: #e31a1a;
}
.radio-danger input[type="radio"]:checked + label::after {
background-color: #e31a1a;
}
.radio-danger label {
color: #e31a1a;
}
/* / End Radio Buttons */
/* Paginations */
.pagination .btn {
font-size: 12px;
font-weight: 400;
padding: 4px 15px;
margin: 0 5px;
line-height: 2em;
}
.pagination .btn-direction {
font-size: 10px;
padding: 5.5px 12px;
line-height: 2.1em;
}
.pagination .btn-default {
color: #333333;
border: 1px solid #ebebeb;
background: transparent;
}
.pagination .btn-default:hover {
color: white;
background: #4cbbdb;
border: 1px solid #4cbbdb;
}
.pagination .btn-active {
color: white !important;
background: #4cbbdb !important;
border: 1px solid #4cbbdb !important;
}
.pagination .btn-active:hover {
color: white !important;
background: #3e9db8 !important;
border: 1px solid #3e9db8 !important;
}
.pagination .btn-default-filled {
color: #333333;
background: #ebebeb;
border: 1px solid #ebebeb;
}
.pagination .btn-default-filled:hover {
color: white;
background: #4cbbdb;
border: 1px solid #4cbbdb;
}
.pagination .btn-circle {
border-radius: 50% !important;
height: 30px;
width: 30px;
padding: 3px !important;
}
/* / End Paginations */
/* Button Groups */
.btn-group-xl > .btn {
font-size: 20px;
padding: 9px 10px;
border-radius: 5px;
}
.btn-group-lg > .btn {
font-size: 15px;
padding: 10px 12px;
border-radius: 5px;
}
.btn-group > .btn {
border-radius: 5px;
}
.btn-group-sm > .btn {
font-size: 12px;
padding: 5px 4px;
border-radius: 5px;
}
.btn-group-xs > .btn {
font-size: 10px;
padding: 3px;
border-radius: 5px;
}
/* / End Button Groups */
/* Dropdown Buttons */
.dropdown-buttons {
display: inline-block;
position: relative;
}
.dropdown-buttons .btn-group > .btn {
padding-left: 17px;
}
.dropdown-buttons .dropdown-icon {
margin: 0 2px 0 10px;
}
.dropdown-buttons .btn {
border-radius: 0;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
color: white;
background-color: #333333;
border-color: #333333;
}
.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
color: white;
background-color: #333333;
border-color: #333333;
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
color: white;
background-color: #83be50;
border-color: #83be50;
}
.btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
color: white;
background-color: #83be50;
border-color: #83be50;
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
color: white;
background-color: #44a1e1;
border-color: #44a1e1;
}
.btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
color: white;
background-color: #44a1e1;
border-color: #44a1e1;
}
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
color: white;
background-color: #ffb33b;
border-color: #ffb33b;
}
.btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
color: white;
background-color: #ffb33b;
border-color: #ffb33b;
}
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
color: white;
background-color: #e31a1a;
border-color: #e31a1a;
}
.btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
color: white;
background-color: #e31a1a;
border-color: #e31a1a;
}
/* / End Dropdown Buttons */
/* / End Buttons */
/* Tabs & Accordions */
/* Tabs */
.nav-tabs {
border-bottom: 2px solid #ebebeb;
}
.nav-tabs > li {
float: none;
margin-bottom: -2px;
display: inline-block;
}
.nav-tabs > li > a {
position: relative;
z-index: 0;
display: block;
color: #666666;
text-decoration: none;
font-weight: 700;
margin-right: 0;
padding: 20px;
line-height: 1.5;
background-color: transparent;
border: none;
border-bottom: 2px solid transparent;
border-radius: 0;
}
.nav-tabs > li > a:focus {
background: transparent;
border: 0 !important;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
color: #4cbbdb;
background: none;
border: none;
border-bottom: 2px solid #4cbbdb !important;
-webkit-transition: 0s;
-moz-transition: 0s;
-o-transition: 0s;
transition: 0s;
}
.nav > li > a:hover {
background: none;
border: none;
}
.nav-pills.text-right > li {
float: right;
}
.nav.nav-pills a:hover {
color: white;
background: #3e9db8;
}
.tab-content {
padding-top: 30px;
}
/* / End Tabs */
/* Accordions */
.panel-group .panel {
background: none;
-webkit-box-shadow: none;
box-shadow: none;
margin-bottom: 0;
border: 0;
border-radius: 0;
}
.panel-group .panel-heading {
padding: 15px 0;
border: none;
border-radius: 0;
}
.panel-group .panel-title {
font-size: 14px;
font-weight: 500;
}
.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
border-top: none;
}
.panel-group .panel-heading > a:after {
display: inline-block;
vertical-align: middle;
font-family: "FontAwesome";
font-size: 16px;
content: "\f0d8";
margin-top: -2px;
margin-left: 10px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-ms-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0);
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.panel-group .panel-heading .panel-title.collapsed:after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.panel-group .panel-body {
padding: 15px 0;
}
.panel-group.tabbed .panel-heading {
background: #f8f8f8;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 15px;
}
.panel-group.tabbed a {
color: #666666;
}
.panel-group.tabbed .panel-heading > a:after {
float: right;
}
.panel-group.tabbed .panel-heading .panel-title.collapsed:after {
float: right;
margin-top: 2px;
}
/* / End Accordions */
/* / End Tabs & Accordions */
/* Labels Badges & Alerts */
/* Labels */
.label {
font-weight: 400;
padding: .2em .6em;
}
.label-pill {
border-radius: 5em;
}
.label-default {
color: #333333;
background-color: transparent;
border: 2px solid #333333;
}
.label-default-filled {
color: white;
background-color: #333333;
border: 2px solid #333333;
}
.label-primary {
color: #4cbbdb;
background-color: transparent;
border: 2px solid #4cbbdb;
}
.label-primary-filled {
color: white;
background-color: #4cbbdb;
border: 2px solid #4cbbdb;
}
.label-success {
color: #83be50;
background-color: transparent;
border: 2px solid #83be50;
}
.label-success-filled {
color: white;
background-color: #83be50;
border: 2px solid #83be50;
}
.label-info {
color: #44a1e1;
background-color: transparent;
border: 2px solid #44a1e1;
}
.label-info-filled {
color: white;
background-color: #44a1e1;
border: 2px solid #44a1e1;
}
.label-warning {
color: #ffb33b;
background-color: transparent;
border: 2px solid #ffb33b;
}
.label-warning-filled {
color: white;
background-color: #ffb33b;
border: 2px solid #ffb33b;
}
.label-danger {
color: #e31a1a;
background-color: transparent;
border: 2px solid #e31a1a;
}
.label-danger-filled {
color: white;
background-color: #e31a1a;
border: 2px solid #e31a1a;
}
/* / End Labels */
/* Badges */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
color: white;
background-color: #4cbbdb;
}
.nav-pills > li > a:hover {
color: white;
background-color: #cccccc;
}
.nav-pills > li > a {
border-radius: 5px;
padding: 10px;
}
.badge {
color: white;
background-color: #4cbbdb;
font-size: 10px;
font-weight: 400;
border-radius: 5px;
padding: 6px 7px;
}
.active .badge {
color: #4cbbdb !important;
}
/* / End Badges */
/* Alerts */
/*.alert {
border: 2px solid transparent;
border-radius: 5px;
}
.alert-success {
color: white;
background-color: #83be50;
border-color: #679440;
}
.alert-success .close {
color: #679440;
}*/
.alert-info {
color: white;
background-color: #44a1e1;
border-color: #3379a9;
}
.alert-info .close {
color: #3379a9;
}
.alert-warning {
color: white;
background-color: #ffb33b;
border-color: #e59618;
}
.alert-warning .close {
color: #e59618;
}
/*.alert-danger {
color: white;
background-color: #e31a1a;
border-color: #bb0707;
}
.alert-danger .close {
color: #bb0707;
}*/
.alert-dismissible .close {
font-size: 16px;
top: -14px;
right: -31px;
text-shadow: none;
opacity: 0.5;
}
.alert-dismissible .close:hover {
opacity: 0.8;
}
.alert-sm {
font-size: 14px;
padding: 5px;
}
.alert i {
margin: 0 10px 0 5px;
}
.alert-sm.alert-dismissible .close {
top: -5px;
right: -2px;
}
/* / End Alerts */
/* / End Labels Badges & Alerts */
/* Listgroups & Panels */
/* Listgroups */
.list-group-item {
color: #666666;
background-color: white;
font-size: 14px;
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
}
.list-group-item p {
font-size: 14px;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
a.list-group-item:hover {
color: #4cbbdb;
}
a.list-group-item, button.list-group-item {
color: #666666;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
color: white;
}
a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
color: #222222;
}
/* / End Listgroups */
/* Panels */
.panel-default {
border-color: black;
}
.panel-default > .panel-heading {
color: white;
background-color: #333333;
border-color: black;
}
.panel-success {
border-color: #679440;
}
.panel-success > .panel-heading {
color: white;
background-color: #83be50;
border-color: #679440;
}
.panel-primary {
border-color: #3e9db8;
}
.panel-primary > .panel-heading {
color: white;
background-color: #4cbbdb;
border-color: #3e9db8;
}
.panel-info {
border-color: #3379a9;
}
.panel-info > .panel-heading {
color: white;
background-color: #44a1e1;
border-color: #3379a9;
}
.panel-warning {
border-color: #e59618;
}
.panel-warning > .panel-heading {
color: white;
background-color: #ffb33b;
border-color: #e59618;
}
.panel-danger {
border-color: #bb0707;
}
.panel-danger > .panel-heading {
color: white;
background-color: #e31a1a;
border-color: #bb0707;
}
/* / End Panels */
/* Well */
.well {
min-height: 20px;
padding: 20px;
margin-bottom: 20px;
background-color: #ebebeb;
border: 1px solid #cccccc;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.rounded-well {
border-radius: 5px;
}
/* / End Well */
/* Jumbotron */
.jumbotron {
background: #ebebeb;
border: 1px solid #cccccc;
border-radius: 0 !important;
}
.rounded-jumbotron {
border-radius: 5px !important;
}
.jumbotron h1 {
color: #4cbbdb;
font-weight: 400;
margin-top: 0;
margin-bottom: 25px;
}
.jumbotron p {
font-size: 18px;
font-weight: 400;
margin-bottom: 25px;
}
/* / End Jumbotron */
/* / End Listgroups & Panels */
/* Progress Bars */
.progress {
height: 20px;
margin-bottom: 20px;
overflow: hidden;
background-color: #ebebeb;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
}
.progress-bar {
font-size: 12px;
line-height: 20px;
color: white;
background-color: #4cbbdb;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.progress-bar-default {
background-color: #333333;
}
.progress-bar-primary {
background-color: #4cbbdb;
}
.progress-bar-success {
background-color: #83be50;
}
.progress-bar-info {
background-color: #44a1e1;
}
.progress-bar-warning {
background-color: #ffb33b;
}
.progress-bar-danger {
background-color: #e31a1a;
}
.progress-label .sr-only {
position: relative;
}
/* / End Progress Bars */
/* Tables */
table {
width: 100%;
max-width: 100%;
}
table > caption + thead > tr:first-child > th, table > caption + thead > tr:first-child > td, table > colgroup + thead > tr:first-child > th, table > colgroup + thead > tr:first-child > td, table > thead:first-child > tr:first-child > th, table > thead:first-child > tr:first-child > td {
border-top: 0;
}
table > thead > tr > th {
vertical-align: bottom;
border-bottom: 1px solid #cccccc;
}
table > thead > tr > th, table > thead > tr > td {
border-bottom-width: 2px !important;
}
table > thead > tr > th, table > thead > tr > td, table > tbody > tr > th, table > tbody > tr > td, table > tfoot > tr > th, table > tr > td {
padding: 15px;
line-height: 1.5;
vertical-align: top;
border-bottom: 1px solid #ebebeb;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f8f8f8 !important;
}
/* Shoppong Cart Table */
.shopping-cart thead {
background: #f8f8f8;
}
table.shopping-cart > thead > tr > th, table > thead > tr > td {
border-bottom-width: 0 !important;
}
.shopping-cart thead th {
color: #222222;
padding: 10px 0;
font-size: 16px;
line-height: 30px;
}
.shopping-cart tbody td {
color: #666666;
padding: 10px 0;
vertical-align: middle;
font-size: 14px;
}
.shopping-cart img {
max-width: 50px;
}
.cart-item {
border-bottom: 1px solid #f8f8f8;
}
.cart-item img {
max-width: 50px;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
-ms-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.cart-item a img:hover {
opacity: 0.8;
}
.qty input[type="number"] {
max-width: 50px;
max-height: 40px;
padding: 10px 4px;
outline: none !important;
}
.x-remove {
text-align: center;
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
border-radius: 50%;
height: 20px;
width: 20px;
font-size: 16px;
line-height: 15px;
margin-right: 30px;
padding: 0 0 0 1px;
float: right;
}
/* / End Shopping Cart Table */
/* / End Tables */
/* End Base CSS */
/* Headers */
/* Navigation */
/* Top Menus */
.top-menu {
background-color: #f8f8f8;
}
.top-menu-inverse {
background-color: #333333;
}
.top-menu-primary {
background-color: #4cbbdb;
}
.top-menu p {
font-size: 12px;
margin-bottom: 0;
padding: 8px 15px;
}
.top-menu a {
color: #666666 !important;
font-size: 12px !important;
font-weight: 400;
margin-right: 10px;
}
.top-menu a:hover {
color: #4cbbdb !important;
}
.top-menu-inverse a {
color: #cccccc !important;
}
.top-menu-primary a {
color: white !important;
}
.top-menu-primary a:hover {
color: #ebebeb !important;
}
.top-menu-inverse p {
color: #cccccc !important;
}
.top-menu-primary p {
color: white !important;
}
.top-menu .left i {
margin-right: 5px;
}
.top-menu .right i {
margin-right: 5px;
}
.top-menu .right {
float: right;
}
.top-menu .right a {
margin: 0 0 0 15px;
}
.btn-top-menu {
background: transparent;
font-size: 10px !important;
font-weight: 700;
border: 2px solid #666666;
margin: -3px 0 0 10px;
padding: 5px 0;
}
.btn-top-menu:hover {
border: 2px solid #4cbbdb;
}
.btn-top-menu a {
font-size: 10px !important;
margin: 0 !important;
padding: 8px;
}
.btn-top-menu-inverse {
background: transparent;
font-size: 10px !important;
font-weight: 700;
border: 2px solid #cccccc;
margin: -3px 0 0 10px;
padding: 5px 0;
}
.btn-top-menu-inverse:hover {
border: 2px solid #4cbbdb;
}
.btn-top-menu-inverse a {
font-size: 10px !important;
margin: 0 !important;
padding: 8px;
}
/* End Top Menus */
.nav > li > a {
font-family: "Raleway", sans-serif;
padding: 15px;
}
.nav li label a {
font-family: "Raleway", sans-serif;
}
.nav > li > a > img {
max-width: 25px;
display: inline-block;
}
.navbar {
border: 0;
border-radius: 0;
margin-bottom: 0;
}
.navbar i {
font-size: 14px;
vertical-align: middle;
}
.navbar-fixed-top {
border-radius: 0;
}
.navbar-fixed-top .container {
padding-left: 30px;
padding-right: 30px;
}
.top-nav-collapse {
-webkit-transition: ease-in 0.3s;
-moz-transition: ease-in 0.3s;
-o-transition: ease-in 0.3s;
transition: ease-in 0.3s;
}
.navbar-brand {
color: #333333 !important;
font-size: 18px;
line-height: 20px;
font-weight: 500;
height: 80px;
padding: 30px 15px;
}
.navbar-brand span {
color: #4cbbdb;
}
.navbar-brand > img {
width: auto;
max-height: 40px;
}
.navbar-toggle {
margin: 8px 0px 8px 8px;
padding-right: 15px;
}
.navbar-toggle .icon-bar {
background: #4cbbdb;
width: 20px;
height: 3px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
.navbar-collapse {
text-align: center;
}
.navbar-default {
background-color: white;
}
.navbar-default .navbar-nav > li > a {
color: #666666;
font-size: 13px;
font-weight: 400;
}
.navbar-default .navbar-nav > li > a:hover {
color: #4cbbdb;
}
.navbar-default .navbar-nav > li > a:focus {
color: #666666 !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
color: #4cbbdb !important;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:hover {
color: #3e9db8 !important;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #4cbbdb;
}
.navbar-default .navbar-toggle {
border-color: transparent;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-default .dropdown-menu > li > a {
font-size: 13px;
padding: 8px 15px;
text-align: left;
}
.dropdown-menu > li > a:focus {
background: transparent !important;
}
.navbar-default .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
display: none;
float: left;
min-width: 50px;
padding: 10px 15px;
margin: 5px 0 0 0;
background-color: white;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
z-index: 9999;
border-radius: 0;
}
.w-image .dropdown-menu {
padding: 5px 0;
}
.w-image .dropdown-menu > li > a {
padding: 8px 12px;
}
.dropdown-menu > li > a {
color: #666666;
border: none;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
border: none;
}
.dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #ebebeb;
}
.dropdown img {
max-width: 25px;
display: inline-block;
}
.dropdown.w-image a {
color: #666666;
}
.dropdown.w-image a:hover {
opacity: 0.7;
color: #666666 !important;
}
/* Navbar Inverse */
navbar-inverse {
background-color: #222222;
}
.navbar-inverse .navbar-nav > li > a {
color: white;
font-size: 12px;
font-weight: 400;
}
.navbar-inverse .navbar-nav > li > a:hover {
color: #4cbbdb;
}
.navbar-inverse .navbar-nav > li > a:focus {
color: white !important;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse.navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
color: #4cbbdb !important;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a:hover {
color: #3e9db8 !important;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: white;
}
.navbar-inverse .navbar-toggle {
border-color: transparent;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: transparent;
}
.navbar-inverse .dropdown-menu > li > a {
font-size: 12px;
padding: 8px 15px;
text-align: left;
}
.navbar-inverse .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .dropdown-menu {
background-color: #222222;
}
.navbar-inverse .dropdown-menu > li > a {
color: white;
border: none;
}
.navbar-inverse .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
border: none;
}
.navbar-inverse .dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #333333;
}
.navbar-inverse .dropdown.w-image a {
color: #ebebeb;
}
.navbar-inverse .dropdown.w-image a:hover {
opacity: 0.7;
color: #ebebeb !important;
}
/* End Navbar Inverse */
/* End Navigation */
/* Slider */
#slider .carousel-control.left, #slider .carousel-control.right {
background-image: none !important;
}
header h3 {
font-size: 36px;
}
header p {
font-size: 18px;
}
#slider.dark h3, #slider .item.dark h3 {
color: white;
}
#slider.dark p, #slider .item.dark p {
color: #ebebeb;
}
#slider .carousel-caption {
text-align: center;
height: auto;
text-shadow: none !important;
top: 0;
bottom: 0;
padding: 0;
}
.carousel-control {
font-size: 32px;
text-shadow: none;
background-color: transparent;
}
#slider.dark .carousel-control {
color: #ebebeb;
}
.carousel-control .lnr-chevron-left {
position: absolute;
top: 45%;
left: 15%;
z-index: 5;
display: inline-block;
margin-top: -10px;
float: left;
}
.carousel-control .lnr-chevron-right {
position: absolute;
top: 45%;
right: 15%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
#slider .slider-content {
padding: 185px 0;
}
.slide-content .slide-title span {
margin-bottom: 15px;
}
.slider-content .slide-text {
margin-top: 15px;
}
.slider-content .btn {
margin: 15px;
}
#slider .item {
min-height: 560px;
height: auto;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #f8f8f8;
}
#slider.dark .item, #slider .item.dark {
background-color: #222222;
}
#slider .fashion {
background-image: url("../images/slide1.jpg");
}
#slider .furniture {
background-image: url("../images/slide2.jpg");
}
#slider .art {
background-image: url("../images/slide3.jpg");
}
#slider .slide-text {
color: #222222;
line-height: 1.5;
}
#slider p.caption {
padding: 6px;
color: #222222;
}
#slider .carousel-control {
color: #222222;
opacity: 0.8;
}
/* End Slider */
/* End Headers */
/* Content */
section {
padding: 50px 0;
}
/* Categories */
.category {
text-align: center;
margin-bottom: 30px;
}
.category-item {
position: relative;
padding: 0;
margin: 0;
background-color: transparent;
border-radius: 0;
border: none;
-webkit-transition: none;
-o-transition: none;
transition: none;
}
.category h4 {
color: white;
font-weight: 400;
margin: 0;
}
.category .overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
-webkit-transition: .3s ease-in-out;
-moz-transition: .3s ease-in-out;
-ms-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.category .overlay:hover {
background-color: transparent;
}
.category .caption {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
padding: 10px;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/* End Categories */
/* Featured Products */
#featured-products {
background-color: #f8f8f8;
}
#featured-products .item {
margin: 10px;
padding: 0 30px;
}
#products-carousel .item img {
display: block;
width: 100%;
height: auto;
}
.owl-theme .owl-controls .owl-page span {
width: 12px !important;
height: 12px !important;
margin: 5px !important;
background: #4cbbdb !important;
}
/* End Featured Products */
/* Products */
.product-carousel .item {
position: relative;
overflow: hidden;
}
.product-details {
display: table;
width: 100%;
padding: 15px 0;
}
.product img {
-webkit-backface-visibility: hidden;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.product:hover img {
opacity: 0.8;
}
.product:hover .product-title {
color: #4cbbdb;
}
.sale-label {
display: block;
color: #4cbbdb;
background-color: white;
border: 1px solid #f8f8f8;
position: absolute;
font-size: 12px;
font-weight: 700;
line-height: 30px;
height: 30px;
border-radius: 5px;
top: 20px;
left: 50px;
padding: 0 14px;
z-index: 9;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.col-md-4 .sale-label, .col-md-3 .sale-label {
top: 20px;
left: 35px;
}
.product-link {
position: absolute;
display: block;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-font-smoothing: antialiased;
}
.product-hover-tools {
position: absolute;
z-index: 2;
bottom: 80px;
right: 35px;
text-align: center;
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 0.3s,visibility 0.3s;
-o-transition: opacity 0.3s,visibility 0.3s;
transition: opacity 0.3s,visibility 0.3s;
}
.product:hover .product-hover-tools {
bottom: 80px;
right: 35px;
text-align: center;
visibility: visible;
opacity: 1;
}
.owl-item .product-hover-tools {
bottom: 80px;
right: 50px;
}
.owl-item .product:hover .product-hover-tools {
bottom: 80px;
right: 50px;
}
.view-btn {
display: inline-block;
color: #4cbbdb;
background-color: #f8f8f8;
width: 42px;
height: 42px;
text-align: center;
line-height: 42px;
text-decoration: none;
border-radius: 5px;
vertical-align: middle;
margin: 3px;
}
.view-btn:hover {
color: #4cbbdb;
background-color: #ebebeb;
}
.add-to-cart {
display: inline-block;
color: white;
background-color: #4cbbdb;
width: 42px;
height: 42px;
text-align: center;
line-height: 42px;
text-decoration: none;
border-radius: 5px;
vertical-align: middle;
margin: 3px;
}
.add-to-cart:hover {
color: white;
background-color: #3e9db8;
}
.product-title {
display: inline-block;
width: 49%;
font-size: 16px;
text-align: left;
margin-bottom: 10px;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.product-price {
display: inline-block;
width: 49%;
text-align: right;
}
.sale-price {
color: #4cbbdb;
margin-left: 5px;
}
/* End Products */
/* Features */
#features {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.feature.block {
padding: 50px 20px;
border: 2px solid #4cbbdb;
}
.feature i {
color: #4cbbdb;
font-size: 36px;
}
.feature h5 {
margin-top: 20px;
margin-bottom: 15px;
}
.feature p {
margin-bottom: 0;
}
.feature-center {
text-align: center;
}
.feature-center .feature-icon {
margin-bottom: 10px;
}
/* End Features */
/* Newsletter */
#newsletter .input-group {
width: 60%;
margin: 0 auto;
}
#newsletter .form-control {
color: #666666;
background: #f8f8f8;
font-weight: 400;
letter-spacing: 0.5px;
border: 1px solid #f8f8f8;
border-radius: 0;
padding: 10px 20px;
min-height: 50px;
-webkit-box-shadow: none;
box-shadow: none !important;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
z-index: 1;
}
#newsletter .input-group-btn {
vertical-align: top;
}
#newsletter .btn-left.btn-newsletter.inside {
margin-left: -140px !important;
margin-top: 0;
padding: 14px 28px;
z-index: 2;
}
/* End Newsletter */
/* Brands */
#brands {
background-color: #cccccc;
}
#brands.primary-background {
background-color: #4cbbdb;
}
#brands.primary-background h3 {
color: white;
}
#brands.primary-background .page-header:after {
background-color: white;
}
#brands img {
width: auto;
max-height: 60px;
}
#brands .owl-controls {
display: none !Important;
}
/* End Brands */
/* Single Page Headers */
#page-header {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #f8f8f8;
}
#page-header.dark {
background-color: #222222;
}
.page-header-content {
padding: 50px 0;
}
.page-header-content h1 {
font-size: 30px;
}
.page-header-content p {
font-size: 14px;
}
.dark .page-header-content h1 {
color: white;
}
.dark .page-header-content p {
color: #ebebeb;
}
#page-header.shop-right {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-left {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-full {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-filter {
background-image: url("../images/page-header.jpg");
}
#page-header.about {
background-image: url("../images/page-header.jpg");
}
#page-header.blog {
background-image: url("../images/page-header.jpg");
}
#page-header.contact {
background-image: url("../images/page-header.jpg");
}
#page-header.login-register {
background-image: url("../images/page-header.jpg");
}
/* No Image by Default */
#page-header.single-product {
background-image: none;
}
#page-header.shopping-cart {
background-image: none;
}
#page-header.checkout {
background-image: none;
}
#page-header.my-account {
background-image: none;
}
#page-header.single-post {
background-image: none;
}
#page-header.faq {
background-image: none;
}
#page-header.components {
background-image: none;
}
/* End No Image by Default */
/* End Single Page Headers */
/* Pages Content Area */
.shop-results {
padding: 0 15px 35px 15px;
}
.selectpicker {
background: #f8f8f8;
font-weight: 500;
border: 1px solid #ebebeb;
height: 30px;
margin-top: -10px;
}
#shop .pagination {
padding: 0 10px;
width: 100%;
}
/* Pages Content Area */
/* Sidebars */
.sidebar-area {
padding: 0 15px;
}
.widget {
border-bottom: 1px solid #ebebeb;
margin-bottom: 30px;
}
.widget-title {
margin-bottom: 20px;
}
.product-category {
padding: 10px 0;
text-align: left;
border-bottom: 1px solid #ebebeb;
}
.color.filter-item a {
color: #666666;
}
.color.filter-item a:hover {
opacity: 0.8;
}
.color.filter-item span {
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid #ebebeb;
border-radius: 50%;
margin-right: 5px;
margin-top: -2px;
vertical-align: middle;
}
.color.filter-item span.color-red {
background: #e31a1a;
}
.color.filter-item span.color-green {
background: #83be50;
}
.color.filter-item span.color-blue {
background: #4cbbdb;
}
.color.filter-item span.color-black {
background: black;
}
.color.filter-item span.color-white {
background: white;
}
.tags-sidebar-widget .btn {
margin-left: 0;
}
/* Range Slider */
#range-slider {
margin-top: 30px;
}
.noUi-horizontal {
height: 10px !important;
}
.noUi-target {
background: #ebebeb !important;
border-radius: 50px !important;
border: none !important;
box-shadow: none !important;
}
.noUi-connect {
background: #4cbbdb !important;
box-shadow: none !important;
}
.noUi-handle {
border: 3px solid white !important;
border-radius: 50px !important;
background: #4cbbdb !important;
box-shadow: none !important;
}
.noUi-handle:before, .noUi-handle:after {
display: none !important;
}
.noUi-horizontal .noUi-handle {
width: 20px !important;
height: 20px !important;
left: -8px !important;
top: -5px !important;
}
.range-filter {
display: table;
width: 100%;
padding: 25px 0;
}
.column {
display: table-cell;
vertical-align: middle;
}
.filter-button {
width: 30%;
display: inline-block;
}
.filter-button .btn {
font-weight: 500;
margin: 0;
}
.range-values {
width: 70%;
display: inline-block;
}
.range-values p {
text-align: right;
margin: 0;
}
.range-values .value {
font-weight: 500;
}
/* End Range Slider */
/* End Sidebars */
/* Single Pages */
#product-slider {
margin-bottom: 30px;
}
.carousel-control.left, .carousel-control.right {
background-image: none !important;
}
#product-slider .carousel-control .lnr-chevron-right {
background: #4cbbdb;
font-size: 25px;
top: 47%;
right: 0;
margin-top: 0;
padding: 10px;
}
#product-slider .carousel-control .lnr-chevron-left {
background: #4cbbdb;
font-size: 25px;
top: 47%;
left: 0;
margin-top: 0;
padding: 10px;
}
.product-sidebar .product-details {
background-color: #f8f8f8;
padding: 30px;
}
.product-info .info {
margin: 15px 0;
}
.product-info span {
margin-left: 20px;
}
.product-info .fa {
color: #fbc617;
}
.buy-product {
padding: 10px 0;
display: inline-block;
}
.options input[type="number"] {
max-width: 60px;
max-height: 40px;
background-color: white;
font-size: 16px;
font-weight: 500;
border: 1px solid #cccccc;
border-radius: 5px;
padding: 10px 4px 10px 8px;
outline: none !important;
}
.buy-product .selectors {
display: inline;
position: relative;
width: 100%;
}
.buy-product .selectpicker {
background: white;
font-weight: 500;
border: 1px solid #cccccc;
max-width: 100px;
height: 40px;
position: absolute;
margin-top: 0;
margin-left: 10px;
}
.buy-product .selectpicker.two {
max-width: 100px;
left: 103px;
}
.product-details .btn {
margin-left: 0;
}
.info-buttons {
margin-top: 15px;
padding: 20px 0;
border-top: 1px solid #333333;
border-bottom: 1px solid #333333;
}
.tab-content table > thead > tr > th, .tab-content table > thead > tr > td, .tab-content table > tbody > tr > th, .tab-content table > tbody > tr > td, .tab-content table > tfoot > tr > th, .tab-content table > tr > td {
border-bottom: none;
}
.review-author img {
max-width: 70px;
display: inline-block;
border-radius: 50px;
}
.review-content {
padding-left: 90px;
}
.review-stars {
padding: 15px 0;
}
.review-content .fa {
color: #fbc617;
}
.fa-star {
color: #fbc617;
}
.fa-star-o {
color: #fbc617;
}
.fa-star-half-o {
color: #fbc617;
}
/* Forms */
.form-control {
color: #666666;
background: #f8f8f8;
font-weight: 500;
letter-spacing: 0.5px;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 10px 20px;
min-height: 50px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
#contact-form-1 .form-group {
margin-bottom: 30px;
}
.has-error .form-control {
border-color: #e31a1a;
}
.has-error .form-control:focus {
border-color: #e31a1a;
}
.has-error li {
color: #e31a1a;
font-size: 14px;
}
.h3.text-danger {
font-size: 16px;
text-align: left;
}
.btn-submit {
margin: 25px 0 0 0;
}
#add-review {
border-top: 2px solid #ebebeb;
padding-top: 15px;
}
.review-form {
margin-bottom: 25px;
padding: 0;
}
.review-form input {
width: 90%;
}
#related-products {
border-top: 2px solid #ebebeb;
margin: 30px 15px;
padding-top: 30px;
}
.coupon .form-control {
min-height: 42px;
}
/* Login / Register Forms */
#login-form {
width: 100%;
background: white;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 35px;
}
#login-form .btn-log {
margin: 0 0 30px 0;
padding-left: 17px;
padding-right: 17px;
}
#register-form {
width: 100%;
background: white;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 35px;
}
#register-form .btn-log {
margin: 0 0 30px 0;
padding-left: 17px;
padding-right: 17px;
}
.log-title {
font-size: 24px;
margin: 0 0 35px 0;
}
.log-line {
padding: 0 0 35px 0;
margin-bottom: 35px;
}
.log-line .checkbox {
margin-left: 10px;
}
.log-line .checkbox-primary label {
color: #333333;
}
.forgot-password {
font-size: 16px;
}
/* End Login / Register Forms */
/* End Forms */
#shopping-cart {
padding: 50px 0;
}
.cart-footer {
margin-top: 30px;
}
.cart-footer .btn {
margin: 0 !important;
}
.coupon {
padding-left: 0;
}
.coupon .btn {
margin-left: 15px !important;
}
.update-cart {
text-align: right;
padding-right: 0;
}
.update-cart .btn {
margin-right: 0 !important;
}
.cart-total {
margin-top: 30px;
padding: 0;
}
.cart-total h4 {
border-bottom: 1px solid #ebebeb;
margin-bottom: 20px;
padding-bottom: 20px;
}
.cart-total p {
border-bottom: 1px solid #ebebeb;
margin-bottom: 15px;
padding-bottom: 15px;
}
.cart-total span {
font-weight: 500;
}
.cart-checkout {
text-align: right;
margin-top: 30px;
padding: 0;
}
.cart-checkout .btn {
margin-bottom: 15px !important;
}
.checkout-screen {
padding: 50px 0;
}
.checkout-screen h4 {
margin-bottom: 30px;
}
.checkout-screen h4 span {
color: #4cbbdb;
}
.have-account .btn-link {
padding-left: 0;
}
.checkout-form .form-control {
margin-bottom: 30px;
}
.checkout-form-footer .btn {
margin-left: 0;
}
.text-wrap {
padding: 15px !important;
}
#about .large-p {
font-size: 16px;
line-height: 1.5em;
}
#testimonials {
padding-top: 0;
}
.testimonial img {
max-width: 100px;
border-radius: 50%;
margin-bottom: 15px;
}
#blog-carousel .carousel-control .lnr-chevron-left, #blog-carousel .carousel-control .lnr-chevron-right {
top: 49%;
}
.blog-post-small {
padding-bottom: 20px;
}
.blog-post-small.first-post {
border-bottom: 1px solid #ebebeb;
margin-top: 0;
}
#blog .blog-post-small.mid-post {
border-bottom: 1px solid #ebebeb;
margin-top: 25px;
}
#blog .blog-post-small.last-post {
margin-top: 25px;
padding-bottom: 0;
}
.blog-post-small img {
max-width: 66px;
margin: 0 10px 0 0;
float: left;
}
.post-content-area .btn {
margin-left: 0;
}
.about-sidebar-widget {
text-align: center;
padding: 15px;
border: 2px solid #ebebeb;
}
.about-sidebar-widget img {
max-width: 150px;
border-radius: 50%;
margin-bottom: 30px;
}
.post-category {
margin: 10px 0;
}
.post-category span {
color: #666666;
}
.media {
margin-top: 15px;
margin-bottom: 15px;
}
.media-left {
float: left !important;
}
.media-right {
float: right !important;
}
.media-object {
max-width: 175px;
max-height: 175px;
}
.post-footer {
padding: 10px 0;
min-height: 120px;
}
a.btn-social {
display: inline-block;
}
.btn-social.btn-xs {
padding: 5px 8px;
}
.btn-social.btn-xs span {
margin-left: 2px;
}
#blog .btn-social {
margin-left: 0;
}
.pagination {
display: block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination .btn {
margin: 5px;
}
#blog .btn-direction {
margin: 5px 0;
}
.post-author-block {
background: #ebebeb;
margin: 40px 0;
padding: 40px 30px;
text-align: left;
}
.post-author-block img {
max-width: 100px;
float: left;
margin-right: 30px;
border-radius: 50%;
}
.post-author-block h4 a {
font-size: 22px;
}
.comments img {
max-width: 65px;
border-radius: 50%;
}
.comment-date {
font-size: 12px;
margin-bottom: 2px;
}
.comment-author {
font-size: 14px;
margin-bottom: 2px;
}
.comment p {
margin-bottom: 2px;
}
.comment-log-in {
font-size: 12px;
}
#commentForm textarea {
max-width: 100%;
min-height: 100px !important;
max-height: 115px;
margin-bottom: 0;
}
#comment-form .btn-form-submit {
width: 100%;
border-radius: 0;
padding: 14px 24px;
margin: 0;
}
.btn-form-submit {
display: block;
margin: 0;
}
#contact .large-p {
font-size: 16px;
line-height: 1.5em;
}
.shop-location {
background-color: #f8f8f8;
background-repeat: no-repeat !important;
background-size: cover !important;
background-position: center !important;
padding: 30px;
}
.location-one {
background: url("../images/shop-miami.jpg");
}
.location-two {
background: url("../images/shop-melbourne.jpg");
}
.location-three {
background: url("../images/shop-london.jpg");
}
.shop-location.dark {
background-color: #222222;
}
.shop-location .page-header {
margin-bottom: 15px;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
color: white;
}
.dark p, .dark i, .dark li {
color: #ebebeb;
}
.dark a {
color: white;
}
.dark a:hover {
opacity: 0.7;
}
.shop-location i {
margin-right: 10px;
}
#map {
width: 100%;
height: 400px;
}
.account-sidebar img {
max-width: 100px;
border-radius: 50%;
margin-left: 0;
margin-bottom: 30px;
}
.account-info-content {
background-color: #f8f8f8;
border: 1px solid #ebebeb;
border-radius: 5px;
margin-bottom: 30px;
padding: 30px;
}
.account-info-content h4 {
border-bottom: 1px solid #ebebeb;
margin-bottom: 30px;
padding-bottom: 30px;
vertical-align: middle;
}
.account-info-content h4 a.btn {
margin-top: -6px !important;
}
#personal-info img {
max-width: 100px;
border-radius: 50%;
margin-left: 0;
margin-bottom: 15px;
}
#my-account p span {
color: #222222;
}
.account-info-footer {
border-top: 1px solid #cccccc;
margin-top: 30px;
padding-top: 15px;
}
#page-not-found {
/* background: url("../images/pnf.jpg"); */
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 130px 0;
}
#page-not-found .lnr-warning {
color: #4cbbdb;
vertical-align: middle;
}
/* End Single Pages */
/* Content */
/* Footers */
footer .widget {
margin: 0;
border: none;
}
.footer-info span {
vertical-align: middle;
padding: 10px 0;
}
.footer-info p {
padding: 20px 0;
}
.footer-info span img {
display: inline-block;
max-width: 40px;
margin-left: 10px;
vertical-align: middle;
}
footer p {
font-size: 14px;
font-weight: 400;
margin-bottom: 0;
}
footer .social a {
font-size: 14px;
margin-left: 10px;
}
.light-footer {
background: #ebebeb;
}
.light-footer p {
color: #666666;
}
.dark-footer {
background: #222222;
}
.dark-footer p {
color: #cccccc;
}
.color-footer {
background: #4cbbdb;
}
.color-footer .widget-area {
background: #3e9db8;
}
.color-footer p {
color: white;
}
.color-footer a {
color: white;
}
.color-footer a:hover {
color: #cccccc;
}
.color-footer p a {
color: white;
}
.color-footer p a:hover {
color: #cccccc;
}
/* Footer Widgets */
.light-footer .widget-area {
background: #f8f8f8;
}
.dark-footer .widget-area {
background: black;
}
.color-footer .widget-area {
background: #3e9db8;
}
footer .widget-title {
text-align: left;
margin-bottom: 30px;
}
footer .widget-title-image {
margin-bottom: 30px;
}
footer .widget-title h4 {
margin-bottom: 6px;
}
footer .widget-title:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 30px;
margin-left: 0;
}
.dark-footer .widget-title h4 {
color: white;
}
.color-footer .widget-title h4 {
color: white;
}
footer .widget-area {
font-size: 14px;
padding: 50px 0;
}
footer .about-widget img {
width: auto;
max-height: 50px;
margin: 0;
}
footer .info {
margin-bottom: 10px;
}
footer .contact-widget i {
font-size: 20px;
margin-top: 5px;
}
footer .contact-widget .social i {
font-size: 14px;
}
footer .contact-widget span {
margin-left: 20px;
margin-top: 3px;
position: absolute;
white-space: nowrap;
}
footer .newsletter-widget .btn-newsletter {
margin-left: 0 !important;
padding: 10px 20px;
}
footer #newsletter .form-control {
margin-bottom: 12px;
padding: 5px 20px;
min-height: 42px;
}
/* End Footer Widgets */
/* End Footer */
/* Preloader */
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f8f8f8;
z-index: 999999;
}
.spinner {
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
position: absolute;
top: 45%;
left: 48%;
}
.spinner-round:before {
border-radius: 50%;
content: " ";
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
border-top: solid 3px #ebebeb;
border-right: solid 3px #ebebeb;
border-bottom: solid 3px #ebebeb;
border-left: solid 3px #ebebeb;
position: absolute;
top: 0;
left: 0;
}
.spinner-round:after {
border-radius: 50%;
content: " ";
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
border-top: solid 3px #4cbbdb;
border-right: solid 3px transparent;
border-bottom: solid 3px transparent;
border-left: solid 3px transparent;
position: absolute;
top: 0;
left: 0;
animation: spinner-round-animate 1s ease-in-out infinite;
}
@keyframes spinner-round-animate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* End Preloader */
/* Media Screens */
@media only screen and (max-width: 1200px) {
#newsletter .input-group {
width: 80%;
}
}
@media only screen and (max-width: 991px) {
.split-menu .pull-left {
float: none !important;
}
.split-menu .navbar-brand {
display: block;
}
.split-menu .pull-right {
float: none !important;
}
.split-menu .navbar-nav {
float: none;
}
.split-menu .navbar-nav > li {
float: none;
display: inline-block;
}
.nav > li > a {
padding: 12.5px 10px;
}
.open .dropdown-menu > li > a {
font-size: 14px;
}
.feature.block {
margin-bottom: 30px;
}
.log-line .checkbox label {
padding-left: 8px;
}
.widget-area .col-md-4, .widget-area .col-md-3 {
padding: 15px;
}
.post-footer .pull-left, .post-footer .pull-right {
display: block;
float: none !important;
margin-bottom: 15px;
}
#map {
height: 400px;
}
}
@media only screen and (max-width: 767px) {
.title-description {
width: 80%;
margin: 15px auto 30px auto;
}
.top-menu .left {
float: none;
display: block;
text-align: center;
}
.top-menu .right {
float: none;
display: block;
text-align: center;
margin-top: 10px;
}
.top-menu p {
padding: 8px 0;
}
.navbar-brand {
font-size: 20px;
line-height: 20px;
font-weight: 700;
height: 50px;
padding: 15px 15px;
}
.open .dropdown-menu > li > a {
padding: 5px 20px;
text-align: center;
max-width: 300px;
}
.navbar-nav .open .dropdown-menu {
max-width: 160px;
margin: 0 auto;
}
.navbar-nav .open .dropdown-menu > li > a {
font-size: 12px;
padding: 5px 0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
}
.navbar-inverse .dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #333333 !important;
}
.navbar .btn {
margin: 7px 0 20px 0;
}
#slider .slider-content {
padding: 130px 0;
}
#slider .item {
min-height: 440px;
}
header h3 {
font-size: 30px;
}
header h5 {
font-size: 16px;
}
header p {
font-size: 14px;
}
#newsletter .input-group {
width: 100%;
}
#contact-form-1 {
margin-top: 30px;
}
.review-form input {
width: 100%;
}
.tab-content table > tbody > tr > th {
width: 120px;
max-width: 120px;
}
.sidebar-area {
padding: 30px 15px;
}
.widget {
padding: 0 15px;
}
.update-cart {
text-align: left;
padding: 0;
}
.update-cart .btn {
margin: 15px 0 !important;
}
.checkout-total {
margin-top: 30px;
}
.testimonial {
margin-bottom: 30px;
}
.team {
margin-bottom: 30px;
}
#login-form {
margin-bottom: 30px;
}
.cart-checkout {
text-align: left;
padding: 0;
margin-top: 20px;
}
.cart-checkout .btn {
margin-left: 0 !important;
}
.blog-sidebar {
padding: 50px 30px 0 30px;
}
.location {
margin-bottom: 30px;
}
#map {
height: 360px;
}
.account-sidebar {
text-align: center;
margin-bottom: 30px;
}
.account-sidebar img {
margin-left: auto;
}
.footer-info {
text-align: center;
line-height: 1.8;
}
.footer-info .pull-left {
float: none !important;
display: block;
}
.footer-info .pull-right {
float: none !important;
display: block;
}
.footer-info p {
padding: 10px 0 0 0;
}
.spinner {
left: 46%;
}
}
@media only screen and (max-width: 600px) {
.title-description {
width: 100%;
margin: 15px auto 30px auto;
}
#contactForm .form-control {
margin-bottom: 20px;
padding: 10px;
min-height: 40px;
}
#contactForm textarea {
padding: 15px 10px !important;
}
#contact-form-1 .btn-form-submit {
padding: 9px;
}
.help-block {
margin-top: 20px;
}
.help-block.with-errors li {
margin-top: -20px;
}
#map {
height: 250px;
}
.spinner {
left: 45%;
}
}
@media only screen and (max-width: 580px) {
.product-hover-tools {
bottom: 100px;
}
.product:hover .product-hover-tools {
bottom: 100px;
}
}
@media only screen and (max-width: 480px) {
a {
font-size: 12px;
}
.top-menu a span {
display: none;
}
#slider .slider-content {
padding: 70px 0;
}
#slider .item {
min-height: 300px;
}
header h3 {
font-size: 18px;
margin-bottom: 10px;
}
.header-brand {
font-size: 26px;
}
header p {
font-size: 12px;
padding: 10px 0;
}
#shop .col-xs-6 {
width: 100%;
}
.shop-results .pull-right {
float: none !important;
display: block;
}
.selectpicker {
margin-top: 15px;
}
.product-hover-tools {
bottom: 80px;
}
.product:hover .product-hover-tools {
bottom: 80px;
}
#map {
height: 200px;
}
}
/* Min Widths */
@media only screen and (min-width: 1200px) {
.container {
min-width: 1200px !important;
padding: 0;
margin: 0 auto;
}
}
@media only screen and (min-width: 992px) {
.container {
min-width: 992px;
}
}
@media only screen and (min-width: 768px) {
.container {
min-width: 768px;
}
.navbar-nav {
float: right;
}
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: 0;
}
.navbar-nav > li > a {
padding-top: 30px;
padding-bottom: 30px;
}
}
/* End Min Widths */
/* / End Media Screens */ | public/lib/inCart/css/style.css | body {
color: #666666;
background: #fefefe;
font-family: "Raleway", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
}
html, body {
height: 100%;
max-height: 100%;
margin: 0;
}
html * {
-webkit-font-smoothing: antialiased;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
color: #222222;
font-family: "Raleway", sans-serif;
font-weight: 500;
letter-spacing: 0.5px;
margin-top: 0;
}
h1 {
font-size: 36px;
margin-bottom: 24px;
}
h2 {
font-size: 30px;
margin-bottom: 22px;
}
h3 {
font-size: 26px;
margin-bottom: 20px;
}
h4 {
font-size: 22px;
margin-bottom: 18px;
}
h5 {
font-size: 18px;
margin-bottom: 14px;
}
h6 {
font-size: 16px;
margin-bottom: 12px;
}
a {
color: #4cbbdb;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
letter-spacing: 0.5px;
font-size: 14px;
font-weight: 500;
outline: 0 !important;
}
a:hover, a:active, a:focus {
color: #3e9db8;
text-decoration: none;
}
p {
font-family: "Raleway", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #666666;
letter-spacing: 0.5px;
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
}
ul, ol {
padding-left: 16px;
margin-top: 0;
margin-bottom: 20px;
}
.list-featured {
list-style: none;
padding: 0;
}
.list-featured li {
position: relative;
padding-left: 14px;
margin-bottom: 7px;
}
.list-featured li:before {
position: absolute;
display: block;
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
left: 0;
top: 7px;
background-color: #4cbbdb;
}
ol li {
margin-bottom: 7px;
}
li {
color: #666666;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
}
blockquote {
border-left: 3px solid #4cbbdb;
}
.blockquote-reverse, blockquote.pull-right {
border-right: 3px solid #4cbbdb;
}
blockquote p {
font-size: 14px;
font-weight: 400;
}
cite {
color: #cccccc;
font-size: 12px;
}
strong {
font-weight: 500;
}
.text-uppercase {
text-transform: uppercase;
}
.lead {
font-size: 18px;
}
.text-sm {
font-size: 12px;
}
.text-xs {
font-size: 10px;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-default {
color: #333333;
}
.text-primary {
color: #4cbbdb;
}
.text-success {
color: #83be50;
}
.text-info {
color: #44a1e1;
}
.text-warning {
color: #ffb33b;
}
.text-danger {
color: #e31a1a;
}
.bg-default {
color: white;
background: #333333;
padding: 3px 4px;
}
.bg-primary {
color: white;
background: #4cbbdb;
padding: 3px 4px;
}
.bg-success {
color: white;
background: #83be50;
padding: 3px 4px;
}
.bg-info {
color: white;
background: #44a1e1;
padding: 3px 4px;
}
.bg-warning {
color: white;
background: #ffb33b;
padding: 3px 4px;
}
.bg-danger {
color: white;
background: #e31a1a;
padding: 3px 4px;
}
/* / End Typography */
.row {
margin-right: 0;
margin-left: 0;
}
img {
width: 100%;
max-width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
}
img.btn-pill {
border: 1px solid transparent;
}
.page-header {
font-size: 30px;
border: none;
margin-top: 0;
margin-bottom: 30px;
}
.page-header:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -25px;
}
.page-header.text-left:after {
margin-left: 0;
}
.page-header.text-right:after {
margin-left: -50px;
}
.page-header h2 {
margin-bottom: 15px;
}
.page-header.wsub {
margin-bottom: 10px;
}
.page-header.wsub h2 {
margin-bottom: 17px;
}
.sub-title {
color: black;
font-size: 24px;
font-weight: 400;
}
.title-w-divider {
margin-bottom: 25px;
}
.title-w-divider:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -25px;
}
.title-w-divider.text-left:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: 0px;
}
.title-w-divider.text-right:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 50px;
margin-left: -50px;
}
.title-description {
text-align: center;
width: 60%;
margin: 15px auto 30px auto;
}
.space-top {
margin-top: 20px !important;
}
.space-top-30 {
margin-top: 30px !important;
}
.space-top-2x {
margin-top: 40px !important;
}
.space-bottom {
margin-bottom: 20px !important;
}
.space-bottom-30 {
margin-bottom: 30px !important;
}
.space-bottom-2x {
margin-bottom: 40px !important;
}
.line-height-30 {
line-height: 30px !important;
}
.space-left {
padding-left: 15px !important;
}
.space-left-2x {
padding-left: 30px !important;
}
.space-right-10 {
padding-right: 10px !important;
}
.space-right {
padding-right: 15px !important;
}
.space-right-2x {
padding-right: 30px !important;
}
.space-25 {
margin: 12.5px 0;
line-height: 0;
}
.space-50 {
margin: 25px 0;
line-height: 0;
}
.space-100 {
margin: 50px 0;
line-height: 0;
}
.space-200 {
margin: 100px 0;
line-height: 0;
}
.margin-left {
margin-left: 15px;
}
.margin-left-2x {
margin-left: 30px;
}
.margin-right {
margin-right: 15px;
}
.margin-right-2x {
margin-right: 30px;
}
.no-margin {
margin: 0 !important;
}
.no-padding {
padding: 0 !important;
}
.no-border {
border: none !important;
}
.no-border-radius {
border-radius: 0 !important;
}
.rounded {
border-radius: 5px !important;
}
a:focus {
outline: none !important;
}
.btn:focus {
outline: none !important;
}
.btn-social:focus {
outline: none !important;
}
input:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
textarea:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
select:focus {
outline: none !important;
-webkit-box-shadow: none !important;
}
.form-control:focus {
border: 1px solid #cccccc;
}
.fa {
display: initial !important;
}
/* Animation Durations */
.animated {
-webkit-animation-duration: 1s !important;
animation-duration: 1s !important;
}
.animated.first {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 0.5s;
}
.animated.second {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 0.8s;
}
.animated.third {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1s;
}
.animated.fourth {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 1.4s;
}
.animated.fifth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1.5s;
}
.animated.sixth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 1.8s;
}
.animated.seventh {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 2s;
}
.animated.eighth {
-webkit-animation-duration: 1.5s !important;
animation-duration: 1.5s !important;
animation-delay: 2.4s;
}
.animated.nineth {
-webkit-animation-duration: 1.6s !important;
animation-duration: 1.6s !important;
animation-delay: 2.8s;
}
/* End Animation Durations */
/* Buttons */
.btn {
font-weight: 500;
font-size: 13px;
letter-spacing: 0.5px;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
border-radius: 0;
padding: 10px 18px;
margin: 5px;
}
.btn span {
margin-left: 10px;
margin-right: 10px;
}
.btn:hover {
background: transparent;
}
.btn:focus {
background: transparent;
}
.btn-lg {
font-size: 15px;
padding: 12px 22px;
}
.btn-sm {
font-size: 12px;
padding: 7px 15px;
}
.btn-xs {
font-size: 10px;
padding: 5px 12px;
}
.btn-sm i {
font-size: 10px;
}
.btn-xs i {
font-size: 8px;
}
.btn-social.btn-sm i {
font-size: 14px;
}
.btn-social.btn-xs i {
font-size: 12px;
}
.btn-rounded {
border-radius: 5px !important;
}
.btn-pill {
border-radius: 50px !important;
}
.btn-circle {
border-radius: 50% !important;
height: 40px;
width: 40px;
padding: 3px !Important;
}
.btn-square {
height: 40px;
width: 40px;
border-radius: 5px;
padding: 3px !Important;
}
.btn-link {
color: #4cbbdb;
}
.btn-link:hover {
color: #3e9db8;
text-decoration: none;
}
.btn-link:focus {
color: #3e9db8;
text-decoration: none;
}
a.btn {
white-space: nowrap;
}
/* Default Button */
.btn-default, .btn-default:active, .btn-default:focus {
color: #333333;
background: transparent;
}
.btn-default:hover {
color: white;
background: #333333;
border: 2px solid #333333;
}
.btn-default-filled, .btn-default-filled:active, .btn-default-filled:focus {
color: white;
background: #333333;
border: 2px solid #333333;
}
.btn-default-filled:hover {
color: white;
background: black;
border: 2px solid black;
}
/* / End Default Button */
/* Primary Button */
.btn-primary, .btn-primary:active, .btn-primary:focus {
color: #4cbbdb;
border: 2px solid #4cbbdb;
background: transparent;
}
.btn-primary:hover {
color: white;
background: #4cbbdb;
border: 2px solid #4cbbdb;
}
.btn-primary-filled, .btn-primary-filled:active, .btn-primary-filled:focus {
color: white;
background: #4cbbdb;
border: 2px solid #4cbbdb;
}
.btn-primary-filled:hover {
color: white;
background: #3e9db8;
border: 2px solid #3e9db8;
}
/* / End Primary Button */
/* Success Button */
.btn-success, .btn-success:active, .btn-success:focus {
color: #83be50;
border: 2px solid #83be50;
background: transparent;
}
.btn-success:hover {
color: white;
background: #83be50;
border: 2px solid #83be50;
}
.btn-success-filled, .btn-success-filled:active, .btn-success-filled:focus {
color: white;
background: #83be50;
border: 2px solid #83be50;
}
.btn-success-filled:hover {
color: white;
background: #679440;
border: 2px solid #679440;
}
/* / End Success Button */
/* Info Button */
.btn-info, .btn-info:active, .btn-info:focus {
color: #44a1e1;
border: 2px solid #44a1e1;
background: transparent;
}
.btn-info:hover {
color: white;
background: #44a1e1;
border: 2px solid #44a1e1;
}
.btn-info-filled, .btn-info-filled:active, .btn-info-filled:focus {
color: white;
background: #44a1e1;
border: 2px solid #44a1e1;
}
.btn-info-filled:hover {
color: white;
background: #3379a9;
border: 2px solid #3379a9;
}
/* / End Info Button */
/* Warning Button */
.btn-warning, .btn-warning:active, .btn-warning:focus {
color: #ffb33b;
border: 2px solid #ffb33b;
background: transparent;
}
.btn-warning:hover {
color: white;
background: #ffb33b;
border: 2px solid #ffb33b;
}
.btn-warning-filled, .btn-warning-filled:active, .btn-warning-filled:focus {
color: white;
background: #ffb33b;
border: 2px solid #ffb33b;
}
.btn-warning-filled:hover {
color: white;
background: #e59618;
border: 2px solid #e59618;
}
/* / End Warning Button */
/* Danger Button */
.btn-danger, .btn-danger:active, .btn-danger:focus {
color: #e31a1a;
border: 2px solid #e31a1a;
background: transparent;
}
.btn-danger:hover {
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
}
.btn-danger-filled, .btn-danger-filled:active, .btn-danger-filled:focus {
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
}
.btn-danger-filled:hover {
color: white;
background: #bb0707;
border: 2px solid #bb0707;
}
/* / End Danger Button */
/* Social Buttons */
.btn-social {
font-size: 13px;
padding: 8px 15px;
letter-spacing: 0.5px;
vertical-align: middle;
-moz-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-ms-transition: 0.2s ease-in;
transition: 0.2s ease-in;
margin: 5px;
}
a.btn-social {
white-space: nowrap;
}
.btn-social span {
margin-left: 10px;
}
/* Facebook Button */
.btn-facebook, .btn-facebook:active, .btn-facebook:focus {
color: #4e68a1;
background: transparent;
border: 2px solid #4e68a1;
}
.btn-facebook:hover {
color: white !important;
background: #4e68a1;
border: 2px solid #4e68a1;
}
.btn-facebook-filled, .btn-facebook-filled:active, .btn-facebook-filled:focus {
color: white;
background: #4e68a1;
border: 2px solid #4e68a1;
}
.btn-facebook-filled:hover {
color: white;
background: #3b4f7a;
border: 2px solid #3b4f7a;
}
.btn-facebook-link, .btn-facebook-link:active, .btn-facebook-link:focus {
color: #4e68a1;
background: transparent;
border: none;
}
.btn-facebook-link:hover {
color: #3b4f7a;
}
/* / End Facebook Button */
/* Twitter Button */
.btn-twitter, .btn-twitter:active, .btn-twitter:focus {
color: #65b5f2;
background: transparent;
border: 2px solid #65b5f2;
}
.btn-twitter:hover {
color: white;
background: #65b5f2;
border: 2px solid #65b5f2;
}
.btn-twitter-filled, .btn-twitter-filled:active, .btn-twitter-filled:focus {
color: white;
background: #65b5f2;
border: 2px solid #65b5f2;
}
.btn-twitter-filled:hover {
color: white;
background: #5294c6;
border: 2px solid #5294c6;
}
.btn-twitter-filled:hover {
color: white;
background: #5294c6;
border: 2px solid #5294c6;
}
.btn-twitter-link, .btn-twitter-link:active, .btn-twitter-link:focus {
color: #65b5f2;
background: transparent;
border: none;
}
.btn-twitter-link:hover {
color: #5294c6;
}
/* / End Twitter Button */
/* Google Button */
.btn-google, .btn-google:active, .btn-google:focus {
color: #e05d4b;
background: transparent;
border: 2px solid #e05d4b;
}
.btn-google:hover {
color: white;
background: #e05d4b;
border: 2px solid #e05d4b;
}
.btn-google-filled, .btn-google-filled:active, .btn-google-filled:focus {
color: white;
background: #e05d4b;
border: 2px solid #e05d4b;
}
.btn-google-filled:hover {
color: white;
background: #b94c3d;
border: 2px solid #b94c3d;
}
.btn-google-link, .btn-google-link:active, .btn-google-link:focus {
color: #e05d4b;
background: transparent;
border: none;
}
.btn-google-link:hover {
color: #b94c3d;
}
/* / End Google Button */
/* Linkedin Button */
.btn-linkedin, .btn-linkedin:active, .btn-linkedin:focus {
color: #2083bc;
background: transparent;
border: 2px solid #2083bc;
}
.btn-linkedin:hover {
color: white;
background: #2083bc;
border: 2px solid #2083bc;
}
.btn-linkedin-filled, .btn-linkedin-filled:active, .btn-linkedin-filled:focus {
color: white;
background: #2083bc;
border: 2px solid #2083bc;
}
.btn-linkedin-filled:hover {
color: white;
background: #186592;
border: 2px solid #186592;
}
.btn-linkedin-link, .btn-linkedin-link:active, .btn-linkedin-link:focus {
color: #2083bc;
background: transparent;
border: none;
}
.btn-linkedin-link:hover {
color: #186592;
}
/* / End Linkedin Button */
/* Pinterest Button */
.btn-pinterest, .btn-pinterest:active, .btn-pinterest:focus {
color: #d2373b;
background: transparent;
border: 2px solid #d2373b;
}
.btn-pinterest:hover {
color: white;
background: #d2373b;
border: 2px solid #d2373b;
}
.btn-pinterest-filled, .btn-pinterest-filled:active, .btn-pinterest-filled:focus {
color: white;
background: #d2373b;
border: 2px solid #d2373b;
}
.btn-pinterest-filled:hover {
color: white;
background: #ad2c2f;
border: 2px solid #ad2c2f;
}
.btn-pinterest-link, .btn-pinterest-link:active, .btn-pinterest-link:focus {
color: #d2373b;
background: transparent;
border: none;
}
.btn-pinterest-link:hover {
color: #ad2c2f;
}
/* / End Pinterest Button */
/* Dribbble Button */
.btn-dribbble, .btn-dribbble:active, .btn-dribbble:focus {
color: #ec5f94;
background: transparent;
border: 2px solid #ec5f94;
}
.btn-dribbble:hover {
color: white;
background: #ec5f94;
border: 2px solid #ec5f94;
}
.btn-dribbble-filled, .btn-dribbble-filled:active, .btn-dribbble-filled:focus {
color: white;
background: #ec5f94;
border: 2px solid #ec5f94;
}
.btn-dribbble-filled:hover {
color: white;
background: #b4446e;
border: 2px solid #b4446e;
}
.btn-dribbble-link, .btn-dribbble-link:active, .btn-dribbble-link:focus {
color: #ec5f94;
background: transparent;
border: none;
}
.btn-dribbble-link:hover {
color: #b4446e;
}
/* / End Dribbble Button */
/* / End Social Buttons */
/* Checkboxes */
.checkbox {
padding-left: 10px;
}
.checkbox label {
display: inline-block;
position: relative;
padding-left: 20px;
width: 25px;
height: 25px;
}
.checkbox label span {
margin-top: 4px;
position: absolute;
white-space: nowrap;
}
.checkbox label::before {
content: "";
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
margin-left: -20px;
border: 2px solid #cccccc;
border-radius: 5px;
background-color: white;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
-o-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 label::after {
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
top: 0;
margin-left: -17px;
padding-left: 3px;
padding-top: 3px;
font-size: 14px;
color: #333333;
}
.checkbox + .checkbox, .radio + .radio {
margin-top: 0;
}
.checkbox input[type="checkbox"] {
opacity: 0;
}
.checkbox input[type="checkbox"]:checked + label::after {
font-family: 'FontAwesome';
content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label {
opacity: 0.3;
}
.checkbox input[type="checkbox"]:disabled + label::before {
background-color: #ebebeb;
cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
border-radius: 50%;
}
.checkbox.checkbox-inline {
margin-top: 0;
}
.checkbox-default input[type="checkbox"]:checked + label::before {
background-color: #333333;
border-color: #333333;
}
.checkbox-default input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-default label {
color: #333333;
}
.checkbox-primary input[type="checkbox"]:checked + label::before {
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-primary label {
color: #4cbbdb;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
background-color: #83be50;
border-color: #83be50;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-success label {
color: #83be50;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
background-color: #44a1e1;
border-color: #44a1e1;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-info label {
color: #44a1e1;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
background-color: #ffb33b;
border-color: #ffb33b;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-warning label {
color: #ffb33b;
}
.checkbox-danger input[type="checkbox"]:checked + label::before {
background-color: #e31a1a;
border-color: #e31a1a;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
color: white;
}
.checkbox-danger label {
color: #e31a1a;
}
/* / End Checkboxes */
/* Radio Buttons */
.radio {
padding-left: 10px;
}
.radio label {
display: inline-block;
position: relative;
padding-left: 20px;
width: 25px;
height: 25px;
}
.radio label span {
margin-top: 2px;
position: absolute;
white-space: nowrap;
}
.radio label::before {
content: "";
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
left: 0;
margin-left: -20px;
border: 3px solid #cccccc;
border-radius: 50%;
background-color: white;
-webkit-transition: border 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out;
}
.radio label::after {
display: inline-block;
position: absolute;
content: " ";
width: 11px;
height: 11px;
left: 7px;
top: 7px;
margin-left: -20px;
border-radius: 50%;
background-color: #cccccc;
-webkit-transform: scale(0, 0);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
opacity: 0;
}
.radio input[type="radio"]:checked + label::after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
opacity: 0.3;
}
.radio input[type="radio"]:disabled + label::before {
cursor: not-allowed;
}
.radio.radio-inline {
margin-top: 0;
}
.radio-default input[type="radio"] + label::after {
background-color: #333333;
}
.radio-default input[type="radio"]:checked + label::before {
border-color: #333333;
}
.radio-default input[type="radio"]:checked + label::after {
background-color: #333333;
}
.radio-default label {
color: #333333;
}
.radio-primary input[type="radio"] + label::after {
background-color: #4cbbdb;
}
.radio-primary input[type="radio"]:checked + label::before {
border-color: #4cbbdb;
}
.radio-primary input[type="radio"]:checked + label::after {
background-color: #4cbbdb;
}
.radio-primary label {
color: #4cbbdb;
}
.radio-success input[type="radio"] + label::after {
background-color: #83be50;
}
.radio-success input[type="radio"]:checked + label::before {
border-color: #83be50;
}
.radio-success input[type="radio"]:checked + label::after {
background-color: #83be50;
}
.radio-success label {
color: #83be50;
}
.radio-info input[type="radio"] + label::after {
background-color: #44a1e1;
}
.radio-info input[type="radio"]:checked + label::before {
border-color: #44a1e1;
}
.radio-info input[type="radio"]:checked + label::after {
background-color: #44a1e1;
}
.radio-info label {
color: #44a1e1;
}
.radio-warning input[type="radio"] + label::after {
background-color: #ffb33b;
}
.radio-warning input[type="radio"]:checked + label::before {
border-color: #ffb33b;
}
.radio-warning input[type="radio"]:checked + label::after {
background-color: #ffb33b;
}
.radio-warning label {
color: #ffb33b;
}
.radio-danger input[type="radio"] + label::after {
background-color: #e31a1a;
}
.radio-danger input[type="radio"]:checked + label::before {
border-color: #e31a1a;
}
.radio-danger input[type="radio"]:checked + label::after {
background-color: #e31a1a;
}
.radio-danger label {
color: #e31a1a;
}
/* / End Radio Buttons */
/* Paginations */
.pagination .btn {
font-size: 12px;
font-weight: 400;
padding: 4px 15px;
margin: 0 5px;
line-height: 2em;
}
.pagination .btn-direction {
font-size: 10px;
padding: 5.5px 12px;
line-height: 2.1em;
}
.pagination .btn-default {
color: #333333;
border: 1px solid #ebebeb;
background: transparent;
}
.pagination .btn-default:hover {
color: white;
background: #4cbbdb;
border: 1px solid #4cbbdb;
}
.pagination .btn-active {
color: white !important;
background: #4cbbdb !important;
border: 1px solid #4cbbdb !important;
}
.pagination .btn-active:hover {
color: white !important;
background: #3e9db8 !important;
border: 1px solid #3e9db8 !important;
}
.pagination .btn-default-filled {
color: #333333;
background: #ebebeb;
border: 1px solid #ebebeb;
}
.pagination .btn-default-filled:hover {
color: white;
background: #4cbbdb;
border: 1px solid #4cbbdb;
}
.pagination .btn-circle {
border-radius: 50% !important;
height: 30px;
width: 30px;
padding: 3px !important;
}
/* / End Paginations */
/* Button Groups */
.btn-group-xl > .btn {
font-size: 20px;
padding: 9px 10px;
border-radius: 5px;
}
.btn-group-lg > .btn {
font-size: 15px;
padding: 10px 12px;
border-radius: 5px;
}
.btn-group > .btn {
border-radius: 5px;
}
.btn-group-sm > .btn {
font-size: 12px;
padding: 5px 4px;
border-radius: 5px;
}
.btn-group-xs > .btn {
font-size: 10px;
padding: 3px;
border-radius: 5px;
}
/* / End Button Groups */
/* Dropdown Buttons */
.dropdown-buttons {
display: inline-block;
position: relative;
}
.dropdown-buttons .btn-group > .btn {
padding-left: 17px;
}
.dropdown-buttons .dropdown-icon {
margin: 0 2px 0 10px;
}
.dropdown-buttons .btn {
border-radius: 0;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
color: white;
background-color: #333333;
border-color: #333333;
}
.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
color: white;
background-color: #333333;
border-color: #333333;
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
color: white;
background-color: #83be50;
border-color: #83be50;
}
.btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
color: white;
background-color: #83be50;
border-color: #83be50;
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
color: white;
background-color: #44a1e1;
border-color: #44a1e1;
}
.btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
color: white;
background-color: #44a1e1;
border-color: #44a1e1;
}
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
color: white;
background-color: #ffb33b;
border-color: #ffb33b;
}
.btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
color: white;
background-color: #ffb33b;
border-color: #ffb33b;
}
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
color: white;
background-color: #e31a1a;
border-color: #e31a1a;
}
.btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
color: white;
background-color: #e31a1a;
border-color: #e31a1a;
}
/* / End Dropdown Buttons */
/* / End Buttons */
/* Tabs & Accordions */
/* Tabs */
.nav-tabs {
border-bottom: 2px solid #ebebeb;
}
.nav-tabs > li {
float: none;
margin-bottom: -2px;
display: inline-block;
}
.nav-tabs > li > a {
position: relative;
z-index: 0;
display: block;
color: #666666;
text-decoration: none;
font-weight: 700;
margin-right: 0;
padding: 20px;
line-height: 1.5;
background-color: transparent;
border: none;
border-bottom: 2px solid transparent;
border-radius: 0;
}
.nav-tabs > li > a:focus {
background: transparent;
border: 0 !important;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
color: #4cbbdb;
background: none;
border: none;
border-bottom: 2px solid #4cbbdb !important;
-webkit-transition: 0s;
-moz-transition: 0s;
-o-transition: 0s;
transition: 0s;
}
.nav > li > a:hover {
background: none;
border: none;
}
.nav-pills.text-right > li {
float: right;
}
.nav.nav-pills a:hover {
color: white;
background: #3e9db8;
}
.tab-content {
padding-top: 30px;
}
/* / End Tabs */
/* Accordions */
.panel-group .panel {
background: none;
-webkit-box-shadow: none;
box-shadow: none;
margin-bottom: 0;
border: 0;
border-radius: 0;
}
.panel-group .panel-heading {
padding: 15px 0;
border: none;
border-radius: 0;
}
.panel-group .panel-title {
font-size: 14px;
font-weight: 500;
}
.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
border-top: none;
}
.panel-group .panel-heading > a:after {
display: inline-block;
vertical-align: middle;
font-family: "FontAwesome";
font-size: 16px;
content: "\f0d8";
margin-top: -2px;
margin-left: 10px;
-webkit-transform: rotate(0);
-moz-transform: rotate(0);
-ms-transform: rotate(0);
-o-transform: rotate(0);
transform: rotate(0);
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.panel-group .panel-heading .panel-title.collapsed:after {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.panel-group .panel-body {
padding: 15px 0;
}
.panel-group.tabbed .panel-heading {
background: #f8f8f8;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 15px;
}
.panel-group.tabbed a {
color: #666666;
}
.panel-group.tabbed .panel-heading > a:after {
float: right;
}
.panel-group.tabbed .panel-heading .panel-title.collapsed:after {
float: right;
margin-top: 2px;
}
/* / End Accordions */
/* / End Tabs & Accordions */
/* Labels Badges & Alerts */
/* Labels */
.label {
font-weight: 400;
padding: .2em .6em;
}
.label-pill {
border-radius: 5em;
}
.label-default {
color: #333333;
background-color: transparent;
border: 2px solid #333333;
}
.label-default-filled {
color: white;
background-color: #333333;
border: 2px solid #333333;
}
.label-primary {
color: #4cbbdb;
background-color: transparent;
border: 2px solid #4cbbdb;
}
.label-primary-filled {
color: white;
background-color: #4cbbdb;
border: 2px solid #4cbbdb;
}
.label-success {
color: #83be50;
background-color: transparent;
border: 2px solid #83be50;
}
.label-success-filled {
color: white;
background-color: #83be50;
border: 2px solid #83be50;
}
.label-info {
color: #44a1e1;
background-color: transparent;
border: 2px solid #44a1e1;
}
.label-info-filled {
color: white;
background-color: #44a1e1;
border: 2px solid #44a1e1;
}
.label-warning {
color: #ffb33b;
background-color: transparent;
border: 2px solid #ffb33b;
}
.label-warning-filled {
color: white;
background-color: #ffb33b;
border: 2px solid #ffb33b;
}
.label-danger {
color: #e31a1a;
background-color: transparent;
border: 2px solid #e31a1a;
}
.label-danger-filled {
color: white;
background-color: #e31a1a;
border: 2px solid #e31a1a;
}
/* / End Labels */
/* Badges */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
color: white;
background-color: #4cbbdb;
}
.nav-pills > li > a:hover {
color: white;
background-color: #cccccc;
}
.nav-pills > li > a {
border-radius: 5px;
padding: 10px;
}
.badge {
color: white;
background-color: #4cbbdb;
font-size: 10px;
font-weight: 400;
border-radius: 5px;
padding: 6px 7px;
}
.active .badge {
color: #4cbbdb !important;
}
/* / End Badges */
/* Alerts */
/*.alert {
border: 2px solid transparent;
border-radius: 5px;
}
.alert-success {
color: white;
background-color: #83be50;
border-color: #679440;
}
.alert-success .close {
color: #679440;
}*/
.alert-info {
color: white;
background-color: #44a1e1;
border-color: #3379a9;
}
.alert-info .close {
color: #3379a9;
}
.alert-warning {
color: white;
background-color: #ffb33b;
border-color: #e59618;
}
.alert-warning .close {
color: #e59618;
}
/*.alert-danger {
color: white;
background-color: #e31a1a;
border-color: #bb0707;
}
.alert-danger .close {
color: #bb0707;
}*/
.alert-dismissible .close {
font-size: 16px;
top: -14px;
right: -31px;
text-shadow: none;
opacity: 0.5;
}
.alert-dismissible .close:hover {
opacity: 0.8;
}
.alert-sm {
font-size: 14px;
padding: 5px;
}
.alert i {
margin: 0 10px 0 5px;
}
.alert-sm.alert-dismissible .close {
top: -5px;
right: -2px;
}
/* / End Alerts */
/* / End Labels Badges & Alerts */
/* Listgroups & Panels */
/* Listgroups */
.list-group-item {
color: #666666;
background-color: white;
font-size: 14px;
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
}
.list-group-item p {
font-size: 14px;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
color: white;
background-color: #4cbbdb;
border-color: #4cbbdb;
}
a.list-group-item:hover {
color: #4cbbdb;
}
a.list-group-item, button.list-group-item {
color: #666666;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
color: white;
}
a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
color: #222222;
}
/* / End Listgroups */
/* Panels */
.panel-default {
border-color: black;
}
.panel-default > .panel-heading {
color: white;
background-color: #333333;
border-color: black;
}
.panel-success {
border-color: #679440;
}
.panel-success > .panel-heading {
color: white;
background-color: #83be50;
border-color: #679440;
}
.panel-primary {
border-color: #3e9db8;
}
.panel-primary > .panel-heading {
color: white;
background-color: #4cbbdb;
border-color: #3e9db8;
}
.panel-info {
border-color: #3379a9;
}
.panel-info > .panel-heading {
color: white;
background-color: #44a1e1;
border-color: #3379a9;
}
.panel-warning {
border-color: #e59618;
}
.panel-warning > .panel-heading {
color: white;
background-color: #ffb33b;
border-color: #e59618;
}
.panel-danger {
border-color: #bb0707;
}
.panel-danger > .panel-heading {
color: white;
background-color: #e31a1a;
border-color: #bb0707;
}
/* / End Panels */
/* Well */
.well {
min-height: 20px;
padding: 20px;
margin-bottom: 20px;
background-color: #ebebeb;
border: 1px solid #cccccc;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.rounded-well {
border-radius: 5px;
}
/* / End Well */
/* Jumbotron */
.jumbotron {
background: #ebebeb;
border: 1px solid #cccccc;
border-radius: 0 !important;
}
.rounded-jumbotron {
border-radius: 5px !important;
}
.jumbotron h1 {
color: #4cbbdb;
font-weight: 400;
margin-top: 0;
margin-bottom: 25px;
}
.jumbotron p {
font-size: 18px;
font-weight: 400;
margin-bottom: 25px;
}
/* / End Jumbotron */
/* / End Listgroups & Panels */
/* Progress Bars */
.progress {
height: 20px;
margin-bottom: 20px;
overflow: hidden;
background-color: #ebebeb;
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
}
.progress-bar {
font-size: 12px;
line-height: 20px;
color: white;
background-color: #4cbbdb;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.progress-bar-default {
background-color: #333333;
}
.progress-bar-primary {
background-color: #4cbbdb;
}
.progress-bar-success {
background-color: #83be50;
}
.progress-bar-info {
background-color: #44a1e1;
}
.progress-bar-warning {
background-color: #ffb33b;
}
.progress-bar-danger {
background-color: #e31a1a;
}
.progress-label .sr-only {
position: relative;
}
/* / End Progress Bars */
/* Tables */
table {
width: 100%;
max-width: 100%;
}
table > caption + thead > tr:first-child > th, table > caption + thead > tr:first-child > td, table > colgroup + thead > tr:first-child > th, table > colgroup + thead > tr:first-child > td, table > thead:first-child > tr:first-child > th, table > thead:first-child > tr:first-child > td {
border-top: 0;
}
table > thead > tr > th {
vertical-align: bottom;
border-bottom: 1px solid #cccccc;
}
table > thead > tr > th, table > thead > tr > td {
border-bottom-width: 2px !important;
}
table > thead > tr > th, table > thead > tr > td, table > tbody > tr > th, table > tbody > tr > td, table > tfoot > tr > th, table > tr > td {
padding: 15px;
line-height: 1.5;
vertical-align: top;
border-bottom: 1px solid #ebebeb;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f8f8f8 !important;
}
/* Shoppong Cart Table */
.shopping-cart thead {
background: #f8f8f8;
}
table.shopping-cart > thead > tr > th, table > thead > tr > td {
border-bottom-width: 0 !important;
}
.shopping-cart thead th {
color: #222222;
padding: 10px 0;
font-size: 16px;
line-height: 30px;
}
.shopping-cart tbody td {
color: #666666;
padding: 10px 0;
vertical-align: middle;
font-size: 14px;
}
.shopping-cart img {
max-width: 50px;
}
.cart-item {
border-bottom: 1px solid #f8f8f8;
}
.cart-item img {
max-width: 50px;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
-ms-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.cart-item a img:hover {
opacity: 0.8;
}
.qty input[type="number"] {
max-width: 50px;
max-height: 40px;
padding: 10px 4px;
outline: none !important;
}
.x-remove {
text-align: center;
color: white;
background: #e31a1a;
border: 2px solid #e31a1a;
border-radius: 50%;
height: 20px;
width: 20px;
font-size: 16px;
line-height: 15px;
margin-right: 30px;
padding: 0 0 0 1px;
float: right;
}
/* / End Shopping Cart Table */
/* / End Tables */
/* End Base CSS */
/* Headers */
/* Navigation */
/* Top Menus */
.top-menu {
background-color: #f8f8f8;
}
.top-menu-inverse {
background-color: #333333;
}
.top-menu-primary {
background-color: #4cbbdb;
}
.top-menu p {
font-size: 12px;
margin-bottom: 0;
padding: 8px 15px;
}
.top-menu a {
color: #666666 !important;
font-size: 12px !important;
font-weight: 400;
margin-right: 10px;
}
.top-menu a:hover {
color: #4cbbdb !important;
}
.top-menu-inverse a {
color: #cccccc !important;
}
.top-menu-primary a {
color: white !important;
}
.top-menu-primary a:hover {
color: #ebebeb !important;
}
.top-menu-inverse p {
color: #cccccc !important;
}
.top-menu-primary p {
color: white !important;
}
.top-menu .left i {
margin-right: 5px;
}
.top-menu .right i {
margin-right: 5px;
}
.top-menu .right {
float: right;
}
.top-menu .right a {
margin: 0 0 0 15px;
}
.btn-top-menu {
background: transparent;
font-size: 10px !important;
font-weight: 700;
border: 2px solid #666666;
margin: -3px 0 0 10px;
padding: 5px 0;
}
.btn-top-menu:hover {
border: 2px solid #4cbbdb;
}
.btn-top-menu a {
font-size: 10px !important;
margin: 0 !important;
padding: 8px;
}
.btn-top-menu-inverse {
background: transparent;
font-size: 10px !important;
font-weight: 700;
border: 2px solid #cccccc;
margin: -3px 0 0 10px;
padding: 5px 0;
}
.btn-top-menu-inverse:hover {
border: 2px solid #4cbbdb;
}
.btn-top-menu-inverse a {
font-size: 10px !important;
margin: 0 !important;
padding: 8px;
}
/* End Top Menus */
.nav > li > a {
font-family: "Raleway", sans-serif;
padding: 15px;
}
.nav li label a {
font-family: "Raleway", sans-serif;
}
.nav > li > a > img {
max-width: 25px;
display: inline-block;
}
.navbar {
border: 0;
border-radius: 0;
margin-bottom: 0;
}
.navbar i {
font-size: 14px;
vertical-align: middle;
}
.navbar-fixed-top {
border-radius: 0;
}
.navbar-fixed-top .container {
padding-left: 30px;
padding-right: 30px;
}
.top-nav-collapse {
-webkit-transition: ease-in 0.3s;
-moz-transition: ease-in 0.3s;
-o-transition: ease-in 0.3s;
transition: ease-in 0.3s;
}
.navbar-brand {
color: #333333 !important;
font-size: 18px;
line-height: 20px;
font-weight: 500;
height: 80px;
padding: 30px 15px;
}
.navbar-brand span {
color: #4cbbdb;
}
.navbar-brand > img {
width: auto;
max-height: 40px;
}
.navbar-toggle {
margin: 8px 0px 8px 8px;
padding-right: 15px;
}
.navbar-toggle .icon-bar {
background: #4cbbdb;
width: 20px;
height: 3px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
.navbar-collapse {
text-align: center;
}
.navbar-default {
background-color: white;
}
.navbar-default .navbar-nav > li > a {
color: #666666;
font-size: 13px;
font-weight: 400;
}
.navbar-default .navbar-nav > li > a:hover {
color: #4cbbdb;
}
.navbar-default .navbar-nav > li > a:focus {
color: #666666 !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
color: #4cbbdb !important;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:hover {
color: #3e9db8 !important;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #4cbbdb;
}
.navbar-default .navbar-toggle {
border-color: transparent;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-default .dropdown-menu > li > a {
font-size: 13px;
padding: 8px 15px;
text-align: left;
}
.dropdown-menu > li > a:focus {
background: transparent !important;
}
.navbar-default .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
display: none;
float: left;
min-width: 50px;
padding: 10px 15px;
margin: 5px 0 0 0;
background-color: white;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
z-index: 9999;
border-radius: 0;
}
.w-image .dropdown-menu {
padding: 5px 0;
}
.w-image .dropdown-menu > li > a {
padding: 8px 12px;
}
.dropdown-menu > li > a {
color: #666666;
border: none;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
border: none;
}
.dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #ebebeb;
}
.dropdown img {
max-width: 25px;
display: inline-block;
}
.dropdown.w-image a {
color: #666666;
}
.dropdown.w-image a:hover {
opacity: 0.7;
color: #666666 !important;
}
/* Navbar Inverse */
navbar-inverse {
background-color: #222222;
}
.navbar-inverse .navbar-nav > li > a {
color: white;
font-size: 12px;
font-weight: 400;
}
.navbar-inverse .navbar-nav > li > a:hover {
color: #4cbbdb;
}
.navbar-inverse .navbar-nav > li > a:focus {
color: white !important;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse.navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
color: #4cbbdb !important;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a:hover {
color: #3e9db8 !important;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: white;
}
.navbar-inverse .navbar-toggle {
border-color: transparent;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: transparent;
}
.navbar-inverse .dropdown-menu > li > a {
font-size: 12px;
padding: 8px 15px;
text-align: left;
}
.navbar-inverse .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .dropdown-menu {
background-color: #222222;
}
.navbar-inverse .dropdown-menu > li > a {
color: white;
border: none;
}
.navbar-inverse .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
border: none;
}
.navbar-inverse .dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #333333;
}
.navbar-inverse .dropdown.w-image a {
color: #ebebeb;
}
.navbar-inverse .dropdown.w-image a:hover {
opacity: 0.7;
color: #ebebeb !important;
}
/* End Navbar Inverse */
/* End Navigation */
/* Slider */
#slider .carousel-control.left, #slider .carousel-control.right {
background-image: none !important;
}
header h3 {
font-size: 36px;
}
header p {
font-size: 18px;
}
#slider.dark h3, #slider .item.dark h3 {
color: white;
}
#slider.dark p, #slider .item.dark p {
color: #ebebeb;
}
#slider .carousel-caption {
text-align: center;
height: auto;
text-shadow: none !important;
top: 0;
bottom: 0;
padding: 0;
}
.carousel-control {
font-size: 32px;
text-shadow: none;
background-color: transparent;
}
#slider.dark .carousel-control {
color: #ebebeb;
}
.carousel-control .lnr-chevron-left {
position: absolute;
top: 45%;
left: 15%;
z-index: 5;
display: inline-block;
margin-top: -10px;
float: left;
}
.carousel-control .lnr-chevron-right {
position: absolute;
top: 45%;
right: 15%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
#slider .slider-content {
padding: 185px 0;
}
.slide-content .slide-title span {
margin-bottom: 15px;
}
.slider-content .slide-text {
margin-top: 15px;
}
.slider-content .btn {
margin: 15px;
}
#slider .item {
min-height: 560px;
height: auto;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #f8f8f8;
}
#slider.dark .item, #slider .item.dark {
background-color: #222222;
}
#slider .fashion {
background-image: url("../images/slide1.jpg");
}
#slider .furniture {
background-image: url("../images/slide2.jpg");
}
#slider .art {
background-image: url("../images/slide3.jpg");
}
#slider .slide-text {
color: #222222;
line-height: 1.5;
}
#slider p.caption {
padding: 6px;
color: #222222;
}
#slider .carousel-control {
color: #222222;
opacity: 0.8;
}
/* End Slider */
/* End Headers */
/* Content */
section {
padding: 50px 0;
}
/* Categories */
.category {
text-align: center;
margin-bottom: 30px;
}
.category-item {
position: relative;
padding: 0;
margin: 0;
background-color: transparent;
border-radius: 0;
border: none;
-webkit-transition: none;
-o-transition: none;
transition: none;
}
.category h4 {
color: white;
font-weight: 400;
margin: 0;
}
.category .overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
-webkit-transition: .3s ease-in-out;
-moz-transition: .3s ease-in-out;
-ms-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.category .overlay:hover {
background-color: transparent;
}
.category .caption {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
padding: 10px;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/* End Categories */
/* Featured Products */
#featured-products {
background-color: #f8f8f8;
}
#featured-products .item {
margin: 10px;
padding: 0 30px;
}
#products-carousel .item img {
display: block;
width: 100%;
height: auto;
}
.owl-theme .owl-controls .owl-page span {
width: 12px !important;
height: 12px !important;
margin: 5px !important;
background: #4cbbdb !important;
}
/* End Featured Products */
/* Products */
.product-carousel .item {
position: relative;
overflow: hidden;
}
.product-details {
display: table;
width: 100%;
padding: 15px 0;
}
.product img {
-webkit-backface-visibility: hidden;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.product:hover img {
opacity: 0.8;
}
.product:hover .product-title {
color: #4cbbdb;
}
.sale-label {
display: block;
color: #4cbbdb;
background-color: white;
border: 1px solid #f8f8f8;
position: absolute;
font-size: 12px;
font-weight: 700;
line-height: 30px;
height: 30px;
border-radius: 5px;
top: 20px;
left: 50px;
padding: 0 14px;
z-index: 9;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.col-md-4 .sale-label, .col-md-3 .sale-label {
top: 20px;
left: 35px;
}
.product-link {
position: absolute;
display: block;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-font-smoothing: antialiased;
}
.product-hover-tools {
position: absolute;
z-index: 2;
bottom: 80px;
right: 35px;
text-align: center;
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 0.3s,visibility 0.3s;
-o-transition: opacity 0.3s,visibility 0.3s;
transition: opacity 0.3s,visibility 0.3s;
}
.product:hover .product-hover-tools {
bottom: 80px;
right: 35px;
text-align: center;
visibility: visible;
opacity: 1;
}
.owl-item .product-hover-tools {
bottom: 80px;
right: 50px;
}
.owl-item .product:hover .product-hover-tools {
bottom: 80px;
right: 50px;
}
.view-btn {
display: inline-block;
color: #4cbbdb;
background-color: #f8f8f8;
width: 42px;
height: 42px;
text-align: center;
line-height: 42px;
text-decoration: none;
border-radius: 5px;
vertical-align: middle;
margin: 3px;
}
.view-btn:hover {
color: #4cbbdb;
background-color: #ebebeb;
}
.add-to-cart {
display: inline-block;
color: white;
background-color: #4cbbdb;
width: 42px;
height: 42px;
text-align: center;
line-height: 42px;
text-decoration: none;
border-radius: 5px;
vertical-align: middle;
margin: 3px;
}
.add-to-cart:hover {
color: white;
background-color: #3e9db8;
}
.product-title {
display: inline-block;
width: 49%;
font-size: 16px;
text-align: left;
margin-bottom: 10px;
-webkit-transition: ease-in-out 0.3s;
-moz-transition: ease-in-out 0.3s;
transition: ease-in-out 0.3s;
}
.product-price {
display: inline-block;
width: 49%;
text-align: right;
}
.sale-price {
color: #4cbbdb;
margin-left: 5px;
}
/* End Products */
/* Features */
#features {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.feature.block {
padding: 50px 20px;
border: 2px solid #4cbbdb;
}
.feature i {
color: #4cbbdb;
font-size: 36px;
}
.feature h5 {
margin-top: 20px;
margin-bottom: 15px;
}
.feature p {
margin-bottom: 0;
}
.feature-center {
text-align: center;
}
.feature-center .feature-icon {
margin-bottom: 10px;
}
/* End Features */
/* Newsletter */
#newsletter .input-group {
width: 60%;
margin: 0 auto;
}
#newsletter .form-control {
color: #666666;
background: #f8f8f8;
font-weight: 400;
letter-spacing: 0.5px;
border: 1px solid #f8f8f8;
border-radius: 0;
padding: 10px 20px;
min-height: 50px;
-webkit-box-shadow: none;
box-shadow: none !important;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
z-index: 1;
}
#newsletter .input-group-btn {
vertical-align: top;
}
#newsletter .btn-left.btn-newsletter.inside {
margin-left: -140px !important;
margin-top: 0;
padding: 14px 28px;
z-index: 2;
}
/* End Newsletter */
/* Brands */
#brands {
background-color: #cccccc;
}
#brands.primary-background {
background-color: #4cbbdb;
}
#brands.primary-background h3 {
color: white;
}
#brands.primary-background .page-header:after {
background-color: white;
}
#brands img {
width: auto;
max-height: 60px;
}
#brands .owl-controls {
display: none !Important;
}
/* End Brands */
/* Single Page Headers */
#page-header {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #f8f8f8;
}
#page-header.dark {
background-color: #222222;
}
.page-header-content {
padding: 50px 0;
}
.page-header-content h1 {
font-size: 30px;
}
.page-header-content p {
font-size: 14px;
}
.dark .page-header-content h1 {
color: white;
}
.dark .page-header-content p {
color: #ebebeb;
}
#page-header.shop-right {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-left {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-full {
background-image: url("../images/page-header.jpg");
}
#page-header.shop-filter {
background-image: url("../images/page-header.jpg");
}
#page-header.about {
background-image: url("../images/page-header.jpg");
}
#page-header.blog {
background-image: url("../images/page-header.jpg");
}
#page-header.contact {
background-image: url("../images/page-header.jpg");
}
#page-header.login-register {
background-image: url("../images/page-header.jpg");
}
/* No Image by Default */
#page-header.single-product {
background-image: none;
}
#page-header.shopping-cart {
background-image: none;
}
#page-header.checkout {
background-image: none;
}
#page-header.my-account {
background-image: none;
}
#page-header.single-post {
background-image: none;
}
#page-header.faq {
background-image: none;
}
#page-header.components {
background-image: none;
}
/* End No Image by Default */
/* End Single Page Headers */
/* Pages Content Area */
.shop-results {
padding: 0 15px 35px 15px;
}
.selectpicker {
background: #f8f8f8;
font-weight: 500;
border: 1px solid #ebebeb;
height: 30px;
margin-top: -10px;
}
#shop .pagination {
padding: 0 10px;
width: 100%;
}
/* Pages Content Area */
/* Sidebars */
.sidebar-area {
padding: 0 15px;
}
.widget {
border-bottom: 1px solid #ebebeb;
margin-bottom: 30px;
}
.widget-title {
margin-bottom: 20px;
}
.product-category {
padding: 10px 0;
text-align: left;
border-bottom: 1px solid #ebebeb;
}
.color.filter-item a {
color: #666666;
}
.color.filter-item a:hover {
opacity: 0.8;
}
.color.filter-item span {
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid #ebebeb;
border-radius: 50%;
margin-right: 5px;
margin-top: -2px;
vertical-align: middle;
}
.color.filter-item span.color-red {
background: #e31a1a;
}
.color.filter-item span.color-green {
background: #83be50;
}
.color.filter-item span.color-blue {
background: #4cbbdb;
}
.color.filter-item span.color-black {
background: black;
}
.color.filter-item span.color-white {
background: white;
}
.tags-sidebar-widget .btn {
margin-left: 0;
}
/* Range Slider */
#range-slider {
margin-top: 30px;
}
.noUi-horizontal {
height: 10px !important;
}
.noUi-target {
background: #ebebeb !important;
border-radius: 50px !important;
border: none !important;
box-shadow: none !important;
}
.noUi-connect {
background: #4cbbdb !important;
box-shadow: none !important;
}
.noUi-handle {
border: 3px solid white !important;
border-radius: 50px !important;
background: #4cbbdb !important;
box-shadow: none !important;
}
.noUi-handle:before, .noUi-handle:after {
display: none !important;
}
.noUi-horizontal .noUi-handle {
width: 20px !important;
height: 20px !important;
left: -8px !important;
top: -5px !important;
}
.range-filter {
display: table;
width: 100%;
padding: 25px 0;
}
.column {
display: table-cell;
vertical-align: middle;
}
.filter-button {
width: 30%;
display: inline-block;
}
.filter-button .btn {
font-weight: 500;
margin: 0;
}
.range-values {
width: 70%;
display: inline-block;
}
.range-values p {
text-align: right;
margin: 0;
}
.range-values .value {
font-weight: 500;
}
/* End Range Slider */
/* End Sidebars */
/* Single Pages */
#product-slider {
margin-bottom: 30px;
}
.carousel-control.left, .carousel-control.right {
background-image: none !important;
}
#product-slider .carousel-control .lnr-chevron-right {
background: #4cbbdb;
font-size: 25px;
top: 47%;
right: 0;
margin-top: 0;
padding: 10px;
}
#product-slider .carousel-control .lnr-chevron-left {
background: #4cbbdb;
font-size: 25px;
top: 47%;
left: 0;
margin-top: 0;
padding: 10px;
}
.product-sidebar .product-details {
background-color: #f8f8f8;
padding: 30px;
}
.product-info .info {
margin: 15px 0;
}
.product-info span {
margin-left: 20px;
}
.product-info .fa {
color: #fbc617;
}
.buy-product {
padding: 10px 0;
display: inline-block;
}
.options input[type="number"] {
max-width: 60px;
max-height: 40px;
background-color: white;
font-size: 16px;
font-weight: 500;
border: 1px solid #cccccc;
border-radius: 5px;
padding: 10px 4px 10px 8px;
outline: none !important;
}
.buy-product .selectors {
display: inline;
position: relative;
width: 100%;
}
.buy-product .selectpicker {
background: white;
font-weight: 500;
border: 1px solid #cccccc;
max-width: 100px;
height: 40px;
position: absolute;
margin-top: 0;
margin-left: 10px;
}
.buy-product .selectpicker.two {
max-width: 100px;
left: 103px;
}
.product-details .btn {
margin-left: 0;
}
.info-buttons {
margin-top: 15px;
padding: 20px 0;
border-top: 1px solid #333333;
border-bottom: 1px solid #333333;
}
.tab-content table > thead > tr > th, .tab-content table > thead > tr > td, .tab-content table > tbody > tr > th, .tab-content table > tbody > tr > td, .tab-content table > tfoot > tr > th, .tab-content table > tr > td {
border-bottom: none;
}
.review-author img {
max-width: 70px;
display: inline-block;
border-radius: 50px;
}
.review-content {
padding-left: 90px;
}
.review-stars {
padding: 15px 0;
}
.review-content .fa {
color: #fbc617;
}
.fa-star {
color: #fbc617;
}
.fa-star-o {
color: #fbc617;
}
.fa-star-half-o {
color: #fbc617;
}
/* Forms */
.form-control {
color: #666666;
background: #f8f8f8;
font-weight: 500;
letter-spacing: 0.5px;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 10px 20px;
min-height: 50px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
#contact-form-1 .form-group {
margin-bottom: 30px;
}
.has-error .form-control {
border-color: #e31a1a;
}
.has-error .form-control:focus {
border-color: #e31a1a;
}
.has-error li {
color: #e31a1a;
font-size: 14px;
}
.h3.text-danger {
font-size: 16px;
text-align: left;
}
.btn-submit {
margin: 25px 0 0 0;
}
#add-review {
border-top: 2px solid #ebebeb;
padding-top: 15px;
}
.review-form {
margin-bottom: 25px;
padding: 0;
}
.review-form input {
width: 90%;
}
#related-products {
border-top: 2px solid #ebebeb;
margin: 30px 15px;
padding-top: 30px;
}
.coupon .form-control {
min-height: 42px;
}
/* Login / Register Forms */
#login-form {
width: 100%;
background: white;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 35px;
}
#login-form .btn-log {
margin: 0 0 30px 0;
padding-left: 17px;
padding-right: 17px;
}
#register-form {
width: 100%;
background: white;
border: 1px solid #ebebeb;
border-radius: 5px;
padding: 35px;
}
#register-form .btn-log {
margin: 0 0 30px 0;
padding-left: 17px;
padding-right: 17px;
}
.log-title {
font-size: 24px;
margin: 0 0 35px 0;
}
.log-line {
padding: 0 0 35px 0;
margin-bottom: 35px;
}
.log-line .checkbox {
margin-left: 10px;
}
.log-line .checkbox-primary label {
color: #333333;
}
.forgot-password {
font-size: 16px;
}
/* End Login / Register Forms */
/* End Forms */
#shopping-cart {
padding: 50px 0;
}
.cart-footer {
margin-top: 30px;
}
.cart-footer .btn {
margin: 0 !important;
}
.coupon {
padding-left: 0;
}
.coupon .btn {
margin-left: 15px !important;
}
.update-cart {
text-align: right;
padding-right: 0;
}
.update-cart .btn {
margin-right: 0 !important;
}
.cart-total {
margin-top: 30px;
padding: 0;
}
.cart-total h4 {
border-bottom: 1px solid #ebebeb;
margin-bottom: 20px;
padding-bottom: 20px;
}
.cart-total p {
border-bottom: 1px solid #ebebeb;
margin-bottom: 15px;
padding-bottom: 15px;
}
.cart-total span {
font-weight: 500;
}
.cart-checkout {
text-align: right;
margin-top: 30px;
padding: 0;
}
.cart-checkout .btn {
margin-bottom: 15px !important;
}
.checkout-screen {
padding: 50px 0;
}
.checkout-screen h4 {
margin-bottom: 30px;
}
.checkout-screen h4 span {
color: #4cbbdb;
}
.have-account .btn-link {
padding-left: 0;
}
.checkout-form .form-control {
margin-bottom: 30px;
}
.checkout-form-footer .btn {
margin-left: 0;
}
.text-wrap {
padding: 15px !important;
}
#about .large-p {
font-size: 16px;
line-height: 1.5em;
}
#testimonials {
padding-top: 0;
}
.testimonial img {
max-width: 100px;
border-radius: 50%;
margin-bottom: 15px;
}
#blog-carousel .carousel-control .lnr-chevron-left, #blog-carousel .carousel-control .lnr-chevron-right {
top: 49%;
}
.blog-post-small {
padding-bottom: 20px;
}
.blog-post-small.first-post {
border-bottom: 1px solid #ebebeb;
margin-top: 0;
}
#blog .blog-post-small.mid-post {
border-bottom: 1px solid #ebebeb;
margin-top: 25px;
}
#blog .blog-post-small.last-post {
margin-top: 25px;
padding-bottom: 0;
}
.blog-post-small img {
max-width: 66px;
margin: 0 10px 0 0;
float: left;
}
.post-content-area .btn {
margin-left: 0;
}
.about-sidebar-widget {
text-align: center;
padding: 15px;
border: 2px solid #ebebeb;
}
.about-sidebar-widget img {
max-width: 150px;
border-radius: 50%;
margin-bottom: 30px;
}
.post-category {
margin: 10px 0;
}
.post-category span {
color: #666666;
}
.media {
margin-top: 15px;
margin-bottom: 15px;
}
.media-left {
float: left !important;
}
.media-right {
float: right !important;
}
.media-object {
max-width: 175px;
max-height: 175px;
}
.post-footer {
padding: 10px 0;
min-height: 120px;
}
a.btn-social {
display: inline-block;
}
.btn-social.btn-xs {
padding: 5px 8px;
}
.btn-social.btn-xs span {
margin-left: 2px;
}
#blog .btn-social {
margin-left: 0;
}
.pagination {
display: block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination .btn {
margin: 5px;
}
#blog .btn-direction {
margin: 5px 0;
}
.post-author-block {
background: #ebebeb;
margin: 40px 0;
padding: 40px 30px;
text-align: left;
}
.post-author-block img {
max-width: 100px;
float: left;
margin-right: 30px;
border-radius: 50%;
}
.post-author-block h4 a {
font-size: 22px;
}
.comments img {
max-width: 65px;
border-radius: 50%;
}
.comment-date {
font-size: 12px;
margin-bottom: 2px;
}
.comment-author {
font-size: 14px;
margin-bottom: 2px;
}
.comment p {
margin-bottom: 2px;
}
.comment-log-in {
font-size: 12px;
}
#commentForm textarea {
max-width: 100%;
min-height: 100px !important;
max-height: 115px;
margin-bottom: 0;
}
#comment-form .btn-form-submit {
width: 100%;
border-radius: 0;
padding: 14px 24px;
margin: 0;
}
.btn-form-submit {
display: block;
margin: 0;
}
#contact .large-p {
font-size: 16px;
line-height: 1.5em;
}
.shop-location {
background-color: #f8f8f8;
background-repeat: no-repeat !important;
background-size: cover !important;
background-position: center !important;
padding: 30px;
}
.location-one {
background: url("../images/shop-miami.jpg");
}
.location-two {
background: url("../images/shop-melbourne.jpg");
}
.location-three {
background: url("../images/shop-london.jpg");
}
.shop-location.dark {
background-color: #222222;
}
.shop-location .page-header {
margin-bottom: 15px;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
color: white;
}
.dark p, .dark i, .dark li {
color: #ebebeb;
}
.dark a {
color: white;
}
.dark a:hover {
opacity: 0.7;
}
.shop-location i {
margin-right: 10px;
}
#map {
width: 100%;
height: 400px;
}
.account-sidebar img {
max-width: 100px;
border-radius: 50%;
margin-left: 0;
margin-bottom: 30px;
}
.account-info-content {
background-color: #f8f8f8;
border: 1px solid #ebebeb;
border-radius: 5px;
margin-bottom: 30px;
padding: 30px;
}
.account-info-content h4 {
border-bottom: 1px solid #ebebeb;
margin-bottom: 30px;
padding-bottom: 30px;
vertical-align: middle;
}
.account-info-content h4 a.btn {
margin-top: -6px !important;
}
#personal-info img {
max-width: 100px;
border-radius: 50%;
margin-left: 0;
margin-bottom: 15px;
}
#my-account p span {
color: #222222;
}
.account-info-footer {
border-top: 1px solid #cccccc;
margin-top: 30px;
padding-top: 15px;
}
#page-not-found {
/* background: url("../images/pnf.jpg"); */
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 130px 0;
}
#page-not-found .lnr-warning {
color: #4cbbdb;
vertical-align: middle;
}
/* End Single Pages */
/* Content */
/* Footers */
footer .widget {
margin: 0;
border: none;
}
.footer-info span {
vertical-align: middle;
padding: 10px 0;
}
.footer-info p {
padding: 20px 0;
}
.footer-info span img {
display: inline-block;
max-width: 40px;
margin-left: 10px;
vertical-align: middle;
}
footer p {
font-size: 14px;
font-weight: 400;
margin-bottom: 0;
}
footer .social a {
font-size: 14px;
margin-left: 10px;
}
.light-footer {
background: #ebebeb;
}
.light-footer p {
color: #666666;
}
.dark-footer {
background: #222222;
}
.dark-footer p {
color: #cccccc;
}
.color-footer {
background: #4cbbdb;
}
.color-footer .widget-area {
background: #3e9db8;
}
.color-footer p {
color: white;
}
.color-footer a {
color: white;
}
.color-footer a:hover {
color: #cccccc;
}
.color-footer p a {
color: white;
}
.color-footer p a:hover {
color: #cccccc;
}
/* Footer Widgets */
.light-footer .widget-area {
background: #f8f8f8;
}
.dark-footer .widget-area {
background: black;
}
.color-footer .widget-area {
background: #3e9db8;
}
footer .widget-title {
text-align: left;
margin-bottom: 30px;
}
footer .widget-title-image {
margin-bottom: 30px;
}
footer .widget-title h4 {
margin-bottom: 6px;
}
footer .widget-title:after {
content: "";
background: #4cbbdb;
position: absolute;
height: 2px;
width: 30px;
margin-left: 0;
}
.dark-footer .widget-title h4 {
color: white;
}
.color-footer .widget-title h4 {
color: white;
}
footer .widget-area {
font-size: 14px;
padding: 50px 0;
}
footer .about-widget img {
width: auto;
max-height: 50px;
margin: 0;
}
footer .info {
margin-bottom: 10px;
}
footer .contact-widget i {
font-size: 20px;
margin-top: 5px;
}
footer .contact-widget .social i {
font-size: 14px;
}
footer .contact-widget span {
margin-left: 20px;
margin-top: 3px;
position: absolute;
white-space: nowrap;
}
footer .newsletter-widget .btn-newsletter {
margin-left: 0 !important;
padding: 10px 20px;
}
footer #newsletter .form-control {
margin-bottom: 12px;
padding: 5px 20px;
min-height: 42px;
}
/* End Footer Widgets */
/* End Footer */
/* Preloader */
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f8f8f8;
z-index: 999999;
}
.spinner {
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
position: absolute;
top: 45%;
left: 48%;
}
.spinner-round:before {
border-radius: 50%;
content: " ";
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
border-top: solid 3px #ebebeb;
border-right: solid 3px #ebebeb;
border-bottom: solid 3px #ebebeb;
border-left: solid 3px #ebebeb;
position: absolute;
top: 0;
left: 0;
}
.spinner-round:after {
border-radius: 50%;
content: " ";
width: 50px;
height: 50px;
display: inline-block;
box-sizing: border-box;
border-top: solid 3px #4cbbdb;
border-right: solid 3px transparent;
border-bottom: solid 3px transparent;
border-left: solid 3px transparent;
position: absolute;
top: 0;
left: 0;
animation: spinner-round-animate 1s ease-in-out infinite;
}
@keyframes spinner-round-animate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* End Preloader */
/* Media Screens */
@media only screen and (max-width: 1200px) {
#newsletter .input-group {
width: 80%;
}
}
@media only screen and (max-width: 991px) {
.split-menu .pull-left {
float: none !important;
}
.split-menu .navbar-brand {
display: block;
}
.split-menu .pull-right {
float: none !important;
}
.split-menu .navbar-nav {
float: none;
}
.split-menu .navbar-nav > li {
float: none;
display: inline-block;
}
.nav > li > a {
padding: 12.5px 10px;
}
.open .dropdown-menu > li > a {
font-size: 14px;
}
.feature.block {
margin-bottom: 30px;
}
.log-line .checkbox label {
padding-left: 8px;
}
.widget-area .col-md-4, .widget-area .col-md-3 {
padding: 15px;
}
.post-footer .pull-left, .post-footer .pull-right {
display: block;
float: none !important;
margin-bottom: 15px;
}
#map {
height: 400px;
}
}
@media only screen and (max-width: 767px) {
.title-description {
width: 80%;
margin: 15px auto 30px auto;
}
.top-menu .left {
float: none;
display: block;
text-align: center;
}
.top-menu .right {
float: none;
display: block;
text-align: center;
margin-top: 10px;
}
.top-menu p {
padding: 8px 0;
}
.navbar-brand {
font-size: 20px;
line-height: 20px;
font-weight: 700;
height: 50px;
padding: 15px 15px;
}
.open .dropdown-menu > li > a {
padding: 5px 20px;
text-align: center;
max-width: 300px;
}
.navbar-nav .open .dropdown-menu {
max-width: 160px;
margin: 0 auto;
}
.navbar-nav .open .dropdown-menu > li > a {
font-size: 12px;
padding: 5px 0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
color: #4cbbdb;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
color: #3e9db8;
background-color: transparent;
}
.navbar-inverse .dropdown-menu .divider {
height: 1px;
margin: 3px 0;
background-color: #333333 !important;
}
.navbar .btn {
margin: 7px 0 20px 0;
}
#slider .slider-content {
padding: 130px 0;
}
#slider .item {
min-height: 440px;
}
header h3 {
font-size: 30px;
}
header h5 {
font-size: 16px;
}
header p {
font-size: 14px;
}
#newsletter .input-group {
width: 100%;
}
#contact-form-1 {
margin-top: 30px;
}
.review-form input {
width: 100%;
}
.tab-content table > tbody > tr > th {
width: 120px;
max-width: 120px;
}
.sidebar-area {
padding: 30px 15px;
}
.widget {
padding: 0 15px;
}
.update-cart {
text-align: left;
padding: 0;
}
.update-cart .btn {
margin: 15px 0 !important;
}
.checkout-total {
margin-top: 30px;
}
.testimonial {
margin-bottom: 30px;
}
.team {
margin-bottom: 30px;
}
#login-form {
margin-bottom: 30px;
}
.cart-checkout {
text-align: left;
padding: 0;
margin-top: 20px;
}
.cart-checkout .btn {
margin-left: 0 !important;
}
.blog-sidebar {
padding: 50px 30px 0 30px;
}
.location {
margin-bottom: 30px;
}
#map {
height: 360px;
}
.account-sidebar {
text-align: center;
margin-bottom: 30px;
}
.account-sidebar img {
margin-left: auto;
}
.footer-info {
text-align: center;
line-height: 1.8;
}
.footer-info .pull-left {
float: none !important;
display: block;
}
.footer-info .pull-right {
float: none !important;
display: block;
}
.footer-info p {
padding: 10px 0 0 0;
}
.spinner {
left: 46%;
}
}
@media only screen and (max-width: 600px) {
.title-description {
width: 100%;
margin: 15px auto 30px auto;
}
#contactForm .form-control {
margin-bottom: 20px;
padding: 10px;
min-height: 40px;
}
#contactForm textarea {
padding: 15px 10px !important;
}
#contact-form-1 .btn-form-submit {
padding: 9px;
}
.help-block {
margin-top: 20px;
}
.help-block.with-errors li {
margin-top: -20px;
}
#map {
height: 250px;
}
.spinner {
left: 45%;
}
}
@media only screen and (max-width: 580px) {
.product-hover-tools {
bottom: 100px;
}
.product:hover .product-hover-tools {
bottom: 100px;
}
}
@media only screen and (max-width: 480px) {
a {
font-size: 12px;
}
.top-menu a span {
display: none;
}
#slider .slider-content {
padding: 70px 0;
}
#slider .item {
min-height: 300px;
}
header h3 {
font-size: 18px;
margin-bottom: 10px;
}
.header-brand {
font-size: 26px;
}
header p {
font-size: 12px;
padding: 10px 0;
}
#shop .col-xs-6 {
width: 100%;
}
.shop-results .pull-right {
float: none !important;
display: block;
}
.selectpicker {
margin-top: 15px;
}
.product-hover-tools {
bottom: 80px;
}
.product:hover .product-hover-tools {
bottom: 80px;
}
#map {
height: 200px;
}
}
/* Min Widths */
@media only screen and (min-width: 1200px) {
.container {
min-width: 1200px !important;
padding: 0;
margin: 0 auto;
}
}
@media only screen and (min-width: 992px) {
.container {
min-width: 992px;
}
}
@media only screen and (min-width: 768px) {
.container {
min-width: 768px;
}
.navbar-nav {
float: right;
}
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: 0;
}
.navbar-nav > li > a {
padding-top: 30px;
padding-bottom: 30px;
}
}
/* End Min Widths */
/* / End Media Screens */ | 0.376509 | 0.055031 |
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
body {
background-color: #e6e6e6;
font-size: 100%;
font-family: 'Lato', sans-serif;
font-weight: 400; }
.form-container {
min-width: 324px;
margin: 50px auto 0px;
background-color: #fff;
border: 1px solid #cfcfcf;
border-bottom: 3px solid #ccc; }
.row {
width: 100%;
margin: 0 0 1em 0;
padding: 0 2.5em; }
.row.header {
max-height: 120px;
padding: 1.5em 2.5em;
border-bottom: 1px solid #ccc;
color: #fff; }
.row.body {
padding: .5em 2.5em 1em; }
.pull-right {
float: right; }
h1 {
font-family: 'Lato', sans-serif;
font-weight: 300;
display: inline-block;
font-weight: 100;
font-size: 2.8125em;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
margin: 0 0 0.1em 0;
padding: 0 0 0.4em 0; }
h3 {
font-family: 'Lato', sans-serif;
font-weight: 400;
font-size: 1.25em;
margin: 1em 0 0.4em 0; }
.btn {
font-size: 1.0625em;
display: inline-block;
padding: 0.74em 1.5em;
margin: 1.5em 0 0;
color: #fff;
border-width: 0 0 0 0;
border-bottom: 5px solid;
text-transform: uppercase;
background-color: #b3b3b3;
border-bottom-color: #8c8c8c;
font-family: 'Lato', sans-serif;
font-weight: 300; }
.btn:hover {
background-color: #bfbfbf; }
.btn.btn-submit {
background-color: #4f6fad;
border-bottom-color: #374d78; }
.btn.btn-submit:hover {
background-color: #5f7db6; }
form {
max-width: 100%;
display: block; }
form ul {
margin: 0;
padding: 0;
list-style: none; }
form ul li {
margin: 0 0 0.25em 0;
clear: both;
display: inline-block;
width: 100%; }
form ul li:last-child {
margin: 0; }
form ul li p {
margin: 0;
padding: 0; }
form ul li .req {
color: #ee9cb4; }
form label {
display: block;
margin: 0 0 0.5em 0;
color: #4f6fad;
font-size: 1em; }
form input {
width: 100%;
margin: 0 0 0 0;
border: 1px solid #ccc;
padding: 6px 10px;
color: #555;
font-size: 1em; }
form textarea {
border: 1px solid #ccc;
padding: 6px 10px;
width: 100%;
color: #555; }
form small {
color: #4f6fad;
margin: 0 0 0 0.5em; }
@media only screen and (max-width: 480px) {
.pull-right {
float: none; }
input {
width: 100%; }
label {
width: 100%;
display: inline-block;
float: left;
clear: both; }
li, p {
width: 100%; }
input.btn {
margin: 1.5em 0 0.5em; }
h1 {
font-size: 2.25em; }
h3 {
font-size: 1.125em; }
li small {
display: none; } }
a {
font-size: 12px; }
.top-panel {
height: 45px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
padding: 7px;
background: #476042; }
.top-panel form {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center; }
.top-panel .logged-user p {
margin-top: 5px;
font-size: 14px;
color: #fff; }
.btn-submit2 {
min-width: 90px;
height: 30px; }
.submit-area button {
min-width: 90px;
height: 30px; }
.input-wrapper {
padding: 10px 0; }
.input-wrapper input, .input-wrapper textarea {
width: 100%; }
.input-wrapper input[type="submit"] {
width: 150px; }
.owl-carousel {
background: #eee;
position: relative !important;
bottom: -45px !important; }
.list-of-topics .list-element {
padding: 10px 0;
width: 100%;
border-bottom: 1px solid #999; }
.list-of-topics .list-element a {
letter-spacing: 4px;
font-size: 14px; }
.divider {
margin: 0.5em 0 0.5em 0;
border: 0;
height: 1px;
width: 100%;
display: block;
background-color: #4f6fad;
background-image: linear-gradient(to right, #ee9cb4, #4f6fad); }
.pad {
padding: 0; }
.info-box {
width: 500px;
margin: auto;
opacity: 0.7;
border: 1px solid #4f6fad;
padding: 21px;
background: #4f6fad;
color: #fff;
text-align: center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px; }
.info-box h5 {
font-size: 13px; }
.content-all {
padding: 10px 20px 60px 20px;
border-left: 1px dashed #333;
border-right: 1px dashed #333;
color: #555;
background-color: #fff; }
.post-content {
margin: 30px 0; }
.post-content .head_style {
letter-spacing: 3px;
color: #6A9662;
background: #fff; }
.comment-element {
border: 1px solid #000;
margin: 10px 0; }
.comment-element .comment-top-panel {
display: flex;
justify-content: center;
align-items: center;
padding: 0 5px;
background: #476042;
color: #fff; }
.comment-element .comment-top-panel .date {
padding: 2px 0; }
.comment-element .comment-top-panel .date p {
margin: 0; }
.comment-element .comment-top-panel .author {
padding: 2px 0; }
.comment-element .comment-top-panel .author p {
margin: 0; }
.photo-wrapper .photo {
width: 50px;
margin: auto; }
.photo-wrapper .photo img {
width: 50px; } | public/css/main2.css | @import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
body {
background-color: #e6e6e6;
font-size: 100%;
font-family: 'Lato', sans-serif;
font-weight: 400; }
.form-container {
min-width: 324px;
margin: 50px auto 0px;
background-color: #fff;
border: 1px solid #cfcfcf;
border-bottom: 3px solid #ccc; }
.row {
width: 100%;
margin: 0 0 1em 0;
padding: 0 2.5em; }
.row.header {
max-height: 120px;
padding: 1.5em 2.5em;
border-bottom: 1px solid #ccc;
color: #fff; }
.row.body {
padding: .5em 2.5em 1em; }
.pull-right {
float: right; }
h1 {
font-family: 'Lato', sans-serif;
font-weight: 300;
display: inline-block;
font-weight: 100;
font-size: 2.8125em;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
margin: 0 0 0.1em 0;
padding: 0 0 0.4em 0; }
h3 {
font-family: 'Lato', sans-serif;
font-weight: 400;
font-size: 1.25em;
margin: 1em 0 0.4em 0; }
.btn {
font-size: 1.0625em;
display: inline-block;
padding: 0.74em 1.5em;
margin: 1.5em 0 0;
color: #fff;
border-width: 0 0 0 0;
border-bottom: 5px solid;
text-transform: uppercase;
background-color: #b3b3b3;
border-bottom-color: #8c8c8c;
font-family: 'Lato', sans-serif;
font-weight: 300; }
.btn:hover {
background-color: #bfbfbf; }
.btn.btn-submit {
background-color: #4f6fad;
border-bottom-color: #374d78; }
.btn.btn-submit:hover {
background-color: #5f7db6; }
form {
max-width: 100%;
display: block; }
form ul {
margin: 0;
padding: 0;
list-style: none; }
form ul li {
margin: 0 0 0.25em 0;
clear: both;
display: inline-block;
width: 100%; }
form ul li:last-child {
margin: 0; }
form ul li p {
margin: 0;
padding: 0; }
form ul li .req {
color: #ee9cb4; }
form label {
display: block;
margin: 0 0 0.5em 0;
color: #4f6fad;
font-size: 1em; }
form input {
width: 100%;
margin: 0 0 0 0;
border: 1px solid #ccc;
padding: 6px 10px;
color: #555;
font-size: 1em; }
form textarea {
border: 1px solid #ccc;
padding: 6px 10px;
width: 100%;
color: #555; }
form small {
color: #4f6fad;
margin: 0 0 0 0.5em; }
@media only screen and (max-width: 480px) {
.pull-right {
float: none; }
input {
width: 100%; }
label {
width: 100%;
display: inline-block;
float: left;
clear: both; }
li, p {
width: 100%; }
input.btn {
margin: 1.5em 0 0.5em; }
h1 {
font-size: 2.25em; }
h3 {
font-size: 1.125em; }
li small {
display: none; } }
a {
font-size: 12px; }
.top-panel {
height: 45px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
padding: 7px;
background: #476042; }
.top-panel form {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center; }
.top-panel .logged-user p {
margin-top: 5px;
font-size: 14px;
color: #fff; }
.btn-submit2 {
min-width: 90px;
height: 30px; }
.submit-area button {
min-width: 90px;
height: 30px; }
.input-wrapper {
padding: 10px 0; }
.input-wrapper input, .input-wrapper textarea {
width: 100%; }
.input-wrapper input[type="submit"] {
width: 150px; }
.owl-carousel {
background: #eee;
position: relative !important;
bottom: -45px !important; }
.list-of-topics .list-element {
padding: 10px 0;
width: 100%;
border-bottom: 1px solid #999; }
.list-of-topics .list-element a {
letter-spacing: 4px;
font-size: 14px; }
.divider {
margin: 0.5em 0 0.5em 0;
border: 0;
height: 1px;
width: 100%;
display: block;
background-color: #4f6fad;
background-image: linear-gradient(to right, #ee9cb4, #4f6fad); }
.pad {
padding: 0; }
.info-box {
width: 500px;
margin: auto;
opacity: 0.7;
border: 1px solid #4f6fad;
padding: 21px;
background: #4f6fad;
color: #fff;
text-align: center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px; }
.info-box h5 {
font-size: 13px; }
.content-all {
padding: 10px 20px 60px 20px;
border-left: 1px dashed #333;
border-right: 1px dashed #333;
color: #555;
background-color: #fff; }
.post-content {
margin: 30px 0; }
.post-content .head_style {
letter-spacing: 3px;
color: #6A9662;
background: #fff; }
.comment-element {
border: 1px solid #000;
margin: 10px 0; }
.comment-element .comment-top-panel {
display: flex;
justify-content: center;
align-items: center;
padding: 0 5px;
background: #476042;
color: #fff; }
.comment-element .comment-top-panel .date {
padding: 2px 0; }
.comment-element .comment-top-panel .date p {
margin: 0; }
.comment-element .comment-top-panel .author {
padding: 2px 0; }
.comment-element .comment-top-panel .author p {
margin: 0; }
.photo-wrapper .photo {
width: 50px;
margin: auto; }
.photo-wrapper .photo img {
width: 50px; } | 0.387343 | 0.123551 |
@charset "utf-8";
/*系统提示更新信息*/
.alert.alert-warning{padding: 10px; border-radius:0px; margin-bottom: 10px; color: #333;background-color: #FFF5CB;border-color: #FDEEB2;}
.alert.alert-warning .close{line-height: 12px;}
.alert.alert-warning .alert-href{ color:#FF4343;}
/*顶部4个样式*/
.row .panel { box-shadow:none; border-radius: 0px; }
.card-box .panel { background: #fff; height: 106px; overflow: hidden; position:relative;}
.card-box .panel.purple { background: #a979d1; color: #fff; }
.card-box .panel .value { border-color: rgba(255,255,255,.2); }
.card-box .symbol, .card-box .value { display: inline-block; text-align: center; }
.card-box .symbol { width: 30%; padding: 32px 15px; position:absolute; }
.card-box .symbol i { font-size: 40px; opacity: 0.6; margin: 0; }
.card-box .value { width: 68%; margin-top: 23px; border-left: 1px solid; padding-left: 10%; float: right; text-align: left; }
.card-box .value p { margin: 0; padding: 0; }
.card-box .value p.num { font-weight: 100; font-size: 28px; }
.card-box .panel .purple-color { color: #a979d1; }
.card-box .panel .value.gray { border-color: #eaeaeb; }
.card-box .panel.green { background: #13C5A5; color: #fff; }
.card-box .panel .green-color { color: #13C5A5; }
.card-box .panel.blue { background: #23B7E5; color: #fff; }
.card-box .panel .blue-color { color: #23B7E5; }
.card-box .panel.orange { background: #FB8E6F; color: #fff; }
.card-box .panel .orange-color { color: #FB8E6F; }
/*模块样式*/
.panel { position: relative }
.panel .panel-header { display: block; height: auto; padding: 6px 15px 6px 18px; position: relative; }
.panel .panel-header h3 { display: block; font-size: 15px; font-weight: 400; line-height: normal; margin-bottom: 5px; margin-top: 5px; text-transform: uppercase; }
.panel .panel-header .control-btn { display: inline-block !important; position: absolute; right: 13px; top: 12px; z-index: 2; height: 20px; line-height: 26px; }
.panel .control-btn > a { cursor: pointer; margin-left: 11px; margin-right: 0px; transition: all 0.4s ease; opacity: 0 }
.panel .control-btn > a i { background: url(../images/combine_img.png) no-repeat 0px -100px; width: 15px; height: 15px; display: inline-block; }
.panel .control-btn > a.panel-reload i { background-position: -1px -90px; }
.panel .control-btn > a.panel-maximize i { background-position: -94px -90px }
.panel .control-btn > a.panel-toggle i { background-position: -122px -90px }
.panel .control-btn > a.panel-close i { background-position: -152px -90px }
.panel:hover .control-btn > a { opacity: 1; transition: all 0.4s ease; }
.panel .panel-header:hover .control-btn > a.panel-reload i { background-position: -1px -115px; }
.panel .panel-header:hover .control-btn > a.panel-maximize i { background-position: -94px -115px; }
.panel .panel-header:hover .control-btn > a.panel-toggle i { background-position: -122px -115px; }
.panel .panel-header:hover .control-btn > a.panel-close i { background-position: -152px -115px; }
.panel .panel-body { border-top: 1px solid #e3e8ed; }
.panel .panel-body.slimScrollDiv { height: 260px; }
/*模块刷新缓载*/
.panel.panel-loading .panel-body { position: relative; z-index: 0 }
.panel.panel-loading.panel-maximize .panel-body { position: absolute }
.panel.panel-loading .panel-body .panel-loader { position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: #fff; opacity: .9; filter: alpha(opacity=90); animation: fadeIn .2s; -webkit-animation: fadeIn .2s; z-index: 1020; }
.spinner, .spinner-small { position: absolute; top: 50%; left: 50%; margin: -20px -20px 0 0; border: 2px solid #fff; border-top: 2px solid #24B498; border-radius: 100%; z-index: 22 }
.panel-loader .spinner-small { border: 2px solid rgba(0,0,0,.05); border-top: 2px solid #24B498; height: 30px; width: 30px; margin: -15px -15px 0 0 }
.panel-loader .spinner-small.fa-spin { animation: fa-spin 0.6s infinite linear; }
/*运营入口*/
.entrance-box { overflow: hidden; }
.entrance-box dl { vertical-align: middle; letter-spacing: normal; word-spacing: normal; display: inline-block; *display: inline;
width: 49%; height: 85px; margin: -1px 0 0 -1px; border: solid #F7F7F7; border-width: 1px 0 0 1px; position: relative; z-index: 1; overflow: hidden; zoom: 1; float: left; background: #fff; }
.entrance-box dl .p-name {font: 14px/20px "microsoft yahei"; color: #333;position:absolute; z-index: 1; top: 35px; left: 70px; }
.entrance-box dl .p-name a { color: #555; }
.entrance-box dl .p-ico { display: block; width: 48px; height: 48px; position: absolute; z-index: 1; top: 18px; left: 15px; text-align: center; }
.entrance-box dl .p-ico a { display: block; }
.entrance-box dl .p-ico i { font-size: 34px; color: #27A9E3; opacity: 0.7; margin-top: 6px; margin-right: 0; background: url(../images/combine_img.png) no-repeat -565px -70px; width: 48px; height: 48px; display: inline-block; }
.entrance-box dl .p-ico i.order { background-position: -555px -124px; }
.entrance-box dl .p-ico i.user { background-position: -473px -122px }
.entrance-box dl .p-ico i.return { background-position: -475px -64px; }
.entrance-box dl .p-ico i.money { background-position: -399px -62px; }
.entrance-box dl .p-ico i.store { background-position: -555px -64px; }
.entrance-box dl .p-ico i.apply { background-position: -399px -122px }
.entrance-box dl .p-hint { font: 12px/20px "microsoft yahei"; color: #999; position: absolute; z-index: 1; left: 70px; top: 41px; }
.entrance-box dl .p-hint i { color: #28B779; margin-right: 4px; }
.entrance-box dl .p-info { font: 12px/16px "microsoft yahei"; color: #AAA; width: 200px; height: 32px; padding-top: 8px; border-top: dotted 1px #F5F5F5; position: absolute; z-index: 1; left: 15px; top: 96px; overflow: hidden; }
.entrance-box dl sub { animation: 0.4s ease 0s normal none 1 running orangeOut; background-color: #FAFAFA; height: 100%; opacity: 0; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; width: 100%; }
.entrance-box dl:hover sub { animation: 0.2s ease 0s normal none 1 running orangeIn; opacity: 1; }
@keyframes orangeIn { 0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes orangeOut { 0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.8);
}
}
.entrance-box dl:hover .p-ico i { opacity: 1; }
/*迷你统计*/
.mini-stat .panel {background: #fff; border-radius: 0px; margin-bottom: 20px; padding: 15px 10px; transition: all .1s ease-out; }
.mini-stat .panel:hover { transition: all .1s ease-out; text-decoration: none; -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.05); box-shadow: 0 3px 5px rgba(0,0,0,.09); -webkit-transform: translateY(-2px); transform: translateY(-2px) }
.mini-stat .panel a { display: block; color: #666; }
.mini-stat-icon { width: 50px; height: 50px; display: inline-block; line-height: 46px; text-align: center; font-size: 30px; background: #eee; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; float: left; margin-right: 10px; color: #fff; }
.mini-stat-icon i { text-align: center; font-size: 24px; color: #fff; margin: 0; }
.mini-stat-icon.orange { background: #FB8E6F !important; }
.mini-stat-icon.tar { background: #B8CD94 !important; }
.mini-stat-icon.red { background: #f9243f !important; }
.mini-stat-icon.brown { background: #EDCF87 !important; }
.mini-stat-icon.blue { background: #63D3E9 !important; }
.mini-stat-icon.green { background: #6ACCB3 !important; }
.mini-stat-icon.pink { background: #AA93D7 !important; }
.mini-stat-icon.lightgreen { background: #90C657 !important; }
.mini-stat-info { font-size: 12px; padding-top: 2px; }
.mini-stat-info span.num { display: block; font-size: 24px; font-weight: 200; }
#users_div { height: 252px; width: 100%; }
.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, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .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, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { position: relative; min-height: 1px; padding-right: 8px; padding-left: 8px; }
/*系统信息*/
.system-infor { overflow: hidden; }
.system-infor ul { margin-top: -1px; overflow: hidden; }
.system-infor ul li { display: block; width: 100%; padding: 12px 8px; vertical-align: middle; text-align: left; border-top: 1px solid #ddd; float: left; }
@media (min-width:480px) {.system-infor ul li { width: 100%; display: block }}
@media (min-width:768px) {.system-infor ul li { width: 50%; display: block }}
@media (min-width:992px) {.system-infor ul li { width: 50%; display: inline-block; }}
@media (min-width:1200px) {.system-infor ul li { width: 50%; display: inline-block; }}
.system-infor ul li .dt, .system-infor ul li .dd { color: #666; font-size: 12px; display: inline-block; float: left; }
.system-infor ul li .dt { width: 100%; }
@media (min-width:480px) {.system-infor ul li .dt { width: 100%; }}
@media (min-width:768px) {.system-infor ul li .dt { width: 25%; }}
@media (min-width:992px) {.system-infor ul li .dt { width: 25%; }}
@media (min-width:1200px) {.system-infor ul li .dt { width: 25%; }}
.system-infor ul li .dd { width: 100%; }
@media (min-width:480px) {.system-infor ul li .dd { width: 100%; }}
@media (min-width:768px) {.system-infor ul li .dd { width: 75%; }}
@media (min-width:992px) {.system-infor ul li .dd { width: 75%; }}
@media (min-width:1200px) {.system-infor ul li .dd { width: 75%; }}
.style-original .row .panel{box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);}
/*原样式可删除*/
.panel-page{ padding:62px 25px 20px;}
.panel-page .panel{ border:1px solid #e7e7e7; }
.link-list { display:block; overflow:hidden;}
.link-list dt,.link-list dd{ display:inline-block; float:left; line-height:28px; color:#666; font-size:13px; font-weight:500; padding:0 5px;}
.link-list dt{ width:18%; text-align:right;}
/*可删除结束*/
/*升级小控制面板*/
.condition{ height:150px; padding:15px;}
.condition .left-info{ border-right:1px solid #e7e7e7}
.condition .left-info .user-box{ text-align:center; width:80px;float: left;display: inline-block;}
.condition .left-info .user-img{ height:80px; width:80px; border-radius:99%;display:block; margin-bottom:10px; border:2px solid #eee;}
.condition .left-info .user-img img{ max-width:100%;border-radius:99%; display:block;border: 1px solid #eee;}
.condition .left-info .user-message{ float:left; display:inline-block;padding: 5px 0;}
.condition h5{ margin-bottom:2px; line-height:20px;}
.condition .left-info .user-message .time{ font-size:10px; color:#999; margin-right:20px;}
.condition .left-info .data{ overflow:hidden; margin-top:10px;}
.condition .left-info .data dl{ float:left; display:inline-block; width:100px; margin:10px 7px; border-right:1px dotted #eee;}
.condition .left-info .data dl:last-child{ border-right:none;}
.condition .left-info .data dl dt,.condition .left-info .data dl dd{ font-weight:500; color:#999; font-size:12px;}
.condition .left-info .data dl strong,.condition .right-info .chart-info p strong{ font-size:18px; font-family:Verdana, Geneva, sans-serif; font-weight:500; margin-right:3px;color: #FF7840;}
.condition .right-info .chart-box{ max-width:120px; height:120px; margin: 0 20px 0 10px;float:left; display:inline-block}
.condition .right-info .chart-box img{max-width:100%}
.condition .right-info .chart-info{ float:left; display:inline-block;padding: 10px 0 5px;}
.condition .right-info .chart-info h5{ margin-bottom:15px; font-weight:600}
.condition .right-info .chart-info p{ line-height:22px;}
.condition .right-info .chart-info p strong{ color:#4C9ED9;}
/*第三方物流*/
.product-list{}
.product-list li{padding: 6px 4px; }
.product-list li a{ display:block; overflow:hidden;}
.product-list li i.product-icon{float: left; width: 48px;height: 48px; display:block; background:url(../images/index/product_icon.png) no-repeat;}
.product-list li i.product-icon.sousou56{ background-position:0 0;}
.product-list li i.product-icon.yishouyin{ background-position:0 -49px;}
.product-list li i.product-icon.yierp{ background-position:0 -97px;}
.product-list li .product-info{padding-left: 20px; overflow: hidden;line-height: 23px;}
.product-list li .product-info h5{ font-size:14px;}
.product-list li .product-info p{color: #999; line-height: 18px;}
/*商城设置及客户服务*/
.customer-service ul li,.shop-set ul li{ line-height:24px; font-size:13px;}
.customer-service ul li span,.shop-set ul li span{ margin-left:5px;}
.shop-set,.customer-service{ position:relative}
.shop-set .stat-icon,.customer-service .stat-icon{ position:absolute; top: 20px;right: 10px;font-size: 30px;opacity: .05;}
.shop-set .stat-icon i.fa,.customer-service .stat-icon i.fa{ font-size:88px;}
/*广告区域*/
.ad-box{height:200px; background:#3399FE; text-align:center;}
.ad-box{ display:block}
.ad-box img{ max-width:100%; max-height:100%;} | public/css/admin/welcome.css | @charset "utf-8";
/*系统提示更新信息*/
.alert.alert-warning{padding: 10px; border-radius:0px; margin-bottom: 10px; color: #333;background-color: #FFF5CB;border-color: #FDEEB2;}
.alert.alert-warning .close{line-height: 12px;}
.alert.alert-warning .alert-href{ color:#FF4343;}
/*顶部4个样式*/
.row .panel { box-shadow:none; border-radius: 0px; }
.card-box .panel { background: #fff; height: 106px; overflow: hidden; position:relative;}
.card-box .panel.purple { background: #a979d1; color: #fff; }
.card-box .panel .value { border-color: rgba(255,255,255,.2); }
.card-box .symbol, .card-box .value { display: inline-block; text-align: center; }
.card-box .symbol { width: 30%; padding: 32px 15px; position:absolute; }
.card-box .symbol i { font-size: 40px; opacity: 0.6; margin: 0; }
.card-box .value { width: 68%; margin-top: 23px; border-left: 1px solid; padding-left: 10%; float: right; text-align: left; }
.card-box .value p { margin: 0; padding: 0; }
.card-box .value p.num { font-weight: 100; font-size: 28px; }
.card-box .panel .purple-color { color: #a979d1; }
.card-box .panel .value.gray { border-color: #eaeaeb; }
.card-box .panel.green { background: #13C5A5; color: #fff; }
.card-box .panel .green-color { color: #13C5A5; }
.card-box .panel.blue { background: #23B7E5; color: #fff; }
.card-box .panel .blue-color { color: #23B7E5; }
.card-box .panel.orange { background: #FB8E6F; color: #fff; }
.card-box .panel .orange-color { color: #FB8E6F; }
/*模块样式*/
.panel { position: relative }
.panel .panel-header { display: block; height: auto; padding: 6px 15px 6px 18px; position: relative; }
.panel .panel-header h3 { display: block; font-size: 15px; font-weight: 400; line-height: normal; margin-bottom: 5px; margin-top: 5px; text-transform: uppercase; }
.panel .panel-header .control-btn { display: inline-block !important; position: absolute; right: 13px; top: 12px; z-index: 2; height: 20px; line-height: 26px; }
.panel .control-btn > a { cursor: pointer; margin-left: 11px; margin-right: 0px; transition: all 0.4s ease; opacity: 0 }
.panel .control-btn > a i { background: url(../images/combine_img.png) no-repeat 0px -100px; width: 15px; height: 15px; display: inline-block; }
.panel .control-btn > a.panel-reload i { background-position: -1px -90px; }
.panel .control-btn > a.panel-maximize i { background-position: -94px -90px }
.panel .control-btn > a.panel-toggle i { background-position: -122px -90px }
.panel .control-btn > a.panel-close i { background-position: -152px -90px }
.panel:hover .control-btn > a { opacity: 1; transition: all 0.4s ease; }
.panel .panel-header:hover .control-btn > a.panel-reload i { background-position: -1px -115px; }
.panel .panel-header:hover .control-btn > a.panel-maximize i { background-position: -94px -115px; }
.panel .panel-header:hover .control-btn > a.panel-toggle i { background-position: -122px -115px; }
.panel .panel-header:hover .control-btn > a.panel-close i { background-position: -152px -115px; }
.panel .panel-body { border-top: 1px solid #e3e8ed; }
.panel .panel-body.slimScrollDiv { height: 260px; }
/*模块刷新缓载*/
.panel.panel-loading .panel-body { position: relative; z-index: 0 }
.panel.panel-loading.panel-maximize .panel-body { position: absolute }
.panel.panel-loading .panel-body .panel-loader { position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: #fff; opacity: .9; filter: alpha(opacity=90); animation: fadeIn .2s; -webkit-animation: fadeIn .2s; z-index: 1020; }
.spinner, .spinner-small { position: absolute; top: 50%; left: 50%; margin: -20px -20px 0 0; border: 2px solid #fff; border-top: 2px solid #24B498; border-radius: 100%; z-index: 22 }
.panel-loader .spinner-small { border: 2px solid rgba(0,0,0,.05); border-top: 2px solid #24B498; height: 30px; width: 30px; margin: -15px -15px 0 0 }
.panel-loader .spinner-small.fa-spin { animation: fa-spin 0.6s infinite linear; }
/*运营入口*/
.entrance-box { overflow: hidden; }
.entrance-box dl { vertical-align: middle; letter-spacing: normal; word-spacing: normal; display: inline-block; *display: inline;
width: 49%; height: 85px; margin: -1px 0 0 -1px; border: solid #F7F7F7; border-width: 1px 0 0 1px; position: relative; z-index: 1; overflow: hidden; zoom: 1; float: left; background: #fff; }
.entrance-box dl .p-name {font: 14px/20px "microsoft yahei"; color: #333;position:absolute; z-index: 1; top: 35px; left: 70px; }
.entrance-box dl .p-name a { color: #555; }
.entrance-box dl .p-ico { display: block; width: 48px; height: 48px; position: absolute; z-index: 1; top: 18px; left: 15px; text-align: center; }
.entrance-box dl .p-ico a { display: block; }
.entrance-box dl .p-ico i { font-size: 34px; color: #27A9E3; opacity: 0.7; margin-top: 6px; margin-right: 0; background: url(../images/combine_img.png) no-repeat -565px -70px; width: 48px; height: 48px; display: inline-block; }
.entrance-box dl .p-ico i.order { background-position: -555px -124px; }
.entrance-box dl .p-ico i.user { background-position: -473px -122px }
.entrance-box dl .p-ico i.return { background-position: -475px -64px; }
.entrance-box dl .p-ico i.money { background-position: -399px -62px; }
.entrance-box dl .p-ico i.store { background-position: -555px -64px; }
.entrance-box dl .p-ico i.apply { background-position: -399px -122px }
.entrance-box dl .p-hint { font: 12px/20px "microsoft yahei"; color: #999; position: absolute; z-index: 1; left: 70px; top: 41px; }
.entrance-box dl .p-hint i { color: #28B779; margin-right: 4px; }
.entrance-box dl .p-info { font: 12px/16px "microsoft yahei"; color: #AAA; width: 200px; height: 32px; padding-top: 8px; border-top: dotted 1px #F5F5F5; position: absolute; z-index: 1; left: 15px; top: 96px; overflow: hidden; }
.entrance-box dl sub { animation: 0.4s ease 0s normal none 1 running orangeOut; background-color: #FAFAFA; height: 100%; opacity: 0; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; width: 100%; }
.entrance-box dl:hover sub { animation: 0.2s ease 0s normal none 1 running orangeIn; opacity: 1; }
@keyframes orangeIn { 0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes orangeOut { 0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.8);
}
}
.entrance-box dl:hover .p-ico i { opacity: 1; }
/*迷你统计*/
.mini-stat .panel {background: #fff; border-radius: 0px; margin-bottom: 20px; padding: 15px 10px; transition: all .1s ease-out; }
.mini-stat .panel:hover { transition: all .1s ease-out; text-decoration: none; -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.05); box-shadow: 0 3px 5px rgba(0,0,0,.09); -webkit-transform: translateY(-2px); transform: translateY(-2px) }
.mini-stat .panel a { display: block; color: #666; }
.mini-stat-icon { width: 50px; height: 50px; display: inline-block; line-height: 46px; text-align: center; font-size: 30px; background: #eee; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; float: left; margin-right: 10px; color: #fff; }
.mini-stat-icon i { text-align: center; font-size: 24px; color: #fff; margin: 0; }
.mini-stat-icon.orange { background: #FB8E6F !important; }
.mini-stat-icon.tar { background: #B8CD94 !important; }
.mini-stat-icon.red { background: #f9243f !important; }
.mini-stat-icon.brown { background: #EDCF87 !important; }
.mini-stat-icon.blue { background: #63D3E9 !important; }
.mini-stat-icon.green { background: #6ACCB3 !important; }
.mini-stat-icon.pink { background: #AA93D7 !important; }
.mini-stat-icon.lightgreen { background: #90C657 !important; }
.mini-stat-info { font-size: 12px; padding-top: 2px; }
.mini-stat-info span.num { display: block; font-size: 24px; font-weight: 200; }
#users_div { height: 252px; width: 100%; }
.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, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .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, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { position: relative; min-height: 1px; padding-right: 8px; padding-left: 8px; }
/*系统信息*/
.system-infor { overflow: hidden; }
.system-infor ul { margin-top: -1px; overflow: hidden; }
.system-infor ul li { display: block; width: 100%; padding: 12px 8px; vertical-align: middle; text-align: left; border-top: 1px solid #ddd; float: left; }
@media (min-width:480px) {.system-infor ul li { width: 100%; display: block }}
@media (min-width:768px) {.system-infor ul li { width: 50%; display: block }}
@media (min-width:992px) {.system-infor ul li { width: 50%; display: inline-block; }}
@media (min-width:1200px) {.system-infor ul li { width: 50%; display: inline-block; }}
.system-infor ul li .dt, .system-infor ul li .dd { color: #666; font-size: 12px; display: inline-block; float: left; }
.system-infor ul li .dt { width: 100%; }
@media (min-width:480px) {.system-infor ul li .dt { width: 100%; }}
@media (min-width:768px) {.system-infor ul li .dt { width: 25%; }}
@media (min-width:992px) {.system-infor ul li .dt { width: 25%; }}
@media (min-width:1200px) {.system-infor ul li .dt { width: 25%; }}
.system-infor ul li .dd { width: 100%; }
@media (min-width:480px) {.system-infor ul li .dd { width: 100%; }}
@media (min-width:768px) {.system-infor ul li .dd { width: 75%; }}
@media (min-width:992px) {.system-infor ul li .dd { width: 75%; }}
@media (min-width:1200px) {.system-infor ul li .dd { width: 75%; }}
.style-original .row .panel{box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);}
/*原样式可删除*/
.panel-page{ padding:62px 25px 20px;}
.panel-page .panel{ border:1px solid #e7e7e7; }
.link-list { display:block; overflow:hidden;}
.link-list dt,.link-list dd{ display:inline-block; float:left; line-height:28px; color:#666; font-size:13px; font-weight:500; padding:0 5px;}
.link-list dt{ width:18%; text-align:right;}
/*可删除结束*/
/*升级小控制面板*/
.condition{ height:150px; padding:15px;}
.condition .left-info{ border-right:1px solid #e7e7e7}
.condition .left-info .user-box{ text-align:center; width:80px;float: left;display: inline-block;}
.condition .left-info .user-img{ height:80px; width:80px; border-radius:99%;display:block; margin-bottom:10px; border:2px solid #eee;}
.condition .left-info .user-img img{ max-width:100%;border-radius:99%; display:block;border: 1px solid #eee;}
.condition .left-info .user-message{ float:left; display:inline-block;padding: 5px 0;}
.condition h5{ margin-bottom:2px; line-height:20px;}
.condition .left-info .user-message .time{ font-size:10px; color:#999; margin-right:20px;}
.condition .left-info .data{ overflow:hidden; margin-top:10px;}
.condition .left-info .data dl{ float:left; display:inline-block; width:100px; margin:10px 7px; border-right:1px dotted #eee;}
.condition .left-info .data dl:last-child{ border-right:none;}
.condition .left-info .data dl dt,.condition .left-info .data dl dd{ font-weight:500; color:#999; font-size:12px;}
.condition .left-info .data dl strong,.condition .right-info .chart-info p strong{ font-size:18px; font-family:Verdana, Geneva, sans-serif; font-weight:500; margin-right:3px;color: #FF7840;}
.condition .right-info .chart-box{ max-width:120px; height:120px; margin: 0 20px 0 10px;float:left; display:inline-block}
.condition .right-info .chart-box img{max-width:100%}
.condition .right-info .chart-info{ float:left; display:inline-block;padding: 10px 0 5px;}
.condition .right-info .chart-info h5{ margin-bottom:15px; font-weight:600}
.condition .right-info .chart-info p{ line-height:22px;}
.condition .right-info .chart-info p strong{ color:#4C9ED9;}
/*第三方物流*/
.product-list{}
.product-list li{padding: 6px 4px; }
.product-list li a{ display:block; overflow:hidden;}
.product-list li i.product-icon{float: left; width: 48px;height: 48px; display:block; background:url(../images/index/product_icon.png) no-repeat;}
.product-list li i.product-icon.sousou56{ background-position:0 0;}
.product-list li i.product-icon.yishouyin{ background-position:0 -49px;}
.product-list li i.product-icon.yierp{ background-position:0 -97px;}
.product-list li .product-info{padding-left: 20px; overflow: hidden;line-height: 23px;}
.product-list li .product-info h5{ font-size:14px;}
.product-list li .product-info p{color: #999; line-height: 18px;}
/*商城设置及客户服务*/
.customer-service ul li,.shop-set ul li{ line-height:24px; font-size:13px;}
.customer-service ul li span,.shop-set ul li span{ margin-left:5px;}
.shop-set,.customer-service{ position:relative}
.shop-set .stat-icon,.customer-service .stat-icon{ position:absolute; top: 20px;right: 10px;font-size: 30px;opacity: .05;}
.shop-set .stat-icon i.fa,.customer-service .stat-icon i.fa{ font-size:88px;}
/*广告区域*/
.ad-box{height:200px; background:#3399FE; text-align:center;}
.ad-box{ display:block}
.ad-box img{ max-width:100%; max-height:100%;} | 0.347648 | 0.102844 |
@font-face {
font-family: 'crock';
font-style: normal;
src: url('fonts/crock.ttf') format('truetype');
}
@font-face {
font-family: 'robotoslab';
font-style: normal;
src: url('fonts/robotoslab.ttf') format('truetype');
}
body {
font-family: 'robotoslab';
overflow: hidden;
display: block;
height: 100%;
z-index: 999;
}
* {
user-select: none;
/* transition: all 0.3s; */
}
div {
display: block;
}
.scroll-container::-webkit-scrollbar {
width: 0.5em;
}
.scroll-container::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.scroll-container::-webkit-scrollbar-thumb {
outline: 1px solid #313131;
border-radius: 5px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
margin: 0;
}
input[type=number] {
/* border: 0 !important; */
-webkit-appearance: none;
-moz-appearance: none;
box-shadow: none !important;
}
input[type=number]:active {
border-bottom-color: rgba(45, 146, 235, 0.9) !important;
}
button {
background-color: transparent;
color: #e7e7e7;
}
.menu-button {
border: 0px #fff solid;
background: none;
width: 100%;
padding: 1vw 1vw;
font-size: 1vw;
}
.menu-button:hover {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
.menucam {
display: flex;
justify-content: left;
}
.buy-buttons {
display:flex ;
}
.spacing2 {
margin-bottom: 20px;
}
.spacing10 {
margin-bottom: 100px;
}
.border-top {
width: 100%;
height: 1px;
background-color: rgba(255, 255, 255, 0.4);
text-align: right;
}
#head {
margin: 0 -0.75rem;
min-width: 420px;
border-radius: 2px;
overflow: hidden;
transition: all 0.5s;
}
.line {
background: rgba(255, 255, 255, 0.3);
height: 1px;
width: 90%;
margin-top: 3px;
margin-bottom: 3px;
}
.header-text {
position: relative;
padding: 30px 20px;
font-size: 2.0em;
color: white;
font-family: 'crock';
text-align: center;
}
.modal {
display: none;
position: fixed;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 2px;
padding: 20px 10px;
padding: 2vw 1vw;
color: white;
max-height: 70%;
width: 55%;
margin: auto;
overflow-y: auto;
border-radius: 2px;
will-change: top, opacity;
}
.green {
background: rgba(0, 247, 132, 0.2)!important;
}
.green:hover {
background: rgba(0, 247, 132, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
-moz-box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
}
.red {
background: rgba(240, 38, 38, 0.2)!important;
}
.red:hover {
background: rgba(240, 38, 38, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
-moz-box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
}
.grey {
background: rgba(138, 138, 138, 0.2)!important;
}
.grey:hover {
background: rgba(138, 138, 138, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
-moz-box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
}
.modal-close {
border-radius: 5px;
}
.modal-content {}
.modal-content h4 {
padding: 0;
font-size: 1.8vw;
line-height: 0.2vw;
font-weight: 400;
}
.modal-content p {
padding: 0;
font-size: 0.8vw;
line-height: 0.5vw;
}
.container {}
#clothes-container,
#creator-container,
#barber-container,
#tats-container {
padding-bottom: 40px;
border-radius: 2px;
overflow: hidden;
position: absolute;
height: 80%;
right: 2%;
top: 10%;
width: 420px;
color: #e7e7e7 !important;
background: url('img/bgPanel.png');
background-size: 100% 100%;
}
.scroll-container {
padding: 0px !important;
margin: 0px !important;
overflow-y: scroll;
overflow-x: hidden;
height: calc(100% - 200px);
width: 100%;
}
#camera-container {
/* width: 500px; */
height: 110%;
/* margin: auto; */
position: relative;
top: -10%;
left: 40%;
background-color: #313131;
border-radius: 0px;
transform: scale(0.75);
}
#button_menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
border-radius: 0px;
padding: 0px 20px;
height: 5vh;
background: url('img/input.png');
background-position: center;
background-size: 95% 100%;
}
.menu-selectb {
flex-grow: 1;
border-radius: 0px;
height: 5vh;
border: 0px #fff solid;
font-family: 'crock';
font-weight: 600;
color: white;
background: transparent;
}
.menu-selectb:hover {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
.menu-selectb.active {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
h6 {
color: #e7e7e7;
font-weight: 400 !important;
font-family: 'crock';
}
.input-number,
.input-text {
text-align: center;
font-family: 'crock' !important;
background-image: url('img/input.png') !important;
background-position: left center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.input-ranger {
width: 100% !important;
}
.panel {
padding: 0px !important;
margin: 3px 10px !important;
border-radius: 0px;
width: calc(100% - 20px) !important;
background-color: transparent;
overflow: hidden;
}
.title {
font-size: 1.0em;
}
.panel-title {
background: url('img/input.png');
background-size: 100% 100%;
padding: 10px 10px !important;
font-size: 1.5em;
font-weight: 400;
text-align: center;
}
.grey-text {
margin: auto;
/* margin-top:4px;
margin-bottom:5px; */
}
.panel-title .grey-text {
margin: 0;
margin-top: 5px;
margin-bottom: 5px;
}
.panel-label {
margin: 5px !important;
}
.panel-bottom {
border-top: 1px rgba(255, 255, 255, 0.2) solid;
background-color: rgba(0, 0, 0, 0.1);
padding: 10px !important;
}
.color_palette {
border-radius: 2px;
border: 2px solid #e7e7e762;
margin: 4px;
width: 40px;
height: 40px;
display: inline-flex;
}
.color_palette:hover {
border: 2px solid #4a92ff !important;
}
.color_palette.active {
border: 2px solid #4a92ff !important;
}
.row .col.s12 {
width: 100%;
margin-left: auto;
left: auto;
right: auto;
}
.row .col {
float: left;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 .75rem;
min-height: 1px;
}
.row .col.s4 {
width: 33.3333333333%;
margin-left: auto;
left: auto;
right: auto;
}
.row .col.s6 {
width: 50%;
margin-left: auto;
left: auto;
right: auto;
}
#clothes,
#creator {
overflow: hidden;
margin-bottom: 10px;
}
.item-bg {
background: url('img/toast_bg.png');
width: 90% !important;
background-size: 100% 100%;
justify-content: center;
padding: 3px 3px !important;
}
.selected{
background-image: url('img/toastred.png');
background-size: 100% 100%;
}
.item {
display: flex;
justify-content: center;
padding: 3px 3px !important;
}
.button-left{
height:46px !important;
}
.button-right{
height:46px !important;
}
.item:hover{
background-image: url('img/toastred.png');
background-size: 100% 100%;
}
.waves-effect {
position: relative;
cursor: pointer;
display: inline-block;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
vertical-align: middle;
z-index: 1;
-webkit-transition: .3s ease-out;
transition: .3s ease-out;
}
.waves-light {
padding: 15px 10px!important;
}
.btn,
.btn-large,
.btn-small {
display:flex !important;
flex-direction: row !important;
justify-content: center;
align-items: center;
text-decoration: none;
color: #fff;
user-select: none;
text-align: center;
letter-spacing: .5px;
-webkit-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
cursor: pointer;
border: 0px #fff solid;
}
.btn:active {
user-select: none;
border: 0px #fff solid;
}
.btn:hover {
background: url('img/buttong.png');
background-size: 100% 100%;
}
.btn-small:hover {
background: url('img/buttong.png');
background-size: 80% 100%;
background-repeat: no-repeat;
background-position: center;
border-radius: 10px;
}
.confirm{
width:100%;
height:30px;
text-align: center;
}
.confirm-button{
height: 25px;
width: 40%;
background: url('img/toast.png') !important;
background-size: 100% 100%!important;
transition: background-color .2s ease-out;
}
.confirm-button:hover{
background: url('img/toastg.png') !important;
transition: background-color .2s ease-out;
background-size: 100% 100% !important;
}
input:not([type]),
input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default),
input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default),
input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default),
input[type=number]:not(.browser-default),
input[type=search]:not(.browser-default),
textarea.materialize-textarea {
background-color: transparent;
border: none;
/* border-bottom: 1px solid #9e9e9e; */
border-radius: 0;
outline: none;
height: 3rem;
width: 100%;
font-size: 16px;
padding: 0;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-transition: border .3s, -webkit-box-shadow .3s;
transition: border .3s, -webkit-box-shadow .3s;
transition: box-shadow .3s, border .3s;
transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
}
/*
.slider-range input[type='range']::-webkit-slider-thumb {
border: 0px solid #000000;
height: 1.35vw;
width: 10px;
border-radius: 4px;
background: rgba(45, 146, 235, 0.6);
cursor: pointer;
transition: all 0.7s;
}
.slider-range input[type='range']::-webkit-slider-thumb:hover{
background-color: rgba(254,138,15,0.9);
}
.slider-range input[type=range]::-webkit-slider-runnable-track:hover {
background: linear-gradient(to right, rgba(127, 180, 227,0.3) , rgba(254,138,15,0.3));
user-select: none;
border-radius: 5px 0px 0px 5px;
background-size: 200%;
} */
input[type=range] {
-webkit-appearance: none;
margin: 0.7px 0;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 25.6px;
cursor: pointer;
background: transparent !important;
background-image: url('img/toast_bg.png') !important;
background-color: transparent;
background-size: 100% 100%;
border-radius: 0px;
border: 0px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
border: 0px solid #ff1e00;
height: 27px;
width: 18px;
background: transparent;
background-image: url('img/buttonv.png');
background-size: 100% 100%;
cursor: pointer;
-webkit-appearance: none;
margin-top: -0.7px;
}
input[type=range]::-ms-track {
width: 100%;
height: 25.6px;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: #3c4040;
border: 0px solid #010101;
border-radius: 0px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
background: #484d4d;
border: 0px solid #010101;
border-radius: 0px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
border: 0px solid #ff1e00;
height: 27px;
width: 18px;
border-radius: 0px;
background: rgba(210, 0, 0, 0.93);
cursor: pointer;
height: 25.6px;
}
.collapsible-header {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
line-height: 1.5;
padding: 1rem;
background-color: transparent !important;
border: 0 !important;
}
ul:not(.browser-default)>li {
list-style-type: none;
}
/* .slidecontainer {
width: 50%;
margin: 0px 5px;
}
.slider {
-webkit-appearance: none !important;
width: 100% !important;
background: #414141 !important;
background-color: #414141 !important;
outline: none !important;
opacity: 0.7 !important;
-webkit-transition: opacity .15s ease-in-out !important;
transition: opacity .15s ease-in-out;
height: 40px !important;
border: 0px !important;
}
input[type="range" i] {
color: #414141 !important;
}
.slider:hover {
opacity: 1;
}
*/
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: #4182e2 !important;
cursor: pointer;
border-radius: 2px !important;
}
input[type='radio'] {
display: none;
}
input[type='radio']+label {
font-size: 20px;
position: relative;
display: inline-flex;
padding-left: 30px;
cursor: pointer;
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
}
input[type='radio']+label:hover {
color: #ef4343;
}
input[type='radio']+label::before,
input[type='radio']+label::after {
position: absolute;
display: block;
content: '';
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
}
input[type='radio']+label::before {
width: 24px;
height: 24px;
background: url('img/buttonb.png');
background-size: 100% 100%;
}
input[type='radio']+label::after {
width: 24px;
height: 24px;
}
input[type='radio']:checked+label::before {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
input[type='radio']:checked+label::after {
background-image: url('img/x.png');
background-size: 24px 24px;
background-repeat: no-repeat;
background-position: center;
}
.disabled {
opacity: 0.2;
pointer-events: none;
}
.form-check {
margin-top: 10px;
width: 24px;
height: 24px;
margin-right: 5px;
}
.namespan {
margin-left: 30px;
}
input {
border: 0 !important;
}
input[type='text'],
input[type='number'] {
font-family: 'robotoslab';
padding: 9px 25px;
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
color: white;
background-color: transparent;
background-image: url('img/inputb.png');
background-position: left center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
input[type='text']:focus,
input[type='number']:focus {
color: #ca0000;
}
input[type='text']:hover,
input[type='number']:hover {
color: #ca0000;
}
input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder {
color: #a0a0a0;
}
input[type='text']:-webkit-autofill,
input[type='number']:-webkit-autofill {
color: black !important;
background-color: transparent !important;
}
button {
outline: none !important;
background-color: transparent !important;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.collapsible-body {
border: 0 !important;
}
.collapsible {
border: 0 !important;
}
.collapsible li {
display:flex;
flex-direction: column;
align-items: center;
} | resources/[FAROESTE]/[SHOPS]/frp_stable/html/style.css | @font-face {
font-family: 'crock';
font-style: normal;
src: url('fonts/crock.ttf') format('truetype');
}
@font-face {
font-family: 'robotoslab';
font-style: normal;
src: url('fonts/robotoslab.ttf') format('truetype');
}
body {
font-family: 'robotoslab';
overflow: hidden;
display: block;
height: 100%;
z-index: 999;
}
* {
user-select: none;
/* transition: all 0.3s; */
}
div {
display: block;
}
.scroll-container::-webkit-scrollbar {
width: 0.5em;
}
.scroll-container::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.scroll-container::-webkit-scrollbar-thumb {
outline: 1px solid #313131;
border-radius: 5px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
margin: 0;
}
input[type=number] {
/* border: 0 !important; */
-webkit-appearance: none;
-moz-appearance: none;
box-shadow: none !important;
}
input[type=number]:active {
border-bottom-color: rgba(45, 146, 235, 0.9) !important;
}
button {
background-color: transparent;
color: #e7e7e7;
}
.menu-button {
border: 0px #fff solid;
background: none;
width: 100%;
padding: 1vw 1vw;
font-size: 1vw;
}
.menu-button:hover {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
.menucam {
display: flex;
justify-content: left;
}
.buy-buttons {
display:flex ;
}
.spacing2 {
margin-bottom: 20px;
}
.spacing10 {
margin-bottom: 100px;
}
.border-top {
width: 100%;
height: 1px;
background-color: rgba(255, 255, 255, 0.4);
text-align: right;
}
#head {
margin: 0 -0.75rem;
min-width: 420px;
border-radius: 2px;
overflow: hidden;
transition: all 0.5s;
}
.line {
background: rgba(255, 255, 255, 0.3);
height: 1px;
width: 90%;
margin-top: 3px;
margin-bottom: 3px;
}
.header-text {
position: relative;
padding: 30px 20px;
font-size: 2.0em;
color: white;
font-family: 'crock';
text-align: center;
}
.modal {
display: none;
position: fixed;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 2px;
padding: 20px 10px;
padding: 2vw 1vw;
color: white;
max-height: 70%;
width: 55%;
margin: auto;
overflow-y: auto;
border-radius: 2px;
will-change: top, opacity;
}
.green {
background: rgba(0, 247, 132, 0.2)!important;
}
.green:hover {
background: rgba(0, 247, 132, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
-moz-box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
box-shadow: 0px 0px 3px 1px rgb(0, 247, 132);
}
.red {
background: rgba(240, 38, 38, 0.2)!important;
}
.red:hover {
background: rgba(240, 38, 38, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
-moz-box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
box-shadow: 0px 0px 3px 1px rgb(240, 38, 38);
}
.grey {
background: rgba(138, 138, 138, 0.2)!important;
}
.grey:hover {
background: rgba(138, 138, 138, 0.4)!important;
-webkit-box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
-moz-box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
box-shadow: 0px 0px 3px 1px rgb(138, 138, 138);
}
.modal-close {
border-radius: 5px;
}
.modal-content {}
.modal-content h4 {
padding: 0;
font-size: 1.8vw;
line-height: 0.2vw;
font-weight: 400;
}
.modal-content p {
padding: 0;
font-size: 0.8vw;
line-height: 0.5vw;
}
.container {}
#clothes-container,
#creator-container,
#barber-container,
#tats-container {
padding-bottom: 40px;
border-radius: 2px;
overflow: hidden;
position: absolute;
height: 80%;
right: 2%;
top: 10%;
width: 420px;
color: #e7e7e7 !important;
background: url('img/bgPanel.png');
background-size: 100% 100%;
}
.scroll-container {
padding: 0px !important;
margin: 0px !important;
overflow-y: scroll;
overflow-x: hidden;
height: calc(100% - 200px);
width: 100%;
}
#camera-container {
/* width: 500px; */
height: 110%;
/* margin: auto; */
position: relative;
top: -10%;
left: 40%;
background-color: #313131;
border-radius: 0px;
transform: scale(0.75);
}
#button_menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
border-radius: 0px;
padding: 0px 20px;
height: 5vh;
background: url('img/input.png');
background-position: center;
background-size: 95% 100%;
}
.menu-selectb {
flex-grow: 1;
border-radius: 0px;
height: 5vh;
border: 0px #fff solid;
font-family: 'crock';
font-weight: 600;
color: white;
background: transparent;
}
.menu-selectb:hover {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
.menu-selectb.active {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
h6 {
color: #e7e7e7;
font-weight: 400 !important;
font-family: 'crock';
}
.input-number,
.input-text {
text-align: center;
font-family: 'crock' !important;
background-image: url('img/input.png') !important;
background-position: left center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.input-ranger {
width: 100% !important;
}
.panel {
padding: 0px !important;
margin: 3px 10px !important;
border-radius: 0px;
width: calc(100% - 20px) !important;
background-color: transparent;
overflow: hidden;
}
.title {
font-size: 1.0em;
}
.panel-title {
background: url('img/input.png');
background-size: 100% 100%;
padding: 10px 10px !important;
font-size: 1.5em;
font-weight: 400;
text-align: center;
}
.grey-text {
margin: auto;
/* margin-top:4px;
margin-bottom:5px; */
}
.panel-title .grey-text {
margin: 0;
margin-top: 5px;
margin-bottom: 5px;
}
.panel-label {
margin: 5px !important;
}
.panel-bottom {
border-top: 1px rgba(255, 255, 255, 0.2) solid;
background-color: rgba(0, 0, 0, 0.1);
padding: 10px !important;
}
.color_palette {
border-radius: 2px;
border: 2px solid #e7e7e762;
margin: 4px;
width: 40px;
height: 40px;
display: inline-flex;
}
.color_palette:hover {
border: 2px solid #4a92ff !important;
}
.color_palette.active {
border: 2px solid #4a92ff !important;
}
.row .col.s12 {
width: 100%;
margin-left: auto;
left: auto;
right: auto;
}
.row .col {
float: left;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 .75rem;
min-height: 1px;
}
.row .col.s4 {
width: 33.3333333333%;
margin-left: auto;
left: auto;
right: auto;
}
.row .col.s6 {
width: 50%;
margin-left: auto;
left: auto;
right: auto;
}
#clothes,
#creator {
overflow: hidden;
margin-bottom: 10px;
}
.item-bg {
background: url('img/toast_bg.png');
width: 90% !important;
background-size: 100% 100%;
justify-content: center;
padding: 3px 3px !important;
}
.selected{
background-image: url('img/toastred.png');
background-size: 100% 100%;
}
.item {
display: flex;
justify-content: center;
padding: 3px 3px !important;
}
.button-left{
height:46px !important;
}
.button-right{
height:46px !important;
}
.item:hover{
background-image: url('img/toastred.png');
background-size: 100% 100%;
}
.waves-effect {
position: relative;
cursor: pointer;
display: inline-block;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
vertical-align: middle;
z-index: 1;
-webkit-transition: .3s ease-out;
transition: .3s ease-out;
}
.waves-light {
padding: 15px 10px!important;
}
.btn,
.btn-large,
.btn-small {
display:flex !important;
flex-direction: row !important;
justify-content: center;
align-items: center;
text-decoration: none;
color: #fff;
user-select: none;
text-align: center;
letter-spacing: .5px;
-webkit-transition: background-color .2s ease-out;
transition: background-color .2s ease-out;
cursor: pointer;
border: 0px #fff solid;
}
.btn:active {
user-select: none;
border: 0px #fff solid;
}
.btn:hover {
background: url('img/buttong.png');
background-size: 100% 100%;
}
.btn-small:hover {
background: url('img/buttong.png');
background-size: 80% 100%;
background-repeat: no-repeat;
background-position: center;
border-radius: 10px;
}
.confirm{
width:100%;
height:30px;
text-align: center;
}
.confirm-button{
height: 25px;
width: 40%;
background: url('img/toast.png') !important;
background-size: 100% 100%!important;
transition: background-color .2s ease-out;
}
.confirm-button:hover{
background: url('img/toastg.png') !important;
transition: background-color .2s ease-out;
background-size: 100% 100% !important;
}
input:not([type]),
input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default),
input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default),
input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default),
input[type=number]:not(.browser-default),
input[type=search]:not(.browser-default),
textarea.materialize-textarea {
background-color: transparent;
border: none;
/* border-bottom: 1px solid #9e9e9e; */
border-radius: 0;
outline: none;
height: 3rem;
width: 100%;
font-size: 16px;
padding: 0;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-transition: border .3s, -webkit-box-shadow .3s;
transition: border .3s, -webkit-box-shadow .3s;
transition: box-shadow .3s, border .3s;
transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
}
/*
.slider-range input[type='range']::-webkit-slider-thumb {
border: 0px solid #000000;
height: 1.35vw;
width: 10px;
border-radius: 4px;
background: rgba(45, 146, 235, 0.6);
cursor: pointer;
transition: all 0.7s;
}
.slider-range input[type='range']::-webkit-slider-thumb:hover{
background-color: rgba(254,138,15,0.9);
}
.slider-range input[type=range]::-webkit-slider-runnable-track:hover {
background: linear-gradient(to right, rgba(127, 180, 227,0.3) , rgba(254,138,15,0.3));
user-select: none;
border-radius: 5px 0px 0px 5px;
background-size: 200%;
} */
input[type=range] {
-webkit-appearance: none;
margin: 0.7px 0;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 25.6px;
cursor: pointer;
background: transparent !important;
background-image: url('img/toast_bg.png') !important;
background-color: transparent;
background-size: 100% 100%;
border-radius: 0px;
border: 0px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
border: 0px solid #ff1e00;
height: 27px;
width: 18px;
background: transparent;
background-image: url('img/buttonv.png');
background-size: 100% 100%;
cursor: pointer;
-webkit-appearance: none;
margin-top: -0.7px;
}
input[type=range]::-ms-track {
width: 100%;
height: 25.6px;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-ms-fill-lower {
background: #3c4040;
border: 0px solid #010101;
border-radius: 0px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
background: #484d4d;
border: 0px solid #010101;
border-radius: 0px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
box-shadow: 0px 0px 1px #670000, 0px 0px 0px #810000;
border: 0px solid #ff1e00;
height: 27px;
width: 18px;
border-radius: 0px;
background: rgba(210, 0, 0, 0.93);
cursor: pointer;
height: 25.6px;
}
.collapsible-header {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
line-height: 1.5;
padding: 1rem;
background-color: transparent !important;
border: 0 !important;
}
ul:not(.browser-default)>li {
list-style-type: none;
}
/* .slidecontainer {
width: 50%;
margin: 0px 5px;
}
.slider {
-webkit-appearance: none !important;
width: 100% !important;
background: #414141 !important;
background-color: #414141 !important;
outline: none !important;
opacity: 0.7 !important;
-webkit-transition: opacity .15s ease-in-out !important;
transition: opacity .15s ease-in-out;
height: 40px !important;
border: 0px !important;
}
input[type="range" i] {
color: #414141 !important;
}
.slider:hover {
opacity: 1;
}
*/
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: #4182e2 !important;
cursor: pointer;
border-radius: 2px !important;
}
input[type='radio'] {
display: none;
}
input[type='radio']+label {
font-size: 20px;
position: relative;
display: inline-flex;
padding-left: 30px;
cursor: pointer;
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
}
input[type='radio']+label:hover {
color: #ef4343;
}
input[type='radio']+label::before,
input[type='radio']+label::after {
position: absolute;
display: block;
content: '';
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
}
input[type='radio']+label::before {
width: 24px;
height: 24px;
background: url('img/buttonb.png');
background-size: 100% 100%;
}
input[type='radio']+label::after {
width: 24px;
height: 24px;
}
input[type='radio']:checked+label::before {
background: url('img/buttonv.png');
background-size: 100% 100%;
}
input[type='radio']:checked+label::after {
background-image: url('img/x.png');
background-size: 24px 24px;
background-repeat: no-repeat;
background-position: center;
}
.disabled {
opacity: 0.2;
pointer-events: none;
}
.form-check {
margin-top: 10px;
width: 24px;
height: 24px;
margin-right: 5px;
}
.namespan {
margin-left: 30px;
}
input {
border: 0 !important;
}
input[type='text'],
input[type='number'] {
font-family: 'robotoslab';
padding: 9px 25px;
-webkit-transition: all .33s;
-o-transition: all .33s;
transition: all .33s;
color: white;
background-color: transparent;
background-image: url('img/inputb.png');
background-position: left center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
input[type='text']:focus,
input[type='number']:focus {
color: #ca0000;
}
input[type='text']:hover,
input[type='number']:hover {
color: #ca0000;
}
input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder {
color: #a0a0a0;
}
input[type='text']:-webkit-autofill,
input[type='number']:-webkit-autofill {
color: black !important;
background-color: transparent !important;
}
button {
outline: none !important;
background-color: transparent !important;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.collapsible-body {
border: 0 !important;
}
.collapsible {
border: 0 !important;
}
.collapsible li {
display:flex;
flex-direction: column;
align-items: center;
} | 0.375477 | 0.067793 |
.horizontal-scroll-container {
position: relative;
width: auto;
min-height: 34vh;
}
.prevBtn, .nextBtn, .nextLoading {
outline: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 999;
}
.prevBtn {
left: -13px;
}
.nextBtn {
right: -16px;
}
.nav-btns {
position: relative;
left: -3px;
top: 2px;
}
.circle {
width: 45px;
line-height: 45px;
margin: 10px 10px 5px 10px;
border-radius: 50%;
text-align: center;
font-size: 16px;
font-weight: bold;
transition: 2s;
}
.circle:hover {
width: 45px;
line-height: 45px;
margin: 10px 10px 5px 10px;
border-radius: 50%;
text-align: center;
font-size: 16px;
background-color: #14ce3c;
font-weight: bold;
}
.horizontal-scroll-content {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
/*height: 40vh;*/
padding: 1em;
flex-wrap: nowrap;
display: flex;
align-items: stretch;
overflow-y: none;
}
.horizontal-scroll-content::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.btncircle {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 50%;
background: #14ce3c;
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2),
0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
border: none;
}
.prevBtn {
left: 0px;
}
/*Card css*/
.meeting-card {
height: 30vh;
width: 23vw !important;
background: white;
padding: 23px 23px 10px 23px;
border-radius: 4px;
box-shadow: 0px 1px 4px #00000029;
transition: box-shadow 0.3s;
}
.meeting-card:hover {
box-shadow: 0px 8px 16px #0000003D;
}
.meeting-card:hover .card-title {
color: #007CC3;
}
.card-title {
font-size: 2rem;
font-weight: 500;
float: left;
text-transform: capitalize;
}
.card-buttons {
display: none;
}
.fight-club {
margin-top: 15px;
text-align: center;
font-weight: 700;
font-size: 18px;
margin-bottom: 21px;
}
.publish-text {
float: right;
border: 1px solid #219CD7;
border-radius: 10px;
padding: 2px;
font-size: 9px;
color: #219CD7;
line-height: 1;
width: 60px;
text-align: center;
}
.quarter-text {
padding-left: 0px;
color: grey;
font-size: 11px;
}
.time-icon {
font-size: 20px;
color: #7E7E7E;
}
.calender-icon {
font-size: 20px;
}
.time-container {
position: relative;
top: 3px;
}
.date-text {
font-weight: 600;
font-size: 16px;
}
.time-text {
color: grey;
font-size: 16px;
}
.meeting-btn {
min-width: 115px;
margin-top: 7px !important;
line-height: 25px;
background: white;
color: #3D4551;
font-size: 16px;
border: 1px solid #8626C3;
}
.meeting-card:hover .meeting-btn {
color: #007CC3;
}
@media screen and (min-width: 1020px) and (max-width: 1248px) {
.meeting-card {
width: 35vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 860px) and (max-width: 1020px) {
.meeting-card {
width: 32vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 748px) and (max-width: 860px) {
.meeting-card {
width: 37vw !important;
height: 50vh !important;
}
}
@media screen and (max-width: 823px) {
h1{
font-size: 1.7rem;
}
.meeting-card {
width: 80vw !important;
height: 42vh !important;
}
}
@media screen and (min-width: 634px) and (max-width: 748px) {
.meeting-card {
width: 50vh !important;
height: 50vh !important;
}
}
@media screen and (min-width: 554px) and (max-width: 634px) {
.meeting-card {
width: 50vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 464px) and (max-width: 554px) {
.meeting-card {
width: 60vw !important;
height: 50vh !important;
}
} | frontend/lpp-app/src/app/horizontal_scroll/horizontal-scroller.component.css | .horizontal-scroll-container {
position: relative;
width: auto;
min-height: 34vh;
}
.prevBtn, .nextBtn, .nextLoading {
outline: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 999;
}
.prevBtn {
left: -13px;
}
.nextBtn {
right: -16px;
}
.nav-btns {
position: relative;
left: -3px;
top: 2px;
}
.circle {
width: 45px;
line-height: 45px;
margin: 10px 10px 5px 10px;
border-radius: 50%;
text-align: center;
font-size: 16px;
font-weight: bold;
transition: 2s;
}
.circle:hover {
width: 45px;
line-height: 45px;
margin: 10px 10px 5px 10px;
border-radius: 50%;
text-align: center;
font-size: 16px;
background-color: #14ce3c;
font-weight: bold;
}
.horizontal-scroll-content {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
/*height: 40vh;*/
padding: 1em;
flex-wrap: nowrap;
display: flex;
align-items: stretch;
overflow-y: none;
}
.horizontal-scroll-content::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.btncircle {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 50%;
background: #14ce3c;
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2),
0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
border: none;
}
.prevBtn {
left: 0px;
}
/*Card css*/
.meeting-card {
height: 30vh;
width: 23vw !important;
background: white;
padding: 23px 23px 10px 23px;
border-radius: 4px;
box-shadow: 0px 1px 4px #00000029;
transition: box-shadow 0.3s;
}
.meeting-card:hover {
box-shadow: 0px 8px 16px #0000003D;
}
.meeting-card:hover .card-title {
color: #007CC3;
}
.card-title {
font-size: 2rem;
font-weight: 500;
float: left;
text-transform: capitalize;
}
.card-buttons {
display: none;
}
.fight-club {
margin-top: 15px;
text-align: center;
font-weight: 700;
font-size: 18px;
margin-bottom: 21px;
}
.publish-text {
float: right;
border: 1px solid #219CD7;
border-radius: 10px;
padding: 2px;
font-size: 9px;
color: #219CD7;
line-height: 1;
width: 60px;
text-align: center;
}
.quarter-text {
padding-left: 0px;
color: grey;
font-size: 11px;
}
.time-icon {
font-size: 20px;
color: #7E7E7E;
}
.calender-icon {
font-size: 20px;
}
.time-container {
position: relative;
top: 3px;
}
.date-text {
font-weight: 600;
font-size: 16px;
}
.time-text {
color: grey;
font-size: 16px;
}
.meeting-btn {
min-width: 115px;
margin-top: 7px !important;
line-height: 25px;
background: white;
color: #3D4551;
font-size: 16px;
border: 1px solid #8626C3;
}
.meeting-card:hover .meeting-btn {
color: #007CC3;
}
@media screen and (min-width: 1020px) and (max-width: 1248px) {
.meeting-card {
width: 35vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 860px) and (max-width: 1020px) {
.meeting-card {
width: 32vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 748px) and (max-width: 860px) {
.meeting-card {
width: 37vw !important;
height: 50vh !important;
}
}
@media screen and (max-width: 823px) {
h1{
font-size: 1.7rem;
}
.meeting-card {
width: 80vw !important;
height: 42vh !important;
}
}
@media screen and (min-width: 634px) and (max-width: 748px) {
.meeting-card {
width: 50vh !important;
height: 50vh !important;
}
}
@media screen and (min-width: 554px) and (max-width: 634px) {
.meeting-card {
width: 50vw !important;
height: 50vh !important;
}
}
@media screen and (min-width: 464px) and (max-width: 554px) {
.meeting-card {
width: 60vw !important;
height: 50vh !important;
}
} | 0.3512 | 0.066236 |
@media (--r-maxS) {
.r-maxS--1of12 {
width: calc(100% * 1 / 12);
}
.r-maxS--1of11 {
width: calc(100% * 1 / 11);
}
.r-maxS--1of10 {
width: 10%;
}
.r-maxS--1of9 {
width: calc(100% * 1 / 9);
}
.r-maxS--1of8 {
width: 12.5%;
}
.r-maxS--1of7 {
width: calc(100% * 1 / 7);
}
.r-maxS--1of6,
.r-maxS--2of12 {
width: calc(100% * 1 / 6);
}
.r-maxS--2of11 {
width: calc(100% * 2 / 11);
}
.r-maxS--1of5,
.r-maxS--2of10 {
width: 20%;
}
.r-maxS--2of9 {
width: calc(100% * 2 / 9);
}
.r-maxS--1of4,
.r-maxS--2of8,
.r-maxS--3of12 {
width: 25%;
}
.r-maxS--3of11 {
width: calc(100% * 3 / 11);
}
.r-maxS--2of7 {
width: calc(100% * 2 / 7);
}
.r-maxS--3of10 {
width: 30%;
}
.r-maxS--1of3,
.r-maxS--2of6,
.r-maxS--3of9,
.r-maxS--4of12 {
width: calc(100% * 1 / 3);
}
.r-maxS--4of11 {
width: calc(100% * 4 / 11);
}
.r-maxS--3of8 {
width: 37.5%;
}
.r-maxS--2of5,
.r-maxS--4of10 {
width: 40%;
}
.r-maxS--5of12 {
width: calc(100% * 5 / 12);
}
.r-maxS--3of7 {
width: calc(100% * 3 / 7);
}
.r-maxS--4of9 {
width: calc(100% * 4 / 9);
}
.r-maxS--5of11 {
width: calc(100% * 5 / 11);
}
.r-maxS--1of2,
.r-maxS--2of4,
.r-maxS--3of6,
.r-maxS--4of8,
.r-maxS--5of10,
.r-maxS--6of12 {
width: 50%;
}
.r-maxS--6of11 {
width: calc(100% * 6 / 11 );
}
.r-maxS--5of9 {
width: calc(100% * 5 / 9);
}
.r-maxS--4of7 {
width: calc(100% * 4 / 7)
}
.r-maxS--7of12 {
width: calc(100% * 7 / 12);
}
.r-maxS--3of5,
.r-maxS--6of10 {
width: 60%;
}
.r-maxS--7of11 {
width: calc(100% * 7 / 11);
}
.r-maxS--5of8 {
width: 62.5%;
}
.r-maxS--2of3,
.r-maxS--4of6,
.r-maxS--6of9,
.r-maxS--8of12 {
width: calc(100% * 2 / 3);
}
.r-maxS--7of10 {
width: 70%;
}
.r-maxS--5of7 {
width: calc(100% * 5 / 7);
}
.r-maxS--8of11 {
width: calc(100% * 8 / 11);
}
.r-maxS--3of4,
.r-maxS--6of8,
.r-maxS--9of12 {
width: 75%;
}
.r-maxS--7of9 {
width: calc(100% * 7 / 9);
}
.r-maxS--4of5,
.r-maxS--8of10 {
width: 80%;
}
.r-maxS--9of11 {
width: calc(100% * 9 / 11);
}
.r-maxS--5of6,
.r-maxS--10of12 {
width: calc(100% * 5 / 6);
}
.r-maxS--6of7 {
width: calc(100% * 6 / 7);
}
.r-maxS--7of8 {
width: 87.5%;
}
.r-maxS--8of9 {
width: calc(100% * 8 / 9);
}
.r-maxS--9of10 {
width: 90%;
}
.r-maxS--10of11 {
width: calc(100% * 10 / 11);
}
.r-maxS--11of12 {
width: calc(100% * 11 / 12);
}
.r-maxS--1of1,
.r-maxS--2of2,
.r-maxS--3of3,
.r-maxS--4of4,
.r-maxS--5of5,
.r-maxS--6of6,
.r-maxS--7of7,
.r-maxS--8of8,
.r-maxS--9of9,
.r-maxS--10of10,
.r-maxS--11of11,
.r-maxS--12of12 {
width: 100%;
}
.r-maxS--hidden {
display: none;
}
.r-maxS--visible {
display: inline-block;
}
} | lib/sizes/maxS.css | @media (--r-maxS) {
.r-maxS--1of12 {
width: calc(100% * 1 / 12);
}
.r-maxS--1of11 {
width: calc(100% * 1 / 11);
}
.r-maxS--1of10 {
width: 10%;
}
.r-maxS--1of9 {
width: calc(100% * 1 / 9);
}
.r-maxS--1of8 {
width: 12.5%;
}
.r-maxS--1of7 {
width: calc(100% * 1 / 7);
}
.r-maxS--1of6,
.r-maxS--2of12 {
width: calc(100% * 1 / 6);
}
.r-maxS--2of11 {
width: calc(100% * 2 / 11);
}
.r-maxS--1of5,
.r-maxS--2of10 {
width: 20%;
}
.r-maxS--2of9 {
width: calc(100% * 2 / 9);
}
.r-maxS--1of4,
.r-maxS--2of8,
.r-maxS--3of12 {
width: 25%;
}
.r-maxS--3of11 {
width: calc(100% * 3 / 11);
}
.r-maxS--2of7 {
width: calc(100% * 2 / 7);
}
.r-maxS--3of10 {
width: 30%;
}
.r-maxS--1of3,
.r-maxS--2of6,
.r-maxS--3of9,
.r-maxS--4of12 {
width: calc(100% * 1 / 3);
}
.r-maxS--4of11 {
width: calc(100% * 4 / 11);
}
.r-maxS--3of8 {
width: 37.5%;
}
.r-maxS--2of5,
.r-maxS--4of10 {
width: 40%;
}
.r-maxS--5of12 {
width: calc(100% * 5 / 12);
}
.r-maxS--3of7 {
width: calc(100% * 3 / 7);
}
.r-maxS--4of9 {
width: calc(100% * 4 / 9);
}
.r-maxS--5of11 {
width: calc(100% * 5 / 11);
}
.r-maxS--1of2,
.r-maxS--2of4,
.r-maxS--3of6,
.r-maxS--4of8,
.r-maxS--5of10,
.r-maxS--6of12 {
width: 50%;
}
.r-maxS--6of11 {
width: calc(100% * 6 / 11 );
}
.r-maxS--5of9 {
width: calc(100% * 5 / 9);
}
.r-maxS--4of7 {
width: calc(100% * 4 / 7)
}
.r-maxS--7of12 {
width: calc(100% * 7 / 12);
}
.r-maxS--3of5,
.r-maxS--6of10 {
width: 60%;
}
.r-maxS--7of11 {
width: calc(100% * 7 / 11);
}
.r-maxS--5of8 {
width: 62.5%;
}
.r-maxS--2of3,
.r-maxS--4of6,
.r-maxS--6of9,
.r-maxS--8of12 {
width: calc(100% * 2 / 3);
}
.r-maxS--7of10 {
width: 70%;
}
.r-maxS--5of7 {
width: calc(100% * 5 / 7);
}
.r-maxS--8of11 {
width: calc(100% * 8 / 11);
}
.r-maxS--3of4,
.r-maxS--6of8,
.r-maxS--9of12 {
width: 75%;
}
.r-maxS--7of9 {
width: calc(100% * 7 / 9);
}
.r-maxS--4of5,
.r-maxS--8of10 {
width: 80%;
}
.r-maxS--9of11 {
width: calc(100% * 9 / 11);
}
.r-maxS--5of6,
.r-maxS--10of12 {
width: calc(100% * 5 / 6);
}
.r-maxS--6of7 {
width: calc(100% * 6 / 7);
}
.r-maxS--7of8 {
width: 87.5%;
}
.r-maxS--8of9 {
width: calc(100% * 8 / 9);
}
.r-maxS--9of10 {
width: 90%;
}
.r-maxS--10of11 {
width: calc(100% * 10 / 11);
}
.r-maxS--11of12 {
width: calc(100% * 11 / 12);
}
.r-maxS--1of1,
.r-maxS--2of2,
.r-maxS--3of3,
.r-maxS--4of4,
.r-maxS--5of5,
.r-maxS--6of6,
.r-maxS--7of7,
.r-maxS--8of8,
.r-maxS--9of9,
.r-maxS--10of10,
.r-maxS--11of11,
.r-maxS--12of12 {
width: 100%;
}
.r-maxS--hidden {
display: none;
}
.r-maxS--visible {
display: inline-block;
}
} | 0.615088 | 0.224799 |
.main-clr{
color:#226cf3;
}
.shadow-2{
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.fs-11{
font-size:11px;
}
.fs-12{
font-size:12px;
}
.fs-14{
font-size:14px;
}
.fw-600{
font-weight:600;
}
.bg-yellow{
background-color: #ffde06;
}
.content-side-bar .list-cstm li {
border-bottom: 1px solid #dee2e6;
}
.content-side-bar .list-cstm li a
{
padding: 12px 20px;
}
.content-side-bar .list-cstm li:hover{
background-color: #ff023e;
cursor:pointer;
}
.content-side-bar .list-cstm li:hover a{
color:#fff;
}
.content-side-bar .list-cstm li a{
text-decoration:none;
color:#000;
display:block;
}
.list-cstm i{
color: #226cf3;
padding-right: 5px;
}
.shadow-inner{
box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
}
.icon-blk i{
color: #226cf3;
font-size: 25px;
}
.app-btn-primary {
background: #FF023E;
border-color: #FF023E;
font-size: 14px;
padding: 5px 10px;
text-align: center;
color: #fff;
}
.btn.app-btn-primary:hover{
color:#fff;
}
.border-btn-primary{
border-color: #226cf3;
background: #fff;
color:#000;
}
.btn.light-btn {
background: #fff;
color: #000;
border-color: #fff;
}
.btn.light-btn:hover{
color:#000;
}
.performane-improve i{
font-size: 80px;
}
.modal-dialog {
display: flex;
align-items: center;
height: 100%;
}
.table-content table.dataTable tbody td {
padding: 15px 10px;
}
.table-content table.dataTable thead th, .table-content table.dataTable thead td {
font-size: 15px;
}
.table-content table.dataTable tfoot th, .table-content table.dataTable tfoot td {
font-size: 15px;
}
.pricing-plan-title {
border: 1px solid #226cf3;
}
.sticker-wrapper {
position: absolute;
top: 0;
right: 15px;
}
.sticker-wrapper .sticker {
display: block;
font-size: 12px;
-moz-transform: skew(-10deg);
-webkit-transform: skew(-10deg);
-o-transform: skew(-10deg);
-ms-transform: skew(-10deg);
transform: skew(-10deg);
position: relative;
left: 0;
top: -20px;
white-space: nowrap;
border-radius: 25px 0 0;
border: 3px solid #fff;
padding: 7.5px 15px;
background-color: #ffde06;
}
.feature-label {
padding: 2px 5px;
}
.pricing-body li {
padding-bottom: 10px;
}
.container.container-width{
width:85%;
margin:0 auto;
}
.pricing-title .badge {
font-size: 14px;
}
#accordionfaq button:not(.collapsed) {
color: #226cf3 !important;
}
.accordion-body {
font-size: 15px;
}
.accordion-button::after {
background-size: 1rem;
}
#example_paginate .paginate_button.current {
background: #226cf3;
color: #fff !important;
border: transparent;
}
.table-content select {
background: transparent;
border: 1px solid #226cf3;
padding: 4px 5px;
}
/*.content-side-bar .active {*/
/* background: #05416c;*/
/* color: #ffff;*/
/*}*/
/*.content-side-bar .active{*/
/* background: #226cf3;*/
/*}*/
.content-side-bar .list-cstm .active a{
font-weight: bold;
color: #ff023e;
}
.modal-header i{
font-size:28px;
color: #226cf3;
}
.integration-content-data img{
height:30px;
}
#navbarDropdown {
color: #fff;
}
.content-side-bar .list-cstm li:hover {
color: #ffffff;
}
.content-side-bar .progress-bar {
background-color: #17b93e;
}
.content-side-bar .list-cstm li i.fa.fa-star {
color: #ffc003;
}
.sidebar-links-cont .pd-cls i {
color: #fbc913;
}
.sidebar-links-cont .pd-cls {
padding: 7px 20px;
font-size: 14px;
}
.content-side-bar .sidebar-links-cont .pd-cls a{
color:#ffffff;
}
.content-side-bar .sidebar-links-cont {
background-color: #226cf3;
color: #ffffff;
}
div#activestatus {
font-size: 12px;
font-weight: bold;
background-color: rgb(0, 178, 71);
color: #ffffff;
border-radius: 21px;
padding: 2px 11px;
}
.lusha-lab-image img {
max-width: 130px;
}
.account-tab-detail .btn {
padding: 0 20px 0 0;
}
.btn-check:focus + .btn, .btn:focus , .accordion-button:focus , .form-control:focus{
box-shadow: unset;
}
.account-tab-detail .btn.active {
font-weight: 600;
color: #226cf3;
}
.tab-content-blk .account {
width: 50%;
}
.table > :not(:first-child) {
border-top: 0;
}
.btn-primary-outline {
color: #043e68;
border-color: #043e68;
}
.btn-primary-outline:hover {
color: #fff;
background-color: #043e68;
border-color: #226cf3;
}
.privacy-content .list {
height: 200px;
overflow-y: scroll;
margin-top: 20px;
}
.accordion-button:not(.collapsed) {
color: #226cf3;
}
.btn.banner-btn-primary {
background: #fff;
padding: 12px 50px;
}
.collection_icon i {
color: #226cf3;
font-size: 24px;
padding-right: 14px;
}
.collection_img img {
width: 35px;
height: 35px;
vertical-align: bottom;
border-radius: 50%;
box-shadow: 0 0 0 2px white;
position: relative;
z-index: 4;
}
.collection-blk {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.14);
}
.prospecting-header li {
padding-right: 20px;
}
.prospecting-header a{
color:#000;
text-decoration: none;
}
.btn.pros-btn {
border: 1px solid #226cf3;
padding: 2px 10px;
font-weight: 600;
font-size: 15px;
border-radius: 0;
}
.offcanvas-end{
width: 500px;
}
.faq-content i {
color: #FF023E;
padding-right: 10px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
.app .prospecting-accordions.wrapper .accordion-button::after{
display:none;
}
.app .prospecting-accordions.wrapper h2 button span{
font-size: 12px;
color: grey;
}
.app .prospecting-accordions.wrapper input:focus-visible{
outline:none;
}
.accordion-button:not(.collapsed){
box-shadow:none;
}
.wrapper .search {
border: 1px solid #c8c8c8;
overflow: hidden;
border-radius: 25px;
padding: 0 10px;
margin: 15px 0 20px;
transition: all 0.3s
}
.wrapper .search:hover,
.wrapper .search:focus-within {
border: 1px solid transparent;
box-shadow: 2px 5px 8px #1f1f1f10, 0px -4px 5px #1f1f1f10
}
.wrapper .search .form-control {
box-shadow: none;
outline: none;
border: none
}
.wrapper .search .form-control:focus::placeholder {
opacity: 0
}
.wrapper .accordion-button {
font-size: 0.9rem;
font-weight: 500
}
.wrapper .accordion-button:focus {
box-shadow: none
}
.wrapper .accordion-button::after {
background-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #c8c8c8;
background-position: center center;
border-radius: 50%
}
.wrapper .accordion-button:not(.collapsed) {
background-color: #fff;
border-bottom: none!important
}
.accordion-button:not(.collapsed)::after {
border-color: #1E88E5
}
@keyframes placeHolderShimmer{
0%{
background-position: -468px 0
}
100%{
background-position: 468px 0
}
}
.filter_loader {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-name: placeHolderShimmer;
animation-timing-function: linear;
background: #f6f7f8;
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
background-size: 1000px 104px;
height: 338px;
position: relative;
overflow: hidden;
}
.wrapper .accordion-collapse.show {
border-bottom: 1px solid #ddd !important
}
.wrapper .accordion-collapse ul li {
line-height: 2rem;
width: 100%;
padding: 0.5rem 1.3rem
}
.wrapper .accordion-collapse ul li:hover {
background-color: #c9e7ff
}
.wrapper .accordion-collapse ul li a {
text-decoration: none;
color: #333;
font-size: 0.85rem;
font-weight: 400;
display: block
}
.suggestion-banner-cont .suggestion-button-container{
border-radius: 4px;
padding: 6px 10px;
margin-right: 4px;
width: max-content;
display: flex;
margin-bottom: 24px;
border: 1px solid;
}
.wrapper .accordion-collapse ul li:hover a {
color: #222
}
.excellent-choice-text{
background-color: rgba(5, 65, 108, 0.07);
border: 1px solid rgb(205, 221, 255);
}
.payment-content i {
color: #888;
padding-right: 4px;
}
.payment-content img {
max-width: 150px;
}
.select_payment input {
position: absolute;
top: 35px;
cursor: pointer;
width: 150px;
opacity: 0;
}
@media only screen and (max-width:767px){
.tab-content-blk .account {
width: 100%;
}
br {
display: none;
}
}
@media only screen and (min-width:768px) and (max-width:1199px) {
.tab-content-blk .account {
width: 100%;
}
} | public/assets/css/dashboard-style.css | .main-clr{
color:#226cf3;
}
.shadow-2{
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.fs-11{
font-size:11px;
}
.fs-12{
font-size:12px;
}
.fs-14{
font-size:14px;
}
.fw-600{
font-weight:600;
}
.bg-yellow{
background-color: #ffde06;
}
.content-side-bar .list-cstm li {
border-bottom: 1px solid #dee2e6;
}
.content-side-bar .list-cstm li a
{
padding: 12px 20px;
}
.content-side-bar .list-cstm li:hover{
background-color: #ff023e;
cursor:pointer;
}
.content-side-bar .list-cstm li:hover a{
color:#fff;
}
.content-side-bar .list-cstm li a{
text-decoration:none;
color:#000;
display:block;
}
.list-cstm i{
color: #226cf3;
padding-right: 5px;
}
.shadow-inner{
box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
}
.icon-blk i{
color: #226cf3;
font-size: 25px;
}
.app-btn-primary {
background: #FF023E;
border-color: #FF023E;
font-size: 14px;
padding: 5px 10px;
text-align: center;
color: #fff;
}
.btn.app-btn-primary:hover{
color:#fff;
}
.border-btn-primary{
border-color: #226cf3;
background: #fff;
color:#000;
}
.btn.light-btn {
background: #fff;
color: #000;
border-color: #fff;
}
.btn.light-btn:hover{
color:#000;
}
.performane-improve i{
font-size: 80px;
}
.modal-dialog {
display: flex;
align-items: center;
height: 100%;
}
.table-content table.dataTable tbody td {
padding: 15px 10px;
}
.table-content table.dataTable thead th, .table-content table.dataTable thead td {
font-size: 15px;
}
.table-content table.dataTable tfoot th, .table-content table.dataTable tfoot td {
font-size: 15px;
}
.pricing-plan-title {
border: 1px solid #226cf3;
}
.sticker-wrapper {
position: absolute;
top: 0;
right: 15px;
}
.sticker-wrapper .sticker {
display: block;
font-size: 12px;
-moz-transform: skew(-10deg);
-webkit-transform: skew(-10deg);
-o-transform: skew(-10deg);
-ms-transform: skew(-10deg);
transform: skew(-10deg);
position: relative;
left: 0;
top: -20px;
white-space: nowrap;
border-radius: 25px 0 0;
border: 3px solid #fff;
padding: 7.5px 15px;
background-color: #ffde06;
}
.feature-label {
padding: 2px 5px;
}
.pricing-body li {
padding-bottom: 10px;
}
.container.container-width{
width:85%;
margin:0 auto;
}
.pricing-title .badge {
font-size: 14px;
}
#accordionfaq button:not(.collapsed) {
color: #226cf3 !important;
}
.accordion-body {
font-size: 15px;
}
.accordion-button::after {
background-size: 1rem;
}
#example_paginate .paginate_button.current {
background: #226cf3;
color: #fff !important;
border: transparent;
}
.table-content select {
background: transparent;
border: 1px solid #226cf3;
padding: 4px 5px;
}
/*.content-side-bar .active {*/
/* background: #05416c;*/
/* color: #ffff;*/
/*}*/
/*.content-side-bar .active{*/
/* background: #226cf3;*/
/*}*/
.content-side-bar .list-cstm .active a{
font-weight: bold;
color: #ff023e;
}
.modal-header i{
font-size:28px;
color: #226cf3;
}
.integration-content-data img{
height:30px;
}
#navbarDropdown {
color: #fff;
}
.content-side-bar .list-cstm li:hover {
color: #ffffff;
}
.content-side-bar .progress-bar {
background-color: #17b93e;
}
.content-side-bar .list-cstm li i.fa.fa-star {
color: #ffc003;
}
.sidebar-links-cont .pd-cls i {
color: #fbc913;
}
.sidebar-links-cont .pd-cls {
padding: 7px 20px;
font-size: 14px;
}
.content-side-bar .sidebar-links-cont .pd-cls a{
color:#ffffff;
}
.content-side-bar .sidebar-links-cont {
background-color: #226cf3;
color: #ffffff;
}
div#activestatus {
font-size: 12px;
font-weight: bold;
background-color: rgb(0, 178, 71);
color: #ffffff;
border-radius: 21px;
padding: 2px 11px;
}
.lusha-lab-image img {
max-width: 130px;
}
.account-tab-detail .btn {
padding: 0 20px 0 0;
}
.btn-check:focus + .btn, .btn:focus , .accordion-button:focus , .form-control:focus{
box-shadow: unset;
}
.account-tab-detail .btn.active {
font-weight: 600;
color: #226cf3;
}
.tab-content-blk .account {
width: 50%;
}
.table > :not(:first-child) {
border-top: 0;
}
.btn-primary-outline {
color: #043e68;
border-color: #043e68;
}
.btn-primary-outline:hover {
color: #fff;
background-color: #043e68;
border-color: #226cf3;
}
.privacy-content .list {
height: 200px;
overflow-y: scroll;
margin-top: 20px;
}
.accordion-button:not(.collapsed) {
color: #226cf3;
}
.btn.banner-btn-primary {
background: #fff;
padding: 12px 50px;
}
.collection_icon i {
color: #226cf3;
font-size: 24px;
padding-right: 14px;
}
.collection_img img {
width: 35px;
height: 35px;
vertical-align: bottom;
border-radius: 50%;
box-shadow: 0 0 0 2px white;
position: relative;
z-index: 4;
}
.collection-blk {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.14);
}
.prospecting-header li {
padding-right: 20px;
}
.prospecting-header a{
color:#000;
text-decoration: none;
}
.btn.pros-btn {
border: 1px solid #226cf3;
padding: 2px 10px;
font-weight: 600;
font-size: 15px;
border-radius: 0;
}
.offcanvas-end{
width: 500px;
}
.faq-content i {
color: #FF023E;
padding-right: 10px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
.app .prospecting-accordions.wrapper .accordion-button::after{
display:none;
}
.app .prospecting-accordions.wrapper h2 button span{
font-size: 12px;
color: grey;
}
.app .prospecting-accordions.wrapper input:focus-visible{
outline:none;
}
.accordion-button:not(.collapsed){
box-shadow:none;
}
.wrapper .search {
border: 1px solid #c8c8c8;
overflow: hidden;
border-radius: 25px;
padding: 0 10px;
margin: 15px 0 20px;
transition: all 0.3s
}
.wrapper .search:hover,
.wrapper .search:focus-within {
border: 1px solid transparent;
box-shadow: 2px 5px 8px #1f1f1f10, 0px -4px 5px #1f1f1f10
}
.wrapper .search .form-control {
box-shadow: none;
outline: none;
border: none
}
.wrapper .search .form-control:focus::placeholder {
opacity: 0
}
.wrapper .accordion-button {
font-size: 0.9rem;
font-weight: 500
}
.wrapper .accordion-button:focus {
box-shadow: none
}
.wrapper .accordion-button::after {
background-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #c8c8c8;
background-position: center center;
border-radius: 50%
}
.wrapper .accordion-button:not(.collapsed) {
background-color: #fff;
border-bottom: none!important
}
.accordion-button:not(.collapsed)::after {
border-color: #1E88E5
}
@keyframes placeHolderShimmer{
0%{
background-position: -468px 0
}
100%{
background-position: 468px 0
}
}
.filter_loader {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-name: placeHolderShimmer;
animation-timing-function: linear;
background: #f6f7f8;
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
background-size: 1000px 104px;
height: 338px;
position: relative;
overflow: hidden;
}
.wrapper .accordion-collapse.show {
border-bottom: 1px solid #ddd !important
}
.wrapper .accordion-collapse ul li {
line-height: 2rem;
width: 100%;
padding: 0.5rem 1.3rem
}
.wrapper .accordion-collapse ul li:hover {
background-color: #c9e7ff
}
.wrapper .accordion-collapse ul li a {
text-decoration: none;
color: #333;
font-size: 0.85rem;
font-weight: 400;
display: block
}
.suggestion-banner-cont .suggestion-button-container{
border-radius: 4px;
padding: 6px 10px;
margin-right: 4px;
width: max-content;
display: flex;
margin-bottom: 24px;
border: 1px solid;
}
.wrapper .accordion-collapse ul li:hover a {
color: #222
}
.excellent-choice-text{
background-color: rgba(5, 65, 108, 0.07);
border: 1px solid rgb(205, 221, 255);
}
.payment-content i {
color: #888;
padding-right: 4px;
}
.payment-content img {
max-width: 150px;
}
.select_payment input {
position: absolute;
top: 35px;
cursor: pointer;
width: 150px;
opacity: 0;
}
@media only screen and (max-width:767px){
.tab-content-blk .account {
width: 100%;
}
br {
display: none;
}
}
@media only screen and (min-width:768px) and (max-width:1199px) {
.tab-content-blk .account {
width: 100%;
}
} | 0.340376 | 0.076408 |
.geral{
background-color: whitesmoke;
position:relative;
padding-bottom: 60px;
/*height: 1300px;*/
min-height: 100%;
}
.header{
padding-top: 2px;
background-color: whitesmoke;
}
.footer{
float:none;
padding-top: 200px;
background-color: whitesmoke;
position: absolute;
padding-top: 1px;
padding-bottom: 10px;
bottom: 0;
width:200px;
height: 100%;
border-radius: 5px;
border-color: lightblue;
text-align: center;
}
.clear{
padding-top: 20px;
}
.conteudo {
padding-bottom: 3px;
min-height: 100%;
background-color: whitesmoke;
overflow:hidden;
/*width: 100%;*/
}
body {
background-color: #AABBDD;
/*background-color: yellowgreen;*/
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 70px;
height: 100%;
font-size: 12px;
font-family: arial, sans-serif;
}
p {
/*
font-weight: bold;
border-width: 1px;
border-style: ridge;
*/
font-style: italic;
font-size: 14px;
font-family: arial, sans-serif;
border-color: lightblue;
}
a {
color: blue;
}
a:link {
color: greenyellow;
}
a:visited {
color: red;
}
a:hover {
color: orange;
font-style: italic;
}
h1 {
color: gray;
font-weight: bold;
background-color: whitesmoke;
text-align: center;
letter-spacing: 1px;
animation-direction: reverse;
font-size: 23px;
text-transform: uppercase;
padding-left: 15px;
box-shadow: 3px 3px 3px 5px darkgray;
border-radius: 5px;
}
h1:hover{
background-color: #DFDFDF ;
box-shadow: 7px 7px 7px 8px darkgray;
}
p{
}
.esquerda{
background-color: #fcfcfc;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: black;
margin-top: 5px;
*/
border-radius: 10px;
margin-right: 4px;
margin-bottom: 10px;
margin-left: 10px;
height: auto;
width: 34%;
float: left;
box-shadow: 4px 4px 5px 5px darkgray;
}
.esquerda:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 8px darkgray;
}
.direita{
background-color: #AAFFAA;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: black;
margin-top: 5px;
*/
border-radius: 10px;
margin-right: 4px;
margin-bottom: 10px;
margin-left: 10px;
height: auto;
width: 34%;
float: right;
box-shadow: 4px 4px 5px 5px darkgray;
height: 1000px;
width: 63%;
}
.direita:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 8px darkgray;
}
.formacao{
background-color: #fcfcfc;
border-color: skyblue;
position: relative;
height: auto;
/*border-top: 299px;*/
/*margin-top: 3px;*/
margin-right: 3px;
margin-bottom: 3x;
margin-left: 3px;
/*border-width: 1px;
border-style: ridge;
border-color: aliceblue;*/
}
.formacao:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.pessoais{
/* float:left;
position: relative;*/
background-color: #fcfcfc;
/*border-color: gold;
border-width: thick;
border-style: ridge;
border-color: aliceblue;
border-style: ridge; */
height: auto;
/*border-width: 1px;*/
margin-top: 3px;
margin-right: 3px;
margin-bottom: 3px;
margin-left: 3px;
}
.pessoais:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.extra-curriculo{
background-color: #fcfcfc;
margin-top: 3px;
margin-right: 3px;
margin-bottom: 3x;
margin-left: 3px;
/*border-width: 2px;
border-style: ridge;
border-color: aliceblue; */
}
.extra-curriculo:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.profissional{
float:right;
position: relative;
background-color: #fcfcfc;
/*border-color: gold;
border-width: thick;
border-style: dotted; */
/*border-width: 1px;
border-style: ridge;*/
box-shadow: 2px 2px 5px 5px darkgray;
/* border-color: black;*/
border-radius: 10px;
margin-right: 10px;
min-height: 100%
/*
margin-top: 100px;
margin-bottom: 10px;
margin-left: 70px;*/
}
.profissional:hover{
background-color: whitesmoke;
box-shadow: 15px 15px 15px 8px darkgray;
}
.img-circle{
margin-left: auto;
margin-right: auto;
}
.avatar{
/*height: 200px;
margin-bottom: 10px;
width: 100px;
*/
width: auto;
height: auto;
border-style: ridge;
box-shadow: 2px 2px 5px 5px darkgray;
margin-top: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
border-radius: 30%;
}
.empresa{
font-style: italic;
font-weight: bold;
font-size: 20px;
}
.empresa:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.empresa1{
/*font-style: italic;*/
/*font-weight: bold;*/
font-size: 15px;
padding-left: 10px;
text-align: justify;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: lightblue;*/
background-color: #fcfcfc;
}
.empresa1:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.empresa-tempo
{
font-size: 16px;
font-family: cursive;
font-weight: 200px;
} | familia_arvore/lib/css/estilo.css | .geral{
background-color: whitesmoke;
position:relative;
padding-bottom: 60px;
/*height: 1300px;*/
min-height: 100%;
}
.header{
padding-top: 2px;
background-color: whitesmoke;
}
.footer{
float:none;
padding-top: 200px;
background-color: whitesmoke;
position: absolute;
padding-top: 1px;
padding-bottom: 10px;
bottom: 0;
width:200px;
height: 100%;
border-radius: 5px;
border-color: lightblue;
text-align: center;
}
.clear{
padding-top: 20px;
}
.conteudo {
padding-bottom: 3px;
min-height: 100%;
background-color: whitesmoke;
overflow:hidden;
/*width: 100%;*/
}
body {
background-color: #AABBDD;
/*background-color: yellowgreen;*/
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 70px;
height: 100%;
font-size: 12px;
font-family: arial, sans-serif;
}
p {
/*
font-weight: bold;
border-width: 1px;
border-style: ridge;
*/
font-style: italic;
font-size: 14px;
font-family: arial, sans-serif;
border-color: lightblue;
}
a {
color: blue;
}
a:link {
color: greenyellow;
}
a:visited {
color: red;
}
a:hover {
color: orange;
font-style: italic;
}
h1 {
color: gray;
font-weight: bold;
background-color: whitesmoke;
text-align: center;
letter-spacing: 1px;
animation-direction: reverse;
font-size: 23px;
text-transform: uppercase;
padding-left: 15px;
box-shadow: 3px 3px 3px 5px darkgray;
border-radius: 5px;
}
h1:hover{
background-color: #DFDFDF ;
box-shadow: 7px 7px 7px 8px darkgray;
}
p{
}
.esquerda{
background-color: #fcfcfc;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: black;
margin-top: 5px;
*/
border-radius: 10px;
margin-right: 4px;
margin-bottom: 10px;
margin-left: 10px;
height: auto;
width: 34%;
float: left;
box-shadow: 4px 4px 5px 5px darkgray;
}
.esquerda:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 8px darkgray;
}
.direita{
background-color: #AAFFAA;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: black;
margin-top: 5px;
*/
border-radius: 10px;
margin-right: 4px;
margin-bottom: 10px;
margin-left: 10px;
height: auto;
width: 34%;
float: right;
box-shadow: 4px 4px 5px 5px darkgray;
height: 1000px;
width: 63%;
}
.direita:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 8px darkgray;
}
.formacao{
background-color: #fcfcfc;
border-color: skyblue;
position: relative;
height: auto;
/*border-top: 299px;*/
/*margin-top: 3px;*/
margin-right: 3px;
margin-bottom: 3x;
margin-left: 3px;
/*border-width: 1px;
border-style: ridge;
border-color: aliceblue;*/
}
.formacao:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.pessoais{
/* float:left;
position: relative;*/
background-color: #fcfcfc;
/*border-color: gold;
border-width: thick;
border-style: ridge;
border-color: aliceblue;
border-style: ridge; */
height: auto;
/*border-width: 1px;*/
margin-top: 3px;
margin-right: 3px;
margin-bottom: 3px;
margin-left: 3px;
}
.pessoais:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.extra-curriculo{
background-color: #fcfcfc;
margin-top: 3px;
margin-right: 3px;
margin-bottom: 3x;
margin-left: 3px;
/*border-width: 2px;
border-style: ridge;
border-color: aliceblue; */
}
.extra-curriculo:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.profissional{
float:right;
position: relative;
background-color: #fcfcfc;
/*border-color: gold;
border-width: thick;
border-style: dotted; */
/*border-width: 1px;
border-style: ridge;*/
box-shadow: 2px 2px 5px 5px darkgray;
/* border-color: black;*/
border-radius: 10px;
margin-right: 10px;
min-height: 100%
/*
margin-top: 100px;
margin-bottom: 10px;
margin-left: 70px;*/
}
.profissional:hover{
background-color: whitesmoke;
box-shadow: 15px 15px 15px 8px darkgray;
}
.img-circle{
margin-left: auto;
margin-right: auto;
}
.avatar{
/*height: 200px;
margin-bottom: 10px;
width: 100px;
*/
width: auto;
height: auto;
border-style: ridge;
box-shadow: 2px 2px 5px 5px darkgray;
margin-top: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
border-radius: 30%;
}
.empresa{
font-style: italic;
font-weight: bold;
font-size: 20px;
}
.empresa:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.empresa1{
/*font-style: italic;*/
/*font-weight: bold;*/
font-size: 15px;
padding-left: 10px;
text-align: justify;
/*border-width: 1px;*/
/*border-style: ridge;
border-color: lightblue;*/
background-color: #fcfcfc;
}
.empresa1:hover{
background-color: whitesmoke;
box-shadow: 5px 5px 5px 2px darkgray;
}
.empresa-tempo
{
font-size: 16px;
font-family: cursive;
font-weight: 200px;
} | 0.456652 | 0.087291 |
.example-top-bar-left-links,
.example-top-bar-right-links {
height: 3rem;
display: flex;
flex-wrap: nowrap;
}
.example-top-bar-right-links {
margin-left: auto;
}
.example-top-bar-link {
background-color: #418eec;
width: 3rem;
height: 3rem;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 64ms ease-out;
}
.example-top-bar-link:hover {
background-color: #1773e3;
}
.example-offcanvas-content {
width: 100%;
height: 100%;
padding: 1rem;
flex-shrink: 1;
overflow: auto;
box-sizing: border-box;
}
.example-top-bar {
background-color: #418eec;
width: 100%;
height: 3rem;
display: flex;
flex-wrap: nowrap;
box-shadow: 0 0 0.7rem 0.4rem rgba(0, 0, 0, 0.3);
transform: translateZ(1px);
}
.example-hamburger-menu {
background-color: #1773e3;
width: 3rem;
height: 3rem;
border: 0;
outline: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-shrink: 0;
transition: background-color 64ms ease-out;
}
.example-hamburger-menu:hover {
background-color: #1467cc;
}
.example-hamburger-menu:active {
background-color: #125bb5;
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(1) {
transform: translateY(0.45rem) rotate(-45deg);
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(2) {
opacity: 0;
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(3) {
transform: translateY(-0.45rem) rotate(45deg);
}
.example-hamburger-menu > span {
background-color: #ffffff;
width: 1.1em;
height: 0.15rem;
margin-bottom: 0.3rem;
display: block;
transition: transform 128ms ease-out 256ms, opacity 128ms ease-out 246ms;
}
.example-hamburger-menu > span:last-child {
margin-bottom: 0;
}
.example-search-box {
height: 100%;
padding: 0 1rem;
display: flex;
align-items: center;
}
.example-search-input {
background-color: #1773e3;
width: 10rem;
height: 2rem;
padding: 0 0.5rem;
border: 0;
outline: 0;
border-radius: 0;
transition: background-color 64ms ease-out;
}
.example-search-input:focus {
background-color: #f2f2f2;
}
.example-search-button {
background-color: #343434;
width: 2rem;
height: 2rem;
border: 0;
outline: 0;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0;
transition: background-color 64ms ease-out;
}
.example-search-button:hover {
background-color: #1b1b1b;
}
.example-search-button:active {
background-color: #010101;
}
.example-search-button-icon {
width: 16px;
height: 16px;
border: solid 3px #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
border-radius: 50%;
}
.example-search-button-icon::after {
content: "";
background-color: #f2f2f2;
width: 3px;
height: 7px;
transform: rotate(-45deg) translateY(10px);
}
.example-icon {
background-color: var(--color);
width: var(--size);
height: var(--size);
display: inline-block;
border-radius: 50%;
} | src/resources/css/modules/Topbar.module.css | .example-top-bar-left-links,
.example-top-bar-right-links {
height: 3rem;
display: flex;
flex-wrap: nowrap;
}
.example-top-bar-right-links {
margin-left: auto;
}
.example-top-bar-link {
background-color: #418eec;
width: 3rem;
height: 3rem;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 64ms ease-out;
}
.example-top-bar-link:hover {
background-color: #1773e3;
}
.example-offcanvas-content {
width: 100%;
height: 100%;
padding: 1rem;
flex-shrink: 1;
overflow: auto;
box-sizing: border-box;
}
.example-top-bar {
background-color: #418eec;
width: 100%;
height: 3rem;
display: flex;
flex-wrap: nowrap;
box-shadow: 0 0 0.7rem 0.4rem rgba(0, 0, 0, 0.3);
transform: translateZ(1px);
}
.example-hamburger-menu {
background-color: #1773e3;
width: 3rem;
height: 3rem;
border: 0;
outline: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-shrink: 0;
transition: background-color 64ms ease-out;
}
.example-hamburger-menu:hover {
background-color: #1467cc;
}
.example-hamburger-menu:active {
background-color: #125bb5;
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(1) {
transform: translateY(0.45rem) rotate(-45deg);
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(2) {
opacity: 0;
}
.example-hamburger-menu.example-hamburger-menu-active > span:nth-child(3) {
transform: translateY(-0.45rem) rotate(45deg);
}
.example-hamburger-menu > span {
background-color: #ffffff;
width: 1.1em;
height: 0.15rem;
margin-bottom: 0.3rem;
display: block;
transition: transform 128ms ease-out 256ms, opacity 128ms ease-out 246ms;
}
.example-hamburger-menu > span:last-child {
margin-bottom: 0;
}
.example-search-box {
height: 100%;
padding: 0 1rem;
display: flex;
align-items: center;
}
.example-search-input {
background-color: #1773e3;
width: 10rem;
height: 2rem;
padding: 0 0.5rem;
border: 0;
outline: 0;
border-radius: 0;
transition: background-color 64ms ease-out;
}
.example-search-input:focus {
background-color: #f2f2f2;
}
.example-search-button {
background-color: #343434;
width: 2rem;
height: 2rem;
border: 0;
outline: 0;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0;
transition: background-color 64ms ease-out;
}
.example-search-button:hover {
background-color: #1b1b1b;
}
.example-search-button:active {
background-color: #010101;
}
.example-search-button-icon {
width: 16px;
height: 16px;
border: solid 3px #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
border-radius: 50%;
}
.example-search-button-icon::after {
content: "";
background-color: #f2f2f2;
width: 3px;
height: 7px;
transform: rotate(-45deg) translateY(10px);
}
.example-icon {
background-color: var(--color);
width: var(--size);
height: var(--size);
display: inline-block;
border-radius: 50%;
} | 0.609175 | 0.071429 |
.tooltip {
&__content {
--tw-bg-opacity: 0.85;
--tw-text-opacity: 1;
--cc-bg: var(--n);
--cc-c: var(--nc);
background-color: hsla(var(--cc-bg) / var(--tw-bg-opacity));
color: hsla(var(--cc-c) / var(--tw-text-opacity));
display: inline-flex;
align-items: center;
justify-content: center;
position: var(--tooltip-position, fixed);
white-space: nowrap;
max-width: 20rem;
padding: var(--tooltip-padding, 0.375rem 0.5rem);
font-size: 0.75rem;
border-radius: 0.25rem;
}
@apply relative inline-block text-center;
--tooltip-tail: 3px;
--cc-bg: hsl(var(--n));
--cc-c: hsl(var(--nc));
--tooltip-tail-offset: calc(100% + 1px - var(--tooltip-tail));
}
.tooltip:before, .tooltip:after {
@apply transition duration-200 ease-in-out delay-100 opacity-0;
}
.tooltip:after {
@apply absolute;
}
.tooltip:before {
@apply max-w-xs px-2 py-1 text-sm rounded;
background-color: var(--cc-bg);
color: var(--cc-c);
width: max-content;
}
.tooltip.tooltip--open:before, .tooltip.tooltip--open:after, .tooltip:hover:before, .tooltip:hover:after {
@apply delay-75 opacity-100;
}
.tooltip:after {
content: '';
border-style: solid;
border-width: var(--tooltip-tail, 0);
width: 0;
height: 0;
display: block;
position: absolute;
}
.tooltip {
&:after {
transform: translateX(-50%);
border-color: var(--cc-bg) transparent transparent transparent;
top: auto;
left: 50%;
right: auto;
bottom: var(--tooltip-tail-offset);
}
}
.tooltip--bottom {
&:after {
transform: translateX(-50%);
border-color: transparent transparent var(--cc-bg) transparent;
top: var(--tooltip-tail-offset);
left: 50%;
right: auto;
bottom: auto;
}
}
.tooltip--left {
&:after {
transform: translateY(-50%);
border-color: transparent transparent transparent var(--cc-bg);
top: 50%;
left: auto;
right: calc(var(--tooltip-tail-offset) + 1px);
bottom: auto;
}
}
.tooltip--right {
&:after {
transform: translateY(-50%);
border-color: transparent var(--cc-bg) transparent transparent;
top: 50%;
left: calc(var(--tooltip-tail-offset) + 1px);
right: auto;
bottom: auto;
}
} | src/components/styled/tooltip.css | .tooltip {
&__content {
--tw-bg-opacity: 0.85;
--tw-text-opacity: 1;
--cc-bg: var(--n);
--cc-c: var(--nc);
background-color: hsla(var(--cc-bg) / var(--tw-bg-opacity));
color: hsla(var(--cc-c) / var(--tw-text-opacity));
display: inline-flex;
align-items: center;
justify-content: center;
position: var(--tooltip-position, fixed);
white-space: nowrap;
max-width: 20rem;
padding: var(--tooltip-padding, 0.375rem 0.5rem);
font-size: 0.75rem;
border-radius: 0.25rem;
}
@apply relative inline-block text-center;
--tooltip-tail: 3px;
--cc-bg: hsl(var(--n));
--cc-c: hsl(var(--nc));
--tooltip-tail-offset: calc(100% + 1px - var(--tooltip-tail));
}
.tooltip:before, .tooltip:after {
@apply transition duration-200 ease-in-out delay-100 opacity-0;
}
.tooltip:after {
@apply absolute;
}
.tooltip:before {
@apply max-w-xs px-2 py-1 text-sm rounded;
background-color: var(--cc-bg);
color: var(--cc-c);
width: max-content;
}
.tooltip.tooltip--open:before, .tooltip.tooltip--open:after, .tooltip:hover:before, .tooltip:hover:after {
@apply delay-75 opacity-100;
}
.tooltip:after {
content: '';
border-style: solid;
border-width: var(--tooltip-tail, 0);
width: 0;
height: 0;
display: block;
position: absolute;
}
.tooltip {
&:after {
transform: translateX(-50%);
border-color: var(--cc-bg) transparent transparent transparent;
top: auto;
left: 50%;
right: auto;
bottom: var(--tooltip-tail-offset);
}
}
.tooltip--bottom {
&:after {
transform: translateX(-50%);
border-color: transparent transparent var(--cc-bg) transparent;
top: var(--tooltip-tail-offset);
left: 50%;
right: auto;
bottom: auto;
}
}
.tooltip--left {
&:after {
transform: translateY(-50%);
border-color: transparent transparent transparent var(--cc-bg);
top: 50%;
left: auto;
right: calc(var(--tooltip-tail-offset) + 1px);
bottom: auto;
}
}
.tooltip--right {
&:after {
transform: translateY(-50%);
border-color: transparent var(--cc-bg) transparent transparent;
top: 50%;
left: calc(var(--tooltip-tail-offset) + 1px);
right: auto;
bottom: auto;
}
} | 0.568536 | 0.117673 |
#AnnotationTimeline .timelineElement {
position: absolute;
height: 100%;
background: rgba(160, 163, 163, .6);
pointer-events: all;
-moz-transition-duration: 0.2s;
-moz-transition-property: bottom;
-webkit-transition-duration: 0.2s;
-webkit-transition-property: bottom;
-o-transition-duration: 0.2s;
-o-transition-property: bottom;
transition-duration: 0.2s;
transition-property: bottom;
}
#AnnotationTimeline .timelineElement.active {
background: rgba(160, 163, 163, 1);
}
#AnnotationTimeline .timelineElement.highlighted {
background: #f8f8f8 !important;
z-index: 100000;
}
#AnnotationTimeline.editable .timelineElement {
background-color: rgba(160, 170, 175, 0.8);
}
#AnnotationTimeline .timelineElement.brushed {
background: #cad4d9;
}
#AnnotationTimeline .timelineElement.ui-draggable:hover {
cursor: move;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle {
position: absolute;
top: -2px;
width: 3px;
height: 100%;
background-color: #fff;
border: 2px solid #000;
border-radius: 3px;
display: none;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle:hover {
background-color: #fff;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-ne {
top: -2px;
right: -2px;
cursor: ne-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-nw {
top: -2px;
left: -2px;
cursor: nw-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-se {
bottom: -2px;
right: -2px;
cursor: se-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-sw {
bottom: -2px;
left: -2px;
cursor: sw-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable:hover .ui-resizable-handle {
display: block;
}
/* Tile Element */
#AnnotationTiles .tileElement {
float: left;
position: relative;
width: 34px;
height: 29px;
margin: 3px 3px 3px 0;
background-color: rgba(255,255,255,.3);
background-size: 25px auto;
background-position: center;
background-repeat: no-repeat;
}
#AnnotationTiles .tileElement:hover, #VideolinkTiles .tileElement.brushed {
background-color: rgba(255,255,255,.4);
}
#AnnotationTiles .tileElement.active {
background-color: rgba(255,255,255,.5);
}
#AnnotationTiles .tileElement.open {
background-color: #fff !important;
}
/* Content Element */
#AnnotationContainer #AnnotationSlider .annotationElement {
float: left;
position: relative;
top: 0;
height: 100%;
width: 800px;
margin-right: 9px;
background-color: #333;
opacity: 0;
transition-property: opacity;
transition-duration: 500ms;
-moz-transition-property: opacity;
-moz-transition-duration: 500ms;
-webkit-transition-property: opacity;
-webkit-transition-duration: 500ms;
-o-transition-property: opacity;
-o-transition-duration: 500ms;
}
#AnnotationContainer #AnnotationSlider .annotationElement.previous, #AnnotationContainer #AnnotationSlider .annotationElement.next {
opacity: .1;
pointer-events: none;
}
#AnnotationContainer #AnnotationSlider .annotationElement.open {
opacity: 1;
outline: 2px solid #fff;
}
/* Preview Element */
#AnnotationPreviewContainer .previewElement {
display: none;
}
#AnnotationPreviewContainer .previewElement.active {
display: block;
}
/* Compare Timeline Element */
#TimelineList .userTimelineWrapper {
margin-top: 20px;
}
#TimelineList .userLabel {
font-weight: 300;
margin-bottom: 2px;
}
#TimelineList .userLabel .userIcon {
background-image: url("icons/user.png");
background-position: -4px center;
background-size: 22px auto;
float: left;
height: 20px;
width: 18px;
}
#TimelineList .userTimeline .compareTimelineElement {
position: absolute;
height: 20px;
background: #888;
opacity: .3;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper, body > .compareTimelineElement .previewWrapper {
background: none repeat scroll 0 0 #3F4759;
box-shadow: 0 0 1px 3px #222222;
height: 70px;
left: 50%;
margin-left: -50px;
position: absolute;
top: -85px;
width: 100px;
z-index: 2;
display: none;
}
#TimelineList .userTimeline .compareTimelineElement:hover .previewWrapper {
display: block;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper:after, body > .compareTimelineElement .previewWrapper:after {
position: absolute;
bottom: -14px;
left: 50%;
margin-left: -10px;
border-top: 10px solid #3F4759;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
content: '';
font-weight: 300;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb, body > .compareTimelineElement .previewWrapper .resourceThumb {
position: relative;
width: 100%;
height: 100%;
cursor: pointer;
background-color: rgba(255, 255, 255, 0.5);
background-size: 130% auto;
background-repeat: no-repeat;
background-position: top center;
text-align: center;
outline: 4px solid #3F4759;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb .resourceTitle, body > .compareTimelineElement .previewWrapper .resourceThumb .resourceTitle {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
background-color: rgba(60, 73, 94, 0.8);
font-size: 11px;
padding: 3px;
color: #E2EDF8;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb .resourceOverlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceOverlay .resourceIcon, body > .compareTimelineElement .previewWrapper .resourceOverlay .resourceIcon {
position: absolute;
right: 10px;
bottom: 10px;
width: 25px;
height: auto;
}
#TimelineList .userTimeline .compareTimelineElement:hover {
opacity: 1;
cursor: move;
} | player/types/Annotation/style.css |
#AnnotationTimeline .timelineElement {
position: absolute;
height: 100%;
background: rgba(160, 163, 163, .6);
pointer-events: all;
-moz-transition-duration: 0.2s;
-moz-transition-property: bottom;
-webkit-transition-duration: 0.2s;
-webkit-transition-property: bottom;
-o-transition-duration: 0.2s;
-o-transition-property: bottom;
transition-duration: 0.2s;
transition-property: bottom;
}
#AnnotationTimeline .timelineElement.active {
background: rgba(160, 163, 163, 1);
}
#AnnotationTimeline .timelineElement.highlighted {
background: #f8f8f8 !important;
z-index: 100000;
}
#AnnotationTimeline.editable .timelineElement {
background-color: rgba(160, 170, 175, 0.8);
}
#AnnotationTimeline .timelineElement.brushed {
background: #cad4d9;
}
#AnnotationTimeline .timelineElement.ui-draggable:hover {
cursor: move;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle {
position: absolute;
top: -2px;
width: 3px;
height: 100%;
background-color: #fff;
border: 2px solid #000;
border-radius: 3px;
display: none;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle:hover {
background-color: #fff;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-ne {
top: -2px;
right: -2px;
cursor: ne-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-nw {
top: -2px;
left: -2px;
cursor: nw-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-se {
bottom: -2px;
right: -2px;
cursor: se-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable .ui-resizable-handle.ui-resizable-sw {
bottom: -2px;
left: -2px;
cursor: sw-resize;
}
#AnnotationTimeline .timelineElement.ui-resizable:hover .ui-resizable-handle {
display: block;
}
/* Tile Element */
#AnnotationTiles .tileElement {
float: left;
position: relative;
width: 34px;
height: 29px;
margin: 3px 3px 3px 0;
background-color: rgba(255,255,255,.3);
background-size: 25px auto;
background-position: center;
background-repeat: no-repeat;
}
#AnnotationTiles .tileElement:hover, #VideolinkTiles .tileElement.brushed {
background-color: rgba(255,255,255,.4);
}
#AnnotationTiles .tileElement.active {
background-color: rgba(255,255,255,.5);
}
#AnnotationTiles .tileElement.open {
background-color: #fff !important;
}
/* Content Element */
#AnnotationContainer #AnnotationSlider .annotationElement {
float: left;
position: relative;
top: 0;
height: 100%;
width: 800px;
margin-right: 9px;
background-color: #333;
opacity: 0;
transition-property: opacity;
transition-duration: 500ms;
-moz-transition-property: opacity;
-moz-transition-duration: 500ms;
-webkit-transition-property: opacity;
-webkit-transition-duration: 500ms;
-o-transition-property: opacity;
-o-transition-duration: 500ms;
}
#AnnotationContainer #AnnotationSlider .annotationElement.previous, #AnnotationContainer #AnnotationSlider .annotationElement.next {
opacity: .1;
pointer-events: none;
}
#AnnotationContainer #AnnotationSlider .annotationElement.open {
opacity: 1;
outline: 2px solid #fff;
}
/* Preview Element */
#AnnotationPreviewContainer .previewElement {
display: none;
}
#AnnotationPreviewContainer .previewElement.active {
display: block;
}
/* Compare Timeline Element */
#TimelineList .userTimelineWrapper {
margin-top: 20px;
}
#TimelineList .userLabel {
font-weight: 300;
margin-bottom: 2px;
}
#TimelineList .userLabel .userIcon {
background-image: url("icons/user.png");
background-position: -4px center;
background-size: 22px auto;
float: left;
height: 20px;
width: 18px;
}
#TimelineList .userTimeline .compareTimelineElement {
position: absolute;
height: 20px;
background: #888;
opacity: .3;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper, body > .compareTimelineElement .previewWrapper {
background: none repeat scroll 0 0 #3F4759;
box-shadow: 0 0 1px 3px #222222;
height: 70px;
left: 50%;
margin-left: -50px;
position: absolute;
top: -85px;
width: 100px;
z-index: 2;
display: none;
}
#TimelineList .userTimeline .compareTimelineElement:hover .previewWrapper {
display: block;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper:after, body > .compareTimelineElement .previewWrapper:after {
position: absolute;
bottom: -14px;
left: 50%;
margin-left: -10px;
border-top: 10px solid #3F4759;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
content: '';
font-weight: 300;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb, body > .compareTimelineElement .previewWrapper .resourceThumb {
position: relative;
width: 100%;
height: 100%;
cursor: pointer;
background-color: rgba(255, 255, 255, 0.5);
background-size: 130% auto;
background-repeat: no-repeat;
background-position: top center;
text-align: center;
outline: 4px solid #3F4759;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb .resourceTitle, body > .compareTimelineElement .previewWrapper .resourceThumb .resourceTitle {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
background-color: rgba(60, 73, 94, 0.8);
font-size: 11px;
padding: 3px;
color: #E2EDF8;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceThumb .resourceOverlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
}
#TimelineList .userTimeline .compareTimelineElement .previewWrapper .resourceOverlay .resourceIcon, body > .compareTimelineElement .previewWrapper .resourceOverlay .resourceIcon {
position: absolute;
right: 10px;
bottom: 10px;
width: 25px;
height: auto;
}
#TimelineList .userTimeline .compareTimelineElement:hover {
opacity: 1;
cursor: move;
} | 0.404507 | 0.045927 |
.menu {
width: 60%;
position: relative;
bottom: 5%;
left: 20%;
height: 60px;
margin-top: 10px;
}
.btn {
width: 25%;
}
.custom-text {
font: 20px arial, sans-serif;
margin: 0 auto;
}
.image-form {
position: absolute;
left: 5%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.shirt-form {
position: absolute;
left: 5%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.cart-form {
position: absolute;
left: 73%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.card-header {
height: 12%;
font: 20px arial, sans-serif;
color: white;
}
.btn-blue {
background-color: #009ddc;
color: white;
text-align: center;
}
.text-browse {
width: 60px;
height: 35px;
}
#browse {
display: none;
}
.btn-upload {
width: 300px;
height: 50px;
margin-top: 30px;
}
.pos-image {
margin-left: 25%;
margin-right: auto;
margin-top: 3%;
width: 50%;
}
.square-line {
position: absolute;
border: gray 1px dotted;
top: 30%;
left: 42%;
padding: 180px 115px;
}
#img-upload {
position: absolute;
display: none;
top: 35%;
left: 10%;
width: 150px;
height: 150px;
border: none;
}
#text-upload {
border: none;
position: absolute;
top: 40%;
left: 10%;
font-size: 25px;
padding: 5px;
color: #009ddc;
display: none;
}
/* .active {
z-index: 2;
} */
.shirt-body {
overflow-y: scroll;
padding: 0;
}
.img-info {
float: left;
margin-right: 15px;
}
.tag {
font-size: 15px;
color: #f57224;
}
.shirt-info {
margin-top: 10px;
}
.shirt-allinfo {
clear: both;
height: 110px;
margin-top: 0;
width: a;
margin: 5px;
border-bottom: #009ddc 2px solid;
}
.shirt-allinfo:hover {
border: #009ddc 2px solid;
}
.bill-image{
margin:0px;
float: left;
margin: 0px 20px;
padding: 5px;
}
.bill{
margin:0px;
display: block;
margin: 5px 5px;
text-align: left;
}
.tool-cart h5{
text-align: center;
}
.tool-cart{
text-align: center;
margin: 10px 10px;
}
.tool-cart .btn-primary{
width: 32px;
background: #009ddc ;
color: #fff;
}
.cart-allinfo {
width: 99%;
margin:5px 5px ;
padding:5px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
height:auto;
}
.cart-items{
padding: 5px;
}
.cart-allinfo h5{
text-align: left;
}
.cart-allinfo h6{
font-size:10px;
margin-top:5px;
}
.cart-allinfo p{
text-align: left;margin:0px;
}
.tool-cart{
clear: both;
margin-top: 10px;
}
/* .cart-allinfo:hover {
border: red 2px solid;
} */
#text-upload:hover {
border: gray 2px dotted;
}
#img-upload:hover {
border: gray 2px dotted;
}
.warn{
top: 20%;
left: 40%;
width:400px;
position: absolute;
}
#img-delete{
display: none;
width: 300px;
height: 50px;
margin-top: 30px;
}
#text-delete{
width: 300px;
height: 50px;
margin-top: 30px;
}
.color-blue {
color: #08588c;
margin: 0px 20px;
}
.btn-search {
font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
background-color: #fff;
border: 1px solid #08588c;
color: #08588c;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5%;
height: 30px;
font-size: 16px;
}
.custom-text-area{
display: none;
margin-top: 20px;
}
#table-text .card-body{
font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
color: black;
}
.color-fill-icon {
display: inline-block;
width: 16px;
height: 16px;
border: 1px solid #000;
background-color: #fff;
margin: 2px;
}
.dropdown-color-fill-icon {
position: relative;
float: left;
margin-left: 0;
margin-right: 0
}
.card-header{
text-align: center;
background: #009ddc;
padding:20px;
}
.card-header img{
position: absolute;;
right: 10%;
}
#btn-order{
background:#009ddc;
border: none;
color: #fff;
}
/*Cart */
/* .card-bill{
width: 99%;
margin:5px 5px ;
padding:5px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
height:auto;
}
.bill-image{
margin:0px;
float: left;
margin: 0px 20px;
}
.bill{
margin:0px;
display: inline-block;
margin: 20px 20px;
text-align: left;
} */
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close{
margin:5px;
}
#close_bill {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
#close_bill:hover,
#close_bill:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.update_info{
margin-top:10px;
}
h4{
margin-bottom: .5rem;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
font-size: 1.2rem;
color: inherit;
}
/**drp down **/
/* Dropdown Button */
.dropbtn {
background-color: transparent;
color: #08588c;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
margin-right: 20px;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
background-color: #08588c;
color: white;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
/**payment method **/
.method{
margin: 5px;
}
.method input{
padding: 5px;
} | public/css/design.css | .menu {
width: 60%;
position: relative;
bottom: 5%;
left: 20%;
height: 60px;
margin-top: 10px;
}
.btn {
width: 25%;
}
.custom-text {
font: 20px arial, sans-serif;
margin: 0 auto;
}
.image-form {
position: absolute;
left: 5%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.shirt-form {
position: absolute;
left: 5%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.cart-form {
position: absolute;
left: 73%;
top: 15%;
width: 350px;
height: 500px;
border: #009ddc 2px solid;
}
.card-header {
height: 12%;
font: 20px arial, sans-serif;
color: white;
}
.btn-blue {
background-color: #009ddc;
color: white;
text-align: center;
}
.text-browse {
width: 60px;
height: 35px;
}
#browse {
display: none;
}
.btn-upload {
width: 300px;
height: 50px;
margin-top: 30px;
}
.pos-image {
margin-left: 25%;
margin-right: auto;
margin-top: 3%;
width: 50%;
}
.square-line {
position: absolute;
border: gray 1px dotted;
top: 30%;
left: 42%;
padding: 180px 115px;
}
#img-upload {
position: absolute;
display: none;
top: 35%;
left: 10%;
width: 150px;
height: 150px;
border: none;
}
#text-upload {
border: none;
position: absolute;
top: 40%;
left: 10%;
font-size: 25px;
padding: 5px;
color: #009ddc;
display: none;
}
/* .active {
z-index: 2;
} */
.shirt-body {
overflow-y: scroll;
padding: 0;
}
.img-info {
float: left;
margin-right: 15px;
}
.tag {
font-size: 15px;
color: #f57224;
}
.shirt-info {
margin-top: 10px;
}
.shirt-allinfo {
clear: both;
height: 110px;
margin-top: 0;
width: a;
margin: 5px;
border-bottom: #009ddc 2px solid;
}
.shirt-allinfo:hover {
border: #009ddc 2px solid;
}
.bill-image{
margin:0px;
float: left;
margin: 0px 20px;
padding: 5px;
}
.bill{
margin:0px;
display: block;
margin: 5px 5px;
text-align: left;
}
.tool-cart h5{
text-align: center;
}
.tool-cart{
text-align: center;
margin: 10px 10px;
}
.tool-cart .btn-primary{
width: 32px;
background: #009ddc ;
color: #fff;
}
.cart-allinfo {
width: 99%;
margin:5px 5px ;
padding:5px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
height:auto;
}
.cart-items{
padding: 5px;
}
.cart-allinfo h5{
text-align: left;
}
.cart-allinfo h6{
font-size:10px;
margin-top:5px;
}
.cart-allinfo p{
text-align: left;margin:0px;
}
.tool-cart{
clear: both;
margin-top: 10px;
}
/* .cart-allinfo:hover {
border: red 2px solid;
} */
#text-upload:hover {
border: gray 2px dotted;
}
#img-upload:hover {
border: gray 2px dotted;
}
.warn{
top: 20%;
left: 40%;
width:400px;
position: absolute;
}
#img-delete{
display: none;
width: 300px;
height: 50px;
margin-top: 30px;
}
#text-delete{
width: 300px;
height: 50px;
margin-top: 30px;
}
.color-blue {
color: #08588c;
margin: 0px 20px;
}
.btn-search {
font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
background-color: #fff;
border: 1px solid #08588c;
color: #08588c;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5%;
height: 30px;
font-size: 16px;
}
.custom-text-area{
display: none;
margin-top: 20px;
}
#table-text .card-body{
font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
color: black;
}
.color-fill-icon {
display: inline-block;
width: 16px;
height: 16px;
border: 1px solid #000;
background-color: #fff;
margin: 2px;
}
.dropdown-color-fill-icon {
position: relative;
float: left;
margin-left: 0;
margin-right: 0
}
.card-header{
text-align: center;
background: #009ddc;
padding:20px;
}
.card-header img{
position: absolute;;
right: 10%;
}
#btn-order{
background:#009ddc;
border: none;
color: #fff;
}
/*Cart */
/* .card-bill{
width: 99%;
margin:5px 5px ;
padding:5px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
height:auto;
}
.bill-image{
margin:0px;
float: left;
margin: 0px 20px;
}
.bill{
margin:0px;
display: inline-block;
margin: 20px 20px;
text-align: left;
} */
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close{
margin:5px;
}
#close_bill {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
#close_bill:hover,
#close_bill:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.update_info{
margin-top:10px;
}
h4{
margin-bottom: .5rem;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
font-size: 1.2rem;
color: inherit;
}
/**drp down **/
/* Dropdown Button */
.dropbtn {
background-color: transparent;
color: #08588c;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
margin-right: 20px;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
background-color: #08588c;
color: white;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
/**payment method **/
.method{
margin: 5px;
}
.method input{
padding: 5px;
} | 0.360039 | 0.113949 |
* {
box-sizing: border-box;
}
html {
--bg: #EEE;
--bg-panel: #EBEBEB;
--color-headings: #388bc5;
--color-text: #333333e3;
--color-header: #388bc5;
--preto-branco: #000;
--hover-add: #244c88;
--pizza-Window-Area: rgba(5, 4, 4, 0.5);
--aside: #9ccbe6;
--cart-totalitem: #315970;
--totalitem-border: #79b9dd;
}
/*PARA O BOTÃO*/
input[type=checkbox] {
height: 0;
width: 0;
visibility: hidden;
/* esconde a caixa do checkbox*/
}
/*configurar o botao*/
label {
cursor: pointer;
text-indent: -9999px;
width: 52px;
height: 27px;
background: grey;
margin-right: 0;
float: right;
border-radius: 100px;
position: relative;
}
label::after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 20px;
height: 20px;
background-color: white;
border-radius: 90px;
transition: 0.2s;
}
/* ao clicar no botao entra essa cor*/
input:checked+label {
background-color: var(--color-headings);
}
input:checked+label::after {
left: calc(100% - 3px);
transform: translateX(-100%);
}
label:active::after {
width: 45px;
}
/*fim configurar o botao*/
body {
background-color: var(--bg);
font-family: 'Lato', Helvetica, Arial;
font-size: 15px;
display: flex;
margin: 0;
min-height: 100vh;
}
.models {
display: none;
}
header {
position: fixed;
left: 0;
top: 0;
right: 0;
height: 60px;
background-color: var(--color-header);
display: none;
justify-content: flex-end;
align-items: center;
}
.menu-openner {
margin-right: 15px;
font-size: 26px;
background-color: #a9dcff;
padding: 5px 20px;
border-radius: 5px;
}
.menu-openner span {
margin-right: 10px;
}
.menu-closer {
width: 32px;
height: 32px;
display: none;
font-size: 30px;
}
aside {
background-color: var(--aside);
width: 0vw;
font-family: 'Hepta Slab', Helvetica, Arial;
transition: all ease .2s;
overflow-x: hidden;
}
aside.show {
width: 30vw;
}
.cart--area {
padding: 20px;
}
main {
flex: 1;
padding: 20px;
}
h1 {
font-family: 'Hepta Slab', Helvetica, Arial;
color: var(--preto-branco);
}
.pizza-area {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.pizza-item {
text-align: center;
max-width: 250px;
font-family: 'Hepta Slab', Helvetica, Arial;
margin: 0 auto 50px auto;
}
.pizza-item a {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
}
.pizza-item--img {
width: 200px;
height: 200px;
/*cor por trás das imagens*/
background-color: var(--bg);
border-radius: 100px;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
}
.pizza-item--img img {
width: 100%;
height: auto;
}
.pizza-item--add {
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 25px;
background-color: var(--color-headings);
text-align: center;
color: #FFF;
font-size: 22px;
cursor: pointer;
margin-top: -25px;
transition: all ease .2s;
}
.pizza-item a:hover .pizza-item--add {
background-color: var(--hover-add);
}
.pizza-item--price {
font-size: 15px;
color: var(--color-text);
margin-top: 5px;
}
.pizza-item--name {
font-size: 20px;
font-weight: bold;
color: var(--preto-branco);
margin-top: 5px;
}
.pizza-item--desc {
font-size: 13px;
color: var(--color-text);
margin-top: 10px;
}
.pizzaWindowArea {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-color: var(--pizza-Window-Area);
display: none;
transition: all ease .5s;
justify-content: center;
align-items: center;
overflow-y: auto;
}
.pizzaWindowBody {
width: 900px;
background-color: var(--bg-panel);
border-radius: 10px;
box-shadow: 0px 0px 15px rgb(58, 56, 56);
display: flex;
margin: 20px 0px;
}
.pizzaBig {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.pizzaBig--back {
position: absolute;
width: 30px;
height: 30px;
background-color: #000;
}
.pizzaBig img {
height: 400px;
width: auto;
}
.pizzaInfo {
flex: 1;
font-family: 'Hepta Slab', Helvetica, Arial;
padding-bottom: 50px;
}
.pizzaInfo h1 {
margin-top: 50px;
}
.pizzaInfo .pizzaInfo--desc {
font-size: 15px;
color: var(--color-text);
margin-top: 10px;
font-family: 'Lato', Helvetica, Arial;
}
.pizzaInfo--sector {
color: rgba(124, 124, 124, 0.801);
text-transform: uppercase;
font-size: 14px;
margin-top: 30px;
margin-bottom: 10px;
}
.pizzaInfo--sizes {
display: inline-flex;
border-radius: 10px;
overflow: hidden;
}
.pizzaInfo--size {
padding: 10px 15px;
color: #000;
background-color: #EEE;
font-size: 13px;
font-weight: bold;
cursor: pointer;
}
.pizzaInfo--size:hover {
background-color: #CCC;
}
.pizzaInfo--size.selected {
background-color: #399ade;
color: #FFF;
}
.pizzaInfo--size.selected span {
color: #D6D6D6;
}
.pizzaInfo--size span {
font-size: 12px;
color: #999;
font-weight: normal;
}
.pizzaInfo--price {
display: flex;
align-items: center;
}
.pizzaInfo--actualPrice {
font-size: 28px;
margin-right: 30px;
color: var(--preto-branco);
}
.pizzaInfo--qtarea {
display: inline-flex;
background-color: rgb(209, 209, 209);
border-radius: 10px;
height: 30px;
}
.pizzaInfo--qtarea button {
border: 0;
background-color: transparent;
font-size: 17px;
outline: 0;
cursor: pointer;
padding: 0px 10px;
color: #333;
}
.pizzaInfo--qt {
line-height: 30px;
font-size: 12px;
font-weight: bold;
padding: 0px 5px;
color: #000;
}
.pizzaInfo--addButton {
margin-top: 30px;
padding: 10px 20px;
border-radius: 10px;
background-color: #48d05f;
border: 1px solid #63f77c;
color: #FFF;
display: inline-block;
cursor: pointer;
margin-right: 30px;
}
.pizzaInfo--addButton:hover {
background-color: #35af4a;
}
.pizzaInfo--cancelButton {
display: inline-block;
cursor: pointer;
color: var(--preto-branco);
}
.pizzaInfo--cancelMobileButton {
display: none;
height: 40px;
text-align: right;
line-height: 40px;
position: relative;
top: 770px;
margin-bottom: 30px;
color: var(--preto-branco);
}
.cart {
margin-bottom: 20px;
}
.cart--item {
display: flex;
align-items: center;
margin: 10px 0;
}
.cart--item img {
width: 40px;
height: 40px;
margin-right: 20px;
}
.cart--item-nome {
flex: 1;
color: var(--preto-branco);
}
.cart--item--qtarea {
display: inline-flex;
background-color: #EEE;
border-radius: 10px;
height: 30px;
}
.cart--item--qtarea button {
border: 0;
background-color: transparent;
font-size: 17px;
outline: 0;
cursor: pointer;
padding: 0px 10px;
color: #333;
}
.cart--item--qt {
line-height: 30px;
font-size: 12px;
font-weight: bold;
padding: 0px 5px;
color: #000;
}
.cart--totalitem {
padding: 15px 0;
border-top: 1px solid var(--totalitem-border);
color: var(--cart-totalitem);
display: flex;
justify-content: space-between;
font-size: 15px;
}
.cart--totalitem span:first-child {
font-weight: bold;
}
.cart--totalitem.big {
font-size: 20px;
color: var(--preto-branco);
font-weight: bold;
}
.cart--finalizar {
padding: 10px 15px;
border-radius: 15px;
background-color: #48d05f;
color: #FFF;
cursor: pointer;
text-align: center;
margin-top: 20px;
border: 2px solid #63f77c;
transition: all ease .2s;
}
.cart--finalizar:hover {
background-color: #35af4a;
}
@media (max-width:1000px) {
.pizza-area {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width:840px) {
body {
flex-direction: column;
}
.pizza-area {
display: block;
}
.pizza-item {
max-width: 100%;
}
header {
display: flex;
}
main {
padding-top: 60px;
}
aside {
width: auto;
position: fixed;
left: 100vw;
right: 0;
top: 0;
bottom: 0;
transition: all ease .2s;
}
aside.show {
width: auto;
}
.cart--area {
width: 100vw;
}
.menu-closer {
display: block;
}
.pizzaWindowArea {
justify-content: flex-start;
align-items: flex-start;
}
.pizzaWindowBody {
width: 100vw;
display: block;
padding: 20px;
border-radius: 0;
box-shadow: none;
margin: 0;
}
.pizzaBig img {
width: 75%;
height: auto;
}
.pizzaInfo h1 {
margin-top: 20px;
}
.pizzaInfo--qtarea {
height: 60px;
}
.pizzaInfo--qtarea button {
font-size: 25px;
padding: 0px 25px;
}
.pizzaInfo--qt {
line-height: 60px;
font-size: 20px;
}
.pizzaInfo--addButton {
font-size: 20px;
display: block;
text-align: center;
margin: 30px auto;
}
.pizzaInfo--cancelButton {
display: none;
}
.pizzaInfo--cancelMobileButton {
display: block;
}
} | style.css | * {
box-sizing: border-box;
}
html {
--bg: #EEE;
--bg-panel: #EBEBEB;
--color-headings: #388bc5;
--color-text: #333333e3;
--color-header: #388bc5;
--preto-branco: #000;
--hover-add: #244c88;
--pizza-Window-Area: rgba(5, 4, 4, 0.5);
--aside: #9ccbe6;
--cart-totalitem: #315970;
--totalitem-border: #79b9dd;
}
/*PARA O BOTÃO*/
input[type=checkbox] {
height: 0;
width: 0;
visibility: hidden;
/* esconde a caixa do checkbox*/
}
/*configurar o botao*/
label {
cursor: pointer;
text-indent: -9999px;
width: 52px;
height: 27px;
background: grey;
margin-right: 0;
float: right;
border-radius: 100px;
position: relative;
}
label::after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 20px;
height: 20px;
background-color: white;
border-radius: 90px;
transition: 0.2s;
}
/* ao clicar no botao entra essa cor*/
input:checked+label {
background-color: var(--color-headings);
}
input:checked+label::after {
left: calc(100% - 3px);
transform: translateX(-100%);
}
label:active::after {
width: 45px;
}
/*fim configurar o botao*/
body {
background-color: var(--bg);
font-family: 'Lato', Helvetica, Arial;
font-size: 15px;
display: flex;
margin: 0;
min-height: 100vh;
}
.models {
display: none;
}
header {
position: fixed;
left: 0;
top: 0;
right: 0;
height: 60px;
background-color: var(--color-header);
display: none;
justify-content: flex-end;
align-items: center;
}
.menu-openner {
margin-right: 15px;
font-size: 26px;
background-color: #a9dcff;
padding: 5px 20px;
border-radius: 5px;
}
.menu-openner span {
margin-right: 10px;
}
.menu-closer {
width: 32px;
height: 32px;
display: none;
font-size: 30px;
}
aside {
background-color: var(--aside);
width: 0vw;
font-family: 'Hepta Slab', Helvetica, Arial;
transition: all ease .2s;
overflow-x: hidden;
}
aside.show {
width: 30vw;
}
.cart--area {
padding: 20px;
}
main {
flex: 1;
padding: 20px;
}
h1 {
font-family: 'Hepta Slab', Helvetica, Arial;
color: var(--preto-branco);
}
.pizza-area {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.pizza-item {
text-align: center;
max-width: 250px;
font-family: 'Hepta Slab', Helvetica, Arial;
margin: 0 auto 50px auto;
}
.pizza-item a {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
}
.pizza-item--img {
width: 200px;
height: 200px;
/*cor por trás das imagens*/
background-color: var(--bg);
border-radius: 100px;
box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
}
.pizza-item--img img {
width: 100%;
height: auto;
}
.pizza-item--add {
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 25px;
background-color: var(--color-headings);
text-align: center;
color: #FFF;
font-size: 22px;
cursor: pointer;
margin-top: -25px;
transition: all ease .2s;
}
.pizza-item a:hover .pizza-item--add {
background-color: var(--hover-add);
}
.pizza-item--price {
font-size: 15px;
color: var(--color-text);
margin-top: 5px;
}
.pizza-item--name {
font-size: 20px;
font-weight: bold;
color: var(--preto-branco);
margin-top: 5px;
}
.pizza-item--desc {
font-size: 13px;
color: var(--color-text);
margin-top: 10px;
}
.pizzaWindowArea {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-color: var(--pizza-Window-Area);
display: none;
transition: all ease .5s;
justify-content: center;
align-items: center;
overflow-y: auto;
}
.pizzaWindowBody {
width: 900px;
background-color: var(--bg-panel);
border-radius: 10px;
box-shadow: 0px 0px 15px rgb(58, 56, 56);
display: flex;
margin: 20px 0px;
}
.pizzaBig {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.pizzaBig--back {
position: absolute;
width: 30px;
height: 30px;
background-color: #000;
}
.pizzaBig img {
height: 400px;
width: auto;
}
.pizzaInfo {
flex: 1;
font-family: 'Hepta Slab', Helvetica, Arial;
padding-bottom: 50px;
}
.pizzaInfo h1 {
margin-top: 50px;
}
.pizzaInfo .pizzaInfo--desc {
font-size: 15px;
color: var(--color-text);
margin-top: 10px;
font-family: 'Lato', Helvetica, Arial;
}
.pizzaInfo--sector {
color: rgba(124, 124, 124, 0.801);
text-transform: uppercase;
font-size: 14px;
margin-top: 30px;
margin-bottom: 10px;
}
.pizzaInfo--sizes {
display: inline-flex;
border-radius: 10px;
overflow: hidden;
}
.pizzaInfo--size {
padding: 10px 15px;
color: #000;
background-color: #EEE;
font-size: 13px;
font-weight: bold;
cursor: pointer;
}
.pizzaInfo--size:hover {
background-color: #CCC;
}
.pizzaInfo--size.selected {
background-color: #399ade;
color: #FFF;
}
.pizzaInfo--size.selected span {
color: #D6D6D6;
}
.pizzaInfo--size span {
font-size: 12px;
color: #999;
font-weight: normal;
}
.pizzaInfo--price {
display: flex;
align-items: center;
}
.pizzaInfo--actualPrice {
font-size: 28px;
margin-right: 30px;
color: var(--preto-branco);
}
.pizzaInfo--qtarea {
display: inline-flex;
background-color: rgb(209, 209, 209);
border-radius: 10px;
height: 30px;
}
.pizzaInfo--qtarea button {
border: 0;
background-color: transparent;
font-size: 17px;
outline: 0;
cursor: pointer;
padding: 0px 10px;
color: #333;
}
.pizzaInfo--qt {
line-height: 30px;
font-size: 12px;
font-weight: bold;
padding: 0px 5px;
color: #000;
}
.pizzaInfo--addButton {
margin-top: 30px;
padding: 10px 20px;
border-radius: 10px;
background-color: #48d05f;
border: 1px solid #63f77c;
color: #FFF;
display: inline-block;
cursor: pointer;
margin-right: 30px;
}
.pizzaInfo--addButton:hover {
background-color: #35af4a;
}
.pizzaInfo--cancelButton {
display: inline-block;
cursor: pointer;
color: var(--preto-branco);
}
.pizzaInfo--cancelMobileButton {
display: none;
height: 40px;
text-align: right;
line-height: 40px;
position: relative;
top: 770px;
margin-bottom: 30px;
color: var(--preto-branco);
}
.cart {
margin-bottom: 20px;
}
.cart--item {
display: flex;
align-items: center;
margin: 10px 0;
}
.cart--item img {
width: 40px;
height: 40px;
margin-right: 20px;
}
.cart--item-nome {
flex: 1;
color: var(--preto-branco);
}
.cart--item--qtarea {
display: inline-flex;
background-color: #EEE;
border-radius: 10px;
height: 30px;
}
.cart--item--qtarea button {
border: 0;
background-color: transparent;
font-size: 17px;
outline: 0;
cursor: pointer;
padding: 0px 10px;
color: #333;
}
.cart--item--qt {
line-height: 30px;
font-size: 12px;
font-weight: bold;
padding: 0px 5px;
color: #000;
}
.cart--totalitem {
padding: 15px 0;
border-top: 1px solid var(--totalitem-border);
color: var(--cart-totalitem);
display: flex;
justify-content: space-between;
font-size: 15px;
}
.cart--totalitem span:first-child {
font-weight: bold;
}
.cart--totalitem.big {
font-size: 20px;
color: var(--preto-branco);
font-weight: bold;
}
.cart--finalizar {
padding: 10px 15px;
border-radius: 15px;
background-color: #48d05f;
color: #FFF;
cursor: pointer;
text-align: center;
margin-top: 20px;
border: 2px solid #63f77c;
transition: all ease .2s;
}
.cart--finalizar:hover {
background-color: #35af4a;
}
@media (max-width:1000px) {
.pizza-area {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width:840px) {
body {
flex-direction: column;
}
.pizza-area {
display: block;
}
.pizza-item {
max-width: 100%;
}
header {
display: flex;
}
main {
padding-top: 60px;
}
aside {
width: auto;
position: fixed;
left: 100vw;
right: 0;
top: 0;
bottom: 0;
transition: all ease .2s;
}
aside.show {
width: auto;
}
.cart--area {
width: 100vw;
}
.menu-closer {
display: block;
}
.pizzaWindowArea {
justify-content: flex-start;
align-items: flex-start;
}
.pizzaWindowBody {
width: 100vw;
display: block;
padding: 20px;
border-radius: 0;
box-shadow: none;
margin: 0;
}
.pizzaBig img {
width: 75%;
height: auto;
}
.pizzaInfo h1 {
margin-top: 20px;
}
.pizzaInfo--qtarea {
height: 60px;
}
.pizzaInfo--qtarea button {
font-size: 25px;
padding: 0px 25px;
}
.pizzaInfo--qt {
line-height: 60px;
font-size: 20px;
}
.pizzaInfo--addButton {
font-size: 20px;
display: block;
text-align: center;
margin: 30px auto;
}
.pizzaInfo--cancelButton {
display: none;
}
.pizzaInfo--cancelMobileButton {
display: block;
}
} | 0.499756 | 0.123075 |
html,
body {
font-family: 'Open Sans', sans-serif;
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
}
hgroup { margin-bottom: 52px; }
h1 { font-family: 'Pacifico', cursive; }
h2 {
font-weight: 300;
margin-bottom: 12px;
}
form.well { padding: 12px; }
form input[type="text"],
form select {
color: #888;
height: 44px;
margin-bottom: 12px;
width: 100%;
}
form input[type="submit"] {
line-height: 1.6;
margin: 0;
width: 100%;
}
@media (min-width: 48em) {
form input[type="text"],
form select {
color: #555;
margin: 0;
width: 39.15%;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
form select { color: #bbb; }
form select:active,
form select:focus { color: #555; }
form input.btn { width: 20.8%; }
}
form ::-webkit-input-placeholder { color: #bbb; }
form :-ms-input-placeholder { color: #bbb; }
form ::-moz-placeholder { color: #bbb; }
form :-moz-placeholder { color: #bbb; }
.control-icons { margin: 36px 0 12px; }
.control-icons .icon {
border-radius: 3px;
padding: 10px;
}
.control-icons .icon:hover {
background: #dfdfdf;
color: #fff;
text-decoration: none;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
/* Prevent the text contents of draggable elements from being selectable. */
[draggable] {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: element;
-khtml-user-drag: element;
}
ul li {
border-bottom: 1px solid #ddd;
cursor: move;
padding: 10px;
-webkit-transition: -webkit-transform 0.2s ease-out;
-moz-transition: -moz-transform 0.2s ease-out;
-ms-transition: -ms-transform 0.2s ease-out;
-o-transition: -o-transform 0.2s ease-out;
transition: -o-transform 0.2s ease-out;
}
ul li:before {
content: "\f0c9";
color: #ccc;
font-family: FontAwesome;
font-size: 1rem;
margin-right: 12px;
}
#notes .note.over { border: 2px dashed #000; }
#notes .note.moving {
opacity: 0.25;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
} | css/notes.css | html,
body {
font-family: 'Open Sans', sans-serif;
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-o-transition: all .2s linear;
transition: all .2s linear;
}
hgroup { margin-bottom: 52px; }
h1 { font-family: 'Pacifico', cursive; }
h2 {
font-weight: 300;
margin-bottom: 12px;
}
form.well { padding: 12px; }
form input[type="text"],
form select {
color: #888;
height: 44px;
margin-bottom: 12px;
width: 100%;
}
form input[type="submit"] {
line-height: 1.6;
margin: 0;
width: 100%;
}
@media (min-width: 48em) {
form input[type="text"],
form select {
color: #555;
margin: 0;
width: 39.15%;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
form select { color: #bbb; }
form select:active,
form select:focus { color: #555; }
form input.btn { width: 20.8%; }
}
form ::-webkit-input-placeholder { color: #bbb; }
form :-ms-input-placeholder { color: #bbb; }
form ::-moz-placeholder { color: #bbb; }
form :-moz-placeholder { color: #bbb; }
.control-icons { margin: 36px 0 12px; }
.control-icons .icon {
border-radius: 3px;
padding: 10px;
}
.control-icons .icon:hover {
background: #dfdfdf;
color: #fff;
text-decoration: none;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
/* Prevent the text contents of draggable elements from being selectable. */
[draggable] {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: element;
-khtml-user-drag: element;
}
ul li {
border-bottom: 1px solid #ddd;
cursor: move;
padding: 10px;
-webkit-transition: -webkit-transform 0.2s ease-out;
-moz-transition: -moz-transform 0.2s ease-out;
-ms-transition: -ms-transform 0.2s ease-out;
-o-transition: -o-transform 0.2s ease-out;
transition: -o-transform 0.2s ease-out;
}
ul li:before {
content: "\f0c9";
color: #ccc;
font-family: FontAwesome;
font-size: 1rem;
margin-right: 12px;
}
#notes .note.over { border: 2px dashed #000; }
#notes .note.moving {
opacity: 0.25;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
} | 0.396302 | 0.071884 |
.latest .item .title {
font-size: 17px;
margin-top: 0;
line-height: 1.38;
text-transform: capitalize;
margin-bottom: 0;
}
.navbar {
min-height: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Muli';
font-weight: normal;
color: #000;
}
.latest .item .title a {
color: #222;
}
.list ul li {
margin-bottom: 15px;
border-bottom: 1px solid #ddd;
padding-bottom: 15px;
}
.header {
padding: 0;
background: #fff;
border: none;
}
.header .profile-content .name {
color: #49515a;
font-size: 28px;
margin-bottom: 5px;
margin-top: 15px;
}
.header .profile-content .desc {
color: #778492;
font-family: "Lato", arial, sans-serif;
font-weight: 400;
font-size: 16px;
margin-top: 0;
margin-bottom: 15px;
}
.header .btn {
margin-top: -7px;
}
.sections-wrapper {
padding-top: 30px;
padding-bottom: 0px;
}
.latest .divider {
margin-bottom: 10px;
margin-top: 10px;
}
.latest .item {
margin-bottom: 10px;
}
.section .heading {
margin-top: -30px;
margin-bottom: 30px;
color: #333;
font-size: 20px;
font-weight: normal;
background: #f3f3f3;
padding: 12px 0;
text-align: center;
font-family: Lato;
}
.section {
margin-bottom: 5px;
box-shadow: 2px 2px 4px #bbb;
background: #fff;
}
#navlist li a {
text-decoration: underline;
}
#navlist li a:hover {
text-decoration: none;
}
ul#navlist {
float: left;
display: block;
position: relative;
width: 50%;
}
.profile-content {
width: 100%;
position: relative;
border-bottom: 1px solid #ddd;
margin-bottom: 5px;
padding-bottom: 5px;
}
.call{
margin-top: 2px;
border: 2px solid #58ca7e;
background: #58ca7e;
padding: 4px 15px !important;
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
border-radius: 30px;
color: #fff;
font-size:15px;
text-transform:uppercase;
font-weight:bold;
letter-spacing:1px;
}
.call:hover{
color: #fff;
border: 2px solid #45c46f;
background: #45c46f;
}
label{display: inherit;}
.navbar-default {
background-color: transparent;
border-color: transparent;
overflow: auto;
margin-bottom: 0px;
overflow: hidden;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
color: inherit;
background-color: transparent;
}
.nav>li>a {
position: relative;
display: block;
padding: 5px 0;
margin-right: 15px;
}
.navbar-default .nav>li>a:hover{
text-decoration: none;
}
.navbar-collapse {
padding-right: 0;
padding-left: 0;
}
.navbar-default .navbar-nav>li>a {
color: #3AAA64;
text-decoration: underline;
font-size: 16px;
}
html{
min-height: 100%;
position: relative;
}
body{
margin-bottom:80px;
}
.footer {
margin-top: 50px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
} | assets/css/additional-styles.css | .latest .item .title {
font-size: 17px;
margin-top: 0;
line-height: 1.38;
text-transform: capitalize;
margin-bottom: 0;
}
.navbar {
min-height: 40px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Muli';
font-weight: normal;
color: #000;
}
.latest .item .title a {
color: #222;
}
.list ul li {
margin-bottom: 15px;
border-bottom: 1px solid #ddd;
padding-bottom: 15px;
}
.header {
padding: 0;
background: #fff;
border: none;
}
.header .profile-content .name {
color: #49515a;
font-size: 28px;
margin-bottom: 5px;
margin-top: 15px;
}
.header .profile-content .desc {
color: #778492;
font-family: "Lato", arial, sans-serif;
font-weight: 400;
font-size: 16px;
margin-top: 0;
margin-bottom: 15px;
}
.header .btn {
margin-top: -7px;
}
.sections-wrapper {
padding-top: 30px;
padding-bottom: 0px;
}
.latest .divider {
margin-bottom: 10px;
margin-top: 10px;
}
.latest .item {
margin-bottom: 10px;
}
.section .heading {
margin-top: -30px;
margin-bottom: 30px;
color: #333;
font-size: 20px;
font-weight: normal;
background: #f3f3f3;
padding: 12px 0;
text-align: center;
font-family: Lato;
}
.section {
margin-bottom: 5px;
box-shadow: 2px 2px 4px #bbb;
background: #fff;
}
#navlist li a {
text-decoration: underline;
}
#navlist li a:hover {
text-decoration: none;
}
ul#navlist {
float: left;
display: block;
position: relative;
width: 50%;
}
.profile-content {
width: 100%;
position: relative;
border-bottom: 1px solid #ddd;
margin-bottom: 5px;
padding-bottom: 5px;
}
.call{
margin-top: 2px;
border: 2px solid #58ca7e;
background: #58ca7e;
padding: 4px 15px !important;
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
border-radius: 30px;
color: #fff;
font-size:15px;
text-transform:uppercase;
font-weight:bold;
letter-spacing:1px;
}
.call:hover{
color: #fff;
border: 2px solid #45c46f;
background: #45c46f;
}
label{display: inherit;}
.navbar-default {
background-color: transparent;
border-color: transparent;
overflow: auto;
margin-bottom: 0px;
overflow: hidden;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
color: inherit;
background-color: transparent;
}
.nav>li>a {
position: relative;
display: block;
padding: 5px 0;
margin-right: 15px;
}
.navbar-default .nav>li>a:hover{
text-decoration: none;
}
.navbar-collapse {
padding-right: 0;
padding-left: 0;
}
.navbar-default .navbar-nav>li>a {
color: #3AAA64;
text-decoration: underline;
font-size: 16px;
}
html{
min-height: 100%;
position: relative;
}
body{
margin-bottom:80px;
}
.footer {
margin-top: 50px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
} | 0.460289 | 0.07373 |
@import "../global/variables.css";
@value unit from "../global/global.css";
@value animation-duration: 300ms;
@value animation-easing: ease-out;
.alert {
position: relative;
display: flex;
align-items: baseline;
box-sizing: border-box;
min-height: calc(unit * 5);
margin: unit auto;
padding: 0 calc(unit * 2);
transition:
transform animation-duration animation-easing,
margin-bottom animation-duration animation-easing,
opacity animation-duration animation-easing;
white-space: nowrap;
pointer-events: auto;
border-radius: var(--ring-border-radius);
background-color: var(--ring-message-background-color);
box-shadow: 0 2px 16px var(--ring-popup-shadow-color);
font-size: var(--ring-font-size);
line-height: calc(unit * 5);
}
.alertInline {
margin: unit;
}
.error {
word-wrap: break-word;
color: var(--ring-error-color);
}
.icon {
margin-right: unit;
}
.caption {
overflow: hidden;
max-width: calc(100% - calc(unit * 5));
margin: 12px calc(unit * 5) 12px 0;
white-space: normal;
color: var(--ring-dark-text-color);
line-height: 20px;
& :global(.ring-link),
/* This link styles are used in link.css */
& .link {
color: var(--ring-main-color);
}
}
.badge {
margin-left: unit;
vertical-align: baseline;
}
.loader {
top: 2px;
margin-right: unit;
}
.close {
position: absolute;
top: 2px;
right: 0;
margin: calc(unit / 2);
padding: unit;
cursor: pointer;
color: var(--ring-dark-secondary-color);
border: none;
background: transparent;
font-size: 0;
line-height: 0;
&:hover,
&:focus {
color: var(--ring-link-hover-color);
}
}
@keyframes show {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes shaking {
10%,
90% {
transform: translateX(-1px);
}
20%,
80% {
transform: translateX(2px);
}
30%,
50%,
70% {
transform: translateX(-4px);
}
40%,
60% {
transform: translateX(4px);
}
}
.animationOpen {
animation-name: show;
animation-duration: animation-duration;
}
.animationClosing {
z-index: var(--ring-invisible-element-z-index);
opacity: 0;
}
.animationShaking {
animation-name: shaking;
animation-duration: 500ms;
} | components/alert/alert.css | @import "../global/variables.css";
@value unit from "../global/global.css";
@value animation-duration: 300ms;
@value animation-easing: ease-out;
.alert {
position: relative;
display: flex;
align-items: baseline;
box-sizing: border-box;
min-height: calc(unit * 5);
margin: unit auto;
padding: 0 calc(unit * 2);
transition:
transform animation-duration animation-easing,
margin-bottom animation-duration animation-easing,
opacity animation-duration animation-easing;
white-space: nowrap;
pointer-events: auto;
border-radius: var(--ring-border-radius);
background-color: var(--ring-message-background-color);
box-shadow: 0 2px 16px var(--ring-popup-shadow-color);
font-size: var(--ring-font-size);
line-height: calc(unit * 5);
}
.alertInline {
margin: unit;
}
.error {
word-wrap: break-word;
color: var(--ring-error-color);
}
.icon {
margin-right: unit;
}
.caption {
overflow: hidden;
max-width: calc(100% - calc(unit * 5));
margin: 12px calc(unit * 5) 12px 0;
white-space: normal;
color: var(--ring-dark-text-color);
line-height: 20px;
& :global(.ring-link),
/* This link styles are used in link.css */
& .link {
color: var(--ring-main-color);
}
}
.badge {
margin-left: unit;
vertical-align: baseline;
}
.loader {
top: 2px;
margin-right: unit;
}
.close {
position: absolute;
top: 2px;
right: 0;
margin: calc(unit / 2);
padding: unit;
cursor: pointer;
color: var(--ring-dark-secondary-color);
border: none;
background: transparent;
font-size: 0;
line-height: 0;
&:hover,
&:focus {
color: var(--ring-link-hover-color);
}
}
@keyframes show {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes shaking {
10%,
90% {
transform: translateX(-1px);
}
20%,
80% {
transform: translateX(2px);
}
30%,
50%,
70% {
transform: translateX(-4px);
}
40%,
60% {
transform: translateX(4px);
}
}
.animationOpen {
animation-name: show;
animation-duration: animation-duration;
}
.animationClosing {
z-index: var(--ring-invisible-element-z-index);
opacity: 0;
}
.animationShaking {
animation-name: shaking;
animation-duration: 500ms;
} | 0.595257 | 0.169922 |
body {
padding-top: 136px;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
a, a:focus {
outline: 0;
}
.ues-hidden {
display: none;
}
/**
* global menu styles
*/
.ues-global-navigation {
background: #11375B;
z-index: 1200;
}
.ues-global-navigation .navbar-brand {
color: #fff;
}
.ues-global-navigation .nav li a {
color: #fff;
}
.ues-global-navigation .nav .active a {
color: #fff;
}
.ues-global-navigation .nav li a:hover {
color: #fff;
background: #132D45;
}
.ues-global-navigation .nav .active a:hover {
color: #fff;
background: #132D45;
}
.ues-global-navigation .dropdown-menu li a {
color: #132D45;
}
/**
* context menu styles
*/
.ues-context-menu {
top: 50px;
background: #526A84;
border: none;
margin-bottom: 0;
text-transform: uppercase;
}
.ues-context-menu .navbar-brand {
color: #fff;
}
.ues-context-menu .navbar-brand:hover {
color: #fff;
background: #132D45;
}
.ues-context-menu .nav li a {
color: #fff;
}
.ues-context-menu .nav .active a {
background: #262933;
color: #fff;
}
.ues-context-menu .nav .active a:focus {
background: #262933;
color: #fff;
}
.ues-context-menu .nav li a:focus {
color: #fff;
}
.ues-context-menu .nav li a:hover {
color: #fff;
background: #132D45;
}
.ues-context-menu .nav .active a:hover {
background: #262933;
color: #fff;
}
.ues-context-menu .ues-tiles-menu-toggle {
background: #F47415;
}
.ues-context-menu .ues-tiles-menu-toggle:hover {
background: #D56613;
}
.ues-context-menu .ues-tiles-menu-toggle.active {
background: #132D45;
}
.ues-context-menu .ues-context-menu-actions .ues-hidden {
display: none;
}
.ues-context-menu .ues-context-menu-actions {
border: none;
}
/**
* tiles menu styles
*/
.ues-context-menu .ues-tiles-menu {
margin-bottom: 0;
background: #132D45;
display: none;
}
.ues-context-menu .ues-tiles-menu .nav a .fw {
font-size: 60px;
display: block;
margin-bottom: 7px;
}
.ues-context-menu .ues-tiles-menu .nav a {
padding: 13px;
text-align: center;
margin: 17px;
}
.ues-context-menu .ues-tiles-menu .nav a:hover {
background: #526A84;
}
.ues-wizard-steps {
padding-bottom: 20px;
margin: 20px 0;
border-bottom: 1px solid #f0f0f0;
}
.ues-wizard-steps .ues-wizard-step .ues-step-no {
width: 50px;
height: 50px;
font-size: 33px;
font-weight: 100;
border-radius: 80px;
background: #ccc;
text-align: center;
color: #fff;
display: inline-block;
}
.ues-wizard-steps .ues-wizard-step.ues-active .ues-step-no {
background: #444;
}
.ues-wizard-steps .ues-wizard-step .ues-title {
display: inline-block;
}
.ues-wizard-body {
margin-bottom: 20px;
}
/**
* typeahead styles
*/
.twitter-typeahead {
width: 100%;
}
.tt-input,
.tt-hint {
height: 34px;
padding: 8px 11px;
line-height: 34px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
.tt-input {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
color: #999
}
.tt-menu {
width: 100%;
padding: 4px 0;
background-color: #fff;
border: 1px solid #ccc;
}
.ues-shared-role {
padding: 1px 11px;
}
.tt-suggestion {
padding: 3px 11px;
line-height: 24px;
}
.tt-suggestion:hover {
background-color: rgb(229, 229, 229);
}
.tt-suggestion.tt-cursor {
color: #fff;
background-color: #0097cf;
}
.tt-suggestion p {
margin: 0;
}
.app-logo {
display: block;
padding-top: 10px;
white-space: nowrap;
}
.app-logo h2, .app-logo img {
float: left;
}
.app-logo h2 {
text-indent: 10px;
overflow: hidden;
}
.logged-in i {
display: none
}
@media all and (max-width: 430px) {
div.app-logo h2.app-title {
font-size: 10px
}
.navbar-nav > li > a.logged-in {
font-size: 10px;
padding-right: 0;
padding-top: 0;
text-align: right;
}
.logged-in i {
display: inline-block;
}
.logged-in span.logged-in-username {
display: none;
}
}
@media all and (min-width: 767px) {
.close-db-settings {
display: none;
}
}
#ues-store-menu .navbar-toggle {
margin-right: 0px;
}
.close-db-settings {
margin-top: -8px;
}
#ues-properties .ues-title {
margin-top: 10px;
}
h2.app-title {
font-weight: 500;
font-size: 17px;
margin: 0;
padding: 3px 0 0 0;
color: #fafafa;
text-transform: uppercase;
}
.form-control {
border-radius: 0px;
}
.app-logo a {
text-decoration: none;
}
.btn {
border-radius: 0px;
}
.navbar {
border: none;
}
.page-sub-title {
font-weight: 300;
text-transform: uppercase;
font-size: 24px;
}
.fw-stack {
height: 1.4em;
margin-top: -6px;
}
/**
* breadcrumb
*/
.ues-designer-breadcrumb {
background-color: #041440;
margin: 0;
border-radius: 0;
}
.ues-designer-breadcrumb li a {
color: #fff;
}
.ues-designer-breadcrumb li a:hover {
color: rgb(228, 228, 228);
}
.breadcrumb > .active {
color: #ccc;
}
.ues-context-menu > .container-fluid {
padding-left: 0;
padding-right: 0;
}
@media all and (max-width: 768px) {
.ues-context-menu .ues-context-menu-actions li {
padding-left: 10px;
}
} | dockerfiles/base/files/wso2iot-3.3.0/wso2/analytics/repository/deployment/server/jaggeryapps/portal/css/ues.css | body {
padding-top: 136px;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
a, a:focus {
outline: 0;
}
.ues-hidden {
display: none;
}
/**
* global menu styles
*/
.ues-global-navigation {
background: #11375B;
z-index: 1200;
}
.ues-global-navigation .navbar-brand {
color: #fff;
}
.ues-global-navigation .nav li a {
color: #fff;
}
.ues-global-navigation .nav .active a {
color: #fff;
}
.ues-global-navigation .nav li a:hover {
color: #fff;
background: #132D45;
}
.ues-global-navigation .nav .active a:hover {
color: #fff;
background: #132D45;
}
.ues-global-navigation .dropdown-menu li a {
color: #132D45;
}
/**
* context menu styles
*/
.ues-context-menu {
top: 50px;
background: #526A84;
border: none;
margin-bottom: 0;
text-transform: uppercase;
}
.ues-context-menu .navbar-brand {
color: #fff;
}
.ues-context-menu .navbar-brand:hover {
color: #fff;
background: #132D45;
}
.ues-context-menu .nav li a {
color: #fff;
}
.ues-context-menu .nav .active a {
background: #262933;
color: #fff;
}
.ues-context-menu .nav .active a:focus {
background: #262933;
color: #fff;
}
.ues-context-menu .nav li a:focus {
color: #fff;
}
.ues-context-menu .nav li a:hover {
color: #fff;
background: #132D45;
}
.ues-context-menu .nav .active a:hover {
background: #262933;
color: #fff;
}
.ues-context-menu .ues-tiles-menu-toggle {
background: #F47415;
}
.ues-context-menu .ues-tiles-menu-toggle:hover {
background: #D56613;
}
.ues-context-menu .ues-tiles-menu-toggle.active {
background: #132D45;
}
.ues-context-menu .ues-context-menu-actions .ues-hidden {
display: none;
}
.ues-context-menu .ues-context-menu-actions {
border: none;
}
/**
* tiles menu styles
*/
.ues-context-menu .ues-tiles-menu {
margin-bottom: 0;
background: #132D45;
display: none;
}
.ues-context-menu .ues-tiles-menu .nav a .fw {
font-size: 60px;
display: block;
margin-bottom: 7px;
}
.ues-context-menu .ues-tiles-menu .nav a {
padding: 13px;
text-align: center;
margin: 17px;
}
.ues-context-menu .ues-tiles-menu .nav a:hover {
background: #526A84;
}
.ues-wizard-steps {
padding-bottom: 20px;
margin: 20px 0;
border-bottom: 1px solid #f0f0f0;
}
.ues-wizard-steps .ues-wizard-step .ues-step-no {
width: 50px;
height: 50px;
font-size: 33px;
font-weight: 100;
border-radius: 80px;
background: #ccc;
text-align: center;
color: #fff;
display: inline-block;
}
.ues-wizard-steps .ues-wizard-step.ues-active .ues-step-no {
background: #444;
}
.ues-wizard-steps .ues-wizard-step .ues-title {
display: inline-block;
}
.ues-wizard-body {
margin-bottom: 20px;
}
/**
* typeahead styles
*/
.twitter-typeahead {
width: 100%;
}
.tt-input,
.tt-hint {
height: 34px;
padding: 8px 11px;
line-height: 34px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
.tt-input {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
color: #999
}
.tt-menu {
width: 100%;
padding: 4px 0;
background-color: #fff;
border: 1px solid #ccc;
}
.ues-shared-role {
padding: 1px 11px;
}
.tt-suggestion {
padding: 3px 11px;
line-height: 24px;
}
.tt-suggestion:hover {
background-color: rgb(229, 229, 229);
}
.tt-suggestion.tt-cursor {
color: #fff;
background-color: #0097cf;
}
.tt-suggestion p {
margin: 0;
}
.app-logo {
display: block;
padding-top: 10px;
white-space: nowrap;
}
.app-logo h2, .app-logo img {
float: left;
}
.app-logo h2 {
text-indent: 10px;
overflow: hidden;
}
.logged-in i {
display: none
}
@media all and (max-width: 430px) {
div.app-logo h2.app-title {
font-size: 10px
}
.navbar-nav > li > a.logged-in {
font-size: 10px;
padding-right: 0;
padding-top: 0;
text-align: right;
}
.logged-in i {
display: inline-block;
}
.logged-in span.logged-in-username {
display: none;
}
}
@media all and (min-width: 767px) {
.close-db-settings {
display: none;
}
}
#ues-store-menu .navbar-toggle {
margin-right: 0px;
}
.close-db-settings {
margin-top: -8px;
}
#ues-properties .ues-title {
margin-top: 10px;
}
h2.app-title {
font-weight: 500;
font-size: 17px;
margin: 0;
padding: 3px 0 0 0;
color: #fafafa;
text-transform: uppercase;
}
.form-control {
border-radius: 0px;
}
.app-logo a {
text-decoration: none;
}
.btn {
border-radius: 0px;
}
.navbar {
border: none;
}
.page-sub-title {
font-weight: 300;
text-transform: uppercase;
font-size: 24px;
}
.fw-stack {
height: 1.4em;
margin-top: -6px;
}
/**
* breadcrumb
*/
.ues-designer-breadcrumb {
background-color: #041440;
margin: 0;
border-radius: 0;
}
.ues-designer-breadcrumb li a {
color: #fff;
}
.ues-designer-breadcrumb li a:hover {
color: rgb(228, 228, 228);
}
.breadcrumb > .active {
color: #ccc;
}
.ues-context-menu > .container-fluid {
padding-left: 0;
padding-right: 0;
}
@media all and (max-width: 768px) {
.ues-context-menu .ues-context-menu-actions li {
padding-left: 10px;
}
} | 0.484868 | 0.067979 |
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
color: #666;
}
header {
margin: 0 auto;
color: #222;
font-size: 12px;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
}
.wid_limit {
width: 980px;
}
.top_wrapper:after {
content:"";
display:block;
visibility:hidden;
clear:both;
height:0;
}
.up_box:after {
content:"";
display:block;
visibility:hidden;
clear:both;
height:0;
}
.top_nav {
position: relative;
height: 42px;
z-index: 200;
}
.center {
margin: 0 auto;
}
.mask {
position: absolute;
top: 0;
left: 0;
background: white;
height: 100%;
width: 100%;
box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.top_button {
display: inline;
float: left;
}
.top_button>div {
float: left;
text-align: center;
line-height: 42px;
height: 42px;
position: relative;
background-color: hsla(0,0%,100%,0);
transition: all .3s;
display: inline;
margin-left: -10px;
padding-left: 12px;
}
.top_button>div>a {
height: 100%;
display: block;
padding: 0 11px;
padding-left: 20px;
}
.top_button>div>a>i{
background-image: url(../img/icons.png);
position: absolute;
width: 17px;
height: 14px;
left: 10px;
top: 13px;
background-position: -919px -88px;
}
.up_button {
float: right;
position: relative;
width: 58px;
height: 42px;
}
.up_button>a {
display: block;
width: 100%;
height: 48px;
line-height: 42px;
text-align: center;
font-size: 14px;
color: #fff;
background-image: url(../img/up_button.png);
}
.up_button:hover .up_box {
display: block;
}
.up_box {
display: none;
position: absolute;
top: 57px;
border-radius: 0 0 4px 4px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,.16);
border: 1px solid #e5e9ef;
text-align: center;
font-size: 12px;
width: 144px;
margin-left: -87px;
}
.up_box li {
cursor: pointer;
text-align: center;
width: 72px;
height: 64px;
transition: .2s;
float: left;
position: relative;
background: #fff;
}
.up_box li:hover {
background: #e5e9ef;
}
.up_box i {
display: block;
width: 20px;
height: 20px;
margin: 15px auto 2px;
transition: .2s;
background-image: url(../img/icons.png);
}
.up_box li:hover i {
transform: translateY(-2px);
}
.up_box span {
color: #f25d8e;
}
.up_video i{
background-position: -471px -919px;
}
.up_manage i{
background-position: -471px -982px;
}
.top_img {
background: #00a0d8;
height: 86px;
margin-bottom: 20px;
text-align: center;
}
.div_line {
width: 980px;
height: 28px;
margin: 0 auto;
text-align: center;
border-bottom: 1px solid #ddd;
margin-bottom: 28px;
}
.div_line>span {
font-size: 38px;
background-color: white;
padding: 0 20px;
margin: 0 auto;
height: 56px;
line-height: 56px;
}
.main_part {
width: 980px;
position: relative;
height: 325px;
margin: 0 auto;
}
.left_part {
float: left;
width: 480px;
}
.left_part i {
position: absolute;
width: 70px;
height: 70px;
left: 160px;
top: 10px;
background: url(../img/tv.png) no-repeat;
}
.left_part_header {
padding-top: 72px;
}
.left_part_header>div {
width: 140px;
height: 140px;
margin: 0 auto;
position: relative;
}
.left_part_footer{
width: 480px;
height: 155px;
background: url(../img/sign/chara.png) 0 -7px no-repeat;
}
.left_part_footer>a>p:first-child {
padding-top: 20px;
text-align: center;
color: #222;
font-size: 18px;
letter-spacing: 3px;
margin-bottom: 5px;
}
.left_part_footer>a>p:last-child {
text-align: center;
color: #717171;
font-size: 14px;
transition: color .2s;
}
.left_part_footer>a:hover>p:last-child {
color: #f25d8e;
}
.mid_line {
margin: 0 0 0 50%;;
position: absolute;
top: 28px;
height: 300px;
border-right: 1px solid #ddd;
}
.right_part {
float: right;
padding-right: 35px;
}
.input_box {
padding-top: 47px;
}
.input_box>ul>li>div:not(.code_block) {
margin: 6px 0px 6px 4px;
font-size: 12px;
height: 20px;
line-height: 20px;
}
.input_box>ul>li {
position: relative;
}
.input_box>ul>li>span {
background: url(../img/sign/icons.png) no-repeat -37px -38px;
position: absolute;
top: 8px;
right: -25px;
width: 20px;
height: 20px;
}
.input_box>ul>li>input {
outline: none;
width: 388px;
border-width: 1px;
border-style: solid;
border-radius: 2px;
color: #aaa;
font-size: 14px;
padding: 10px;
height: 18px;
vertical-align: middle;
border-radius: 4px;
}
.button_box {
margin-top: 10px;
}
.button_box>a {
display: inline-block;
height: 36px;
width: 184px;
border: 1px solid #ccc;
border-radius: 2px;
line-height: 38px;
font-size: 14px;
text-align: center;
transition: all .3s;
cursor: pointer;
}
#code {
display: inline-block;
width: 163px;
}
.code_block {
display: inline-block;
height: 40px;
position: absolute;
right: 49px;
cursor: pointer;
}
#code_error {
right: 200px;
}
.normal {
border-color: #ddd;
}
.normal+span {
display: none;
}
.error {
border-color: #f45d90;
}
.error+span{
display: block;
}
.mas_p {
color: #f45d90;
}
.submit_bnt {
border: 1px solid #0381aa;
color: #fff;
background-color: #00a7de;
margin-right: 34px;
}
.submit_bnt:hover {
background: #00bee7;
}
.log_bnt:hover {
background: #f7f7f7;
}
footer {
margin: 150px auto 20px;
width: 100%;
color: #99a2aa;
text-align: center;
font-size: 12px;
}
footer p {
border-top: lightskyblue solid 2px;
display: inline;
padding-top: 2px;
} | PropertySystem/css/sign.css | * {
margin: 0;
padding: 0;
}
body {
width: 100%;
color: #666;
}
header {
margin: 0 auto;
color: #222;
font-size: 12px;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
}
.wid_limit {
width: 980px;
}
.top_wrapper:after {
content:"";
display:block;
visibility:hidden;
clear:both;
height:0;
}
.up_box:after {
content:"";
display:block;
visibility:hidden;
clear:both;
height:0;
}
.top_nav {
position: relative;
height: 42px;
z-index: 200;
}
.center {
margin: 0 auto;
}
.mask {
position: absolute;
top: 0;
left: 0;
background: white;
height: 100%;
width: 100%;
box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.top_button {
display: inline;
float: left;
}
.top_button>div {
float: left;
text-align: center;
line-height: 42px;
height: 42px;
position: relative;
background-color: hsla(0,0%,100%,0);
transition: all .3s;
display: inline;
margin-left: -10px;
padding-left: 12px;
}
.top_button>div>a {
height: 100%;
display: block;
padding: 0 11px;
padding-left: 20px;
}
.top_button>div>a>i{
background-image: url(../img/icons.png);
position: absolute;
width: 17px;
height: 14px;
left: 10px;
top: 13px;
background-position: -919px -88px;
}
.up_button {
float: right;
position: relative;
width: 58px;
height: 42px;
}
.up_button>a {
display: block;
width: 100%;
height: 48px;
line-height: 42px;
text-align: center;
font-size: 14px;
color: #fff;
background-image: url(../img/up_button.png);
}
.up_button:hover .up_box {
display: block;
}
.up_box {
display: none;
position: absolute;
top: 57px;
border-radius: 0 0 4px 4px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,.16);
border: 1px solid #e5e9ef;
text-align: center;
font-size: 12px;
width: 144px;
margin-left: -87px;
}
.up_box li {
cursor: pointer;
text-align: center;
width: 72px;
height: 64px;
transition: .2s;
float: left;
position: relative;
background: #fff;
}
.up_box li:hover {
background: #e5e9ef;
}
.up_box i {
display: block;
width: 20px;
height: 20px;
margin: 15px auto 2px;
transition: .2s;
background-image: url(../img/icons.png);
}
.up_box li:hover i {
transform: translateY(-2px);
}
.up_box span {
color: #f25d8e;
}
.up_video i{
background-position: -471px -919px;
}
.up_manage i{
background-position: -471px -982px;
}
.top_img {
background: #00a0d8;
height: 86px;
margin-bottom: 20px;
text-align: center;
}
.div_line {
width: 980px;
height: 28px;
margin: 0 auto;
text-align: center;
border-bottom: 1px solid #ddd;
margin-bottom: 28px;
}
.div_line>span {
font-size: 38px;
background-color: white;
padding: 0 20px;
margin: 0 auto;
height: 56px;
line-height: 56px;
}
.main_part {
width: 980px;
position: relative;
height: 325px;
margin: 0 auto;
}
.left_part {
float: left;
width: 480px;
}
.left_part i {
position: absolute;
width: 70px;
height: 70px;
left: 160px;
top: 10px;
background: url(../img/tv.png) no-repeat;
}
.left_part_header {
padding-top: 72px;
}
.left_part_header>div {
width: 140px;
height: 140px;
margin: 0 auto;
position: relative;
}
.left_part_footer{
width: 480px;
height: 155px;
background: url(../img/sign/chara.png) 0 -7px no-repeat;
}
.left_part_footer>a>p:first-child {
padding-top: 20px;
text-align: center;
color: #222;
font-size: 18px;
letter-spacing: 3px;
margin-bottom: 5px;
}
.left_part_footer>a>p:last-child {
text-align: center;
color: #717171;
font-size: 14px;
transition: color .2s;
}
.left_part_footer>a:hover>p:last-child {
color: #f25d8e;
}
.mid_line {
margin: 0 0 0 50%;;
position: absolute;
top: 28px;
height: 300px;
border-right: 1px solid #ddd;
}
.right_part {
float: right;
padding-right: 35px;
}
.input_box {
padding-top: 47px;
}
.input_box>ul>li>div:not(.code_block) {
margin: 6px 0px 6px 4px;
font-size: 12px;
height: 20px;
line-height: 20px;
}
.input_box>ul>li {
position: relative;
}
.input_box>ul>li>span {
background: url(../img/sign/icons.png) no-repeat -37px -38px;
position: absolute;
top: 8px;
right: -25px;
width: 20px;
height: 20px;
}
.input_box>ul>li>input {
outline: none;
width: 388px;
border-width: 1px;
border-style: solid;
border-radius: 2px;
color: #aaa;
font-size: 14px;
padding: 10px;
height: 18px;
vertical-align: middle;
border-radius: 4px;
}
.button_box {
margin-top: 10px;
}
.button_box>a {
display: inline-block;
height: 36px;
width: 184px;
border: 1px solid #ccc;
border-radius: 2px;
line-height: 38px;
font-size: 14px;
text-align: center;
transition: all .3s;
cursor: pointer;
}
#code {
display: inline-block;
width: 163px;
}
.code_block {
display: inline-block;
height: 40px;
position: absolute;
right: 49px;
cursor: pointer;
}
#code_error {
right: 200px;
}
.normal {
border-color: #ddd;
}
.normal+span {
display: none;
}
.error {
border-color: #f45d90;
}
.error+span{
display: block;
}
.mas_p {
color: #f45d90;
}
.submit_bnt {
border: 1px solid #0381aa;
color: #fff;
background-color: #00a7de;
margin-right: 34px;
}
.submit_bnt:hover {
background: #00bee7;
}
.log_bnt:hover {
background: #f7f7f7;
}
footer {
margin: 150px auto 20px;
width: 100%;
color: #99a2aa;
text-align: center;
font-size: 12px;
}
footer p {
border-top: lightskyblue solid 2px;
display: inline;
padding-top: 2px;
} | 0.486819 | 0.114369 |
.mb10{margin-bottom:10px;}.mt10{margin-top:10px;}img{border:none;border:0;margin:0;padding:0;vertical-align:middle;}
.fl{float:left;}.fr{float:right;}.m-auto{margin:0 auto;}.cl{clear:both;}
/* 通用 */
/* 底部导航 */
.foohi{height:52px;}
.footer{left:0px;bottom:0px;width:100%;position:fixed;z-index:99999;border-top:1px solid #efefef;background:#fafbfe;}
.footer li{width:20%;float:left;padding:5px 0px;text-align:center;}.footer li a{display:block;}
.footer li img{height:24px;}
.footer li p{color:#888888;font-size:12px;line-height:16px;}
.footer .on p{color:#29a1f7;}
/* 顶部标题 */
.classreturnbox{height:47px;}
.classreturn{left:0px;top:0px;width:100%;position:fixed;z-index:99999;color:#111;background-color:#fff;border-bottom:1px solid #efefef;height:46px;line-height:46px;}
.classreturn .return{position:absolute;left:10px;}
.classreturn .return a{overflow:hidden;display:block;}
.classreturn .return a img{width:24px;height:24px;}
.classreturn .tit{font-size:18px;padding-left:42px;}
.classreturn .nav_menu{position:absolute;right:15px;}
.classreturn .nav_menu a{display:block;color:#999;}
.classreturn .nav_menu img{width:24px;}
.classreturn .ds-in-bl{display:inline-block;vertical-align:middle;*vertical-align:auto;*zoom:1;*display:inline;}
/* 首页 */
/* 理财项目列表 */
.tier{position:relative;text-decoration: none;color: black;margin-bottom:10px;display: inline-block;width: 100%;background-color: #fff;}
.tier .img-box img{width:100%;height:50vw;}
.tier .info-box{ padding:5px;font-size:3vw;position:relative; /* box-sizing:border-box;border:1px solid #e7e7e7;border-radius:3px; */ }
.tier .info-box .over{display:block;position:absolute;right:10px;bottom:10px;width:100px;height:100px;}
.tier .ib-head {padding:1px 0px 6px 0;font-size: 4.3vw;border-bottom: 1px solid #e7e7e7;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.tier .ib-head .index {background: #54a500;width: 7vw;height: 7vw;display: inline-block;text-align: center;line-height: 7vw;color: white;border-radius: 3.5vw;margin: 0px 2vw;}
.tier .ib-doc {font-size: 4.3vw;border-bottom: 1px solid #e7e7e7;padding: 5vw 4vw;}
.tier .ib-body {display: flex;justify-content: space-between;text-align: center;padding: 0px 4vw;}
.tier .ib-body .red {color: #dc4c43;font-size: 5vw;}
.tier .ib-body .cl-3 {padding: 1.5vw 0px;}
.tier .ib-body .cl-3 p{margin: 1vw 0px;}
.tier .ib-foot {padding: 0px 4vw;display: flex;justify-content: space-between;}
.tier .ib-foot p {color: #ccc6c6;margin: 0.5vw 0px;font-size: 3.5vw;}
.tier .ib-foot .now-btn {margin-top: 1vw;background: #108ee9;border: none;color: white;font-size: 3.5vw;width: 25vw;height: 8vw;border-radius: 1vw;}
.tier .plan {display: flex;font-size: 3vw;padding: 0px 4vw;align-items: center;color: #666666c9;justify-content: space-between;}
.tier .plan-wrap {width: 56vw;height: 0.9vw;border-radius: 0.45vw;background: #e7e7e7;}
.tier .plan-con {height: 100%;border-radius: 0.45vw;background: #108ee9;}
.tier .plan-text {margin-left: 0.5vw;font-size: 4.5vw;}
/* 理财项目详情 */
.details_top{padding:10px 15px 10px 15px;background:#ffffff;}
.details_top .cover{width:100%;height:50vw;display:block;margin:6px 0 0 0;}
.details_top h1{font-size:20px;font-weight:400;padding:6px 0;}
.details_top ul li{border-top:1px solid #efefef;padding:10px 0;font-size:16px;color:#333;line-height:1.5;}
.details_top ul li .inner{padding:6px 15px;background:#f5f5f5;display:-webkit-flex;display:flex;justify-content:space-between;}
.details_top ul li .inner .span1{display:block;line-height:1.8;color:#000;font-size:14px;text-align:center;}
.details_top ul li .inner .span2{display:block;line-height:1.8;font-size:16px;color:#999;text-align:center;}
.details_top ul li .inner p i{font-style:normal;color:#dc4c43;font-size:18px;}
.progressBox1{background:#e7e7e7;height:20px;border-radius:5px;margin-top:10px;position:relative;}
.progressBox1 .progress1{height:100%;background:#108ee9;border-radius:5px;}
.progressNum1{position:absolute;color:#ffffff;font-size:14px;left:4px;top:0px;}
.tab-pane .table{border-collapse:collapse;width:100%;border-top:1px solid #333;border-left:1px solid #333;}
.tab-pane .table td{padding:8px 10px;line-height:1.5;color:#666;font-size:16px;border-right:1px solid #333;border-bottom:1px solid #333;vertical-align:middle;}
.tab-pane .table tr td:first-child{width:30%;text-align:center;}
.tab-pane .table td span{color:#000;font-size:16px;}
.tab-pane .table td i{font-style:normal;font-size:16px;color:red;}
.daoxu{direction:rtl;unicode-bidi:bidi-override;} | public/css/mobile/style.css | .mb10{margin-bottom:10px;}.mt10{margin-top:10px;}img{border:none;border:0;margin:0;padding:0;vertical-align:middle;}
.fl{float:left;}.fr{float:right;}.m-auto{margin:0 auto;}.cl{clear:both;}
/* 通用 */
/* 底部导航 */
.foohi{height:52px;}
.footer{left:0px;bottom:0px;width:100%;position:fixed;z-index:99999;border-top:1px solid #efefef;background:#fafbfe;}
.footer li{width:20%;float:left;padding:5px 0px;text-align:center;}.footer li a{display:block;}
.footer li img{height:24px;}
.footer li p{color:#888888;font-size:12px;line-height:16px;}
.footer .on p{color:#29a1f7;}
/* 顶部标题 */
.classreturnbox{height:47px;}
.classreturn{left:0px;top:0px;width:100%;position:fixed;z-index:99999;color:#111;background-color:#fff;border-bottom:1px solid #efefef;height:46px;line-height:46px;}
.classreturn .return{position:absolute;left:10px;}
.classreturn .return a{overflow:hidden;display:block;}
.classreturn .return a img{width:24px;height:24px;}
.classreturn .tit{font-size:18px;padding-left:42px;}
.classreturn .nav_menu{position:absolute;right:15px;}
.classreturn .nav_menu a{display:block;color:#999;}
.classreturn .nav_menu img{width:24px;}
.classreturn .ds-in-bl{display:inline-block;vertical-align:middle;*vertical-align:auto;*zoom:1;*display:inline;}
/* 首页 */
/* 理财项目列表 */
.tier{position:relative;text-decoration: none;color: black;margin-bottom:10px;display: inline-block;width: 100%;background-color: #fff;}
.tier .img-box img{width:100%;height:50vw;}
.tier .info-box{ padding:5px;font-size:3vw;position:relative; /* box-sizing:border-box;border:1px solid #e7e7e7;border-radius:3px; */ }
.tier .info-box .over{display:block;position:absolute;right:10px;bottom:10px;width:100px;height:100px;}
.tier .ib-head {padding:1px 0px 6px 0;font-size: 4.3vw;border-bottom: 1px solid #e7e7e7;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.tier .ib-head .index {background: #54a500;width: 7vw;height: 7vw;display: inline-block;text-align: center;line-height: 7vw;color: white;border-radius: 3.5vw;margin: 0px 2vw;}
.tier .ib-doc {font-size: 4.3vw;border-bottom: 1px solid #e7e7e7;padding: 5vw 4vw;}
.tier .ib-body {display: flex;justify-content: space-between;text-align: center;padding: 0px 4vw;}
.tier .ib-body .red {color: #dc4c43;font-size: 5vw;}
.tier .ib-body .cl-3 {padding: 1.5vw 0px;}
.tier .ib-body .cl-3 p{margin: 1vw 0px;}
.tier .ib-foot {padding: 0px 4vw;display: flex;justify-content: space-between;}
.tier .ib-foot p {color: #ccc6c6;margin: 0.5vw 0px;font-size: 3.5vw;}
.tier .ib-foot .now-btn {margin-top: 1vw;background: #108ee9;border: none;color: white;font-size: 3.5vw;width: 25vw;height: 8vw;border-radius: 1vw;}
.tier .plan {display: flex;font-size: 3vw;padding: 0px 4vw;align-items: center;color: #666666c9;justify-content: space-between;}
.tier .plan-wrap {width: 56vw;height: 0.9vw;border-radius: 0.45vw;background: #e7e7e7;}
.tier .plan-con {height: 100%;border-radius: 0.45vw;background: #108ee9;}
.tier .plan-text {margin-left: 0.5vw;font-size: 4.5vw;}
/* 理财项目详情 */
.details_top{padding:10px 15px 10px 15px;background:#ffffff;}
.details_top .cover{width:100%;height:50vw;display:block;margin:6px 0 0 0;}
.details_top h1{font-size:20px;font-weight:400;padding:6px 0;}
.details_top ul li{border-top:1px solid #efefef;padding:10px 0;font-size:16px;color:#333;line-height:1.5;}
.details_top ul li .inner{padding:6px 15px;background:#f5f5f5;display:-webkit-flex;display:flex;justify-content:space-between;}
.details_top ul li .inner .span1{display:block;line-height:1.8;color:#000;font-size:14px;text-align:center;}
.details_top ul li .inner .span2{display:block;line-height:1.8;font-size:16px;color:#999;text-align:center;}
.details_top ul li .inner p i{font-style:normal;color:#dc4c43;font-size:18px;}
.progressBox1{background:#e7e7e7;height:20px;border-radius:5px;margin-top:10px;position:relative;}
.progressBox1 .progress1{height:100%;background:#108ee9;border-radius:5px;}
.progressNum1{position:absolute;color:#ffffff;font-size:14px;left:4px;top:0px;}
.tab-pane .table{border-collapse:collapse;width:100%;border-top:1px solid #333;border-left:1px solid #333;}
.tab-pane .table td{padding:8px 10px;line-height:1.5;color:#666;font-size:16px;border-right:1px solid #333;border-bottom:1px solid #333;vertical-align:middle;}
.tab-pane .table tr td:first-child{width:30%;text-align:center;}
.tab-pane .table td span{color:#000;font-size:16px;}
.tab-pane .table td i{font-style:normal;font-size:16px;color:red;}
.daoxu{direction:rtl;unicode-bidi:bidi-override;} | 0.19129 | 0.046616 |
.dropdown-toggle.active-dropdown::after {
transform: rotate(-90deg);
}
/*=-====Bootstrapthemes.co btco-hover-menu=====*/
.navbar-light .navbar-nav .nav-link {
color: #fff;
}
.navbar-light .navbar-nav .nav-link:hover{
color: #fff;
}
.navbar-light .navbar-nav .nav-link:focus{
color: #fff;
}
.btco-hover-menu a , .navbar > li > a {
text-transform: capitalize;
padding: 8px 15px;
color: #fff;
font-size: 13px;
}
.btco-hover-menu .active a,
.btco-hover-menu .active a:focus,
.btco-hover-menu .active a:hover,
.btco-hover-menu li a:hover,
.btco-hover-menu li a:focus ,
.navbar>.show>a, .navbar>.show>a:focus, .navbar>.show>a:hover{
color: #fff;
background: transparent;
outline: 0;
}
/*submenu style start from here*/
.dropdown-menu {
padding: 0px;
margin: 0 0 0;
border: 0px solid transition !important;
border-radius: 0px;
-webkit-box-shadow: none !important;
box-shadow: none !important;
color: #fff;
border-top: 2px solid #4cd137;
}
.navbar-light .navbar-nav .show>.nav-link {
color: #fff;
}
/*first level*/
.btco-hover-menu .collapse ul > li:hover > a{background: #4cd137; }
.btco-hover-menu .collapse ul ul > li:hover > a, .navbar .show .dropdown-menu > li > a:focus, .navbar .show .dropdown-menu > li > a:hover{background: #4cd137; color: #fff; }
/*second level*/
.btco-hover-menu .collapse ul ul ul > li:hover > a{background: #4cd137; }
/*third level*/
.btco-hover-menu .collapse ul ul, .btco-hover-menu .collapse ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
.btco-hover-menu .collapse ul ul ul, .btco-hover-menu .collapse ul ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
.btco-hover-menu .collapse ul ul ul ul, .btco-hover-menu .collapse ul ul ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
/*Drop-down menu work on hover*/
.btco-hover-menu{background: none;margin: 0;padding: 0;min-height:20px}
@media only screen and (max-width: 991px) {
.btco-hover-menu .show > .dropdown-toggle::after{
transform: rotate(-90deg);
}
}
@media only screen and (min-width: 991px) {
.btco-hover-menu .collapse ul li{position:relative;}
.btco-hover-menu .collapse ul li:hover> ul{display:block}
.btco-hover-menu .collapse ul ul{position:absolute;top:100%;left:0;min-width:250px;display:none}
/*******/
.btco-hover-menu .collapse ul ul li{position:relative}
.btco-hover-menu .collapse ul ul li:hover> ul{display:block}
.btco-hover-menu .collapse ul ul ul{position:absolute;top:0;left:100%;min-width:250px;display:none}
/*******/
.btco-hover-menu .collapse ul ul ul li{position:relative}
.btco-hover-menu .collapse ul ul ul li:hover ul{display:block}
.btco-hover-menu .collapse ul ul ul ul{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}
} | public/Frontends/css/bootstrap-4-navbar.css | .dropdown-toggle.active-dropdown::after {
transform: rotate(-90deg);
}
/*=-====Bootstrapthemes.co btco-hover-menu=====*/
.navbar-light .navbar-nav .nav-link {
color: #fff;
}
.navbar-light .navbar-nav .nav-link:hover{
color: #fff;
}
.navbar-light .navbar-nav .nav-link:focus{
color: #fff;
}
.btco-hover-menu a , .navbar > li > a {
text-transform: capitalize;
padding: 8px 15px;
color: #fff;
font-size: 13px;
}
.btco-hover-menu .active a,
.btco-hover-menu .active a:focus,
.btco-hover-menu .active a:hover,
.btco-hover-menu li a:hover,
.btco-hover-menu li a:focus ,
.navbar>.show>a, .navbar>.show>a:focus, .navbar>.show>a:hover{
color: #fff;
background: transparent;
outline: 0;
}
/*submenu style start from here*/
.dropdown-menu {
padding: 0px;
margin: 0 0 0;
border: 0px solid transition !important;
border-radius: 0px;
-webkit-box-shadow: none !important;
box-shadow: none !important;
color: #fff;
border-top: 2px solid #4cd137;
}
.navbar-light .navbar-nav .show>.nav-link {
color: #fff;
}
/*first level*/
.btco-hover-menu .collapse ul > li:hover > a{background: #4cd137; }
.btco-hover-menu .collapse ul ul > li:hover > a, .navbar .show .dropdown-menu > li > a:focus, .navbar .show .dropdown-menu > li > a:hover{background: #4cd137; color: #fff; }
/*second level*/
.btco-hover-menu .collapse ul ul ul > li:hover > a{background: #4cd137; }
/*third level*/
.btco-hover-menu .collapse ul ul, .btco-hover-menu .collapse ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
.btco-hover-menu .collapse ul ul ul, .btco-hover-menu .collapse ul ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
.btco-hover-menu .collapse ul ul ul ul, .btco-hover-menu .collapse ul ul ul ul.dropdown-menu{background:rgb(15, 17, 18,0.9);}
/*Drop-down menu work on hover*/
.btco-hover-menu{background: none;margin: 0;padding: 0;min-height:20px}
@media only screen and (max-width: 991px) {
.btco-hover-menu .show > .dropdown-toggle::after{
transform: rotate(-90deg);
}
}
@media only screen and (min-width: 991px) {
.btco-hover-menu .collapse ul li{position:relative;}
.btco-hover-menu .collapse ul li:hover> ul{display:block}
.btco-hover-menu .collapse ul ul{position:absolute;top:100%;left:0;min-width:250px;display:none}
/*******/
.btco-hover-menu .collapse ul ul li{position:relative}
.btco-hover-menu .collapse ul ul li:hover> ul{display:block}
.btco-hover-menu .collapse ul ul ul{position:absolute;top:0;left:100%;min-width:250px;display:none}
/*******/
.btco-hover-menu .collapse ul ul ul li{position:relative}
.btco-hover-menu .collapse ul ul ul li:hover ul{display:block}
.btco-hover-menu .collapse ul ul ul ul{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}
} | 0.256646 | 0.042068 |
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?xxm147');
src: url('fonts/icomoon.eot?xxm147#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?xxm147') format('truetype'),
url('fonts/icomoon.woff?xxm147') format('woff'),
url('fonts/icomoon.svg?xxm147#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-squareClose:before {
content: "\e901";
}
.icon-menu2:before {
content: "\e900";
}
.icon-download:before {
content: "\e92e";
}
.icon-bill2:before {
content: "\e92f";
}
.icon-check:before {
content: "\e930";
}
.icon-close:before {
content: "\e931";
}
.icon-comment-minus:before {
content: "\e932";
}
.icon-contact:before {
content: "\e933";
}
.icon-bill:before {
content: "\e934";
}
.icon-direction:before {
content: "\e935";
}
.icon-customer:before {
content: "\e936";
}
.icon-back:before {
content: "\e937";
}
.icon-direction2:before {
content: "\e938";
}
.icon-comment-plus:before {
content: "\e939";
}
.icon-discover:before {
content: "\e93a";
}
.icon-contract:before {
content: "\e93b";
}
.icon-add:before {
content: "\e93c";
}
.icon-circle-close:before {
content: "\e93d";
}
.icon-add-user:before {
content: "\e93e";
}
.icon-capture:before {
content: "\e93f";
}
.icon-camera:before {
content: "\e940";
}
.icon-edit:before {
content: "\e941";
}
.icon-document:before {
content: "\e942";
}
.icon-chat:before {
content: "\e943";
}
.icon-calendar:before {
content: "\e944";
}
.icon-biometric:before {
content: "\e945";
}
.icon-eye:before {
content: "\e946";
}
.icon-group-user:before {
content: "\e947";
}
.icon-home-2:before {
content: "\e948";
}
.icon-home:before {
content: "\e949";
}
.icon-info:before {
content: "\e94a";
}
.icon-key:before {
content: "\e94b";
}
.icon-list:before {
content: "\e94c";
}
.icon-logout:before {
content: "\e94d";
}
.icon-loval-cus:before {
content: "\e94e";
}
.icon-menu:before {
content: "\e94f";
}
.icon-money:before {
content: "\e950";
}
.icon-notification:before {
content: "\e951";
}
.icon-password:before {
content: "\<PASSWORD>";
}
.icon-phone_calling:before {
content: "\e953";
}
.icon-photo:before {
content: "\e954";
}
.icon-production:before {
content: "\e955";
}
.icon-promotion:before {
content: "\e956";
}
.icon-promotion2:before {
content: "\e957";
}
.icon-retry:before {
content: "\e958";
}
.icon-share:before {
content: "\e959";
}
.icon-slide:before {
content: "\e95a";
}
.icon-swap:before {
content: "\e95b";
} | src/Components/Icons/demoIcon/style.css | @font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?xxm147');
src: url('fonts/icomoon.eot?xxm147#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?xxm147') format('truetype'),
url('fonts/icomoon.woff?xxm147') format('woff'),
url('fonts/icomoon.svg?xxm147#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-squareClose:before {
content: "\e901";
}
.icon-menu2:before {
content: "\e900";
}
.icon-download:before {
content: "\e92e";
}
.icon-bill2:before {
content: "\e92f";
}
.icon-check:before {
content: "\e930";
}
.icon-close:before {
content: "\e931";
}
.icon-comment-minus:before {
content: "\e932";
}
.icon-contact:before {
content: "\e933";
}
.icon-bill:before {
content: "\e934";
}
.icon-direction:before {
content: "\e935";
}
.icon-customer:before {
content: "\e936";
}
.icon-back:before {
content: "\e937";
}
.icon-direction2:before {
content: "\e938";
}
.icon-comment-plus:before {
content: "\e939";
}
.icon-discover:before {
content: "\e93a";
}
.icon-contract:before {
content: "\e93b";
}
.icon-add:before {
content: "\e93c";
}
.icon-circle-close:before {
content: "\e93d";
}
.icon-add-user:before {
content: "\e93e";
}
.icon-capture:before {
content: "\e93f";
}
.icon-camera:before {
content: "\e940";
}
.icon-edit:before {
content: "\e941";
}
.icon-document:before {
content: "\e942";
}
.icon-chat:before {
content: "\e943";
}
.icon-calendar:before {
content: "\e944";
}
.icon-biometric:before {
content: "\e945";
}
.icon-eye:before {
content: "\e946";
}
.icon-group-user:before {
content: "\e947";
}
.icon-home-2:before {
content: "\e948";
}
.icon-home:before {
content: "\e949";
}
.icon-info:before {
content: "\e94a";
}
.icon-key:before {
content: "\e94b";
}
.icon-list:before {
content: "\e94c";
}
.icon-logout:before {
content: "\e94d";
}
.icon-loval-cus:before {
content: "\e94e";
}
.icon-menu:before {
content: "\e94f";
}
.icon-money:before {
content: "\e950";
}
.icon-notification:before {
content: "\e951";
}
.icon-password:before {
content: "\<PASSWORD>";
}
.icon-phone_calling:before {
content: "\e953";
}
.icon-photo:before {
content: "\e954";
}
.icon-production:before {
content: "\e955";
}
.icon-promotion:before {
content: "\e956";
}
.icon-promotion2:before {
content: "\e957";
}
.icon-retry:before {
content: "\e958";
}
.icon-share:before {
content: "\e959";
}
.icon-slide:before {
content: "\e95a";
}
.icon-swap:before {
content: "\e95b";
} | 0.297368 | 0.084568 |
@charset "UTF-8";
.header,
.link {
font-size: 12px
}
* {
margin: 0;
padding: 0
}
body,
html {
font-family: "黑体", "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #f7f7f7
}
li,
ul {
list-style: none
}
a,
a:focus,
a:hover,
a:visited {
text-decoration: none
}
.fl {
float: left
}
.fr,
.nav .navDiv {
float: right
}
.link {
color: #f19072
}
.cl-fix:before {
content: '';
display: table
}
.cl-fix:after {
display: block;
clear: both;
content: "";
overflow: auto
}
.cl-fix {
zoom: 1
}
.indexTop,
.seriesWrap {
width: 100%;
margin-bottom: 80px;
}
.header {
width: 100%;
height: 40px;
line-height: 40px;
background: #f19072;
color: #fff
}
.header .topLogo {
position: absolute;
left: 0;
top: 0
}
.header .topLogo img {
width: 110px
}
.header a,
.header a:focus,
.header a:hover,
.header a:visited {
display: block;
float: right
}
.error {
position: fixed
}
.footer,
.footer .footIntroName a,
.footer .footIntroName a:focus,
.footer .footIntroName a:hover,
.footer .footIntroName a:visited,
.footer .footTypeName a,
.footer .footTypeName a:focus,
.footer .footTypeName a:hover,
.footer .footTypeName a:visited {
font-size: 14px;
}
.footer {
width: 100%;
margin: 0 auto;
background: #f19072
}
.error {
width: 100%;
text-align: center
}
.error {
font-size: 12px;
bottom: 0;
display: none;
left: 0
}
.swiper-pagination-bullet-active {
opacity: 1;
background: #f19072
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
bottom: 30px
}
body {
background: #fff
}
.navbar-img img{
width: 230px;
height: 34px;
margin-top: 30px;
margin-left: 10%;
}
.navbar-t{
margin-top: 46px;
}
.nav-top{
margin: 31px 45px;
}
.nav-text>a{
font-family: PingFangSC-Regular;
font-size: 18px;
color: #3D3E46;
letter-spacing: 0;
background-color: #FFFFFF;
}
.row-nav{
width: 100%;
margin: 0;
margin-bottom: 80px;
}
.row-nav a{
display: block;
height: 259px;
width: 100%;
float: left;
}
.row-nav a:link,.row-nav a:focus{
background-color: #F7F8F9;
color: #000000;
}
.row-nav a:hover,
.row-nav a:active{
background-color: #EEF0F2;
color: #000000;
}
.col-div{
/* width: 25%; */
height: 259px;
background-color:#F7F8F9;
padding: 0;
border-bottom: 1px solid #EEF0f9;
}
.col-content a{
width: 25%;
height: 259px;
}
.col-content a:hover{
background-color:#EEF0F2;
}
.col-content{
padding-top: 60px;
margin-left: 64px;
margin-right: 40px;
}
.row .rou-img img{
width: 50px;
height: 50px;
margin-bottom: 35px;
}
.content img{
width: 100%;
}
.btn-load{
width: 234px;
height: 52px;
background-color: #0CBDA4;
display: block;
margin: 0px auto 30px;
margin-top: 60px;
color: #ffffff;
border-radius: 0;
}
.join-customer{
margin-top: 60px;
}
.join-customer .text-hearder,
.discuss .text-hearder{
font-size: 32px;
}
.join-customer .text-carbon,
.discuss .text-carbon{
font-size: 16px;
color: #686A73;
}
.join-customer ul li{
display: inline-block;
float: left;
margin: 15px 0;
}
.join-icon img{
width: 90px;
height: 40px;
margin: 15px 36px;
}
.join-ul,.from-cust{
/*width: 850px;*/
margin: 0 auto;
}
.discuss{
padding-top:30px;
clear: both;
background-color: #EEF0F2;
padding-bottom: 60px;
width: 100%;
}
.form-custom{
height: 25px;
width: 190px;
border-radius: 0;
}
.form-mar{
margin: 30px 15px;
}
.form-wid{
width: 90%;
}
.btn-submit{
width: 170px;
height: 25px;
background-color: #0CBDA4;
border-radius: 0;
margin: 0 auto;
text-align: center;
}
.footer{
width: 100%;
/* height: 140px; */
color: #FFFFFF;
background-color: #353947;
/* padding-bottom: 60px; */
}
.row-footer{
padding-top: 40px;
}
.row-footer img{
width: 120px;
}
.text-left{
margin-left: 30px;
}
.text-footercon{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0;
}
.text-foothearder{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0;
}
.footer-top{
margin-bottom: 20px;
}
@media (min-width:800px) and (max-width:2000px) {
.content-img{
width: 50%!important;
float: left!important;
}
.content-img-l{
padding: 15px 30px 15px 0!important;
}
.content-img-r{
padding: 15px 0px 15px 30px!important;
}
}
/*about页面*/
.aboutindexTop img{
width: 100%;
height: auto;
/* margin-bottom: 15px; */
}
.about-contert-p{
width: 80%;
margin-left: 10%;
margin-top: 5%;
}
.about-conter-head{
color: #686A73;
}
.about-conter-con{
font-family: Barlow-SemiBold;
font-size: 18px;
color: #3D3E46;
}
@media (min-width:800px) and (max-width:2000px) {
.about-conter-r{
margin-top: 60px!important;
padding-left: 60px!important;;
}
}
/*case页面*/
.case-nav{
margin: 30px 0 20px 0;
}
.case-nav-btn{
border-radius: 0;
}
.case-nav-btn:focus,
.case-nav-btn:hover,
.case-nav-btn:active{
color:#FFFFFF;
background-color: #0CBDA4;
border-color:#0CBDA4 ;
}
.case-nav-btn{
background-color: #EEF0F2;
font-family: PingFangSC-Regular;
font-size: 16px;
color: #3D3E46;
letter-spacing: 0;
text-align: center;
border-color:#EEF0F2;
/* margin-bottom: 10px; */
height: 46px;
line-height: 46px;
padding: 0 10px;
}
.case-pagination{
margin: 20px auto;
text-align: center;
}
.case-pagination>ul>li:first-child>a{
border-radius: 0;
}
.case-pagination>ul>li:last-child>a{
border-radius: 0;
}
.case-pagination>ul>li>a{
color: #3D3E46;
background-color: #EEF0F2;
border: 0;
margin: 10px;
display: block;
width: 46px;
height: 46px;
padding: 0;
line-height: 46px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
z-index: 2;
color: #fff;
cursor: default;
background-color: #0cbda4;
display: block;
width: 46px;
height: 46px;
font-size: 16px;
padding: 0;
line-height: 46px;
}
.case-pagination>ul>li>a:focus,
.case-pagination>ul>li>a:hover{
color: #FFFFFF;
background-color: #0CBDA4;
}
/*案例详情页*/
.details-content{
width: 80%;
margin: 60px auto;
}
.details-content-p{
font-family: PingFangSC-Regular;
font-size: 3rem;
color: #3D3E46;
letter-spacing: 0;
line-height: 60px;
}
.details-text-head{
font-size: 20px;
color: #3D3E46;
letter-spacing: 0;
}
.details-text-det{
font-size: 14px;
color: #686A73;
letter-spacing: 0;
line-height: 26px;
}
.detaila-img{
width: 80%;
margin: 0 auto;
}
.detaila-img img{
width: 100%;
margin-bottom: 60px;
}
.details-cont{
width: 80%;
padding-bottom: 60px;
margin: 0 auto;
}
/*服务*/
@media (min-width:800px) and (max-width:2000px) {
.service-img{
width: 70%!important;
}
}
.service-img{
width: 80%;
overflow: hidden;
margin: 0 auto;
}
.service-img img{
width: 100%;
}
.service-img-pc-fl{
float:left;
position: absolute;
}
.service-img-pc-fr{
float:right;
}
.service-img-pc-fr:first-child{
margin-top: 80px;
}
.service-img-pc-fl:first-child{
margin-top: 180px;
/* position: absolute; */
}
.service-img-pc-fr-s,
.service-img-pc-fl-s{
width:440px;
height: 400px;
background-color: #EEF0F2;
margin-top: 60px;
position: relative;
}
.service-img-pc-fr-b,
.service-img-pc-fl-b{
width: 440px;
height: 500px;
background-color: #F7F8F9;
margin-top: 60px;
position: relative;
}
.service-img-pc-p-header{
font-size: 22px;
color: #3D3E46;
letter-spacing: 0;
margin: 60px 0 20px 50px;
}
.service-img-pc-p-det{
font-size: 16px;
color: #686A73;
letter-spacing: 0;
margin-left: 50px;
margin-right: 100px;
}
.service-img-pc-number{
float: right;
font-family: Barlow-SemiBold;
font-size: 30px;
color: #3D3E46;
letter-spacing: 0;
bottom: 30px;
right: 20px;
position: absolute;
}
.service-conter{
width: 100%;
overflow: hidden;
}
.service-conter-ri,
.service-conter-le{
width: 50%;
background-color: red;
float: left;
}
.service-move img,
.service-conter img{
width: 100%;
}
.service-move{
width: 90%;
overflow: hidden;
margin: 0 auto;
}
.service-img-move-b{
width: 100%;
height: 500px;
background-color: #F7F8F9;
position: relative;
}
.service-img-move-s{
width: 100%;
height: 450px;
background-color: #EEF0F2;
position: relative;
}
.service-img-move-s,
.service-img-move-b{
margin-top: 60px;
}
/*轮播页面*/
.banner-head{
width: 100%;
height: 76px;
margin-bottom: 14px;
}
.banner-head img{
margin-top: 20px;
width: 66%;
text-align: center;
margin-left: 16px;
}
.banner-banner a{
display: block;
width: 90%;
height: 110px;
margin: 0 auto;
margin-bottom: 40px;
background-color: #FFFFFF;
opacity: 0.5;
z-index: 9999;
}
.banner-banner a:hover{
opacity: 1;
}
.banner-banner a img{
width: 100%;
}
/*首页*/
.index-cust{
width: 50%;
overflow: hidden;
margin: 0 auto;
}
@media screen and (max-width: 1200px) { /*当屏幕尺寸小于1200px时,应用下面的CSS样式*/
.index-cust {
width: 90%!important;
}
}
@media screen and (max-width: 667px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.index-cust {
width: 320px!important;
margin: 0 auto;
}
.navbar-img img{
width: 160px!important;
}
}
.index-customer{
width: 100px;
height: 60px;
margin: 20px 30px;
float:left;
}
.index-customer img{
width: 100%;
overflow: hidden;
}
.indeximg a:hover img{
width: 100%;
overflow: hidden;
transform: scale(1.4, 1.4);
}
.indeximg a{
display: block;
width: 100%;
overflow: hidden;
}
/*图片左右飞入*/
.imgAnimationl{
width: 100%;
animation-name: imgAnimationl;
animation: imgAnimationl 2s alternate;
-webkit-animation: imgAnimationl 2s alternate ;
-moz-animation: imgAnimationl 2s alternate infinite;
}
@-webkit-keyframes imgAnimationl{
0%{ margin-top: 198px;}
100%{ top: 0px; left: 0px;}
}
.imgAnimationr{
width: 100%;
animation-name: imgAnimationr;
animation: imgAnimationr 2s alternate;
-webkit-animation: imgAnimationr 2s alternate ;
-moz-animation: imgAnimationr 2s alternate infinite;
}
@-webkit-keyframes imgAnimationr{
0%{ margin-left: 198px;}
100%{ top: 0px; right: 0px;}
}
@media (max-width: 800px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.case-pagination-pc,.hidden-xs1{
display: none!important;
}
.yidongliubai{
padding: 0 30px;
}
h5{
margin-bottom: 40px;
}
}
@media (min-width: 800px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.hidden-xs2,.btn-load{
display: none!important;
}
.footer-pc{
padding-left: 15%!important;
}
}
.nav-top a{
font-size: 18px;
color: #3D3E46;
letter-spacing: 0;
}
@media (max-width: 700px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.case-nav a{
margin: 10px auto;
}
} | public/static/epock/css/static/case.css | @charset "UTF-8";
.header,
.link {
font-size: 12px
}
* {
margin: 0;
padding: 0
}
body,
html {
font-family: "黑体", "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #f7f7f7
}
li,
ul {
list-style: none
}
a,
a:focus,
a:hover,
a:visited {
text-decoration: none
}
.fl {
float: left
}
.fr,
.nav .navDiv {
float: right
}
.link {
color: #f19072
}
.cl-fix:before {
content: '';
display: table
}
.cl-fix:after {
display: block;
clear: both;
content: "";
overflow: auto
}
.cl-fix {
zoom: 1
}
.indexTop,
.seriesWrap {
width: 100%;
margin-bottom: 80px;
}
.header {
width: 100%;
height: 40px;
line-height: 40px;
background: #f19072;
color: #fff
}
.header .topLogo {
position: absolute;
left: 0;
top: 0
}
.header .topLogo img {
width: 110px
}
.header a,
.header a:focus,
.header a:hover,
.header a:visited {
display: block;
float: right
}
.error {
position: fixed
}
.footer,
.footer .footIntroName a,
.footer .footIntroName a:focus,
.footer .footIntroName a:hover,
.footer .footIntroName a:visited,
.footer .footTypeName a,
.footer .footTypeName a:focus,
.footer .footTypeName a:hover,
.footer .footTypeName a:visited {
font-size: 14px;
}
.footer {
width: 100%;
margin: 0 auto;
background: #f19072
}
.error {
width: 100%;
text-align: center
}
.error {
font-size: 12px;
bottom: 0;
display: none;
left: 0
}
.swiper-pagination-bullet-active {
opacity: 1;
background: #f19072
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
bottom: 30px
}
body {
background: #fff
}
.navbar-img img{
width: 230px;
height: 34px;
margin-top: 30px;
margin-left: 10%;
}
.navbar-t{
margin-top: 46px;
}
.nav-top{
margin: 31px 45px;
}
.nav-text>a{
font-family: PingFangSC-Regular;
font-size: 18px;
color: #3D3E46;
letter-spacing: 0;
background-color: #FFFFFF;
}
.row-nav{
width: 100%;
margin: 0;
margin-bottom: 80px;
}
.row-nav a{
display: block;
height: 259px;
width: 100%;
float: left;
}
.row-nav a:link,.row-nav a:focus{
background-color: #F7F8F9;
color: #000000;
}
.row-nav a:hover,
.row-nav a:active{
background-color: #EEF0F2;
color: #000000;
}
.col-div{
/* width: 25%; */
height: 259px;
background-color:#F7F8F9;
padding: 0;
border-bottom: 1px solid #EEF0f9;
}
.col-content a{
width: 25%;
height: 259px;
}
.col-content a:hover{
background-color:#EEF0F2;
}
.col-content{
padding-top: 60px;
margin-left: 64px;
margin-right: 40px;
}
.row .rou-img img{
width: 50px;
height: 50px;
margin-bottom: 35px;
}
.content img{
width: 100%;
}
.btn-load{
width: 234px;
height: 52px;
background-color: #0CBDA4;
display: block;
margin: 0px auto 30px;
margin-top: 60px;
color: #ffffff;
border-radius: 0;
}
.join-customer{
margin-top: 60px;
}
.join-customer .text-hearder,
.discuss .text-hearder{
font-size: 32px;
}
.join-customer .text-carbon,
.discuss .text-carbon{
font-size: 16px;
color: #686A73;
}
.join-customer ul li{
display: inline-block;
float: left;
margin: 15px 0;
}
.join-icon img{
width: 90px;
height: 40px;
margin: 15px 36px;
}
.join-ul,.from-cust{
/*width: 850px;*/
margin: 0 auto;
}
.discuss{
padding-top:30px;
clear: both;
background-color: #EEF0F2;
padding-bottom: 60px;
width: 100%;
}
.form-custom{
height: 25px;
width: 190px;
border-radius: 0;
}
.form-mar{
margin: 30px 15px;
}
.form-wid{
width: 90%;
}
.btn-submit{
width: 170px;
height: 25px;
background-color: #0CBDA4;
border-radius: 0;
margin: 0 auto;
text-align: center;
}
.footer{
width: 100%;
/* height: 140px; */
color: #FFFFFF;
background-color: #353947;
/* padding-bottom: 60px; */
}
.row-footer{
padding-top: 40px;
}
.row-footer img{
width: 120px;
}
.text-left{
margin-left: 30px;
}
.text-footercon{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0;
}
.text-foothearder{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 0;
}
.footer-top{
margin-bottom: 20px;
}
@media (min-width:800px) and (max-width:2000px) {
.content-img{
width: 50%!important;
float: left!important;
}
.content-img-l{
padding: 15px 30px 15px 0!important;
}
.content-img-r{
padding: 15px 0px 15px 30px!important;
}
}
/*about页面*/
.aboutindexTop img{
width: 100%;
height: auto;
/* margin-bottom: 15px; */
}
.about-contert-p{
width: 80%;
margin-left: 10%;
margin-top: 5%;
}
.about-conter-head{
color: #686A73;
}
.about-conter-con{
font-family: Barlow-SemiBold;
font-size: 18px;
color: #3D3E46;
}
@media (min-width:800px) and (max-width:2000px) {
.about-conter-r{
margin-top: 60px!important;
padding-left: 60px!important;;
}
}
/*case页面*/
.case-nav{
margin: 30px 0 20px 0;
}
.case-nav-btn{
border-radius: 0;
}
.case-nav-btn:focus,
.case-nav-btn:hover,
.case-nav-btn:active{
color:#FFFFFF;
background-color: #0CBDA4;
border-color:#0CBDA4 ;
}
.case-nav-btn{
background-color: #EEF0F2;
font-family: PingFangSC-Regular;
font-size: 16px;
color: #3D3E46;
letter-spacing: 0;
text-align: center;
border-color:#EEF0F2;
/* margin-bottom: 10px; */
height: 46px;
line-height: 46px;
padding: 0 10px;
}
.case-pagination{
margin: 20px auto;
text-align: center;
}
.case-pagination>ul>li:first-child>a{
border-radius: 0;
}
.case-pagination>ul>li:last-child>a{
border-radius: 0;
}
.case-pagination>ul>li>a{
color: #3D3E46;
background-color: #EEF0F2;
border: 0;
margin: 10px;
display: block;
width: 46px;
height: 46px;
padding: 0;
line-height: 46px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
z-index: 2;
color: #fff;
cursor: default;
background-color: #0cbda4;
display: block;
width: 46px;
height: 46px;
font-size: 16px;
padding: 0;
line-height: 46px;
}
.case-pagination>ul>li>a:focus,
.case-pagination>ul>li>a:hover{
color: #FFFFFF;
background-color: #0CBDA4;
}
/*案例详情页*/
.details-content{
width: 80%;
margin: 60px auto;
}
.details-content-p{
font-family: PingFangSC-Regular;
font-size: 3rem;
color: #3D3E46;
letter-spacing: 0;
line-height: 60px;
}
.details-text-head{
font-size: 20px;
color: #3D3E46;
letter-spacing: 0;
}
.details-text-det{
font-size: 14px;
color: #686A73;
letter-spacing: 0;
line-height: 26px;
}
.detaila-img{
width: 80%;
margin: 0 auto;
}
.detaila-img img{
width: 100%;
margin-bottom: 60px;
}
.details-cont{
width: 80%;
padding-bottom: 60px;
margin: 0 auto;
}
/*服务*/
@media (min-width:800px) and (max-width:2000px) {
.service-img{
width: 70%!important;
}
}
.service-img{
width: 80%;
overflow: hidden;
margin: 0 auto;
}
.service-img img{
width: 100%;
}
.service-img-pc-fl{
float:left;
position: absolute;
}
.service-img-pc-fr{
float:right;
}
.service-img-pc-fr:first-child{
margin-top: 80px;
}
.service-img-pc-fl:first-child{
margin-top: 180px;
/* position: absolute; */
}
.service-img-pc-fr-s,
.service-img-pc-fl-s{
width:440px;
height: 400px;
background-color: #EEF0F2;
margin-top: 60px;
position: relative;
}
.service-img-pc-fr-b,
.service-img-pc-fl-b{
width: 440px;
height: 500px;
background-color: #F7F8F9;
margin-top: 60px;
position: relative;
}
.service-img-pc-p-header{
font-size: 22px;
color: #3D3E46;
letter-spacing: 0;
margin: 60px 0 20px 50px;
}
.service-img-pc-p-det{
font-size: 16px;
color: #686A73;
letter-spacing: 0;
margin-left: 50px;
margin-right: 100px;
}
.service-img-pc-number{
float: right;
font-family: Barlow-SemiBold;
font-size: 30px;
color: #3D3E46;
letter-spacing: 0;
bottom: 30px;
right: 20px;
position: absolute;
}
.service-conter{
width: 100%;
overflow: hidden;
}
.service-conter-ri,
.service-conter-le{
width: 50%;
background-color: red;
float: left;
}
.service-move img,
.service-conter img{
width: 100%;
}
.service-move{
width: 90%;
overflow: hidden;
margin: 0 auto;
}
.service-img-move-b{
width: 100%;
height: 500px;
background-color: #F7F8F9;
position: relative;
}
.service-img-move-s{
width: 100%;
height: 450px;
background-color: #EEF0F2;
position: relative;
}
.service-img-move-s,
.service-img-move-b{
margin-top: 60px;
}
/*轮播页面*/
.banner-head{
width: 100%;
height: 76px;
margin-bottom: 14px;
}
.banner-head img{
margin-top: 20px;
width: 66%;
text-align: center;
margin-left: 16px;
}
.banner-banner a{
display: block;
width: 90%;
height: 110px;
margin: 0 auto;
margin-bottom: 40px;
background-color: #FFFFFF;
opacity: 0.5;
z-index: 9999;
}
.banner-banner a:hover{
opacity: 1;
}
.banner-banner a img{
width: 100%;
}
/*首页*/
.index-cust{
width: 50%;
overflow: hidden;
margin: 0 auto;
}
@media screen and (max-width: 1200px) { /*当屏幕尺寸小于1200px时,应用下面的CSS样式*/
.index-cust {
width: 90%!important;
}
}
@media screen and (max-width: 667px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.index-cust {
width: 320px!important;
margin: 0 auto;
}
.navbar-img img{
width: 160px!important;
}
}
.index-customer{
width: 100px;
height: 60px;
margin: 20px 30px;
float:left;
}
.index-customer img{
width: 100%;
overflow: hidden;
}
.indeximg a:hover img{
width: 100%;
overflow: hidden;
transform: scale(1.4, 1.4);
}
.indeximg a{
display: block;
width: 100%;
overflow: hidden;
}
/*图片左右飞入*/
.imgAnimationl{
width: 100%;
animation-name: imgAnimationl;
animation: imgAnimationl 2s alternate;
-webkit-animation: imgAnimationl 2s alternate ;
-moz-animation: imgAnimationl 2s alternate infinite;
}
@-webkit-keyframes imgAnimationl{
0%{ margin-top: 198px;}
100%{ top: 0px; left: 0px;}
}
.imgAnimationr{
width: 100%;
animation-name: imgAnimationr;
animation: imgAnimationr 2s alternate;
-webkit-animation: imgAnimationr 2s alternate ;
-moz-animation: imgAnimationr 2s alternate infinite;
}
@-webkit-keyframes imgAnimationr{
0%{ margin-left: 198px;}
100%{ top: 0px; right: 0px;}
}
@media (max-width: 800px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.case-pagination-pc,.hidden-xs1{
display: none!important;
}
.yidongliubai{
padding: 0 30px;
}
h5{
margin-bottom: 40px;
}
}
@media (min-width: 800px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.hidden-xs2,.btn-load{
display: none!important;
}
.footer-pc{
padding-left: 15%!important;
}
}
.nav-top a{
font-size: 18px;
color: #3D3E46;
letter-spacing: 0;
}
@media (max-width: 700px) { /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.case-nav a{
margin: 10px auto;
}
} | 0.221435 | 0.084078 |
.channels-table {
margin-top: 36px;
}
.channel-row.kind-hipchat {
filter: grayscale(100%);
opacity: 0.5;
}
.channels-table .channel-row > td {
padding-top: 10px;
padding-bottom: 10px;
vertical-align: middle;
border-top: 1px solid #f1f1f1;
}
.channels-table .icon-cell {
width: 40px;
}
.channels-table .icon-cell img {
margin-left: 16px;
height: 40px;
}
.channels-table .th-name,
.channels-table .th-checks {
padding-left: 15px;
}
.channels-table .unnamed {
font-style: italic;
color: #999;
}
.channels-table .channel-row:hover > td {
background: #f5f5f5;
}
table.channels-table > tbody > tr > th {
border-top: 0;
}
.preposition, .description {
color: #888;
}
.channel-disabled {
font-size: small;
}
.edit-name, .edit-checks {
padding: 12px 6px;
border: 1px solid #FFF;
cursor: pointer;
}
.edit-name .channel-details-mini {
font-size: 11.7px;
color: #888;
max-width: 500px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.channel-details-mini span {
color: #111;
}
.channel-row:hover .edit-name,
.channel-row:hover .edit-checks {
border: 1px dotted #AAA;
}
.edit-checks {
color: #333;
}
.edit-checks:hover {
text-decoration: none;
color: #000;
}
.channel-row .actions {
text-align: right;
}
.channel-row .actions form {
display: inline;
}
.channel-row .actions .btn {
visibility: hidden;
}
.channel-row:hover .actions .btn {
visibility: visible;
}
.webhook-details td {
max-width: 300px;
}
.ai-title {
margin-top: 2em;
}
.add-integration {
list-style: none;
padding: 0;
}
.add-integration li {
position: relative;
padding: 8px 0;
border-radius: 4px;
}
.add-integration li:hover {
background: #eee;
}
.add-integration .icon {
position: absolute;
left: 16px;
top: 50%;
margin-top: -20px;
width: 40px;
height: 40px;
}
.add-integration h2 {
font-size: 18px;
margin-left: 72px;
}
.add-integration p {
margin-left: 72px;
}
.add-integration a.btn {
position: absolute;
right: 16px;
top: 50%;
margin-top: -17px;
width: 139px;
height: 40px;
padding: 0;
line-height: 40px;
}
.btn img.ai-icon {
height: 1.4em;
margin-right: 2px;
}
.add-integration h2 {
margin-top: 0;
}
.setup-guide h2, .integration-settings h2 {
margin: 0 0 1em 0;
}
.ai-step {
margin: 2em 0;
counter-increment: ai-step;
}
.ai-step .step-no::after {
content: counter(ai-step);
}
.ai-step .step-no {
display: block;
float: left;
font-size: 24px;
width: 48px;
height: 48px;
background: #7ec1ea;
border-radius: 32px;
text-align: center;
line-height: 48px;
margin-right: 32px;
margin-bottom: 32px;
color: #fff;
font-weight: 300;
}
.ai-step .marker-wrap {
position: relative;
clear: both;
}
.ai-step .marker {
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
background: #2abb66;
position: absolute;
border-radius: 10px;
opacity: 0;
animation: marker-ripple 1.2s ease-out infinite;
}
.ai-step p {
margin-left: 80px;
}
@keyframes marker-ripple {
0%, 35% {
transform: scale(0);
opacity: 0.5;
}
50% {
transform: scale(1.5);
opacity: 0.3;
}
100% {
opacity: 0;
transform: scale(4);
}
}
.ai-guide-screenshot {
max-width: 100%;
border: 6px solid #EEE;
}
.variable-column {
width: 160px;
}
.add-integration li.link-to-github {
padding: 16px 0;
}
.link-to-github p {
margin-bottom: 0;
}
.page-channels .icon-delete {
font-size: 16px;
}
.channel-details table {
width: 100%;
}
.channel-details td, .channel-details th {
padding: 15px;
border-bottom: 1px solid #eee;
}
.channel-details tr:last-child td, .channel-details tr:last-child th {
border-bottom: 0;
}
.channel-details .missing {
color: #999;
font-style: italic;
}
.channel-modal .modal-body {
padding: 15px 40px;
} | static/css/channels.css | .channels-table {
margin-top: 36px;
}
.channel-row.kind-hipchat {
filter: grayscale(100%);
opacity: 0.5;
}
.channels-table .channel-row > td {
padding-top: 10px;
padding-bottom: 10px;
vertical-align: middle;
border-top: 1px solid #f1f1f1;
}
.channels-table .icon-cell {
width: 40px;
}
.channels-table .icon-cell img {
margin-left: 16px;
height: 40px;
}
.channels-table .th-name,
.channels-table .th-checks {
padding-left: 15px;
}
.channels-table .unnamed {
font-style: italic;
color: #999;
}
.channels-table .channel-row:hover > td {
background: #f5f5f5;
}
table.channels-table > tbody > tr > th {
border-top: 0;
}
.preposition, .description {
color: #888;
}
.channel-disabled {
font-size: small;
}
.edit-name, .edit-checks {
padding: 12px 6px;
border: 1px solid #FFF;
cursor: pointer;
}
.edit-name .channel-details-mini {
font-size: 11.7px;
color: #888;
max-width: 500px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.channel-details-mini span {
color: #111;
}
.channel-row:hover .edit-name,
.channel-row:hover .edit-checks {
border: 1px dotted #AAA;
}
.edit-checks {
color: #333;
}
.edit-checks:hover {
text-decoration: none;
color: #000;
}
.channel-row .actions {
text-align: right;
}
.channel-row .actions form {
display: inline;
}
.channel-row .actions .btn {
visibility: hidden;
}
.channel-row:hover .actions .btn {
visibility: visible;
}
.webhook-details td {
max-width: 300px;
}
.ai-title {
margin-top: 2em;
}
.add-integration {
list-style: none;
padding: 0;
}
.add-integration li {
position: relative;
padding: 8px 0;
border-radius: 4px;
}
.add-integration li:hover {
background: #eee;
}
.add-integration .icon {
position: absolute;
left: 16px;
top: 50%;
margin-top: -20px;
width: 40px;
height: 40px;
}
.add-integration h2 {
font-size: 18px;
margin-left: 72px;
}
.add-integration p {
margin-left: 72px;
}
.add-integration a.btn {
position: absolute;
right: 16px;
top: 50%;
margin-top: -17px;
width: 139px;
height: 40px;
padding: 0;
line-height: 40px;
}
.btn img.ai-icon {
height: 1.4em;
margin-right: 2px;
}
.add-integration h2 {
margin-top: 0;
}
.setup-guide h2, .integration-settings h2 {
margin: 0 0 1em 0;
}
.ai-step {
margin: 2em 0;
counter-increment: ai-step;
}
.ai-step .step-no::after {
content: counter(ai-step);
}
.ai-step .step-no {
display: block;
float: left;
font-size: 24px;
width: 48px;
height: 48px;
background: #7ec1ea;
border-radius: 32px;
text-align: center;
line-height: 48px;
margin-right: 32px;
margin-bottom: 32px;
color: #fff;
font-weight: 300;
}
.ai-step .marker-wrap {
position: relative;
clear: both;
}
.ai-step .marker {
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
background: #2abb66;
position: absolute;
border-radius: 10px;
opacity: 0;
animation: marker-ripple 1.2s ease-out infinite;
}
.ai-step p {
margin-left: 80px;
}
@keyframes marker-ripple {
0%, 35% {
transform: scale(0);
opacity: 0.5;
}
50% {
transform: scale(1.5);
opacity: 0.3;
}
100% {
opacity: 0;
transform: scale(4);
}
}
.ai-guide-screenshot {
max-width: 100%;
border: 6px solid #EEE;
}
.variable-column {
width: 160px;
}
.add-integration li.link-to-github {
padding: 16px 0;
}
.link-to-github p {
margin-bottom: 0;
}
.page-channels .icon-delete {
font-size: 16px;
}
.channel-details table {
width: 100%;
}
.channel-details td, .channel-details th {
padding: 15px;
border-bottom: 1px solid #eee;
}
.channel-details tr:last-child td, .channel-details tr:last-child th {
border-bottom: 0;
}
.channel-details .missing {
color: #999;
font-style: italic;
}
.channel-modal .modal-body {
padding: 15px 40px;
} | 0.771715 | 0.122996 |
html {
background-color: black;
color: white;
}
body {
margin: 0;
padding: 0;
}
a {
color: white;
text-decoration: none;
}
.link-emp {
color: aquamarine;
text-decoration: none;
font-weight: bold;
}
.page-container {
display: flex;
position: absolute;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
right: 0;
margin: 0;
padding: 0;
left: 0;
top: 0;
width: 100%;
color: white;
background-color: rgba(0, 0, 0, 0.35);
}
.spacing {
height: 80px;
}
/*--Header--*/
.header-container {
margin-top: 0;
margin-left: 0;
margin-right: 0;
width: 100%;
min-height: 300px;
height: 450px;
background-size: cover;
}
.top-nav {
color: white;
background-color: rgba(0, 0, 0, 0.85);
width: 100%;
height: 80px;
}
.nav-links {
display: inline-flex;
margin-top: 25px;
margin-bottom: 25px;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
}
.nav-links a {
margin: auto;
font-size: 1.2em;
font-family: 'Montserrat', sans-serif;
}
.links-menu {
transition: all 0.60s;
padding: 15px;
text-align: center;
color: white;
}
.links-menu:hover {
background-color: darkcyan;
color: black;
}
/*--Header Intro--*/
.head-intro {
width: 100%;
/*Colors: https://uigradients.com/#MoonlitAsteroid
Made with CSS Generator*/
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f2027+0,203a43+51,207cca+51,203a43+51,2c5364+100 */
background: #0f2027;
/* Old browsers */
background: -moz-linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* FF3.6-15 */
background: -webkit-linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f2027', endColorstr='#2c5364', GradientType=1);
/* IE6-9 */
color: white;
min-height: 80px;
}
.overlay {
height: 440px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
.overlay-title {
font-weight: bold;
font-size: 4em;
text-transform: capitalize;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.overlay-subtext {
font-size: 2em;
}
/* Contents */
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
min-height: 300px;
margin-top: 20px;
}
.section-head {
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 2em;
margin-top: 20px;
text-transform: uppercase;
margin-bottom: 20px;
}
.section-subtitle {
font-size: 1.7em;
font-family: 'Muli', sans-serif;
}
.bold-emp {
font-weight: bold;
font-family: 'Montserrat', sans-serif;
font-size: 1.1em;
}
.top-section {
background-color: rgb(30, 30, 30);
width: 70%;
padding: 20px;
min-height: 100px;
}
.sec-text {
font-size: 1.1em;
font-family: 'Muli', sans-serif;
margin: 30px;
color: azure;
overflow-wrap: break-word;
hyphens: auto;
text-align: left;
}
/*--Middle Section--*/
.middle-section {
background-color: rgb(30, 30, 30);
width: 70%;
padding: 20px;
min-height: 100px;
}
/*--Footer--*/
.footer-container {
width: 100%;
background-color: black;
display: flex;
flex-direction: column;
align-content: center;
padding-top: 40px;
}
.footer-text {
font-family: 'Montserrat', sans-serif;
font-size: 0.8em;
}
.footer-text-responsive {
display: none;
font-family: 'Montserrat', sans-serif;
font-size: 0.6em;
padding: 3px;
cursor: default;
}
.email-container {
font-size: 1.2em;
color: white;
font-family: 'Muli', sans-serif;
}
.nav-btn-toTop {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
padding: 10px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.5);
color: white;
font-weight: bold;
z-index: 99999;
}
.icon {
width: 20px;
height: 20px;
padding: 5px;
background-color: rgb(0, 0, 0);
float: right;
text-align: right;
margin-right: 8px;
}
.resp-menu {
/*toggle display: flex*/
display: none;
position: fixed;
font-family: 'Montserrat', sans-serif;
flex-direction: column;
width: 100%;
top: 0;
left: 0;
padding-top: 15px;
padding-bottom: 15px;
background-color: black;
z-index: 9999999;
}
.icon-container {
font-size: 2.2em;
}
.resp-links-container {
display: none;
}
.to-top {
font-size: 3em;
}
.list-elem-container {
display: flex;
flex-direction: column;
margin: 20px 0px 20px 0px;
border: 2px solid #333333;
}
.elem-container-sub {
display: flex;
flex-direction: row;
}
.elem-container-inner {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 15px;
}
.list-text {
font-family: 'Montserrat', sans-serif;
}
.list-thumb {
margin: 15px 0px 0px 15px;
}
.big {
font-size: 1.5em;
}
@media screen and (max-width: 800px) {
.links-menu,
.head-image,
.nav-links,
.footer-text {
display: none;
}
.logo-header-resp {
display: block;
}
.top-nav {
height: 0px;
}
.resp-menu {
display: flex;
}
.header-container {
width: 100%;
min-height: 50px;
height: 80px;
background: rgb(70, 70, 70);
}
.nav-btn-menu {
padding: 4px;
}
.sec-text {
font-size: 1em;
font-family: 'Muli', sans-serif;
margin: 30px;
color: azure;
overflow-wrap: break-word;
hyphens: auto;
text-align: left;
}
.overlay {
height: 180px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Montserrat', sans-serif;
margin-top: 50px;
}
.overlay-title {
font-weight: bold;
font-size: 2em;
text-transform: capitalize;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.overlay-subtext {
font-size: 1em;
}
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
min-height: 200px;
margin-top: 170px;
}
.links {
margin-left: 10px;
width: 32px;
font-size: 0.7em;
}
.footer-text-responsive {
display: flex;
}
.top-section,
.middle-section,
.bottom-section {
width: 90%;
padding: 10px;
font-size: 0.95em;
}
.nav-btn-toTop {
display: block;
cursor: pointer;
}
.to-top {
display: none;
}
} | css/style.css | html {
background-color: black;
color: white;
}
body {
margin: 0;
padding: 0;
}
a {
color: white;
text-decoration: none;
}
.link-emp {
color: aquamarine;
text-decoration: none;
font-weight: bold;
}
.page-container {
display: flex;
position: absolute;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
right: 0;
margin: 0;
padding: 0;
left: 0;
top: 0;
width: 100%;
color: white;
background-color: rgba(0, 0, 0, 0.35);
}
.spacing {
height: 80px;
}
/*--Header--*/
.header-container {
margin-top: 0;
margin-left: 0;
margin-right: 0;
width: 100%;
min-height: 300px;
height: 450px;
background-size: cover;
}
.top-nav {
color: white;
background-color: rgba(0, 0, 0, 0.85);
width: 100%;
height: 80px;
}
.nav-links {
display: inline-flex;
margin-top: 25px;
margin-bottom: 25px;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
}
.nav-links a {
margin: auto;
font-size: 1.2em;
font-family: 'Montserrat', sans-serif;
}
.links-menu {
transition: all 0.60s;
padding: 15px;
text-align: center;
color: white;
}
.links-menu:hover {
background-color: darkcyan;
color: black;
}
/*--Header Intro--*/
.head-intro {
width: 100%;
/*Colors: https://uigradients.com/#MoonlitAsteroid
Made with CSS Generator*/
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f2027+0,203a43+51,207cca+51,203a43+51,2c5364+100 */
background: #0f2027;
/* Old browsers */
background: -moz-linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* FF3.6-15 */
background: -webkit-linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg, #0f2027 0%, #203a43 51%, #207cca 51%, #203a43 51%, #2c5364 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f2027', endColorstr='#2c5364', GradientType=1);
/* IE6-9 */
color: white;
min-height: 80px;
}
.overlay {
height: 440px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
.overlay-title {
font-weight: bold;
font-size: 4em;
text-transform: capitalize;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.overlay-subtext {
font-size: 2em;
}
/* Contents */
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
min-height: 300px;
margin-top: 20px;
}
.section-head {
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 2em;
margin-top: 20px;
text-transform: uppercase;
margin-bottom: 20px;
}
.section-subtitle {
font-size: 1.7em;
font-family: 'Muli', sans-serif;
}
.bold-emp {
font-weight: bold;
font-family: 'Montserrat', sans-serif;
font-size: 1.1em;
}
.top-section {
background-color: rgb(30, 30, 30);
width: 70%;
padding: 20px;
min-height: 100px;
}
.sec-text {
font-size: 1.1em;
font-family: 'Muli', sans-serif;
margin: 30px;
color: azure;
overflow-wrap: break-word;
hyphens: auto;
text-align: left;
}
/*--Middle Section--*/
.middle-section {
background-color: rgb(30, 30, 30);
width: 70%;
padding: 20px;
min-height: 100px;
}
/*--Footer--*/
.footer-container {
width: 100%;
background-color: black;
display: flex;
flex-direction: column;
align-content: center;
padding-top: 40px;
}
.footer-text {
font-family: 'Montserrat', sans-serif;
font-size: 0.8em;
}
.footer-text-responsive {
display: none;
font-family: 'Montserrat', sans-serif;
font-size: 0.6em;
padding: 3px;
cursor: default;
}
.email-container {
font-size: 1.2em;
color: white;
font-family: 'Muli', sans-serif;
}
.nav-btn-toTop {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
padding: 10px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.5);
color: white;
font-weight: bold;
z-index: 99999;
}
.icon {
width: 20px;
height: 20px;
padding: 5px;
background-color: rgb(0, 0, 0);
float: right;
text-align: right;
margin-right: 8px;
}
.resp-menu {
/*toggle display: flex*/
display: none;
position: fixed;
font-family: 'Montserrat', sans-serif;
flex-direction: column;
width: 100%;
top: 0;
left: 0;
padding-top: 15px;
padding-bottom: 15px;
background-color: black;
z-index: 9999999;
}
.icon-container {
font-size: 2.2em;
}
.resp-links-container {
display: none;
}
.to-top {
font-size: 3em;
}
.list-elem-container {
display: flex;
flex-direction: column;
margin: 20px 0px 20px 0px;
border: 2px solid #333333;
}
.elem-container-sub {
display: flex;
flex-direction: row;
}
.elem-container-inner {
display: flex;
flex-direction: column;
text-align: left;
margin-left: 15px;
}
.list-text {
font-family: 'Montserrat', sans-serif;
}
.list-thumb {
margin: 15px 0px 0px 15px;
}
.big {
font-size: 1.5em;
}
@media screen and (max-width: 800px) {
.links-menu,
.head-image,
.nav-links,
.footer-text {
display: none;
}
.logo-header-resp {
display: block;
}
.top-nav {
height: 0px;
}
.resp-menu {
display: flex;
}
.header-container {
width: 100%;
min-height: 50px;
height: 80px;
background: rgb(70, 70, 70);
}
.nav-btn-menu {
padding: 4px;
}
.sec-text {
font-size: 1em;
font-family: 'Muli', sans-serif;
margin: 30px;
color: azure;
overflow-wrap: break-word;
hyphens: auto;
text-align: left;
}
.overlay {
height: 180px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Montserrat', sans-serif;
margin-top: 50px;
}
.overlay-title {
font-weight: bold;
font-size: 2em;
text-transform: capitalize;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.overlay-subtext {
font-size: 1em;
}
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
min-height: 200px;
margin-top: 170px;
}
.links {
margin-left: 10px;
width: 32px;
font-size: 0.7em;
}
.footer-text-responsive {
display: flex;
}
.top-section,
.middle-section,
.bottom-section {
width: 90%;
padding: 10px;
font-size: 0.95em;
}
.nav-btn-toTop {
display: block;
cursor: pointer;
}
.to-top {
display: none;
}
} | 0.523177 | 0.050051 |
TABLE OF CONTENT
-------------------------------------------------
1- IMPORTS
2- RESET STYLES
3- BREADCRUMB STYLES
4- HEADER STYLES
5- DROPDOWN MENU STYLES
6- FOOTER STYLES
7- BACK TO TOP BUTTON STYLES
8- FOLLOW US STYLES
---------------------------------------------- */
/*========================== IMPORTS =======================*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,700);
/*========================== IMPORTS END =======================*/
/*========================== RESET STYLES =======================*/
body {
background-color: #fafafa;
}
html.SandboxRoot {
background-color: #c3d22f !important;
}
/*========================== RESET STYLES END =======================*/
/*========================== BREADCRUMB STYLES =======================*/
.breadcrumb>.active {
color: #ffffff;
}
.menu-bar {
background-color: #00afdf;
}
.menu3 {
color: #ffffff;
}
.menu3:hover {
color: #ffffff;
}
.menu1 {
color: #5bdcff;
}
.menu1:hover {
color: #5bdcff;
text-decoration: none;
}
.breadcrumb-navigation {
padding-top: 22px !important;
padding-bottom: 20px !important;
}
.breadcrumb-navigation {
padding: 0 0;
margin-bottom: 0 !important;
list-style: none;
background-color: #00afdf !important;
border-radius: 0;
font-weight: normal;
}
.breadcrumb-navigation>li+li:before {
color: #5bdcff;
}
.list {
margin-top: -43px !important;
margin-bottom: -5px !important;
padding-top: 11px !important;
color: #9699a6 !important;
padding-bottom: 11px !important;
font-size: 14px !important;
}
@media screen and (min-width: 610px) {
.list {
margin-top: -34px !important;
margin-bottom: 0 !important;
padding-top: 11px !important;
color: #9699a6 !important;
padding-bottom: 11px !important;
font-size: 14px !important;
}
}
.dropdown {
list-style-type: none;
}
.navbar .navbar-toggle .icon-bar {
background-color: inherit;
border: 1px solid;
color: #31364c;
}
.global-logo {
position: relative;
top: -9px;
margin-left: 45px;
}
@media screen and (min-width: 610px) {
.global-logo {
margin-left: 60px;
position: relative;
top: -9px;
padding-right: 20px;
}
}
/*========================== BREADCRUMB STYLES END =======================*/
/*========================== HEADER STYLES =======================*/
header {
background-color: #fafafa !important;
}
.ul-pad {
margin-top: 0;
margin-bottom: 10px;
margin-left: -40px;
}
#dropdown .dropdown {
font-size: 30px;
padding: 20px;
}
.menu-icon {
color: #31364c;
padding-top: 31px;
}
@media screen and (min-width: 610px) {
.menu-icon {
color: #31364c;
padding-top: 52px;
}
}
.menu-icon2 {
color: #31364c;
padding-top: 30px;
}
.menu-icon2:hover {
color: #93c25e;
}
.navigation-bar {
color: #464859;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.navigation-bar:hover {
color: #31364c;
}
.logo {
margin-top: 41px;
}
.main-logo {
margin-left: 71px;
margin-top: -50px;
}
.ul-style {
list-style: none;
}
.navigation-bar>li:focus,
.navigation-bar>li:hover {
color: #ddd;
border-top: 3px solid #00bff3;
padding-top: 32px;
}
.navigation-bar>li>a:focus,
.navigation-bar>li>a:hover {
text-decoration: none;
background-color: #fafafa;
}
.navbar-nav>.active>a,
.navbar-nav>.active>a:focus,
.navbar-nav>.active>a:hover {
color: #00bff3;
}
.navigation-bar>li.active {
padding-top: 33px;
border-top: 3px solid #00bff3;
}
.navigation-bar>.active>a,
.navigation-bar>.active>a:focus,
.navigation-bar>.active>a:hover {
padding-top: 18px;
color: #00bff3;
}
.navigation-bar .open>a,
.navigation-bar .open>a:focus,
.navigation-bar .open>a:hover {
background-color: #fafafa;
border-color: #337ab7;
}
.navigation-bar .drop {
padding-top: 6px;
}
a.dropanchor {
color: #9699a6 !important;
margin-top: 4px;
margin-bottom: 4px;
}
.dropanchor,
.dropanchor:hover,
.dropanchor:focus {
color: #93c25e !important;
}
.dropdown-menu {
border-radius: 0;
}
.icon-preview ul>li {
margin: -5px 0;
}
.dropdown-btn {
position: absolute;
top: 100%;
left: -88% !important;
}
.btn-primary:hover:not(.btn-link):not(.btn-flat) {
background-color: #92c25e;
}
.menu-plus-btn{
color: #ffffff !important;
background-color: #fecc17 !important;
border-radius: 50%;
width: 70px;
height: 70px;
z-index: 30;
position: relative;
top: 82px;
right: 23px;
}
.plus-btn-icon{
position: relative;
right: 6px;
top: 2px;
}
.menu-plus-btn:hover{
background-color: #00bff3 !important;
}
.menu-i {
color: #cdcfd7 !important;
font-size: 17px;
margin-right: 12px;
position: relative;
top: 1px;
}
.icon-centent {
font-size: 14px !important;
color: #9699a6 !important;
}
.a-pad {
margin-top: 9px;
margin-bottom: 9px;
}
.li-h:hover {
background-color: #292d31 !important;
color: #cdcfd7 !important;
}
a.a-pad:hover {
color: #9699a6 !important;
}
.nav-color {
background-color: #eee7d9 !important;
}
.navbar .navbar-toggle {
border: 0;
color: #31364c !important;
margin-top: 26px;
padding-bottom: 26px;
}
@media screen and (min-width: 610px) {
.navbar .navbar-toggle {
border: 0;
color: #31364c !important;
margin-top: 47px;
}
}
li .list:hover {
color: #00bff3 !important;
}
.navbar .navbar-nav>.active>a,
.navbar .navbar-nav>.active>a:hover,
.navbar .navbar-nav>.active>a:focus {
color: #00bff3;
background-color: rgba(255, 255, 255, .1);
padding-top: 19px;
background-color: #fafafa;
}
.navbar .navbar-nav>li>a:hover {
color: #00bff3;
}
.navbar {
margin-bottom: 0 !important;
}
.btn-primary:not(.btn-link):not(.btn-flat) {
background: #00bff3;
position: absolute;
top: 108px;
z-index: 21;
right: 34px;
}
.float-hover:hover {
background-color: #f04d4e;
}
/*========================== HEADER STYLES END =======================*/
/*========================== DROPDOWN MENU STYLES =======================*/
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #ccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #fff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
/*========================== DROPDOWN MENU STYLES END =======================*/
/*========================== FOOTER STYLES =======================*/
.footer-page {
background-color: #292d31;
}
.footer-icons {
text-align: right;
margin-top: 63px;
padding-bottom: 30px;
padding-left: 4px;
}
.footer-text {
color: #9699a6;
font-family: 'Roboto', sans-serif;
font-weight: lighter;
}
.footer-section {
background-image: url("../images/footer-img.png");
border: 1px solid #25292c;
padding-top: 7.6%;
padding-bottom: 8%;
}
.footer-heading-p {
color: #ffffff;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.footer-col1 {
color: #9699a6;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.underline {
opacity: 0.1;
}
.clock {
color: #43454d;
margin-top: 0 !important;
margin-left: 0 !important;
}
.recent-date {
color: #43454d;
margin-top: 2px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.hr-border {
margin-top: 8px;
}
hr {
margin-top: 8px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #33363a;
}
.news-hover:hover .clock {
color: #ffffff;
}
.news-hover:hover .recent-date {
color: #ffffff;
}
.news-hover:hover .footer-col1 {
color: #00bff3;
}
.footer-date {
opacity: 0.2;
color: white;
}
input {
color: #43454d;
font-size: 8pt;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
button {
color: white;
border: none;
font-size: 10pt;
}
.subscribe-box {
border-bottom: 2px solid #9699a6;
}
.subscribe-box:focus {
border-bottom: 2px solid #93c25e;
}
.subscribe-box:hover {
border-bottom: 2px solid #f04e4e;
}
.subcribe-input-name {
color: #45474f !important;
position: relative;
top: 2px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.subscribe-box .subscribe-input {
display: inline-block;
width: 77.7% !important;
color: #ffffff;
border: 0 !important;
background-image: linear-gradient(#00bff3, #00bff3) !important;
font-size: 16px;
padding-bottom: 12px;
position: relative;
top: 2px;
}
.subscribe-box:focus {
border-bottom: 2px solid #00bff3;
}
.subscribe-box .subscribe-input2 {
display: inline-block;
width: 69% !important;
color: #ffffff;
border: 0 !important;
background-image: linear-gradient(#00bff3, #00bff3) !important;
font-size: 16px;
padding-bottom: 12px;
position: relative;
top: 2px;
}
.subscribe-btn {
background-color: #25292c !important;
border-radius: 25px;
color: #ffffff !important;
border: 2px solid #ffffff;
text-transform: capitalize;
padding: 8px 22px !important;
margin-top: 3px;
}
.subscribe-btn:hover {
background-color: #fecc17 !important;
border: 2px solid #fecc17;
}
.footer-border {
background-color: #222629;
padding-top: 30px;
padding-bottom: 30px;
}
.bottum-text {
color: #45474f;
margin-top: 45px;
padding-bottom: 15px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.bottom-footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: #222629;
}
.bottom-footer a {
color: #9699a6;
}
.border {
background-color: #fafafa;
}
.input {
margin-top: 5%;
padding-bottom: 5%;
}
.form-control {
border: 0;
background-image: linear-gradient(#00bff3, #00bff3), linear-gradient(#414549, #414549) !important;
background-size: 0 2px, 100% 2px;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
transition: background 0s ease-out;
}
.input-name {
margin-top: 24px;
}
.arrow-footer {
font-size: 38px;
color: #ffffff !important;
}
.footer-input {
color: #fff;
opacity: 1;
}
.flat-button {
opacity: 0.6;
}
.footer-floating-btn {
background-color: #00bff3;
border-radius: 100%;
width: 50px;
height: 50px;
}
.dropdown-hover:hover {
color: #93c25e;
}
a,
a:hover,
a:focus {
text-decoration: none;
}
.footer-heading-p {
padding-bottom: 15px;
}
.img-footer {
padding-top: 15px;
}
.footer-logo-p {
padding-bottom: 26px;
}
.foot-logo-text {
color: #45474f;
font-weight: normal;
}
.read-more {
color: #9699a6;
margin-left: 5px;
}
.read-more:hover {
color: #93c25e;
}
ul {
list-style: none;
margin: 0;
}
.follow-icons li.follow-facebook {
background: #3a5ba2;
}
.follow-icons li.follow-twitter {
background-color: #1fc0f0;
}
.follow-icons li.follow-google-plus {
background-color: #e1584b;
}
.follow-icons li.follow-pinterest {
background-color: #c33c2d;
}
.follow-icons li.follow-instagram {
background-color: #9e6f4f;
}
.follow-icons li.follow-flickr {
background-color: #e9e8e9;
padding-top: 7px;
}
.follow-icons li.follow-dribbble {
background-color: #f3746a;
}
.follow-icons li {
width: 38px;
height: 38px;
border-radius: 50%;
margin-right: 3px;
}
.follow-icons li a {
color: #fff;
}
.facebk {
margin-left: 8px !important;
}
.dot1 {
font-size: 14px !important;
margin-left: 0 !important;
color: #0ca3d1 !important;
position: relative;
top: -2px;
left: 2px;
}
.dot2 {
font-size: 14px !important;
margin-left: 0 !important;
color: #f05b78 !important;
position: relative;
top: -2px;
left: 1px;
}
.fa {
margin-top: 8px;
margin-left: 4px;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: 23px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.social-pad {
padding-top: 45px;
}
.copy-right-box {
background-color: #222629 !important;
color: #45474f;
margin-top: 4%;
margin-bottom: 4.3%;
padding: 0;
}
.copy-right-box>li+li:before {
padding: 0 5px;
color: #45474f;
content: "/\00a0";
}
.footer-copy-right>li+li:before {
padding: 0 5px;
color: #45474f;
content: "/\00a0";
}
/*========================== FOOTER STYLES END =======================*/
/*========================== BACK TO TOP BUTTON STYLES =======================*/
.arrow-btn {
background-color: #00bff3 !important;
border-radius: 50%;
padding: 14px 16px;
}
a.nav-expander:hover {
cursor: pointer;
}
a.nav-expander.fixed {
position: fixed;
}
.nav-expanded a.nav-expander.fixed {
left: 20em;
}
.leftmenu-a {
color: #676971;
}
.plan-a:hover {
color: #676971 !important;
}
#back-to-top {
position: fixed;
bottom: 40px;
right: 40px;
z-index: 9999;
color: #444;
cursor: pointer;
border: 0;
transition: opacity 0.2s ease-out;
opacity: 0;
}
#back-to-top.show {
opacity: 1;
}
#back-to-top {
position: fixed;
bottom: 40px;
right: 40px;
z-index: 9999;
}
.footer-copy-right{
background-color: #25292C;
padding: 0;
font-weight: normal;
}
.footer-copy-right li a{
color: #45474f;
}
.footer-copy-right li a:hover{
color: #b14343;
}
/*========================== BACK TO TOP BUTTON STYLES END =======================*/
/*========================== FOLLOW US STYLES =======================*/
.follow-us {
background-color: #292d31;
padding-top: 5%;
padding-bottom: 5%;
}
.follow-h {
font-family: 'roboto', sans-serif;
font-weight: 300;
color: #ffffff;
font-size: 42px;
margin: 0;
margin-top: 8px;
padding-bottom: 20px;
}
.follow-p {
color: #9699a6;
font-size: 16px;
font-weight: normal;
}
/*social-icon*/
.follow-icons li.follow-facebook {
background: #3a5ba2;
}
.follow-icons li.follow-twitter {
background-color: #1fc0f0;
margin-left: 5px;
}
.follow-icons li.follow-google-plus {
background-color: #e1584b;
margin-left: 5px;
}
.follow-icons li.follow-pinterest {
background-color: #c33c2d;
margin-left: 5px;
}
.follow-icons li.follow-instagram {
background-color: #9e6f4f;
margin-left: 5px;
}
.follow-icons li.follow-leaf {
background-color: #7cb442;
margin-left: 5px;
}
.follow-icons li.follow-flickr {
background-color: #e9e8e9;
padding-top: 7px;
margin-left: 5px;
}
.follow-icons li.follow-dribbble {
background-color: #f3746a;
margin-left: 5px;
}
.follow-icons li {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 3px;
}
.follow-icons {
margin-top: 15%;
}
.follow-icons li a {
color: #fff;
}
.facebk {
margin-left: 8px !important;
}
.dot1 {
font-size: 14px !important;
margin-left: 0 !important;
color: #0ca3d1 !important;
}
.dot2 {
font-size: 14px !important;
margin-left: 0 !important;
color: #f05b78 !important;
}
.social-fa {
margin-top: 8px;
margin-left: 5px;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: 23px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.social-pad {
padding-top: 45px;
}
.menu {
width: 200px;
background-color: #fff;
position: absolute;
top: 100%;
left: 0;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
font-size: 14px;
}
.toggle-menu-possition {
position: relative;
right: 16px;
font-weight: normal;
}
.navigation-bar>.filter-li:focus,
.navigation-bar>.filter-li:hover {
color: #ddd;
border-top: 3px solid #00bff3;
padding-top: 32px;
}
.navigation-bar>.filter-li.active {
padding-top: 33px;
border-top: 3px solid #00bff3;
}
.navbar .navbar-nav>.active>.filter-a,
.navbar .navbar-nav>.active>.filter-a:hover,
.navbar .navbar-nav>.active>.filter-a:focus {
color: #00bff3;
}
.filter-a{
color: #00bff3 !important;
}
/*========================== FOLLOW US STYLES END =======================*/ | static/css/job_custom.css | TABLE OF CONTENT
-------------------------------------------------
1- IMPORTS
2- RESET STYLES
3- BREADCRUMB STYLES
4- HEADER STYLES
5- DROPDOWN MENU STYLES
6- FOOTER STYLES
7- BACK TO TOP BUTTON STYLES
8- FOLLOW US STYLES
---------------------------------------------- */
/*========================== IMPORTS =======================*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,700);
/*========================== IMPORTS END =======================*/
/*========================== RESET STYLES =======================*/
body {
background-color: #fafafa;
}
html.SandboxRoot {
background-color: #c3d22f !important;
}
/*========================== RESET STYLES END =======================*/
/*========================== BREADCRUMB STYLES =======================*/
.breadcrumb>.active {
color: #ffffff;
}
.menu-bar {
background-color: #00afdf;
}
.menu3 {
color: #ffffff;
}
.menu3:hover {
color: #ffffff;
}
.menu1 {
color: #5bdcff;
}
.menu1:hover {
color: #5bdcff;
text-decoration: none;
}
.breadcrumb-navigation {
padding-top: 22px !important;
padding-bottom: 20px !important;
}
.breadcrumb-navigation {
padding: 0 0;
margin-bottom: 0 !important;
list-style: none;
background-color: #00afdf !important;
border-radius: 0;
font-weight: normal;
}
.breadcrumb-navigation>li+li:before {
color: #5bdcff;
}
.list {
margin-top: -43px !important;
margin-bottom: -5px !important;
padding-top: 11px !important;
color: #9699a6 !important;
padding-bottom: 11px !important;
font-size: 14px !important;
}
@media screen and (min-width: 610px) {
.list {
margin-top: -34px !important;
margin-bottom: 0 !important;
padding-top: 11px !important;
color: #9699a6 !important;
padding-bottom: 11px !important;
font-size: 14px !important;
}
}
.dropdown {
list-style-type: none;
}
.navbar .navbar-toggle .icon-bar {
background-color: inherit;
border: 1px solid;
color: #31364c;
}
.global-logo {
position: relative;
top: -9px;
margin-left: 45px;
}
@media screen and (min-width: 610px) {
.global-logo {
margin-left: 60px;
position: relative;
top: -9px;
padding-right: 20px;
}
}
/*========================== BREADCRUMB STYLES END =======================*/
/*========================== HEADER STYLES =======================*/
header {
background-color: #fafafa !important;
}
.ul-pad {
margin-top: 0;
margin-bottom: 10px;
margin-left: -40px;
}
#dropdown .dropdown {
font-size: 30px;
padding: 20px;
}
.menu-icon {
color: #31364c;
padding-top: 31px;
}
@media screen and (min-width: 610px) {
.menu-icon {
color: #31364c;
padding-top: 52px;
}
}
.menu-icon2 {
color: #31364c;
padding-top: 30px;
}
.menu-icon2:hover {
color: #93c25e;
}
.navigation-bar {
color: #464859;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.navigation-bar:hover {
color: #31364c;
}
.logo {
margin-top: 41px;
}
.main-logo {
margin-left: 71px;
margin-top: -50px;
}
.ul-style {
list-style: none;
}
.navigation-bar>li:focus,
.navigation-bar>li:hover {
color: #ddd;
border-top: 3px solid #00bff3;
padding-top: 32px;
}
.navigation-bar>li>a:focus,
.navigation-bar>li>a:hover {
text-decoration: none;
background-color: #fafafa;
}
.navbar-nav>.active>a,
.navbar-nav>.active>a:focus,
.navbar-nav>.active>a:hover {
color: #00bff3;
}
.navigation-bar>li.active {
padding-top: 33px;
border-top: 3px solid #00bff3;
}
.navigation-bar>.active>a,
.navigation-bar>.active>a:focus,
.navigation-bar>.active>a:hover {
padding-top: 18px;
color: #00bff3;
}
.navigation-bar .open>a,
.navigation-bar .open>a:focus,
.navigation-bar .open>a:hover {
background-color: #fafafa;
border-color: #337ab7;
}
.navigation-bar .drop {
padding-top: 6px;
}
a.dropanchor {
color: #9699a6 !important;
margin-top: 4px;
margin-bottom: 4px;
}
.dropanchor,
.dropanchor:hover,
.dropanchor:focus {
color: #93c25e !important;
}
.dropdown-menu {
border-radius: 0;
}
.icon-preview ul>li {
margin: -5px 0;
}
.dropdown-btn {
position: absolute;
top: 100%;
left: -88% !important;
}
.btn-primary:hover:not(.btn-link):not(.btn-flat) {
background-color: #92c25e;
}
.menu-plus-btn{
color: #ffffff !important;
background-color: #fecc17 !important;
border-radius: 50%;
width: 70px;
height: 70px;
z-index: 30;
position: relative;
top: 82px;
right: 23px;
}
.plus-btn-icon{
position: relative;
right: 6px;
top: 2px;
}
.menu-plus-btn:hover{
background-color: #00bff3 !important;
}
.menu-i {
color: #cdcfd7 !important;
font-size: 17px;
margin-right: 12px;
position: relative;
top: 1px;
}
.icon-centent {
font-size: 14px !important;
color: #9699a6 !important;
}
.a-pad {
margin-top: 9px;
margin-bottom: 9px;
}
.li-h:hover {
background-color: #292d31 !important;
color: #cdcfd7 !important;
}
a.a-pad:hover {
color: #9699a6 !important;
}
.nav-color {
background-color: #eee7d9 !important;
}
.navbar .navbar-toggle {
border: 0;
color: #31364c !important;
margin-top: 26px;
padding-bottom: 26px;
}
@media screen and (min-width: 610px) {
.navbar .navbar-toggle {
border: 0;
color: #31364c !important;
margin-top: 47px;
}
}
li .list:hover {
color: #00bff3 !important;
}
.navbar .navbar-nav>.active>a,
.navbar .navbar-nav>.active>a:hover,
.navbar .navbar-nav>.active>a:focus {
color: #00bff3;
background-color: rgba(255, 255, 255, .1);
padding-top: 19px;
background-color: #fafafa;
}
.navbar .navbar-nav>li>a:hover {
color: #00bff3;
}
.navbar {
margin-bottom: 0 !important;
}
.btn-primary:not(.btn-link):not(.btn-flat) {
background: #00bff3;
position: absolute;
top: 108px;
z-index: 21;
right: 34px;
}
.float-hover:hover {
background-color: #f04d4e;
}
/*========================== HEADER STYLES END =======================*/
/*========================== DROPDOWN MENU STYLES =======================*/
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #ccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #fff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
/*========================== DROPDOWN MENU STYLES END =======================*/
/*========================== FOOTER STYLES =======================*/
.footer-page {
background-color: #292d31;
}
.footer-icons {
text-align: right;
margin-top: 63px;
padding-bottom: 30px;
padding-left: 4px;
}
.footer-text {
color: #9699a6;
font-family: 'Roboto', sans-serif;
font-weight: lighter;
}
.footer-section {
background-image: url("../images/footer-img.png");
border: 1px solid #25292c;
padding-top: 7.6%;
padding-bottom: 8%;
}
.footer-heading-p {
color: #ffffff;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.footer-col1 {
color: #9699a6;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.underline {
opacity: 0.1;
}
.clock {
color: #43454d;
margin-top: 0 !important;
margin-left: 0 !important;
}
.recent-date {
color: #43454d;
margin-top: 2px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.hr-border {
margin-top: 8px;
}
hr {
margin-top: 8px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #33363a;
}
.news-hover:hover .clock {
color: #ffffff;
}
.news-hover:hover .recent-date {
color: #ffffff;
}
.news-hover:hover .footer-col1 {
color: #00bff3;
}
.footer-date {
opacity: 0.2;
color: white;
}
input {
color: #43454d;
font-size: 8pt;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
button {
color: white;
border: none;
font-size: 10pt;
}
.subscribe-box {
border-bottom: 2px solid #9699a6;
}
.subscribe-box:focus {
border-bottom: 2px solid #93c25e;
}
.subscribe-box:hover {
border-bottom: 2px solid #f04e4e;
}
.subcribe-input-name {
color: #45474f !important;
position: relative;
top: 2px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.subscribe-box .subscribe-input {
display: inline-block;
width: 77.7% !important;
color: #ffffff;
border: 0 !important;
background-image: linear-gradient(#00bff3, #00bff3) !important;
font-size: 16px;
padding-bottom: 12px;
position: relative;
top: 2px;
}
.subscribe-box:focus {
border-bottom: 2px solid #00bff3;
}
.subscribe-box .subscribe-input2 {
display: inline-block;
width: 69% !important;
color: #ffffff;
border: 0 !important;
background-image: linear-gradient(#00bff3, #00bff3) !important;
font-size: 16px;
padding-bottom: 12px;
position: relative;
top: 2px;
}
.subscribe-btn {
background-color: #25292c !important;
border-radius: 25px;
color: #ffffff !important;
border: 2px solid #ffffff;
text-transform: capitalize;
padding: 8px 22px !important;
margin-top: 3px;
}
.subscribe-btn:hover {
background-color: #fecc17 !important;
border: 2px solid #fecc17;
}
.footer-border {
background-color: #222629;
padding-top: 30px;
padding-bottom: 30px;
}
.bottum-text {
color: #45474f;
margin-top: 45px;
padding-bottom: 15px;
font-family: 'Roboto', sans-serif;
font-weight: normal;
}
.bottom-footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: #222629;
}
.bottom-footer a {
color: #9699a6;
}
.border {
background-color: #fafafa;
}
.input {
margin-top: 5%;
padding-bottom: 5%;
}
.form-control {
border: 0;
background-image: linear-gradient(#00bff3, #00bff3), linear-gradient(#414549, #414549) !important;
background-size: 0 2px, 100% 2px;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
transition: background 0s ease-out;
}
.input-name {
margin-top: 24px;
}
.arrow-footer {
font-size: 38px;
color: #ffffff !important;
}
.footer-input {
color: #fff;
opacity: 1;
}
.flat-button {
opacity: 0.6;
}
.footer-floating-btn {
background-color: #00bff3;
border-radius: 100%;
width: 50px;
height: 50px;
}
.dropdown-hover:hover {
color: #93c25e;
}
a,
a:hover,
a:focus {
text-decoration: none;
}
.footer-heading-p {
padding-bottom: 15px;
}
.img-footer {
padding-top: 15px;
}
.footer-logo-p {
padding-bottom: 26px;
}
.foot-logo-text {
color: #45474f;
font-weight: normal;
}
.read-more {
color: #9699a6;
margin-left: 5px;
}
.read-more:hover {
color: #93c25e;
}
ul {
list-style: none;
margin: 0;
}
.follow-icons li.follow-facebook {
background: #3a5ba2;
}
.follow-icons li.follow-twitter {
background-color: #1fc0f0;
}
.follow-icons li.follow-google-plus {
background-color: #e1584b;
}
.follow-icons li.follow-pinterest {
background-color: #c33c2d;
}
.follow-icons li.follow-instagram {
background-color: #9e6f4f;
}
.follow-icons li.follow-flickr {
background-color: #e9e8e9;
padding-top: 7px;
}
.follow-icons li.follow-dribbble {
background-color: #f3746a;
}
.follow-icons li {
width: 38px;
height: 38px;
border-radius: 50%;
margin-right: 3px;
}
.follow-icons li a {
color: #fff;
}
.facebk {
margin-left: 8px !important;
}
.dot1 {
font-size: 14px !important;
margin-left: 0 !important;
color: #0ca3d1 !important;
position: relative;
top: -2px;
left: 2px;
}
.dot2 {
font-size: 14px !important;
margin-left: 0 !important;
color: #f05b78 !important;
position: relative;
top: -2px;
left: 1px;
}
.fa {
margin-top: 8px;
margin-left: 4px;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: 23px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.social-pad {
padding-top: 45px;
}
.copy-right-box {
background-color: #222629 !important;
color: #45474f;
margin-top: 4%;
margin-bottom: 4.3%;
padding: 0;
}
.copy-right-box>li+li:before {
padding: 0 5px;
color: #45474f;
content: "/\00a0";
}
.footer-copy-right>li+li:before {
padding: 0 5px;
color: #45474f;
content: "/\00a0";
}
/*========================== FOOTER STYLES END =======================*/
/*========================== BACK TO TOP BUTTON STYLES =======================*/
.arrow-btn {
background-color: #00bff3 !important;
border-radius: 50%;
padding: 14px 16px;
}
a.nav-expander:hover {
cursor: pointer;
}
a.nav-expander.fixed {
position: fixed;
}
.nav-expanded a.nav-expander.fixed {
left: 20em;
}
.leftmenu-a {
color: #676971;
}
.plan-a:hover {
color: #676971 !important;
}
#back-to-top {
position: fixed;
bottom: 40px;
right: 40px;
z-index: 9999;
color: #444;
cursor: pointer;
border: 0;
transition: opacity 0.2s ease-out;
opacity: 0;
}
#back-to-top.show {
opacity: 1;
}
#back-to-top {
position: fixed;
bottom: 40px;
right: 40px;
z-index: 9999;
}
.footer-copy-right{
background-color: #25292C;
padding: 0;
font-weight: normal;
}
.footer-copy-right li a{
color: #45474f;
}
.footer-copy-right li a:hover{
color: #b14343;
}
/*========================== BACK TO TOP BUTTON STYLES END =======================*/
/*========================== FOLLOW US STYLES =======================*/
.follow-us {
background-color: #292d31;
padding-top: 5%;
padding-bottom: 5%;
}
.follow-h {
font-family: 'roboto', sans-serif;
font-weight: 300;
color: #ffffff;
font-size: 42px;
margin: 0;
margin-top: 8px;
padding-bottom: 20px;
}
.follow-p {
color: #9699a6;
font-size: 16px;
font-weight: normal;
}
/*social-icon*/
.follow-icons li.follow-facebook {
background: #3a5ba2;
}
.follow-icons li.follow-twitter {
background-color: #1fc0f0;
margin-left: 5px;
}
.follow-icons li.follow-google-plus {
background-color: #e1584b;
margin-left: 5px;
}
.follow-icons li.follow-pinterest {
background-color: #c33c2d;
margin-left: 5px;
}
.follow-icons li.follow-instagram {
background-color: #9e6f4f;
margin-left: 5px;
}
.follow-icons li.follow-leaf {
background-color: #7cb442;
margin-left: 5px;
}
.follow-icons li.follow-flickr {
background-color: #e9e8e9;
padding-top: 7px;
margin-left: 5px;
}
.follow-icons li.follow-dribbble {
background-color: #f3746a;
margin-left: 5px;
}
.follow-icons li {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 3px;
}
.follow-icons {
margin-top: 15%;
}
.follow-icons li a {
color: #fff;
}
.facebk {
margin-left: 8px !important;
}
.dot1 {
font-size: 14px !important;
margin-left: 0 !important;
color: #0ca3d1 !important;
}
.dot2 {
font-size: 14px !important;
margin-left: 0 !important;
color: #f05b78 !important;
}
.social-fa {
margin-top: 8px;
margin-left: 5px;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: 23px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.social-pad {
padding-top: 45px;
}
.menu {
width: 200px;
background-color: #fff;
position: absolute;
top: 100%;
left: 0;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
font-size: 14px;
}
.toggle-menu-possition {
position: relative;
right: 16px;
font-weight: normal;
}
.navigation-bar>.filter-li:focus,
.navigation-bar>.filter-li:hover {
color: #ddd;
border-top: 3px solid #00bff3;
padding-top: 32px;
}
.navigation-bar>.filter-li.active {
padding-top: 33px;
border-top: 3px solid #00bff3;
}
.navbar .navbar-nav>.active>.filter-a,
.navbar .navbar-nav>.active>.filter-a:hover,
.navbar .navbar-nav>.active>.filter-a:focus {
color: #00bff3;
}
.filter-a{
color: #00bff3 !important;
}
/*========================== FOLLOW US STYLES END =======================*/ | 0.222025 | 0.051177 |
html,body {
height: 100%;
color: #555555;
font-weight: 300;
font-size: 12px;
padding-top: 20px;
background-color: #FFF;
}
.form-label {
color: #666;
}
/* Link Colors */
a:link {color:inherit;}
a:visited {color:inherit;}
a:hover {color:inherit;}
a:active {color:inherit;}
.danger-action {
color: #b94a48;
}
.box {
background: #f9f9f9;
}
.box-invisible-content {
color: #f9f9f9;
}
h1 { color: #555; font-variant:small-caps; font-weight: 400; }
h2 { color: #555; font-variant:small-caps; font-weight: 400; }
h3 { color: #555; font-variant:small-caps; font-weight: 500; }
h4 { color: #666; font-variant:small-caps; font-weight: 500; }
h5 { color: #777; font-variant:small-caps; font-weight: 500; }
h6 { color: #999; font-variant:small-caps; font-weight: 500; }
.kopf-ace-editor {
width: auto;
border: 1px solid #ccc;
border-radius: 3px 3px 3px 3px;
text-align: left;
background: #fff !important;
}
.tooltip {
font-size: 13px;
opacity: 1.0 !important;
}
.tooltip-inner {
background: #f9f9f9;
color: #333;
border: 1px solid #ccc;
padding: 5px 5px 5px 5px;
}
.bordered {
border: 1px solid #ccc;
}
.shard {
text-align: center;
font-size: 11px;
display: inline-block;
width: 22px;
height: 22px;
border: 1px solid #666;
border-radius: 1px 1px 1px 1px;
vertical-align: middle;
text-align: center;
line-height: 20px;
margin-left: 3px;
margin-bottom: 5px;
opacity: 0.6;
}
.shard-primary {
opacity: 1;
}
.shard-started {
background: #6A995C;
color: #FFFFFF;
}
.shard-initializing {
background: #E7E5AE;
color: #909090;
}
.shard-relocated {
background: #E7E5AE;
color: #909090;
}
.shard-recovering {
background: #E7E5AE;
color: #909090;
}
.shard-closed {
background: #ECECEB;
color: #6B6969;
}
.shard-unallocated {
background: #ECECEB;
color: #6B6969;
}
/* selected pill color to grey */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
background-color: #eeeeee;
color: #333;
}
.validation-error {
color: #b94a48;
padding-top: 5px;
font-size: 13px;
font-weight: 300;
}
.modal-close-icon {
float: right;
font-size: 20px;
color: #b94a48;
padding-top: 2px;
cursor: pointer;
}
.confirm-dialog-body {
background: #fff;
font-size: 13px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
border: 0px;
line-height: 18px;
margin: 0px;
word-break: normal;
padding: 0px;
color: #333;
}
.modal-json {
font-size: 9px;
background: #ffffff;
}
.inactive-action {
color: #f0f0f0;
}
.remove-icon {
color: #b94a48;
float: right;
line-height: 18px;
padding-left: 5px;
}
.navbar-cluster-status- {
background-color: #ccc !important;
color: #666 !important;
height: 38px !important;
}
.navbar-cluster-status- > li.active > a {
background-color: #666 !important;
color: #ccc !important;
border-bottom: 0px;
}
.navbar-cluster-status- > li > a {
background-color: #ccc !important;
color: #666 !important;
border-bottom: 0px;
}
.navbar-cluster-status--nav {
background-color: #666 !important;
color: #ccc !important;
}
.navbar-cluster-status-green {
background-color: #468847 !important;
color: #dff0d8 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green > li.active > a {
background-color: #dff0d8 !important;
color: #468847 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green > li > a {
background-color: #468847 !important;
color: #dff0d8 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green-nav {
background-color: #dff0d8 !important;
color: #468847 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow {
background-color: #c09853 !important;
color: #fcf8e3 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow > li.active > a {
background-color: #fcf8e3 !important;
color: #c09853 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow > li > a {
background-color: #c09853 !important;
color: #fcf8e3 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow-nav {
background-color: #fcf8e3 !important;
color: #c09853 !important;
border-bottom: 0px;
}
.navbar-cluster-status-red {
background-color: #b94a48 !important;
color: #f2dede !important;
border-bottom: 0px;
}
.navbar-cluster-status-red > li.active > a {
background-color: #f2dede !important;
color: #b94a48 !important;
border-bottom: 0px;
}
.navbar-cluster-status-red > li > a {
background-color: #b94a48 !important;
color: #f2dede !important;
border-bottom: 0px;
}
.navbar-cluster-status-red-nav {
background-color: #f2dede !important;
color: #b94a48 !important;
border-bottom: 0px;
}
.navbar-toggle-red .icon-bar {
background: #f2dede !important;
}
.navbar-toggle-yellow .icon-bar {
background: #fcf8e3 !important;
}
.navbar-toggle-green .icon-bar {
background: #dff0d8 !important;
}
.navbar-brand {
padding: 0px 15px 0px 0px;
margin-left: 25px;
font-size: 38px;
font-variant: small-caps;
line-height: 32px;
font-weight: 100;
color: #dff0d8;
}
.navbar-toggle-red {
height: 22px;
width: 30px;
border: 1px solid #c09853;
}
.navbar-toggle-yellow {
height: 22px;
width: 30px;
border: 1px solid #fcf8e3;
}
.navbar-toggle-green {
height: 22px;
width: 30px;
border: 1px solid #dff0d8;
}
.navbar-app-settings {
color: #000000;
width: auto;
padding-left: 10px;
padding-right: 10px;
background: #fff;
border: 1px solid #ccc;
}
.navbar-menu-item {
font-size: 13px;
color: #555;
font-weight: 300;
}
.closed-index {
color: #D0D0D0 !important;
font-weight: 300 !important;
}
table {
border: 1px solid #ccc;
}
thead.overview {
border: 1px solid #ccc;
}
.index-cell {
max-height: 40px !important;
vertical-align: top !important;
border-bottom: 0px !important;
}
.form-control {
background: #fff;
border: 1px solid #ccc;
color: #555;
}
.panel-body {
background: #fff;
}
.panel-default > .panel-heading {
background: #f5f5f5;
}
.panel-default {
background: #fff;
border: 1px solid #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ddd
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td {
border: 1px solid #ccc;
}
.table thead:first-child tr:first-child th {
border-top: 1px solid #ccc;
}
.header-row {
font-weight: 700;
}
.header-row > td {
background: #f9f9f9 !important;
}
.ace-kopf {
color: #666 !important;
}
.ace-kopf .ace_marker-layer .ace_active-line {
background: #FFFFCC !important;
}
.ace-kopf .ace_marker-layer .ace_selection {
background: #b5d5ff !important;
}
.ace-kopf .ace_gutter {
color: #AAA !important;
background: #e8e8e8 !important;
}
.ace-kopf .ace_indent-guide {
opacity: 1.0 !important;
}
.ace-kopf .ace_cursor {
border-left: 2px solid #000;
}
.ace_hidden-cursors .ace_cursor {
opacity: 0.2;
}
.dropdown-menu .divider {
background: #e5e5e5;
}
.table-striped > tbody > tr:nth-child(odd) > td {
background: #f9f9f9;
}
.progress {
background: #f5f5f5;
}
.modal-content {
background: #fff;
}
.modal-header {
border-bottom: 1px solid #e5e5e5;
}
.table tbody > tr > td {
border-top: 1px solid #ddd;
}
/* JSON TREE CSS */
/* json string right " */
.json-object-expand:after {
content: '+';
}
.json-object-collapse:after {
content: '-';
}
/* properties for expand icon */
.json-object-expand {
display: inline-block;
font-weight: 500;
color: #999;
margin-left: 1px;
margin-right: 1px;
cursor: pointer;
}
/* properties for collapse icon */
.json-object-collapse {
display: inline-block;
font-weight: 500;
color: #999;
margin-left: 1px;
margin-right: 1px;
cursor: pointer;
}
/* global properties for json object */
.json-content {
color: #666;
}
/* json number style */
.json-number {
color: #D036D0;
}
/* json string style */
.json-string {
color: #2DB669;
}
/* json boolean style */
.json-boolean {
color: #2525CC;
}
/* json null style */
.json-null {
color: gray;
}
.popover-content {
background: #fff;
border-left: 1px solid rgba(0,0,0,.2);
border-right: 1px solid rgba(0,0,0,.2);
border-bottom: 1px solid rgba(0,0,0,.2);
border-radius: 0 0 5px 5px;
}
.popover-title {
background: #f7f7f7;
border: 1px solid rgba(0,0,0,.2);
border-radius: 5px 5px 0 0;
}
.popover {
border: 0px;
padding: 0px;
}
.dropdown-menu > li > a {
color: #555555;
}
.dropdown-menu > li > a:hover {
background: #f9f9f9;
color: #555555;
}
.dropdown-menu {
background: #fff;
} | plugins/kopf/_site/src/kopf/css/light_style.css | html,body {
height: 100%;
color: #555555;
font-weight: 300;
font-size: 12px;
padding-top: 20px;
background-color: #FFF;
}
.form-label {
color: #666;
}
/* Link Colors */
a:link {color:inherit;}
a:visited {color:inherit;}
a:hover {color:inherit;}
a:active {color:inherit;}
.danger-action {
color: #b94a48;
}
.box {
background: #f9f9f9;
}
.box-invisible-content {
color: #f9f9f9;
}
h1 { color: #555; font-variant:small-caps; font-weight: 400; }
h2 { color: #555; font-variant:small-caps; font-weight: 400; }
h3 { color: #555; font-variant:small-caps; font-weight: 500; }
h4 { color: #666; font-variant:small-caps; font-weight: 500; }
h5 { color: #777; font-variant:small-caps; font-weight: 500; }
h6 { color: #999; font-variant:small-caps; font-weight: 500; }
.kopf-ace-editor {
width: auto;
border: 1px solid #ccc;
border-radius: 3px 3px 3px 3px;
text-align: left;
background: #fff !important;
}
.tooltip {
font-size: 13px;
opacity: 1.0 !important;
}
.tooltip-inner {
background: #f9f9f9;
color: #333;
border: 1px solid #ccc;
padding: 5px 5px 5px 5px;
}
.bordered {
border: 1px solid #ccc;
}
.shard {
text-align: center;
font-size: 11px;
display: inline-block;
width: 22px;
height: 22px;
border: 1px solid #666;
border-radius: 1px 1px 1px 1px;
vertical-align: middle;
text-align: center;
line-height: 20px;
margin-left: 3px;
margin-bottom: 5px;
opacity: 0.6;
}
.shard-primary {
opacity: 1;
}
.shard-started {
background: #6A995C;
color: #FFFFFF;
}
.shard-initializing {
background: #E7E5AE;
color: #909090;
}
.shard-relocated {
background: #E7E5AE;
color: #909090;
}
.shard-recovering {
background: #E7E5AE;
color: #909090;
}
.shard-closed {
background: #ECECEB;
color: #6B6969;
}
.shard-unallocated {
background: #ECECEB;
color: #6B6969;
}
/* selected pill color to grey */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
background-color: #eeeeee;
color: #333;
}
.validation-error {
color: #b94a48;
padding-top: 5px;
font-size: 13px;
font-weight: 300;
}
.modal-close-icon {
float: right;
font-size: 20px;
color: #b94a48;
padding-top: 2px;
cursor: pointer;
}
.confirm-dialog-body {
background: #fff;
font-size: 13px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
border: 0px;
line-height: 18px;
margin: 0px;
word-break: normal;
padding: 0px;
color: #333;
}
.modal-json {
font-size: 9px;
background: #ffffff;
}
.inactive-action {
color: #f0f0f0;
}
.remove-icon {
color: #b94a48;
float: right;
line-height: 18px;
padding-left: 5px;
}
.navbar-cluster-status- {
background-color: #ccc !important;
color: #666 !important;
height: 38px !important;
}
.navbar-cluster-status- > li.active > a {
background-color: #666 !important;
color: #ccc !important;
border-bottom: 0px;
}
.navbar-cluster-status- > li > a {
background-color: #ccc !important;
color: #666 !important;
border-bottom: 0px;
}
.navbar-cluster-status--nav {
background-color: #666 !important;
color: #ccc !important;
}
.navbar-cluster-status-green {
background-color: #468847 !important;
color: #dff0d8 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green > li.active > a {
background-color: #dff0d8 !important;
color: #468847 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green > li > a {
background-color: #468847 !important;
color: #dff0d8 !important;
border-bottom: 0px;
}
.navbar-cluster-status-green-nav {
background-color: #dff0d8 !important;
color: #468847 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow {
background-color: #c09853 !important;
color: #fcf8e3 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow > li.active > a {
background-color: #fcf8e3 !important;
color: #c09853 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow > li > a {
background-color: #c09853 !important;
color: #fcf8e3 !important;
border-bottom: 0px;
}
.navbar-cluster-status-yellow-nav {
background-color: #fcf8e3 !important;
color: #c09853 !important;
border-bottom: 0px;
}
.navbar-cluster-status-red {
background-color: #b94a48 !important;
color: #f2dede !important;
border-bottom: 0px;
}
.navbar-cluster-status-red > li.active > a {
background-color: #f2dede !important;
color: #b94a48 !important;
border-bottom: 0px;
}
.navbar-cluster-status-red > li > a {
background-color: #b94a48 !important;
color: #f2dede !important;
border-bottom: 0px;
}
.navbar-cluster-status-red-nav {
background-color: #f2dede !important;
color: #b94a48 !important;
border-bottom: 0px;
}
.navbar-toggle-red .icon-bar {
background: #f2dede !important;
}
.navbar-toggle-yellow .icon-bar {
background: #fcf8e3 !important;
}
.navbar-toggle-green .icon-bar {
background: #dff0d8 !important;
}
.navbar-brand {
padding: 0px 15px 0px 0px;
margin-left: 25px;
font-size: 38px;
font-variant: small-caps;
line-height: 32px;
font-weight: 100;
color: #dff0d8;
}
.navbar-toggle-red {
height: 22px;
width: 30px;
border: 1px solid #c09853;
}
.navbar-toggle-yellow {
height: 22px;
width: 30px;
border: 1px solid #fcf8e3;
}
.navbar-toggle-green {
height: 22px;
width: 30px;
border: 1px solid #dff0d8;
}
.navbar-app-settings {
color: #000000;
width: auto;
padding-left: 10px;
padding-right: 10px;
background: #fff;
border: 1px solid #ccc;
}
.navbar-menu-item {
font-size: 13px;
color: #555;
font-weight: 300;
}
.closed-index {
color: #D0D0D0 !important;
font-weight: 300 !important;
}
table {
border: 1px solid #ccc;
}
thead.overview {
border: 1px solid #ccc;
}
.index-cell {
max-height: 40px !important;
vertical-align: top !important;
border-bottom: 0px !important;
}
.form-control {
background: #fff;
border: 1px solid #ccc;
color: #555;
}
.panel-body {
background: #fff;
}
.panel-default > .panel-heading {
background: #f5f5f5;
}
.panel-default {
background: #fff;
border: 1px solid #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ddd
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td {
border: 1px solid #ccc;
}
.table thead:first-child tr:first-child th {
border-top: 1px solid #ccc;
}
.header-row {
font-weight: 700;
}
.header-row > td {
background: #f9f9f9 !important;
}
.ace-kopf {
color: #666 !important;
}
.ace-kopf .ace_marker-layer .ace_active-line {
background: #FFFFCC !important;
}
.ace-kopf .ace_marker-layer .ace_selection {
background: #b5d5ff !important;
}
.ace-kopf .ace_gutter {
color: #AAA !important;
background: #e8e8e8 !important;
}
.ace-kopf .ace_indent-guide {
opacity: 1.0 !important;
}
.ace-kopf .ace_cursor {
border-left: 2px solid #000;
}
.ace_hidden-cursors .ace_cursor {
opacity: 0.2;
}
.dropdown-menu .divider {
background: #e5e5e5;
}
.table-striped > tbody > tr:nth-child(odd) > td {
background: #f9f9f9;
}
.progress {
background: #f5f5f5;
}
.modal-content {
background: #fff;
}
.modal-header {
border-bottom: 1px solid #e5e5e5;
}
.table tbody > tr > td {
border-top: 1px solid #ddd;
}
/* JSON TREE CSS */
/* json string right " */
.json-object-expand:after {
content: '+';
}
.json-object-collapse:after {
content: '-';
}
/* properties for expand icon */
.json-object-expand {
display: inline-block;
font-weight: 500;
color: #999;
margin-left: 1px;
margin-right: 1px;
cursor: pointer;
}
/* properties for collapse icon */
.json-object-collapse {
display: inline-block;
font-weight: 500;
color: #999;
margin-left: 1px;
margin-right: 1px;
cursor: pointer;
}
/* global properties for json object */
.json-content {
color: #666;
}
/* json number style */
.json-number {
color: #D036D0;
}
/* json string style */
.json-string {
color: #2DB669;
}
/* json boolean style */
.json-boolean {
color: #2525CC;
}
/* json null style */
.json-null {
color: gray;
}
.popover-content {
background: #fff;
border-left: 1px solid rgba(0,0,0,.2);
border-right: 1px solid rgba(0,0,0,.2);
border-bottom: 1px solid rgba(0,0,0,.2);
border-radius: 0 0 5px 5px;
}
.popover-title {
background: #f7f7f7;
border: 1px solid rgba(0,0,0,.2);
border-radius: 5px 5px 0 0;
}
.popover {
border: 0px;
padding: 0px;
}
.dropdown-menu > li > a {
color: #555555;
}
.dropdown-menu > li > a:hover {
background: #f9f9f9;
color: #555555;
}
.dropdown-menu {
background: #fff;
} | 0.297164 | 0.088308 |
.moduleRow { }
.moduleRowOver { background-color: #D7E9F7; cursor: pointer; }
.moduleRowSelected { background-color: #E9F4FC; }
.checkoutBarFrom, .checkoutBarTo { font-family: "open Sans"; font-size: 10px; color: #8c8c8c; }
.checkoutBarCurrent { font-family: "open Sans"; font-size: 10px; color: #626262; }
/* message box */
.messageBox { font-family: "open Sans"; font-size: 10px; }
.messageStackError, .messageStackWarning { font-family: "open Sans"; font-size: 10px; background-color: #ffb3b5; }
.messageStackSuccess { font-family: "open Sans"; font-size: 10px; background-color: #99ff00; }
/* input requirement */
.inputRequirement { font-family: "open Sans"; font-size: 10px; color: #ff0000; }
.border {
font-family:"open Sans";
color: #626262;
font-size: 11px;
border: 1px solid #c4c4c4;
}
.shadow {
background-color: #525552;
}
/*
$Id: dynamenu_for_osc_styles.txt,v 1.00 2006/05/07 20:04:02 nate_02631 Exp $
Dynamenu for osCommerce CSS Definitions
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
Below are styles to be included in your catalog stylesheet (stylesheet.css) for
use with Dynamenu for osCommerce. All the CSS declarations for various menu styles
are included below. You need only include the style for the type of menu you plan
to use in your store template (of course feel free to paste them all in if experimenting).
The plain and DHTML menus also work with a set of templates found in the
/includes/functions/dynamenu/templates folder, but in just about all cases
modifying the styles below should net you the results you want.
*/
/*-------------------------------------*/
/* Horizontal Drop-Down Menu Style */
/*-------------------------------------*/
.horbar { /* Color of main horizontal menubar and border */
color: black;
background-color: #e6e7e6;
border: 1px outset #525252;
}
.horizitem { /* Behaviour of main horizontal menu items, leave as is for proper operation */
float: left;
white-space: nowrap;
}
.horizitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.horizitem a:link, .horizitem a:visited { /* Font style & color of main menu items */
color: #626262;
text-decoration: none;
}
.horizitem a:hover { /* Font style & color, background menu color of main menu item when hovered over */
color: #ffffff;
background-color: #ffffff;
text-decoration: none;
}
.horizitem a:active { /* Font style & color, background menu color of main menu item when clicked */
color: #ffff00;
background-color: #626263;
text-decoration: none;
}
.horizsubmenu { /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
.horizsubframe { /* Color of submenu item and border */
background-color: #ffffff;
border: 2px outset #fdfefd;
position: relative;
display: block;
}
.horizsubitem { /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
text-align: left;
white-space: nowrap;
}
.horizsubitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.horizsubitem a:link, .horizsubitem a:visited { /* Font color, style of submenu items */
color: #626262;
font-size: 11px;
text-decoration: none;
}
.horizsubitem a:hover { /* Font color, style, background submenu color of submenu item when hovered over */
color: #ffffff;
background-color: #21459c;
text-decoration: none;
}
.horizsubitem a:active { /* Font color, style, background submenu color of submenu item when clicked */
color: #ffff00;
background-color: #626263;
text-decoration: none;
}
.horizsubitem .horizfwdarr, .horizitem .horizfwdarr { /* Positioning of right arrow for submenus */
position: absolute;
top: 5px;
right: 8px;
}
.dmselected { /* Style override for selected category tree */
background-color: #ccc;
font-weight: bold;
}
.horbar .dmselected { /* Style override for selected root category */
background-color: #999;
}
/*---------------------------------*/
/* Vertical Fly-Out Menu Style */
/*---------------------------------*/
.verbar { /* Color of main vertical menubar and border */
color: black;
background-color: #ffffff;
}
.vertitem { /* Behaviour of main vertical menu items, leave as is for proper operation */
text-align: left;
white-space: nowrap;
}
.vertitem a { /* Font style, size of main menu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.vertitem a:link, .vertitem a:visited { /* Default font style & color of main menu items */
color: #626262;
text-decoration: none;
}
.vertitem a:hover { /* Font style & color, background menu color of main menu item when hovered over */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertitem a:active { /* Font style & color, background menu color of main menu item when clicked */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubmenu { /* Behaviour of sub-menu - leave as is for proper operation of submenus */
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
.vertsubframe { /* Color of submenu item and border */
background-color: #ffffff;
border: 2px #efefef;
position: relative;
display: block;
}
.vertsubitem { /* Behaviour of sub-menu - leave as is for proper operation of submenus */
text-align: left;
white-space: nowrap;
}
.vertsubitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.vertsubitem a:link, .vertsubitem a:visited { /* Default font style & color of submenu items */
color: #626262;
text-decoration: none;
}
.vertsubitem a:hover { /* Font style & color, background submenu color of submenu item when hovered over */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubitem a:active { /* Font style & color, background submenu color of submenu item when clicked */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubitem .vertfwdarr, .vertitem .vertfwdarr { /* Positioning of right arrow for submenus */
position: absolute;
top: 5px;
right: 8px;
}
.dmselected { /* Style override for selected category tree */
background-color: #ffffff;
font-weight: bold;
color: #626262;
}
.verbar .dmselected { /* Style override for selected root category */
background-color: #ffffff;
color: #626262;
}
/*---------------------------*/
/* Tree and Plain Menu Style */
/*---------------------------*/
.treemenudiv { /* Behaviour of tree/plain menu item - leave as is for proper performance */
display: block;
white-space: nowrap;
}
.phplmbodytable { /* Class of table cells containing plain menus */
}
.phplmnormal { /* Font size & color of unlinked menu items */
color: #626262;
font-size: 11px;
text-decoration: none;
}
a.phplm:link, a.phplm:visited { /* Font color, style of linked & visited menu items */
color: #ffffff;
font-size: 11px;
text-decoration: none;
}
a.phplm:hover { /* Font color, style of menu items when hovered over */
color: #626262;
background-color: #ffffff;
font-size: 11px;
text-decoration: none;
}
a.phplm:active { /* Font size & color of menu items when clicked */
color: #ffffff;
font-size: 11px;
text-decoration: none;
}
.dmselected { /* Style overide for selected category tree */
background-color: #ffffff;
font-weight: bold;
color: #626262;
}
#loader{
visibility:hidden;
}
#f1_upload_form{
height:100px;
}
#f1_ok{
font-family: "open Sans";
font-size: 12px;
font-weight:bold;
color:#00FF00;
}
#f1_upload_form {
font-family: "open Sans";
font-size: 11px;
color: #626262;
}
#f1_upload_process{
visibility:hidden;
position:absolute;
}
button {
font-family: "open Sans";
font-size: 12px;
font-weight: bold;
color: #FFFFFF;
height: 22px;
background-image: url(images/button.gif);
}
.error{
font-family: "open Sans";
font-size: 11px;
font-weight:bold;
color:#FF0000;
}
/*--------------- my css -------------------*/
hr{
color:#626262;
margin:0;
padding:0;
clear:both;
}
.center{
margin-left:auto;
margin-right:auto;
}
.left{
float:left;
}
.right{
float:right;
}
.center-text{
text-align:center;
}
.header-main{
margin:0 auto;
overflow:hidden;
width:1000px;
background:#000000;
padding-top:10px;
}
.header-banner-container{
width:auto;
height:167px;
background:#fff;
}
.header-content{
width:950px;
overflow:hidden;
margin:0 auto;
}
.customer-bar{
height:25px;
width:auto;
background:#000000;
text-align:right;
padding:0 30px;
}
.customer-bar p{
float:right;
margin:4px 0;
padding:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
color:#fff;
}
.customer-bar p a{
color:#fff;
text-decoration:none;
}
.customer-bar p a:hover{
text-decoration:underline;
}
.logo-container{
width:240px;
height:80px;
/* border:solid 1px #626262;*/
float:left;
margin-left:5px;
margin-top:16px;
}
.banner-img{
float:right;
width:620px;
margin-right:20px;
height:120px;
}
.banner-img img{
float:right;
margin:10px 5px;
}
.main-nav-wrap{
clear:both;
width:auto;
overflow:hidden;
min-height:34px;
border-bottom:1px solid #999999;
border-top: solid 1px #999999;
text-align:center;
padding:0 20px;
}
.main-nav-wrap ul{
list-style:none;
margin:0 auto;
padding:0;
}
.main-nav-wrap ul li{
float:left;
padding:10px 6px 0 6px;
font-family:"open Sans";
font-weight:bold;
font-size:14px;
color:#878787;
}
.main-nav-wrap ul li a{
color:#878787;
text-decoration:none;
}
.main-nav-wrap ul li a:hover{
color:#878787;
text-decoration:underline;
}
.photo-on-canvas-left {
padding: 0px;
}
#fadeshow {
width: 100%;
}
.std-size .images {
padding: 0px;
overflow: hidden;
}
.product-field .product_browse {
display: none;
}
.banner-right{
/*width:700px;*/
float:right;
background-color:#FFFFFF;
border:0px solid #c4c4c4;
}
.content{
width:auto;
overflow:hidden;
clear:both;
margin:0px;
margin-bottom:20px;
padding: 0px;
padding-bottom: 5px;
}
span.hasTooltip {
display: none;
}
.aProductTab .acrylic{
border-bottom:solid 10px #eeecdf;
margin: 10px 0px;
padding-bottom: 10px;
}
.customImage img{
padding: 0px;
height: 460px;
}
.new-heading{
font-size: 20px !important;
color: #fff !important;
font-weight: normal;
background: #3a91c6;
margin: 0px;
padding: 15px;
}
.customImage img:first-child {
padding-right: 10px;
}
.customImage img:last-child {
padding-left: 10px;
}
.reset, .remind{
margin:0 10px;
overflow:hidden;
clear:both;
}
.reset fieldset, .remind fieldset{
margin:0;
padding:0;
border:0;
float:left;
}
.reset .validate , .remind .validate {
line-height: normal;
padding: 6px 15px !important;
height: auto;
}
.content-sub{
overflow:hidden;
padding-left: 0px;
}
.acrylic p {
padding: 10px;
background: #eee;
}
.acrylic h2 {
background: #3A91C6;
font-size: 24px !important;
padding: 5px 20px !important;
color: #fff !important;
}
/*
.heading-blue{
width:300px;
min-height:25px;
overflow:hidden;
background:#3a91c6;
color:#fff;
margin:0 0 10px 0;
text-transform:capitalize;
font-family:"open Sans";
font-size:17px;
font-weight:bold;
padding-left:15px;
padding-top:5px;
}
*/
.heading-grey{
width:240px;
height:25px;
background:#676767;
color:#fff;
margin:0 0 5px 0;
font-family:"open Sans";
font-size:15px;
font-weight:bold;
padding-left:15px;
padding-top:5px;
}
.processing-flow{
font-family: "open Sans";
font-size: 16px;
color: #585858;
text-transform: capitalize;
font-weight: bold;
clear: left;
width: 85%;
margin: 0px auto;
margin-top: 20px;
margin-bottom: 20px;
}
.processing-flow i.fa{
font-size: 75px;
float: left;
margin-left: 10px;
}
.processing-flow i.fa.fa-arrow-down {
display: none;
}
.processing-flow span{
color:#408ac7;
}
.blue-box{
min-height: 155px;
height: auto;
width:48%;
border: solid 1px #b5c6d0;
background:#d8e9f3;
margin-bottom:15px;
overflow:hidden;
padding: 20px;
border-radius: 3px;
}
dl.article-info.muted {
display: none;
}
.left-box{
float: left;
}
.right-box{
float: right;
}
.blue-box h1{
font-family:"open Sans";
font-size:15px;
color:#5b5f62;
text-transform:capitalize;
margin:0px;
margin-bottom: 5px;
}
.blue-box h1 span{
color:#3492cf;
}
.blue-box p{
font-family:"open Sans";
font-size:13px;
color:#626262;
margin:0px
font-weight:normal;
}
input.submit-order{
margin-left:auto;
margin-right:auto;
width:131px;
height:36px;
background:url(../images/order-now-button.gif) no-repeat;
border:0;
font-family:"open Sans";
color:#fff;
font-size:22px;
}
.footer-wrap{
padding-top:30px;
margin:0 auto;
background-color:#FFFFFF;
border-top:solid 10px #a7a7a7;
width:900px;
height:100px;
text-align:center;
}
.footer-wrap p{
font-size:13px;
color:#626262;
margin:0;
padding:0;
font-family:"open Sans";
}
.footer-wrap h1{
margin:0;
padding:0;
font-size:14px;
color:#6b6974;
font-family:"open Sans";
}
.footer-wrap h1 a{
color:#6b6974;
text-decoration:none;
}
.footer-wrap h1 a:hover{
text-decoration:underline;
}
.block-mount{
}
.block-mount ul{
margin:0 20px 0 0;
padding:0;
float:left;
list-style:none;
}
.block-mount ul li{
background:url(../images/tick.png) no-repeat;
padding-left:40px!important;
font-size:18px;
font-family:"open Sans";
color:#626262;
padding-top:10px;
line-height:36px;
}
.blockmount-bottom{
width: auto;
height:auto;
margin:20px auto;
padding:40px;
text-align:center;
background:#f1f1f1;
}
.blockmount-bottom div{
margin:10px auto;
width:160px;
}
.blockmount-bottom span{
display:block;
background:#ff6403;
width:722px;
height:30px;
margin:20px auto;
text-align:center;
color:#FFFFFF;
font-family:"open Sans";
font-size:15px;
font-weight:bold;
padding-top:10px;
}
.block-mount .blockmount-a{
float:right;
position:absolute;
margin-left:300px;
margin-top: -230px;
}
.blockmount-bottom p{
font-family:"open Sans";
font-size:14px;
text-transform:capitalize;
font-weight:bold;
color:#626262;
}
.acrylic-img-blocks{
float:left;
margin-right:8px;
border:solid 1px #7c7c7c;
margin-top:20px;
}
.acrylic-img-blocks-r{
float:left;
border:solid 1px #7c7c7c;
margin-top:20px;
}
.acrylic .content-sub input.button{
height:32px;
width:124px;
background:#8b736f;
border:0;
font-size:18px;
color:#fff;
}
.acrylic .content-sub .view-price{
height:auto;
width:202px;
background:#8bcff4;
font-family:"open Sans";
font-size:14px;
font-weight:bold;
color:#fff;
padding:10px;
margin-bottom:10px;
}
/*
.content-sub .heading-blue{
margin-top:0;
}
*/
.poc{
padding-bottom:18px;
border-bottom:12px solid #eeecdf;
}
/*
.poc .heading-grey, .poc .heading-blue{
width:465px;
}
*/
.poc .content-sub{
width:495px;
}
.poc .content-sub-1{
float:right;
width:426px;
}
.poc .content-sub-1 .greybox{
background:#cacaca;
width:auto;
padding:10px 8px;
color:#5d5d5d;
font-family:"open Sans";
font-size:18px;
margin-bottom:15px;
}
.poc .content-sub-1 .greybox p{
margin:0;
padding:0;
}
.poc .content-sub-1 img{
border: solid 1px #5b5b5b;
clear: both;
margin-bottom:15px;
width:99%;
}
.poc .content-sub-1 img#display1{
border: solid 1px #5b5b5b;
clear: both;
margin-bottom:15px;
width:99%;
margin-top:30px;
}
.poc .content-sub h1{
font-family:"Arial Narrow";
font-size:22px;
color:#5d5d5d;
text-transform:uppercase;
font-weight:normal;
}
.photo-art-thumb{
width:152px;
height:196px;
background:url(../images/photo-art-text-bg.gif) repeat-x bottom;
float:left;
margin-right:10px;
margin-bottom:15px;
overflow:hidden;
}
.photo-art-thumb p{
clear:both;
font-family:"open Sans";
color:#5c5b57;
padding-top:9px;
padding-left:5px;
margin:0;
font-size:12px;
}
.photo-art-thumb-img{
height:162px;
width:152px;
overflow:hidden;
cursor: pointer;
}
.photo-art-thumb img{
border:solid 1px #757f88;
width:100%;
}
.photo-art-btm{
clear:both;
width:auto;
min-height:50px;
overflow:hidden;
}
.photo-art-btm-sub{
height:197px;
width:190px;
float:left;
overflow:hidden;
}
.photo-art-btm-sub-top{
z-index:100;
background:url(/images/original-image-label.png) center no-repeat;
background-color:#000000;
height:30px;
width:auto;
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-opacity: .5;
-khtml-opacity: .5;
opacity: .5; /* for future compatibility */
}
.photo-art-btm-sub1{
float:right;
width:220px;
overflow:hidden;
}
.photo-art-btm-sub1 .heading-blue{
width:auto;
margin-bottom:18px;
}
.photo-art-btm-sub1 p{
font-family:"open Sans";
font-size:14px;
color:#404040;
font-weight:normal;
margin:0 0 15px 0;
}
.photo-art-blue-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-grey-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-grey-btn span
{
margin:0px;
padding:0px;
float:left;
width:auto;
height:20px;
padding:5px 15px;
color:#fff;
text-decoration:none;
background:#333;
}
.photo-art-grey-btn span:hover
{
background:#3A91C6;
}
.photo-art-bl-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-bl-btn a
{
margin:0px;
float:left;
width:auto;
padding:10px 20px;
color:#fff;
text-decoration:none;
background:#3A91C6;
margin-right:10px;
text-transform: uppercase;
font-size: 16px;
font-weight: normal;
}
.photo-art-bl-btn a:hover{
opacity: 0.8;
}
.photo-art-bl-btn a:hover
{
background:#3A91C6;
}
.photo-art-blue-btn a
{
margin:0px;
float:right;
width:auto;
padding:5px 15px;
color:#fff;
text-decoration:none;
background:#3A91C6;
}
.block-mount-left-img img {
width: 100%;
}
.blockmount-bottom .photo-art-blue-btn a
{
margin: 0px;
height: auto;
float: right;
width: 100%;
padding: 15px 35px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
background: #3A91C6;
}
.blockmount-bottom .photo-art-blue-btn a:hover {
background: #3A91C6;
}
.content-sub .collage-thumb{
height:220px;
width:152px;
float:left;
margin-right:10px;
margin-bottom:15px;
border:solid 0px transparent;
background:url(../images/collage-text-bg.gif) repeat-x bottom;
}
.collage-thumb{
height:200px;
width:164px;
float:left;
margin-right:16px;
margin-bottom:15px;
border:solid 5px transparent;
/*ackground:url(../images/collage-text-bg.gif) repeat-x bottom;*/
background:#eeecdf;
text-align:center;
}
.collage-thumb img{
border: solid 1px #757a7d;
height:auto;
width:100%;
cursor: pointer;
margin:0;
}
/*.collage-thumb.selected{
border-color:#8dcef6;
}
.collage-thumb.selected img, .collage-thumb img:hover{
opacity:1;
}*/
.collage-thumb-dbl p{
font-family:"open Sans";
color:#5c5b57;
padding-top:12px;
padding-left:5px;
margin:0;
font-size:12px;
text-transform:capitalize;
padding-top:185px;
}
span.quantity-box{float:left; margin-right: 10px;}
.collage-thumb p{
font-family:"open Sans";
color:#5c5b57;
padding-top:12px;
padding-left:5px;
margin:0;
font-size:12px;
text-transform:capitalize;
padding-top:185px;
}
.collage-thumb-dbl{
height:220px;
width:314px;
/*margin-top:10px;*/
float:left;
margin-right:10px;
margin-bottom:15px;
background:url(../images/collage-text-bg.gif) repeat-x bottom;
}
.collage-thumb-dbl img{
border: solid 1px #757a7d;
cursor: pointer;
height:200px;
}
.content-sub-1 .heading-grey, .content-sub-1 .heading-blue {
width:auto;
clear:both;
font-size:15px;
margin-bottom:10px;
}
.heading-blue h1{
margin: 0;
font-size: 33px;
font-weight: normal;
line-height: 36px;
color: #626262;
}
.content-sub-1 p{
margin:0 0 10px 0;
padding:0;
font-family:"open Sans";
font-size:14px;
color:#626262;
padding-left:5px;
padding-right: 5px;
margin-top:10px;
}
.collage-links{
margin:15px auto;
width:245px;
overflow:hidden;
}
.no-border-bottom{
border-bottom:0;
}
.order ul{
list-style:none;
font-family:"open Sans";
}
.order ul li{
color:#626262;
margin:0;
padding:0;
height:40px;
clear:both;
}
.order ul li label{
float:left;
width:200px;
text-transform:capitalize;
color:#626262;
font-weight:bold;
font-size:12px;
}
.order ul li input{
float:left;
}
.order ul li input.radio , .order ul li input.check{
margin:7px 0 0 0
}
.order ul li p{
margin:5px 0 0 0;
padding:0;
float:left;
width:auto;
clear:none;
font-weight:normal;
text-transform:capitalize;
}
.order ul li p a{
color:#3a91c6;
}
.heading-blue{
width:100%;
margin:0px;
margin-bottom: 20px;
padding:0px;
padding-top:5px;
font-size: 30px;
text-transform: capitalize;
}
.order h1{
font-family:"open Sans";
font-size:14px;
clear:both;
font-weight:normal;
color:#626262;
}
.order p{
font-family:"open Sans";
font-size:14px;
clear:both;
font-weight:normal;
color:#626262;
}
.order .hidden{
position:absolute;
z-index:100;
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-opacity: .5;
-khtml-opacity: .5;
opacity: .5; /* for future compatibility */
}
.gift_voucher_form .product-fields {
padding-right: 30px;
}
.gift_voucher_button {
clear: both;
}
.selectors{
/* position:absolute;
z-index:50;*/
clear:both;
margin-bottom:30px;
overflow:hidden;
width:auto;
display:block;
}
.order-form{
}
.order h1{
font-size:12px;
clear:both;
}
.order h2{
font-size:14px;
clear:both;
font-weight:bold;
color: #3891c9;
}
.order-form select, .order-form textarea{
background: #CCCCCC;
border: 1px solid #999999;
color: #626262;
font-family: Arial,Helvetica,"open Sans";
font-size: 12px;
margin: 0 20px 0 0;
padding: 5px;
width: auto;
}
.order-form textarea{
height:160px;
width:590px;
border-right:solid 1px #666666;
margin-bottom:60px;
}
.quantity{
width:120px;
}
.size{
width:216px;
}
.lamination{
width:180px;
}
.effect{
width:170px !important;
}
.edge{
width:200px !important;
}
.edge_photo_canvas{
width:100px !important;
}
.edge_photo_collage{
width:100px !important;
}
.edge_into_art{
width:100px !important;
}
.select{
width:200px !important;
}
.upload-img{
margin-bottom:30px;
}
.upload-img img{
margin-top:0px;
float:left;
margin-left:250px;
position:absolute;
cursor:pointer;
}
.upload-img input{
position:absolute;
width:280px;
height:31px;
background:#FFF;
border:#3a91c6 1px solid;
float:left;
font-family: Verdana,Arial,"open Sans";
font-size: 11px;
}
.upload-img input.button{
height:32px;
width:170px;
background:#3a91c6;
border:0;
font-size:14px;
font-weight:bold;
color:#fff;
position:absolute;
cursor:pointer;
margin-bottom:15px;
margin-left: 375px;
float:left;
}
.upload-img input.button:hover
{
background:#333;
}
.upload-img1{
float:right;
width:auto;
height:30px;
}
.upload-img1 input.button{
height:32px;
width:124px;
background:#3a91c6;
border:0;
font-size:14px;
font-weight:bold;
color:#fff;
position:relative;
cursor:pointer;
margin-bottom:15px;
float:right;
}
.upload-img1 input.button:hover
{
background:#333;
}
.body-wrap{
margin:0px;
overflow:hidden;
}
.body-wrap p
{
font-size:14px;
text-align: justify;
width: 100%;
overflow: hidden;
}
.body-wrap p img{
margin: 0 auto;
display: table;
}
.aluminium-right-img{
padding-left: 0px;
}
.upload-img input.hidden{
margin-left:150px;
margin-top:15px;
width:150px;
position:absolute;
cursor: pointer;
filter: alpha(opacity=0);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0; /* for future compatibility */
}
.customUploadWrapper{
margin: 0px;
}
.australian-made-text{
padding: 0px;
}
.australian-made-text h5{
background: #F90;
}
.std-size{
overflow:hidden;
clear:both;
width:auto;
}
.acrylic-photo-block-thumb img{
float:left;
}
.canvas-std-size{
}
.canvas-img,.photo-on-canvas-thumb-img{
float:left;
height:205px;
margin:0;
}
.canvas-img img,.photo-on-canvas-thumb-img img{
width:auto;
height:auto;
}
.photo-on-canvas-thumb{
margin-left:25px;
}
.std-size img{
border: 0px solid #000;
margin: 0 auto;
text-align: center;
float: none;
width: 100%;
}
.photo-on-canvas-orb-btn{
clear:both;
}
.acrylic-sandwich-mount-thumb-img img{
border: 1px solid #000 !important;
}
.Non_cart_Image_Attributes_Title{
}
.Non_cart_Image_Attributes_Title span{
float:left;
margin:0px;
padding:0px;
}
.clear-left{
clear:left;
}
.order .content-sub{
overflow:hidden;
}
.order .content-sub img{
margin-bottom:30px;
}
.content-sub img.right{
float:right;
}
.content-sub img{
margin-right:7px;
}
.button-list {
padding: 0px;
margin-bottom: 10px;
}
.photo-print-images{
clear:both;
overflow:hidden;
width:auto;
margin-bottom:20px;
}
.photo-print-images img{
border:solid 2px #3a91c6;
}
.photo-print-images img.left{
float:left;
}
.photo-print-images img.right{
float:right;
}
.image-submitted{
position:absolute;
margin-left:600px;
height:300px;
width:400px;
}
.image-submitted img{
border:solid 1px #626262;
}
.block-image{
clear:both;
padding-bottom:30px;
overflow:hidden;
}
.block-image ul{
list-style:none;
overflow:hidden;
display:inline;
}
.block-image ul li{
float:left;
overflow:hidden;
height:auto;
clear:none;
margin-right:60px;
margin-bottom:30px;
}
.block-image ul li img, .block-image ul li p{
float:left;
border:solid 1px #3891c9;
padding:0;
margin:10px 0 0 0;
}
.block-image ul li p{
border:0;
clear:both;
}
.order-processing
{
margin:0px;
padding:0px;
float:left;
margin-top:15px;
height:auto;
width:auto;
}
.order-processing .content-sub-1{
width:430px;
float:left;
/* border-right:solid 1px #626262;*/
border:2px solid #3A91C6;
padding-bottom:10px;
margin-left:25px;
}
.order-processing .content-sub
{
float:left;
padding-right:20px;
/* border-right:solid 1px #626262;*/
border:2px solid #3A91C6;
padding-bottom:10px;
width:450px;
}
.heading_blue_mycart
{
font-family:"open Sans" !important;
margin:0 0 0 0 !important;
padding:0 !important;
font-size:18px !important;
height:35px !important;
line-height:32px !important;
padding-left:15px !important;
width:auto !important;
font-weight:normal !important;
background: none repeat scroll 0 0 #3A91C6 !important;
color: #FFFFFF !important;
font-size: 18px !important;
line-height: 32px !important;
margin-bottom:20px !important;
}
.order-processing .content-sub-1 form ul li input
{
margin:0px;
padding:0px;
float:left;
background:#FFF;
border:1px solid #ccc;
margin-bottom:8px;
}
.order-processing .content-sub-1 form ul li input.button[Type="Submit"]
{
background: none repeat scroll 0 0 #3A91C6;
color: #FFFFFF;
float: right;
height: auto;
margin: 0;
padding: 5px 15px;
text-decoration: none;
width: auto;
margin-right:35px;
margin-top:5px;
}
.order-processing .content-sub-1 form ul li input.button[Type="Submit"]:hover
{
background:#333;
}
.order-processing .content-sub-1 form ul li a.forgot-pwd
{
margin:0px;
padding:0px;
float:right;
margin-right:15px;
color:#09F;
font-size:14px;
font-family:"open Sans";
font-weight:normal;
margin-top:10px;
}
.order-processing .content-sub-1 form ul li a.forgot-pwd:hover
{
color:#333;
}
.order-processing h1{
font-family:"Arial Narrow";
color:#626262;
margin:0 0 0 0;
padding:0;
font-size:20px;
}
.order-processing .content-sub h2, .order-processing h2{
margin:10px 0;
padding:0;
font-size:22px;
font-family:"Arial Narrow";
color:#3a91c6;
font-weight:normal;
}
.order-processing .content-sub h2 a
{
margin:0px;
padding:0px;
float:left;
margin-left:20px;
color:#3a91c6;
font-size:14px;
width:430px;
margin-bottom:10px;
}
.order-processing h3, .order-processing .content-sub h4{
color:#3a91c6;
font-size:14px;
font-family:"open Sans";
}
.order-processing ul{
list-style:none;
}
.order-processing ul li{
font-family:"open Sans";
font-size:14px;
margin:5px 0;
}
.order-processing textarea{
width:930px;
height:100px;
margin:0 0 20px 0;
background:#cecece;
clear:both;
float:left;
}
.order-processing textarea{
width:440px;
}
.order-processing div.button{
clear:both;
}
.order-processing .photo-art-blue-btn{
margin:0px;
padding:0px;
float:right;
width:auto;
height:auto;
}
.order-processing .content-sub p
{
font-family:"open Sans";
font-size:14px;
color:#626262;
margin:0;
margin-left:20px;
}
.order-processing p{
font-family:"open Sans";
font-size:14px;
color:#626262;
margin:0;
}
.order-processing .content-sub .heading-blue,
.order-processing .content-sub-1 .heading-blue,
.order-processing .content-sub .heading-grey,
.order-processing .content-sub-1 .heading-grey{
width:auto;
font-size:14px;
}
.order-processing .content-sub-1 .heading-grey a{
font-size:14px;
font-weight:normal;
color:#fbf66c;
float:right;
margin-right:20px;
margin-top:5px;
}
.order-processing .content-sub-1 ul{
list-style:none;
font-family:"open Sans";
font-size:16px;
color:#626262;
}
.order-processing .content-sub-1 ul li{
margin:10px auto;
}
.order-processing .content-sub-1 label{
width:104px;
font-weight:normal;
float:left;
padding-top:5px;
}
/*
.login{
width:250px;
height:25px;
background-color:#cecece;
}
*/
.order-processing .content-sub-1 .button, .order-processing .content-sub .button{
background:url(../images/form-button-bg.gif) repeat-y left;
background-color:#3a91c6;
border:0;
color:#fff;
height:30px;
width:100px;
font-size:16px;
font-weight:bold;
}
.forgot-pwd{
color:#3a91c6;
font-style:italic;
font-family:"open Sans";
font-size:11px;
font-weight:bold;
}
.black{
color:#626262;
}
.prod-cart{
margin:0;
padding:0;
line-height:25px;
}
.prod-cart li{
clear:both;
}
.content-sub-1 .prod-cart li ul li{
color:#626262;
margin:0;
padding:0;
font-size:11px;
line-height:20px;
}
.qty{
display:block;
width:50px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:right;
}
.multiple{
display:block;
width:40px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:center;
}
#adminForm .multiple{
width:auto !important;
}
.field_required{
color:#F00 !important;
}
.pname{
display:block;
width:250px;
font-size:14px;
font-family:"open Sans";
float:left;
}
.pprice{
display:block;
width:100px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:right;
font-weight:bold;
color:#626262;
}
.grand-total{
width:260px;
height:30px;
padding-top:10px;
font-weight:bold;
}
.grand-total p{
float:left;
}
.grand-total span{
display:block;
float:right;
overflow:hidden;
width:90px;
text-align:right;
font-size:14px;
font-family:"open Sans";
color:#626262;
padding-right:10px;
}
.order-processed{
}
.order-processed .heading-blue{
}
.order-processed h1{
color:#3a91c6;
font-family:"open Sans";
font-size:18px;
}
.order-processed h2{
color:#3a91c6;
font-size:14px;
font-family:"open Sans";
}
.order-processed p{
font-family:"open Sans";
font-size:14px;
color:#626262;
}
.order-processed ul{
list-style:none;
font-family:"open Sans";
font-size:14px;
color:#626262;
overflow:hidden;
}
.processing-flow .process-step {
padding: 30px 40px;
background: #ededed;
border-radius: 5px;
text-align: center;
width: 250px;
float: left;
}
.order-processed ul li{
clear:both;
height:30px;
color:#626262;
}
.order-processed label{
float:left;
width:200px;
padding-top:2px;
}
.order-processed input{
margin-right:10px;
float:left;
}
/*------- dhtmlcombo.css -------*/
.dhtmlselect{ /*style of DHTML Select Menu, main box */
/*width: 140px;default width of main box */
border: 1px solid #666666;
position: relative;
text-indent: 3px;
padding: 1px 0;
cursor: hand;
cursor: pointer;
background-color: #cccccc;
float:left;
line-height:26px;
margin-right:38px;
font-family:"open Sans";
color:#646464;
font-weight:bold;
font-size:14px;
}
.dhtmlselect .downimage{ /*style of "down" image to the right of the DHTML Select Menu*/
position: absolute;
right: -25px;
}
.dhtmlselect img{
margin-left:-5px;
margin-top:-2px;
}
.dhtmlselect span{
display:inline !important;
white-space:nowrap;
overflow:hidden;
width:inherit;
}
.dhtmlselect .dropdown{ /*style of Drop Down Menu that appears onMouseover */
position: absolute;
left: 0;
width: 180px; /*default width of drop down menu*/
border: 1px solid #666666;
display: none;
z-index: 5;
font-weight: normal;
font-size:14px;
}
.dropdown{
float:none;
}
.dhtmlselect .dropdown p{
margin:0;
padding:0;
}
.dhtmlselect .dropdown a, .dhtmlselect .dropdown p{ /*style of Drop Down Menu's links */
width: auto;
display: block;
background: #ccc;
/*border-bottom: 1px solid black;*/
padding: 1px 0;
text-indent: 5px;
text-decoration: none;
font-family:"open Sans";
color:#626262;
font-weight:bold;
padding-top:5px;
padding-bottom:5px;
}
* html .dhtmlselect .dropdown a, * html .dhtmlselect .dropdown p{ /*IE 6 (and below) hack */
width: 100%;
}
.dhtmlselect .dropdown a:hover, .dhtmlselect .dropdown p:hover{
background: #3a91c6;
color:#fff;
font-family:"open Sans";
font-weight:bold;
}
.button_orange{
color:#FFF;
background:#FF6600;
height:30px;
width:120px;
font-family:"open Sans";
font-weight:bold;
border:0;
float:left;
margin-left: 300px;
margin-top:50px;
}
.blue-button{
color:#FFF;
background:#3A91C6;
height:30px;
width:150px;
font-family:"open Sans";
border:0;
margin-top:15px;
position: relative;
clear:left;
float:none;
font-size:12px;
font-weight:bold;
text-transform:capitalize;
}
/*for check out conformation page */
.conform_order{
/*float:left;*/
height:30px;
width:150px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
}
.continue{
height:30px;
width:150px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
}
/*----------- my cart -------*/
.mycart{
border:0px solid #626262;
width: 950px;
}
.mycart ul{
list-style:none;
clear:both;
margin:0;
padding:0;
font-family:"open Sans";
border-bottom: dotted 1px #eeeeee;
border:0px solid #eeeeee;
background: none;
overflow:hidden;
margin-left:15px;
width:908px;
border-bottom:1px solid #CCC;
padding-bottom:10px;
}
.mycart ul li{
float:left;
padding:5px 10px;
min-height:15px;
overflow:hidden;
border:solid 0px #fff;
}
.mycart ul.head{
border-bottom:0;
}
.mycart .head li {
background:#eeeeee;
border:solid 1px #fff;
color:#626262;
font-size:12px;
font-weight:bold;
}
.mycart .head .cart-remove{
width:100px;
text-align:center;
}
.mycart .head .cart-prod-name{
width:480px;
text-align:left;
}
.mycart .head .cart-qty{
text-align:center;
width:100px;
}
.mycart .head .cart-total{
text-align:center;
width:140px;
}
.mycart .cart-remove{
width:101px;
text-align:center;
}
.mycart .cart-prod-name{
width:482px;
text-align:left;
}
.mycart .cart-prod-name img{
margin:0px;
padding:0px;
margin-right:10px;
float:left;
margin-right:10px;
height:100px;
width:100px;
border:solid 1px #626262;
}
.mycart .cart-prod-name span{
display:block;
float:left;
width:350px;
}
.mycart .cart-prod-name h3{
font-size:13px;
color:#3a91c6;
margin-bottom:0;
margin-top:0;
}
.mycart .cart-prod-name p{
font-style: italic;
margin:0;
padding:0;
font-size:12px;
color:#626262;
}
.mycart .cart-qty{
text-align:center;
width:102px;
color:#626262;
font-size:14px;
font-weight:bold;
}
.mycart .cart-total{
text-align:center;
width:142px;
color:#626262;
font-size:12px;
font-weight:bold;
}
.sub-total{
font-family:"open Sans";
color:#626262;
height:25px;
border-bottom:solid 1px #EEEEEE;
border-top:solid 1px #EEEEEE;
width:285px;
float:right;
margin-top:10px;
text-align:right;
margin-right:26px;
}
.sub-total h4{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
}
.sub-total h4 span{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
width:116px;
line-height:25px;
font-weight:normal;
}
.sub-total h4 strong
{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
background:#EEEEEE;
width:154px;
height:auto;
text-align:right;
margin-left:5px;
height:25px;
padding-right:10px;
line-height:25px;
color:#09F;
font-weight:normal;
}
.mycart input{
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align: center;
}
.mycart input.update{
margin:0px;
padding:0px;
margin-right:800px;
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align: center;
float:right;
margin-left:-885px;
cursor:pointer;
}
.mycart input.update:hover
{
background:#333;
}
.mycart checkout{
background:#3a91c6;
float:right;
height:25px;
width:120px;
color:#FFFFFF;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
padding-top:5px;
}
.mycart a.checkout{
background:#3a91c6;
float:right;
height:25px;
width:120px;
color:#FFFFFF;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
padding-top:5px;
margin-left:15px;
text-decoration:none;
}
.button_wrap
{
border-top: 2px solid #3A91C6;
color: #FFFFFF !important;
float: left;
height: auto !important;
margin: 20px 0 0;
padding: 15px 0 0;
width: 950px;
}
.mycart a.checkout:hover
{
background:#333;
}
.mycart .update{
float:left;
height:30px;
width:120px;
color:#FFFFFF;
background:#3a91c6;
}
/*-- register --*/
.add_to_cart
{
float:left;
height:30px;
width:120px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
margin-left:30px;
}
.register{
font-family:"open Sans";
color:#626262;
}
ul.list_user_defined {
margin-top: 20px;
}
.digital_prod_desc h3 {
font-size: 16px;
font-weight: 600;
}
.register ul{
list-style:none;
margin:0;
padding:0;
}
.cus-box {
background: #ededed;
padding: 40px;
}
.cus-box button {
padding: 10px 20px !important;
height: auto;
border-radius: 5px !important;
}
.row.main-content-new {
margin: 0px;
}
.gift_voucher_form .product-fields .product-field {
float: left;
}
.cus-box {
background: #ededed;
padding: 40px;
height: auto !important;
}
.cus-box p {
font-size: 15px;
}
.cus-box p span {
color: #3a91c6;
font-weight: 700;
}
input.form-control.email-addr.modns.inputbox {
height: 34px;
}
.register p{
font-size:12px;
}
.register p a{
color:#3a91c6;
font-size:13px;
font-weight:bold;
}
.register ul li{
clear:both;
overflow:hidden;
width:auto;
}
.register ul li span{
display:block;
margin:auto;
overflow:hidden;
text-align:center;
}
.register ul li h3{
margin:20px 0 5px 20px;
padding:0;
font-size:14px;
color:#3a91c6;
}
.register ul li ul{
margin:0 0 0 20px;
padding:10px;
background:#eee;
clear:both;
width:auto;
}
.register ul li ul li{
clear:both;
min-height:30px;
overflow:hidden;
}
.register ul li ul li label{
float:left;
width:200px;
font-size:12px;
padding-top:3px;
}
.register ul li ul li p{
margin:0 20px 0 5px;
padding:3px 0 0 0;
float:left;
font-size:12px;
}
.register ul li ul li span{
float:left;
color:#ff0000;
margin-left:10px;
font-weight:bold;
}
.register ul li ul li input, .register ul li ul li select{
float:left;
font-size:12px;
background:#efefef;
border:solid 1px #626262;
}
.register ul li ul li input[type=text]{
width:300px;
background:#eee;
border:solid 1px #626262;
height:22px;
}
.register ul li ul li select{
background:#efefef;
border:solid 1px #525252;
width:350px;
height:22px;
}
.register .continue{
background:#3a91c6;
height:30px;
width:120px;
color:#FFFFFF;
margin:20px auto;
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
}
/*wishlist*/
.prod_info{
float:left;
}
.wishlist_prodname{
}
.wishlist_prodimage{
}
.wishlist_pricecontainer{
float:left;
width:200px;
clear:both;
}
.wishlist_price {
text-align:left;
margin-left: 25px;
}
.wishlist_movecart{
text-align:left;
margin-left: 5px;
}
.skip{
float:right;
color:#FFFFFF;
text-align:center;
margin-left:0px;
overflow: hidden;
}
.skip .button{
font-weight:normal;
font-size: 16px !important;
}
.skip-button{
background-color:#3a91c6;
font-size:14px;
font-family:Verdana, Geneva, "open Sans";
color:#fff; border:0;
font-weight:bold;
cursor:pointer;
padding-bottom:5px;
width:100%;
}
input:hover.skip-button
{
text-decoration:underline;
}
.skip a{
color:#fff;
cursor:pointer;
}
.dhtmlselect {
background-color: #CCCCCC;
border: 1px solid #666666;
color: #646464;
cursor: pointer;
display: inline;
float: left;
font-family: Arial,Helvetica,"open Sans";
font-size: 14px;
font-weight: bold;
height: 26px;
line-height: 26px;
margin-right: 38px;
padding: 1px 0;
position: relative;
text-align: left;
text-indent: 3px;
}
.dhtmlselect .downimage {
position: absolute;
right: -25px;
top: 1px;
}
.dhtmlselect {
}
* html .dhtmlselect {
display: inline;
height: 26px;
line-height: 0;
margin-top: 0;
}
.dhtmlselect span p {
display: inline !important;
height: 24px;
line-height: 24px;
overflow: hidden;
vertical-align: middle;
}
* html .dhtmlselect span p {
display: inline !important;
height: 26px;
line-height: 26px;
margin: 0;
padding: 0;
vertical-align: middle;
}
.dhtmlselect img {
margin-left: -5px;
margin-top: -2px;
}
* html .dhtmlselect img {
margin-top: 0;
padding-top: 10px;
}
.dhtmlselect img {
}
.dhtmlselect span {
display: list-item !important;
overflow: hidden;
white-space: nowrap;
width: auto;
}
* html .dhtmlselect span {
display: list-item !important;
}
.dhtmlselect .dropdown {
border: 1px solid #666666;
display: none;
font-size: 14px;
font-weight: normal;
left: 0;
max-height: 350px;
overflow: auto;
position: absolute;
width: 180px;
z-index: 5;
}
.dropdown {
float: none;
}
.dhtmlselect .dropdown p {
margin: 0;
padding: 0;
}
.menu_down img{
display: none;
}
.dhtmlselect .dropdown a, .dhtmlselect .dropdown p {
background: none repeat scroll 0 0 #CCCCCC;
color: #626262;
display: block;
font-family: Arial,Helvetica,"open Sans";
font-weight: bold;
padding: 5px 0;
text-decoration: none;
text-indent: 5px;
width: auto;
}
* html .dhtmlselect .dropdown a, * html .dhtmlselect .dropdown p {
width: 100%;
}
.dhtmlselect .dropdown a:hover, .dhtmlselect .dropdown p:hover {
background: none repeat scroll 0 0 #3A91C6;
color: #FFFFFF;
font-family: Arial,Helvetica,"open Sans";
font-weight: bold;
}
* html .dhtmlselect img.downimage {
margin-top: -7px;
}
.dhtmlselect img.downimage {
}
.acrylic-permanent-thumb,.acrylic-permanent-block-thumb{
display: inline !important;
float: left!important;
margin-bottom: 15px !important;
margin-right: 10px !important;
width: auto !important;
}
.acrylic-permanent-thumb img,.acrylic-permanent-block-thumb img{
border: 1px solid #757A7D !important;
margin-left: 0 !important;
margin-right: 30px !important;
text-align: center !important;
height:198px;
width: auto;
}
.acrylic-permanent-thumb p,.acrylic-permanent-block-thumb p{
font-size: 13px;
margin-top: 10px;
padding-top: 10px;
text-align: center;
width: auto;
}
.pia{
margin:0px;
padding:0px;
width: auto;
height:auto;
border:0px solid #626262;
margin-top:15px;
margin-right:20px;
float:left;
}
.pia h1{
margin:0px;
padding:0px;
padding-top:5px;
height:auto;
width: auto;
font-size: 14px;
font-family: Arial,Helvetica,"open Sans";
font-weight: normal;
float:left;
}
.pia p {
float: left;
}
.pia p span{
margin:0px;
margin-left: 10px;
padding:0px;
padding-left:5px;
padding-right:5px;
width: auto;
background: #ff9900;
font-size: 12px;
font-family: Arial,Helvetica,"open Sans";
font-weight: normal;
float:right;
color:#FFFFFF;
line-height:20px;
}
.pati{
margin:0px;
padding:0px;
font-size:13px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
text-align: center;
line-height:25px;
border:0px solid #626262;
margin-top:5px;
/*height:25px;*/
height:auto;
}
.pco{
margin:0px;
padding:0px;
font-size:13px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
text-align: left;
line-height:15px;
border:0px solid #626262;
padding-left:5px;
text-align:center;
}
.photo_collage{
margin:0px;
padding:0px;
float:left;
width:900px;
margin-top: 30px;
margin-bottom: 20px;
}
.photo_collage h1{
margin:0px;
padding:0px;
float:left;
width:900px;
font-size:14px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
margin-bottom: 20px;
}
.display-number, .control-buttons, .right {
float: right !important;
text-align:left !important;
}
.product-field-desc{
clear:both;
font-size:14px;
text-transform:none;
margin:0 0 5px 0;
}
.fadein { position:relative;
height: 385px;margin-bottom:0px;}
.fadein img { left:0; top:0; }
.fadein0 { position:relative;margin-bottom:10px;}
.fadein0 img { position:absolute; left:0; top:0; }
.content_sub {
width: 550px !important;
}
/* styling the file upload fierld */
.select_wall_color_text input[type=button]{
background:#3A91C6;
color:#fff;
padding:5px 15px;
font-size:14px;
text-transform:capitalize;
margin:10px 0;
cursor:pointer;
border:0;
}
h3.blue-color{
font-size: 23px;
font-weight: normal;
color: #3492D5;
}
p.budget-red {
color: red;
font-weight: bold;
}
.aluminium-image{
background-color: none; border: 0px solid #000000; float: right;}
.addfieldbutton{
float:left;
margin-right:10px !important;
}
.button {
background: #3a91c6;
cursor:pointer;
color: #fff;
padding: 0 15px;
font-size: 14px;
border:0;
line-height:30px;
margin:0;
}
#uploadframe { display:none; }
#preview .uploaded_imgcontainer{
float:left;
width:100%;
}
#preview .addtocart-button{
clear:both;
}
.uploaded_imgcontainer span img{
max-width:100%;
text-align:center;
margin:0 auto;
padding:0;
float:none !important;
clear:both;
height:100%;
width:100%;
}
img img#uploaded_img{
position:static;
margin:0;
float:none;
}
.uploaded_image{
width:100%;
overflow:hidden;
float:left;
position:relative;
}
/* styling the file upload fierld ends */
.order p{
clear:none;
}
.addtocartbutton{
overflow: hidden;
clear: both;
text-align: left;
margin:0 10px 10px;
float:left;
}
#preview p.error{
margin:8px 0;
}
.thumbsList{
clear:both;
overflow:hidden;
}
.thumbsList h1{
color: #3A91C6;
font-family: Arial,Helvetica,"open Sans";
font-size: 20px;
font-weight: normal;
text-decoration: none;
}
/* 11 Feb 2013 */
#main_menu{
padding:0;
list-style:none;
display:table;
margin:0 auto;
}
#main_menu li{
float:left;
border:solid 2px #494949;
background:url(../images/gradient1.jpg) repeat-y;
line-height:18px;
padding:0 12px;
margin:0 10px;
color:#ccc;
font-size:18px;
font-family:Segoe UI;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
}
#main_menu li:hover{
background:#383838;
}
#main_menu li img{
float:left;
margin-right:10px;
}
#main_menu li p{
font-size:18px;
color:#ccc;
white-space:nowrap;
float:left;
}
#main_menu li p a{
color:#ccc;
font-weight:normal !important;
font-family: Segoe UI;
line-height:18px !important;
font-size:18px;
text-decoration:none;
}
.menu_newsletter{
clear:both;
margin:15px auto 36px;
padding:10px;
height:36px;
background:#1d4962;
border:solid 2px #494949;
width:600px;
}
.menu_newsletter *{
float:left;
}
.menu_newsletter a{
color:#eee;
font-family:Impact;
line-height:36px;
font-size:20px;
font-weight:normal;
padding-left:10px;
text-decoration:none;
}
.category-view{
margin:0 auto;
overflow:hidden;
width:1000px;
}
.category-view h4{
color:#3b8fc5;
}
/* 13 feb */
.category-view > div{
overflow:hidden;
border:solid 5px #fff;
background:#fff;
float:left;
margin:0 13px 12px 0;
width:230px !important;
border-radius:20px;
}
.category-view > div:nth-child(4n){
margin-right:0;
}
.category-view > div:hover{
background:#555;
border:#555 solid 5px;
}
.maf-menu li span {
display: none;
}
#category_listing_services a:hover{
color:#ddd;
}
#home_right_link{
}
#home_right_link ul li{
list-style:none;
float:left;
margin-left:15px;
}
#home_right_link ul li a{
text-decoration:none;
font-family:"Segoe UI";
font-size:12px;
font-weight:normal;
}
#home_right_link ul li a:hover{
color:#fff;
}
#home_right_link ul li:last-child{
background:url(../images/shoping-basket.png) no-repeat left center;
padding-left:24px;
}
#footer{
margin:0 auto;
padding: 0px;
background: #000;
color: #626262;
font-size: 12px;
clear: both;
}
..menu_down{
background: #666;
background-repeat: repeat-x;
border: 0px solid #F1F1F1;
width: 1000px;
height: 25px;
margin-top: 10px;
line-height: 25px;
color:#626262;
}
.menu_down{
background: transparent;
background-repeat: repeat-x;
border: 0px solid #F1F1F1;
margin: 0 auto;
z-index: 999;
}
.acrylic-top-images{
border:0;
margin:0 auto;
display:table;
padding:10px 0;
margin-bottom: 10px;
}
#left_navigation_bg{
padding-right:40px;
padding-left: 0px;
}
.breadcrumb {
background: transparent;
border-bottom: 1px solid #ccc;
border-radius: 0px;
padding: 15px 10px;
margin-bottom: 10px;
}
.breadcrumb>.active {
color: #000;
font-weight: 800;
font-size: 13px;
}
.breadcrumb img {
display: none;
}
.breadcrumb a{
font-weight: 300;
}
.custom_categorylist
{
margin:0px;
padding:0px;
overflow:hidden;
}
.active_category{color:#000 !important; background-color: #f9f9f9;}
.custom_categorylist .heading
{
margin:0;
padding: 10px;
line-height:30px;
background:#3a91c6;
font-size: 15px;
font-family: verdana, tahoma, arial, Georgia;
text-transform: uppercase;
color: #FFF;
}
/*ul.menu_custom_categorylist{
margin:20px 0 !important;
}*/
.custom_categorylist ul, ul.menu_custom_categorylist{
overflow:hidden;
margin:0 0 30px;
padding:0px;
list-style:none;
border: 1px solid #ccc;
}
.custom_categorylist ul li, ul.menu_custom_categorylist li{
overflow:hidden;
clear:both;
border-bottom:1px #ccc solid;
font-family:"open Sans";
text-decoration:none;
padding: 5px 0px;
}
.custom_categorylist ul li a, ul.menu_custom_categorylist li a
{
font-size:11px;
font-family:"open Sans";
text-decoration:none;
font-weight:bold;
line-height:25px;
font-size: 13px;
text-align:left;
color:#3a91c6;
padding-left:12px;
}
.custom_categorylist ul li a:hover{
color:#000;
}
.custom_categorylist .active_category >a {color:#000 !important;}
#main{
margin:0 auto;
overflow:hidden;
margin-bottom:10px;
padding: 0px;
}
#right_body_bg{
overflow:hidden;
margin-bottom: 20px;
}
#right_body_bg .heading
{
margin:0px;
padding:0px;
clear:both;
overflow:hidden;
}
form#adminForm {
background: #ededed;
}
#right_body_bg .heading h1
{
color: #626262 !important;
font-size: 30px !important;
margin-top: 0px !important;
font-weight: 500 !important;
padding: 0px !important;
}
#gift_voucher_preview{
float:left;
}
.custom_categorydropdownlist {
display: none;
}
.menu_leftart{
overflow: hidden;
margin: 0 0 30px;
padding: 0px;
list-style: none;
border: 1px solid #ccc;
}
.menu_leftart li{
overflow: hidden;
clear: both;
border-bottom: 1px #ccc solid;
font-family: "open Sans";
text-decoration: none;
padding: 5px;
}
div#dropdowncat {
border: 1px #ccc solid;
padding: 5px 10px;
font-size: 14px;
font-weight: 600;
}
.voucher{
margin-bottom:20px;
width:100%;
overflow:hidden;
position:relative;
}
#gift_voucher_preview img{
position:relative;
display: block;
width: 100%;
}
.gift_voucher_form{
float:right;
width:100%;
background:#f1f1f1;
overflow:hidden;
margin-right:10px;
}
.gift_voucher_form ul{
padding:20px;
margin:0;
overflow:hidden;
list-style:none;
}
.gift_voucher_form li{
height:auto !important;
line-height:30px;
padding-bottom:5px !important;
overflow:hidden;
font-size:12px;
}
.gift_voucher_form li input[type=text]{
line-height:20px;
padding:3px;
}
.gift_voucher_form li label{
width:160px !important;
text-align:right;
padding-right:10px;
font-family:"open Sans";
font-weight:normal !important;
float:left;
}
.voucherParameters{
width: 500px;
position: absolute;
z-index: 10;
bottom: 34px;
margin-left: 100px;
}
.voucherParameters p{
margin: 0;
color: #626262;
font-size: 13px;
height:21px;
}
.gift_voucher_form textarea{
font-family: "open Sans";
font-size: 12px;
padding:3px;
border: 1px solid #ccc;
background: #fff;
width:100% !important;
height:120px;
margin:0;
resize:none;
float: left;
}
.gift_voucher_form input[type=text]{
font-family: "open Sans";
font-size: 12px;
padding:3px;
border: 1px solid #ccc;
background: #fff;
width:100%;
}
.content .block-img {
padding: 0px;
margin-bottom: 20px;
}
.content h2 {
color: #8BCFF6;
font-size: 21px;
margin-top: 10px;
padding: 10px 0px;
}
.sub-heading {
color: #8BCFF6;
font-size: 21px;
margin-top: 10px;
padding: 10px 0px;
}
.content .block-img img {
width: 100%;
}
.content .block-mount-left-img {
padding: 0px;
}
.photo{width:900px; float:left; margin-left:15px;}
.photo_content{width:900px; float:left; font-size:18px; font-weight:bold; font-family:"open Sans"; padding-top:10px; color:#626262;}
.photo_on_canvas{width:260px; float:left; padding:5px 10px 5px 10px; background:#3a91c6; color:#ffffff; font-size:20px; font-weight:bold; font-family:"open Sans"; margin-top:38px;}
.icon{float:left; padding-left:18px;width:90px;}
.offer{width:190px; float:left; padding:7px 0px 7px 0px;background:#ff6600; color:#ffffff; font-size:25px;font-weight:bold; font-family:"open Sans"; margin-top:35px; text-align:center; height:31px;}
.pagenav{
display:none;
}
p.counter.pull-right {
display: none;
}
.vm-pagination{
clear:both;
margin-top:15px;
overflow:hidden;
}
.vm-pagination span{
}
.vm-pagination ul li {
margin-left:5px;
}
.imageDisplay{
width:100%;height:197px; background:#FFFDD7; display:block;text-align:center;margin:auto;overflow:hidden; margin-bottom: 5px;
}
.imageDisplay img{
height:100%;
max-width:100%;
}
.addtocart-button-plain .addtocart-button{
background:none;
font-family:"open Sans";
color:#626262;
font-size:11px;
border:0;
font-size:11px;
cursor:pointer;
}
.wishlist img{
float:left !important;
margin-right:2px !important;
}
.wishlist *{
background:none !important;
font-size:11px !important;
color:#626262 !important;
border:0 !important;
margin:0 !important;
display:inline !important;
float:none !important;
}
.product_list_one.accessories{
height:410px !important;
}
.product_price{
color: #626262;
font-size: 12px;
width: 195px;
padding-left: 5px;
}
.right-column{
overflow:hidden;
margin:0 10px;
}
.custom_oilpainting{
overflow:hidden;
}
.custom_oilpainting .left_image{
width:100%;
margin:0;
}
.custom_oilpainting img{
width:100%;
}
h2.mat_steps{
font-weight:normal;
font-size:18px;
}
p.mat_steps{
font-size:14px;
font-weight:bold;
}
.single_frame_listing {
float:left;
margin-right:20px;
overflow:hidden;
margin-bottom: 20px;
}
.single_frame_listing img{
margin:0px;
padding:0px;
height:100px;
clear:both;
border:5px solid #3A91C6;
}
.single_frame_listing .standard {
margin:0px;
padding:0px;
background:#3a91c6;
line-height:20px;
height:20px;
color:#ddd;
font-size:14px;
font-family:"open Sans";
}
.single_frame_listing .standard input{
margin:0px;
padding:0px;
float:left;
margin-left:5px;
margin-right:5px;
width:10px;
height:20px;
}
.single_frame_listing .standard label{
cursor:pointer;
}
.kh_select{
background:#f99a03 !important;
color:#fff !important;
margin-left:10px !important;
}
.acrylic-sandwich-mount-thumb-img{
float:left;
margin-top:20px;
}
span.addtocart-button h1, span.addtocart-button h2{
float:left;
margin:0;
font-size:12px;
line-height:24px;
margin-right:10px;
}
span.addtocart-button h2 input{
width:78px;
}
span.addtocart-button{
width:auto !important;
text-transform: capitalize;
}
span.addtocart-button .addtocart-button{
clear:both !important;
float:left;
margin-top:10px;
text-transform: capitalize;
}
#xml_result, p#message{
width:430px;
margin-right:10px;
background:#ffe8e8;
border:solid #ffd7d7;
border-width:1px 0;
float:right;
padding:10px;
color:#ff1717;
display:none;
}
p#message{
padding:10px;
margin:0;
}
.processing{
background:url(../images/processing.gif) no-repeat center center;
height:32px;
width:32px;
display:block;
float:right;
opacity:0;
}
/* styling the radio buttons */
.selectPhotoSend input[type="radio"] {
display:none;
}
.selectPhotoSend input[type="radio"] + label {
width: auto;
}
.selectPhotoSend input[type="radio"] + label span {
display:inline-block;
width:16px;
height:16px;
margin:-1px 4px 0 0;
vertical-align:middle;
background:url(../images/check_radio_sheet.png) -20px top no-repeat;
cursor:pointer;
}
.selectPhotoSend input[type="radio"]:checked + label span {
background:url(../images/check_radio_sheet.png) 0px top no-repeat;
}
.selectPhotoSend label{
margin-right:10px;
font-size: 14px;
}
/* end */
.esp_instructions h3 {
font-size: 20px;
}
.selected_matt_number span.pattern-sample{
/*display:block;
border:solid 10px #fff;
margin:0;*/
}
.digital_prod_desc .content{
padding:0;
margin:0;
}
.registerForm{
margin:0 10px;
}
#com-form-login fieldset{
border:0;
margin:0;
padding:0 !important;
}
#com-form-login h2{
font-size:12px;
margin:0;
font-weight:normal;
color:#646464;
}
.registerForm h2{
color:#646464;
font-size:20px;
font-weight:normal;
}
.registerForm form, .address form, .addShipping{
display:block;
overflow:hidden;
padding:10px;
background:#f1f1f1;
}
.registerForm input[type=text], .registerForm input[type=password]{
background: #fff !important;
border: 1px solid #e1e1e1 !important;
color: black !important;
-moz-border-radius:0;
-webkit-border-radius:0;
border-radius:0;
padding:5px;
color:#646464;
}
.registerForm label{
color:#646464;
width:300px;
text-align:right;
font-size:12px;
text-align:right;
display:block;
line-height:30px;
font-weight:bold;
}
.registerForm .userdata label{
display:inline;
}
.registerForm .userdata p{
margin-bottom:0;
}
.registerForm .userdata a{
font-size:11px; !important
}
.registerForm .button{
line-height:normal;
font-size:12px;
height:35px;
}
.userfields_info{
font-size:12px;
}
.cart-view{
margin:0 10px;
}
.cart-view fieldset{
border:0;
margin:0;
padding:0;
}
.vm-customfield-cart span{
display:block;
}
.vm-customfield-cart br{
height:1px;
}
.vm-customfield-cart p, .vm-customfield-cart span{
margin:0;
font-size:14px;
font-style:normal;
clear:both;
padding:0;
color:#626262;
}
.cart-summary td, .cart-summary th{
padding:5px !important;
}
.cart-summary th{
background:#eee !important;
}
.cart-summary tr:nth-child(even){
background:#f9f9f9;
}
.PricesalesPrice{
float:right;
line-height:30px;
font-weight:bold;
}
.coupon{
border-radius:0;
padding:5px;
}
span.details-button input.details-button{
background:#3a91c6 !important;
color:#fff;
border:0;
border-radius:0;
padding:5px;
font-weight:bold;
}
#userFormShipping h1{
font-size:16px;
margin-top:10px;
}
#userFormShipping fieldset{
border:0;
background:#f1f1f1;
padding:10px;
}
.vm-button-correct, .vm-button-correct:link, .vm-button-correct:visited{
background:#3a91c6 !important;
color:#fff;
border:0;
border-radius:0;
padding:5px 10px;
text-transform:capitalize;
}
.customer-comment{
overflow:hidden;
clear:both;
margin:10px auto;
float:none;
text-align:left;
}
div.customer-comment .comment{
font-size:14px;
font-weight:bold;
}
.checkout-button-top {
text-align:left;}
.checkout-button-top .vm-button-correct{
float:right;
}
.billto-shipto span, a.terms-of-service{
font-size:11px;
text-decoration:none;
font-family:"open Sans";
font-weight:normal;
}
.cart-images{
float:left;
margin-right:10px;
width:100px;
}
.cart-images img{
width:100px !important;
}
.cart_item a{
display:block;
font-size:14px;
font-weight:normal;
color:#0099FF;
font-family:"open Sans";
}
.vm-customfield-cart{
display:inline;
float:left;
}
#userFormShipping input[type=radio]{
clear: both;
display: block;
float: left;
}
#userFormShipping label{
padding: 2px 0;
overflow: hidden;
height: auto;
float: left;
min-width:120px;
}
span.vmshipment{
display:block;
}
.pickupSelector input[type=radio]{
}
.vmshipment_name{
font-weight:bold;
}
.cart-view h2{
margin-top:10px;
}
.PricebasePriceVariant{
float:none;
text-align:center;
}
.cart-summary tr td{
border-bottom:solid 1px #f1f1f1;
border-left:solid 1px #f1f1f1;
}
.userdata{
background:#f1f1f1;
padding:10px !important;
}
.userdata input[type="text"], .userdata input[type="password"]{
padding:5px;
}
#com-form-login .userdata p{
margin:5px 20px 5px 0;
width:auto;
}
textarea.customer-comment{
width:60% !important;
}
fieldset.address{
margin:0 10px;
padding:0;
border:0;
}
fieldset.address label{
line-height:30px;
float:none;
display:block;
font-size:12px;
color:#646464;
margin:0;
width:auto;
font-weight:bold;
text-align:right;
}
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url]{
color: black ;
padding:5px;
height: 30px;
border-radius:0 !important;
}
.row.heading_budget {
margin: 0px;
}
.button, button, .billto-shipto a.details{
background:#3a91c6;
border:0 ;
color:#fff;
font-size:12px;
padding:5px 10px;
line-height:20px ;
font-weight:bold;
border-radius:0 ;
height:34px;
}
#digital_page_order{
padding: 10px 20px;
height: auto;
}
.button[disabled=disabled]{
opacity:0;
}
.billto-shipto h2{
float:left;
margin:0;
line-height:30px;
}
td.key{
width:200px;
}
input.quantity-input{
height: 29px;
margin-right: 10px;
width: 40px;
}
.continue_link, .continue_link:hover{
color:#fff;
text-decoration:none;
}
#com-form-login{
overflow:hidden;
background:#f1f1f1;
display:block;
padding:10px;
}
#com-form-login div.width30{
width:auto;
margin-right:20px;
}
#com-form-login div.width30 a{
font-weight:normal;
}
.control-buttons button.default{
width:auto;
line-height:normal;
}
table.user-details input{
background:#fff;
border-radius:0;
border-color:#e1e1e1;
}
#facebox{
min-width:400px;
}
#facebox .content{
display:block;
margin:10px;
}
#facebox a.floatright, #facebox a.continue{
float:left;
line-height:12px;
padding:5px 10px;
margin-right:5px;
height:auto;
width:auto;
color: #FFFFFF;
background: #3a91c6;
font-family: "open Sans";
font-size: 12px;
font-weight: bold;
text-align: center;
}
#facebox a.floatright{
clear:right;
}
.content.my-groovy-style > div > div{
clear:both;
overflow:hidden;
padding:10px 0;
font-size:11px;
}
.content.my-groovy-style h4{
margin:0;
color:#3a91c6;
font-size:16px;
}
#facebox .close{
background-position:center !important;
}
input.coupon{
padding:3px;
width:200px;
font-size:12px;
color:#646464;
}
.addtowishlist-button{
background:none;
border:0;
font-size:11px;
color:#333;
font-family:"open Sans";
cursor:pointer;
}
.addtowishlist-button button {
background: transparent;
color: #fef8f0;
padding: 0px;
height: 20px;
}
.addtowishlist-button button input[type=submit]{
color: #626262;
padding:0px;
color: #626262;
padding: 0px;
background: transparent;
border: none;
font-weight: normal;
}
span.printButton img{
width:24px;
cursor:pointer;
}
.contact{
margin:0 10px;
clear:both;
}
.contact h3{
}
.contact fieldset{
border:0;
margin:0;
padding:0;
}
.contact fieldset dl{
width:100%;
}
.contact fieldset legend{
margin:20px 0;
}
.contact fieldset dt{
float:left;
width:100px;
clear:left;
text-align:right;
margin-right:10px;
line-height:24px;
padding:5px 0;
font-size:12px;
font-weight:bold;
}
.contact fieldset dd{
padding:5px 0;
overflow:hidden;
line-height:30px;
}
.contact fieldset dd .button{
width:auto;
line-height:normal;
}
.contact-form fieldset dd .button{
width:auto;
line-height:normal;
float: right;
}
.star{
color:#f00;
}
.contact fieldset textarea, .contact fieldset input[type=text], .contact fieldset input[type=email]{
background:none;
border:1px solid #e1e1e1;
width:100% !important;
resize:none;
margin:0;
}
.loginForm {
width: 50%;
margin: 0 auto;
clear: both;
overflow: hidden;
height: auto;
background: none;
}
.login-fields input {
padding: 0px;
line-height: 20px;
padding: 5px;
margin: 5px 0px;
background-color: transparent !important;
}
.loginForm label {
width: 20%;
float: left;
text-align: right;
margin-right: 10px;
margin-top: 5px;
}
.loginForm .login-fields{
clear:both;
overflow:hidden;
line-height:30px;
}
.loginForm fieldset{
border:0;
margin:0;
padding:0;
}
.loginForm fieldset button{
margin-left: 22%;
margin-top: 20px;
padding: 0px 35px !important;
text-transform: uppercase;
}
.loginPage{
overflow:hidden;
background: #f1f1f1;
padding: 20px;
}
.loginHelp{
overflow:hidden;
}
.loginHelp li {
float: left;
margin-right: 10px;
}
.loginHelp ul{
margin:6px 0;
padding:0;
list-style:none;
}
.loginHelp ul a{
font-weight:normal;
font-size:11px;
}
#ui-tabs ul#tabs{
display:none;
}
fieldset.shopper, fieldset.shipto{
border:0;
margin:0;
padding:0;
}
span.userfields_info{
border-bottom:solid 1px #dedede;
margin-bottom:10px;
display:block;
clear:both;
font-size:13px;
}
table.user-details{
line-height:28px;
}
.heading-blue h2{
color:#fff;
}
#ui-tabs .tabs{
padding:0;
}
.addShipping{
margin:10px;
}
.vm2-remove_from_cart{
background:url(../images/delete.gif) no-repeat top center;
background-size:70%;
}
.vm2-add_quantity_cart{
background:url(../images/update.png) no-repeat top center;
background-size:70%;
}
.invalid{
border-color:#f00 !important;
}
.contactDetails, .contact-form{
float:right;
margin-top: 20px;
padding: 0px;
}
.contact-form{
padding-left: 15px;
}
#right_div .opg-width-1-1 input[type="text"], #right_div .opg-width-1-1 input[type="password"], #right_div .opg-width-1-1 select{
margin-bottom: 8px;
height: 37px;
line-height: 30px;
font-size: 14px;
}
.contact_address{
margin:0px;
padding:0px;
background-color:#F1F1F1;
padding:10px;
margin-top:20px;
}
.contact_address h1{
font-size:14px;
font-weight:normal;
}
.custom_contact_details{
margin:10px 10px 10px 0;
}
.custom_contact_details ul{
list-style:none;
margin:0;
padding:0;
}
.custom_contact_details ul li{
width:100%;
overflow:hidden;
}
.shop {
border: 1px solid #ededed;
padding: 15px;
margin-bottom: 20px;
}
.contact_logo{
float:left;
}
.socialConnectContact{
float:none;
width:100%;
}
.socialConnectContact img{
clear:both;
float:left;
margin-top: 10px;
margin-bottom:20px;
}
.shop_address{
clear: both;
border-top: 1px solid #8dcef6;
border-bottom: 1px solid #8dcef6;
color: #3A91C6;
font-size: 16px;
font-weight: 700;
padding: 10px;
}
.contact-form .legend{
width:100%;
font-size:14px;
color: #3A91C6;
}
.contactPage h1{
margin:0px;
color:#3A91C6;
}
.uploaded_image{
overflow:visible;
}
.dimFieldWrap{
position:absolute;
left:150px;
width:200px;
}
.dimFieldWrap input[type=text]{
width:30px;
margin:0 5px
}
.almunium_frame_note{
width:100%;
margin-bottom:10px;
}
.budget_frame_note{
margin-bottom: 10px;
width: 420px;
}
.shadow_box_note{
width:325px;
}
.SelectImageCartAttributeCollage select{
width:300px;
}
.budget_frame_links p{
margin:0;
}
.shadow_box_links,.budget_frame_links{
width:310px;
overflow:hidden;
}
.shadow_box_links a,.budget_frame_links a,.al_links a{
font-size:12px;
color:#3a91c6;
text-decoration:none;
font-weight:normal;
font-family:"open Sans";
}
.acrylic-photo-block-wrapper .Size_and_Price select{
width:300px;
}
.acrylic-photo-block-wrapper .HangingSystem select{
width:225px;
}
.acrylic-photo-block-wrapper .Standoff-Corner img,.acrylic-photo-block-wrapper .Backing-Color img,.acrylic-photo-block-wrapper .Hanging-System img{
border:1px solid #000;
}
.acrylic-sandwich-mount-wrapper .No-Border img,.acrylic-sandwich-mount-wrapper .test-size img,.acrylic-sandwich-mount-wrapper .thumb50mm-Border img,.acrylic-sandwich-mount-wrapper .thumb70mm-Border img{
padding:15px;
}
.acrylic-photo-block-thumb-img.thumb {
width: 100%;
text-align: center;
}
.acrylic-photo-block-thumb>div:first-child {
width: 100%;
}
.photo-into-art-edge,.photo-collage-edge{
float:left;
}
.photo-art-thumb-img-wrap,.collage-thumb-img-wrap{
width:152px;
height:162px;
overflow:hidden;
}
.canvas-edge-img img{
border:solid 1px #000;
}
.subcat-wrapper ul li:hover{
background-color:#e5e5e5;
}
.accessories-cartbox {
padding: 0px;
}
.acc-atc {
padding: 0px;
}
.acc-qty {
padding: 0px;
margin-top: 4px;
position: absolute;
right: 0px;
}
.acc-wish {
padding: 0px;
margin-top: 0px;
}
.mostread li {
list-style: none;
border-bottom: 1px dotted #ddd;
margin-bottom: 5px;
padding: 5px 20px;
}
.mostread li:last-child{
border: none;
}
ul.mostread {
padding: 0px;
border: 1px solid #ececec;
}
.mostread li a {
font-size: 12px;
font-weight: normal;
}
.apod-blog h2 {
color: #626262;
font-weight: 600;
}
.registration dt {
width: 200px;
float: left;
height: 40px;
font-size: 13px;
text-align: right;
margin-right: 10px;
}
.registration dd {
height: 40px;
}
.order_title_box h4 {
margin: 0px;
padding: 0px;
font-size: 18px;
font-family: arial, tahoma, verdana, Georgia;
text-decoration: none;
font-weight: bold;
float: left;
color: #FFFFFF;
margin-left: 5px;
margin-top: 3px;
width: 100%;
text-transform: uppercase !important;
}
.order_title_box span {
margin: 0px;
padding: 0px;
font-size: 18px;
font-family: arial, tahoma, verdana, Georgia;
text-decoration: none;
font-weight: bold;
float: left;
color: #FFFFFF;
margin-left: 5px;
margin-top: 3px;
width: 100%;
text-transform: uppercase !important;
line-height: 30px;
}
.view-price a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: normal;
}
.single-window-description button {
margin-top: 10px;
padding: 10px 20px !important;
height: auto;
margin-bottom: 10px;
border-radius: 5px !important;
}
/* css for login page */
.account {
padding: 0px 10px;
margin: 0px;
}
.account-tab {
border-bottom: 3px solid #68a6cd;
}
.account-tab li {
padding: 7px 25px;
background: #68a6cd;
cursor: pointer;
}
.image_for_oil_painting1{
width:100%;
height:197px;
background:#FFFDD7;
display:block;
text-align:center;
margin:auto;
overflow:hidden;
padding: 20px;
margin-bottom: 10px;
}
.oilpainting {
height: 160px;
}
.oilpainting img {
max-height: 100%;
}
.account-tab li.active {
background: #40789b;
}
.account-tab>li>p {
color: #fff;
font-size: 14px;
margin-bottom: 0px;
}
.userdata .form-group {
margin-bottom: 5px;
}
.userdata input[type="text"], .userdata input[type="password"] {
width: 100%;
height: 40px;
font-size: 14px;
}
.userdata input[type=checkbox], .acc-register #Newsletter_field {
margin-top: 15px;
}
.userdata input[type=submit], .acc-register .acc-button{
padding: 5px 30px !important;
background: #3a91c6 !important;
border: none !important;
color: #fff !important;
line-height: 20px !important;
text-transform: uppercase !important;
}
.userdata label {
margin-top: 10px;
text-align: right;
font-size: 15px;
font-weight: normal;
color: #999999;
padding-right: 0px;
}
.userdata .acc-remember {
margin-bottom: 20px !important;
}
.userdata .acc-remember a {
margin-right: 20px;
font-weight: normal;
font-size: 13px;
}
.account h1 {
color: #3a91c6;
font-weight: normal;
font-size: 20px;
}
/* css for register page */
.acc-register fieldset {
background: #f1f1f1;
padding: 20px;
margin-bottom: 10px;
}
.acc-register input[type="text"], .acc-register input[type="password"], .acc-register SELECT {
width: 100%;
height: 40px;
font-size: 14px;
}
input[type=text]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=url]:hover{
background: #fff !important;
color: #000 !important;
}
.acc-register .form-group {
min-height: 40px;
margin-bottom: 10px;
}
.acc-register label, .acc-register div {
margin-top: 10px;
text-align: right;
font-size: 15px;
font-weight: normal;
color: #999999;
}
fieldset>div{
padding: 0px;
}
.acc-register div {
text-align: left;
}
.blog .items-row {
background: #f6fbff;
padding: 0px 25px;
padding-bottom: 15px;
margin-bottom: 30px;
}
.gift_voucher_form input[type="button"], .gift_voucher_form input[type="submit"] {
padding: 5px 30px !important;
background: #3a91c6 !important;
border: none !important;
color: #fff !important;
margin-bottom: 20px;
line-height: 20px !important;
width: 100%;
}
.gift_voucher_form label {
text-align: right;
margin-top: 6px;
font-size: 12px;
}
.acc-login p span {
float: right;
margin-top: -25px;
font-size: 13px;
}
.acc-register p span {
float: right;
margin-top: -25px;
font-size: 13px;
}
/* design for cutom upload */
.blockmount-bottom p {
text-align: center;
}
.productdetails {
margin-top: 10px;
}
.block-laminate {
margin: 0px;
}
.uploadForm p {
text-align: left;
}
.progress-wizard {margin-top: 40px;}
/*Form Wizard*/
.progress-wizard { margin: 0px; padding: 20px 0 20px 0;}
.progress-wizard > .progress-wizard-step {padding: 0; position: relative;}
.progress-wizard > .progress-wizard-step .progress-wizard-stepnum {color: #fff; font-size: 80px; margin-bottom: 5px; font-weight: 900}
.progress-wizard > .progress-wizard-step .progress-wizard-info {color: #3a91c6; font-size: 18px; font-family: "Open Sans";}
.progress-wizard > .progress-wizard-step > .progress-wizard-dot {position: absolute; width: 120px; height: 120px; display: block; background: #3a91c6; top: 0px; left: 34%; text-decoration: none; margin-top: -15px; margin-left: -15px; border-radius: 50%;}
.progress-wizard > .complete > .progress-wizard-dot {background: #8bcff6;}
.progress-wizard > .progress-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 47px 0;}
.progress-wizard > .progress-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #8bcff6;}
.progress-wizard > .progress-wizard-step.complete > .progress > .progress-bar {width:100%;}
.progress-wizard > .progress-wizard-step.active > .progress > .progress-bar {width:50%;}
.progress-wizard > .progress-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.progress-wizard > .progress-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.progress-wizard > .progress-wizard-step.disabled > .progress-wizard-dot {background-color: #f5f5f5;}
.progress-wizard > .progress-wizard-step.disabled > .progress-wizard-dot:after {opacity: 0;}
.progress-wizard > .progress-wizard-step:first-child > .progress {left: 50%; width: 50%;}
.progress-wizard > .progress-wizard-step:last-child > .progress {width: 50%;}
.progress-wizard > .progress-wizard-step.disabled a.progress-wizard-dot{ pointer-events: none; }
.progress {background: #3a91c6;}
/*END Form Wizard*/
.arrow {
margin: 0px;
font-size: 40px;
font-weight: 900;
text-align: right;
margin-bottom: 40px;
color: #000;
}
.arrow i {
cursor: pointer;
background: #ccc;
padding: 0px 8px;
}
.arrow #arrow-down{
display: none;
}
.select-files {
width: 80%;
margin: 0 auto;
}
.upload-bar {
margin: 0px;
background: #f5f5f5;
border: 1px solid #e1e1e1;
padding: 20px;
margin-bottom: 20px;
}
.upload-bar p {
color: #c0c0c0;
text-align: center;
font-size: 18px;
}
.uploaderField{
border: solid 1px #e1e1e1;
height: 41px;
width: 100%;
line-height: 30px;
position: relative;
overflow: hidden;
margin-bottom: 10px;
float: left;
}
.uploaderField input{
position:absolute;
z-index:1000;
width:100%;
height: 40px;
opacity:0;
cursor:pointer;
left:0;
}
#upload_delete{
position:absolute;
bottom:0;
right:0;
}
.select-files .button {
background: #3a91c6;
color: #fff;
padding: 0 15px;
font-size: 14px;
float: right;
height: 40px;
line-height: 35px;
font-weight: normal;
width: 130px;
}
.uploaderField p{
margin:0;
line-height:36px;
width:175px;
white-space:nowrap;
overflow:hidden;
}
.fileUploadList{
overflow:hidden;
}
.display-image{
margin: 0px;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 20px;
margin-bottom: 15px;
display: none;
}
.image-section {
background: #fff;
padding: 10px;
border: 1px solid #e8e8e8;
}
.image-properties {
padding: 0px 25px;
text-align: center;
color: #999;
font-weight: 800;
}
.image-properties h3 {
font-size: 20px;
}
.image-properties p span{
color: #8BCFF6;
font-weight: normal;
}
.image-properties p span.text-danger{
color: #F44336;
}
.printable-size {
width: 100%;
margin-bottom: 10px;
}
.image-properties p {
font-weight: normal;
text-align: right;
}
.display-image .image-properties p {
font-weight: normal;
text-align: center;
}
.custom-size {
width: 25px;
margin-bottom: 10px;
}
#custom_size_option{
text-align: left;
}
.select-products {
margin: 0px;
text-align: center;
}
.select-product h1 {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.select-product h1 span {
display: inline-block;
position: relative;
}
.select-product h1 span:before,
.select-product h1 span:after {
content: "";
position: absolute;
height: 5px;
border-bottom:5px solid #f5f5f5;
top: 6px;
width: 600px;
}
.select-product h1 span:before {
right: 100%;
margin-right: 15px;
}
.select-product h1 span:after {
left: 100%;
margin-left: 15px;
}
.select-product{
display: none;
}
#product-selected{
display: none;
width: 100px;
float: right;
}
.custom_upload_button:hover {
background: rgba(58, 145, 198, 0.83);
}
#select-product{
display: none;
width: 100px;
float: right;
}
.image-section #uploaded_img {
max-width: 100%;
width: auto;
height: auto;
}
.image-properties .images-price {
text-align: right;
}
.product-image-properties{
margin: 0px;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 5px;
margin-bottom: 15px;
display: none;
}
.image-properties h4 span {
color: #8BCFF6;
font-weight: normal;
line-height: 20px;
font-size: 14px;
}
.special-instruction p {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.special-instruction p span {
display: inline-block;
position: relative;
color: #3a91c6;
font-size: 30px;
}
.special-instruction p span:before,
.special-instruction p span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 5px solid #f5f5f5;
top: 6px;
width: 600px;
}
.special-instruction p span:before {
right: 100%;
margin-right: 15px;
}
.special-instruction p span:after {
left: 100%;
margin-left: 15px;
}
.special-instruction TEXTAREA {
width: 100%;
margin: 0 auto;
display: table;
margin-bottom: 20px;
font-size: 15px;
}
.top-row-title p {
font-size: 14px;
font-weight: 300;
margin: 5px 0px;
}
.uploadForm{
float: left;
margin-bottom: 10px;
}
#preview {
float: left;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 5px;
margin-bottom: 15px;
}
.image-section {
width: 100%;
}
/* designs for the blog page */
.page-header h2 a {
color: #70AACF;
text-decoration: none;
font-size: 16px;
}
.page-header {
padding: 0px;
margin: 0px;
border: none;
}
.items-leading, .items-row {
background: #F6FBFF;
margin-bottom: 10px;
padding: 0px 30px;
border: 2px solid #DBE3E6;
}
.icons {
display: none;
}
.readmore a {
padding: 0px;
}
.item p {
color: #898989;
}
/* styles for the jersey frame page By <NAME> */
.banner {
margin: 0px;
}
.banner img {
width: 100%;
}
.detail-text {
padding-top: 20px;
}
.detail-text .jersey-left p {
font-size: 16px;
color: #686868;
}
.detail-text .jersey-left p span{
color: #ee1313;
font-weight: 600;
}
.detail-text .jersey-right {
border: 5px solid #3B82AE;
border-radius: 10px;
background: #8DCEF6;
padding: 10px;
}
.banner_down {
margin-top: 20px;
padding: 0px;
}
.banner_down h1 {
color: #fff;
font-size: 5em;
text-align: center;
background: #47978C;
line-height: 2em;
font-weight: 900;
text-transform: uppercase;
margin: 0px;
}
.banner_down img{
width: 100%;
}
.jersey-process {
margin-bottom: 20px;
}
.jersey-process .title {
font-family: Open Sans, arial, verdana, tahoma;
font-size: 50px;
font-weight: bold;
color: #ee1313;
float: left;
}
.jersey-process .title_contact {
font-family: Open Sans, arial, verdana, tahoma;
font-size: 20px !important;
font-weight: bold;
color: #686868;
text-align: right;
margin-top: 15px;
}
.jersey-process img {
width: 100%;
}
.yellow_box {
background: #efff00;
border: 3px solid #e10000;
width: 80%;
margin: 0px auto;
text-align: center;
color: #000000;
padding: 20px;
}
.yellow_box{
font-family: Open Sans, arial, verdana, tahoma;
font-size: 24px;
}
.framing-styles h1{
text-align: right;
text-transform: uppercase;
}
.framing-styles h1 span{
color: #ee1313;
font-size: 36px;
font-weight: bold;
margin: 0;
padding: 0;
text-align: right;
}
.sleeve-style{
padding:0px;
background: #000000;
padding-bottom: 50px;
}
.sleeve-style p{
background: #f02d2d;
text-align: center;
margin: 0px;
}
.sleeve-style p span{
color: #fff;
font-size: 20px;
text-transform: uppercase;
}
.tee_style {
text-align: center;
padding-top: 10px;
}
.tees_text {
background: #000 !important;
color: #fff;
font-size: 20px !important;
}
.tee_style_text p {
background: #000;
font-size: 20px;
color: #f02d2d;
font-weight: bold;
padding: 10px;
margin-top: 50px;
}
.tee_style_text1 p{
background: #000;
font-size: 14px;
color: #FFFFFF;
font-weight: normal;
margin-top: 20px;
}
.footer_up {
background: #000 none repeat scroll 0 0;
height: 90px;
margin: 0;
padding: 0;
}
.footer_up ul {
margin: 0;
list-style: none;
}
.footer_up li {
list-style: outside none none;
cursor: pointer;
margin-top: 15px;
}
.footer_up ul li img {
float: left;
}
.footer_up ul li span {
color: #fff;
display: block;
float: left;
font-size: 16px;
padding-right: 5px;
padding-top: 25px;
}
.framing-styles {
padding: 0px;
}
.eco_text {
margin-left: 214px;
margin-top: -195px;
position: absolute;
width: 230px;
}
.eco_title {
color: #f02d2d;
font-size: 20px;
font-weight: bold;
}
.eco_text p{
font-size: 14px;
margin: 0;
}
.eco_price{
color: #f02d2d;
font-size: 30px;
font-weight: bold;
}
.product{
float: left;
}
.product-image {
z-index: 99;
padding: 0px;
text-align: center;
}
.product-description h3{
color: #f02d2d;
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
.product-description h2 {
color: #f02d2d;
font-size: 30px;
font-weight: bold;
margin-top: 5px;
}
.product-description {
border-radius: 5px;
background: #98B0C4;
}
.product-description p {
font-size: 14px;
margin: 0;
}
.economy {
width: 520px;
}
.eco{
margin-left: -25px;
border: 5px solid #2A488A;
margin-top: 13px;
}
.shadow1 .product-image {
float: right;
}
.shadow-box1{
margin-right: -25px;
border: 5px solid #F51E28;
margin-top: 18px;
float: right;
}
.shadow3 {
width: 280px;
float: right;
}
.shadow1 {
width: 500px;
}
.shadow-box3{
border:5px solid #1F325C;
margin-top: -20px;
margin-left: 12px;
width: 89%;
}
.shadow2 {
width: 500px;
}
.shadow-box2 {
margin-left: -25px;
border: 5px solid #5A847F;
margin-top: 10px;
}
.shadow4 {
width: 315px;
float: right;
}
.shadow-box4 {
padding-top: 40px;
margin-top: -40px;
border: 5px solid #C9161B;
}
.own {
width: 500px;
}
.own h3 {
color: #f02d2d;
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
.own p {
font-size: 14px;
margin: 0;
}
.own h2 {
color: #f02d2d;
font-size: 30px;
font-weight: bold;
margin-top: 5px;
}
.right-part-res{
display: none;
}
@media only screen and (min-width : 320px) and (max-width : 769px){
.product{
width: 100%;
margin-bottom: 10px;
}
.product-description {
width: 100%;
margin: 0px;
padding-top: 40px;
margin-top: -40px;
text-align: center;
}
.jersey-process .title {
font-size: 30px;
}
.jersey-process .title_contact{
font-size: 12px !important;
}
.framing-styles h1 span {
font-size: 17px;
}
.banner_down h1 {
font-size: 2em;}
}
/*CSS for the shadow box frames*/
.shadow-box {
margin: 10px;
}
.shadow-box h2 {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.shadow-box h2 span {
display: inline-block;
position: relative;
}
.shadow-box h2 span:before {
right: 100%;
margin-right: 15px;
}
.shadow-box h2 span:after {
left: 100%;
margin-left: 15px;
}
.frame-types {
margin-bottom: 20px;
}
.shadow-box-description div {
margin-bottom: 10px;
padding: 0px 20px;
}
.shadow-box-description{
margin-bottom: 10px;
}
.frame-types h4{
width: 100%;
background: #4c4c4c;
text-align: center;
text-transform: capitalize;
margin: 0px;
color: #fff;
padding: 10px 0px;
}
.frame-types .frames {
margin: 10px 5px;
border: 2px solid #000;
border-radius: 2px;
overflow: hidden;
padding-right: 10px;
}
.frame-types .frames img {
width: 100%;
object-fit: cover;
max-width:355px;
}
.frames-list {
margin: 0px;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
position: relative;
min-height: 1px;
padding-right: 5px;
padding-left: 5px;
}
.col-xs-5ths {
width: 20%;
float: left;
}
@media (min-width: 768px) {
.col-sm-5ths {
width: 20%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-5ths {
width: 20%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-5ths {
width: 20%;
float: left;
}
}
.shadow-box-description .descriptions {
padding: 10px 20px;
margin-top: 30px;
border: 1px solid #000;
max-height: 200px;
min-height: 150px;
}
.shadow-box-description .descriptions p {
color: #000;
font-weight: 600;
text-align : center
}
.frames-list .thumb-img{
cursor: pointer;
border: 1px solid #ccc;
height: 50px;
overflow: hidden;
}
.frames-list .col-md-5ths img{
width: 100%;
object-fit: cover;
height: 100%;
border:1px solid #000;
}
.frames-list .col-md-5ths{
height:50px;
overflow:hidden;
}
/*.frames-list .col-md-5ths:last-child {
padding-right: 0px;
}
.frames-list .col-md-5ths:first-child {
padding-left: 0px;
}*/
.frame-types .button {
text-transform: uppercase;
padding: 10px 20px;
width: 75%;
margin: 20px auto;
text-align: center;
height: auto;
background: #3a91c6;
}
.frame-types .button:hover {
opacity: 0.7;
}
.custom-framing {
border: 5px solid #dadada;
box-shadow: 5px 5px 0px #282828;
background: #282828;
margin: 0px;
}
.home-banner-text h1 {
color: #fff;
font-weight: bolder;
text-align: center;
font-size: 40px;
}
.home-banner-text ul {
list-style: none;
padding: 0;
margin: 0;
text-align: center;
font-size: 18px;
color: #fff;
font-weight: lighter;
}
.home-banner-text li:before {
content: "• ";
color: #43B2EA;
font-size: 40px;
line-height: 20px;
position: absolute;
margin-left: -19px;
margin-top: 0px;
}
.banner-text-bottom {
width: 100%;
background: #2793D4;
color: #000;
font-size: 14px;
text-align: center;
font-weight: bold;
padding: 15px;
margin-top: 52px;
}
.home-banner-text {
padding: 0px;
}
.home-banner-img {
padding: 0px;
float: right;
}
#jform_cmc_groups_EMAIL{
float: left;
width: 70%;
height: 24px;
min-height: 24px !important;
margin-right: 10px;
}
#jform_cmc_groups_EMAIL-lbl {
display: none;
}
.cmc-signup {
width: 400px;
margin: 0 auto;
margin-top: 20px;
}
.newsSubmit{
background: url('../images/newsletter-arrow.png') no-repeat center !important;
background-color: #000!important;
width: 12%;
float: left;
padding: 17px !important;
}
.mcSignupModule input[type="text"] {
margin-bottom: 5px;
height: 34px;
width: 100% !important;
padding: 7px;
float: left;
font-family: 'Open Sans';
}
.item-text span {
background: url(../images/check_radio_sheet.png) 0px top no-repeat;
width: 40px;
z-index: 99999999999;
}
.custom_payment .col-md-6 {
margin-bottom: 10px;
}
.circle{
height: 150px;
width:150px;
border-radius: 75px;
background-color: white;
font-size: 17px;
margin-left: 40px;
}
.circle p{
display: inline-block;
zoom: 1;
color: #000;
text-align: center;
vertical-align: middle;
margin: 0px;
font-size: 16px;
font-weight: 700;
color: #68A6CF;
}
.circle span{
height: 60px;
display: inline-block;
zoom: 1;
vertical-align: middle;
}
.lines{
background-color: #fff;
height: 3px;
margin-left: -97px;
margin-top: 78px;
width: 99px;
}
.hline{
background-color: white;
height: 162px;
margin-top: -85px;
width: 3px;
}
.vline{
height: 3px;
width: 25px;
background-color: white;
}
.vline1{
margin-bottom: -49px;
}
.vline2{
margin-bottom: -68px;
}
.custom_payment_form {
padding-top: 15px;
}
.custom_payment_form form TEXTAREA {
margin-bottom: 0px;
}
.vline4{
margin-top: -55px;
}
.res-text {
font-size: 15px;
line-height: 9px;
margin-left: 48px;
width: 200px !important;
margin-left: 28px;
}
.process-arrow {
float: left;
margin-top: 15px;
margin-right: 40px;
margin-left: 7px;
}
.content-sub h2{
margin-top:0px;
}
#editcell {
padding: 15px;
}
@media (min-width: 768px) {
.video-block .col-md-5{
padding-left:0px;
padding-right:0px;
}
.camera_wrap img{
width:100% !important;
height:100% !important;
}
}
abbr[data-original-title], abbr[title]{
cursor:pointer;
}
/* css for sticky header by suman */
.top .nav-up{
display:none;
}
.down .nav-down{
display:none;
}
.down .nav-up {
position:fixed;
z-index:9999;
top:0;
}
.down nav{
width:100%;
}
.down .container{
width:100%;
}
.down .maf-navbar .maf-menu li a{
padding-left:4px;
padding-right:4px;
font-size:12px;
}
.down .maf-navbar .upload-your-photo{
right:-15px;
}
.down #home_logo img{
width:100% !important;
height:100% !important;
}
@media only screen and (min-width : 991px) and (max-width : 1290px){
.down .css-shapes-preview {
display:none;
}
.down .upload-your-photo a{
font-size:0px !important;
}
.down .maf-navbar .upload-your-photo{
width:72px;
}
.down .col-md-12.collapse.navbar-collapse{
width:100%;
}
.down .maf-navbar .maf-menu li a{
font-size:11px;
}
.down .menu.nav.navbar-nav.maf-menu{
left:5%;
}
}
@media (max-width: 768px) {
.down{
display:none;
}
/* end sticky header css */
.account #register-button{
margin-top:10px;
}
.opg-panel .opg-panel-box{
text-align:center;
}
.item-page{
padding:0px 15px;
}
}
#content h1{
border-bottom:0;
}
.main-content-new #content{
width:100%;
padding-right:15px;
}
.specials-wrapper img{
float:none;
}
.item-page #content h1{
width:100%;
}
.faqqueeidt{
border-bottom:1px dotted brown;
margin-bottom: 1em;
padding-bottom: 1em;
}
.faqqueeidt a{
color: #816855 !important;
font-size: 14px;
font-weight: bold;
}
.faqqueans h5{
font-weight: bolder;
}
.ppedit #about_us{
width:100%;
margin:0px;
}
.ppedit #about_us h1{
width:100%;
}
.ppedit #about_us p{
width:100%;
text-align: left;
}
.ppedit #about_us h6{
width:100%;
}
.ppedit #about_us li{
width:100%;
}
.home-optn{
position: absolute;
bottom: 10px;
left: 15px;
right: 15px;
}
.lefth a{
background:rgba(0, 0, 0, 0) url("../images/btn_01.png") repeat scroll 0 0 / cover;
float: left;
height: 40px;
width: 120px;
}
.righth a{
float:right;
background:rgba(0, 0, 0, 0) url("../images/btn_02.png") repeat scroll 0 0 / cover;
float: right;
height: 40px;
width: 167px;
}
.lefth a:hover,.righth a:hover {
margin-top: -3px;
transition: all 200ms ease-in;
}
@media (max-width: 479px) {
.progress-wizard img {
width:100%;
}
.opg-panel.opg-panel-box{
text-align:center;
}
.righth a{
width:30%;
height:auto;
bottom:50px;
}
.lefth a {
width:18%;
height:auto;
bottom:40px;
}
}
@media only screen and (min-width : 480px) and (max-width : 768px){
.righth a{
width:30%;
height:45px;
bottom:50px;
}
.lefth a {
width:18%;
height:40px;
bottom:20px;
}
}
.vmpayment_description, .vmshipment_description{
display:block;
}
.vmCartPaymentLogo .opg-text-small{
font-size:9px;
}
.jmoddiv.jmodinside{
position:static !important;
}
.home-banner-text li a{
font-size: 18px !important;
color: white;
text-decoration: none !important;
}
.home-banner-text li a:hover {
color: #43b2ea;
}
.product_list_one.accessories .button_list table{
display:none;
}
.total_products {
width: 20px;
height: 20px;
background: #94D0F5;
text-align: center;
border-radius: 10px;
float: right;
margin-right: 40px;
margin-top: -97px;
z-index: 99999;
position: relative;
}
.call-us-now abbr {
border: none;
}
.pathway span {
text-transform: capitalize;
}
.acrylic-sandwich-mount-thumb-img.thumb img {
width: 79%;
}
.acrylic-sandwich-mount-thumb-img.Backing-Color.thumbBacking-Color img {
width: 79%;
}
.col-md-3.australian_made{
width:15%;
}
#left_navigation_bg ul.VMmenu li {
border-bottom: 1px #CCC solid;
float: none;
width: 100%;
padding: 5px 0px;
}
#left_navigation_bg ul.VMmenu {
width: 100%;
border: 1px solid #ccc;
}
#left_navigation_bg .moduletable h3 {
background: #3a91c6;
color: #fff;
text-transform: capitalize;
padding: 10px;
margin: 0px;
}
#left_navigation_bg ul.VMmenu li a{
font-size: 13px;
text-align: left;
color: #3a91c6;
padding: 0px;
padding-left: 12px;
font-weight: bold;
}
.content-sub .photo-art-bl-btn{
float:left;
}
.photo-art-bl-btn{
float:right;
}
.social-sharing {
float: right;
margin-top: -50px;
}
.maf-navbar .upload-your-photo .shape-block:hover {
opacity: 0.9;
}
.maf-navbar .upload-your-photo{
cursor:pointer;
}
.total span {
text-align: right;
padding: 0px;
color: #999;
width: 100%;
margin-top: 5px;
}
@media only screen and (min-width : 705px) and (max-width : 991px){
.guarantee-desc{
width:86%;
}
.guarantee-img{
width:14%;
}
}
#left_navigation_bg ul.VMmenu li:last-child {
border: none;
}
@media only screen and (min-width : 320px) and (max-width : 991px){
.aProductTab .fadein {
height: 501px;
}
.content-sub{
padding-right:0px;
}
.upload-block{
margin-top:2em;
}
}
.footer_box{
padding-top:1em;
padding-bottom:1em!important;
}
@media only screen and (min-width : 770px) and (max-width : 991px){
.photo-on-canvas-right{
padding-left:0px;
padding-right:0px;
padding-bottom:1em;
}
}
@media only screen and (min-width : 262px) and (max-width : 500px){
.collage-thumb-img-wrap{
padding:15px 15px;
}
}
@media only screen and (min-width : 768px) and (max-width : 991px){
.blue-box.left-box.glossyedit {
height: 213px;
}
.digital_prod_desc #fadeshow1 {
width: 48%!important;
}
.left_image img {
width: 33%;
}
.cat_pic{
width:auto;
}
.side_newsletter{
width:auto;
margin-top:5px;
padding-right:5px;
}
.cat_pic img{
height:165px;
padding-right:5px;
width:auto;
}
}
}
@media only screen and (min-width : 992px) and (max-width : 1199px){
.blue-box.left-box.glossyedit {
height: 174px;
}
.side_newsletter{
margin:0px;
width:auto;
}
}
@media only screen and (min-width : 992px) and (max-width : 767px){
.order_down_cart input {
width: 138px !important;
margin-left:5px;
}
}
.VMmenu .VmOpen .menu li.VmClose {
padding: 0px !important;
border: none !important;
}
.VmClose>.menu>.VmClose {
display: none !important;
}
.next_step_image {
width: 100%!important;
text-align:center;
}
.ws-search {
width: 30%;
margin: 0 auto;
margin-bottom: 10px;
margin-top: -30px;
z-index: 9999;
position: relative;
color: black;
}
.search label.element-invisible{
display: none;
}
.ws-search .form-inline button {
margin-top: -3px;
}
.ws-search input#mod-search-searchword {
line-height: 30px;
padding: 0 10px;
border: 2px solid #eee;
}
.jersy-order-form {
margin-top: 10px;
}
.shadow-box-extra-image img {
width: 100%;
}
.shadow-box-extra-image{
border-radius: 5px;
border: 4px solid #000;
}
#left_navigation_bg .VmOpen .menu {
padding-left: 15px;
}
a:hover {
text-decoration: none;
}
.image-properties input {
width: 40%;
}
.notice b {
text-transform: capitalize;
}
#m-Modal .modal-content {
margin-top: 15%;
}
#m-Modal .modal-body{
padding: 20px;
}
#searchForm .checkbox {
float: left;
margin: 10px;
}
#searchForm .checkbox input{
margin:0px;
position: relative;
}
.acc-register .buttonBar-right {
text-align: right;
margin-top: 0px;
margin-right: -15px;
width: 300px;
float: right;
}
.opg-panel-box{
text-align: center;
}
.empty-cart{
width:100%;text-align:center;font-weight:normal;font-size:18px;
}
.opg-button i.opg-icon-question{
line-height:37px;
}
.addCartbBtn.pull-right input:disabled {
cursor: not-allowed;
}
.select_thickness {
margin-bottom: 20px;
}
.cmc-signup .alert{
text-align: center;
}
input[type="submit"]{
text-transform: capitalize;
}
.res-text {
height: 25px;
}
.faq tr:nth-of-type(odd){
background: transparent;
}
.faq td{
border:none;
}
.moduletable.down-arrow:before {
content: "\f078";
position: absolute;
right: 20px;
top: 17px;
font-size: 18px;
font-family: FontAwesome;
}
.moduletable.up-arrow:before {
content: "\f077";
position: absolute;
right: 20px;
top: 17px;
font-size: 18px;
font-family: FontAwesome;
}
.prices.pull-left {
margin-right: 10px;
}
.acrylic-photo-block-thumb-img {
margin-right: 30px;
}
input[type="submit"]:hover,button:hover {
opacity: 0.8;
}
#home_logo a:hover{
opacity:1;
}
.search {
font-size: 14px;
}
.search-list {
margin-bottom: 15px;
}
.search-list .result-title a {
font-size: 14px;
}
.shadow-box h1{
margin-bottom: 0px;
}
.shadow-box .digital_prod_desc h3{
margin-top: 0px;
}
.cart-note{
color: #ff0000 !important;
font-size: 13px !important;
font-style: italic !important;
}
#couponpricediv #coupon_price{
color:red;
} | public/css/style_final.css | .moduleRow { }
.moduleRowOver { background-color: #D7E9F7; cursor: pointer; }
.moduleRowSelected { background-color: #E9F4FC; }
.checkoutBarFrom, .checkoutBarTo { font-family: "open Sans"; font-size: 10px; color: #8c8c8c; }
.checkoutBarCurrent { font-family: "open Sans"; font-size: 10px; color: #626262; }
/* message box */
.messageBox { font-family: "open Sans"; font-size: 10px; }
.messageStackError, .messageStackWarning { font-family: "open Sans"; font-size: 10px; background-color: #ffb3b5; }
.messageStackSuccess { font-family: "open Sans"; font-size: 10px; background-color: #99ff00; }
/* input requirement */
.inputRequirement { font-family: "open Sans"; font-size: 10px; color: #ff0000; }
.border {
font-family:"open Sans";
color: #626262;
font-size: 11px;
border: 1px solid #c4c4c4;
}
.shadow {
background-color: #525552;
}
/*
$Id: dynamenu_for_osc_styles.txt,v 1.00 2006/05/07 20:04:02 nate_02631 Exp $
Dynamenu for osCommerce CSS Definitions
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
Below are styles to be included in your catalog stylesheet (stylesheet.css) for
use with Dynamenu for osCommerce. All the CSS declarations for various menu styles
are included below. You need only include the style for the type of menu you plan
to use in your store template (of course feel free to paste them all in if experimenting).
The plain and DHTML menus also work with a set of templates found in the
/includes/functions/dynamenu/templates folder, but in just about all cases
modifying the styles below should net you the results you want.
*/
/*-------------------------------------*/
/* Horizontal Drop-Down Menu Style */
/*-------------------------------------*/
.horbar { /* Color of main horizontal menubar and border */
color: black;
background-color: #e6e7e6;
border: 1px outset #525252;
}
.horizitem { /* Behaviour of main horizontal menu items, leave as is for proper operation */
float: left;
white-space: nowrap;
}
.horizitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.horizitem a:link, .horizitem a:visited { /* Font style & color of main menu items */
color: #626262;
text-decoration: none;
}
.horizitem a:hover { /* Font style & color, background menu color of main menu item when hovered over */
color: #ffffff;
background-color: #ffffff;
text-decoration: none;
}
.horizitem a:active { /* Font style & color, background menu color of main menu item when clicked */
color: #ffff00;
background-color: #626263;
text-decoration: none;
}
.horizsubmenu { /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
.horizsubframe { /* Color of submenu item and border */
background-color: #ffffff;
border: 2px outset #fdfefd;
position: relative;
display: block;
}
.horizsubitem { /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
text-align: left;
white-space: nowrap;
}
.horizsubitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.horizsubitem a:link, .horizsubitem a:visited { /* Font color, style of submenu items */
color: #626262;
font-size: 11px;
text-decoration: none;
}
.horizsubitem a:hover { /* Font color, style, background submenu color of submenu item when hovered over */
color: #ffffff;
background-color: #21459c;
text-decoration: none;
}
.horizsubitem a:active { /* Font color, style, background submenu color of submenu item when clicked */
color: #ffff00;
background-color: #626263;
text-decoration: none;
}
.horizsubitem .horizfwdarr, .horizitem .horizfwdarr { /* Positioning of right arrow for submenus */
position: absolute;
top: 5px;
right: 8px;
}
.dmselected { /* Style override for selected category tree */
background-color: #ccc;
font-weight: bold;
}
.horbar .dmselected { /* Style override for selected root category */
background-color: #999;
}
/*---------------------------------*/
/* Vertical Fly-Out Menu Style */
/*---------------------------------*/
.verbar { /* Color of main vertical menubar and border */
color: black;
background-color: #ffffff;
}
.vertitem { /* Behaviour of main vertical menu items, leave as is for proper operation */
text-align: left;
white-space: nowrap;
}
.vertitem a { /* Font style, size of main menu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.vertitem a:link, .vertitem a:visited { /* Default font style & color of main menu items */
color: #626262;
text-decoration: none;
}
.vertitem a:hover { /* Font style & color, background menu color of main menu item when hovered over */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertitem a:active { /* Font style & color, background menu color of main menu item when clicked */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubmenu { /* Behaviour of sub-menu - leave as is for proper operation of submenus */
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
.vertsubframe { /* Color of submenu item and border */
background-color: #ffffff;
border: 2px #efefef;
position: relative;
display: block;
}
.vertsubitem { /* Behaviour of sub-menu - leave as is for proper operation of submenus */
text-align: left;
white-space: nowrap;
}
.vertsubitem a { /* Font style, size of submenu items */
font-family: "open Sans";
font-size: 11px;
text-decoration: none;
position: relative;
display: block;
}
.vertsubitem a:link, .vertsubitem a:visited { /* Default font style & color of submenu items */
color: #626262;
text-decoration: none;
}
.vertsubitem a:hover { /* Font style & color, background submenu color of submenu item when hovered over */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubitem a:active { /* Font style & color, background submenu color of submenu item when clicked */
color: #ffffff;
background-color: #626263;
text-decoration: none;
}
.vertsubitem .vertfwdarr, .vertitem .vertfwdarr { /* Positioning of right arrow for submenus */
position: absolute;
top: 5px;
right: 8px;
}
.dmselected { /* Style override for selected category tree */
background-color: #ffffff;
font-weight: bold;
color: #626262;
}
.verbar .dmselected { /* Style override for selected root category */
background-color: #ffffff;
color: #626262;
}
/*---------------------------*/
/* Tree and Plain Menu Style */
/*---------------------------*/
.treemenudiv { /* Behaviour of tree/plain menu item - leave as is for proper performance */
display: block;
white-space: nowrap;
}
.phplmbodytable { /* Class of table cells containing plain menus */
}
.phplmnormal { /* Font size & color of unlinked menu items */
color: #626262;
font-size: 11px;
text-decoration: none;
}
a.phplm:link, a.phplm:visited { /* Font color, style of linked & visited menu items */
color: #ffffff;
font-size: 11px;
text-decoration: none;
}
a.phplm:hover { /* Font color, style of menu items when hovered over */
color: #626262;
background-color: #ffffff;
font-size: 11px;
text-decoration: none;
}
a.phplm:active { /* Font size & color of menu items when clicked */
color: #ffffff;
font-size: 11px;
text-decoration: none;
}
.dmselected { /* Style overide for selected category tree */
background-color: #ffffff;
font-weight: bold;
color: #626262;
}
#loader{
visibility:hidden;
}
#f1_upload_form{
height:100px;
}
#f1_ok{
font-family: "open Sans";
font-size: 12px;
font-weight:bold;
color:#00FF00;
}
#f1_upload_form {
font-family: "open Sans";
font-size: 11px;
color: #626262;
}
#f1_upload_process{
visibility:hidden;
position:absolute;
}
button {
font-family: "open Sans";
font-size: 12px;
font-weight: bold;
color: #FFFFFF;
height: 22px;
background-image: url(images/button.gif);
}
.error{
font-family: "open Sans";
font-size: 11px;
font-weight:bold;
color:#FF0000;
}
/*--------------- my css -------------------*/
hr{
color:#626262;
margin:0;
padding:0;
clear:both;
}
.center{
margin-left:auto;
margin-right:auto;
}
.left{
float:left;
}
.right{
float:right;
}
.center-text{
text-align:center;
}
.header-main{
margin:0 auto;
overflow:hidden;
width:1000px;
background:#000000;
padding-top:10px;
}
.header-banner-container{
width:auto;
height:167px;
background:#fff;
}
.header-content{
width:950px;
overflow:hidden;
margin:0 auto;
}
.customer-bar{
height:25px;
width:auto;
background:#000000;
text-align:right;
padding:0 30px;
}
.customer-bar p{
float:right;
margin:4px 0;
padding:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
color:#fff;
}
.customer-bar p a{
color:#fff;
text-decoration:none;
}
.customer-bar p a:hover{
text-decoration:underline;
}
.logo-container{
width:240px;
height:80px;
/* border:solid 1px #626262;*/
float:left;
margin-left:5px;
margin-top:16px;
}
.banner-img{
float:right;
width:620px;
margin-right:20px;
height:120px;
}
.banner-img img{
float:right;
margin:10px 5px;
}
.main-nav-wrap{
clear:both;
width:auto;
overflow:hidden;
min-height:34px;
border-bottom:1px solid #999999;
border-top: solid 1px #999999;
text-align:center;
padding:0 20px;
}
.main-nav-wrap ul{
list-style:none;
margin:0 auto;
padding:0;
}
.main-nav-wrap ul li{
float:left;
padding:10px 6px 0 6px;
font-family:"open Sans";
font-weight:bold;
font-size:14px;
color:#878787;
}
.main-nav-wrap ul li a{
color:#878787;
text-decoration:none;
}
.main-nav-wrap ul li a:hover{
color:#878787;
text-decoration:underline;
}
.photo-on-canvas-left {
padding: 0px;
}
#fadeshow {
width: 100%;
}
.std-size .images {
padding: 0px;
overflow: hidden;
}
.product-field .product_browse {
display: none;
}
.banner-right{
/*width:700px;*/
float:right;
background-color:#FFFFFF;
border:0px solid #c4c4c4;
}
.content{
width:auto;
overflow:hidden;
clear:both;
margin:0px;
margin-bottom:20px;
padding: 0px;
padding-bottom: 5px;
}
span.hasTooltip {
display: none;
}
.aProductTab .acrylic{
border-bottom:solid 10px #eeecdf;
margin: 10px 0px;
padding-bottom: 10px;
}
.customImage img{
padding: 0px;
height: 460px;
}
.new-heading{
font-size: 20px !important;
color: #fff !important;
font-weight: normal;
background: #3a91c6;
margin: 0px;
padding: 15px;
}
.customImage img:first-child {
padding-right: 10px;
}
.customImage img:last-child {
padding-left: 10px;
}
.reset, .remind{
margin:0 10px;
overflow:hidden;
clear:both;
}
.reset fieldset, .remind fieldset{
margin:0;
padding:0;
border:0;
float:left;
}
.reset .validate , .remind .validate {
line-height: normal;
padding: 6px 15px !important;
height: auto;
}
.content-sub{
overflow:hidden;
padding-left: 0px;
}
.acrylic p {
padding: 10px;
background: #eee;
}
.acrylic h2 {
background: #3A91C6;
font-size: 24px !important;
padding: 5px 20px !important;
color: #fff !important;
}
/*
.heading-blue{
width:300px;
min-height:25px;
overflow:hidden;
background:#3a91c6;
color:#fff;
margin:0 0 10px 0;
text-transform:capitalize;
font-family:"open Sans";
font-size:17px;
font-weight:bold;
padding-left:15px;
padding-top:5px;
}
*/
.heading-grey{
width:240px;
height:25px;
background:#676767;
color:#fff;
margin:0 0 5px 0;
font-family:"open Sans";
font-size:15px;
font-weight:bold;
padding-left:15px;
padding-top:5px;
}
.processing-flow{
font-family: "open Sans";
font-size: 16px;
color: #585858;
text-transform: capitalize;
font-weight: bold;
clear: left;
width: 85%;
margin: 0px auto;
margin-top: 20px;
margin-bottom: 20px;
}
.processing-flow i.fa{
font-size: 75px;
float: left;
margin-left: 10px;
}
.processing-flow i.fa.fa-arrow-down {
display: none;
}
.processing-flow span{
color:#408ac7;
}
.blue-box{
min-height: 155px;
height: auto;
width:48%;
border: solid 1px #b5c6d0;
background:#d8e9f3;
margin-bottom:15px;
overflow:hidden;
padding: 20px;
border-radius: 3px;
}
dl.article-info.muted {
display: none;
}
.left-box{
float: left;
}
.right-box{
float: right;
}
.blue-box h1{
font-family:"open Sans";
font-size:15px;
color:#5b5f62;
text-transform:capitalize;
margin:0px;
margin-bottom: 5px;
}
.blue-box h1 span{
color:#3492cf;
}
.blue-box p{
font-family:"open Sans";
font-size:13px;
color:#626262;
margin:0px
font-weight:normal;
}
input.submit-order{
margin-left:auto;
margin-right:auto;
width:131px;
height:36px;
background:url(../images/order-now-button.gif) no-repeat;
border:0;
font-family:"open Sans";
color:#fff;
font-size:22px;
}
.footer-wrap{
padding-top:30px;
margin:0 auto;
background-color:#FFFFFF;
border-top:solid 10px #a7a7a7;
width:900px;
height:100px;
text-align:center;
}
.footer-wrap p{
font-size:13px;
color:#626262;
margin:0;
padding:0;
font-family:"open Sans";
}
.footer-wrap h1{
margin:0;
padding:0;
font-size:14px;
color:#6b6974;
font-family:"open Sans";
}
.footer-wrap h1 a{
color:#6b6974;
text-decoration:none;
}
.footer-wrap h1 a:hover{
text-decoration:underline;
}
.block-mount{
}
.block-mount ul{
margin:0 20px 0 0;
padding:0;
float:left;
list-style:none;
}
.block-mount ul li{
background:url(../images/tick.png) no-repeat;
padding-left:40px!important;
font-size:18px;
font-family:"open Sans";
color:#626262;
padding-top:10px;
line-height:36px;
}
.blockmount-bottom{
width: auto;
height:auto;
margin:20px auto;
padding:40px;
text-align:center;
background:#f1f1f1;
}
.blockmount-bottom div{
margin:10px auto;
width:160px;
}
.blockmount-bottom span{
display:block;
background:#ff6403;
width:722px;
height:30px;
margin:20px auto;
text-align:center;
color:#FFFFFF;
font-family:"open Sans";
font-size:15px;
font-weight:bold;
padding-top:10px;
}
.block-mount .blockmount-a{
float:right;
position:absolute;
margin-left:300px;
margin-top: -230px;
}
.blockmount-bottom p{
font-family:"open Sans";
font-size:14px;
text-transform:capitalize;
font-weight:bold;
color:#626262;
}
.acrylic-img-blocks{
float:left;
margin-right:8px;
border:solid 1px #7c7c7c;
margin-top:20px;
}
.acrylic-img-blocks-r{
float:left;
border:solid 1px #7c7c7c;
margin-top:20px;
}
.acrylic .content-sub input.button{
height:32px;
width:124px;
background:#8b736f;
border:0;
font-size:18px;
color:#fff;
}
.acrylic .content-sub .view-price{
height:auto;
width:202px;
background:#8bcff4;
font-family:"open Sans";
font-size:14px;
font-weight:bold;
color:#fff;
padding:10px;
margin-bottom:10px;
}
/*
.content-sub .heading-blue{
margin-top:0;
}
*/
.poc{
padding-bottom:18px;
border-bottom:12px solid #eeecdf;
}
/*
.poc .heading-grey, .poc .heading-blue{
width:465px;
}
*/
.poc .content-sub{
width:495px;
}
.poc .content-sub-1{
float:right;
width:426px;
}
.poc .content-sub-1 .greybox{
background:#cacaca;
width:auto;
padding:10px 8px;
color:#5d5d5d;
font-family:"open Sans";
font-size:18px;
margin-bottom:15px;
}
.poc .content-sub-1 .greybox p{
margin:0;
padding:0;
}
.poc .content-sub-1 img{
border: solid 1px #5b5b5b;
clear: both;
margin-bottom:15px;
width:99%;
}
.poc .content-sub-1 img#display1{
border: solid 1px #5b5b5b;
clear: both;
margin-bottom:15px;
width:99%;
margin-top:30px;
}
.poc .content-sub h1{
font-family:"Arial Narrow";
font-size:22px;
color:#5d5d5d;
text-transform:uppercase;
font-weight:normal;
}
.photo-art-thumb{
width:152px;
height:196px;
background:url(../images/photo-art-text-bg.gif) repeat-x bottom;
float:left;
margin-right:10px;
margin-bottom:15px;
overflow:hidden;
}
.photo-art-thumb p{
clear:both;
font-family:"open Sans";
color:#5c5b57;
padding-top:9px;
padding-left:5px;
margin:0;
font-size:12px;
}
.photo-art-thumb-img{
height:162px;
width:152px;
overflow:hidden;
cursor: pointer;
}
.photo-art-thumb img{
border:solid 1px #757f88;
width:100%;
}
.photo-art-btm{
clear:both;
width:auto;
min-height:50px;
overflow:hidden;
}
.photo-art-btm-sub{
height:197px;
width:190px;
float:left;
overflow:hidden;
}
.photo-art-btm-sub-top{
z-index:100;
background:url(/images/original-image-label.png) center no-repeat;
background-color:#000000;
height:30px;
width:auto;
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-opacity: .5;
-khtml-opacity: .5;
opacity: .5; /* for future compatibility */
}
.photo-art-btm-sub1{
float:right;
width:220px;
overflow:hidden;
}
.photo-art-btm-sub1 .heading-blue{
width:auto;
margin-bottom:18px;
}
.photo-art-btm-sub1 p{
font-family:"open Sans";
font-size:14px;
color:#404040;
font-weight:normal;
margin:0 0 15px 0;
}
.photo-art-blue-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-grey-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-grey-btn span
{
margin:0px;
padding:0px;
float:left;
width:auto;
height:20px;
padding:5px 15px;
color:#fff;
text-decoration:none;
background:#333;
}
.photo-art-grey-btn span:hover
{
background:#3A91C6;
}
.photo-art-bl-btn{
background:none;
width:auto;
height:auto;
font-family:"open Sans";
font-size:14px;
color:#fff;
text-align:center;
font-weight:bold;
padding-top:8px;
margin-right:20px;
}
.photo-art-bl-btn a
{
margin:0px;
float:left;
width:auto;
padding:10px 20px;
color:#fff;
text-decoration:none;
background:#3A91C6;
margin-right:10px;
text-transform: uppercase;
font-size: 16px;
font-weight: normal;
}
.photo-art-bl-btn a:hover{
opacity: 0.8;
}
.photo-art-bl-btn a:hover
{
background:#3A91C6;
}
.photo-art-blue-btn a
{
margin:0px;
float:right;
width:auto;
padding:5px 15px;
color:#fff;
text-decoration:none;
background:#3A91C6;
}
.block-mount-left-img img {
width: 100%;
}
.blockmount-bottom .photo-art-blue-btn a
{
margin: 0px;
height: auto;
float: right;
width: 100%;
padding: 15px 35px;
color: #fff;
text-decoration: none;
text-transform: uppercase;
background: #3A91C6;
}
.blockmount-bottom .photo-art-blue-btn a:hover {
background: #3A91C6;
}
.content-sub .collage-thumb{
height:220px;
width:152px;
float:left;
margin-right:10px;
margin-bottom:15px;
border:solid 0px transparent;
background:url(../images/collage-text-bg.gif) repeat-x bottom;
}
.collage-thumb{
height:200px;
width:164px;
float:left;
margin-right:16px;
margin-bottom:15px;
border:solid 5px transparent;
/*ackground:url(../images/collage-text-bg.gif) repeat-x bottom;*/
background:#eeecdf;
text-align:center;
}
.collage-thumb img{
border: solid 1px #757a7d;
height:auto;
width:100%;
cursor: pointer;
margin:0;
}
/*.collage-thumb.selected{
border-color:#8dcef6;
}
.collage-thumb.selected img, .collage-thumb img:hover{
opacity:1;
}*/
.collage-thumb-dbl p{
font-family:"open Sans";
color:#5c5b57;
padding-top:12px;
padding-left:5px;
margin:0;
font-size:12px;
text-transform:capitalize;
padding-top:185px;
}
span.quantity-box{float:left; margin-right: 10px;}
.collage-thumb p{
font-family:"open Sans";
color:#5c5b57;
padding-top:12px;
padding-left:5px;
margin:0;
font-size:12px;
text-transform:capitalize;
padding-top:185px;
}
.collage-thumb-dbl{
height:220px;
width:314px;
/*margin-top:10px;*/
float:left;
margin-right:10px;
margin-bottom:15px;
background:url(../images/collage-text-bg.gif) repeat-x bottom;
}
.collage-thumb-dbl img{
border: solid 1px #757a7d;
cursor: pointer;
height:200px;
}
.content-sub-1 .heading-grey, .content-sub-1 .heading-blue {
width:auto;
clear:both;
font-size:15px;
margin-bottom:10px;
}
.heading-blue h1{
margin: 0;
font-size: 33px;
font-weight: normal;
line-height: 36px;
color: #626262;
}
.content-sub-1 p{
margin:0 0 10px 0;
padding:0;
font-family:"open Sans";
font-size:14px;
color:#626262;
padding-left:5px;
padding-right: 5px;
margin-top:10px;
}
.collage-links{
margin:15px auto;
width:245px;
overflow:hidden;
}
.no-border-bottom{
border-bottom:0;
}
.order ul{
list-style:none;
font-family:"open Sans";
}
.order ul li{
color:#626262;
margin:0;
padding:0;
height:40px;
clear:both;
}
.order ul li label{
float:left;
width:200px;
text-transform:capitalize;
color:#626262;
font-weight:bold;
font-size:12px;
}
.order ul li input{
float:left;
}
.order ul li input.radio , .order ul li input.check{
margin:7px 0 0 0
}
.order ul li p{
margin:5px 0 0 0;
padding:0;
float:left;
width:auto;
clear:none;
font-weight:normal;
text-transform:capitalize;
}
.order ul li p a{
color:#3a91c6;
}
.heading-blue{
width:100%;
margin:0px;
margin-bottom: 20px;
padding:0px;
padding-top:5px;
font-size: 30px;
text-transform: capitalize;
}
.order h1{
font-family:"open Sans";
font-size:14px;
clear:both;
font-weight:normal;
color:#626262;
}
.order p{
font-family:"open Sans";
font-size:14px;
clear:both;
font-weight:normal;
color:#626262;
}
.order .hidden{
position:absolute;
z-index:100;
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-opacity: .5;
-khtml-opacity: .5;
opacity: .5; /* for future compatibility */
}
.gift_voucher_form .product-fields {
padding-right: 30px;
}
.gift_voucher_button {
clear: both;
}
.selectors{
/* position:absolute;
z-index:50;*/
clear:both;
margin-bottom:30px;
overflow:hidden;
width:auto;
display:block;
}
.order-form{
}
.order h1{
font-size:12px;
clear:both;
}
.order h2{
font-size:14px;
clear:both;
font-weight:bold;
color: #3891c9;
}
.order-form select, .order-form textarea{
background: #CCCCCC;
border: 1px solid #999999;
color: #626262;
font-family: Arial,Helvetica,"open Sans";
font-size: 12px;
margin: 0 20px 0 0;
padding: 5px;
width: auto;
}
.order-form textarea{
height:160px;
width:590px;
border-right:solid 1px #666666;
margin-bottom:60px;
}
.quantity{
width:120px;
}
.size{
width:216px;
}
.lamination{
width:180px;
}
.effect{
width:170px !important;
}
.edge{
width:200px !important;
}
.edge_photo_canvas{
width:100px !important;
}
.edge_photo_collage{
width:100px !important;
}
.edge_into_art{
width:100px !important;
}
.select{
width:200px !important;
}
.upload-img{
margin-bottom:30px;
}
.upload-img img{
margin-top:0px;
float:left;
margin-left:250px;
position:absolute;
cursor:pointer;
}
.upload-img input{
position:absolute;
width:280px;
height:31px;
background:#FFF;
border:#3a91c6 1px solid;
float:left;
font-family: Verdana,Arial,"open Sans";
font-size: 11px;
}
.upload-img input.button{
height:32px;
width:170px;
background:#3a91c6;
border:0;
font-size:14px;
font-weight:bold;
color:#fff;
position:absolute;
cursor:pointer;
margin-bottom:15px;
margin-left: 375px;
float:left;
}
.upload-img input.button:hover
{
background:#333;
}
.upload-img1{
float:right;
width:auto;
height:30px;
}
.upload-img1 input.button{
height:32px;
width:124px;
background:#3a91c6;
border:0;
font-size:14px;
font-weight:bold;
color:#fff;
position:relative;
cursor:pointer;
margin-bottom:15px;
float:right;
}
.upload-img1 input.button:hover
{
background:#333;
}
.body-wrap{
margin:0px;
overflow:hidden;
}
.body-wrap p
{
font-size:14px;
text-align: justify;
width: 100%;
overflow: hidden;
}
.body-wrap p img{
margin: 0 auto;
display: table;
}
.aluminium-right-img{
padding-left: 0px;
}
.upload-img input.hidden{
margin-left:150px;
margin-top:15px;
width:150px;
position:absolute;
cursor: pointer;
filter: alpha(opacity=0);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0; /* for future compatibility */
}
.customUploadWrapper{
margin: 0px;
}
.australian-made-text{
padding: 0px;
}
.australian-made-text h5{
background: #F90;
}
.std-size{
overflow:hidden;
clear:both;
width:auto;
}
.acrylic-photo-block-thumb img{
float:left;
}
.canvas-std-size{
}
.canvas-img,.photo-on-canvas-thumb-img{
float:left;
height:205px;
margin:0;
}
.canvas-img img,.photo-on-canvas-thumb-img img{
width:auto;
height:auto;
}
.photo-on-canvas-thumb{
margin-left:25px;
}
.std-size img{
border: 0px solid #000;
margin: 0 auto;
text-align: center;
float: none;
width: 100%;
}
.photo-on-canvas-orb-btn{
clear:both;
}
.acrylic-sandwich-mount-thumb-img img{
border: 1px solid #000 !important;
}
.Non_cart_Image_Attributes_Title{
}
.Non_cart_Image_Attributes_Title span{
float:left;
margin:0px;
padding:0px;
}
.clear-left{
clear:left;
}
.order .content-sub{
overflow:hidden;
}
.order .content-sub img{
margin-bottom:30px;
}
.content-sub img.right{
float:right;
}
.content-sub img{
margin-right:7px;
}
.button-list {
padding: 0px;
margin-bottom: 10px;
}
.photo-print-images{
clear:both;
overflow:hidden;
width:auto;
margin-bottom:20px;
}
.photo-print-images img{
border:solid 2px #3a91c6;
}
.photo-print-images img.left{
float:left;
}
.photo-print-images img.right{
float:right;
}
.image-submitted{
position:absolute;
margin-left:600px;
height:300px;
width:400px;
}
.image-submitted img{
border:solid 1px #626262;
}
.block-image{
clear:both;
padding-bottom:30px;
overflow:hidden;
}
.block-image ul{
list-style:none;
overflow:hidden;
display:inline;
}
.block-image ul li{
float:left;
overflow:hidden;
height:auto;
clear:none;
margin-right:60px;
margin-bottom:30px;
}
.block-image ul li img, .block-image ul li p{
float:left;
border:solid 1px #3891c9;
padding:0;
margin:10px 0 0 0;
}
.block-image ul li p{
border:0;
clear:both;
}
.order-processing
{
margin:0px;
padding:0px;
float:left;
margin-top:15px;
height:auto;
width:auto;
}
.order-processing .content-sub-1{
width:430px;
float:left;
/* border-right:solid 1px #626262;*/
border:2px solid #3A91C6;
padding-bottom:10px;
margin-left:25px;
}
.order-processing .content-sub
{
float:left;
padding-right:20px;
/* border-right:solid 1px #626262;*/
border:2px solid #3A91C6;
padding-bottom:10px;
width:450px;
}
.heading_blue_mycart
{
font-family:"open Sans" !important;
margin:0 0 0 0 !important;
padding:0 !important;
font-size:18px !important;
height:35px !important;
line-height:32px !important;
padding-left:15px !important;
width:auto !important;
font-weight:normal !important;
background: none repeat scroll 0 0 #3A91C6 !important;
color: #FFFFFF !important;
font-size: 18px !important;
line-height: 32px !important;
margin-bottom:20px !important;
}
.order-processing .content-sub-1 form ul li input
{
margin:0px;
padding:0px;
float:left;
background:#FFF;
border:1px solid #ccc;
margin-bottom:8px;
}
.order-processing .content-sub-1 form ul li input.button[Type="Submit"]
{
background: none repeat scroll 0 0 #3A91C6;
color: #FFFFFF;
float: right;
height: auto;
margin: 0;
padding: 5px 15px;
text-decoration: none;
width: auto;
margin-right:35px;
margin-top:5px;
}
.order-processing .content-sub-1 form ul li input.button[Type="Submit"]:hover
{
background:#333;
}
.order-processing .content-sub-1 form ul li a.forgot-pwd
{
margin:0px;
padding:0px;
float:right;
margin-right:15px;
color:#09F;
font-size:14px;
font-family:"open Sans";
font-weight:normal;
margin-top:10px;
}
.order-processing .content-sub-1 form ul li a.forgot-pwd:hover
{
color:#333;
}
.order-processing h1{
font-family:"Arial Narrow";
color:#626262;
margin:0 0 0 0;
padding:0;
font-size:20px;
}
.order-processing .content-sub h2, .order-processing h2{
margin:10px 0;
padding:0;
font-size:22px;
font-family:"Arial Narrow";
color:#3a91c6;
font-weight:normal;
}
.order-processing .content-sub h2 a
{
margin:0px;
padding:0px;
float:left;
margin-left:20px;
color:#3a91c6;
font-size:14px;
width:430px;
margin-bottom:10px;
}
.order-processing h3, .order-processing .content-sub h4{
color:#3a91c6;
font-size:14px;
font-family:"open Sans";
}
.order-processing ul{
list-style:none;
}
.order-processing ul li{
font-family:"open Sans";
font-size:14px;
margin:5px 0;
}
.order-processing textarea{
width:930px;
height:100px;
margin:0 0 20px 0;
background:#cecece;
clear:both;
float:left;
}
.order-processing textarea{
width:440px;
}
.order-processing div.button{
clear:both;
}
.order-processing .photo-art-blue-btn{
margin:0px;
padding:0px;
float:right;
width:auto;
height:auto;
}
.order-processing .content-sub p
{
font-family:"open Sans";
font-size:14px;
color:#626262;
margin:0;
margin-left:20px;
}
.order-processing p{
font-family:"open Sans";
font-size:14px;
color:#626262;
margin:0;
}
.order-processing .content-sub .heading-blue,
.order-processing .content-sub-1 .heading-blue,
.order-processing .content-sub .heading-grey,
.order-processing .content-sub-1 .heading-grey{
width:auto;
font-size:14px;
}
.order-processing .content-sub-1 .heading-grey a{
font-size:14px;
font-weight:normal;
color:#fbf66c;
float:right;
margin-right:20px;
margin-top:5px;
}
.order-processing .content-sub-1 ul{
list-style:none;
font-family:"open Sans";
font-size:16px;
color:#626262;
}
.order-processing .content-sub-1 ul li{
margin:10px auto;
}
.order-processing .content-sub-1 label{
width:104px;
font-weight:normal;
float:left;
padding-top:5px;
}
/*
.login{
width:250px;
height:25px;
background-color:#cecece;
}
*/
.order-processing .content-sub-1 .button, .order-processing .content-sub .button{
background:url(../images/form-button-bg.gif) repeat-y left;
background-color:#3a91c6;
border:0;
color:#fff;
height:30px;
width:100px;
font-size:16px;
font-weight:bold;
}
.forgot-pwd{
color:#3a91c6;
font-style:italic;
font-family:"open Sans";
font-size:11px;
font-weight:bold;
}
.black{
color:#626262;
}
.prod-cart{
margin:0;
padding:0;
line-height:25px;
}
.prod-cart li{
clear:both;
}
.content-sub-1 .prod-cart li ul li{
color:#626262;
margin:0;
padding:0;
font-size:11px;
line-height:20px;
}
.qty{
display:block;
width:50px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:right;
}
.multiple{
display:block;
width:40px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:center;
}
#adminForm .multiple{
width:auto !important;
}
.field_required{
color:#F00 !important;
}
.pname{
display:block;
width:250px;
font-size:14px;
font-family:"open Sans";
float:left;
}
.pprice{
display:block;
width:100px;
font-size:14px;
font-family:"open Sans";
float:left;
text-align:right;
font-weight:bold;
color:#626262;
}
.grand-total{
width:260px;
height:30px;
padding-top:10px;
font-weight:bold;
}
.grand-total p{
float:left;
}
.grand-total span{
display:block;
float:right;
overflow:hidden;
width:90px;
text-align:right;
font-size:14px;
font-family:"open Sans";
color:#626262;
padding-right:10px;
}
.order-processed{
}
.order-processed .heading-blue{
}
.order-processed h1{
color:#3a91c6;
font-family:"open Sans";
font-size:18px;
}
.order-processed h2{
color:#3a91c6;
font-size:14px;
font-family:"open Sans";
}
.order-processed p{
font-family:"open Sans";
font-size:14px;
color:#626262;
}
.order-processed ul{
list-style:none;
font-family:"open Sans";
font-size:14px;
color:#626262;
overflow:hidden;
}
.processing-flow .process-step {
padding: 30px 40px;
background: #ededed;
border-radius: 5px;
text-align: center;
width: 250px;
float: left;
}
.order-processed ul li{
clear:both;
height:30px;
color:#626262;
}
.order-processed label{
float:left;
width:200px;
padding-top:2px;
}
.order-processed input{
margin-right:10px;
float:left;
}
/*------- dhtmlcombo.css -------*/
.dhtmlselect{ /*style of DHTML Select Menu, main box */
/*width: 140px;default width of main box */
border: 1px solid #666666;
position: relative;
text-indent: 3px;
padding: 1px 0;
cursor: hand;
cursor: pointer;
background-color: #cccccc;
float:left;
line-height:26px;
margin-right:38px;
font-family:"open Sans";
color:#646464;
font-weight:bold;
font-size:14px;
}
.dhtmlselect .downimage{ /*style of "down" image to the right of the DHTML Select Menu*/
position: absolute;
right: -25px;
}
.dhtmlselect img{
margin-left:-5px;
margin-top:-2px;
}
.dhtmlselect span{
display:inline !important;
white-space:nowrap;
overflow:hidden;
width:inherit;
}
.dhtmlselect .dropdown{ /*style of Drop Down Menu that appears onMouseover */
position: absolute;
left: 0;
width: 180px; /*default width of drop down menu*/
border: 1px solid #666666;
display: none;
z-index: 5;
font-weight: normal;
font-size:14px;
}
.dropdown{
float:none;
}
.dhtmlselect .dropdown p{
margin:0;
padding:0;
}
.dhtmlselect .dropdown a, .dhtmlselect .dropdown p{ /*style of Drop Down Menu's links */
width: auto;
display: block;
background: #ccc;
/*border-bottom: 1px solid black;*/
padding: 1px 0;
text-indent: 5px;
text-decoration: none;
font-family:"open Sans";
color:#626262;
font-weight:bold;
padding-top:5px;
padding-bottom:5px;
}
* html .dhtmlselect .dropdown a, * html .dhtmlselect .dropdown p{ /*IE 6 (and below) hack */
width: 100%;
}
.dhtmlselect .dropdown a:hover, .dhtmlselect .dropdown p:hover{
background: #3a91c6;
color:#fff;
font-family:"open Sans";
font-weight:bold;
}
.button_orange{
color:#FFF;
background:#FF6600;
height:30px;
width:120px;
font-family:"open Sans";
font-weight:bold;
border:0;
float:left;
margin-left: 300px;
margin-top:50px;
}
.blue-button{
color:#FFF;
background:#3A91C6;
height:30px;
width:150px;
font-family:"open Sans";
border:0;
margin-top:15px;
position: relative;
clear:left;
float:none;
font-size:12px;
font-weight:bold;
text-transform:capitalize;
}
/*for check out conformation page */
.conform_order{
/*float:left;*/
height:30px;
width:150px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
}
.continue{
height:30px;
width:150px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
}
/*----------- my cart -------*/
.mycart{
border:0px solid #626262;
width: 950px;
}
.mycart ul{
list-style:none;
clear:both;
margin:0;
padding:0;
font-family:"open Sans";
border-bottom: dotted 1px #eeeeee;
border:0px solid #eeeeee;
background: none;
overflow:hidden;
margin-left:15px;
width:908px;
border-bottom:1px solid #CCC;
padding-bottom:10px;
}
.mycart ul li{
float:left;
padding:5px 10px;
min-height:15px;
overflow:hidden;
border:solid 0px #fff;
}
.mycart ul.head{
border-bottom:0;
}
.mycart .head li {
background:#eeeeee;
border:solid 1px #fff;
color:#626262;
font-size:12px;
font-weight:bold;
}
.mycart .head .cart-remove{
width:100px;
text-align:center;
}
.mycart .head .cart-prod-name{
width:480px;
text-align:left;
}
.mycart .head .cart-qty{
text-align:center;
width:100px;
}
.mycart .head .cart-total{
text-align:center;
width:140px;
}
.mycart .cart-remove{
width:101px;
text-align:center;
}
.mycart .cart-prod-name{
width:482px;
text-align:left;
}
.mycart .cart-prod-name img{
margin:0px;
padding:0px;
margin-right:10px;
float:left;
margin-right:10px;
height:100px;
width:100px;
border:solid 1px #626262;
}
.mycart .cart-prod-name span{
display:block;
float:left;
width:350px;
}
.mycart .cart-prod-name h3{
font-size:13px;
color:#3a91c6;
margin-bottom:0;
margin-top:0;
}
.mycart .cart-prod-name p{
font-style: italic;
margin:0;
padding:0;
font-size:12px;
color:#626262;
}
.mycart .cart-qty{
text-align:center;
width:102px;
color:#626262;
font-size:14px;
font-weight:bold;
}
.mycart .cart-total{
text-align:center;
width:142px;
color:#626262;
font-size:12px;
font-weight:bold;
}
.sub-total{
font-family:"open Sans";
color:#626262;
height:25px;
border-bottom:solid 1px #EEEEEE;
border-top:solid 1px #EEEEEE;
width:285px;
float:right;
margin-top:10px;
text-align:right;
margin-right:26px;
}
.sub-total h4{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
}
.sub-total h4 span{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
width:116px;
line-height:25px;
font-weight:normal;
}
.sub-total h4 strong
{
margin:0px;
padding:0px;
float:left;
font-size:14px;
margin:0 ;
color:#626262;
background:#EEEEEE;
width:154px;
height:auto;
text-align:right;
margin-left:5px;
height:25px;
padding-right:10px;
line-height:25px;
color:#09F;
font-weight:normal;
}
.mycart input{
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align: center;
}
.mycart input.update{
margin:0px;
padding:0px;
margin-right:800px;
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align: center;
float:right;
margin-left:-885px;
cursor:pointer;
}
.mycart input.update:hover
{
background:#333;
}
.mycart checkout{
background:#3a91c6;
float:right;
height:25px;
width:120px;
color:#FFFFFF;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
padding-top:5px;
}
.mycart a.checkout{
background:#3a91c6;
float:right;
height:25px;
width:120px;
color:#FFFFFF;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
padding-top:5px;
margin-left:15px;
text-decoration:none;
}
.button_wrap
{
border-top: 2px solid #3A91C6;
color: #FFFFFF !important;
float: left;
height: auto !important;
margin: 20px 0 0;
padding: 15px 0 0;
width: 950px;
}
.mycart a.checkout:hover
{
background:#333;
}
.mycart .update{
float:left;
height:30px;
width:120px;
color:#FFFFFF;
background:#3a91c6;
}
/*-- register --*/
.add_to_cart
{
float:left;
height:30px;
width:120px;
color:#FFFFFF;
background:#3a91c6;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
text-align:center;
margin-left:30px;
}
.register{
font-family:"open Sans";
color:#626262;
}
ul.list_user_defined {
margin-top: 20px;
}
.digital_prod_desc h3 {
font-size: 16px;
font-weight: 600;
}
.register ul{
list-style:none;
margin:0;
padding:0;
}
.cus-box {
background: #ededed;
padding: 40px;
}
.cus-box button {
padding: 10px 20px !important;
height: auto;
border-radius: 5px !important;
}
.row.main-content-new {
margin: 0px;
}
.gift_voucher_form .product-fields .product-field {
float: left;
}
.cus-box {
background: #ededed;
padding: 40px;
height: auto !important;
}
.cus-box p {
font-size: 15px;
}
.cus-box p span {
color: #3a91c6;
font-weight: 700;
}
input.form-control.email-addr.modns.inputbox {
height: 34px;
}
.register p{
font-size:12px;
}
.register p a{
color:#3a91c6;
font-size:13px;
font-weight:bold;
}
.register ul li{
clear:both;
overflow:hidden;
width:auto;
}
.register ul li span{
display:block;
margin:auto;
overflow:hidden;
text-align:center;
}
.register ul li h3{
margin:20px 0 5px 20px;
padding:0;
font-size:14px;
color:#3a91c6;
}
.register ul li ul{
margin:0 0 0 20px;
padding:10px;
background:#eee;
clear:both;
width:auto;
}
.register ul li ul li{
clear:both;
min-height:30px;
overflow:hidden;
}
.register ul li ul li label{
float:left;
width:200px;
font-size:12px;
padding-top:3px;
}
.register ul li ul li p{
margin:0 20px 0 5px;
padding:3px 0 0 0;
float:left;
font-size:12px;
}
.register ul li ul li span{
float:left;
color:#ff0000;
margin-left:10px;
font-weight:bold;
}
.register ul li ul li input, .register ul li ul li select{
float:left;
font-size:12px;
background:#efefef;
border:solid 1px #626262;
}
.register ul li ul li input[type=text]{
width:300px;
background:#eee;
border:solid 1px #626262;
height:22px;
}
.register ul li ul li select{
background:#efefef;
border:solid 1px #525252;
width:350px;
height:22px;
}
.register .continue{
background:#3a91c6;
height:30px;
width:120px;
color:#FFFFFF;
margin:20px auto;
border:0;
font-family:"open Sans";
font-size:12px;
font-weight:bold;
}
/*wishlist*/
.prod_info{
float:left;
}
.wishlist_prodname{
}
.wishlist_prodimage{
}
.wishlist_pricecontainer{
float:left;
width:200px;
clear:both;
}
.wishlist_price {
text-align:left;
margin-left: 25px;
}
.wishlist_movecart{
text-align:left;
margin-left: 5px;
}
.skip{
float:right;
color:#FFFFFF;
text-align:center;
margin-left:0px;
overflow: hidden;
}
.skip .button{
font-weight:normal;
font-size: 16px !important;
}
.skip-button{
background-color:#3a91c6;
font-size:14px;
font-family:Verdana, Geneva, "open Sans";
color:#fff; border:0;
font-weight:bold;
cursor:pointer;
padding-bottom:5px;
width:100%;
}
input:hover.skip-button
{
text-decoration:underline;
}
.skip a{
color:#fff;
cursor:pointer;
}
.dhtmlselect {
background-color: #CCCCCC;
border: 1px solid #666666;
color: #646464;
cursor: pointer;
display: inline;
float: left;
font-family: Arial,Helvetica,"open Sans";
font-size: 14px;
font-weight: bold;
height: 26px;
line-height: 26px;
margin-right: 38px;
padding: 1px 0;
position: relative;
text-align: left;
text-indent: 3px;
}
.dhtmlselect .downimage {
position: absolute;
right: -25px;
top: 1px;
}
.dhtmlselect {
}
* html .dhtmlselect {
display: inline;
height: 26px;
line-height: 0;
margin-top: 0;
}
.dhtmlselect span p {
display: inline !important;
height: 24px;
line-height: 24px;
overflow: hidden;
vertical-align: middle;
}
* html .dhtmlselect span p {
display: inline !important;
height: 26px;
line-height: 26px;
margin: 0;
padding: 0;
vertical-align: middle;
}
.dhtmlselect img {
margin-left: -5px;
margin-top: -2px;
}
* html .dhtmlselect img {
margin-top: 0;
padding-top: 10px;
}
.dhtmlselect img {
}
.dhtmlselect span {
display: list-item !important;
overflow: hidden;
white-space: nowrap;
width: auto;
}
* html .dhtmlselect span {
display: list-item !important;
}
.dhtmlselect .dropdown {
border: 1px solid #666666;
display: none;
font-size: 14px;
font-weight: normal;
left: 0;
max-height: 350px;
overflow: auto;
position: absolute;
width: 180px;
z-index: 5;
}
.dropdown {
float: none;
}
.dhtmlselect .dropdown p {
margin: 0;
padding: 0;
}
.menu_down img{
display: none;
}
.dhtmlselect .dropdown a, .dhtmlselect .dropdown p {
background: none repeat scroll 0 0 #CCCCCC;
color: #626262;
display: block;
font-family: Arial,Helvetica,"open Sans";
font-weight: bold;
padding: 5px 0;
text-decoration: none;
text-indent: 5px;
width: auto;
}
* html .dhtmlselect .dropdown a, * html .dhtmlselect .dropdown p {
width: 100%;
}
.dhtmlselect .dropdown a:hover, .dhtmlselect .dropdown p:hover {
background: none repeat scroll 0 0 #3A91C6;
color: #FFFFFF;
font-family: Arial,Helvetica,"open Sans";
font-weight: bold;
}
* html .dhtmlselect img.downimage {
margin-top: -7px;
}
.dhtmlselect img.downimage {
}
.acrylic-permanent-thumb,.acrylic-permanent-block-thumb{
display: inline !important;
float: left!important;
margin-bottom: 15px !important;
margin-right: 10px !important;
width: auto !important;
}
.acrylic-permanent-thumb img,.acrylic-permanent-block-thumb img{
border: 1px solid #757A7D !important;
margin-left: 0 !important;
margin-right: 30px !important;
text-align: center !important;
height:198px;
width: auto;
}
.acrylic-permanent-thumb p,.acrylic-permanent-block-thumb p{
font-size: 13px;
margin-top: 10px;
padding-top: 10px;
text-align: center;
width: auto;
}
.pia{
margin:0px;
padding:0px;
width: auto;
height:auto;
border:0px solid #626262;
margin-top:15px;
margin-right:20px;
float:left;
}
.pia h1{
margin:0px;
padding:0px;
padding-top:5px;
height:auto;
width: auto;
font-size: 14px;
font-family: Arial,Helvetica,"open Sans";
font-weight: normal;
float:left;
}
.pia p {
float: left;
}
.pia p span{
margin:0px;
margin-left: 10px;
padding:0px;
padding-left:5px;
padding-right:5px;
width: auto;
background: #ff9900;
font-size: 12px;
font-family: Arial,Helvetica,"open Sans";
font-weight: normal;
float:right;
color:#FFFFFF;
line-height:20px;
}
.pati{
margin:0px;
padding:0px;
font-size:13px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
text-align: center;
line-height:25px;
border:0px solid #626262;
margin-top:5px;
/*height:25px;*/
height:auto;
}
.pco{
margin:0px;
padding:0px;
font-size:13px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
text-align: left;
line-height:15px;
border:0px solid #626262;
padding-left:5px;
text-align:center;
}
.photo_collage{
margin:0px;
padding:0px;
float:left;
width:900px;
margin-top: 30px;
margin-bottom: 20px;
}
.photo_collage h1{
margin:0px;
padding:0px;
float:left;
width:900px;
font-size:14px;
font-family: Arial,Helvetica,"open Sans";
color:#5C5B57;
margin-bottom: 20px;
}
.display-number, .control-buttons, .right {
float: right !important;
text-align:left !important;
}
.product-field-desc{
clear:both;
font-size:14px;
text-transform:none;
margin:0 0 5px 0;
}
.fadein { position:relative;
height: 385px;margin-bottom:0px;}
.fadein img { left:0; top:0; }
.fadein0 { position:relative;margin-bottom:10px;}
.fadein0 img { position:absolute; left:0; top:0; }
.content_sub {
width: 550px !important;
}
/* styling the file upload fierld */
.select_wall_color_text input[type=button]{
background:#3A91C6;
color:#fff;
padding:5px 15px;
font-size:14px;
text-transform:capitalize;
margin:10px 0;
cursor:pointer;
border:0;
}
h3.blue-color{
font-size: 23px;
font-weight: normal;
color: #3492D5;
}
p.budget-red {
color: red;
font-weight: bold;
}
.aluminium-image{
background-color: none; border: 0px solid #000000; float: right;}
.addfieldbutton{
float:left;
margin-right:10px !important;
}
.button {
background: #3a91c6;
cursor:pointer;
color: #fff;
padding: 0 15px;
font-size: 14px;
border:0;
line-height:30px;
margin:0;
}
#uploadframe { display:none; }
#preview .uploaded_imgcontainer{
float:left;
width:100%;
}
#preview .addtocart-button{
clear:both;
}
.uploaded_imgcontainer span img{
max-width:100%;
text-align:center;
margin:0 auto;
padding:0;
float:none !important;
clear:both;
height:100%;
width:100%;
}
img img#uploaded_img{
position:static;
margin:0;
float:none;
}
.uploaded_image{
width:100%;
overflow:hidden;
float:left;
position:relative;
}
/* styling the file upload fierld ends */
.order p{
clear:none;
}
.addtocartbutton{
overflow: hidden;
clear: both;
text-align: left;
margin:0 10px 10px;
float:left;
}
#preview p.error{
margin:8px 0;
}
.thumbsList{
clear:both;
overflow:hidden;
}
.thumbsList h1{
color: #3A91C6;
font-family: Arial,Helvetica,"open Sans";
font-size: 20px;
font-weight: normal;
text-decoration: none;
}
/* 11 Feb 2013 */
#main_menu{
padding:0;
list-style:none;
display:table;
margin:0 auto;
}
#main_menu li{
float:left;
border:solid 2px #494949;
background:url(../images/gradient1.jpg) repeat-y;
line-height:18px;
padding:0 12px;
margin:0 10px;
color:#ccc;
font-size:18px;
font-family:Segoe UI;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
}
#main_menu li:hover{
background:#383838;
}
#main_menu li img{
float:left;
margin-right:10px;
}
#main_menu li p{
font-size:18px;
color:#ccc;
white-space:nowrap;
float:left;
}
#main_menu li p a{
color:#ccc;
font-weight:normal !important;
font-family: Segoe UI;
line-height:18px !important;
font-size:18px;
text-decoration:none;
}
.menu_newsletter{
clear:both;
margin:15px auto 36px;
padding:10px;
height:36px;
background:#1d4962;
border:solid 2px #494949;
width:600px;
}
.menu_newsletter *{
float:left;
}
.menu_newsletter a{
color:#eee;
font-family:Impact;
line-height:36px;
font-size:20px;
font-weight:normal;
padding-left:10px;
text-decoration:none;
}
.category-view{
margin:0 auto;
overflow:hidden;
width:1000px;
}
.category-view h4{
color:#3b8fc5;
}
/* 13 feb */
.category-view > div{
overflow:hidden;
border:solid 5px #fff;
background:#fff;
float:left;
margin:0 13px 12px 0;
width:230px !important;
border-radius:20px;
}
.category-view > div:nth-child(4n){
margin-right:0;
}
.category-view > div:hover{
background:#555;
border:#555 solid 5px;
}
.maf-menu li span {
display: none;
}
#category_listing_services a:hover{
color:#ddd;
}
#home_right_link{
}
#home_right_link ul li{
list-style:none;
float:left;
margin-left:15px;
}
#home_right_link ul li a{
text-decoration:none;
font-family:"Segoe UI";
font-size:12px;
font-weight:normal;
}
#home_right_link ul li a:hover{
color:#fff;
}
#home_right_link ul li:last-child{
background:url(../images/shoping-basket.png) no-repeat left center;
padding-left:24px;
}
#footer{
margin:0 auto;
padding: 0px;
background: #000;
color: #626262;
font-size: 12px;
clear: both;
}
..menu_down{
background: #666;
background-repeat: repeat-x;
border: 0px solid #F1F1F1;
width: 1000px;
height: 25px;
margin-top: 10px;
line-height: 25px;
color:#626262;
}
.menu_down{
background: transparent;
background-repeat: repeat-x;
border: 0px solid #F1F1F1;
margin: 0 auto;
z-index: 999;
}
.acrylic-top-images{
border:0;
margin:0 auto;
display:table;
padding:10px 0;
margin-bottom: 10px;
}
#left_navigation_bg{
padding-right:40px;
padding-left: 0px;
}
.breadcrumb {
background: transparent;
border-bottom: 1px solid #ccc;
border-radius: 0px;
padding: 15px 10px;
margin-bottom: 10px;
}
.breadcrumb>.active {
color: #000;
font-weight: 800;
font-size: 13px;
}
.breadcrumb img {
display: none;
}
.breadcrumb a{
font-weight: 300;
}
.custom_categorylist
{
margin:0px;
padding:0px;
overflow:hidden;
}
.active_category{color:#000 !important; background-color: #f9f9f9;}
.custom_categorylist .heading
{
margin:0;
padding: 10px;
line-height:30px;
background:#3a91c6;
font-size: 15px;
font-family: verdana, tahoma, arial, Georgia;
text-transform: uppercase;
color: #FFF;
}
/*ul.menu_custom_categorylist{
margin:20px 0 !important;
}*/
.custom_categorylist ul, ul.menu_custom_categorylist{
overflow:hidden;
margin:0 0 30px;
padding:0px;
list-style:none;
border: 1px solid #ccc;
}
.custom_categorylist ul li, ul.menu_custom_categorylist li{
overflow:hidden;
clear:both;
border-bottom:1px #ccc solid;
font-family:"open Sans";
text-decoration:none;
padding: 5px 0px;
}
.custom_categorylist ul li a, ul.menu_custom_categorylist li a
{
font-size:11px;
font-family:"open Sans";
text-decoration:none;
font-weight:bold;
line-height:25px;
font-size: 13px;
text-align:left;
color:#3a91c6;
padding-left:12px;
}
.custom_categorylist ul li a:hover{
color:#000;
}
.custom_categorylist .active_category >a {color:#000 !important;}
#main{
margin:0 auto;
overflow:hidden;
margin-bottom:10px;
padding: 0px;
}
#right_body_bg{
overflow:hidden;
margin-bottom: 20px;
}
#right_body_bg .heading
{
margin:0px;
padding:0px;
clear:both;
overflow:hidden;
}
form#adminForm {
background: #ededed;
}
#right_body_bg .heading h1
{
color: #626262 !important;
font-size: 30px !important;
margin-top: 0px !important;
font-weight: 500 !important;
padding: 0px !important;
}
#gift_voucher_preview{
float:left;
}
.custom_categorydropdownlist {
display: none;
}
.menu_leftart{
overflow: hidden;
margin: 0 0 30px;
padding: 0px;
list-style: none;
border: 1px solid #ccc;
}
.menu_leftart li{
overflow: hidden;
clear: both;
border-bottom: 1px #ccc solid;
font-family: "open Sans";
text-decoration: none;
padding: 5px;
}
div#dropdowncat {
border: 1px #ccc solid;
padding: 5px 10px;
font-size: 14px;
font-weight: 600;
}
.voucher{
margin-bottom:20px;
width:100%;
overflow:hidden;
position:relative;
}
#gift_voucher_preview img{
position:relative;
display: block;
width: 100%;
}
.gift_voucher_form{
float:right;
width:100%;
background:#f1f1f1;
overflow:hidden;
margin-right:10px;
}
.gift_voucher_form ul{
padding:20px;
margin:0;
overflow:hidden;
list-style:none;
}
.gift_voucher_form li{
height:auto !important;
line-height:30px;
padding-bottom:5px !important;
overflow:hidden;
font-size:12px;
}
.gift_voucher_form li input[type=text]{
line-height:20px;
padding:3px;
}
.gift_voucher_form li label{
width:160px !important;
text-align:right;
padding-right:10px;
font-family:"open Sans";
font-weight:normal !important;
float:left;
}
.voucherParameters{
width: 500px;
position: absolute;
z-index: 10;
bottom: 34px;
margin-left: 100px;
}
.voucherParameters p{
margin: 0;
color: #626262;
font-size: 13px;
height:21px;
}
.gift_voucher_form textarea{
font-family: "open Sans";
font-size: 12px;
padding:3px;
border: 1px solid #ccc;
background: #fff;
width:100% !important;
height:120px;
margin:0;
resize:none;
float: left;
}
.gift_voucher_form input[type=text]{
font-family: "open Sans";
font-size: 12px;
padding:3px;
border: 1px solid #ccc;
background: #fff;
width:100%;
}
.content .block-img {
padding: 0px;
margin-bottom: 20px;
}
.content h2 {
color: #8BCFF6;
font-size: 21px;
margin-top: 10px;
padding: 10px 0px;
}
.sub-heading {
color: #8BCFF6;
font-size: 21px;
margin-top: 10px;
padding: 10px 0px;
}
.content .block-img img {
width: 100%;
}
.content .block-mount-left-img {
padding: 0px;
}
.photo{width:900px; float:left; margin-left:15px;}
.photo_content{width:900px; float:left; font-size:18px; font-weight:bold; font-family:"open Sans"; padding-top:10px; color:#626262;}
.photo_on_canvas{width:260px; float:left; padding:5px 10px 5px 10px; background:#3a91c6; color:#ffffff; font-size:20px; font-weight:bold; font-family:"open Sans"; margin-top:38px;}
.icon{float:left; padding-left:18px;width:90px;}
.offer{width:190px; float:left; padding:7px 0px 7px 0px;background:#ff6600; color:#ffffff; font-size:25px;font-weight:bold; font-family:"open Sans"; margin-top:35px; text-align:center; height:31px;}
.pagenav{
display:none;
}
p.counter.pull-right {
display: none;
}
.vm-pagination{
clear:both;
margin-top:15px;
overflow:hidden;
}
.vm-pagination span{
}
.vm-pagination ul li {
margin-left:5px;
}
.imageDisplay{
width:100%;height:197px; background:#FFFDD7; display:block;text-align:center;margin:auto;overflow:hidden; margin-bottom: 5px;
}
.imageDisplay img{
height:100%;
max-width:100%;
}
.addtocart-button-plain .addtocart-button{
background:none;
font-family:"open Sans";
color:#626262;
font-size:11px;
border:0;
font-size:11px;
cursor:pointer;
}
.wishlist img{
float:left !important;
margin-right:2px !important;
}
.wishlist *{
background:none !important;
font-size:11px !important;
color:#626262 !important;
border:0 !important;
margin:0 !important;
display:inline !important;
float:none !important;
}
.product_list_one.accessories{
height:410px !important;
}
.product_price{
color: #626262;
font-size: 12px;
width: 195px;
padding-left: 5px;
}
.right-column{
overflow:hidden;
margin:0 10px;
}
.custom_oilpainting{
overflow:hidden;
}
.custom_oilpainting .left_image{
width:100%;
margin:0;
}
.custom_oilpainting img{
width:100%;
}
h2.mat_steps{
font-weight:normal;
font-size:18px;
}
p.mat_steps{
font-size:14px;
font-weight:bold;
}
.single_frame_listing {
float:left;
margin-right:20px;
overflow:hidden;
margin-bottom: 20px;
}
.single_frame_listing img{
margin:0px;
padding:0px;
height:100px;
clear:both;
border:5px solid #3A91C6;
}
.single_frame_listing .standard {
margin:0px;
padding:0px;
background:#3a91c6;
line-height:20px;
height:20px;
color:#ddd;
font-size:14px;
font-family:"open Sans";
}
.single_frame_listing .standard input{
margin:0px;
padding:0px;
float:left;
margin-left:5px;
margin-right:5px;
width:10px;
height:20px;
}
.single_frame_listing .standard label{
cursor:pointer;
}
.kh_select{
background:#f99a03 !important;
color:#fff !important;
margin-left:10px !important;
}
.acrylic-sandwich-mount-thumb-img{
float:left;
margin-top:20px;
}
span.addtocart-button h1, span.addtocart-button h2{
float:left;
margin:0;
font-size:12px;
line-height:24px;
margin-right:10px;
}
span.addtocart-button h2 input{
width:78px;
}
span.addtocart-button{
width:auto !important;
text-transform: capitalize;
}
span.addtocart-button .addtocart-button{
clear:both !important;
float:left;
margin-top:10px;
text-transform: capitalize;
}
#xml_result, p#message{
width:430px;
margin-right:10px;
background:#ffe8e8;
border:solid #ffd7d7;
border-width:1px 0;
float:right;
padding:10px;
color:#ff1717;
display:none;
}
p#message{
padding:10px;
margin:0;
}
.processing{
background:url(../images/processing.gif) no-repeat center center;
height:32px;
width:32px;
display:block;
float:right;
opacity:0;
}
/* styling the radio buttons */
.selectPhotoSend input[type="radio"] {
display:none;
}
.selectPhotoSend input[type="radio"] + label {
width: auto;
}
.selectPhotoSend input[type="radio"] + label span {
display:inline-block;
width:16px;
height:16px;
margin:-1px 4px 0 0;
vertical-align:middle;
background:url(../images/check_radio_sheet.png) -20px top no-repeat;
cursor:pointer;
}
.selectPhotoSend input[type="radio"]:checked + label span {
background:url(../images/check_radio_sheet.png) 0px top no-repeat;
}
.selectPhotoSend label{
margin-right:10px;
font-size: 14px;
}
/* end */
.esp_instructions h3 {
font-size: 20px;
}
.selected_matt_number span.pattern-sample{
/*display:block;
border:solid 10px #fff;
margin:0;*/
}
.digital_prod_desc .content{
padding:0;
margin:0;
}
.registerForm{
margin:0 10px;
}
#com-form-login fieldset{
border:0;
margin:0;
padding:0 !important;
}
#com-form-login h2{
font-size:12px;
margin:0;
font-weight:normal;
color:#646464;
}
.registerForm h2{
color:#646464;
font-size:20px;
font-weight:normal;
}
.registerForm form, .address form, .addShipping{
display:block;
overflow:hidden;
padding:10px;
background:#f1f1f1;
}
.registerForm input[type=text], .registerForm input[type=password]{
background: #fff !important;
border: 1px solid #e1e1e1 !important;
color: black !important;
-moz-border-radius:0;
-webkit-border-radius:0;
border-radius:0;
padding:5px;
color:#646464;
}
.registerForm label{
color:#646464;
width:300px;
text-align:right;
font-size:12px;
text-align:right;
display:block;
line-height:30px;
font-weight:bold;
}
.registerForm .userdata label{
display:inline;
}
.registerForm .userdata p{
margin-bottom:0;
}
.registerForm .userdata a{
font-size:11px; !important
}
.registerForm .button{
line-height:normal;
font-size:12px;
height:35px;
}
.userfields_info{
font-size:12px;
}
.cart-view{
margin:0 10px;
}
.cart-view fieldset{
border:0;
margin:0;
padding:0;
}
.vm-customfield-cart span{
display:block;
}
.vm-customfield-cart br{
height:1px;
}
.vm-customfield-cart p, .vm-customfield-cart span{
margin:0;
font-size:14px;
font-style:normal;
clear:both;
padding:0;
color:#626262;
}
.cart-summary td, .cart-summary th{
padding:5px !important;
}
.cart-summary th{
background:#eee !important;
}
.cart-summary tr:nth-child(even){
background:#f9f9f9;
}
.PricesalesPrice{
float:right;
line-height:30px;
font-weight:bold;
}
.coupon{
border-radius:0;
padding:5px;
}
span.details-button input.details-button{
background:#3a91c6 !important;
color:#fff;
border:0;
border-radius:0;
padding:5px;
font-weight:bold;
}
#userFormShipping h1{
font-size:16px;
margin-top:10px;
}
#userFormShipping fieldset{
border:0;
background:#f1f1f1;
padding:10px;
}
.vm-button-correct, .vm-button-correct:link, .vm-button-correct:visited{
background:#3a91c6 !important;
color:#fff;
border:0;
border-radius:0;
padding:5px 10px;
text-transform:capitalize;
}
.customer-comment{
overflow:hidden;
clear:both;
margin:10px auto;
float:none;
text-align:left;
}
div.customer-comment .comment{
font-size:14px;
font-weight:bold;
}
.checkout-button-top {
text-align:left;}
.checkout-button-top .vm-button-correct{
float:right;
}
.billto-shipto span, a.terms-of-service{
font-size:11px;
text-decoration:none;
font-family:"open Sans";
font-weight:normal;
}
.cart-images{
float:left;
margin-right:10px;
width:100px;
}
.cart-images img{
width:100px !important;
}
.cart_item a{
display:block;
font-size:14px;
font-weight:normal;
color:#0099FF;
font-family:"open Sans";
}
.vm-customfield-cart{
display:inline;
float:left;
}
#userFormShipping input[type=radio]{
clear: both;
display: block;
float: left;
}
#userFormShipping label{
padding: 2px 0;
overflow: hidden;
height: auto;
float: left;
min-width:120px;
}
span.vmshipment{
display:block;
}
.pickupSelector input[type=radio]{
}
.vmshipment_name{
font-weight:bold;
}
.cart-view h2{
margin-top:10px;
}
.PricebasePriceVariant{
float:none;
text-align:center;
}
.cart-summary tr td{
border-bottom:solid 1px #f1f1f1;
border-left:solid 1px #f1f1f1;
}
.userdata{
background:#f1f1f1;
padding:10px !important;
}
.userdata input[type="text"], .userdata input[type="password"]{
padding:5px;
}
#com-form-login .userdata p{
margin:5px 20px 5px 0;
width:auto;
}
textarea.customer-comment{
width:60% !important;
}
fieldset.address{
margin:0 10px;
padding:0;
border:0;
}
fieldset.address label{
line-height:30px;
float:none;
display:block;
font-size:12px;
color:#646464;
margin:0;
width:auto;
font-weight:bold;
text-align:right;
}
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url]{
color: black ;
padding:5px;
height: 30px;
border-radius:0 !important;
}
.row.heading_budget {
margin: 0px;
}
.button, button, .billto-shipto a.details{
background:#3a91c6;
border:0 ;
color:#fff;
font-size:12px;
padding:5px 10px;
line-height:20px ;
font-weight:bold;
border-radius:0 ;
height:34px;
}
#digital_page_order{
padding: 10px 20px;
height: auto;
}
.button[disabled=disabled]{
opacity:0;
}
.billto-shipto h2{
float:left;
margin:0;
line-height:30px;
}
td.key{
width:200px;
}
input.quantity-input{
height: 29px;
margin-right: 10px;
width: 40px;
}
.continue_link, .continue_link:hover{
color:#fff;
text-decoration:none;
}
#com-form-login{
overflow:hidden;
background:#f1f1f1;
display:block;
padding:10px;
}
#com-form-login div.width30{
width:auto;
margin-right:20px;
}
#com-form-login div.width30 a{
font-weight:normal;
}
.control-buttons button.default{
width:auto;
line-height:normal;
}
table.user-details input{
background:#fff;
border-radius:0;
border-color:#e1e1e1;
}
#facebox{
min-width:400px;
}
#facebox .content{
display:block;
margin:10px;
}
#facebox a.floatright, #facebox a.continue{
float:left;
line-height:12px;
padding:5px 10px;
margin-right:5px;
height:auto;
width:auto;
color: #FFFFFF;
background: #3a91c6;
font-family: "open Sans";
font-size: 12px;
font-weight: bold;
text-align: center;
}
#facebox a.floatright{
clear:right;
}
.content.my-groovy-style > div > div{
clear:both;
overflow:hidden;
padding:10px 0;
font-size:11px;
}
.content.my-groovy-style h4{
margin:0;
color:#3a91c6;
font-size:16px;
}
#facebox .close{
background-position:center !important;
}
input.coupon{
padding:3px;
width:200px;
font-size:12px;
color:#646464;
}
.addtowishlist-button{
background:none;
border:0;
font-size:11px;
color:#333;
font-family:"open Sans";
cursor:pointer;
}
.addtowishlist-button button {
background: transparent;
color: #fef8f0;
padding: 0px;
height: 20px;
}
.addtowishlist-button button input[type=submit]{
color: #626262;
padding:0px;
color: #626262;
padding: 0px;
background: transparent;
border: none;
font-weight: normal;
}
span.printButton img{
width:24px;
cursor:pointer;
}
.contact{
margin:0 10px;
clear:both;
}
.contact h3{
}
.contact fieldset{
border:0;
margin:0;
padding:0;
}
.contact fieldset dl{
width:100%;
}
.contact fieldset legend{
margin:20px 0;
}
.contact fieldset dt{
float:left;
width:100px;
clear:left;
text-align:right;
margin-right:10px;
line-height:24px;
padding:5px 0;
font-size:12px;
font-weight:bold;
}
.contact fieldset dd{
padding:5px 0;
overflow:hidden;
line-height:30px;
}
.contact fieldset dd .button{
width:auto;
line-height:normal;
}
.contact-form fieldset dd .button{
width:auto;
line-height:normal;
float: right;
}
.star{
color:#f00;
}
.contact fieldset textarea, .contact fieldset input[type=text], .contact fieldset input[type=email]{
background:none;
border:1px solid #e1e1e1;
width:100% !important;
resize:none;
margin:0;
}
.loginForm {
width: 50%;
margin: 0 auto;
clear: both;
overflow: hidden;
height: auto;
background: none;
}
.login-fields input {
padding: 0px;
line-height: 20px;
padding: 5px;
margin: 5px 0px;
background-color: transparent !important;
}
.loginForm label {
width: 20%;
float: left;
text-align: right;
margin-right: 10px;
margin-top: 5px;
}
.loginForm .login-fields{
clear:both;
overflow:hidden;
line-height:30px;
}
.loginForm fieldset{
border:0;
margin:0;
padding:0;
}
.loginForm fieldset button{
margin-left: 22%;
margin-top: 20px;
padding: 0px 35px !important;
text-transform: uppercase;
}
.loginPage{
overflow:hidden;
background: #f1f1f1;
padding: 20px;
}
.loginHelp{
overflow:hidden;
}
.loginHelp li {
float: left;
margin-right: 10px;
}
.loginHelp ul{
margin:6px 0;
padding:0;
list-style:none;
}
.loginHelp ul a{
font-weight:normal;
font-size:11px;
}
#ui-tabs ul#tabs{
display:none;
}
fieldset.shopper, fieldset.shipto{
border:0;
margin:0;
padding:0;
}
span.userfields_info{
border-bottom:solid 1px #dedede;
margin-bottom:10px;
display:block;
clear:both;
font-size:13px;
}
table.user-details{
line-height:28px;
}
.heading-blue h2{
color:#fff;
}
#ui-tabs .tabs{
padding:0;
}
.addShipping{
margin:10px;
}
.vm2-remove_from_cart{
background:url(../images/delete.gif) no-repeat top center;
background-size:70%;
}
.vm2-add_quantity_cart{
background:url(../images/update.png) no-repeat top center;
background-size:70%;
}
.invalid{
border-color:#f00 !important;
}
.contactDetails, .contact-form{
float:right;
margin-top: 20px;
padding: 0px;
}
.contact-form{
padding-left: 15px;
}
#right_div .opg-width-1-1 input[type="text"], #right_div .opg-width-1-1 input[type="password"], #right_div .opg-width-1-1 select{
margin-bottom: 8px;
height: 37px;
line-height: 30px;
font-size: 14px;
}
.contact_address{
margin:0px;
padding:0px;
background-color:#F1F1F1;
padding:10px;
margin-top:20px;
}
.contact_address h1{
font-size:14px;
font-weight:normal;
}
.custom_contact_details{
margin:10px 10px 10px 0;
}
.custom_contact_details ul{
list-style:none;
margin:0;
padding:0;
}
.custom_contact_details ul li{
width:100%;
overflow:hidden;
}
.shop {
border: 1px solid #ededed;
padding: 15px;
margin-bottom: 20px;
}
.contact_logo{
float:left;
}
.socialConnectContact{
float:none;
width:100%;
}
.socialConnectContact img{
clear:both;
float:left;
margin-top: 10px;
margin-bottom:20px;
}
.shop_address{
clear: both;
border-top: 1px solid #8dcef6;
border-bottom: 1px solid #8dcef6;
color: #3A91C6;
font-size: 16px;
font-weight: 700;
padding: 10px;
}
.contact-form .legend{
width:100%;
font-size:14px;
color: #3A91C6;
}
.contactPage h1{
margin:0px;
color:#3A91C6;
}
.uploaded_image{
overflow:visible;
}
.dimFieldWrap{
position:absolute;
left:150px;
width:200px;
}
.dimFieldWrap input[type=text]{
width:30px;
margin:0 5px
}
.almunium_frame_note{
width:100%;
margin-bottom:10px;
}
.budget_frame_note{
margin-bottom: 10px;
width: 420px;
}
.shadow_box_note{
width:325px;
}
.SelectImageCartAttributeCollage select{
width:300px;
}
.budget_frame_links p{
margin:0;
}
.shadow_box_links,.budget_frame_links{
width:310px;
overflow:hidden;
}
.shadow_box_links a,.budget_frame_links a,.al_links a{
font-size:12px;
color:#3a91c6;
text-decoration:none;
font-weight:normal;
font-family:"open Sans";
}
.acrylic-photo-block-wrapper .Size_and_Price select{
width:300px;
}
.acrylic-photo-block-wrapper .HangingSystem select{
width:225px;
}
.acrylic-photo-block-wrapper .Standoff-Corner img,.acrylic-photo-block-wrapper .Backing-Color img,.acrylic-photo-block-wrapper .Hanging-System img{
border:1px solid #000;
}
.acrylic-sandwich-mount-wrapper .No-Border img,.acrylic-sandwich-mount-wrapper .test-size img,.acrylic-sandwich-mount-wrapper .thumb50mm-Border img,.acrylic-sandwich-mount-wrapper .thumb70mm-Border img{
padding:15px;
}
.acrylic-photo-block-thumb-img.thumb {
width: 100%;
text-align: center;
}
.acrylic-photo-block-thumb>div:first-child {
width: 100%;
}
.photo-into-art-edge,.photo-collage-edge{
float:left;
}
.photo-art-thumb-img-wrap,.collage-thumb-img-wrap{
width:152px;
height:162px;
overflow:hidden;
}
.canvas-edge-img img{
border:solid 1px #000;
}
.subcat-wrapper ul li:hover{
background-color:#e5e5e5;
}
.accessories-cartbox {
padding: 0px;
}
.acc-atc {
padding: 0px;
}
.acc-qty {
padding: 0px;
margin-top: 4px;
position: absolute;
right: 0px;
}
.acc-wish {
padding: 0px;
margin-top: 0px;
}
.mostread li {
list-style: none;
border-bottom: 1px dotted #ddd;
margin-bottom: 5px;
padding: 5px 20px;
}
.mostread li:last-child{
border: none;
}
ul.mostread {
padding: 0px;
border: 1px solid #ececec;
}
.mostread li a {
font-size: 12px;
font-weight: normal;
}
.apod-blog h2 {
color: #626262;
font-weight: 600;
}
.registration dt {
width: 200px;
float: left;
height: 40px;
font-size: 13px;
text-align: right;
margin-right: 10px;
}
.registration dd {
height: 40px;
}
.order_title_box h4 {
margin: 0px;
padding: 0px;
font-size: 18px;
font-family: arial, tahoma, verdana, Georgia;
text-decoration: none;
font-weight: bold;
float: left;
color: #FFFFFF;
margin-left: 5px;
margin-top: 3px;
width: 100%;
text-transform: uppercase !important;
}
.order_title_box span {
margin: 0px;
padding: 0px;
font-size: 18px;
font-family: arial, tahoma, verdana, Georgia;
text-decoration: none;
font-weight: bold;
float: left;
color: #FFFFFF;
margin-left: 5px;
margin-top: 3px;
width: 100%;
text-transform: uppercase !important;
line-height: 30px;
}
.view-price a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: normal;
}
.single-window-description button {
margin-top: 10px;
padding: 10px 20px !important;
height: auto;
margin-bottom: 10px;
border-radius: 5px !important;
}
/* css for login page */
.account {
padding: 0px 10px;
margin: 0px;
}
.account-tab {
border-bottom: 3px solid #68a6cd;
}
.account-tab li {
padding: 7px 25px;
background: #68a6cd;
cursor: pointer;
}
.image_for_oil_painting1{
width:100%;
height:197px;
background:#FFFDD7;
display:block;
text-align:center;
margin:auto;
overflow:hidden;
padding: 20px;
margin-bottom: 10px;
}
.oilpainting {
height: 160px;
}
.oilpainting img {
max-height: 100%;
}
.account-tab li.active {
background: #40789b;
}
.account-tab>li>p {
color: #fff;
font-size: 14px;
margin-bottom: 0px;
}
.userdata .form-group {
margin-bottom: 5px;
}
.userdata input[type="text"], .userdata input[type="password"] {
width: 100%;
height: 40px;
font-size: 14px;
}
.userdata input[type=checkbox], .acc-register #Newsletter_field {
margin-top: 15px;
}
.userdata input[type=submit], .acc-register .acc-button{
padding: 5px 30px !important;
background: #3a91c6 !important;
border: none !important;
color: #fff !important;
line-height: 20px !important;
text-transform: uppercase !important;
}
.userdata label {
margin-top: 10px;
text-align: right;
font-size: 15px;
font-weight: normal;
color: #999999;
padding-right: 0px;
}
.userdata .acc-remember {
margin-bottom: 20px !important;
}
.userdata .acc-remember a {
margin-right: 20px;
font-weight: normal;
font-size: 13px;
}
.account h1 {
color: #3a91c6;
font-weight: normal;
font-size: 20px;
}
/* css for register page */
.acc-register fieldset {
background: #f1f1f1;
padding: 20px;
margin-bottom: 10px;
}
.acc-register input[type="text"], .acc-register input[type="password"], .acc-register SELECT {
width: 100%;
height: 40px;
font-size: 14px;
}
input[type=text]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=url]:hover{
background: #fff !important;
color: #000 !important;
}
.acc-register .form-group {
min-height: 40px;
margin-bottom: 10px;
}
.acc-register label, .acc-register div {
margin-top: 10px;
text-align: right;
font-size: 15px;
font-weight: normal;
color: #999999;
}
fieldset>div{
padding: 0px;
}
.acc-register div {
text-align: left;
}
.blog .items-row {
background: #f6fbff;
padding: 0px 25px;
padding-bottom: 15px;
margin-bottom: 30px;
}
.gift_voucher_form input[type="button"], .gift_voucher_form input[type="submit"] {
padding: 5px 30px !important;
background: #3a91c6 !important;
border: none !important;
color: #fff !important;
margin-bottom: 20px;
line-height: 20px !important;
width: 100%;
}
.gift_voucher_form label {
text-align: right;
margin-top: 6px;
font-size: 12px;
}
.acc-login p span {
float: right;
margin-top: -25px;
font-size: 13px;
}
.acc-register p span {
float: right;
margin-top: -25px;
font-size: 13px;
}
/* design for cutom upload */
.blockmount-bottom p {
text-align: center;
}
.productdetails {
margin-top: 10px;
}
.block-laminate {
margin: 0px;
}
.uploadForm p {
text-align: left;
}
.progress-wizard {margin-top: 40px;}
/*Form Wizard*/
.progress-wizard { margin: 0px; padding: 20px 0 20px 0;}
.progress-wizard > .progress-wizard-step {padding: 0; position: relative;}
.progress-wizard > .progress-wizard-step .progress-wizard-stepnum {color: #fff; font-size: 80px; margin-bottom: 5px; font-weight: 900}
.progress-wizard > .progress-wizard-step .progress-wizard-info {color: #3a91c6; font-size: 18px; font-family: "Open Sans";}
.progress-wizard > .progress-wizard-step > .progress-wizard-dot {position: absolute; width: 120px; height: 120px; display: block; background: #3a91c6; top: 0px; left: 34%; text-decoration: none; margin-top: -15px; margin-left: -15px; border-radius: 50%;}
.progress-wizard > .complete > .progress-wizard-dot {background: #8bcff6;}
.progress-wizard > .progress-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 47px 0;}
.progress-wizard > .progress-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #8bcff6;}
.progress-wizard > .progress-wizard-step.complete > .progress > .progress-bar {width:100%;}
.progress-wizard > .progress-wizard-step.active > .progress > .progress-bar {width:50%;}
.progress-wizard > .progress-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.progress-wizard > .progress-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.progress-wizard > .progress-wizard-step.disabled > .progress-wizard-dot {background-color: #f5f5f5;}
.progress-wizard > .progress-wizard-step.disabled > .progress-wizard-dot:after {opacity: 0;}
.progress-wizard > .progress-wizard-step:first-child > .progress {left: 50%; width: 50%;}
.progress-wizard > .progress-wizard-step:last-child > .progress {width: 50%;}
.progress-wizard > .progress-wizard-step.disabled a.progress-wizard-dot{ pointer-events: none; }
.progress {background: #3a91c6;}
/*END Form Wizard*/
.arrow {
margin: 0px;
font-size: 40px;
font-weight: 900;
text-align: right;
margin-bottom: 40px;
color: #000;
}
.arrow i {
cursor: pointer;
background: #ccc;
padding: 0px 8px;
}
.arrow #arrow-down{
display: none;
}
.select-files {
width: 80%;
margin: 0 auto;
}
.upload-bar {
margin: 0px;
background: #f5f5f5;
border: 1px solid #e1e1e1;
padding: 20px;
margin-bottom: 20px;
}
.upload-bar p {
color: #c0c0c0;
text-align: center;
font-size: 18px;
}
.uploaderField{
border: solid 1px #e1e1e1;
height: 41px;
width: 100%;
line-height: 30px;
position: relative;
overflow: hidden;
margin-bottom: 10px;
float: left;
}
.uploaderField input{
position:absolute;
z-index:1000;
width:100%;
height: 40px;
opacity:0;
cursor:pointer;
left:0;
}
#upload_delete{
position:absolute;
bottom:0;
right:0;
}
.select-files .button {
background: #3a91c6;
color: #fff;
padding: 0 15px;
font-size: 14px;
float: right;
height: 40px;
line-height: 35px;
font-weight: normal;
width: 130px;
}
.uploaderField p{
margin:0;
line-height:36px;
width:175px;
white-space:nowrap;
overflow:hidden;
}
.fileUploadList{
overflow:hidden;
}
.display-image{
margin: 0px;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 20px;
margin-bottom: 15px;
display: none;
}
.image-section {
background: #fff;
padding: 10px;
border: 1px solid #e8e8e8;
}
.image-properties {
padding: 0px 25px;
text-align: center;
color: #999;
font-weight: 800;
}
.image-properties h3 {
font-size: 20px;
}
.image-properties p span{
color: #8BCFF6;
font-weight: normal;
}
.image-properties p span.text-danger{
color: #F44336;
}
.printable-size {
width: 100%;
margin-bottom: 10px;
}
.image-properties p {
font-weight: normal;
text-align: right;
}
.display-image .image-properties p {
font-weight: normal;
text-align: center;
}
.custom-size {
width: 25px;
margin-bottom: 10px;
}
#custom_size_option{
text-align: left;
}
.select-products {
margin: 0px;
text-align: center;
}
.select-product h1 {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.select-product h1 span {
display: inline-block;
position: relative;
}
.select-product h1 span:before,
.select-product h1 span:after {
content: "";
position: absolute;
height: 5px;
border-bottom:5px solid #f5f5f5;
top: 6px;
width: 600px;
}
.select-product h1 span:before {
right: 100%;
margin-right: 15px;
}
.select-product h1 span:after {
left: 100%;
margin-left: 15px;
}
.select-product{
display: none;
}
#product-selected{
display: none;
width: 100px;
float: right;
}
.custom_upload_button:hover {
background: rgba(58, 145, 198, 0.83);
}
#select-product{
display: none;
width: 100px;
float: right;
}
.image-section #uploaded_img {
max-width: 100%;
width: auto;
height: auto;
}
.image-properties .images-price {
text-align: right;
}
.product-image-properties{
margin: 0px;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 5px;
margin-bottom: 15px;
display: none;
}
.image-properties h4 span {
color: #8BCFF6;
font-weight: normal;
line-height: 20px;
font-size: 14px;
}
.special-instruction p {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.special-instruction p span {
display: inline-block;
position: relative;
color: #3a91c6;
font-size: 30px;
}
.special-instruction p span:before,
.special-instruction p span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 5px solid #f5f5f5;
top: 6px;
width: 600px;
}
.special-instruction p span:before {
right: 100%;
margin-right: 15px;
}
.special-instruction p span:after {
left: 100%;
margin-left: 15px;
}
.special-instruction TEXTAREA {
width: 100%;
margin: 0 auto;
display: table;
margin-bottom: 20px;
font-size: 15px;
}
.top-row-title p {
font-size: 14px;
font-weight: 300;
margin: 5px 0px;
}
.uploadForm{
float: left;
margin-bottom: 10px;
}
#preview {
float: left;
background: #f5f5f5;
border: 1px solid #e8e8e8;
padding: 5px;
margin-bottom: 15px;
}
.image-section {
width: 100%;
}
/* designs for the blog page */
.page-header h2 a {
color: #70AACF;
text-decoration: none;
font-size: 16px;
}
.page-header {
padding: 0px;
margin: 0px;
border: none;
}
.items-leading, .items-row {
background: #F6FBFF;
margin-bottom: 10px;
padding: 0px 30px;
border: 2px solid #DBE3E6;
}
.icons {
display: none;
}
.readmore a {
padding: 0px;
}
.item p {
color: #898989;
}
/* styles for the jersey frame page By <NAME> */
.banner {
margin: 0px;
}
.banner img {
width: 100%;
}
.detail-text {
padding-top: 20px;
}
.detail-text .jersey-left p {
font-size: 16px;
color: #686868;
}
.detail-text .jersey-left p span{
color: #ee1313;
font-weight: 600;
}
.detail-text .jersey-right {
border: 5px solid #3B82AE;
border-radius: 10px;
background: #8DCEF6;
padding: 10px;
}
.banner_down {
margin-top: 20px;
padding: 0px;
}
.banner_down h1 {
color: #fff;
font-size: 5em;
text-align: center;
background: #47978C;
line-height: 2em;
font-weight: 900;
text-transform: uppercase;
margin: 0px;
}
.banner_down img{
width: 100%;
}
.jersey-process {
margin-bottom: 20px;
}
.jersey-process .title {
font-family: Open Sans, arial, verdana, tahoma;
font-size: 50px;
font-weight: bold;
color: #ee1313;
float: left;
}
.jersey-process .title_contact {
font-family: Open Sans, arial, verdana, tahoma;
font-size: 20px !important;
font-weight: bold;
color: #686868;
text-align: right;
margin-top: 15px;
}
.jersey-process img {
width: 100%;
}
.yellow_box {
background: #efff00;
border: 3px solid #e10000;
width: 80%;
margin: 0px auto;
text-align: center;
color: #000000;
padding: 20px;
}
.yellow_box{
font-family: Open Sans, arial, verdana, tahoma;
font-size: 24px;
}
.framing-styles h1{
text-align: right;
text-transform: uppercase;
}
.framing-styles h1 span{
color: #ee1313;
font-size: 36px;
font-weight: bold;
margin: 0;
padding: 0;
text-align: right;
}
.sleeve-style{
padding:0px;
background: #000000;
padding-bottom: 50px;
}
.sleeve-style p{
background: #f02d2d;
text-align: center;
margin: 0px;
}
.sleeve-style p span{
color: #fff;
font-size: 20px;
text-transform: uppercase;
}
.tee_style {
text-align: center;
padding-top: 10px;
}
.tees_text {
background: #000 !important;
color: #fff;
font-size: 20px !important;
}
.tee_style_text p {
background: #000;
font-size: 20px;
color: #f02d2d;
font-weight: bold;
padding: 10px;
margin-top: 50px;
}
.tee_style_text1 p{
background: #000;
font-size: 14px;
color: #FFFFFF;
font-weight: normal;
margin-top: 20px;
}
.footer_up {
background: #000 none repeat scroll 0 0;
height: 90px;
margin: 0;
padding: 0;
}
.footer_up ul {
margin: 0;
list-style: none;
}
.footer_up li {
list-style: outside none none;
cursor: pointer;
margin-top: 15px;
}
.footer_up ul li img {
float: left;
}
.footer_up ul li span {
color: #fff;
display: block;
float: left;
font-size: 16px;
padding-right: 5px;
padding-top: 25px;
}
.framing-styles {
padding: 0px;
}
.eco_text {
margin-left: 214px;
margin-top: -195px;
position: absolute;
width: 230px;
}
.eco_title {
color: #f02d2d;
font-size: 20px;
font-weight: bold;
}
.eco_text p{
font-size: 14px;
margin: 0;
}
.eco_price{
color: #f02d2d;
font-size: 30px;
font-weight: bold;
}
.product{
float: left;
}
.product-image {
z-index: 99;
padding: 0px;
text-align: center;
}
.product-description h3{
color: #f02d2d;
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
.product-description h2 {
color: #f02d2d;
font-size: 30px;
font-weight: bold;
margin-top: 5px;
}
.product-description {
border-radius: 5px;
background: #98B0C4;
}
.product-description p {
font-size: 14px;
margin: 0;
}
.economy {
width: 520px;
}
.eco{
margin-left: -25px;
border: 5px solid #2A488A;
margin-top: 13px;
}
.shadow1 .product-image {
float: right;
}
.shadow-box1{
margin-right: -25px;
border: 5px solid #F51E28;
margin-top: 18px;
float: right;
}
.shadow3 {
width: 280px;
float: right;
}
.shadow1 {
width: 500px;
}
.shadow-box3{
border:5px solid #1F325C;
margin-top: -20px;
margin-left: 12px;
width: 89%;
}
.shadow2 {
width: 500px;
}
.shadow-box2 {
margin-left: -25px;
border: 5px solid #5A847F;
margin-top: 10px;
}
.shadow4 {
width: 315px;
float: right;
}
.shadow-box4 {
padding-top: 40px;
margin-top: -40px;
border: 5px solid #C9161B;
}
.own {
width: 500px;
}
.own h3 {
color: #f02d2d;
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
.own p {
font-size: 14px;
margin: 0;
}
.own h2 {
color: #f02d2d;
font-size: 30px;
font-weight: bold;
margin-top: 5px;
}
.right-part-res{
display: none;
}
@media only screen and (min-width : 320px) and (max-width : 769px){
.product{
width: 100%;
margin-bottom: 10px;
}
.product-description {
width: 100%;
margin: 0px;
padding-top: 40px;
margin-top: -40px;
text-align: center;
}
.jersey-process .title {
font-size: 30px;
}
.jersey-process .title_contact{
font-size: 12px !important;
}
.framing-styles h1 span {
font-size: 17px;
}
.banner_down h1 {
font-size: 2em;}
}
/*CSS for the shadow box frames*/
.shadow-box {
margin: 10px;
}
.shadow-box h2 {
line-height: 0.5;
text-align: center;
margin-bottom: 30px;
}
.shadow-box h2 span {
display: inline-block;
position: relative;
}
.shadow-box h2 span:before {
right: 100%;
margin-right: 15px;
}
.shadow-box h2 span:after {
left: 100%;
margin-left: 15px;
}
.frame-types {
margin-bottom: 20px;
}
.shadow-box-description div {
margin-bottom: 10px;
padding: 0px 20px;
}
.shadow-box-description{
margin-bottom: 10px;
}
.frame-types h4{
width: 100%;
background: #4c4c4c;
text-align: center;
text-transform: capitalize;
margin: 0px;
color: #fff;
padding: 10px 0px;
}
.frame-types .frames {
margin: 10px 5px;
border: 2px solid #000;
border-radius: 2px;
overflow: hidden;
padding-right: 10px;
}
.frame-types .frames img {
width: 100%;
object-fit: cover;
max-width:355px;
}
.frames-list {
margin: 0px;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
position: relative;
min-height: 1px;
padding-right: 5px;
padding-left: 5px;
}
.col-xs-5ths {
width: 20%;
float: left;
}
@media (min-width: 768px) {
.col-sm-5ths {
width: 20%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-5ths {
width: 20%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-5ths {
width: 20%;
float: left;
}
}
.shadow-box-description .descriptions {
padding: 10px 20px;
margin-top: 30px;
border: 1px solid #000;
max-height: 200px;
min-height: 150px;
}
.shadow-box-description .descriptions p {
color: #000;
font-weight: 600;
text-align : center
}
.frames-list .thumb-img{
cursor: pointer;
border: 1px solid #ccc;
height: 50px;
overflow: hidden;
}
.frames-list .col-md-5ths img{
width: 100%;
object-fit: cover;
height: 100%;
border:1px solid #000;
}
.frames-list .col-md-5ths{
height:50px;
overflow:hidden;
}
/*.frames-list .col-md-5ths:last-child {
padding-right: 0px;
}
.frames-list .col-md-5ths:first-child {
padding-left: 0px;
}*/
.frame-types .button {
text-transform: uppercase;
padding: 10px 20px;
width: 75%;
margin: 20px auto;
text-align: center;
height: auto;
background: #3a91c6;
}
.frame-types .button:hover {
opacity: 0.7;
}
.custom-framing {
border: 5px solid #dadada;
box-shadow: 5px 5px 0px #282828;
background: #282828;
margin: 0px;
}
.home-banner-text h1 {
color: #fff;
font-weight: bolder;
text-align: center;
font-size: 40px;
}
.home-banner-text ul {
list-style: none;
padding: 0;
margin: 0;
text-align: center;
font-size: 18px;
color: #fff;
font-weight: lighter;
}
.home-banner-text li:before {
content: "• ";
color: #43B2EA;
font-size: 40px;
line-height: 20px;
position: absolute;
margin-left: -19px;
margin-top: 0px;
}
.banner-text-bottom {
width: 100%;
background: #2793D4;
color: #000;
font-size: 14px;
text-align: center;
font-weight: bold;
padding: 15px;
margin-top: 52px;
}
.home-banner-text {
padding: 0px;
}
.home-banner-img {
padding: 0px;
float: right;
}
#jform_cmc_groups_EMAIL{
float: left;
width: 70%;
height: 24px;
min-height: 24px !important;
margin-right: 10px;
}
#jform_cmc_groups_EMAIL-lbl {
display: none;
}
.cmc-signup {
width: 400px;
margin: 0 auto;
margin-top: 20px;
}
.newsSubmit{
background: url('../images/newsletter-arrow.png') no-repeat center !important;
background-color: #000!important;
width: 12%;
float: left;
padding: 17px !important;
}
.mcSignupModule input[type="text"] {
margin-bottom: 5px;
height: 34px;
width: 100% !important;
padding: 7px;
float: left;
font-family: 'Open Sans';
}
.item-text span {
background: url(../images/check_radio_sheet.png) 0px top no-repeat;
width: 40px;
z-index: 99999999999;
}
.custom_payment .col-md-6 {
margin-bottom: 10px;
}
.circle{
height: 150px;
width:150px;
border-radius: 75px;
background-color: white;
font-size: 17px;
margin-left: 40px;
}
.circle p{
display: inline-block;
zoom: 1;
color: #000;
text-align: center;
vertical-align: middle;
margin: 0px;
font-size: 16px;
font-weight: 700;
color: #68A6CF;
}
.circle span{
height: 60px;
display: inline-block;
zoom: 1;
vertical-align: middle;
}
.lines{
background-color: #fff;
height: 3px;
margin-left: -97px;
margin-top: 78px;
width: 99px;
}
.hline{
background-color: white;
height: 162px;
margin-top: -85px;
width: 3px;
}
.vline{
height: 3px;
width: 25px;
background-color: white;
}
.vline1{
margin-bottom: -49px;
}
.vline2{
margin-bottom: -68px;
}
.custom_payment_form {
padding-top: 15px;
}
.custom_payment_form form TEXTAREA {
margin-bottom: 0px;
}
.vline4{
margin-top: -55px;
}
.res-text {
font-size: 15px;
line-height: 9px;
margin-left: 48px;
width: 200px !important;
margin-left: 28px;
}
.process-arrow {
float: left;
margin-top: 15px;
margin-right: 40px;
margin-left: 7px;
}
.content-sub h2{
margin-top:0px;
}
#editcell {
padding: 15px;
}
@media (min-width: 768px) {
.video-block .col-md-5{
padding-left:0px;
padding-right:0px;
}
.camera_wrap img{
width:100% !important;
height:100% !important;
}
}
abbr[data-original-title], abbr[title]{
cursor:pointer;
}
/* css for sticky header by suman */
.top .nav-up{
display:none;
}
.down .nav-down{
display:none;
}
.down .nav-up {
position:fixed;
z-index:9999;
top:0;
}
.down nav{
width:100%;
}
.down .container{
width:100%;
}
.down .maf-navbar .maf-menu li a{
padding-left:4px;
padding-right:4px;
font-size:12px;
}
.down .maf-navbar .upload-your-photo{
right:-15px;
}
.down #home_logo img{
width:100% !important;
height:100% !important;
}
@media only screen and (min-width : 991px) and (max-width : 1290px){
.down .css-shapes-preview {
display:none;
}
.down .upload-your-photo a{
font-size:0px !important;
}
.down .maf-navbar .upload-your-photo{
width:72px;
}
.down .col-md-12.collapse.navbar-collapse{
width:100%;
}
.down .maf-navbar .maf-menu li a{
font-size:11px;
}
.down .menu.nav.navbar-nav.maf-menu{
left:5%;
}
}
@media (max-width: 768px) {
.down{
display:none;
}
/* end sticky header css */
.account #register-button{
margin-top:10px;
}
.opg-panel .opg-panel-box{
text-align:center;
}
.item-page{
padding:0px 15px;
}
}
#content h1{
border-bottom:0;
}
.main-content-new #content{
width:100%;
padding-right:15px;
}
.specials-wrapper img{
float:none;
}
.item-page #content h1{
width:100%;
}
.faqqueeidt{
border-bottom:1px dotted brown;
margin-bottom: 1em;
padding-bottom: 1em;
}
.faqqueeidt a{
color: #816855 !important;
font-size: 14px;
font-weight: bold;
}
.faqqueans h5{
font-weight: bolder;
}
.ppedit #about_us{
width:100%;
margin:0px;
}
.ppedit #about_us h1{
width:100%;
}
.ppedit #about_us p{
width:100%;
text-align: left;
}
.ppedit #about_us h6{
width:100%;
}
.ppedit #about_us li{
width:100%;
}
.home-optn{
position: absolute;
bottom: 10px;
left: 15px;
right: 15px;
}
.lefth a{
background:rgba(0, 0, 0, 0) url("../images/btn_01.png") repeat scroll 0 0 / cover;
float: left;
height: 40px;
width: 120px;
}
.righth a{
float:right;
background:rgba(0, 0, 0, 0) url("../images/btn_02.png") repeat scroll 0 0 / cover;
float: right;
height: 40px;
width: 167px;
}
.lefth a:hover,.righth a:hover {
margin-top: -3px;
transition: all 200ms ease-in;
}
@media (max-width: 479px) {
.progress-wizard img {
width:100%;
}
.opg-panel.opg-panel-box{
text-align:center;
}
.righth a{
width:30%;
height:auto;
bottom:50px;
}
.lefth a {
width:18%;
height:auto;
bottom:40px;
}
}
@media only screen and (min-width : 480px) and (max-width : 768px){
.righth a{
width:30%;
height:45px;
bottom:50px;
}
.lefth a {
width:18%;
height:40px;
bottom:20px;
}
}
.vmpayment_description, .vmshipment_description{
display:block;
}
.vmCartPaymentLogo .opg-text-small{
font-size:9px;
}
.jmoddiv.jmodinside{
position:static !important;
}
.home-banner-text li a{
font-size: 18px !important;
color: white;
text-decoration: none !important;
}
.home-banner-text li a:hover {
color: #43b2ea;
}
.product_list_one.accessories .button_list table{
display:none;
}
.total_products {
width: 20px;
height: 20px;
background: #94D0F5;
text-align: center;
border-radius: 10px;
float: right;
margin-right: 40px;
margin-top: -97px;
z-index: 99999;
position: relative;
}
.call-us-now abbr {
border: none;
}
.pathway span {
text-transform: capitalize;
}
.acrylic-sandwich-mount-thumb-img.thumb img {
width: 79%;
}
.acrylic-sandwich-mount-thumb-img.Backing-Color.thumbBacking-Color img {
width: 79%;
}
.col-md-3.australian_made{
width:15%;
}
#left_navigation_bg ul.VMmenu li {
border-bottom: 1px #CCC solid;
float: none;
width: 100%;
padding: 5px 0px;
}
#left_navigation_bg ul.VMmenu {
width: 100%;
border: 1px solid #ccc;
}
#left_navigation_bg .moduletable h3 {
background: #3a91c6;
color: #fff;
text-transform: capitalize;
padding: 10px;
margin: 0px;
}
#left_navigation_bg ul.VMmenu li a{
font-size: 13px;
text-align: left;
color: #3a91c6;
padding: 0px;
padding-left: 12px;
font-weight: bold;
}
.content-sub .photo-art-bl-btn{
float:left;
}
.photo-art-bl-btn{
float:right;
}
.social-sharing {
float: right;
margin-top: -50px;
}
.maf-navbar .upload-your-photo .shape-block:hover {
opacity: 0.9;
}
.maf-navbar .upload-your-photo{
cursor:pointer;
}
.total span {
text-align: right;
padding: 0px;
color: #999;
width: 100%;
margin-top: 5px;
}
@media only screen and (min-width : 705px) and (max-width : 991px){
.guarantee-desc{
width:86%;
}
.guarantee-img{
width:14%;
}
}
#left_navigation_bg ul.VMmenu li:last-child {
border: none;
}
@media only screen and (min-width : 320px) and (max-width : 991px){
.aProductTab .fadein {
height: 501px;
}
.content-sub{
padding-right:0px;
}
.upload-block{
margin-top:2em;
}
}
.footer_box{
padding-top:1em;
padding-bottom:1em!important;
}
@media only screen and (min-width : 770px) and (max-width : 991px){
.photo-on-canvas-right{
padding-left:0px;
padding-right:0px;
padding-bottom:1em;
}
}
@media only screen and (min-width : 262px) and (max-width : 500px){
.collage-thumb-img-wrap{
padding:15px 15px;
}
}
@media only screen and (min-width : 768px) and (max-width : 991px){
.blue-box.left-box.glossyedit {
height: 213px;
}
.digital_prod_desc #fadeshow1 {
width: 48%!important;
}
.left_image img {
width: 33%;
}
.cat_pic{
width:auto;
}
.side_newsletter{
width:auto;
margin-top:5px;
padding-right:5px;
}
.cat_pic img{
height:165px;
padding-right:5px;
width:auto;
}
}
}
@media only screen and (min-width : 992px) and (max-width : 1199px){
.blue-box.left-box.glossyedit {
height: 174px;
}
.side_newsletter{
margin:0px;
width:auto;
}
}
@media only screen and (min-width : 992px) and (max-width : 767px){
.order_down_cart input {
width: 138px !important;
margin-left:5px;
}
}
.VMmenu .VmOpen .menu li.VmClose {
padding: 0px !important;
border: none !important;
}
.VmClose>.menu>.VmClose {
display: none !important;
}
.next_step_image {
width: 100%!important;
text-align:center;
}
.ws-search {
width: 30%;
margin: 0 auto;
margin-bottom: 10px;
margin-top: -30px;
z-index: 9999;
position: relative;
color: black;
}
.search label.element-invisible{
display: none;
}
.ws-search .form-inline button {
margin-top: -3px;
}
.ws-search input#mod-search-searchword {
line-height: 30px;
padding: 0 10px;
border: 2px solid #eee;
}
.jersy-order-form {
margin-top: 10px;
}
.shadow-box-extra-image img {
width: 100%;
}
.shadow-box-extra-image{
border-radius: 5px;
border: 4px solid #000;
}
#left_navigation_bg .VmOpen .menu {
padding-left: 15px;
}
a:hover {
text-decoration: none;
}
.image-properties input {
width: 40%;
}
.notice b {
text-transform: capitalize;
}
#m-Modal .modal-content {
margin-top: 15%;
}
#m-Modal .modal-body{
padding: 20px;
}
#searchForm .checkbox {
float: left;
margin: 10px;
}
#searchForm .checkbox input{
margin:0px;
position: relative;
}
.acc-register .buttonBar-right {
text-align: right;
margin-top: 0px;
margin-right: -15px;
width: 300px;
float: right;
}
.opg-panel-box{
text-align: center;
}
.empty-cart{
width:100%;text-align:center;font-weight:normal;font-size:18px;
}
.opg-button i.opg-icon-question{
line-height:37px;
}
.addCartbBtn.pull-right input:disabled {
cursor: not-allowed;
}
.select_thickness {
margin-bottom: 20px;
}
.cmc-signup .alert{
text-align: center;
}
input[type="submit"]{
text-transform: capitalize;
}
.res-text {
height: 25px;
}
.faq tr:nth-of-type(odd){
background: transparent;
}
.faq td{
border:none;
}
.moduletable.down-arrow:before {
content: "\f078";
position: absolute;
right: 20px;
top: 17px;
font-size: 18px;
font-family: FontAwesome;
}
.moduletable.up-arrow:before {
content: "\f077";
position: absolute;
right: 20px;
top: 17px;
font-size: 18px;
font-family: FontAwesome;
}
.prices.pull-left {
margin-right: 10px;
}
.acrylic-photo-block-thumb-img {
margin-right: 30px;
}
input[type="submit"]:hover,button:hover {
opacity: 0.8;
}
#home_logo a:hover{
opacity:1;
}
.search {
font-size: 14px;
}
.search-list {
margin-bottom: 15px;
}
.search-list .result-title a {
font-size: 14px;
}
.shadow-box h1{
margin-bottom: 0px;
}
.shadow-box .digital_prod_desc h3{
margin-top: 0px;
}
.cart-note{
color: #ff0000 !important;
font-size: 13px !important;
font-style: italic !important;
}
#couponpricediv #coupon_price{
color:red;
} | 0.290176 | 0.112235 |
form#feedback-form input[type="radio"].smiley1 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley2 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley3 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley4 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley5 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley5:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley4:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley3:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley2:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley1:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"]:focus {
outline: 0;
}
form#feedback-form input[type="radio"].smiley1 {
background: url("/images/angry.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley2 {
background: url("/images/sad.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley3 {
background: url("/images/neutral.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley4 {
background: url("/images/smile.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley5 {
background: url("/images/grinning.svg") center;
background-size: cover;
} | frontend/web/css/smiley.css | form#feedback-form input[type="radio"].smiley1 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley2 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley3 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley4 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley5 {
-webkit-appearance: none;
width: 5vw;
height: 5vw;
border: none;
cursor: pointer;
-webkit-transition: border .2s ease;
transition: border .2s ease;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
margin: 0 5px;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
form#feedback-form input[type="radio"].smiley5:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley4:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley3:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley2:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"].smiley1:checked {
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
form#feedback-form input[type="radio"]:focus {
outline: 0;
}
form#feedback-form input[type="radio"].smiley1 {
background: url("/images/angry.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley2 {
background: url("/images/sad.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley3 {
background: url("/images/neutral.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley4 {
background: url("/images/smile.svg") center;
background-size: cover;
}
form#feedback-form input[type="radio"].smiley5 {
background: url("/images/grinning.svg") center;
background-size: cover;
} | 0.246896 | 0.056731 |
.nav-links a {
-webkit-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.nav-links a,
a:hover {
text-decoration: none !important;
color: #9d9d9d;
}
.footer .nav-links li {
display: block;
margin-bottom: 10px;
}
.footer .nav-links li a {
color: #9d9d9d;
}
.footer .nav-links li a:hover {
color: #ea4335;
}
.footer {
padding: 1rem 0 0 0;
color: #9d9d9d;
}
.footer li .icon {
font-size: 20px;
color: #171515;
}
.footer .subscribe {
position: relative;
}
.footer .subscribe .form-control {
background-color: #e6e6e6;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 30px;
height: 50px;
padding-left: 30px;
padding-right: 130px;
border: none;
color: #000;
}
.footer .subscribe .form-control::-webkit-input-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control::-moz-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control:-ms-input-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control:-moz-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .btn-submit {
background: #614ad3;
height: 40px;
border-radius: 30px;
padding-left: 30px;
padding-right: 30px;
color: #fff;
font-weight: bold;
position: absolute;
top: 5px;
right: 5px;
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.footer h3 {
font-size: 16px;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-weight: 900;
color: #614ad3;
margin-bottom: 20px;
}
.bg-clr1 {
background-color: #f2f6d0;
}
.bg-clr2 {
background-color: #9cafb7;
}
.back {
margin-right: 65px;
}
.back a {
text-decoration: none !important;
color: #000000;
}
.back a:hover {
color: #ea4335;
}
.colored {
height: 8px;
margin: 0px;
background: linear-gradient(
to left,
rgba(196, 222, 138, 1) 0%,
rgba(196, 222, 138, 1) 12.5%,
rgba(245, 253, 212, 1) 12.5%,
rgba(245, 253, 212, 1) 25%,
rgba(255, 208, 132, 1) 25%,
rgba(255, 208, 132, 1) 37.5%,
rgba(242, 122, 107, 1) 37.5%,
rgba(242, 122, 107, 1) 50%,
rgba(223, 157, 185, 1) 50%,
rgba(223, 157, 185, 1) 62.5%,
rgba(192, 156, 221, 1) 62.5%,
rgba(192, 156, 221, 1) 75%,
rgba(95, 156, 217, 1) 75%,
rgba(95, 156, 217, 1) 87.5%,
rgba(94, 190, 227, 1) 87.5%,
rgba(94, 190, 227, 1) 87.5%,
rgba(94, 190, 227, 1) 100%
);
} | css/footer.css | .nav-links a {
-webkit-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.nav-links a,
a:hover {
text-decoration: none !important;
color: #9d9d9d;
}
.footer .nav-links li {
display: block;
margin-bottom: 10px;
}
.footer .nav-links li a {
color: #9d9d9d;
}
.footer .nav-links li a:hover {
color: #ea4335;
}
.footer {
padding: 1rem 0 0 0;
color: #9d9d9d;
}
.footer li .icon {
font-size: 20px;
color: #171515;
}
.footer .subscribe {
position: relative;
}
.footer .subscribe .form-control {
background-color: #e6e6e6;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 30px;
height: 50px;
padding-left: 30px;
padding-right: 130px;
border: none;
color: #000;
}
.footer .subscribe .form-control::-webkit-input-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control::-moz-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control:-ms-input-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .form-control:-moz-placeholder {
color: #b3b3b3;
font-style: italic;
font-size: 14px;
}
.footer .subscribe .btn-submit {
background: #614ad3;
height: 40px;
border-radius: 30px;
padding-left: 30px;
padding-right: 30px;
color: #fff;
font-weight: bold;
position: absolute;
top: 5px;
right: 5px;
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.footer h3 {
font-size: 16px;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-weight: 900;
color: #614ad3;
margin-bottom: 20px;
}
.bg-clr1 {
background-color: #f2f6d0;
}
.bg-clr2 {
background-color: #9cafb7;
}
.back {
margin-right: 65px;
}
.back a {
text-decoration: none !important;
color: #000000;
}
.back a:hover {
color: #ea4335;
}
.colored {
height: 8px;
margin: 0px;
background: linear-gradient(
to left,
rgba(196, 222, 138, 1) 0%,
rgba(196, 222, 138, 1) 12.5%,
rgba(245, 253, 212, 1) 12.5%,
rgba(245, 253, 212, 1) 25%,
rgba(255, 208, 132, 1) 25%,
rgba(255, 208, 132, 1) 37.5%,
rgba(242, 122, 107, 1) 37.5%,
rgba(242, 122, 107, 1) 50%,
rgba(223, 157, 185, 1) 50%,
rgba(223, 157, 185, 1) 62.5%,
rgba(192, 156, 221, 1) 62.5%,
rgba(192, 156, 221, 1) 75%,
rgba(95, 156, 217, 1) 75%,
rgba(95, 156, 217, 1) 87.5%,
rgba(94, 190, 227, 1) 87.5%,
rgba(94, 190, 227, 1) 87.5%,
rgba(94, 190, 227, 1) 100%
);
} | 0.40439 | 0.09611 |
.rkmd-btn {
display: inline-block;
position: relative;
cursor: pointer;
height: 35px;
line-height: 35px;
padding: 0 1.5rem;
color: #424242;
font-size: 15px;
font-family: 'Roboto', sans-serif;
letter-spacing: .8px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
white-space: nowrap;
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 2px;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.225);
}
.rkmd-btn:hover {
text-decoration: none;
box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.225);
}
/* ----------------------------------------------------------------------
Material Design Fab Buttons - by <NAME>
------------------------------------------------------------------------- */
.rkmd-btn.btn-fab, .rkmd-btn.btn-fab-mini {
overflow: hidden;
position: relative;
margin: auto;
padding: 0;
line-height: normal;
border-radius: 50%;
box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3);
}
.rkmd-btn.btn-fab:hover, .rkmd-btn.btn-fab-mini:hover {
box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.375);
}
.rkmd-btn.btn-fab i, .rkmd-btn.btn-fab-mini i {
display: inline-block;
float: none;
width: inherit;
margin: 0;
font-size: inherit;
text-align: center;
line-height: none;
vertical-align: middle;
}
.rkmd-btn.btn-fab {
width: 56px;
height: 56px;
font-size: 28px;
}
.rkmd-btn.btn-fab-mini {
width: 40px;
height: 40px;
font-size: 24px;
}
/* Buttons Color */
.rkmd-btn.btn-lightBlue {
color: #FFF;
background-color: #03a9f4;
}
.rkmd-btn.btn-lightBlue:hover {
background-color: #23b9fc;
}
.rkmd-btn.btn-white {
color: #444;
background-color: #FFF;
}
.rkmd-btn.btn-white:hover {
background-color: #fafafa;
}
.rkmd-btn.btn-black {
color: #bdbdbd;
background-color: #111;
}
.rkmd-btn.btn-black:hover {
background-color: #252525;
}
.rkmd-btn.btn-grey {
color: #757575;
background-color: #f5f5f5;
}
.rkmd-btn.btn-grey:hover {
background-color: #ebebeb;
}
.rkmd-btn.btn-orange {
color: #FFF;
background-color: #ff9800;
}
.rkmd-btn.btn-orange:hover {
background-color: #ffa829;
}
.rkmd-btn.btn-amber {
color: #FFF;
background-color: #ffc107;
}
.rkmd-btn.btn-amber:hover {
background-color: #ffcb30;
}
.rkmd-btn.btn-green {
color: #FFF;
background-color: #4caf50;
}
.rkmd-btn.btn-green:hover {
background-color: #67bd6a;
}
.rkmd-btn.btn-teal {
color: #FFF;
background-color: #009688;
}
.rkmd-btn.btn-teal:hover {
background-color: #00bfad;
}
.rkmd-btn.btn-cyan {
color: #FFF;
background-color: #00bcd4;
}
.rkmd-btn.btn-cyan:hover {
background-color: #00e0fd;
}
.rkmd-btn.btn-indigo {
color: #FFF;
background-color: #3f51b5;
}
.rkmd-btn.btn-indigo:hover {
background-color: #5869c5;
}
.rkmd-btn.btn-deepPurple {
color: #FFF;
background-color: #673ab7;
}
.rkmd-btn.btn-deepPurple:hover {
background-color: #7c52c8;
}
.rkmd-btn.btn-pink {
color: #FFF;
background-color: #e91e63;
}
.rkmd-btn.btn-pink:hover {
background-color: #ed437d;
}
.rkmd-btn.btn-red {
color: #FFF;
background-color: #f44336;
}
.rkmd-btn.btn-red:hover {
background-color: #f6675d;
}
.rkmd-btn.btn-yellow {
color: #FFF;
background-color: #ffeb3b;
}
.rkmd-btn.btn-yellow:hover {
background-color: #f8de00;
}
.rkmd-btn.btn-lime {
color: #FFF;
background-color: #cddc39;
}
.rkmd-btn.btn-lime:hover {
background-color: #bac923;
}
.rkmd-btn.btn-brown {
color: #FFF;
background-color: #795548;
}
.rkmd-btn.btn-brown:hover {
background-color: #936757;
}
/* Raised Buttons Size (Not work in Fab Buttons) */
.rkmd-btn.btn-lg {
height: 48px;
line-height: 48px;
}
.rkmd-btn.btn-sm {
height: 30px;
padding: 0 1rem;
line-height: 30px;
font-size: 12px;
}
.rkmd-btn.btn-xs {
height: 24px;
padding: 0 .4rem;
line-height: 24px;
font-size: 11px;
font-weight: 300;
letter-spacing: .2px;
}
/* Raised Buttons Types */
.rkmd-btn.disabled, .rkmd-btn[disabled] {
cursor: default !important;
color: #9e9e9e !important;
box-shadow: none !important;
}
.rkmd-btn.disabled:not(.btn-flat), .rkmd-btn[disabled]:not(.btn-flat) {
background-color: #cdcdcd !important;
}
.rkmd-btn.disabled:not(.btn-flat):hover, .rkmd-btn[disabled]:not(.btn-flat):hover {
background-color: #cdcdcd !important;
}
.rkmd-btn.btn-flat {
box-shadow: none !important;
background-color: transparent !important;
}
.rkmd-btn.btn-flat:hover {
background-color: #cecece !important;
box-shadow: none !important;
}
.rkmd-btn.btn-flat.disabled:hover, .rkmd-btn.btn-flat[disabled]:hover {
background-color: transparent !important;
}
.rkmd-btn.btn-link {
color: #3949ab !important;
box-shadow: none !important;
background-color: transparent !important;
}
.rkmd-btn.btn-link:hover {
text-decoration: underline !important;
background-color: transparent !important;
box-shadow: none !important;
}
.rkmd-btn.btn-link.disabled, .rkmd-btn.btn-link[disabled] {
color: #9fa8da !important;
text-decoration: underline !important;
background-color: transparent !important;
}
.rkmd-btn.btn-link.disabled:hover, .rkmd-btn.btn-link[disabled]:hover {
background-color: transparent !important;
}
.rkmd-btn i {
float: left;
width: auto;
height: auto;
margin-right: 10px;
font-size: 1.3rem;
line-height: inherit;
}
.rkmd-btn i.right {
float: right !important;
margin: 0;
margin-left: 10px;
}
/* ----------------------------------------------------------------------
Material Design Ripple Effect - by <NAME>
------------------------------------------------------------------------- */
.ripple-effect {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 1;
}
.ripple-effect .ripple {
display: block;
position: absolute;
border-radius: 100%;
background: rgba(255, 255, 255, 0.5);
-webkit-transform: scale(0);
transform: scale(0);
pointer-events: none;
}
.ripple-effect.ripple-dark .ripple {
background: rgba(0, 0, 0, 0.1) !important;
}
.ripple-effect.ripple-red .ripple {
background: rgba(244, 67, 54, 0.725) !important;
}
.ripple-effect.ripple-orange .ripple {
background: rgba(255, 152, 0, 0.725) !important;
}
.ripple-effect.ripple-yellow .ripple {
background: rgba(255, 235, 59, 0.725) !important;
}
.ripple-effect.ripple-green .ripple {
background: rgba(76, 175, 80, 0.725) !important;
}
.ripple-effect.ripple-purple .ripple {
background: rgba(156, 39, 176, 0.725) !important;
}
.ripple-effect.ripple-teal .ripple {
background: rgba(0, 150, 136, 0.725) !important;
}
.ripple-effect.ripple-pink .ripple {
background: rgba(233, 30, 99, 0.725) !important;
}
.ripple-effect .animated {
-webkit-animation: ripple 0.6s linear;
animation: ripple 0.6s linear;
}
@-webkit-keyframes ripple {
100% {
opacity: 0;
-webkit-transform: scale(2.5);
transform: scale(2.5);
}
}
@keyframes ripple {
100% {
opacity: 0;
-webkit-transform: scale(2.5);
transform: scale(2.5);
}
} | WebContent/css/button.css | .rkmd-btn {
display: inline-block;
position: relative;
cursor: pointer;
height: 35px;
line-height: 35px;
padding: 0 1.5rem;
color: #424242;
font-size: 15px;
font-family: 'Roboto', sans-serif;
letter-spacing: .8px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
white-space: nowrap;
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 2px;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.225);
}
.rkmd-btn:hover {
text-decoration: none;
box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.225);
}
/* ----------------------------------------------------------------------
Material Design Fab Buttons - by <NAME>
------------------------------------------------------------------------- */
.rkmd-btn.btn-fab, .rkmd-btn.btn-fab-mini {
overflow: hidden;
position: relative;
margin: auto;
padding: 0;
line-height: normal;
border-radius: 50%;
box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3);
}
.rkmd-btn.btn-fab:hover, .rkmd-btn.btn-fab-mini:hover {
box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.375);
}
.rkmd-btn.btn-fab i, .rkmd-btn.btn-fab-mini i {
display: inline-block;
float: none;
width: inherit;
margin: 0;
font-size: inherit;
text-align: center;
line-height: none;
vertical-align: middle;
}
.rkmd-btn.btn-fab {
width: 56px;
height: 56px;
font-size: 28px;
}
.rkmd-btn.btn-fab-mini {
width: 40px;
height: 40px;
font-size: 24px;
}
/* Buttons Color */
.rkmd-btn.btn-lightBlue {
color: #FFF;
background-color: #03a9f4;
}
.rkmd-btn.btn-lightBlue:hover {
background-color: #23b9fc;
}
.rkmd-btn.btn-white {
color: #444;
background-color: #FFF;
}
.rkmd-btn.btn-white:hover {
background-color: #fafafa;
}
.rkmd-btn.btn-black {
color: #bdbdbd;
background-color: #111;
}
.rkmd-btn.btn-black:hover {
background-color: #252525;
}
.rkmd-btn.btn-grey {
color: #757575;
background-color: #f5f5f5;
}
.rkmd-btn.btn-grey:hover {
background-color: #ebebeb;
}
.rkmd-btn.btn-orange {
color: #FFF;
background-color: #ff9800;
}
.rkmd-btn.btn-orange:hover {
background-color: #ffa829;
}
.rkmd-btn.btn-amber {
color: #FFF;
background-color: #ffc107;
}
.rkmd-btn.btn-amber:hover {
background-color: #ffcb30;
}
.rkmd-btn.btn-green {
color: #FFF;
background-color: #4caf50;
}
.rkmd-btn.btn-green:hover {
background-color: #67bd6a;
}
.rkmd-btn.btn-teal {
color: #FFF;
background-color: #009688;
}
.rkmd-btn.btn-teal:hover {
background-color: #00bfad;
}
.rkmd-btn.btn-cyan {
color: #FFF;
background-color: #00bcd4;
}
.rkmd-btn.btn-cyan:hover {
background-color: #00e0fd;
}
.rkmd-btn.btn-indigo {
color: #FFF;
background-color: #3f51b5;
}
.rkmd-btn.btn-indigo:hover {
background-color: #5869c5;
}
.rkmd-btn.btn-deepPurple {
color: #FFF;
background-color: #673ab7;
}
.rkmd-btn.btn-deepPurple:hover {
background-color: #7c52c8;
}
.rkmd-btn.btn-pink {
color: #FFF;
background-color: #e91e63;
}
.rkmd-btn.btn-pink:hover {
background-color: #ed437d;
}
.rkmd-btn.btn-red {
color: #FFF;
background-color: #f44336;
}
.rkmd-btn.btn-red:hover {
background-color: #f6675d;
}
.rkmd-btn.btn-yellow {
color: #FFF;
background-color: #ffeb3b;
}
.rkmd-btn.btn-yellow:hover {
background-color: #f8de00;
}
.rkmd-btn.btn-lime {
color: #FFF;
background-color: #cddc39;
}
.rkmd-btn.btn-lime:hover {
background-color: #bac923;
}
.rkmd-btn.btn-brown {
color: #FFF;
background-color: #795548;
}
.rkmd-btn.btn-brown:hover {
background-color: #936757;
}
/* Raised Buttons Size (Not work in Fab Buttons) */
.rkmd-btn.btn-lg {
height: 48px;
line-height: 48px;
}
.rkmd-btn.btn-sm {
height: 30px;
padding: 0 1rem;
line-height: 30px;
font-size: 12px;
}
.rkmd-btn.btn-xs {
height: 24px;
padding: 0 .4rem;
line-height: 24px;
font-size: 11px;
font-weight: 300;
letter-spacing: .2px;
}
/* Raised Buttons Types */
.rkmd-btn.disabled, .rkmd-btn[disabled] {
cursor: default !important;
color: #9e9e9e !important;
box-shadow: none !important;
}
.rkmd-btn.disabled:not(.btn-flat), .rkmd-btn[disabled]:not(.btn-flat) {
background-color: #cdcdcd !important;
}
.rkmd-btn.disabled:not(.btn-flat):hover, .rkmd-btn[disabled]:not(.btn-flat):hover {
background-color: #cdcdcd !important;
}
.rkmd-btn.btn-flat {
box-shadow: none !important;
background-color: transparent !important;
}
.rkmd-btn.btn-flat:hover {
background-color: #cecece !important;
box-shadow: none !important;
}
.rkmd-btn.btn-flat.disabled:hover, .rkmd-btn.btn-flat[disabled]:hover {
background-color: transparent !important;
}
.rkmd-btn.btn-link {
color: #3949ab !important;
box-shadow: none !important;
background-color: transparent !important;
}
.rkmd-btn.btn-link:hover {
text-decoration: underline !important;
background-color: transparent !important;
box-shadow: none !important;
}
.rkmd-btn.btn-link.disabled, .rkmd-btn.btn-link[disabled] {
color: #9fa8da !important;
text-decoration: underline !important;
background-color: transparent !important;
}
.rkmd-btn.btn-link.disabled:hover, .rkmd-btn.btn-link[disabled]:hover {
background-color: transparent !important;
}
.rkmd-btn i {
float: left;
width: auto;
height: auto;
margin-right: 10px;
font-size: 1.3rem;
line-height: inherit;
}
.rkmd-btn i.right {
float: right !important;
margin: 0;
margin-left: 10px;
}
/* ----------------------------------------------------------------------
Material Design Ripple Effect - by <NAME>
------------------------------------------------------------------------- */
.ripple-effect {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 1;
}
.ripple-effect .ripple {
display: block;
position: absolute;
border-radius: 100%;
background: rgba(255, 255, 255, 0.5);
-webkit-transform: scale(0);
transform: scale(0);
pointer-events: none;
}
.ripple-effect.ripple-dark .ripple {
background: rgba(0, 0, 0, 0.1) !important;
}
.ripple-effect.ripple-red .ripple {
background: rgba(244, 67, 54, 0.725) !important;
}
.ripple-effect.ripple-orange .ripple {
background: rgba(255, 152, 0, 0.725) !important;
}
.ripple-effect.ripple-yellow .ripple {
background: rgba(255, 235, 59, 0.725) !important;
}
.ripple-effect.ripple-green .ripple {
background: rgba(76, 175, 80, 0.725) !important;
}
.ripple-effect.ripple-purple .ripple {
background: rgba(156, 39, 176, 0.725) !important;
}
.ripple-effect.ripple-teal .ripple {
background: rgba(0, 150, 136, 0.725) !important;
}
.ripple-effect.ripple-pink .ripple {
background: rgba(233, 30, 99, 0.725) !important;
}
.ripple-effect .animated {
-webkit-animation: ripple 0.6s linear;
animation: ripple 0.6s linear;
}
@-webkit-keyframes ripple {
100% {
opacity: 0;
-webkit-transform: scale(2.5);
transform: scale(2.5);
}
}
@keyframes ripple {
100% {
opacity: 0;
-webkit-transform: scale(2.5);
transform: scale(2.5);
}
} | 0.268749 | 0.047184 |
@font-face {
font-family: 'droid_sansregular';
src: url('/assets/webfonts/DroidSans-webfont.eot');
src: url('/assets/webfonts/DroidSans-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSans-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSans-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSans-webfont.svg#droid_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_sansbold';
src: url('/assets/webfonts/DroidSans-Bold-webfont.eot');
src: url('/assets/webfonts/DroidSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSans-Bold-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSans-Bold-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSans-Bold-webfont.svg#droid_sansbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifregular';
src: url('/assets/webfonts/DroidSerif-webfont.eot');
src: url('/assets/webfonts/DroidSerif-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-webfont.svg#droid_serifregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifbold';
src: url('/assets/webfonts/DroidSerif-Bold-webfont.eot');
src: url('/assets/webfonts/DroidSerif-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-Bold-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-Bold-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-Bold-webfont.svg#droid_serifbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifitalic';
src: url('/assets/webfonts/DroidSerif-Italic-webfont.eot');
src: url('/assets/webfonts/DroidSerif-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-Italic-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-Italic-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-Italic-webfont.svg#droid_serifitalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifbold_italic';
src: url('/assets/webfonts/DroidSerif-BoldItalic-webfont.eot');
src: url('/assets/webfonts/DroidSerif-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.svg#droid_serifbold_italic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_sans_monoregular';
src: url('/assets/webfonts/DroidSansMono-webfont.eot');
src: url('/assets/webfonts/DroidSansMono-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSansMono-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSansMono-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSansMono-webfont.svg#droid_sans_monoregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
margin-top: 10px;
margin-bottom: 10px;
font-family: 'Droid Sans', 'droid_sansregular', Arial, Helvetica, sans-serif;
font-size: 16px;
color: #fff;
text-shadow: none;
}
h2.device {
margin-top: 0;
text-align: center;
font-weight: normal;
font-size: 32px;
}
h3 {
font-size: 12px;
}
p {
font-family: 'Droid Sans', 'droid_sansregular', Arial, Helvetica, sans-serif;
font-size: 12px;
color: #fff;
text-shadow: none;
}
/* Responsive Images */
img {
width: 100%;
}
/* jQM Overrides */
#holiday {
background: #000;
}
#holiday header {
background: #000;
background: rgba(0, 0, 0, .8);
border-color: #000;
border-color: rgba(0, 0, 0, .8);
}
#holiday #apps {
background: #000 url(../assets/background-glow.png) no-repeat 50% 0%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#holiday footer {
background: transparent url(../assets/background-base.png) no-repeat 50% 0%;
border-color: transparent;
}
#holiday footer .strand {
margin: 0 auto;
padding-top: .7em;
max-width: 200px;
}
/* Max Out */
@media only screen and (min-width: 768px){
.ui-page {
width: 768px !important;
margin: 0 auto !important;
position: relative !important;
}
}
/* RWD Grid */
.ui-grid-rwd {
overflow: hidden;
}
.ui-block-rwd {
margin: 0;
padding: 0;
border: 0;
float: left;
min-height: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 33.333%;
}
@media all and (min-width: 30em) {
.ui-block-rwd {
width: 25%;
}
}
@media all and (min-width: 48em) {
.ui-block-rwd {
width: 20%;
}
} | iotas/www/css/holiday.css |
@font-face {
font-family: 'droid_sansregular';
src: url('/assets/webfonts/DroidSans-webfont.eot');
src: url('/assets/webfonts/DroidSans-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSans-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSans-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSans-webfont.svg#droid_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_sansbold';
src: url('/assets/webfonts/DroidSans-Bold-webfont.eot');
src: url('/assets/webfonts/DroidSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSans-Bold-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSans-Bold-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSans-Bold-webfont.svg#droid_sansbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifregular';
src: url('/assets/webfonts/DroidSerif-webfont.eot');
src: url('/assets/webfonts/DroidSerif-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-webfont.svg#droid_serifregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifbold';
src: url('/assets/webfonts/DroidSerif-Bold-webfont.eot');
src: url('/assets/webfonts/DroidSerif-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-Bold-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-Bold-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-Bold-webfont.svg#droid_serifbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifitalic';
src: url('/assets/webfonts/DroidSerif-Italic-webfont.eot');
src: url('/assets/webfonts/DroidSerif-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-Italic-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-Italic-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-Italic-webfont.svg#droid_serifitalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_serifbold_italic';
src: url('/assets/webfonts/DroidSerif-BoldItalic-webfont.eot');
src: url('/assets/webfonts/DroidSerif-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSerif-BoldItalic-webfont.svg#droid_serifbold_italic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'droid_sans_monoregular';
src: url('/assets/webfonts/DroidSansMono-webfont.eot');
src: url('/assets/webfonts/DroidSansMono-webfont.eot?#iefix') format('embedded-opentype'),
url('/assets/webfonts/DroidSansMono-webfont.woff') format('woff'),
url('/assets/webfonts/DroidSansMono-webfont.ttf') format('truetype'),
url('/assets/webfonts/DroidSansMono-webfont.svg#droid_sans_monoregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
margin-top: 10px;
margin-bottom: 10px;
font-family: 'Droid Sans', 'droid_sansregular', Arial, Helvetica, sans-serif;
font-size: 16px;
color: #fff;
text-shadow: none;
}
h2.device {
margin-top: 0;
text-align: center;
font-weight: normal;
font-size: 32px;
}
h3 {
font-size: 12px;
}
p {
font-family: 'Droid Sans', 'droid_sansregular', Arial, Helvetica, sans-serif;
font-size: 12px;
color: #fff;
text-shadow: none;
}
/* Responsive Images */
img {
width: 100%;
}
/* jQM Overrides */
#holiday {
background: #000;
}
#holiday header {
background: #000;
background: rgba(0, 0, 0, .8);
border-color: #000;
border-color: rgba(0, 0, 0, .8);
}
#holiday #apps {
background: #000 url(../assets/background-glow.png) no-repeat 50% 0%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#holiday footer {
background: transparent url(../assets/background-base.png) no-repeat 50% 0%;
border-color: transparent;
}
#holiday footer .strand {
margin: 0 auto;
padding-top: .7em;
max-width: 200px;
}
/* Max Out */
@media only screen and (min-width: 768px){
.ui-page {
width: 768px !important;
margin: 0 auto !important;
position: relative !important;
}
}
/* RWD Grid */
.ui-grid-rwd {
overflow: hidden;
}
.ui-block-rwd {
margin: 0;
padding: 0;
border: 0;
float: left;
min-height: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 33.333%;
}
@media all and (min-width: 30em) {
.ui-block-rwd {
width: 25%;
}
}
@media all and (min-width: 48em) {
.ui-block-rwd {
width: 20%;
}
} | 0.201302 | 0.054828 |
html {
--themeBlack: #404040;
--thumbColor: #878c83;
font-family: "montserrat", sans-serif;
font-size: 110%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: var(--themeBlack);
}
#listSpace {
display: flex;
flex-direction: row;
margin: auto;
width: 33em;
border: 2px white solid;
/* padding: 6px;
padding is set for #listConatainer and #inputBox individually
otherwise outline won't work correctly on list items
*/
}
#listContainer {
display: flex;
flex-direction: column;
justify-content: flex-end;
min-width: 20em;
height: calc(20em + 57px);
}
#list {
/* ul for list */
user-select: none;
overflow-y: auto;
overflow-x: clip;
padding: 6px 0 6px 6px;
margin: 0;
width: calc(17em + 20px); /* 23px for scroll bar */
}
#list li {
font-family: "Open Sans", sans-serif;
text-align: center;
white-space: pre-wrap;
word-wrap: break-word;
line-height: 1em;
list-style: none;
cursor: default;
overflow: clip;
padding: 0.5em 0.2em;
margin: 5px 0;
background-color: #a3d392;
min-height: 2em;
width: 17em;
max-width: 17em;
}
#list li:focus-visible {
outline: auto;
}
#list li:focus-visible,
#list li:hover {
background-color: #d39a92;
}
#list li:first-child {
margin-top: 0;
}
#list li:last-child {
margin-bottom: 0;
}
#inputBox {
width: 15em;
height: calc(20em + 40px);
padding: 6px 6px 6px 0;
margin: 0;
align-self: flex-end;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
#commands {
flex-grow: 2;
max-width: 12em; /* Make into a var */
color: white;
}
#listError {
max-width: 12em;
color: darksalmon;
white-space: pre-wrap;
word-wrap: break-word;
}
#listInput {
height: 1.5em;
font-size: 1em;
width: 12em;
}
#addItemBtn:hover,
#addItemBtn:focus-visible {
box-shadow: inset 1px 1px 6px #263f31;
}
.btn {
margin-top: 0.5em;
width: 6em;
height: 2.5em;
border: none;
}
.goodBtn {
background-color: #77c699;
}
.goodBtn:hover,
.goodBtn:focus-visible {
box-shadow: inset 1px 1px 6px #263f31;
}
.badBtn {
background-color: #c67877;
}
.badBtn:hover,
.badBtn:focus-visible {
box-shadow: inset 1px 1px 6px #3f2626;
}
/* scrollbar */
#list::-webkit-scrollbar {
width: 12px;
}
#list {
scrollbar-width: thin;
scrollbar-color: var(--thumbColor) #616161;
}
#list::-webkit-scrollbar-thumb {
background-color: var(--thumbColor);
border: 3px solid var(--themeBlack);
} | styles/index.css | html {
--themeBlack: #404040;
--thumbColor: #878c83;
font-family: "montserrat", sans-serif;
font-size: 110%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: var(--themeBlack);
}
#listSpace {
display: flex;
flex-direction: row;
margin: auto;
width: 33em;
border: 2px white solid;
/* padding: 6px;
padding is set for #listConatainer and #inputBox individually
otherwise outline won't work correctly on list items
*/
}
#listContainer {
display: flex;
flex-direction: column;
justify-content: flex-end;
min-width: 20em;
height: calc(20em + 57px);
}
#list {
/* ul for list */
user-select: none;
overflow-y: auto;
overflow-x: clip;
padding: 6px 0 6px 6px;
margin: 0;
width: calc(17em + 20px); /* 23px for scroll bar */
}
#list li {
font-family: "Open Sans", sans-serif;
text-align: center;
white-space: pre-wrap;
word-wrap: break-word;
line-height: 1em;
list-style: none;
cursor: default;
overflow: clip;
padding: 0.5em 0.2em;
margin: 5px 0;
background-color: #a3d392;
min-height: 2em;
width: 17em;
max-width: 17em;
}
#list li:focus-visible {
outline: auto;
}
#list li:focus-visible,
#list li:hover {
background-color: #d39a92;
}
#list li:first-child {
margin-top: 0;
}
#list li:last-child {
margin-bottom: 0;
}
#inputBox {
width: 15em;
height: calc(20em + 40px);
padding: 6px 6px 6px 0;
margin: 0;
align-self: flex-end;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
#commands {
flex-grow: 2;
max-width: 12em; /* Make into a var */
color: white;
}
#listError {
max-width: 12em;
color: darksalmon;
white-space: pre-wrap;
word-wrap: break-word;
}
#listInput {
height: 1.5em;
font-size: 1em;
width: 12em;
}
#addItemBtn:hover,
#addItemBtn:focus-visible {
box-shadow: inset 1px 1px 6px #263f31;
}
.btn {
margin-top: 0.5em;
width: 6em;
height: 2.5em;
border: none;
}
.goodBtn {
background-color: #77c699;
}
.goodBtn:hover,
.goodBtn:focus-visible {
box-shadow: inset 1px 1px 6px #263f31;
}
.badBtn {
background-color: #c67877;
}
.badBtn:hover,
.badBtn:focus-visible {
box-shadow: inset 1px 1px 6px #3f2626;
}
/* scrollbar */
#list::-webkit-scrollbar {
width: 12px;
}
#list {
scrollbar-width: thin;
scrollbar-color: var(--thumbColor) #616161;
}
#list::-webkit-scrollbar-thumb {
background-color: var(--thumbColor);
border: 3px solid var(--themeBlack);
} | 0.300848 | 0.060585 |
body {
margin: 0;
}
.wrap {
display: flex;
align-items: center;
justify-content: center;
height: 20vh;
padding-top: 40px;
padding-bottom: 50px;
}
.time-to {
text-align: center;
font-family: Bangers;
color: white;
font-size: 5vw;
letter-spacing: 2px;
}
.time-to span {
display: block;
font-size: 7vw;
color: red;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:900i');
* {
box-sizing: border-box;
}
/* body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
} */
.wrapper {
display: flex;
justify-content: center;
position: relative;
}
.cta {
display: flex;
padding: 10px 45px;
text-decoration: none;
font-family: share tech mono;
font-size: 7vw;
color: white;
background: #6225E6;
transition: 1s;
box-shadow: 6px 6px 0 black;
transform: skewX(-15deg);
position: relative;
}
.cta:focus {
outline: none;
}
.cta:hover {
transition: 0.5s;
box-shadow: 10px 10px 0 #FBC638;
text-decoration: none;
color: orange;
}
.cta span:nth-child(2) {
transition: 0.5s;
margin-right: 0px;
}
.cta:hover span:nth-child(2) {
transition: 0.5s;
margin-right: 45px;
}
span {
transform: skewX(15deg)
}
span:nth-child(2) {
width: 20px;
margin-left: 30px;
position: relative;
top: 12%;
}
/**************SVG****************/
path.one {
transition: 0.4s;
transform: translateX(-60%);
}
path.two {
transition: 0.5s;
transform: translateX(-30%);
}
.cta:hover path.three {
animation: color_anim 1s infinite 0.2s;
}
.cta:hover path.one {
transform: translateX(0%);
animation: color_anim 1s infinite 0.6s;
}
.cta:hover path.two {
transform: translateX(0%);
animation: color_anim 1s infinite 0.4s;
}
/* SVG animations */
@keyframes color_anim {
0% {
fill: white;
}
50% {
fill: #FBC638;
}
100% {
fill: white;
}
}
.timing{
padding-top: 2em;
font-size: 2vw;
position: relative;
}
.location{
padding-top: 0.5em;
font-size: 1.8em;
text-align: center;
padding-left: 4em;
}
.kit {
transition: background-color 0.3s ease-in;
font-family: "Open Sans", sans-serif;
background-color: #ff002b;
overflow: hidden;
font-size: 12px;
}
@media (min-width: 480px) {
.kit {
font-size: 14px;
}
}
@media (min-width: 640px) {
.kit {
font-size: 16px;
}
}
.word {
font-family: "Bangers", cursive;
}
.word {
font-family: "Bangers", cursive;
letter-spacing: 0.05em;
color: white;
padding: 0.5em;
font-size: 28px;
}
@media (min-width: 480px) {
.word {
font-size: 36px;
}
}
@media (min-width: 640px) {
.word {
font-size: 48px;
}
}
@media (min-width: 960px) {
.word {
font-size: 64px;
}
}
@media (min-width: 1280px) {
.word {
font-size: 84px;
}
}
@-webkit-keyframes pop-out {
0% {
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
opacity: 1;
}
25% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
100% {
-webkit-transform: scale3d(1.5, 1.5, 1);
transform: scale3d(1.5, 1.5, 1);
opacity: 0;
}
}
@keyframes pop-out {
0% {
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
opacity: 1;
}
25% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
100% {
-webkit-transform: scale3d(1.5, 1.5, 1);
transform: scale3d(1.5, 1.5, 1);
opacity: 0;
}
} | css/style1.css | body {
margin: 0;
}
.wrap {
display: flex;
align-items: center;
justify-content: center;
height: 20vh;
padding-top: 40px;
padding-bottom: 50px;
}
.time-to {
text-align: center;
font-family: Bangers;
color: white;
font-size: 5vw;
letter-spacing: 2px;
}
.time-to span {
display: block;
font-size: 7vw;
color: red;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:900i');
* {
box-sizing: border-box;
}
/* body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
} */
.wrapper {
display: flex;
justify-content: center;
position: relative;
}
.cta {
display: flex;
padding: 10px 45px;
text-decoration: none;
font-family: share tech mono;
font-size: 7vw;
color: white;
background: #6225E6;
transition: 1s;
box-shadow: 6px 6px 0 black;
transform: skewX(-15deg);
position: relative;
}
.cta:focus {
outline: none;
}
.cta:hover {
transition: 0.5s;
box-shadow: 10px 10px 0 #FBC638;
text-decoration: none;
color: orange;
}
.cta span:nth-child(2) {
transition: 0.5s;
margin-right: 0px;
}
.cta:hover span:nth-child(2) {
transition: 0.5s;
margin-right: 45px;
}
span {
transform: skewX(15deg)
}
span:nth-child(2) {
width: 20px;
margin-left: 30px;
position: relative;
top: 12%;
}
/**************SVG****************/
path.one {
transition: 0.4s;
transform: translateX(-60%);
}
path.two {
transition: 0.5s;
transform: translateX(-30%);
}
.cta:hover path.three {
animation: color_anim 1s infinite 0.2s;
}
.cta:hover path.one {
transform: translateX(0%);
animation: color_anim 1s infinite 0.6s;
}
.cta:hover path.two {
transform: translateX(0%);
animation: color_anim 1s infinite 0.4s;
}
/* SVG animations */
@keyframes color_anim {
0% {
fill: white;
}
50% {
fill: #FBC638;
}
100% {
fill: white;
}
}
.timing{
padding-top: 2em;
font-size: 2vw;
position: relative;
}
.location{
padding-top: 0.5em;
font-size: 1.8em;
text-align: center;
padding-left: 4em;
}
.kit {
transition: background-color 0.3s ease-in;
font-family: "Open Sans", sans-serif;
background-color: #ff002b;
overflow: hidden;
font-size: 12px;
}
@media (min-width: 480px) {
.kit {
font-size: 14px;
}
}
@media (min-width: 640px) {
.kit {
font-size: 16px;
}
}
.word {
font-family: "Bangers", cursive;
}
.word {
font-family: "Bangers", cursive;
letter-spacing: 0.05em;
color: white;
padding: 0.5em;
font-size: 28px;
}
@media (min-width: 480px) {
.word {
font-size: 36px;
}
}
@media (min-width: 640px) {
.word {
font-size: 48px;
}
}
@media (min-width: 960px) {
.word {
font-size: 64px;
}
}
@media (min-width: 1280px) {
.word {
font-size: 84px;
}
}
@-webkit-keyframes pop-out {
0% {
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
opacity: 1;
}
25% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
100% {
-webkit-transform: scale3d(1.5, 1.5, 1);
transform: scale3d(1.5, 1.5, 1);
opacity: 0;
}
}
@keyframes pop-out {
0% {
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
opacity: 1;
}
25% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
100% {
-webkit-transform: scale3d(1.5, 1.5, 1);
transform: scale3d(1.5, 1.5, 1);
opacity: 0;
}
} | 0.446012 | 0.13319 |
body {
font: normal 12px/1.65 "Verdana", "Helvetica", "Arial", sans-serif;
}
.hero-unit{padding:0px;margin-bottom:5px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
.page-header{padding-bottom:0px;margin:20px 0 5px;border-bottom:1px solid #aaa}
.headers-sidenav {
position: fixed;
width: 228px;
margin: 10px 0 0;
padding: 0;
background-color: #fff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065);
-moz-box-shadow: 0 1px 4px rgba(0,0,0,.065);
box-shadow: 0 1px 4px rgba(0,0,0,.065);
}
.headers-sidenav > li > a {
display: block;
width: 190px \9;
margin: 0 0 -1px;
padding: 8px 14px;
border: 1px solid #a0a0a0;
}
.headers-sidenav > li.first-child > a {
-webkit-border-radius: 6px 6px 0 0;
-moz-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
}
.headers-sidenav > li.last-child > a {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.headers-sidenav > .active > a {
position: relative;
z-index: 2;
padding: 9px 15px;
border: 0;
}
/* Chevrons */
.headers-sidenav .icon-chevron-right {
float: right;
margin-top: 2px;
margin-right: -6px;
opacity: .25;
}
.headers-sidenav .icon-bookmark {
float: right;
margin-top: 2px;
margin-right: -6px;
opacity: .75;
}
.headers-sidenav > li > a:hover {
background-color: #f5f5f5;
-webkit-transition: background-color .1s linear .1s;
transition: background-color .1s linear .1s;
}
.headers-sidenav a:hover .icon-chevron-right {
opacity: .5;
-webkit-transition: opacity .1s linear;
transition: opacity .1s linear;
}
.headers-sidenav .active .icon-chevron-right,
.headers-sidenav .active a:hover .icon-chevron-right {
background-image: url(img/glyphicons-halflings-white.png);
opacity: 1;
}
h1.padtop {
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 0px;
}
.hide-navigation-container {
text-align: right;
} | bootstrap/css/gradschool-guide.css | body {
font: normal 12px/1.65 "Verdana", "Helvetica", "Arial", sans-serif;
}
.hero-unit{padding:0px;margin-bottom:5px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
.page-header{padding-bottom:0px;margin:20px 0 5px;border-bottom:1px solid #aaa}
.headers-sidenav {
position: fixed;
width: 228px;
margin: 10px 0 0;
padding: 0;
background-color: #fff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065);
-moz-box-shadow: 0 1px 4px rgba(0,0,0,.065);
box-shadow: 0 1px 4px rgba(0,0,0,.065);
}
.headers-sidenav > li > a {
display: block;
width: 190px \9;
margin: 0 0 -1px;
padding: 8px 14px;
border: 1px solid #a0a0a0;
}
.headers-sidenav > li.first-child > a {
-webkit-border-radius: 6px 6px 0 0;
-moz-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
}
.headers-sidenav > li.last-child > a {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.headers-sidenav > .active > a {
position: relative;
z-index: 2;
padding: 9px 15px;
border: 0;
}
/* Chevrons */
.headers-sidenav .icon-chevron-right {
float: right;
margin-top: 2px;
margin-right: -6px;
opacity: .25;
}
.headers-sidenav .icon-bookmark {
float: right;
margin-top: 2px;
margin-right: -6px;
opacity: .75;
}
.headers-sidenav > li > a:hover {
background-color: #f5f5f5;
-webkit-transition: background-color .1s linear .1s;
transition: background-color .1s linear .1s;
}
.headers-sidenav a:hover .icon-chevron-right {
opacity: .5;
-webkit-transition: opacity .1s linear;
transition: opacity .1s linear;
}
.headers-sidenav .active .icon-chevron-right,
.headers-sidenav .active a:hover .icon-chevron-right {
background-image: url(img/glyphicons-halflings-white.png);
opacity: 1;
}
h1.padtop {
padding-top: 0px;
padding-bottom: 0px;
margin-bottom: 0px;
}
.hide-navigation-container {
text-align: right;
} | 0.395951 | 0.106598 |
.loadTournaments {
width: 100%;
font-family: "Lora", serif;
display: flex;
flex-direction: column;
border-bottom: 1px solid black;
padding-bottom: 2rem;
}
.loadedTournamentsHeaderContainer {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 1rem;
}
.tournamentsListTitle {
padding-left: 5rem;
}
#fetchTournamentsButton {
margin-left: 2rem;
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
}
#fetchTournamentsButton:hover {
background-color: #000000;
}
.displayExistingTournaments {
padding-top: 1rem;
}
.loadingTournamentMessage {
margin-left: 6rem;
}
.filterTournaments {
display: flex;
flex-direction: column;
margin-left: 6rem;
}
.filterTournaments input {
font-family: "Lora", serif;
padding: 0.3rem;
padding-left: 0.6rem;
border-radius: 5px;
border: 1.5px solid #e1e1e1;
}
.tournamentFilterItem {
width: 15rem;
margin: 0.3rem;
font-size: 0.9rem;
}
.tournamentFilterItemBox {
height: 2.33rem;
}
/* Chrome, Safari, Edge, Opera */
.maxNum::-webkit-outer-spin-button,
.maxNum::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
.maxNum[type=number] {
-moz-appearance: textfield;
}
.tournamentsTableContainer {
width: 100%;
}
.downloadTournamentsJSONButtonContainer {
width: 100%;
display: flex;
}
.downloadTournamentsJSON {
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
box-sizing: border-box;
margin-top: 1rem;
margin-left: 6rem;
}
.downloadTournamentsJSON:hover {
background-color: #000000;
}
.tournamentScriptContainer {
width: 100%;
display: flex;
}
.runTournamentScript {
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
box-sizing: border-box;
margin-top: 1rem;
margin-left: 6rem;
}
.runTournamentScript:hover {
background-color: #000000;
}
.loadedTournamentsTable {
width: 70%;
margin-left: 6rem;
border: 1px solid black;
border-collapse: collapse;
}
.tournamentsTableHeaderRow {
display: flex;
}
.tournamentsTableHeader {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
border: 1px solid black;
}
.emptyTournamentsTableHeaderCell {
border: 1px solid black;
}
.tournamentTableRow {
display: flex;
font-size: 0.8rem;
}
.tournamentTableCell {
margin: 0;
border: 1px solid black;
padding: 0.5rem;
display: flex;
justify-content: center;
align-items: center;
}
.removeTournamentButton {
padding: 0;
color: #e49191;
background-color: transparent;
border: none;
}
.removeTournamentButton:hover {
color: rgb(167, 0, 0);
}
.deleteTournamentCell {
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 425px) {
.filterTournaments {
margin-left: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1rem;
}
.loadingTournamentMessage {
margin-left: 0;
display: flex;
justify-content: center;
}
.loadedTournamentsTable {
font-size: 0.6rem;
width: 100%;
margin-left: 0.3rem;
margin-right: 0.3rem;
}
.tournamentsTableContainer {
width: 100%;
display: flex;
justify-content: center;
}
.tournamentsTableContainer input {
font-size: 0.47rem;
}
.tournamentsTableHeader {
padding: 0.2rem;
}
.tournamentTableCell {
font-size: 0.47rem;
padding: 0;
}
.removeTournamentButton i {
font-size: 0.6rem;
}
}
@media only screen and (max-width: 768px) and (min-width: 426px) {
.loadTournaments {
}
.loadedTournamentsTable {
font-size: 1rem;
width: 95%;
margin-left: 0;
}
.tournamentsTableContainer {
width: 100%;
display: flex;
justify-content: center;
}
.tournamentsTableHeader {
padding: 0.4rem;
}
.tournamentTableCell {
padding: 0;
}
.filterTournaments {
width: 100%;
margin-top: 1rem;
display: flex;
justify-content: center;
margin-left: 6rem;
}
} | src/pages/Admin/components/LoadTournaments/style.css | .loadTournaments {
width: 100%;
font-family: "Lora", serif;
display: flex;
flex-direction: column;
border-bottom: 1px solid black;
padding-bottom: 2rem;
}
.loadedTournamentsHeaderContainer {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 1rem;
}
.tournamentsListTitle {
padding-left: 5rem;
}
#fetchTournamentsButton {
margin-left: 2rem;
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
}
#fetchTournamentsButton:hover {
background-color: #000000;
}
.displayExistingTournaments {
padding-top: 1rem;
}
.loadingTournamentMessage {
margin-left: 6rem;
}
.filterTournaments {
display: flex;
flex-direction: column;
margin-left: 6rem;
}
.filterTournaments input {
font-family: "Lora", serif;
padding: 0.3rem;
padding-left: 0.6rem;
border-radius: 5px;
border: 1.5px solid #e1e1e1;
}
.tournamentFilterItem {
width: 15rem;
margin: 0.3rem;
font-size: 0.9rem;
}
.tournamentFilterItemBox {
height: 2.33rem;
}
/* Chrome, Safari, Edge, Opera */
.maxNum::-webkit-outer-spin-button,
.maxNum::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
.maxNum[type=number] {
-moz-appearance: textfield;
}
.tournamentsTableContainer {
width: 100%;
}
.downloadTournamentsJSONButtonContainer {
width: 100%;
display: flex;
}
.downloadTournamentsJSON {
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
box-sizing: border-box;
margin-top: 1rem;
margin-left: 6rem;
}
.downloadTournamentsJSON:hover {
background-color: #000000;
}
.tournamentScriptContainer {
width: 100%;
display: flex;
}
.runTournamentScript {
background-color: #282a35;
color: white;
padding: 0.5rem;
border: none;
border-radius: 10px;
font-weight: bolder;
box-sizing: border-box;
margin-top: 1rem;
margin-left: 6rem;
}
.runTournamentScript:hover {
background-color: #000000;
}
.loadedTournamentsTable {
width: 70%;
margin-left: 6rem;
border: 1px solid black;
border-collapse: collapse;
}
.tournamentsTableHeaderRow {
display: flex;
}
.tournamentsTableHeader {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
border: 1px solid black;
}
.emptyTournamentsTableHeaderCell {
border: 1px solid black;
}
.tournamentTableRow {
display: flex;
font-size: 0.8rem;
}
.tournamentTableCell {
margin: 0;
border: 1px solid black;
padding: 0.5rem;
display: flex;
justify-content: center;
align-items: center;
}
.removeTournamentButton {
padding: 0;
color: #e49191;
background-color: transparent;
border: none;
}
.removeTournamentButton:hover {
color: rgb(167, 0, 0);
}
.deleteTournamentCell {
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 425px) {
.filterTournaments {
margin-left: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1rem;
}
.loadingTournamentMessage {
margin-left: 0;
display: flex;
justify-content: center;
}
.loadedTournamentsTable {
font-size: 0.6rem;
width: 100%;
margin-left: 0.3rem;
margin-right: 0.3rem;
}
.tournamentsTableContainer {
width: 100%;
display: flex;
justify-content: center;
}
.tournamentsTableContainer input {
font-size: 0.47rem;
}
.tournamentsTableHeader {
padding: 0.2rem;
}
.tournamentTableCell {
font-size: 0.47rem;
padding: 0;
}
.removeTournamentButton i {
font-size: 0.6rem;
}
}
@media only screen and (max-width: 768px) and (min-width: 426px) {
.loadTournaments {
}
.loadedTournamentsTable {
font-size: 1rem;
width: 95%;
margin-left: 0;
}
.tournamentsTableContainer {
width: 100%;
display: flex;
justify-content: center;
}
.tournamentsTableHeader {
padding: 0.4rem;
}
.tournamentTableCell {
padding: 0;
}
.filterTournaments {
width: 100%;
margin-top: 1rem;
display: flex;
justify-content: center;
margin-left: 6rem;
}
} | 0.50708 | 0.074669 |
:root {
--jp-flat-button-height: 24px;
--jp-flat-button-padding: 8px 12px;
}
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
button {
border-radius: var(--jp-border-radius);
}
button.jp-mod-styled.jp-mod-accept {
background: var(--md-blue-500);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-accept:hover {
background: var(--md-blue-600);
}
button.jp-mod-styled.jp-mod-accept:active {
background: var(--md-blue-700);
}
button.jp-mod-styled.jp-mod-reject {
background: var(--md-grey-500);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-reject:hover {
background: var(--md-grey-600);
}
button.jp-mod-styled.jp-mod-reject:active {
background: var(--md-grey-700);
}
button.jp-mod-styled.jp-mod-warn {
background: var(--jp-error-color1);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-warn:hover {
background: var(--md-red-600);
}
button.jp-mod-styled.jp-mod-warn:active {
background: var(--md-red-700);
}
.jp-Button-flat {
text-decoration: none;
padding: var(--jp-flat-button-padding);
color: var(--jp-warn-color1);
font-weight: 500;
background-color: transparent;
height: var(--jp-private-running-shutdown-button-height);
line-height: var(--jp-private-running-shutdown-button-height);
transition: background-color 0.1s ease;
border-radius: 2px;
}
.jp-Button-flat:hover {
background-color: rgba(153, 153, 153, 0.1);
}
.jp-Button-flat:focus {
border: none;
box-shadow: none;
background-color: rgba(153, 153, 153, 0.2);
}
.jp-slider {
display: flex;
align-items: center;
font-size: var(--jp-ui-font-size1);
}
.jp-slider-sdm {
border: none;
height: 20px;
}
.jp-slider:hover {
background-color: var(--jp-layout-color2);
}
.jp-slider-label {
margin-right: 5px;
}
.jp-slider-track {
display: flex;
align-items: center;
cursor: pointer;
background-color: var(--jp-border-color1);
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 34px;
height: 15px;
width: 35px;
}
.jp-slider-track::before {
content: '';
height: 10px;
width: 10px;
margin-left: 5px;
margin-right: 50%;
background-color: white;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 50%;
}
.jp-slider[aria-checked='true'] .jp-slider-track {
background-color: var(--jp-warn-color0);
}
.jp-slider[aria-checked='true'] .jp-slider-track::before {
margin-left: 50%;
margin-right: 5px;
} | packages/application/style/buttons.css | :root {
--jp-flat-button-height: 24px;
--jp-flat-button-padding: 8px 12px;
}
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
button {
border-radius: var(--jp-border-radius);
}
button.jp-mod-styled.jp-mod-accept {
background: var(--md-blue-500);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-accept:hover {
background: var(--md-blue-600);
}
button.jp-mod-styled.jp-mod-accept:active {
background: var(--md-blue-700);
}
button.jp-mod-styled.jp-mod-reject {
background: var(--md-grey-500);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-reject:hover {
background: var(--md-grey-600);
}
button.jp-mod-styled.jp-mod-reject:active {
background: var(--md-grey-700);
}
button.jp-mod-styled.jp-mod-warn {
background: var(--jp-error-color1);
border: 0;
color: white;
}
button.jp-mod-styled.jp-mod-warn:hover {
background: var(--md-red-600);
}
button.jp-mod-styled.jp-mod-warn:active {
background: var(--md-red-700);
}
.jp-Button-flat {
text-decoration: none;
padding: var(--jp-flat-button-padding);
color: var(--jp-warn-color1);
font-weight: 500;
background-color: transparent;
height: var(--jp-private-running-shutdown-button-height);
line-height: var(--jp-private-running-shutdown-button-height);
transition: background-color 0.1s ease;
border-radius: 2px;
}
.jp-Button-flat:hover {
background-color: rgba(153, 153, 153, 0.1);
}
.jp-Button-flat:focus {
border: none;
box-shadow: none;
background-color: rgba(153, 153, 153, 0.2);
}
.jp-slider {
display: flex;
align-items: center;
font-size: var(--jp-ui-font-size1);
}
.jp-slider-sdm {
border: none;
height: 20px;
}
.jp-slider:hover {
background-color: var(--jp-layout-color2);
}
.jp-slider-label {
margin-right: 5px;
}
.jp-slider-track {
display: flex;
align-items: center;
cursor: pointer;
background-color: var(--jp-border-color1);
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 34px;
height: 15px;
width: 35px;
}
.jp-slider-track::before {
content: '';
height: 10px;
width: 10px;
margin-left: 5px;
margin-right: 50%;
background-color: white;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 50%;
}
.jp-slider[aria-checked='true'] .jp-slider-track {
background-color: var(--jp-warn-color0);
}
.jp-slider[aria-checked='true'] .jp-slider-track::before {
margin-left: 50%;
margin-right: 5px;
} | 0.639624 | 0.107766 |
.text-chooser {
position: absolute;
top: 0;
left: 0;
z-index: 100;
background: #fff;
font-family: Avenir, Helvetica, Arial;
width: 320px;
font-size: 14px;
box-shadow: 0 0 10px rgba(0,0,0,0.5), 0 0 30px #EEE inset;
}
.text-chooser .text-chooser-header {
padding: 8px;
color: #fff;
position: relative;
background: #444;
overflow: hidden;
}
.text-chooser .text-chooser-filter-text {
-x-background: #888;
background: #5379A9;
border: solid 1px #666;
color: #fff;
padding: 4px;
font-size: 11px;
width: 304px;
}
/*
OLD BUTTON
.text-chooser-more {
background: #2a85e8;
color: #fff;
margin: 20px;
text-align: center;
cursor: pointer;
padding: 10px;
}
*/
.text-chooser .text-chooser-more-toggle {
margin: 0 0 0 10px;
font-size: 11px;
color: #fff;
text-align: center;
cursor: pointer;
padding: 4px 4px 4px 18px;
width: 70px;
display: none;
/* default */
background-color: #88c0d7;
background-image: url(../../css/images/more.svg);
background-repeat: no-repeat;
background-size: 20px 20px;
}
.text-chooser .text-chooser-more-toggle:hover {
background-color: #2a85e8;
}
.text-chooser .show-all {
background-image: url(../../css/images/less.svg);
background-position-y: 4px;
}
.show-more .text-chooser-filter-text {
width: 224px;
}
.show-more .text-chooser-more-toggle {
display: inline-block;
}
.text-chooser .text-chooser-main {
overflow: auto;
-webkit-overflow-scrolling: touch;
border: solid 1px #ccc;
}
.text-chooser .text-chooser-close {
top: 8px;
right: 8px;
background-color: none;
border: solid 1px transparent;
}
.text-chooser .text-chooser-close:hover {
background-color: none;
border: solid 1px #aaa;
}
.text-chooser table {
border-collapse: collapse;
width: 100%;
}
.text-chooser-row-header {
background: #ededed;
border-bottom: solid 1px #ccc;
color: #333;
font-size: bold;
height: 2em;
line-height: 2em;
padding: 0 5px;
}
.text-chooser-row-header td {
padding-left: 10px;
}
.text-chooser-row {
height: 2em;
line-height: 2em;
cursor: pointer;
}
.text-chooser-row.filtered {
background: #ecf4f8;
}
.text-chooser-row:hover {
background: #d9e8ef;
}
.text-chooser-row.selected {
background: #7da2c8;
color: #fff;
}
.text-chooser-row .text-chooser-abbr {
font-weight: bold;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
height: 2em;
white-space: nowrap;
vertical-align: top;
line-height: 1.2;
padding: 8px 10px 0 8px;
}
.text-chooser-row .text-chooser-image img {
height: 20px;
width: 40px;
display: block;
margin: 0 0 0 10px;
}
.text-chooser-row .text-chooser-name {
padding: 0;
height: 2em;
width: 80%;
}
.text-chooser-row .text-chooser-name span {
display: block;
line-height: 1.2;
margin: 8px 10px;
max-height: 2.2em;
overflow: hidden;
text-overflow: ellipsis;
}
.text-chooser-row .text-chooser-audio,
.text-chooser-row .text-chooser-lemma,
.text-chooser-row .text-chooser-abs,
.text-chooser-row .text-chooser-fcbh {
width: 18px;
text-align: top;
}
.text-chooser-row .text-chooser-audio span,
.text-chooser-row .text-chooser-lemma span,
.text-chooser-row .text-chooser-provider-abs span,
.text-chooser-row .text-chooser-provider-fcbh span {
background-size: 16px 16px;
background-position: center center;
background-repeat: no-repeat;
display: block;
width: 18px;
height: 18px;
}
.text-chooser-row .text-chooser-audio span {
background-image: url(../../css/images/audio-ear.svg);
}
.text-chooser-row .text-chooser-lemma span {
background-image: url(../../css/images/morphology-gray-dark.svg);
background-size: 16px 16px;
}
.text-chooser-row .text-chooser-provider-abs span {
background-image: url(../../css/images/provider-abs.svg);
background-size: 16px 16px;
}
.text-chooser-row .text-chooser-provider-fcbh span {
background-image: url(../../css/images/provider-fcbh.svg);
background-size: 14px 14px;
}
/* countries */
.text-chooser-row-header.country td,
.text-chooser-row-header.collapsible-language td {
position: relative;
background-image: url(../../css/images/arrow-down.svg);
background-position: right center;
background-repeat: no-repeat;
}
.text-chooser-row-header.country img {
position: absolute;
top: 6px;
left: 6px;
width: 25px;
height: 15px;
}
.text-chooser-row-header.country span.name {
padding-left: 25px;
}
/* collapse */
table.collapsible .text-chooser-row-header {
cursor: pointer;
}
table.collapsible .text-chooser-row-header:hover {
background-color: #dae4e7;
}
table.collapsible .text-chooser-row-header.collapsed td {
background-image: url(../../css/images/arrow-right.svg);
}
table.collapsible .text-chooser-row.collapsed {
display: none;
}
.text-chooser-row-divider {
-x-background: #5379A9;
background: #777777;
color: #fff;
}
.text-chooser-row-divider span.name{
padding: 3px 10px;
}
table.collapsible .text-chooser-row-divider.collapsed {
display: none;
}
/* language : country switcher */
.text-chooser-selector {
padding: 0 0 5px;
color: #fff;
overflow: hidden;
text-align: center;
}
.text-chooser-selector span {
width: 33%;
border: solid 1px #999;
display: inline-block;
cursor: pointer;
padding: 3px 0;
font-size: 0.8em;
text-align: left;
padding-left: 28px;
background-size: 12px 12px;
background-position: 8px center;
background-repeat: no-repeat;
}
.text-chooser-selector span.text-chooser-default {
border-right-width: 0;
border-radius: 4px 0 0 4px;
background-image: url(../../css/images/openbook-white.svg);
background-position-y: 4px;
}
.text-chooser-selector span.text-chooser-languages {
border-right-width: 0;
background-image: url(../../css/images/languages-gray-light.svg);
}
.text-chooser-selector span.text-chooser-countries {
border-radius: 0 4px 4px 0;
background-image: url(../../css/images/earth-white.svg);
}
.text-chooser-selector span.selected {
background-color: #fff;
color: #999;
}
.text-chooser-selector span.text-chooser-default.selected {
background-image: url(../../css/images/openbook-gray-dark.svg);
}
.text-chooser-selector span.text-chooser-languages.selected {
background-image: url(../../css/images/languages-gray-dark.svg);
}
.text-chooser-selector span.text-chooser-countries.selected {
background-image: url(../../css/images/earth-gray-dark.svg);
} | app/js/ui/textchooser.css | .text-chooser {
position: absolute;
top: 0;
left: 0;
z-index: 100;
background: #fff;
font-family: Avenir, Helvetica, Arial;
width: 320px;
font-size: 14px;
box-shadow: 0 0 10px rgba(0,0,0,0.5), 0 0 30px #EEE inset;
}
.text-chooser .text-chooser-header {
padding: 8px;
color: #fff;
position: relative;
background: #444;
overflow: hidden;
}
.text-chooser .text-chooser-filter-text {
-x-background: #888;
background: #5379A9;
border: solid 1px #666;
color: #fff;
padding: 4px;
font-size: 11px;
width: 304px;
}
/*
OLD BUTTON
.text-chooser-more {
background: #2a85e8;
color: #fff;
margin: 20px;
text-align: center;
cursor: pointer;
padding: 10px;
}
*/
.text-chooser .text-chooser-more-toggle {
margin: 0 0 0 10px;
font-size: 11px;
color: #fff;
text-align: center;
cursor: pointer;
padding: 4px 4px 4px 18px;
width: 70px;
display: none;
/* default */
background-color: #88c0d7;
background-image: url(../../css/images/more.svg);
background-repeat: no-repeat;
background-size: 20px 20px;
}
.text-chooser .text-chooser-more-toggle:hover {
background-color: #2a85e8;
}
.text-chooser .show-all {
background-image: url(../../css/images/less.svg);
background-position-y: 4px;
}
.show-more .text-chooser-filter-text {
width: 224px;
}
.show-more .text-chooser-more-toggle {
display: inline-block;
}
.text-chooser .text-chooser-main {
overflow: auto;
-webkit-overflow-scrolling: touch;
border: solid 1px #ccc;
}
.text-chooser .text-chooser-close {
top: 8px;
right: 8px;
background-color: none;
border: solid 1px transparent;
}
.text-chooser .text-chooser-close:hover {
background-color: none;
border: solid 1px #aaa;
}
.text-chooser table {
border-collapse: collapse;
width: 100%;
}
.text-chooser-row-header {
background: #ededed;
border-bottom: solid 1px #ccc;
color: #333;
font-size: bold;
height: 2em;
line-height: 2em;
padding: 0 5px;
}
.text-chooser-row-header td {
padding-left: 10px;
}
.text-chooser-row {
height: 2em;
line-height: 2em;
cursor: pointer;
}
.text-chooser-row.filtered {
background: #ecf4f8;
}
.text-chooser-row:hover {
background: #d9e8ef;
}
.text-chooser-row.selected {
background: #7da2c8;
color: #fff;
}
.text-chooser-row .text-chooser-abbr {
font-weight: bold;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
height: 2em;
white-space: nowrap;
vertical-align: top;
line-height: 1.2;
padding: 8px 10px 0 8px;
}
.text-chooser-row .text-chooser-image img {
height: 20px;
width: 40px;
display: block;
margin: 0 0 0 10px;
}
.text-chooser-row .text-chooser-name {
padding: 0;
height: 2em;
width: 80%;
}
.text-chooser-row .text-chooser-name span {
display: block;
line-height: 1.2;
margin: 8px 10px;
max-height: 2.2em;
overflow: hidden;
text-overflow: ellipsis;
}
.text-chooser-row .text-chooser-audio,
.text-chooser-row .text-chooser-lemma,
.text-chooser-row .text-chooser-abs,
.text-chooser-row .text-chooser-fcbh {
width: 18px;
text-align: top;
}
.text-chooser-row .text-chooser-audio span,
.text-chooser-row .text-chooser-lemma span,
.text-chooser-row .text-chooser-provider-abs span,
.text-chooser-row .text-chooser-provider-fcbh span {
background-size: 16px 16px;
background-position: center center;
background-repeat: no-repeat;
display: block;
width: 18px;
height: 18px;
}
.text-chooser-row .text-chooser-audio span {
background-image: url(../../css/images/audio-ear.svg);
}
.text-chooser-row .text-chooser-lemma span {
background-image: url(../../css/images/morphology-gray-dark.svg);
background-size: 16px 16px;
}
.text-chooser-row .text-chooser-provider-abs span {
background-image: url(../../css/images/provider-abs.svg);
background-size: 16px 16px;
}
.text-chooser-row .text-chooser-provider-fcbh span {
background-image: url(../../css/images/provider-fcbh.svg);
background-size: 14px 14px;
}
/* countries */
.text-chooser-row-header.country td,
.text-chooser-row-header.collapsible-language td {
position: relative;
background-image: url(../../css/images/arrow-down.svg);
background-position: right center;
background-repeat: no-repeat;
}
.text-chooser-row-header.country img {
position: absolute;
top: 6px;
left: 6px;
width: 25px;
height: 15px;
}
.text-chooser-row-header.country span.name {
padding-left: 25px;
}
/* collapse */
table.collapsible .text-chooser-row-header {
cursor: pointer;
}
table.collapsible .text-chooser-row-header:hover {
background-color: #dae4e7;
}
table.collapsible .text-chooser-row-header.collapsed td {
background-image: url(../../css/images/arrow-right.svg);
}
table.collapsible .text-chooser-row.collapsed {
display: none;
}
.text-chooser-row-divider {
-x-background: #5379A9;
background: #777777;
color: #fff;
}
.text-chooser-row-divider span.name{
padding: 3px 10px;
}
table.collapsible .text-chooser-row-divider.collapsed {
display: none;
}
/* language : country switcher */
.text-chooser-selector {
padding: 0 0 5px;
color: #fff;
overflow: hidden;
text-align: center;
}
.text-chooser-selector span {
width: 33%;
border: solid 1px #999;
display: inline-block;
cursor: pointer;
padding: 3px 0;
font-size: 0.8em;
text-align: left;
padding-left: 28px;
background-size: 12px 12px;
background-position: 8px center;
background-repeat: no-repeat;
}
.text-chooser-selector span.text-chooser-default {
border-right-width: 0;
border-radius: 4px 0 0 4px;
background-image: url(../../css/images/openbook-white.svg);
background-position-y: 4px;
}
.text-chooser-selector span.text-chooser-languages {
border-right-width: 0;
background-image: url(../../css/images/languages-gray-light.svg);
}
.text-chooser-selector span.text-chooser-countries {
border-radius: 0 4px 4px 0;
background-image: url(../../css/images/earth-white.svg);
}
.text-chooser-selector span.selected {
background-color: #fff;
color: #999;
}
.text-chooser-selector span.text-chooser-default.selected {
background-image: url(../../css/images/openbook-gray-dark.svg);
}
.text-chooser-selector span.text-chooser-languages.selected {
background-image: url(../../css/images/languages-gray-dark.svg);
}
.text-chooser-selector span.text-chooser-countries.selected {
background-image: url(../../css/images/earth-gray-dark.svg);
} | 0.350533 | 0.056548 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix('https://learn2.acseducation.edu.au/mod/assign/') {
.jsenabled .moodle-actionmenu[data-enhance] .menu {
display: block;
position:relative;
background-color:white;
top:-15px;
width:400px;
}
.menu-action-text{
display:block;
margin-right:20px;
text-align:left;
}
#fgroup_id_navar, #fgroup_id_buttonar{
position:fixed;
width:500px!important;
top:275px;
right:55px;
padding:1px;
margin:5px;
box-shadow: 14px 10px 24px -15px rgba(0,0,0,0.75);
border-radius: 5px;
text-align: center;
-webkit-box-shadow: 2px 2px 20px -2px rgba(0,0,0,0.55);
box-shadow: 2px 2px 20px -2px rgba(0,0,0,0.55);
}
#fgroup_id_buttonar input{
margin: 0px 1px;
display:block!important;;
float:left!important;;
width:auto!important;
}
#fgroup_id_navar input{
margin: 0px 1px;
display:block!important;
float:left!important;
}
#fgroup_id_navar {
width:118px!important;
}
#fgroup_id_buttonar{
top:245px;
right:58px;
width:310px!important;
}
/*The grade box, save, save and show next, cancel, previous, and next buttons */
input{
border:rgb(1,84,162) 2px solid!important;
height:28px!important;
line-height:24px!important;
padding: 0 6px 0 6px!important;
}
#fgroup_id_navar input:hover,
#fgroup_id_buttonar input:hover{
background:rgb(23,34,125)!important;;
color:white;
}
.felement.fgroup {
margin:0px!important;
padding:0px!important;
width:400px!important;
}
.usersummary{
margin-bottom:1em!important;
}
.submissionstatustable{
margin-bottom:0em!important;
}
.cell{
padding:2px!important;
}
#id_gradeheader>legend{
display:none;
}
.col-md-9>div>h3{
display:none;
}
#fitem_id_grade{
margin-bottom: .5em;
}
.fitem{
margin-bottom: 0em!important;
}
.fstaticlabel{
width:200px;
float:left;
margin-bottom: 0em;
margin: 0em;
padding: 0em;
line-height: auto;
}
.felement.fstatic{
margin: 0em;
padding: 0em;
line-height: auto;
}
/*the Grade Out of 4 box (to enter studen't sscore) */
#fitem_id_grade{
position: relative;
}
#fitem_id_grade input#id_grade{
width:100px;
position:relative;
width:120px;
left:0px;
top:4px;
}
#fitem_id_grade .felement.ftext{
}
/* The "Current grade in gradebook line */
#id_gradeheader .fcontainer.clearfix> div:nth-child(2){
margin-top:5px;
}
/* Bunch it up */
.usersummary{
height:auto;
position:relative;
}
.usersummarysection a{
height:auto;
}
/* The student's pic */
.usersummarysection>a:first-child{
display:block;
float:left;
position:relative;
top:16px;
}
.usersummarysection>a:first-child>img{
width:50px;
height:50px;
}
/* The student's name and email */
.usersummarysection>a:last-child{
display:block;
float:left;
position:relative;
top:4px;
left:14px;
}
/* The lines containing "<NAME>" etc */
.submissionstatustable{
position: relative;
left:64px;
top:-6px;
width:100%;;
heigth:auto;
padding-bottom:14px;
}
/* the headings for the "Submission Status" etc */
.submissionsummarytable tr>td:first-child{
width:170px!important
}
.submissionsummarytable tr>td:first-child::after{
content:":";
}
.submissionsummarytable{
padding-top:0px!important;
margin-top:0px!important;
position:relative;
}
.submissionstatustable>h3{
display:none;
}
.submissionstatustable .generaltable{
padding:0px;
margin:0px;
position:relative;
top:-20px;
}
.gradingform{
position:relative;
top:-44px;
}
/*e.g. Warning message that no connection with server and if submit now all will be lost */
.atto_warning{
position:fixed;
left:3px;
bottom:10px;
height:auto;
display:block;
width:20%;
z-index:5;
}
} | data/usercss/149004.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix('https://learn2.acseducation.edu.au/mod/assign/') {
.jsenabled .moodle-actionmenu[data-enhance] .menu {
display: block;
position:relative;
background-color:white;
top:-15px;
width:400px;
}
.menu-action-text{
display:block;
margin-right:20px;
text-align:left;
}
#fgroup_id_navar, #fgroup_id_buttonar{
position:fixed;
width:500px!important;
top:275px;
right:55px;
padding:1px;
margin:5px;
box-shadow: 14px 10px 24px -15px rgba(0,0,0,0.75);
border-radius: 5px;
text-align: center;
-webkit-box-shadow: 2px 2px 20px -2px rgba(0,0,0,0.55);
box-shadow: 2px 2px 20px -2px rgba(0,0,0,0.55);
}
#fgroup_id_buttonar input{
margin: 0px 1px;
display:block!important;;
float:left!important;;
width:auto!important;
}
#fgroup_id_navar input{
margin: 0px 1px;
display:block!important;
float:left!important;
}
#fgroup_id_navar {
width:118px!important;
}
#fgroup_id_buttonar{
top:245px;
right:58px;
width:310px!important;
}
/*The grade box, save, save and show next, cancel, previous, and next buttons */
input{
border:rgb(1,84,162) 2px solid!important;
height:28px!important;
line-height:24px!important;
padding: 0 6px 0 6px!important;
}
#fgroup_id_navar input:hover,
#fgroup_id_buttonar input:hover{
background:rgb(23,34,125)!important;;
color:white;
}
.felement.fgroup {
margin:0px!important;
padding:0px!important;
width:400px!important;
}
.usersummary{
margin-bottom:1em!important;
}
.submissionstatustable{
margin-bottom:0em!important;
}
.cell{
padding:2px!important;
}
#id_gradeheader>legend{
display:none;
}
.col-md-9>div>h3{
display:none;
}
#fitem_id_grade{
margin-bottom: .5em;
}
.fitem{
margin-bottom: 0em!important;
}
.fstaticlabel{
width:200px;
float:left;
margin-bottom: 0em;
margin: 0em;
padding: 0em;
line-height: auto;
}
.felement.fstatic{
margin: 0em;
padding: 0em;
line-height: auto;
}
/*the Grade Out of 4 box (to enter studen't sscore) */
#fitem_id_grade{
position: relative;
}
#fitem_id_grade input#id_grade{
width:100px;
position:relative;
width:120px;
left:0px;
top:4px;
}
#fitem_id_grade .felement.ftext{
}
/* The "Current grade in gradebook line */
#id_gradeheader .fcontainer.clearfix> div:nth-child(2){
margin-top:5px;
}
/* Bunch it up */
.usersummary{
height:auto;
position:relative;
}
.usersummarysection a{
height:auto;
}
/* The student's pic */
.usersummarysection>a:first-child{
display:block;
float:left;
position:relative;
top:16px;
}
.usersummarysection>a:first-child>img{
width:50px;
height:50px;
}
/* The student's name and email */
.usersummarysection>a:last-child{
display:block;
float:left;
position:relative;
top:4px;
left:14px;
}
/* The lines containing "<NAME>" etc */
.submissionstatustable{
position: relative;
left:64px;
top:-6px;
width:100%;;
heigth:auto;
padding-bottom:14px;
}
/* the headings for the "Submission Status" etc */
.submissionsummarytable tr>td:first-child{
width:170px!important
}
.submissionsummarytable tr>td:first-child::after{
content:":";
}
.submissionsummarytable{
padding-top:0px!important;
margin-top:0px!important;
position:relative;
}
.submissionstatustable>h3{
display:none;
}
.submissionstatustable .generaltable{
padding:0px;
margin:0px;
position:relative;
top:-20px;
}
.gradingform{
position:relative;
top:-44px;
}
/*e.g. Warning message that no connection with server and if submit now all will be lost */
.atto_warning{
position:fixed;
left:3px;
bottom:10px;
height:auto;
display:block;
width:20%;
z-index:5;
}
} | 0.21984 | 0.086362 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
header {
text-align: center;
padding: 40px 27%;
}
header h1 {
font-size: 4em;
margin: 0;
}
body {
font-family: 'Open Sans', sans-serif;
margin:0;
color: white;
--main-bg-image: url(/demo/default-bg.jpg);
--transparency-accent-color: 204, 204, 204;
--transparency-dark-color: 0, 0, 0;
background-image: -webkit-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -moz-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -o-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -ms-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-attachment: fixed;
}
.overlay {
background-color: rgba(89, 89, 89, 0.5);
background-attachment: fixed;
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 0 10%;
padding-top:100px;
}
.container-details.details {
max-height: 300px;
}
.seasons-details {
padding: 0 20%;
justify-content: center;
}
.container-details {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
padding: 5px;
}
.grid-item {
height: 412px;
width: 275px;
position: relative;
margin: 10px;
border-radius: 5px;
}
.grid-item.episode {
height: 200px;
width: 412px;
}
.grid-item.episode .episode-name {
position: absolute;
color: #595959;
background-color: #cccccc;
bottom: 0;
left: 0;
padding: 8px;
opacity: 0.8;
}
.grid-item.details {
flex-basis: 50%;
}
.grid-item.poster-details {
height: 270px;
width: 180px;
}
.grid-item:hover .play {
transition: .5s ease;
opacity: 0;
position: absolute;
top: calc(50% - 25px);
left: calc(50% - 25px);
text-align: center;
background-image: url(/demo/play.png);
width: 50px;
height: 50px;
background-size: cover;
}
.grid-item:hover .poster {
filter: brightness(1) invert(0.3);
}
.grid-item:hover .play {
opacity: 1;
}
.poster {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 5px;
box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.33);
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
/* Style the tab */
.tab {
overflow: hidden;
background-color: rgba(var(--transparency-accent-color), 0.1);
left: 0px;
position: fixed;
top: 0px;
width: 100%;
z-index: 1000;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
color: white;
font-weight: bold;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: rgba(var(--transparency-dark-color), 0.5);
}
/* Create an active/current tablink class */
.tab button.active {
background-color: rgba(var(--transparency-accent-color), 0.4);
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid rgba(var(--transparency-dark-color), 0.5);
border-top: none;
}
@media (max-width: 470px) {
.grid-item {
height: 270px;
width: 180px;
}
.grid-item .show {
height: 270px;
width: 180px;
}
.poster img {
width: 180px;
}
} | demo/index.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans);
header {
text-align: center;
padding: 40px 27%;
}
header h1 {
font-size: 4em;
margin: 0;
}
body {
font-family: 'Open Sans', sans-serif;
margin:0;
color: white;
--main-bg-image: url(/demo/default-bg.jpg);
--transparency-accent-color: 204, 204, 204;
--transparency-dark-color: 0, 0, 0;
background-image: -webkit-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -moz-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -o-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: -ms-linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-image: linear-gradient(rgba(0,0,0, 0) 0%,rgba(0,0,0, 1) 100%), var(--main-bg-image);
background-attachment: fixed;
}
.overlay {
background-color: rgba(89, 89, 89, 0.5);
background-attachment: fixed;
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 0 10%;
padding-top:100px;
}
.container-details.details {
max-height: 300px;
}
.seasons-details {
padding: 0 20%;
justify-content: center;
}
.container-details {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
padding: 5px;
}
.grid-item {
height: 412px;
width: 275px;
position: relative;
margin: 10px;
border-radius: 5px;
}
.grid-item.episode {
height: 200px;
width: 412px;
}
.grid-item.episode .episode-name {
position: absolute;
color: #595959;
background-color: #cccccc;
bottom: 0;
left: 0;
padding: 8px;
opacity: 0.8;
}
.grid-item.details {
flex-basis: 50%;
}
.grid-item.poster-details {
height: 270px;
width: 180px;
}
.grid-item:hover .play {
transition: .5s ease;
opacity: 0;
position: absolute;
top: calc(50% - 25px);
left: calc(50% - 25px);
text-align: center;
background-image: url(/demo/play.png);
width: 50px;
height: 50px;
background-size: cover;
}
.grid-item:hover .poster {
filter: brightness(1) invert(0.3);
}
.grid-item:hover .play {
opacity: 1;
}
.poster {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 5px;
box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.33);
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
/* Style the tab */
.tab {
overflow: hidden;
background-color: rgba(var(--transparency-accent-color), 0.1);
left: 0px;
position: fixed;
top: 0px;
width: 100%;
z-index: 1000;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
color: white;
font-weight: bold;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: rgba(var(--transparency-dark-color), 0.5);
}
/* Create an active/current tablink class */
.tab button.active {
background-color: rgba(var(--transparency-accent-color), 0.4);
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid rgba(var(--transparency-dark-color), 0.5);
border-top: none;
}
@media (max-width: 470px) {
.grid-item {
height: 270px;
width: 180px;
}
.grid-item .show {
height: 270px;
width: 180px;
}
.poster img {
width: 180px;
}
} | 0.489015 | 0.130313 |
---------------------------------------------- */
.space > * { margin-right:10px; }
.fill-blue { background-color:#456596; }
.fill-lightblue { background-color:#d7f0f6; }
.fill-dark { background-color:#202020; }
.fill-brown { background-color:#d7a64a; }
.fill-green { background-color:#8cc250; }
.fill-red { background-color:#cb133f; }
h1,h2,h3,h4,h5,h6 {
font-family: 'Kreon', serif;
}
h1, h2 {
font-size:30px;
line-height:40px;
letter-spacing:0;
}
h3 {
font-size:22px;
line-height:36px;
}
h4 {
font-size:18px;
line-height:24px;
}
/* Paragraphs should always have prose */
p {
line-height:25px;
display: block;
margin-bottom:20px;
word-wrap:break-word;
}
footer p { margin-bottom:5px; }
a,
.dark a,
a.dark { color:#cb133f; font-weight:700; }
.dark a:hover,
a.dark:hover,
a.active,
a:hover { color:#26abe3; }
.schedule table {
border-width:0;
margin-bottom:0;
}
.schedule table tr td {
padding:12px 10px;
border-width:0 0 1px 0;
border-color:#eee;
}
.schedule table td:first-child {
text-align:right;
font-size:12px;
}
.schedule table tr.workshop td:first-child {
text-align:center;
}
.schedule table tr:last-child td {
border-width:0;
}
.schedule table td h4 { margin-bottom:5px; }
.schedule table { table-layout:fixed; }
.schedule table td { overflow: hidden; }
.schedule .workshop {
float: right;
text-transform: uppercase;
}
.prose.schedule table tr.theme td {
border-width:0;
padding-bottom:0;
}
.prose.schedule table tr th {
padding:10px 8px;
border-width:0;
font-size:12px;
}
.liner {
z-index:10000;
}
.site-navigation a {
margin-right: 25px
}
.site-navigation a,
.site-navigation a:hover {
color:#fff;
}
.site-navigation a.strong:hover {
border-bottom:3px solid #fff;
}
.site-navigation a.active,
.site-navigation a.active:hover {
border-bottom:3px solid #fff;
}
header .logo {
background:transparent url(img/sprite@2x.png) no-repeat 0 0;
-webkit-background-size:780px 360px;
background-size:780px 360px;
display:block;
margin:0 auto 20px;
width:360px;
height:200px;
}
/* http://www.cartooncliparts.com/picture/farm-theme-drawing-1-farm-pixmac-clipart-86871348/000086871348, http://www.birkey.com/tag/line-art/ */
/* .splash { background:#fff url(/assets/img/hot-summit_backdrop.png) no-repeat center bottom; } */
.front .splash { background-image:none; }
.strong,
input[type='submit'],
.bx-caption span {
font-weight:700;
}
.button,
.strong,
.bx-caption span {
font-size:20px;
line-height:20px;
text-transform:uppercase;
}
.button { background-color:#8cc250; }
.dark .button,
.button:hover { background-color:#6f9b40; }
.highlight {
border:3px solid #fff;
padding:5px 10px;
}
.highlight:hover {
background-color:#68c7dd;
}
.fill-blue .dark a,
.fill-blue.dark a {
color:#fff;
font-weight:700;
}
.speaker-byline {
font-weight: bold;
margin-bottom: 20px;
}
/* Sponsors
---------------------------------------------- */
.sponsor {
display:inline-block;
vertical-align:middle;
text-indent:-999em;
background-repeat: no-repeat;
}
.sponsor.natgeo { background-image: url(img/logos/natgeo.jpg); width: 311px; height: 126px;}
.sponsor.hot { background-image: url(img/logos/HOT.png); width: 259px; height: 60px;}
.sponsor.mapgive { background-image: url(img/logos/mapgive.png); width: 218px; height: 56px;}
.sponsor.osmus { background-image: url(img/logos/osmus.png); width: 275px; height: 127px; }
.sponsor.missingmaps { background-image: url(img/logos/missingmaps.png); width: 218px; height: 86px; }
.sponsor.usaid { background-image: url(img/logos/usaid.png); width: 218px; height: 56px; }
.sponsor.kll { background-image: url(img/logos/kll.jpg); width: 147px; height: 100px; }
/* Diamond */
.sponsor.craigslist { background-position:-520px 0; }
/* Gold */
.sponsor.mapbox { background-position:-360px 0; }
.sponsor.google { background-position:-200px -300px; }
.sponsor.mapzen { background-position:-125px -300px; width:80px; }
.sponsor.telnav { background-position:-40px -300px; width:80px; }
.sponsor.maplarge { background-position:-40px -235px; }
/* Silver */
.sponsor.rackspace { background-position:-520px -180px; }
.sponsor.indaba { background-position:-360px -60px; }
.sponsor.amazon { background-position:-360px -120px; }
.sponsor.digital-globe { background-position:-360px -180px; }
.sponsor.maply { background-position:-360px -240px; }
.sponsor.boundless { background-position:-200px -240px; }
.sponsor.esri { background-position:-360px -300px; }
/* Bronze */
.sponsor.small { width:100px; height:40px; margin-right:10px }
.sponsor.stamen { background-position:-680px 0; }
.sponsor.deloitte { background-position:-680px -80px; }
.sponsor.red-cross { background-position:-680px -120px; }
.sponsor.aw { background-position:-680px -160px; width:60px; }
.sponsor.cartodb { background-position:-680px -240px; }
.sponsor.foursquare { background-position:-680px -280px; }
.sponsor.knight { background-position:-520px -120px; }
.sponsor.urban-mapping { background-position:-520px -240px; }
.sponsor.devseed { background-position:-520px -300px; }
.sponsor.github { background-position:-680px -320px; }
/* Venue marker navigation
---------------------------------------------- */
.info {
position:absolute;
width:260px;
top:10px;
right:10px;
}
.info .item {
display:block;
text-decoration:none;
color:#fff;
border-bottom-color:#000;
}
.info .item:hover,
.info .item.active { color:#fff; background:rgba(0,0,0,0.5); }
.info .item:last-child { border-bottom:none; }
.marker-dot {
width:10px;
height:10px;
margin-right:10px;
}
.leaflet-container .leaflet-control-attribution.leaflet-control {
background-color: rgba(255,255,255,0.5);
}
.leaflet-container .leaflet-control-attribution.leaflet-control a {
color: #333;
}
/**
* BxSlider v4.0 - Fully loaded, responsive content slider
* http://bxslider.com
*
* Written by: <NAME>, 2012
* http://stevenwanderski.com
* (while drinking Belgian ales and listening to jazz)
*
* CEO and founder of bxCreative, LTD
* http://bxcreative.com
*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
position:relative;
margin:0 auto;
padding:0;
*zoom:1;
}
.bx-wrapper img {
width:100%;
display:block;
}
/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
position:absolute;
bottom:-30px;
width:100%;
}
/* PAGER */
.bx-wrapper .bx-pager {
text-align:center;
font-size:.85em;
font-weight:bold;
color:#666;
padding-top:20px;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
display:inline-block;
*zoom:1;
*display:inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
background:#666;
text-indent:-999em;
display:block;
width:10px;
height:10px;
margin:0 5px;
outline:0;
border-radius:5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
background:#000;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
left:10px;
}
.bx-wrapper .bx-next {
right:10px;
}
.bx-wrapper .bx-prev:hover {
background-position:0 0;
}
.bx-wrapper .bx-next:hover {
background-position:-43px 0;
}
.bx-wrapper .bx-controls-direction a {
position:absolute;
top:50%;
margin-top:-16px;
outline:0;
width:32px;
height:32px;
text-indent:-999em;
z-index:9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
display:none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
display: block;
text-indent: -9999px;
width: 10px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -11px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
display: block;
text-indent: -9999px;
width: 9px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -44px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
text-align:left;
width:80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
right:0;
width:35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
background:rgba(0,0,0,0.5);
position:absolute;
bottom:0;
left:0;
display:inline-block;
padding:10px 20px;
z-index:10;
}
.bx-wrapper .bx-caption span {
color:#fff;
display:inline;
}
section:target { display:block!important; }
@media only screen and (max-width: 640px) {
fieldset.with-icon { margin:0 0 -1px; }
.round-right { border-radius:0 0 3px 3px; }
.space > * { margin:0; }
.site-navigation { padding:0; }
.site-navigation a {
padding:5px 0;
margin:0 0 1px;
}
.site-navigation a.strong,
.site-navigation a.strong.active,
.site-navigation a.strong:hover {
display:block;
border:none;
border-bottom:none;
}
.site-navigation a.strong.active,
.site-navigation a.strong:hover {
background-color:#68c7dd;
}
.schedule table tr td {
padding:10px 5px;
}
}
.project-tile {
width: 323px;
float: left;
margin: 5px;
}
.project-tile.ready, .highlight {
border-color: #fce200;
border-width: 2px;
border-style: solid;
}
h1.ready {
color: #fce200;
}
#photos {
-moz-column-count: 5;
-moz-column-gap: 10px;
-webkit-column-count: 5;
-webkit-column-gap: 10px;
column-count: 5;
column-gap: 10px;
width: 100%;
}
div a {
display: inline-block; /* Display inline-block, and absolutely NO FLOATS! */
margin-bottom: 20px;
width: 100%;
}
#logo {
width: 250px;
}
.participating {
height: 60px;
} | _assets/css/connect-camp-maps.css | ---------------------------------------------- */
.space > * { margin-right:10px; }
.fill-blue { background-color:#456596; }
.fill-lightblue { background-color:#d7f0f6; }
.fill-dark { background-color:#202020; }
.fill-brown { background-color:#d7a64a; }
.fill-green { background-color:#8cc250; }
.fill-red { background-color:#cb133f; }
h1,h2,h3,h4,h5,h6 {
font-family: 'Kreon', serif;
}
h1, h2 {
font-size:30px;
line-height:40px;
letter-spacing:0;
}
h3 {
font-size:22px;
line-height:36px;
}
h4 {
font-size:18px;
line-height:24px;
}
/* Paragraphs should always have prose */
p {
line-height:25px;
display: block;
margin-bottom:20px;
word-wrap:break-word;
}
footer p { margin-bottom:5px; }
a,
.dark a,
a.dark { color:#cb133f; font-weight:700; }
.dark a:hover,
a.dark:hover,
a.active,
a:hover { color:#26abe3; }
.schedule table {
border-width:0;
margin-bottom:0;
}
.schedule table tr td {
padding:12px 10px;
border-width:0 0 1px 0;
border-color:#eee;
}
.schedule table td:first-child {
text-align:right;
font-size:12px;
}
.schedule table tr.workshop td:first-child {
text-align:center;
}
.schedule table tr:last-child td {
border-width:0;
}
.schedule table td h4 { margin-bottom:5px; }
.schedule table { table-layout:fixed; }
.schedule table td { overflow: hidden; }
.schedule .workshop {
float: right;
text-transform: uppercase;
}
.prose.schedule table tr.theme td {
border-width:0;
padding-bottom:0;
}
.prose.schedule table tr th {
padding:10px 8px;
border-width:0;
font-size:12px;
}
.liner {
z-index:10000;
}
.site-navigation a {
margin-right: 25px
}
.site-navigation a,
.site-navigation a:hover {
color:#fff;
}
.site-navigation a.strong:hover {
border-bottom:3px solid #fff;
}
.site-navigation a.active,
.site-navigation a.active:hover {
border-bottom:3px solid #fff;
}
header .logo {
background:transparent url(img/sprite@2x.png) no-repeat 0 0;
-webkit-background-size:780px 360px;
background-size:780px 360px;
display:block;
margin:0 auto 20px;
width:360px;
height:200px;
}
/* http://www.cartooncliparts.com/picture/farm-theme-drawing-1-farm-pixmac-clipart-86871348/000086871348, http://www.birkey.com/tag/line-art/ */
/* .splash { background:#fff url(/assets/img/hot-summit_backdrop.png) no-repeat center bottom; } */
.front .splash { background-image:none; }
.strong,
input[type='submit'],
.bx-caption span {
font-weight:700;
}
.button,
.strong,
.bx-caption span {
font-size:20px;
line-height:20px;
text-transform:uppercase;
}
.button { background-color:#8cc250; }
.dark .button,
.button:hover { background-color:#6f9b40; }
.highlight {
border:3px solid #fff;
padding:5px 10px;
}
.highlight:hover {
background-color:#68c7dd;
}
.fill-blue .dark a,
.fill-blue.dark a {
color:#fff;
font-weight:700;
}
.speaker-byline {
font-weight: bold;
margin-bottom: 20px;
}
/* Sponsors
---------------------------------------------- */
.sponsor {
display:inline-block;
vertical-align:middle;
text-indent:-999em;
background-repeat: no-repeat;
}
.sponsor.natgeo { background-image: url(img/logos/natgeo.jpg); width: 311px; height: 126px;}
.sponsor.hot { background-image: url(img/logos/HOT.png); width: 259px; height: 60px;}
.sponsor.mapgive { background-image: url(img/logos/mapgive.png); width: 218px; height: 56px;}
.sponsor.osmus { background-image: url(img/logos/osmus.png); width: 275px; height: 127px; }
.sponsor.missingmaps { background-image: url(img/logos/missingmaps.png); width: 218px; height: 86px; }
.sponsor.usaid { background-image: url(img/logos/usaid.png); width: 218px; height: 56px; }
.sponsor.kll { background-image: url(img/logos/kll.jpg); width: 147px; height: 100px; }
/* Diamond */
.sponsor.craigslist { background-position:-520px 0; }
/* Gold */
.sponsor.mapbox { background-position:-360px 0; }
.sponsor.google { background-position:-200px -300px; }
.sponsor.mapzen { background-position:-125px -300px; width:80px; }
.sponsor.telnav { background-position:-40px -300px; width:80px; }
.sponsor.maplarge { background-position:-40px -235px; }
/* Silver */
.sponsor.rackspace { background-position:-520px -180px; }
.sponsor.indaba { background-position:-360px -60px; }
.sponsor.amazon { background-position:-360px -120px; }
.sponsor.digital-globe { background-position:-360px -180px; }
.sponsor.maply { background-position:-360px -240px; }
.sponsor.boundless { background-position:-200px -240px; }
.sponsor.esri { background-position:-360px -300px; }
/* Bronze */
.sponsor.small { width:100px; height:40px; margin-right:10px }
.sponsor.stamen { background-position:-680px 0; }
.sponsor.deloitte { background-position:-680px -80px; }
.sponsor.red-cross { background-position:-680px -120px; }
.sponsor.aw { background-position:-680px -160px; width:60px; }
.sponsor.cartodb { background-position:-680px -240px; }
.sponsor.foursquare { background-position:-680px -280px; }
.sponsor.knight { background-position:-520px -120px; }
.sponsor.urban-mapping { background-position:-520px -240px; }
.sponsor.devseed { background-position:-520px -300px; }
.sponsor.github { background-position:-680px -320px; }
/* Venue marker navigation
---------------------------------------------- */
.info {
position:absolute;
width:260px;
top:10px;
right:10px;
}
.info .item {
display:block;
text-decoration:none;
color:#fff;
border-bottom-color:#000;
}
.info .item:hover,
.info .item.active { color:#fff; background:rgba(0,0,0,0.5); }
.info .item:last-child { border-bottom:none; }
.marker-dot {
width:10px;
height:10px;
margin-right:10px;
}
.leaflet-container .leaflet-control-attribution.leaflet-control {
background-color: rgba(255,255,255,0.5);
}
.leaflet-container .leaflet-control-attribution.leaflet-control a {
color: #333;
}
/**
* BxSlider v4.0 - Fully loaded, responsive content slider
* http://bxslider.com
*
* Written by: <NAME>, 2012
* http://stevenwanderski.com
* (while drinking Belgian ales and listening to jazz)
*
* CEO and founder of bxCreative, LTD
* http://bxcreative.com
*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
position:relative;
margin:0 auto;
padding:0;
*zoom:1;
}
.bx-wrapper img {
width:100%;
display:block;
}
/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
position:absolute;
bottom:-30px;
width:100%;
}
/* PAGER */
.bx-wrapper .bx-pager {
text-align:center;
font-size:.85em;
font-weight:bold;
color:#666;
padding-top:20px;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
display:inline-block;
*zoom:1;
*display:inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
background:#666;
text-indent:-999em;
display:block;
width:10px;
height:10px;
margin:0 5px;
outline:0;
border-radius:5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
background:#000;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
left:10px;
}
.bx-wrapper .bx-next {
right:10px;
}
.bx-wrapper .bx-prev:hover {
background-position:0 0;
}
.bx-wrapper .bx-next:hover {
background-position:-43px 0;
}
.bx-wrapper .bx-controls-direction a {
position:absolute;
top:50%;
margin-top:-16px;
outline:0;
width:32px;
height:32px;
text-indent:-999em;
z-index:9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
display:none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
display: block;
text-indent: -9999px;
width: 10px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -11px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
display: block;
text-indent: -9999px;
width: 9px;
height: 11px;
outline: 0;
background: url(images/controls.png) -86px -44px no-repeat;
margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
text-align:left;
width:80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
right:0;
width:35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
background:rgba(0,0,0,0.5);
position:absolute;
bottom:0;
left:0;
display:inline-block;
padding:10px 20px;
z-index:10;
}
.bx-wrapper .bx-caption span {
color:#fff;
display:inline;
}
section:target { display:block!important; }
@media only screen and (max-width: 640px) {
fieldset.with-icon { margin:0 0 -1px; }
.round-right { border-radius:0 0 3px 3px; }
.space > * { margin:0; }
.site-navigation { padding:0; }
.site-navigation a {
padding:5px 0;
margin:0 0 1px;
}
.site-navigation a.strong,
.site-navigation a.strong.active,
.site-navigation a.strong:hover {
display:block;
border:none;
border-bottom:none;
}
.site-navigation a.strong.active,
.site-navigation a.strong:hover {
background-color:#68c7dd;
}
.schedule table tr td {
padding:10px 5px;
}
}
.project-tile {
width: 323px;
float: left;
margin: 5px;
}
.project-tile.ready, .highlight {
border-color: #fce200;
border-width: 2px;
border-style: solid;
}
h1.ready {
color: #fce200;
}
#photos {
-moz-column-count: 5;
-moz-column-gap: 10px;
-webkit-column-count: 5;
-webkit-column-gap: 10px;
column-count: 5;
column-gap: 10px;
width: 100%;
}
div a {
display: inline-block; /* Display inline-block, and absolutely NO FLOATS! */
margin-bottom: 20px;
width: 100%;
}
#logo {
width: 250px;
}
.participating {
height: 60px;
} | 0.353094 | 0.119923 |
body{
background:url(../images/bg11.jpg),no-repeat;
background-size: cover;
background-attachment: fixed;
}
body a{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
font-weight:400;
}
input[type="button"],input[type="submit"]{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
margin:0;
font-weight:400;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
.clear {
clear:both;
}
p{
margin:0;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
img {
width: 100%;
}
@font-face {
font-family:'Josefin Sans';
src: url('../fonts/JosefinSans-Regular.ttf') format('truetype');
}
@font-face {
font-family:'Raleway';
src: url('../fonts/Raleway-Regular.ttf') format('truetype');
}
/*--/Reset code--*/
.wthree-heading h1 {
font-size: 50px;
font-weight: 500;
text-align: center;
text-transform: capitalize;
letter-spacing: 2px;
color: #fff;
padding: 1em 0 1em;
font-family: 'Josefin Sans', sans-serif;
}
.wthree-container {
/*display: flex;*/
/*justify-content: center;*/
}
.agileits-2 h2 {
font-size: 30px;
font-weight: 500;
text-align: center;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 30px;
color: #fff;
font-family: 'Josefin Sans', sans-serif;
}
.wthree-form {
flex-basis: 350px;
padding: 5em;
background: rgba(15, 15, 15, 0.81);
box-shadow: 3px 3px #ccc;
}
.wthree-form input[type="email"] {
font-size: 16px;
font-weight: 500;
text-align: left;
letter-spacing: 1px;
float: left;
width: 85%;
margin: 0 auto 3em;
padding: 0.1em 10px;
line-height: 40px;
outline: none;
border: none;
box-sizing: border-box;
color: #000;
font-family: 'Raleway', sans-serif;
}
.wthree-form input[type="password"]{
font-size: 16px;
font-weight: 500;
text-align: left;
text-transform: capitalize;
letter-spacing: 1px;
float: left;
width: 85%;
margin: 0 auto 2em;
padding: 0.1em 10px;
line-height: 40px;
outline: none;
border: none;
box-sizing: border-box;
color: #000;
font-family: 'Raleway', sans-serif;
}
span .fa {
font-size: 16px;
float: left;
background: #58dbf1;
color: #fff;
text-align: center;
width: 15%;
line-height: 40px;
border: none;
box-sizing: border-box;
outline: none;
padding: 0.1em;
}
.w3l span a {
font-size: 15px;
font-weight: 500;
text-transform: capitalize;
text-decoration: none;
text-align: center;
letter-spacing: 1px;
display: block;
padding: 0 0 30px;
color: #fff;
font-family:'Josefin Sans', sans-serif;
}
.w3l-submit input[type="submit"] {
font-size: 23px;
font-weight: 500;
text-transform: uppercase;
text-align: center;
letter-spacing: 3px;
padding: 5px;
width: 60%;
margin: 0 auto;
display: block;
border: 2px solid transparent;
outline: none;
color: #fff;
cursor: pointer;
background-color: #157e90;
font-family: 'Raleway', sans-serif;
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
transition: 0.5s ease-in;
}
.w3l-submit input[type="submit"]:hover{
border: 2px solid #fff;
background: #033127;
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
transition: 0.5s ease-in;
}
.agileits-footer p {
font-size: 15px;
font-weight: 500;
text-align: center;
text-transform: capitalize;
letter-spacing: 2px;
padding: 5em 0 0;
color: #fff;
font-family: 'Josefin Sans', sans-serif;
}
.agileits-footer a {
font-size: 15px;
font-weight: 500;
text-decoration: none;
color: #fff;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
}
.agileits-footer a:hover{
color: #20f414;
}
/*--responsive--*/
@media(max-width:1920px){
}
@media(max-width:1680px){
}
@media(max-width:1600px){
}
@media(max-width:1440px){
}
@media(max-width:1366px){
}
@media(max-width:1280px){
}
@media(max-width:1080px){
}
@media(max-width:1050px){
}
@media(max-width:1024px){
}
@media(max-width:991px){
}
@media(max-width:900px){
}
@media(max-width:800px){
}
@media(max-width:768px){
}
@media(max-width:736px){
}
@media(max-width:667px){
}
@media(max-width:640px){
}
@media(max-width:600px){
.wthree-heading h1 {
font-size: 45px;
}
}
@media(max-width:568px){
.wthree-form {
padding: 4em;
}
}
@media(max-width:480px){
.wthree-heading h1 {
font-size: 35px;
}
.wthree-form {
flex-basis: 300px;
}
}
@media(max-width:414px){
.wthree-heading h1 {
font-size: 30px;
}
.wthree-form {
flex-basis: 250px;
}
}
@media(max-width:384px){
.wthree-heading h1 {
font-size: 28px;
}
.wthree-form {
flex-basis: 220px;
}
.wthree-form {
flex-basis: 230px;
}
}
@media(max-width:375px){
}
@media(max-width:320px){
}
/*--/responsive--*/ | public/css/style.css | body{
background:url(../images/bg11.jpg),no-repeat;
background-size: cover;
background-attachment: fixed;
}
body a{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
font-weight:400;
}
input[type="button"],input[type="submit"]{
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
margin:0;
font-weight:400;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
.clear {
clear:both;
}
p{
margin:0;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
img {
width: 100%;
}
@font-face {
font-family:'Josefin Sans';
src: url('../fonts/JosefinSans-Regular.ttf') format('truetype');
}
@font-face {
font-family:'Raleway';
src: url('../fonts/Raleway-Regular.ttf') format('truetype');
}
/*--/Reset code--*/
.wthree-heading h1 {
font-size: 50px;
font-weight: 500;
text-align: center;
text-transform: capitalize;
letter-spacing: 2px;
color: #fff;
padding: 1em 0 1em;
font-family: 'Josefin Sans', sans-serif;
}
.wthree-container {
/*display: flex;*/
/*justify-content: center;*/
}
.agileits-2 h2 {
font-size: 30px;
font-weight: 500;
text-align: center;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 30px;
color: #fff;
font-family: 'Josefin Sans', sans-serif;
}
.wthree-form {
flex-basis: 350px;
padding: 5em;
background: rgba(15, 15, 15, 0.81);
box-shadow: 3px 3px #ccc;
}
.wthree-form input[type="email"] {
font-size: 16px;
font-weight: 500;
text-align: left;
letter-spacing: 1px;
float: left;
width: 85%;
margin: 0 auto 3em;
padding: 0.1em 10px;
line-height: 40px;
outline: none;
border: none;
box-sizing: border-box;
color: #000;
font-family: 'Raleway', sans-serif;
}
.wthree-form input[type="password"]{
font-size: 16px;
font-weight: 500;
text-align: left;
text-transform: capitalize;
letter-spacing: 1px;
float: left;
width: 85%;
margin: 0 auto 2em;
padding: 0.1em 10px;
line-height: 40px;
outline: none;
border: none;
box-sizing: border-box;
color: #000;
font-family: 'Raleway', sans-serif;
}
span .fa {
font-size: 16px;
float: left;
background: #58dbf1;
color: #fff;
text-align: center;
width: 15%;
line-height: 40px;
border: none;
box-sizing: border-box;
outline: none;
padding: 0.1em;
}
.w3l span a {
font-size: 15px;
font-weight: 500;
text-transform: capitalize;
text-decoration: none;
text-align: center;
letter-spacing: 1px;
display: block;
padding: 0 0 30px;
color: #fff;
font-family:'Josefin Sans', sans-serif;
}
.w3l-submit input[type="submit"] {
font-size: 23px;
font-weight: 500;
text-transform: uppercase;
text-align: center;
letter-spacing: 3px;
padding: 5px;
width: 60%;
margin: 0 auto;
display: block;
border: 2px solid transparent;
outline: none;
color: #fff;
cursor: pointer;
background-color: #157e90;
font-family: 'Raleway', sans-serif;
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
transition: 0.5s ease-in;
}
.w3l-submit input[type="submit"]:hover{
border: 2px solid #fff;
background: #033127;
-webkit-transition: 0.5s ease-in;
-moz-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-ms-transition: 0.5s ease-in;
transition: 0.5s ease-in;
}
.agileits-footer p {
font-size: 15px;
font-weight: 500;
text-align: center;
text-transform: capitalize;
letter-spacing: 2px;
padding: 5em 0 0;
color: #fff;
font-family: 'Josefin Sans', sans-serif;
}
.agileits-footer a {
font-size: 15px;
font-weight: 500;
text-decoration: none;
color: #fff;
cursor: pointer;
font-family: 'Josefin Sans', sans-serif;
}
.agileits-footer a:hover{
color: #20f414;
}
/*--responsive--*/
@media(max-width:1920px){
}
@media(max-width:1680px){
}
@media(max-width:1600px){
}
@media(max-width:1440px){
}
@media(max-width:1366px){
}
@media(max-width:1280px){
}
@media(max-width:1080px){
}
@media(max-width:1050px){
}
@media(max-width:1024px){
}
@media(max-width:991px){
}
@media(max-width:900px){
}
@media(max-width:800px){
}
@media(max-width:768px){
}
@media(max-width:736px){
}
@media(max-width:667px){
}
@media(max-width:640px){
}
@media(max-width:600px){
.wthree-heading h1 {
font-size: 45px;
}
}
@media(max-width:568px){
.wthree-form {
padding: 4em;
}
}
@media(max-width:480px){
.wthree-heading h1 {
font-size: 35px;
}
.wthree-form {
flex-basis: 300px;
}
}
@media(max-width:414px){
.wthree-heading h1 {
font-size: 30px;
}
.wthree-form {
flex-basis: 250px;
}
}
@media(max-width:384px){
.wthree-heading h1 {
font-size: 28px;
}
.wthree-form {
flex-basis: 220px;
}
.wthree-form {
flex-basis: 230px;
}
}
@media(max-width:375px){
}
@media(max-width:320px){
}
/*--/responsive--*/ | 0.195057 | 0.051606 |
@charset "UTF-8";
div#d1{
width: 900px;
margin: 0px auto 0px auto;
background-color: rgba(166, 175, 180, 0.6);
box-shadow: 0px 0px 10px black;
padding: 10px 10px 30px 10px;
}
*{
margin: 0px;
padding: 0px;}
#texto{
font-size: 12pt;
font-family: sans-serif, arial;
text-indent: 50px;
text-align: left;
}
figure{
width: 100%;
height: 100%;
position: relative;
}
#foto-pg-inicial{
width: 100%;
height: 100%;
}
figure figcaption{
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.4);
}
.menu{
width: 100%;
height: 50px;
background-color: #222;
font-family: arial;
}
.menu ul{
list-style: none;
position: relative;
}
.menu ul li{
width: 150px;
float: right;
}
.menu a{
padding: 15px;
display: block;
text-decoration: none;
text-align: center;
background-color: #222;
color: white;
}
.menu ul ul{
position: absolute;
visibility: hidden;
z-index: 1;
}
.menu ul li:hover ul{
visibility: visible;
}
.menu a:hover{
background-color: #f4f4f4;
color: #555;
}
.menu ul ul li{
float: none;
border-bottom: solid 1px #ccc;
}
.menu ul ul li a{
background-color: #069;
}
label[for="bt_menu"]{
padding: 5px;
background-color: #222;
color: #fff;
font-family: arial;
text-align: center;
font-size: 30px;
cursor: pointer;
width: 50px;
height: 50px;
display: none;
}
input{
display: none;
}
@media(max-width: 800px){
label[for="bt_menu"]{
display: block;
}
.menu ul li{
width: 100%;
float: none;
}
.menu ul ul{
position: static;
overflow: hidden;
max-height: 0;
transition: all .4s;
}
.menu ul li:hover ul{
height: auto;
max-height: 200px;
}
#bt_menu{
display: none;
}
.menu{
margin-top: 5px;
margin-left: -100%;
transition: all .4s;
}
#bt_menu:checked ~ .menu{
margin-left: 0;
}
}
figure img#f{
box-shadow:0px 0px 10px black;
margin-top: 10px;
background-color: black;
width: 50%;
height: 60%;
}
figure img#f1{
position: absolute;
margin-top: 10px;
margin-left: 20px;
width: 400px;
height: 350px;
box-shadow:0px 0px 10px black;
}
p#textoprincipal{
text-align: center;
font-family: sans-serif arial;
margin-bottom: 10px;
border-bottom: black solid 1px;
margin-top: 10px;
}
p#t2{
margin-top: 10px;
}
footer#rodape{
border-top: black solid 1px;
clear: both;
margin-top: 100px;
}
body{
background: url(../foto3.jpg);
} | css/estilo.css | @charset "UTF-8";
div#d1{
width: 900px;
margin: 0px auto 0px auto;
background-color: rgba(166, 175, 180, 0.6);
box-shadow: 0px 0px 10px black;
padding: 10px 10px 30px 10px;
}
*{
margin: 0px;
padding: 0px;}
#texto{
font-size: 12pt;
font-family: sans-serif, arial;
text-indent: 50px;
text-align: left;
}
figure{
width: 100%;
height: 100%;
position: relative;
}
#foto-pg-inicial{
width: 100%;
height: 100%;
}
figure figcaption{
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.4);
}
.menu{
width: 100%;
height: 50px;
background-color: #222;
font-family: arial;
}
.menu ul{
list-style: none;
position: relative;
}
.menu ul li{
width: 150px;
float: right;
}
.menu a{
padding: 15px;
display: block;
text-decoration: none;
text-align: center;
background-color: #222;
color: white;
}
.menu ul ul{
position: absolute;
visibility: hidden;
z-index: 1;
}
.menu ul li:hover ul{
visibility: visible;
}
.menu a:hover{
background-color: #f4f4f4;
color: #555;
}
.menu ul ul li{
float: none;
border-bottom: solid 1px #ccc;
}
.menu ul ul li a{
background-color: #069;
}
label[for="bt_menu"]{
padding: 5px;
background-color: #222;
color: #fff;
font-family: arial;
text-align: center;
font-size: 30px;
cursor: pointer;
width: 50px;
height: 50px;
display: none;
}
input{
display: none;
}
@media(max-width: 800px){
label[for="bt_menu"]{
display: block;
}
.menu ul li{
width: 100%;
float: none;
}
.menu ul ul{
position: static;
overflow: hidden;
max-height: 0;
transition: all .4s;
}
.menu ul li:hover ul{
height: auto;
max-height: 200px;
}
#bt_menu{
display: none;
}
.menu{
margin-top: 5px;
margin-left: -100%;
transition: all .4s;
}
#bt_menu:checked ~ .menu{
margin-left: 0;
}
}
figure img#f{
box-shadow:0px 0px 10px black;
margin-top: 10px;
background-color: black;
width: 50%;
height: 60%;
}
figure img#f1{
position: absolute;
margin-top: 10px;
margin-left: 20px;
width: 400px;
height: 350px;
box-shadow:0px 0px 10px black;
}
p#textoprincipal{
text-align: center;
font-family: sans-serif arial;
margin-bottom: 10px;
border-bottom: black solid 1px;
margin-top: 10px;
}
p#t2{
margin-top: 10px;
}
footer#rodape{
border-top: black solid 1px;
clear: both;
margin-top: 100px;
}
body{
background: url(../foto3.jpg);
} | 0.229449 | 0.070113 |
body {
font-family: 'Open Sans', serif;
padding-top: 54px;
color: #868e96;
background-color: #b3ffff;
}
@media (min-width: 992px) {
body {
padding-top: 0;
padding-left: 17rem;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Saira Extra Condensed', serif;
font-weight: 700;
text-transform: uppercase;
color: #343a40;
}
h1 {
font-size: 6rem;
line-height: 5.5rem;
}
h2 {
font-size: 3.5rem;
}
.subheading {
text-transform: uppercase;
font-weight: 500;
font-family: 'Saira Extra Condensed', serif;
font-size: 1.35rem;
}
.list-social-icons a{
color: #495057;
}
.list-social-icons .facebook:hover {
color: #3b5998;
}
.list-social-icons .twitter:hover {
color: #00aced;
}
.list-social-icons .linkedin:hover {
color: #005ce6;
}
.list-social-icons .facebook:hover {
color: #005ce6;
}
.list-social-icons a .fa-lg {
font-size: 1.75rem;
}
.list-icons {
font-size: 3rem;
}
.list-icons .list-inline-item i:hover {
color: #BD5D38;
}
#sideNav .navbar-nav .nav-item .nav-link {
font-weight: 600;
text-transform: uppercase;
}
@media (min-width: 992px) {
#sideNav {
text-align: center;
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
width: 17rem;
height: 100vh;
}
#sideNav .navbar-brand {
display: flex;
margin: auto auto 0;
padding: 0.5rem;
}
#sideNav .navbar-brand .img-profile {
max-width: 10rem;
max-height: 10rem;
border: 0.5rem solid rgba(255, 255, 255, 0.2);
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: all 0.6s ease;
}
#sideNav .navbar-brand .img-profile:hover{
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
#sideNav .navbar-collapse {
display: flex;
align-items: flex-start;
flex-grow: 0;
width: 100%;
margin-bottom: auto;
}
#sideNav .navbar-collapse .navbar-nav {
flex-direction: column;
width: 100%;
}
#sideNav .navbar-collapse .navbar-nav .nav-item {
display: block;
}
#sideNav .navbar-collapse .navbar-nav .nav-item .nav-link {
display: block;
}
}
section.resume-section {
border-bottom: 1px solid #dee2e6;
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
section.resume-section .resume-item .resume-date {
min-width: none;
}
@media (min-width: 768px) {
section.resume-section {
min-height: 100vh;
}
section.resume-section .resume-item .resume-date {
min-width: 18rem;
}
}
@media (min-width: 992px) {
section.resume-section {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
}
.bg-primary {
background-color: #0066ff !important;
}
.text-primary {
color: #0066ff !important;
}
a {
color: #0066ff;
}
a:hover, a:focus, a:active {
color: #824027;
} | public/css/resume.css | body {
font-family: 'Open Sans', serif;
padding-top: 54px;
color: #868e96;
background-color: #b3ffff;
}
@media (min-width: 992px) {
body {
padding-top: 0;
padding-left: 17rem;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Saira Extra Condensed', serif;
font-weight: 700;
text-transform: uppercase;
color: #343a40;
}
h1 {
font-size: 6rem;
line-height: 5.5rem;
}
h2 {
font-size: 3.5rem;
}
.subheading {
text-transform: uppercase;
font-weight: 500;
font-family: 'Saira Extra Condensed', serif;
font-size: 1.35rem;
}
.list-social-icons a{
color: #495057;
}
.list-social-icons .facebook:hover {
color: #3b5998;
}
.list-social-icons .twitter:hover {
color: #00aced;
}
.list-social-icons .linkedin:hover {
color: #005ce6;
}
.list-social-icons .facebook:hover {
color: #005ce6;
}
.list-social-icons a .fa-lg {
font-size: 1.75rem;
}
.list-icons {
font-size: 3rem;
}
.list-icons .list-inline-item i:hover {
color: #BD5D38;
}
#sideNav .navbar-nav .nav-item .nav-link {
font-weight: 600;
text-transform: uppercase;
}
@media (min-width: 992px) {
#sideNav {
text-align: center;
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
width: 17rem;
height: 100vh;
}
#sideNav .navbar-brand {
display: flex;
margin: auto auto 0;
padding: 0.5rem;
}
#sideNav .navbar-brand .img-profile {
max-width: 10rem;
max-height: 10rem;
border: 0.5rem solid rgba(255, 255, 255, 0.2);
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: all 0.6s ease;
}
#sideNav .navbar-brand .img-profile:hover{
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
#sideNav .navbar-collapse {
display: flex;
align-items: flex-start;
flex-grow: 0;
width: 100%;
margin-bottom: auto;
}
#sideNav .navbar-collapse .navbar-nav {
flex-direction: column;
width: 100%;
}
#sideNav .navbar-collapse .navbar-nav .nav-item {
display: block;
}
#sideNav .navbar-collapse .navbar-nav .nav-item .nav-link {
display: block;
}
}
section.resume-section {
border-bottom: 1px solid #dee2e6;
padding-top: 5rem !important;
padding-bottom: 5rem !important;
}
section.resume-section .resume-item .resume-date {
min-width: none;
}
@media (min-width: 768px) {
section.resume-section {
min-height: 100vh;
}
section.resume-section .resume-item .resume-date {
min-width: 18rem;
}
}
@media (min-width: 992px) {
section.resume-section {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
}
.bg-primary {
background-color: #0066ff !important;
}
.text-primary {
color: #0066ff !important;
}
a {
color: #0066ff;
}
a:hover, a:focus, a:active {
color: #824027;
} | 0.375592 | 0.055541 |
v2.0 | 20110126
License: none (public domain)
*/
/* line 8, ../scss/partials/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/* line 29, ../scss/partials/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
/* line 33, ../scss/partials/_reset.scss */
body {
line-height: 1;
}
/* line 36, ../scss/partials/_reset.scss */
ol, ul {
list-style: none;
}
/* line 39, ../scss/partials/_reset.scss */
blockquote, q {
quotes: none;
}
/* line 42, ../scss/partials/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* line 47, ../scss/partials/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* Scss Document */
/* line 3, ../scss/partials/_general.scss */
html, body, * {
box-sizing: border-box;
}
/* line 7, ../scss/partials/_general.scss */
.page-wrapper {
width: 1000px;
margin: 0 auto;
padding: 20px 30px;
background: #fff;
}
/* line 3, ../scss/partials/_header.scss */
#header {
font-family: Helvetica, sans-serif;
}
/* line 7, ../scss/partials/_header.scss */
#header h1 {
margin-bottom: 20px;
float: left;
font-size: 40px;
}
/* line 13, ../scss/partials/_header.scss */
#header:after {
display: block;
content: "";
clear: both;
}
/* line 17, ../scss/partials/_header.scss */
#header nav {
margin-top: 12px;
float: right;
}
/* line 21, ../scss/partials/_header.scss */
#header nav li {
float: left;
list-style: none;
font-size: 18px;
margin-left: 5px;
}
/* line 27, ../scss/partials/_header.scss */
#header nav li a {
text-decoration: none;
color: #000;
}
/* line 31, ../scss/partials/_header.scss */
#header nav li a:hover {
color: #767676;
}
/* line 3, ../scss/partials/_footer.scss */
#footer {
font-family: Helvetica, sans-serif;
}
/* line 4, ../scss/partials/_footer.scss */
#footer:after {
display: block;
content: "";
clear: both;
}
/* line 9, ../scss/partials/_footer.scss */
#footer nav {
padding-top: 25px;
text-align: center;
width: 100%;
}
/* line 14, ../scss/partials/_footer.scss */
#footer nav li {
display: inline;
list-style: none;
font-size: 18px;
}
/* line 19, ../scss/partials/_footer.scss */
#footer nav li a {
text-decoration: none;
color: #000;
}
/* line 23, ../scss/partials/_footer.scss */
#footer nav li a:hover {
color: #767676;
}
/* line 3, ../scss/pages/_home-page.scss */
#home-page {
font-family: Helvetica, sans-serif;
}
/* line 5, ../scss/pages/_home-page.scss */
#home-page .banner-img {
background-image: url(../img/Bikers.jpg);
width: 940px;
height: 240px;
margin-bottom: 46.66666666666667px;
}
/* line 12, ../scss/pages/_home-page.scss */
#home-page .p-model, #home-page h2, #home-page .block2 p {
margin-bottom: 25px;
}
/* line 16, ../scss/pages/_home-page.scss */
#home-page h2 {
font-size: 25px;
}
/* line 21, ../scss/pages/_home-page.scss */
#home-page .block1, #home-page .block2 {
margin-bottom: 46.66666666666667px;
}
/* line 27, ../scss/pages/_home-page.scss */
#home-page .block2 div {
width: 446.6666666666667px;
float: left;
}
/* line 36, ../scss/pages/_home-page.scss */
#home-page .block2 .content1 {
margin-right: 46.66666666666667px;
}
/* line 40, ../scss/pages/_home-page.scss */
#home-page .block2:after {
display: block;
content: "";
clear: both;
}
/* line 45, ../scss/pages/_home-page.scss */
#home-page .thumbnails {
margin-bottom: 46.66666666666667px;
}
/* line 47, ../scss/pages/_home-page.scss */
#home-page .thumbnails:after {
display: block;
content: "";
clear: both;
}
/* line 51, ../scss/pages/_home-page.scss */
#home-page .thumbnails div {
margin-right: 4.96454%;
width: 21.2766%;
height: 200px;
float: left;
}
/* line 56, ../scss/pages/_home-page.scss */
#home-page .thumbnails div:last-child {
margin-right: 0;
} | Project 2/css/main.css | v2.0 | 20110126
License: none (public domain)
*/
/* line 8, ../scss/partials/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/* line 29, ../scss/partials/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
/* line 33, ../scss/partials/_reset.scss */
body {
line-height: 1;
}
/* line 36, ../scss/partials/_reset.scss */
ol, ul {
list-style: none;
}
/* line 39, ../scss/partials/_reset.scss */
blockquote, q {
quotes: none;
}
/* line 42, ../scss/partials/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* line 47, ../scss/partials/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* Scss Document */
/* line 3, ../scss/partials/_general.scss */
html, body, * {
box-sizing: border-box;
}
/* line 7, ../scss/partials/_general.scss */
.page-wrapper {
width: 1000px;
margin: 0 auto;
padding: 20px 30px;
background: #fff;
}
/* line 3, ../scss/partials/_header.scss */
#header {
font-family: Helvetica, sans-serif;
}
/* line 7, ../scss/partials/_header.scss */
#header h1 {
margin-bottom: 20px;
float: left;
font-size: 40px;
}
/* line 13, ../scss/partials/_header.scss */
#header:after {
display: block;
content: "";
clear: both;
}
/* line 17, ../scss/partials/_header.scss */
#header nav {
margin-top: 12px;
float: right;
}
/* line 21, ../scss/partials/_header.scss */
#header nav li {
float: left;
list-style: none;
font-size: 18px;
margin-left: 5px;
}
/* line 27, ../scss/partials/_header.scss */
#header nav li a {
text-decoration: none;
color: #000;
}
/* line 31, ../scss/partials/_header.scss */
#header nav li a:hover {
color: #767676;
}
/* line 3, ../scss/partials/_footer.scss */
#footer {
font-family: Helvetica, sans-serif;
}
/* line 4, ../scss/partials/_footer.scss */
#footer:after {
display: block;
content: "";
clear: both;
}
/* line 9, ../scss/partials/_footer.scss */
#footer nav {
padding-top: 25px;
text-align: center;
width: 100%;
}
/* line 14, ../scss/partials/_footer.scss */
#footer nav li {
display: inline;
list-style: none;
font-size: 18px;
}
/* line 19, ../scss/partials/_footer.scss */
#footer nav li a {
text-decoration: none;
color: #000;
}
/* line 23, ../scss/partials/_footer.scss */
#footer nav li a:hover {
color: #767676;
}
/* line 3, ../scss/pages/_home-page.scss */
#home-page {
font-family: Helvetica, sans-serif;
}
/* line 5, ../scss/pages/_home-page.scss */
#home-page .banner-img {
background-image: url(../img/Bikers.jpg);
width: 940px;
height: 240px;
margin-bottom: 46.66666666666667px;
}
/* line 12, ../scss/pages/_home-page.scss */
#home-page .p-model, #home-page h2, #home-page .block2 p {
margin-bottom: 25px;
}
/* line 16, ../scss/pages/_home-page.scss */
#home-page h2 {
font-size: 25px;
}
/* line 21, ../scss/pages/_home-page.scss */
#home-page .block1, #home-page .block2 {
margin-bottom: 46.66666666666667px;
}
/* line 27, ../scss/pages/_home-page.scss */
#home-page .block2 div {
width: 446.6666666666667px;
float: left;
}
/* line 36, ../scss/pages/_home-page.scss */
#home-page .block2 .content1 {
margin-right: 46.66666666666667px;
}
/* line 40, ../scss/pages/_home-page.scss */
#home-page .block2:after {
display: block;
content: "";
clear: both;
}
/* line 45, ../scss/pages/_home-page.scss */
#home-page .thumbnails {
margin-bottom: 46.66666666666667px;
}
/* line 47, ../scss/pages/_home-page.scss */
#home-page .thumbnails:after {
display: block;
content: "";
clear: both;
}
/* line 51, ../scss/pages/_home-page.scss */
#home-page .thumbnails div {
margin-right: 4.96454%;
width: 21.2766%;
height: 200px;
float: left;
}
/* line 56, ../scss/pages/_home-page.scss */
#home-page .thumbnails div:last-child {
margin-right: 0;
} | 0.171269 | 0.061678 |
@media (max-width:500px){
.btn-group {
display: none;
}}
body{
background-color: #f4f6ff;
font-weight: 530;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Source Sans Pro', 'sans-serif';
}
#statis3{
margin-top: -7px;
}
.container {
display: flex;
flex-wrap: wrap;
max-width: 95%;
margin-bottom: 30px;
}
.content{
display: flex;
flex-wrap: wrap;
}
.fullbox{
width: 100%;
}
.fullbox .icon1{
width: 150px;
height: 150px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
.fullbox .icon2{
width: 150px;
height: 150px;
float: right;
margin-top: 10px;
margin-bottom: 10px;
}
.fullbox .h1{
text-align: center;
font-size: 40px;
font-weight: 600;
color: #5e5e5e;
margin-right: 10%;
}
.fullbox .h2{
text-align: center;
font-size: 40px;
font-weight: 600;
color: #5e5e5e;
margin-left: 12%;
}
.fullbox .span1{
color: crimson;
}
.fullbox .span2{
color: darkgreen;
}
.fullbox .p1{
text-align: center;
color: #5e5e5e;
font-size: 30px;
margin-right: 10%;
}
.fullbox .p2{
text-align: center;
color: #5e5e5e;
font-size: 30px;
margin-left: 10%;
}
.box {
width: 23%;
border-radius: 12px;
margin: 1%;
color: #fff;
text-align: center;
-webkit-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
transition: 0.3s;
}
.box i:before {
margin-left: 0;
font-size: 70px;
}
.box:hover{
transform: translateY(-10px);
}
.box:hover ::before{
transform: scale(1.5);
}
.box span {
font-size: 30px;
}
.box i {
display: block;
padding: 10%;
background: #ffffff47;
margin: 6%;
border-radius: 12px;
}
.box p {
margin: 14px;
font-size: 25px;
}
.b1 {
background: #c21d1d;
}
.b2 {
background: #25781f;
}
.main-nav {
width: 100%;
margin-top: 20px;
margin-bottom: 35px;
text-align: center;
}
.logo {
grid-column: 1 / 2;
display: flex;
align-items: center;
}
.logo h1 {
font-size: 26px;
font-weight: 600;
margin-left: 5px;
margin-right: 10px; }
.logo__icon {
width: 51px;
height: 51px;
}
.navbar-nav .nav-link{
margin-left: 23px !important;
color: #393939 !important;
font-size: 16px;
}
.navbar-nav .nav-link .home{
padding-left: 5px !important;
}
.navbar-nav .nav-link:hover{
color: #e87905 !important;
}
.btn-group{
height: 28px;
margin-top: 9px;
}
.btn-group>.btn:first-child {
color: #e87905;
}
.dropdown-menu .dropdown-item{
display: inline;
padding: 1px 1px;
}
.dropdown-menu .dropdown-item .flag-icon {
font-size: 20px;
}
@media screen and (max-device-width:500px){
.btn-group {
position: absolute;
}}
@media (max-width: 500px){
.dropdown-toggle {
display: none;
}}
@media (max-width: 500px){
.dropdown-menu {
width: 200px !important;
}}
.dropdown-menu {
margin-top: 0;
} | public/css/prev.css | @media (max-width:500px){
.btn-group {
display: none;
}}
body{
background-color: #f4f6ff;
font-weight: 530;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Source Sans Pro', 'sans-serif';
}
#statis3{
margin-top: -7px;
}
.container {
display: flex;
flex-wrap: wrap;
max-width: 95%;
margin-bottom: 30px;
}
.content{
display: flex;
flex-wrap: wrap;
}
.fullbox{
width: 100%;
}
.fullbox .icon1{
width: 150px;
height: 150px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
.fullbox .icon2{
width: 150px;
height: 150px;
float: right;
margin-top: 10px;
margin-bottom: 10px;
}
.fullbox .h1{
text-align: center;
font-size: 40px;
font-weight: 600;
color: #5e5e5e;
margin-right: 10%;
}
.fullbox .h2{
text-align: center;
font-size: 40px;
font-weight: 600;
color: #5e5e5e;
margin-left: 12%;
}
.fullbox .span1{
color: crimson;
}
.fullbox .span2{
color: darkgreen;
}
.fullbox .p1{
text-align: center;
color: #5e5e5e;
font-size: 30px;
margin-right: 10%;
}
.fullbox .p2{
text-align: center;
color: #5e5e5e;
font-size: 30px;
margin-left: 10%;
}
.box {
width: 23%;
border-radius: 12px;
margin: 1%;
color: #fff;
text-align: center;
-webkit-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 13px -3px rgba(0,0,0,0.75);
transition: 0.3s;
}
.box i:before {
margin-left: 0;
font-size: 70px;
}
.box:hover{
transform: translateY(-10px);
}
.box:hover ::before{
transform: scale(1.5);
}
.box span {
font-size: 30px;
}
.box i {
display: block;
padding: 10%;
background: #ffffff47;
margin: 6%;
border-radius: 12px;
}
.box p {
margin: 14px;
font-size: 25px;
}
.b1 {
background: #c21d1d;
}
.b2 {
background: #25781f;
}
.main-nav {
width: 100%;
margin-top: 20px;
margin-bottom: 35px;
text-align: center;
}
.logo {
grid-column: 1 / 2;
display: flex;
align-items: center;
}
.logo h1 {
font-size: 26px;
font-weight: 600;
margin-left: 5px;
margin-right: 10px; }
.logo__icon {
width: 51px;
height: 51px;
}
.navbar-nav .nav-link{
margin-left: 23px !important;
color: #393939 !important;
font-size: 16px;
}
.navbar-nav .nav-link .home{
padding-left: 5px !important;
}
.navbar-nav .nav-link:hover{
color: #e87905 !important;
}
.btn-group{
height: 28px;
margin-top: 9px;
}
.btn-group>.btn:first-child {
color: #e87905;
}
.dropdown-menu .dropdown-item{
display: inline;
padding: 1px 1px;
}
.dropdown-menu .dropdown-item .flag-icon {
font-size: 20px;
}
@media screen and (max-device-width:500px){
.btn-group {
position: absolute;
}}
@media (max-width: 500px){
.dropdown-toggle {
display: none;
}}
@media (max-width: 500px){
.dropdown-menu {
width: 200px !important;
}}
.dropdown-menu {
margin-top: 0;
} | 0.183594 | 0.092196 |
@charset "utf-8";
.alignleft {
float: left;
padding-left: 10px;
}
.alignright {
float: right;
padding-right: 10px;
}
/*======================================
[ -Main Stylesheet-
Theme: CityBook
Version: 1.0
Last change: 07/05/2019 ]
++ Fonts ++
++ General Style ++
++ Typography ++
++ loader ++
++ Content Styles ++
++ Header ++
++ Navigation ++
++ section ++
++ Home / Sliders ++
++ Register form ++
++ Listing ++
++ Scroll nav ++
++ Forms ++
++ Counter ++
++ Team ++
++ Map ++
++ Accordion ++
++ Dashboard ++
++ Button ++
++ Grid Gallery ++
++ Image collage ++
++ Price tables ++
++ Testimonials ++
++ Sponsors ++
++ Footer ++
++ Timeline ++
++ Blog ++
++ Video ++
++ Share ++
++ 404 ++
++ Coming Soon ++
++ Responsive ++
/*------Scroll Link-----------------------------------------------*/
.custom-scroll-link {
text-align: center;
padding: 7px 12px;
border-radius: 20px;
margin-right: 10px;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.41);
border-radius: 4px;
background: rgba(255, 255, 255, 0.11);
}
/*------ Grid Gallery------------------------------------------------*/
.gallery-items.mr-bot {
margin-bottom: 40px;
}
.grid-item-holder {
float: left;
width: 100%;
height: auto;
position: relative;
overflow: hidden;
}
.spad .grid-item-holder {
padding: 10px;
}
.grid-small-pad .grid-item-holder {
padding: 10px 20px 10px 0;
}
.gallery-item,
.grid-sizer {
width: 33.3%;
position: relative;
float: left;
}
.gallery-item-second,
.grid-sizer-second {
width: 66.6%;
}
.four-column .gallery-item {
width: 25%;
}
.four-column .gallery-item.gallery-item-second {
width: 50%;
}
.gallery-item img,
.grid-sizer img {
width: 100%;
height: auto;
position: relative;
z-index: 1;
}
/*------ Image collage------------------------------------------------*/
.images-collage-item img {
width: 100%;
height: 100%;
}
.images-collage-item {
border-radius: 100%;
overflow: hidden;
}
.images-collage-main {
position: relative;
z-index: 3;
width: 160px;
height: 160px;
display: inline-block;
margin-top: 90px;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.2);
}
.images-collage-other {
width: 90px;
height: 90px;
position: absolute;
z-index: 1;
}
.images-collage-title {
position: absolute;
right: 30%;
width: 180px;
padding: 12px 0;
background: #fff;
z-index: 10;
top: 20px;
border-radius: 30px;
font-weight: 800;
font-size: 18px;
color: #566985;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
.images-collage:before {
content: "";
position: absolute;
width: 250px;
height: 250px;
top: 50%;
left: 50%;
margin-top: -125px;
margin-left: -125px;
border: 2px dotted #fff;
z-index: -1;
opacity: 0.6;
border-radius: 100%;
}
.anim-col {
animation: anim-col 4.15s infinite;
}
@-moz-keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
@-webkit-keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
@keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
/*-------------Fonts---------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,800i,900|Quicksand:300,400,500,700&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese");
/*-------------General Style---------------------------------------*/
html {
overflow-x: hidden !important;
height: 100%;
}
@-o-viewport {
width: device-width;
}
@-ms-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
/*--------------Typography--------------------------------------*/
/* p {
font-size: 12px;
line-height: 24px;
padding-bottom: 10px;
font-weight: 500;
color: #878c9f;
} */
blockquote {
float: left;
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 15px solid #eee;
position: relative;
}
blockquote:before {
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
content: "\f10e";
position: absolute;
color: #ccc;
bottom: 3px;
font-size: 43px;
right: 6px;
opacity: 0.4;
}
blockquote p {
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
color: #494949;
}
/*------ loader-------------------------------------------------*/
.loader-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
background: #2f3b59;
-webkit-transform: translate3d(0, 0, 0);
}
.pin {
width: 30px;
height: 30px;
border-radius: 50% 50% 50% 0;
background: #89849b;
position: absolute;
transform: rotate(-45deg);
left: 50%;
top: 50%;
margin: -20px 0 0 -20px;
}
.pin:after {
content: "";
width: 14px;
height: 14px;
top: 8px;
left: 8px;
background: #2f3b59;
position: absolute;
border-radius: 50%;
}
.pulse {
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
height: 14px;
width: 14px;
position: absolute;
left: 50%;
top: 50%;
margin: 11px 0px 0px -12px;
transform: rotateX(55deg);
z-index: -2;
}
.pulse:after {
content: "";
border-radius: 50%;
height: 40px;
width: 40px;
position: absolute;
margin: -13px 0 0 -19px;
animation: pulsate 1s ease-out;
animation-iteration-count: infinite;
opacity: 0;
box-shadow: 0 0 1px 3px #4db7fe;
}
@keyframes pulsate {
0% {
transform: scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: scale(1.2, 1.2);
opacity: 0;
}
}
/* ---------Content Styles--------------------------------------*/
#main {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
opacity: 0;
}
.container {
max-width: 1224px;
width: 92%;
margin: 0 auto;
position: relative;
z-index: 5;
}
.big-container {
max-width: 1500px;
}
.small-container {
max-width: 1024px;
}
#wrapper {
float: left;
width: 100%;
position: relative;
z-index: 5;
padding-top: 80px;
}
#wrapper.no-padding {
padding-top: 0;
}
.content {
width: 100%;
position: relative;
z-index: 4;
float: left;
background: #fff;
}
.content.fs-slider-wrap {
padding-top: 80px;
}
.fl-wrap {
float: left;
width: 100%;
position: relative;
}
.no-bg {
background: none;
}
.full-height {
height: 100%;
}
.full-width-wrap {
width: 100%;
}
.bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background-size: cover;
background-attachment: scroll;
background-position: center;
background-repeat: repeat;
background-origin: content-box;
}
.shapes-bg-small:before,
.shapes-bg-big:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: repeat;
opacity: 0.3;
}
/* .shapes-bg-small:before {
background-attachment: scroll;
background-size: cover;
background-image: url(../images/bg/shapes-small.png);
}
.shapes-bg-big:before {
background-image: url(../images/bg/shapes-big.png);
} */
.respimg {
width: 100%;
height: auto;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
z-index: 2;
}
.overlay-width-70 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 70%;
background: #0b73bb;
opacity: 0.6;
z-index: 2;
}
.box-item {
float: left;
width: 100%;
position: relative;
overflow: hidden;
}
.box-item:before {
content: "";
position: absolute;
ltop: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 2;
background: rgba(51, 51, 51, 0.41);
transition: all 300ms linear;
}
.box-item a.gal-link {
position: absolute;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 100%;
color: #fff;
z-index: 10;
transition: all 300ms linear;
}
.fw-separator {
float: left;
width: 100%;
margin: 25px 0;
height: 1px;
background: #eee;
}
/* ------Header------------------------------------------------------------ */
.main-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
padding: 0 0 6px 0;
-webkit-transform: translate3d(0, 0, 0);
height: 80px;
}
.center-header .header-inner {
max-width: 1224px;
margin: 0 auto;
position: relative;
}
.center-header .header-inner .show-search-button {
display: block;
}
.center-header .header-search {
display: none;
position: absolute;
left: 20px;
top: 100px;
border-radius: 30px;
box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 0.2);
}
.dark-header {
background: #2f3b59;
}
.fs-header {
padding: 0px 50px;
}
.logo-holder {
float: left;
position: relative;
top: 25px;
height: 30px;
}
.logo-holder img {
height: 100%;
width: auto;
}
.add-list {
float: right;
padding: 13px 32px;
position: relative;
top: 20px;
border-radius: 30px;
color: #fff;
font-weight: 700;
text-transform: uppercase;
font-size: 11px;
}
.add-list span {
padding-left: 4px;
font-weight: 700;
}
.dark-header .add-list {
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.2);
}
.dark-header .add-list:hover {
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.1);
}
.show-reg-form {
float: right;
color: #666;
cursor: pointer;
margin-right: 40px;
position: relative;
top: 34px;
font-size: 13px;
font-weight: 600;
}
.dark-header .show-reg-form {
color: #fff;
}
.show-reg-form:before {
content: "";
position: absolute;
top: 50%;
right: -20px;
height: 30px;
width: 1px;
margin-top: -15px;
background: rgba(255, 255, 255, 0.41);
}
.dark-header .show-reg-form:before {
color: #fff;
background: rgba(255, 255, 255, 0.21);
}
.show-reg-form i {
padding-right: 10px;
}
.vis-header-search {
float: left;
margin-left: 30px;
position: relative;
top: 20px;
}
.header-search-input-item input {
border: none;
height: 40px;
line-height: 40px;
padding: 0 20px;
float: left;
width: 130px;
}
.header-search-input-item {
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
overflow: hidden;
background: #fff;
}
.header-search-select-item {
background: #fff;
height: 40px;
border-left: 1px solid #eee;
}
.header-search-select-item .nice-select {
color: #292929;
float: left;
width: 100%;
border: none;
min-width: 150px;
height: 40px;
line-height: 40px;
}
.header-search-select-item .nice-select .list {
width: 100%;
padding: 60px 12px 10px;
background: #fff;
border-radius: 4px;
}
.header-search-select-item .nice-select .list li {
float: left;
width: 100%;
padding: 5px 10px 6px;
color: #666;
font-size: 13px;
border-radius: 2px;
min-height: 20px;
line-height: 20px;
}
.header-search-select-item .nice-select .nice-select-search {
border: 1px solid #eee;
}
.header-search-select-item .nice-select .list li:hover,
.header-search-select-item .nice-select .list li.selected {
color: #fff;
}
.header-search-input-item,
.header-search-select-item,
.header-search-button {
float: left;
}
.header-search-button {
height: 40px;
border: none;
color: #fff;
line-height: 40px;
border-radius: none;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
padding: 0 30px;
cursor: pointer;
}
.show-search-button {
display: none;
color: #fff;
float: left;
position: relative;
margin-left: 20px;
top: 32px;
cursor: pointer;
font-weight: 600;
padding-left: 18px;
}
.show-search-button:before {
content: "";
position: absolute;
left: 0;
top: -6px;
bottom: -6px;
width: 1px;
background: rgba(255, 255, 255, 0.21);
}
.show-search-button i {
padding-right: 8px;
}
.header-user-menu {
float: right;
position: relative;
top: 20px;
margin-left: 50px;
margin-right: 40px;
}
.header-user-menu:after {
content: "";
position: absolute;
left: -70px;
height: 30px;
top: 4px;
width: 1px;
background: rgba(255, 255, 255, 0.21);
}
.header-user-name {
position: relative;
float: left;
cursor: pointer;
color: #fff;
transition: 0.2s;
white-space: nowrap;
text-overflow: ellipsis;
padding-top: 10px;
font-weight: 600;
}
.header-user-name:before {
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
content: "\f0d7";
position: absolute;
color: #fff;
bottom: 1px;
font-size: 13px;
right: -16px;
transition: all 0.2s ease-in-out;
}
.header-user-name span {
position: absolute;
width: 38px;
height: 38px;
border-radius: 100%;
overflow: hidden;
top: 0;
left: -50px;
}
.header-user-name span img {
width: 100%;
height: 100%;
}
.header-user-menu ul {
margin: 10px 0 0 0;
opacity: 0;
visibility: hidden;
position: absolute;
min-width: 150px;
top: 60px;
left: -50px;
z-index: 1;
padding: 10px 0;
background: #fff;
border-radius: 6px;
border: 1px solid #eee;
transition: all 0.2s ease-in-out;
}
.header-user-name.hu-menu-visdec:before {
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
.header-user-menu ul.hu-menu-vis {
opacity: 1;
visibility: visible;
top: 40px;
}
.header-user-menu ul li {
float: left;
width: 100%;
padding: 4px 0;
}
.header-user-menu ul li a {
color: #50596e;
float: left;
width: 100%;
font-weight: 500;
text-align: left;
padding: 6px 15px;
}
/* ------Navigation------------------------------------------------------------ */
.nav-holder {
float: right;
position: relative;
top: 18px;
margin-right: 30px;
opacity: 1;
right: 0;
visibility: visible;
}
.nav-holder nav {
position: relative;
float: right;
}
.nav-holder nav li {
float: left;
position: relative;
margin-left: 6px;
height: 70px;
}
.nav-holder nav li ul {
margin: 30px 0 0 0;
opacity: 0;
visibility: hidden;
position: absolute;
min-width: 150px;
top: 50px;
left: 0;
z-index: 1;
padding: 10px 0;
background: #fff;
border-radius: 6px;
border: 1px solid #eee;
transition: all 0.2s ease-in-out;
}
.nav-holder nav li:hover > ul {
opacity: 1;
visibility: visible;
margin: 0;
}
.nav-holder nav li ul li ul {
top: -10px;
left: -100%;
margin-left: 25px;
margin-top: 0;
max-width: 150px;
}
.nav-holder nav li ul li:hover > ul {
opacity: 1;
visibility: visible;
margin-right: 0px;
}
.nav-holder nav li ul li {
width: 100%;
float: left;
height: auto;
position: relative;
}
.nav-holder nav li a {
float: left;
padding: 10px;
font-size: 13px;
font-style: normal;
font-weight: 800;
text-transform: none;
line-height: 25px;
letter-spacing: 0px;
color: #494949;
transition: all 100ms linear;
}
.dark-header .nav-holder nav li a {
color: #fff;
}
.nav-holder nav li a:before {
content: "";
position: absolute;
bottom: -19px;
left: 0;
right: 0;
height: 4px;
border-radius: 4px;
display: none;
}
.nav-holder nav li a.act-link:before {
display: block;
}
.nav-holder nav li a i {
padding-left: 6px;
transition: all 200ms linear;
}
.nav-holder nav li a:hover i {
transform: rotateX(180deg);
}
.nav-holder nav li ul a {
color: #566985;
float: left;
width: 100%;
font-weight: 500;
text-align: left;
padding: 5px 15px;
}
.dark-header .nav-holder nav li ul a {
color: #fff;
}
nav li ul a:before,
nav li ul a:after {
display: none;
}
.nav-button-wrap {
float: right;
height: 38px;
width: 38px;
cursor: pointer;
position: relative;
border-radius: 4px;
top: 24px;
margin-right: 16px;
display: none;
}
.nav-button {
position: absolute;
top: 50%;
left: 50%;
width: 22px;
height: 20px;
margin-left: -11px;
margin-top: -6px;
}
.nav-button span {
float: left;
width: 100%;
height: 2px;
background: #fff;
margin-bottom: 4px;
border-radius: 4px;
transition: all 200ms linear;
}
/*------ section-------------------------------------------------*/
section {
float: left;
width: 100%;
position: relative;
padding: 80px 0;
overflow: hidden;
background: #fff;
z-index: 1;
}
section.no-top-padding {
padding: 50px 0;
}
section.no-pading {
padding-bottom: 0;
}
.header-sec-link {
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
z-index: 20;
}
.header-sec-link a {
display: inline-table;
padding: 15px 40px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background: #0b73bb;
font-weight: 700;
color: #fff;
text-transform: uppercase;
font-size: 12px;
box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
}
section.color-bg .header-sec-link a {
color: #fff;
background: #fff !important;
}
section.color-bg .header-sec-link a:hover {
color: #fff;
}
.header-sec-link a:hover {
color: #666;
background: #fff;
}
section.hero-section {
padding: 150px 0 100px;
}
section.hero-section.no-dadding {
padding: 0;
}
section.gray-section {
background: #f9f9f9;
}
section.hero-section .bg {
height: 120%;
top: -10%;
}
section.parallax-section {
padding: 110px 0;
}
section.video-section {
padding: 150px 0;
}
section.single-par {
padding: 180px 0;
}
section.parallax-section.small-par {
padding: 90px 0;
}
.hero-section-wrap {
z-index: 30;
}
section.parallax-section .bg {
height: 120%;
top: 0;
}
.section-title {
display: flex;
float: left;
width: 100%;
position: relative;
padding-bottom: 50px;
}
.section-title .breadcrumbs {
margin-top: 20px;
}
.section-title .breadcrumbs a,
.section-title .breadcrumbs span {
color: rgba(255, 255, 255, 0.71);
display: inline-block;
padding: 0 16px;
position: relative;
font-weight: 500;
}
.section-title .breadcrumbs span,
.section-title .breadcrumbs a:hover {
color: #fff;
}
.section-title .breadcrumbs a:before {
content: "";
position: absolute;
top: 50%;
right: -4px;
margin-top: -3px;
width: 6px;
height: 6px;
border-radius: 100%;
}
section.color-bg .section-title .breadcrumbs {
margin-top: 0;
margin-bottom: 10px;
}
section.color-bg .section-title .breadcrumbs a:before {
background: #fff !important;
}
.section-title p {
color: #7d93b2;
font-size: 13px;
}
.section-title h2 {
float: left;
width: 100%;
text-align: center;
color: #566985;
font-size: 34px;
font-weight: 700;
}
/* .hero-section .intro-item h2 {
font-size: 54px;
} */
.parallax-section .section-title h2 {
font-size: 44px;
}
.section-separator {
float: left;
width: 100%;
position: relative;
margin: 20px 0;
}
section.gray-section .section-separator {
background: #f9f9f9;
}
.section-separator:before {
content: "";
position: absolute;
left: 50%;
top: 0;
height: 4px;
margin-left: -25px;
width: 50px;
border-radius: 3px;
}
.section-title h3 {
color: white;
}
.section-separator.fl-sec-sep:before {
left: 0;
margin-left: 0;
}
.parallax-section .section-title h2,
.parallax-section .section-title p {
color: #fff;
}
.parallax-section .section-title.left-align,
.parallax-section .section-title.left-align h2 {
text-align: left;
}
.section-subtitle {
position: absolute;
width: 100%;
text-align: center;
left: 0;
top: -20px;
font-size: 64px;
opacity: 0.13;
z-index: -1;
text-transform: uppercase;
font-weight: bold;
}
.parallax-section .section-subtitle {
color: #fff;
opacity: 0.2;
}
.section-subtitle:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, rgba(255, 255, 255, 255)),
color-stop(100%, rgba(255, 255, 255, 0.75))
);
background: -webkit-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: -o-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: -ms-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffff',GradientType=0 );
}
.gray-section .section-subtitle:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, rgba(249, 249, 249, 249)),
color-stop(100%, rgba(249, 249, 249, 0.75))
);
background: -webkit-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: -o-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: -ms-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffff',GradientType=0 );
}
.parallax-section .section-subtitle:before {
display: none;
}
/*-------------Button---------------------------------------*/
/* .btn {
padding: 12px 30px;
border-radius: 6px;
color: #878c9f;
font-weight: 600;
} */
.btn.color-bg:hover {
background: #2f3b59;
}
.btn i {
padding-left: 10px;
}
.btn.big-btn {
padding: 15px 40px;
}
.btn.circle-btn {
border-radius: 30px;
}
.btn.transparent-btn {
border: 2px solid;
}
.btn.float-btn {
float: left;
margin: 10px 0;
}
.btn.transparent-btn:hover,
.btn.flat-btn {
color: #fff;
}
.dec-btn:before {
content: "";
position: absolute;
left: -6px;
right: -6px;
top: -6px;
bottom: -6px;
border: 1px solid #eee;
border-radius: 30px;
}
.list-author-widget-text .btn {
display: inline-table;
margin-top: 16px;
}
.trs-btn {
display: inline-block;
padding: 15px 35px;
color: #fff;
margin-top: 30px;
border-radius: 30px;
position: relative;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.4);
}
.list-single-btn {
display: inline-block;
padding: 15px 35px;
background: #fff;
margin-top: 90px;
border-radius: 30px;
position: relative;
border: 1px solid #eee;
font-size: 14px;
}
.list-single-btn i {
padding-left: 10px;
}
/*------ Home / Sliders-------------------------------------------------*/
.intro-item h2 {
padding-bottom: 20px;
text-align: center;
}
.intro-item h3 {
font-size: 13px;
font-weight: 500;
text-align: center;
}
.main-search-input {
background: #fff;
padding: 0 120px 0 0;
border-radius: 30px;
line-height: 48px;
margin-top: 50px;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
border-radius: 30px;
}
.main-search-input-item {
float: left;
box-sizing: border-box;
border-right: 1px solid #eee;
height: 50px;
position: relative;
}
.main-search-input-item-left {
float: left;
width: 66.6%;
box-sizing: border-box;
border-right: 1px solid #eee;
height: 50px;
position: relative;
}
.main-search-input-item input {
float: left;
border: none;
width: 100%;
height: 50px;
padding-left: 20px;
}
.main-search-input-item input:first-child {
border-radius: 100%;
}
.main-search-button {
position: absolute;
right: 0px;
height: 50px;
width: 120px;
backgroundcolor: #0b73bb;
color: #fff;
top: 0;
border: none;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.main-search-input-item .nice-select {
color: #292929;
float: left;
width: 100%;
border: none;
min-width: 150px;
height: 50px;
z-index: 100;
line-height: 50px;
}
.main-search-input-item .nice-select .list {
width: 100%;
padding: 60px 12px 10px;
background: #fff;
border-radius: 4px;
maxheight: 180px;
}
.main-search-input-item .nice-select .list li {
float: left;
width: 100%;
padding: 5px 10px 6px;
color: #666;
font-size: 13px;
border-radius: 2px;
min-height: 20px;
line-height: 20px;
}
.main-search-input-item .nice-select .nice-select-search {
border: 1px solid #eee;
border-radius: 6px !important ;
}
.main-search-input-item .nice-select .list li:hover,
.main-search-input-item .nice-select .list li.selected {
color: #fff;
}
.main-search-input-wrap {
max-width: 900px;
margin: 20px auto;
position: relative;
}
.main-search-input:before {
content: "";
position: absolute;
bottom: -40px;
width: 50px;
height: 1px;
background: rgba(255, 255, 255, 0.41);
left: 50%;
margin-left: -25px;
}
.main-search-input-item.location a {
position: absolute;
top: 18px;
right: 22px;
z-index: 500;
}
.main-search-input-item.location a:hover {
border-radius: 100%;
animation: pulse 1.1s infinite ease-in-out;
}
.slider-container-wrap {
padding: 300px 0;
}
.slider-container-wrap.fs-slider {
padding: 0;
}
.slider-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.slider-container .hero-section-wrap {
padding-top: 150px;
}
.slider-container-wrap.fs-slider .hero-section-wrap {
top: 35%;
padding-top: 0;
}
.bubble-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 3;
}
.individual-bubble {
position: absolute;
border-radius: 100%;
bottom: 0;
backgroundcolor: #ccc;
z-index: 1;
width: 5px !important;
height: 5px !important;
background: #fff;
opacity: 0.3;
-webkit-animation: fade 20s infinite;
}
@-webkit-keyframes fade {
from {
bottom: -24px;
opacity: 0.5;
visibility: visible;
}
to {
bottom: 120%;
}
}
@keyframes fade {
from {
bottom: -24px;
opacity: 0.5;
visibility: visible;
}
to {
bottom: 120%;
}
}
.absolute-main-search-input {
position: absolute;
bottom: 70px;
left: 50%;
margin-left: -450px;
width: 900px;
z-index: 10;
}
.absolute-main-search-input .container {
max-width: 900px;
}
.absolute-main-search-input .main-search-input {
box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 0.1);
}
.slideshow-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110%;
z-index: 1;
}
.slideshow-item,
.slideshow-container .slick-slide {
position: relative;
float: left;
width: 100%;
height: 100%;
}
.sw-btn {
position: absolute;
top: 50%;
width: 44px;
height: 44px;
line-height: 44px;
border-radius: 100%;
color: #fff;
z-index: 120;
cursor: pointer;
margin-top: -22px;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.4);
}
.sw-btn.swiper-button-prev {
left: 50px;
}
.sw-btn.swiper-button-next {
right: 50px;
}
.sw-btn:hover {
background: #2c3b5a;
}
.single-carousel .slick-dots,
.listing-carousel .slick-dots {
bottom: -50px;
}
.single-carousel .slick-dots li button,
.listing-carousel .slick-dots li button {
background: #bdcbdb;
}
.list-single-carousel-wrap {
height: 500px;
background: #24324f;
}
.fw-carousel .slick-slide-item {
width: auto;
height: 500px !important;
float: left;
cursor: w-resize;
}
.fw-carousel .slick-slide-item img {
width: auto;
height: 100% !important;
}
.list-single-carousel-wrap .slick-slide-item .box-item {
height: 100%;
z-index: 20;
}
.list-single-carousel-wrap .slick-slide-item .box-item:before {
display: none;
}
.list-single-carousel-wrap .slick-slide-item {
float: left;
width: auto;
height: 100%;
padding: 0 0px 0 0;
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;
overflow: hidden;
}
.list-single-carousel-wrap .swiper-slide:first-child {
padding-left: 0px;
}
.list-single-carousel-wrap .slick-slide-item .box-item a.gal-link {
top: -100px;
right: 50px;
}
.list-single-carousel-wrap .slick-slide-item .box-item:hover a.gal-link {
top: 50px;
}
.list-single-carousel-wrap .sw-btn,
.single-slider-wrapper .sw-btn {
top: 50%;
}
.list-carousel .sw-btn.swiper-button-prev {
left: 8px;
}
.list-carousel .sw-btn.swiper-button-next {
right: 8px;
}
.single-slider img {
width: 100%;
height: auto;
}
.slick-dots {
position: absolute;
bottom: 40px;
left: 0;
width: 100%;
}
.slick-dots li {
position: relative;
display: inline-block;
width: 10px;
height: 10px;
margin: 0 3px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 6px;
height: 6px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: rgba(255, 255, 255, 0.51);
border-radius: 100%;
}
.box-cat-container {
display: inline-table;
margin-top: 10px;
}
.box-cat {
display: inline-block;
padding: 20px 0;
border-radius: 6px;
color: #fff;
margin: 0 10px;
min-width: 120px;
box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
}
.box-cat:hover {
background: #2c3b5a;
}
.box-cat i {
padding-bottom: 10px;
font-size: 16px;
}
.bg-ser {
transition: all 400ms linear;
}
.popular-searching {
float: left;
width: 100%;
margin-top: 40px;
}
.popular-searching div,
.popular-searching a {
display: inline-block;
margin-right: 20px;
font-weight: 500;
}
.popular-searching div {
color: #fff;
margin-bottom: 20px;
font-size: 13px;
}
.popular-searching a {
color: rgba(255, 255, 255, 0.81);
font-size: 13px;
}
.popular-searching a:hover {
color: #fff;
}
/*------ register form------------------------------------------------*/
.main-register-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
overflow: auto;
display: none;
-webkit-transform: translate3d(0, 0, 0);
background: rgba(0, 0, 0, 0.81);
}
.hid-body {
overflow: hidden;
}
.main-register-holder {
max-width: 480px;
margin: 100px auto 50px;
position: relative;
z-index: 5;
}
.main-register h3 {
float: left;
width: 100%;
text-align: left;
font-size: 20px;
padding: 20px 30px;
margin-bottom: 20px;
font-weight: 600;
color: #666;
border-bottom: 1px solid #eee;
}
.main-register h3 span {
font-weight: 800;
font-size: 18px;
color: #566985;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
.main-register {
float: left;
width: 100%;
position: relative;
padding: 0 0 30px;
margin-bottom: 50px;
background: #fff;
border-radius: 6px;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.12);
}
.close-reg {
position: absolute;
top: 14px;
right: 30px;
border-radius: 100%;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.soc-log {
padding: 15px 30px;
}
.soc-log p {
margin-bottom: 12px;
font-size: 13px;
color: #454545;
}
.soc-log a {
float: left;
width: 100%;
padding: 13px 0;
color: #fff;
margin-bottom: 10px;
border-radius: 4px;
font-size: 14px;
line-height: 30px;
font-weight: 500;
}
.soc-log a i {
font-size: 20px;
padding-right: 15px;
position: relative;
top: 3px;
}
.soc-log a.facebook-log {
background: #3b5998;
}
.soc-log a.twitter-log {
background: #55acee;
}
.close-reg:hover,
.custom-form .log-submit-btn:hover,
.soc-log a:hover {
background: #2f3b59;
}
.log-separator span {
position: relative;
width: 90px;
display: inline-block;
background: #fff;
z-index: 2;
}
.log-separator:before {
content: "";
position: absolute;
top: 50%;
left: 30px;
right: 30px;
height: 1px;
background: #eee;
z-index: 1;
}
.custom-form .log-submit-btn {
float: left;
padding: 13px 35px;
border: none;
border-radius: 4px;
color: #fff;
cursor: pointer;
-webkit-appearance: none;
margin-top: 12px;
}
.main-register .filter-tags {
float: left;
}
.lost_password {
margin-top: 36px;
float: right;
}
.lost_password a {
float: left;
color: #50596e;
font-size: 12px;
font-weight: 600;
}
#tabs-container {
float: left;
width: 100%;
margin-top: 20px;
padding: 0 30px;
}
.tab {
float: left;
width: 100%;
}
.tabs-menu {
float: left;
width: 100%;
margin-top: 20px;
margin-bottom: 30px;
border-bottom: 1px solid #eee;
}
.tabs-menu li {
float: left;
margin-right: 20px;
}
.tabs-menu li a {
float: left;
padding: 14px 35px;
font-weight: 500;
color: #494949;
background: #eee;
border-radius: 3px 3px 0 0;
}
.tabs-menu li.current a,
.tabs-menu li a:hover {
color: #fff;
}
.tab-content {
width: 100%;
padding: 20px 0;
display: none;
}
#tab-1 {
display: block;
} | src/css/citybook.css | @charset "utf-8";
.alignleft {
float: left;
padding-left: 10px;
}
.alignright {
float: right;
padding-right: 10px;
}
/*======================================
[ -Main Stylesheet-
Theme: CityBook
Version: 1.0
Last change: 07/05/2019 ]
++ Fonts ++
++ General Style ++
++ Typography ++
++ loader ++
++ Content Styles ++
++ Header ++
++ Navigation ++
++ section ++
++ Home / Sliders ++
++ Register form ++
++ Listing ++
++ Scroll nav ++
++ Forms ++
++ Counter ++
++ Team ++
++ Map ++
++ Accordion ++
++ Dashboard ++
++ Button ++
++ Grid Gallery ++
++ Image collage ++
++ Price tables ++
++ Testimonials ++
++ Sponsors ++
++ Footer ++
++ Timeline ++
++ Blog ++
++ Video ++
++ Share ++
++ 404 ++
++ Coming Soon ++
++ Responsive ++
/*------Scroll Link-----------------------------------------------*/
.custom-scroll-link {
text-align: center;
padding: 7px 12px;
border-radius: 20px;
margin-right: 10px;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.41);
border-radius: 4px;
background: rgba(255, 255, 255, 0.11);
}
/*------ Grid Gallery------------------------------------------------*/
.gallery-items.mr-bot {
margin-bottom: 40px;
}
.grid-item-holder {
float: left;
width: 100%;
height: auto;
position: relative;
overflow: hidden;
}
.spad .grid-item-holder {
padding: 10px;
}
.grid-small-pad .grid-item-holder {
padding: 10px 20px 10px 0;
}
.gallery-item,
.grid-sizer {
width: 33.3%;
position: relative;
float: left;
}
.gallery-item-second,
.grid-sizer-second {
width: 66.6%;
}
.four-column .gallery-item {
width: 25%;
}
.four-column .gallery-item.gallery-item-second {
width: 50%;
}
.gallery-item img,
.grid-sizer img {
width: 100%;
height: auto;
position: relative;
z-index: 1;
}
/*------ Image collage------------------------------------------------*/
.images-collage-item img {
width: 100%;
height: 100%;
}
.images-collage-item {
border-radius: 100%;
overflow: hidden;
}
.images-collage-main {
position: relative;
z-index: 3;
width: 160px;
height: 160px;
display: inline-block;
margin-top: 90px;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.2);
}
.images-collage-other {
width: 90px;
height: 90px;
position: absolute;
z-index: 1;
}
.images-collage-title {
position: absolute;
right: 30%;
width: 180px;
padding: 12px 0;
background: #fff;
z-index: 10;
top: 20px;
border-radius: 30px;
font-weight: 800;
font-size: 18px;
color: #566985;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
.images-collage:before {
content: "";
position: absolute;
width: 250px;
height: 250px;
top: 50%;
left: 50%;
margin-top: -125px;
margin-left: -125px;
border: 2px dotted #fff;
z-index: -1;
opacity: 0.6;
border-radius: 100%;
}
.anim-col {
animation: anim-col 4.15s infinite;
}
@-moz-keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
@-webkit-keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
@keyframes anim-col {
0% {
margin-top: 0;
}
50% {
margin-top: -50px;
}
100% {
margin-top: 0;
}
}
/*-------------Fonts---------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,800i,900|Quicksand:300,400,500,700&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese");
/*-------------General Style---------------------------------------*/
html {
overflow-x: hidden !important;
height: 100%;
}
@-o-viewport {
width: device-width;
}
@-ms-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
/*--------------Typography--------------------------------------*/
/* p {
font-size: 12px;
line-height: 24px;
padding-bottom: 10px;
font-weight: 500;
color: #878c9f;
} */
blockquote {
float: left;
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 15px solid #eee;
position: relative;
}
blockquote:before {
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
content: "\f10e";
position: absolute;
color: #ccc;
bottom: 3px;
font-size: 43px;
right: 6px;
opacity: 0.4;
}
blockquote p {
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
color: #494949;
}
/*------ loader-------------------------------------------------*/
.loader-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
background: #2f3b59;
-webkit-transform: translate3d(0, 0, 0);
}
.pin {
width: 30px;
height: 30px;
border-radius: 50% 50% 50% 0;
background: #89849b;
position: absolute;
transform: rotate(-45deg);
left: 50%;
top: 50%;
margin: -20px 0 0 -20px;
}
.pin:after {
content: "";
width: 14px;
height: 14px;
top: 8px;
left: 8px;
background: #2f3b59;
position: absolute;
border-radius: 50%;
}
.pulse {
background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
height: 14px;
width: 14px;
position: absolute;
left: 50%;
top: 50%;
margin: 11px 0px 0px -12px;
transform: rotateX(55deg);
z-index: -2;
}
.pulse:after {
content: "";
border-radius: 50%;
height: 40px;
width: 40px;
position: absolute;
margin: -13px 0 0 -19px;
animation: pulsate 1s ease-out;
animation-iteration-count: infinite;
opacity: 0;
box-shadow: 0 0 1px 3px #4db7fe;
}
@keyframes pulsate {
0% {
transform: scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: scale(1.2, 1.2);
opacity: 0;
}
}
/* ---------Content Styles--------------------------------------*/
#main {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
opacity: 0;
}
.container {
max-width: 1224px;
width: 92%;
margin: 0 auto;
position: relative;
z-index: 5;
}
.big-container {
max-width: 1500px;
}
.small-container {
max-width: 1024px;
}
#wrapper {
float: left;
width: 100%;
position: relative;
z-index: 5;
padding-top: 80px;
}
#wrapper.no-padding {
padding-top: 0;
}
.content {
width: 100%;
position: relative;
z-index: 4;
float: left;
background: #fff;
}
.content.fs-slider-wrap {
padding-top: 80px;
}
.fl-wrap {
float: left;
width: 100%;
position: relative;
}
.no-bg {
background: none;
}
.full-height {
height: 100%;
}
.full-width-wrap {
width: 100%;
}
.bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background-size: cover;
background-attachment: scroll;
background-position: center;
background-repeat: repeat;
background-origin: content-box;
}
.shapes-bg-small:before,
.shapes-bg-big:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: repeat;
opacity: 0.3;
}
/* .shapes-bg-small:before {
background-attachment: scroll;
background-size: cover;
background-image: url(../images/bg/shapes-small.png);
}
.shapes-bg-big:before {
background-image: url(../images/bg/shapes-big.png);
} */
.respimg {
width: 100%;
height: auto;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
z-index: 2;
}
.overlay-width-70 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 70%;
background: #0b73bb;
opacity: 0.6;
z-index: 2;
}
.box-item {
float: left;
width: 100%;
position: relative;
overflow: hidden;
}
.box-item:before {
content: "";
position: absolute;
ltop: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 2;
background: rgba(51, 51, 51, 0.41);
transition: all 300ms linear;
}
.box-item a.gal-link {
position: absolute;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 100%;
color: #fff;
z-index: 10;
transition: all 300ms linear;
}
.fw-separator {
float: left;
width: 100%;
margin: 25px 0;
height: 1px;
background: #eee;
}
/* ------Header------------------------------------------------------------ */
.main-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
padding: 0 0 6px 0;
-webkit-transform: translate3d(0, 0, 0);
height: 80px;
}
.center-header .header-inner {
max-width: 1224px;
margin: 0 auto;
position: relative;
}
.center-header .header-inner .show-search-button {
display: block;
}
.center-header .header-search {
display: none;
position: absolute;
left: 20px;
top: 100px;
border-radius: 30px;
box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 0.2);
}
.dark-header {
background: #2f3b59;
}
.fs-header {
padding: 0px 50px;
}
.logo-holder {
float: left;
position: relative;
top: 25px;
height: 30px;
}
.logo-holder img {
height: 100%;
width: auto;
}
.add-list {
float: right;
padding: 13px 32px;
position: relative;
top: 20px;
border-radius: 30px;
color: #fff;
font-weight: 700;
text-transform: uppercase;
font-size: 11px;
}
.add-list span {
padding-left: 4px;
font-weight: 700;
}
.dark-header .add-list {
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.2);
}
.dark-header .add-list:hover {
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.1);
}
.show-reg-form {
float: right;
color: #666;
cursor: pointer;
margin-right: 40px;
position: relative;
top: 34px;
font-size: 13px;
font-weight: 600;
}
.dark-header .show-reg-form {
color: #fff;
}
.show-reg-form:before {
content: "";
position: absolute;
top: 50%;
right: -20px;
height: 30px;
width: 1px;
margin-top: -15px;
background: rgba(255, 255, 255, 0.41);
}
.dark-header .show-reg-form:before {
color: #fff;
background: rgba(255, 255, 255, 0.21);
}
.show-reg-form i {
padding-right: 10px;
}
.vis-header-search {
float: left;
margin-left: 30px;
position: relative;
top: 20px;
}
.header-search-input-item input {
border: none;
height: 40px;
line-height: 40px;
padding: 0 20px;
float: left;
width: 130px;
}
.header-search-input-item {
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
overflow: hidden;
background: #fff;
}
.header-search-select-item {
background: #fff;
height: 40px;
border-left: 1px solid #eee;
}
.header-search-select-item .nice-select {
color: #292929;
float: left;
width: 100%;
border: none;
min-width: 150px;
height: 40px;
line-height: 40px;
}
.header-search-select-item .nice-select .list {
width: 100%;
padding: 60px 12px 10px;
background: #fff;
border-radius: 4px;
}
.header-search-select-item .nice-select .list li {
float: left;
width: 100%;
padding: 5px 10px 6px;
color: #666;
font-size: 13px;
border-radius: 2px;
min-height: 20px;
line-height: 20px;
}
.header-search-select-item .nice-select .nice-select-search {
border: 1px solid #eee;
}
.header-search-select-item .nice-select .list li:hover,
.header-search-select-item .nice-select .list li.selected {
color: #fff;
}
.header-search-input-item,
.header-search-select-item,
.header-search-button {
float: left;
}
.header-search-button {
height: 40px;
border: none;
color: #fff;
line-height: 40px;
border-radius: none;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
padding: 0 30px;
cursor: pointer;
}
.show-search-button {
display: none;
color: #fff;
float: left;
position: relative;
margin-left: 20px;
top: 32px;
cursor: pointer;
font-weight: 600;
padding-left: 18px;
}
.show-search-button:before {
content: "";
position: absolute;
left: 0;
top: -6px;
bottom: -6px;
width: 1px;
background: rgba(255, 255, 255, 0.21);
}
.show-search-button i {
padding-right: 8px;
}
.header-user-menu {
float: right;
position: relative;
top: 20px;
margin-left: 50px;
margin-right: 40px;
}
.header-user-menu:after {
content: "";
position: absolute;
left: -70px;
height: 30px;
top: 4px;
width: 1px;
background: rgba(255, 255, 255, 0.21);
}
.header-user-name {
position: relative;
float: left;
cursor: pointer;
color: #fff;
transition: 0.2s;
white-space: nowrap;
text-overflow: ellipsis;
padding-top: 10px;
font-weight: 600;
}
.header-user-name:before {
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
content: "\f0d7";
position: absolute;
color: #fff;
bottom: 1px;
font-size: 13px;
right: -16px;
transition: all 0.2s ease-in-out;
}
.header-user-name span {
position: absolute;
width: 38px;
height: 38px;
border-radius: 100%;
overflow: hidden;
top: 0;
left: -50px;
}
.header-user-name span img {
width: 100%;
height: 100%;
}
.header-user-menu ul {
margin: 10px 0 0 0;
opacity: 0;
visibility: hidden;
position: absolute;
min-width: 150px;
top: 60px;
left: -50px;
z-index: 1;
padding: 10px 0;
background: #fff;
border-radius: 6px;
border: 1px solid #eee;
transition: all 0.2s ease-in-out;
}
.header-user-name.hu-menu-visdec:before {
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
.header-user-menu ul.hu-menu-vis {
opacity: 1;
visibility: visible;
top: 40px;
}
.header-user-menu ul li {
float: left;
width: 100%;
padding: 4px 0;
}
.header-user-menu ul li a {
color: #50596e;
float: left;
width: 100%;
font-weight: 500;
text-align: left;
padding: 6px 15px;
}
/* ------Navigation------------------------------------------------------------ */
.nav-holder {
float: right;
position: relative;
top: 18px;
margin-right: 30px;
opacity: 1;
right: 0;
visibility: visible;
}
.nav-holder nav {
position: relative;
float: right;
}
.nav-holder nav li {
float: left;
position: relative;
margin-left: 6px;
height: 70px;
}
.nav-holder nav li ul {
margin: 30px 0 0 0;
opacity: 0;
visibility: hidden;
position: absolute;
min-width: 150px;
top: 50px;
left: 0;
z-index: 1;
padding: 10px 0;
background: #fff;
border-radius: 6px;
border: 1px solid #eee;
transition: all 0.2s ease-in-out;
}
.nav-holder nav li:hover > ul {
opacity: 1;
visibility: visible;
margin: 0;
}
.nav-holder nav li ul li ul {
top: -10px;
left: -100%;
margin-left: 25px;
margin-top: 0;
max-width: 150px;
}
.nav-holder nav li ul li:hover > ul {
opacity: 1;
visibility: visible;
margin-right: 0px;
}
.nav-holder nav li ul li {
width: 100%;
float: left;
height: auto;
position: relative;
}
.nav-holder nav li a {
float: left;
padding: 10px;
font-size: 13px;
font-style: normal;
font-weight: 800;
text-transform: none;
line-height: 25px;
letter-spacing: 0px;
color: #494949;
transition: all 100ms linear;
}
.dark-header .nav-holder nav li a {
color: #fff;
}
.nav-holder nav li a:before {
content: "";
position: absolute;
bottom: -19px;
left: 0;
right: 0;
height: 4px;
border-radius: 4px;
display: none;
}
.nav-holder nav li a.act-link:before {
display: block;
}
.nav-holder nav li a i {
padding-left: 6px;
transition: all 200ms linear;
}
.nav-holder nav li a:hover i {
transform: rotateX(180deg);
}
.nav-holder nav li ul a {
color: #566985;
float: left;
width: 100%;
font-weight: 500;
text-align: left;
padding: 5px 15px;
}
.dark-header .nav-holder nav li ul a {
color: #fff;
}
nav li ul a:before,
nav li ul a:after {
display: none;
}
.nav-button-wrap {
float: right;
height: 38px;
width: 38px;
cursor: pointer;
position: relative;
border-radius: 4px;
top: 24px;
margin-right: 16px;
display: none;
}
.nav-button {
position: absolute;
top: 50%;
left: 50%;
width: 22px;
height: 20px;
margin-left: -11px;
margin-top: -6px;
}
.nav-button span {
float: left;
width: 100%;
height: 2px;
background: #fff;
margin-bottom: 4px;
border-radius: 4px;
transition: all 200ms linear;
}
/*------ section-------------------------------------------------*/
section {
float: left;
width: 100%;
position: relative;
padding: 80px 0;
overflow: hidden;
background: #fff;
z-index: 1;
}
section.no-top-padding {
padding: 50px 0;
}
section.no-pading {
padding-bottom: 0;
}
.header-sec-link {
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
z-index: 20;
}
.header-sec-link a {
display: inline-table;
padding: 15px 40px;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background: #0b73bb;
font-weight: 700;
color: #fff;
text-transform: uppercase;
font-size: 12px;
box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
}
section.color-bg .header-sec-link a {
color: #fff;
background: #fff !important;
}
section.color-bg .header-sec-link a:hover {
color: #fff;
}
.header-sec-link a:hover {
color: #666;
background: #fff;
}
section.hero-section {
padding: 150px 0 100px;
}
section.hero-section.no-dadding {
padding: 0;
}
section.gray-section {
background: #f9f9f9;
}
section.hero-section .bg {
height: 120%;
top: -10%;
}
section.parallax-section {
padding: 110px 0;
}
section.video-section {
padding: 150px 0;
}
section.single-par {
padding: 180px 0;
}
section.parallax-section.small-par {
padding: 90px 0;
}
.hero-section-wrap {
z-index: 30;
}
section.parallax-section .bg {
height: 120%;
top: 0;
}
.section-title {
display: flex;
float: left;
width: 100%;
position: relative;
padding-bottom: 50px;
}
.section-title .breadcrumbs {
margin-top: 20px;
}
.section-title .breadcrumbs a,
.section-title .breadcrumbs span {
color: rgba(255, 255, 255, 0.71);
display: inline-block;
padding: 0 16px;
position: relative;
font-weight: 500;
}
.section-title .breadcrumbs span,
.section-title .breadcrumbs a:hover {
color: #fff;
}
.section-title .breadcrumbs a:before {
content: "";
position: absolute;
top: 50%;
right: -4px;
margin-top: -3px;
width: 6px;
height: 6px;
border-radius: 100%;
}
section.color-bg .section-title .breadcrumbs {
margin-top: 0;
margin-bottom: 10px;
}
section.color-bg .section-title .breadcrumbs a:before {
background: #fff !important;
}
.section-title p {
color: #7d93b2;
font-size: 13px;
}
.section-title h2 {
float: left;
width: 100%;
text-align: center;
color: #566985;
font-size: 34px;
font-weight: 700;
}
/* .hero-section .intro-item h2 {
font-size: 54px;
} */
.parallax-section .section-title h2 {
font-size: 44px;
}
.section-separator {
float: left;
width: 100%;
position: relative;
margin: 20px 0;
}
section.gray-section .section-separator {
background: #f9f9f9;
}
.section-separator:before {
content: "";
position: absolute;
left: 50%;
top: 0;
height: 4px;
margin-left: -25px;
width: 50px;
border-radius: 3px;
}
.section-title h3 {
color: white;
}
.section-separator.fl-sec-sep:before {
left: 0;
margin-left: 0;
}
.parallax-section .section-title h2,
.parallax-section .section-title p {
color: #fff;
}
.parallax-section .section-title.left-align,
.parallax-section .section-title.left-align h2 {
text-align: left;
}
.section-subtitle {
position: absolute;
width: 100%;
text-align: center;
left: 0;
top: -20px;
font-size: 64px;
opacity: 0.13;
z-index: -1;
text-transform: uppercase;
font-weight: bold;
}
.parallax-section .section-subtitle {
color: #fff;
opacity: 0.2;
}
.section-subtitle:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, rgba(255, 255, 255, 255)),
color-stop(100%, rgba(255, 255, 255, 0.75))
);
background: -webkit-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: -o-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: -ms-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(255, 255, 255, 0.75) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffff',GradientType=0 );
}
.gray-section .section-subtitle:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, rgba(249, 249, 249, 249)),
color-stop(100%, rgba(249, 249, 249, 0.75))
);
background: -webkit-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: -o-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: -ms-linear-gradient(
top,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
rgba(249, 249, 249, 0.75) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffff',GradientType=0 );
}
.parallax-section .section-subtitle:before {
display: none;
}
/*-------------Button---------------------------------------*/
/* .btn {
padding: 12px 30px;
border-radius: 6px;
color: #878c9f;
font-weight: 600;
} */
.btn.color-bg:hover {
background: #2f3b59;
}
.btn i {
padding-left: 10px;
}
.btn.big-btn {
padding: 15px 40px;
}
.btn.circle-btn {
border-radius: 30px;
}
.btn.transparent-btn {
border: 2px solid;
}
.btn.float-btn {
float: left;
margin: 10px 0;
}
.btn.transparent-btn:hover,
.btn.flat-btn {
color: #fff;
}
.dec-btn:before {
content: "";
position: absolute;
left: -6px;
right: -6px;
top: -6px;
bottom: -6px;
border: 1px solid #eee;
border-radius: 30px;
}
.list-author-widget-text .btn {
display: inline-table;
margin-top: 16px;
}
.trs-btn {
display: inline-block;
padding: 15px 35px;
color: #fff;
margin-top: 30px;
border-radius: 30px;
position: relative;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.4);
}
.list-single-btn {
display: inline-block;
padding: 15px 35px;
background: #fff;
margin-top: 90px;
border-radius: 30px;
position: relative;
border: 1px solid #eee;
font-size: 14px;
}
.list-single-btn i {
padding-left: 10px;
}
/*------ Home / Sliders-------------------------------------------------*/
.intro-item h2 {
padding-bottom: 20px;
text-align: center;
}
.intro-item h3 {
font-size: 13px;
font-weight: 500;
text-align: center;
}
.main-search-input {
background: #fff;
padding: 0 120px 0 0;
border-radius: 30px;
line-height: 48px;
margin-top: 50px;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
border-radius: 30px;
}
.main-search-input-item {
float: left;
box-sizing: border-box;
border-right: 1px solid #eee;
height: 50px;
position: relative;
}
.main-search-input-item-left {
float: left;
width: 66.6%;
box-sizing: border-box;
border-right: 1px solid #eee;
height: 50px;
position: relative;
}
.main-search-input-item input {
float: left;
border: none;
width: 100%;
height: 50px;
padding-left: 20px;
}
.main-search-input-item input:first-child {
border-radius: 100%;
}
.main-search-button {
position: absolute;
right: 0px;
height: 50px;
width: 120px;
backgroundcolor: #0b73bb;
color: #fff;
top: 0;
border: none;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.main-search-input-item .nice-select {
color: #292929;
float: left;
width: 100%;
border: none;
min-width: 150px;
height: 50px;
z-index: 100;
line-height: 50px;
}
.main-search-input-item .nice-select .list {
width: 100%;
padding: 60px 12px 10px;
background: #fff;
border-radius: 4px;
maxheight: 180px;
}
.main-search-input-item .nice-select .list li {
float: left;
width: 100%;
padding: 5px 10px 6px;
color: #666;
font-size: 13px;
border-radius: 2px;
min-height: 20px;
line-height: 20px;
}
.main-search-input-item .nice-select .nice-select-search {
border: 1px solid #eee;
border-radius: 6px !important ;
}
.main-search-input-item .nice-select .list li:hover,
.main-search-input-item .nice-select .list li.selected {
color: #fff;
}
.main-search-input-wrap {
max-width: 900px;
margin: 20px auto;
position: relative;
}
.main-search-input:before {
content: "";
position: absolute;
bottom: -40px;
width: 50px;
height: 1px;
background: rgba(255, 255, 255, 0.41);
left: 50%;
margin-left: -25px;
}
.main-search-input-item.location a {
position: absolute;
top: 18px;
right: 22px;
z-index: 500;
}
.main-search-input-item.location a:hover {
border-radius: 100%;
animation: pulse 1.1s infinite ease-in-out;
}
.slider-container-wrap {
padding: 300px 0;
}
.slider-container-wrap.fs-slider {
padding: 0;
}
.slider-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.slider-container .hero-section-wrap {
padding-top: 150px;
}
.slider-container-wrap.fs-slider .hero-section-wrap {
top: 35%;
padding-top: 0;
}
.bubble-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 3;
}
.individual-bubble {
position: absolute;
border-radius: 100%;
bottom: 0;
backgroundcolor: #ccc;
z-index: 1;
width: 5px !important;
height: 5px !important;
background: #fff;
opacity: 0.3;
-webkit-animation: fade 20s infinite;
}
@-webkit-keyframes fade {
from {
bottom: -24px;
opacity: 0.5;
visibility: visible;
}
to {
bottom: 120%;
}
}
@keyframes fade {
from {
bottom: -24px;
opacity: 0.5;
visibility: visible;
}
to {
bottom: 120%;
}
}
.absolute-main-search-input {
position: absolute;
bottom: 70px;
left: 50%;
margin-left: -450px;
width: 900px;
z-index: 10;
}
.absolute-main-search-input .container {
max-width: 900px;
}
.absolute-main-search-input .main-search-input {
box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 0.1);
}
.slideshow-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110%;
z-index: 1;
}
.slideshow-item,
.slideshow-container .slick-slide {
position: relative;
float: left;
width: 100%;
height: 100%;
}
.sw-btn {
position: absolute;
top: 50%;
width: 44px;
height: 44px;
line-height: 44px;
border-radius: 100%;
color: #fff;
z-index: 120;
cursor: pointer;
margin-top: -22px;
box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.4);
}
.sw-btn.swiper-button-prev {
left: 50px;
}
.sw-btn.swiper-button-next {
right: 50px;
}
.sw-btn:hover {
background: #2c3b5a;
}
.single-carousel .slick-dots,
.listing-carousel .slick-dots {
bottom: -50px;
}
.single-carousel .slick-dots li button,
.listing-carousel .slick-dots li button {
background: #bdcbdb;
}
.list-single-carousel-wrap {
height: 500px;
background: #24324f;
}
.fw-carousel .slick-slide-item {
width: auto;
height: 500px !important;
float: left;
cursor: w-resize;
}
.fw-carousel .slick-slide-item img {
width: auto;
height: 100% !important;
}
.list-single-carousel-wrap .slick-slide-item .box-item {
height: 100%;
z-index: 20;
}
.list-single-carousel-wrap .slick-slide-item .box-item:before {
display: none;
}
.list-single-carousel-wrap .slick-slide-item {
float: left;
width: auto;
height: 100%;
padding: 0 0px 0 0;
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;
overflow: hidden;
}
.list-single-carousel-wrap .swiper-slide:first-child {
padding-left: 0px;
}
.list-single-carousel-wrap .slick-slide-item .box-item a.gal-link {
top: -100px;
right: 50px;
}
.list-single-carousel-wrap .slick-slide-item .box-item:hover a.gal-link {
top: 50px;
}
.list-single-carousel-wrap .sw-btn,
.single-slider-wrapper .sw-btn {
top: 50%;
}
.list-carousel .sw-btn.swiper-button-prev {
left: 8px;
}
.list-carousel .sw-btn.swiper-button-next {
right: 8px;
}
.single-slider img {
width: 100%;
height: auto;
}
.slick-dots {
position: absolute;
bottom: 40px;
left: 0;
width: 100%;
}
.slick-dots li {
position: relative;
display: inline-block;
width: 10px;
height: 10px;
margin: 0 3px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 6px;
height: 6px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: rgba(255, 255, 255, 0.51);
border-radius: 100%;
}
.box-cat-container {
display: inline-table;
margin-top: 10px;
}
.box-cat {
display: inline-block;
padding: 20px 0;
border-radius: 6px;
color: #fff;
margin: 0 10px;
min-width: 120px;
box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
}
.box-cat:hover {
background: #2c3b5a;
}
.box-cat i {
padding-bottom: 10px;
font-size: 16px;
}
.bg-ser {
transition: all 400ms linear;
}
.popular-searching {
float: left;
width: 100%;
margin-top: 40px;
}
.popular-searching div,
.popular-searching a {
display: inline-block;
margin-right: 20px;
font-weight: 500;
}
.popular-searching div {
color: #fff;
margin-bottom: 20px;
font-size: 13px;
}
.popular-searching a {
color: rgba(255, 255, 255, 0.81);
font-size: 13px;
}
.popular-searching a:hover {
color: #fff;
}
/*------ register form------------------------------------------------*/
.main-register-wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
overflow: auto;
display: none;
-webkit-transform: translate3d(0, 0, 0);
background: rgba(0, 0, 0, 0.81);
}
.hid-body {
overflow: hidden;
}
.main-register-holder {
max-width: 480px;
margin: 100px auto 50px;
position: relative;
z-index: 5;
}
.main-register h3 {
float: left;
width: 100%;
text-align: left;
font-size: 20px;
padding: 20px 30px;
margin-bottom: 20px;
font-weight: 600;
color: #666;
border-bottom: 1px solid #eee;
}
.main-register h3 span {
font-weight: 800;
font-size: 18px;
color: #566985;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
}
.main-register {
float: left;
width: 100%;
position: relative;
padding: 0 0 30px;
margin-bottom: 50px;
background: #fff;
border-radius: 6px;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.12);
}
.close-reg {
position: absolute;
top: 14px;
right: 30px;
border-radius: 100%;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.soc-log {
padding: 15px 30px;
}
.soc-log p {
margin-bottom: 12px;
font-size: 13px;
color: #454545;
}
.soc-log a {
float: left;
width: 100%;
padding: 13px 0;
color: #fff;
margin-bottom: 10px;
border-radius: 4px;
font-size: 14px;
line-height: 30px;
font-weight: 500;
}
.soc-log a i {
font-size: 20px;
padding-right: 15px;
position: relative;
top: 3px;
}
.soc-log a.facebook-log {
background: #3b5998;
}
.soc-log a.twitter-log {
background: #55acee;
}
.close-reg:hover,
.custom-form .log-submit-btn:hover,
.soc-log a:hover {
background: #2f3b59;
}
.log-separator span {
position: relative;
width: 90px;
display: inline-block;
background: #fff;
z-index: 2;
}
.log-separator:before {
content: "";
position: absolute;
top: 50%;
left: 30px;
right: 30px;
height: 1px;
background: #eee;
z-index: 1;
}
.custom-form .log-submit-btn {
float: left;
padding: 13px 35px;
border: none;
border-radius: 4px;
color: #fff;
cursor: pointer;
-webkit-appearance: none;
margin-top: 12px;
}
.main-register .filter-tags {
float: left;
}
.lost_password {
margin-top: 36px;
float: right;
}
.lost_password a {
float: left;
color: #50596e;
font-size: 12px;
font-weight: 600;
}
#tabs-container {
float: left;
width: 100%;
margin-top: 20px;
padding: 0 30px;
}
.tab {
float: left;
width: 100%;
}
.tabs-menu {
float: left;
width: 100%;
margin-top: 20px;
margin-bottom: 30px;
border-bottom: 1px solid #eee;
}
.tabs-menu li {
float: left;
margin-right: 20px;
}
.tabs-menu li a {
float: left;
padding: 14px 35px;
font-weight: 500;
color: #494949;
background: #eee;
border-radius: 3px 3px 0 0;
}
.tabs-menu li.current a,
.tabs-menu li a:hover {
color: #fff;
}
.tab-content {
width: 100%;
padding: 20px 0;
display: none;
}
#tab-1 {
display: block;
} | 0.492432 | 0.193395 |
@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
/* #abc {
width: 100%;
height: 100vh;
background: transparent;
} */
nav {
width: 100%;
height: 50px;
background:transparent;
line-height: 50px;
color: white;
}
nav ul {
float: right;
margin-right: 30px;
color: white;
}
nav ul li {
list-style-type: none;
display: inline-block;
transition: 0.7s all;
font-family: 'Poppins', sans-serif;
color: white;
}
nav ul li:hover {
color: white;
background-color: grey;
}
nav ul li a{
text-decoration: none;
color: white;
padding: 30px;
cursor: url("https://i.pinimg.com/originals/3f/18/9e/3f189ecb200247fad4c22c7b34d49663.jpg"), default;
}
.autograph {
font-family: 'Satisfy', sans-serif;
color: white;
}
.githubIcon {
padding-top: 10px;
float: right;
animation: github 5s;
-webkit-animation: github 5s;
-moz-animation: github 5s;
-o-animation: github 5s;
-ms-animation: github 5s;
display: initial;
}
.down {
margin-top: 600px;
margin-left: 160px;
-webkit-animation: move 2s infinite alternate;
animation: move 2s infinite alternate;
}
@-webkit-keyframes move {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}
@keyframes move {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}
.text {
font-family: 'Lato';
text-align: center;
color: #fff;
display: initial;
float: right;
flex-direction: column;
justify-content: right;
height: 100vh;
letter-spacing: 1px;
padding-top: 250px;
padding-right: 100px;
}
.h2 {
background-image: url('https://media2.giphy.com/media/EIbqAlY9yJlJ3WBHjc/200w.webp?cid=ecf05e47buw6607d4y24l814rh1vz11hs3rhthjpfy933t75&rid=200w.webp&ct=g');
background-size: cover;
color: transparent;
-moz-background-clip: text;
-webkit-background-clip: text;
-webkit-animation: imgText 5s;
-moz-animation: imgText 5s;
-o-animation: imgText 5s;
-ms-animation: imgText 5s;
text-transform: uppercase;
font-size: 60px;
line-height: .75;
margin: 10px 0;
font-weight: bold;
}
@keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
body {
background-image: url('https://cutewallpaper.org/21/galaxy-gif-background/Galaxy-Background-Gif-High-Res-Wendy-Anime-Art-Amino-.gif');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
cursor: url("https://i.pinimg.com/originals/3f/18/9e/3f189ecb200247fad4c22c7b34d49663.jpg"), default;
}
.fade-image {
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
height: 2cm;
width: 2cm;
margin-left: 500px;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.container .fade-image {
float: right;
bottom: 0;
margin-left: 500px;
border-radius: 150px;
width:300px;
height: 3000px;
box-shadow:5px 5px #11D086;
margin-top: -60px;
}
body, html {
overflow: hidden;
background-color: black;
margin: 0;
}
.container{
background: transparent;
display: flex;
float: left;
width: max-content;
height: max-content;
padding-top: 200px;
margin-bottom: 400px;
padding-left: 300px;
}
.container .box {
width: 250px;
height: 250px;
position: relative;
display: flex;
justify-content: center;
flex-direction: column;
}
.container .box .title {
width: 100%;
position: relative;
display: flex;
align-items: center;
height: 50px;
}
.container .box .title .block {
width: 0%;
height: inherit;
background: #ffb510;
position: absolute;
animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
display: flex;
margin-top:160px;
margin-left: 50px;
size: 5cm;
}
.container .box .title h1 {
font-family: "Poppins";
color: #fff;
font-size: 100px;
-webkit-animation: mainFadeIn 2s forwards;
-o-animation: mainFadeIn 2s forwards;
animation: mainFadeIn 2s forwards;
animation-delay: 1.6s;
opacity: 0;
display: flex;
align-items: baseline;
position: relative;
margin-left: 50px;
margin-top: 200px;
text-shadow: 4px 4px #11D086;
}
.container .box .role {
width: 100%;
position: relative;
display: flex;
align-items: center;
height: 30px;
margin-top: -10px;
}
.container .box .role .block {
height: inherit;
background: #eb0951;
position: absolute;
animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
animation-delay: 2s;
display: flex;
box-shadow: 5px 5px 5px #11D086;
margin-left: 50px;
size: 5cm;
margin-top: 500px;
}
.container .box .role p {
animation: secFadeIn 2s forwards;
animation-delay: 3.2s;
opacity: 0;
font-weight: 400;
font-family: 'Lato';
color: #fff;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 5px;
margin-left: 70px;
margin-top: 500px;
}
@keyframes mainBlock {
0% {
width: 0%;
left: 0;
}
50% {
width: 100%;
left: 0;
}
100% {
width: 0;
left: 100%;
}
}
@keyframes secBlock {
0% {
width: 0%;
left: 0;
}
50% {
width: 100%;
left: 0;
}
100% {
width: 0;
left: 100%;
}
}
@keyframes mainFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
width: 5cm;
}
}
@keyframes secFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 0.5;
}
} | index.css | @import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
/* #abc {
width: 100%;
height: 100vh;
background: transparent;
} */
nav {
width: 100%;
height: 50px;
background:transparent;
line-height: 50px;
color: white;
}
nav ul {
float: right;
margin-right: 30px;
color: white;
}
nav ul li {
list-style-type: none;
display: inline-block;
transition: 0.7s all;
font-family: 'Poppins', sans-serif;
color: white;
}
nav ul li:hover {
color: white;
background-color: grey;
}
nav ul li a{
text-decoration: none;
color: white;
padding: 30px;
cursor: url("https://i.pinimg.com/originals/3f/18/9e/3f189ecb200247fad4c22c7b34d49663.jpg"), default;
}
.autograph {
font-family: 'Satisfy', sans-serif;
color: white;
}
.githubIcon {
padding-top: 10px;
float: right;
animation: github 5s;
-webkit-animation: github 5s;
-moz-animation: github 5s;
-o-animation: github 5s;
-ms-animation: github 5s;
display: initial;
}
.down {
margin-top: 600px;
margin-left: 160px;
-webkit-animation: move 2s infinite alternate;
animation: move 2s infinite alternate;
}
@-webkit-keyframes move {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}
@keyframes move {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-20px);
}
}
.text {
font-family: 'Lato';
text-align: center;
color: #fff;
display: initial;
float: right;
flex-direction: column;
justify-content: right;
height: 100vh;
letter-spacing: 1px;
padding-top: 250px;
padding-right: 100px;
}
.h2 {
background-image: url('https://media2.giphy.com/media/EIbqAlY9yJlJ3WBHjc/200w.webp?cid=ecf05e47buw6607d4y24l814rh1vz11hs3rhthjpfy933t75&rid=200w.webp&ct=g');
background-size: cover;
color: transparent;
-moz-background-clip: text;
-webkit-background-clip: text;
-webkit-animation: imgText 5s;
-moz-animation: imgText 5s;
-o-animation: imgText 5s;
-ms-animation: imgText 5s;
text-transform: uppercase;
font-size: 60px;
line-height: .75;
margin: 10px 0;
font-weight: bold;
}
@keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes imgText {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes github {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes arr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
body {
background-image: url('https://cutewallpaper.org/21/galaxy-gif-background/Galaxy-Background-Gif-High-Res-Wendy-Anime-Art-Amino-.gif');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
cursor: url("https://i.pinimg.com/originals/3f/18/9e/3f189ecb200247fad4c22c7b34d49663.jpg"), default;
}
.fade-image {
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
height: 2cm;
width: 2cm;
margin-left: 500px;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.container .fade-image {
float: right;
bottom: 0;
margin-left: 500px;
border-radius: 150px;
width:300px;
height: 3000px;
box-shadow:5px 5px #11D086;
margin-top: -60px;
}
body, html {
overflow: hidden;
background-color: black;
margin: 0;
}
.container{
background: transparent;
display: flex;
float: left;
width: max-content;
height: max-content;
padding-top: 200px;
margin-bottom: 400px;
padding-left: 300px;
}
.container .box {
width: 250px;
height: 250px;
position: relative;
display: flex;
justify-content: center;
flex-direction: column;
}
.container .box .title {
width: 100%;
position: relative;
display: flex;
align-items: center;
height: 50px;
}
.container .box .title .block {
width: 0%;
height: inherit;
background: #ffb510;
position: absolute;
animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
display: flex;
margin-top:160px;
margin-left: 50px;
size: 5cm;
}
.container .box .title h1 {
font-family: "Poppins";
color: #fff;
font-size: 100px;
-webkit-animation: mainFadeIn 2s forwards;
-o-animation: mainFadeIn 2s forwards;
animation: mainFadeIn 2s forwards;
animation-delay: 1.6s;
opacity: 0;
display: flex;
align-items: baseline;
position: relative;
margin-left: 50px;
margin-top: 200px;
text-shadow: 4px 4px #11D086;
}
.container .box .role {
width: 100%;
position: relative;
display: flex;
align-items: center;
height: 30px;
margin-top: -10px;
}
.container .box .role .block {
height: inherit;
background: #eb0951;
position: absolute;
animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
animation-delay: 2s;
display: flex;
box-shadow: 5px 5px 5px #11D086;
margin-left: 50px;
size: 5cm;
margin-top: 500px;
}
.container .box .role p {
animation: secFadeIn 2s forwards;
animation-delay: 3.2s;
opacity: 0;
font-weight: 400;
font-family: 'Lato';
color: #fff;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 5px;
margin-left: 70px;
margin-top: 500px;
}
@keyframes mainBlock {
0% {
width: 0%;
left: 0;
}
50% {
width: 100%;
left: 0;
}
100% {
width: 0;
left: 100%;
}
}
@keyframes secBlock {
0% {
width: 0%;
left: 0;
}
50% {
width: 100%;
left: 0;
}
100% {
width: 0;
left: 100%;
}
}
@keyframes mainFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
width: 5cm;
}
}
@keyframes secFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 0.5;
}
} | 0.380299 | 0.083853 |
a:link { color: #9393ef ! important;}
a:visited {color: #7a7aad ! important;}
body {
background: #525252 !important;
color: #fffffd;
}
.book .titlepage {
background: #484848;
color: #fffffd;
margin: 0px auto;
padding: 0 1em;
}
.book hr {
background: #484848;
height: .3em;
border: 0px;
margin: 0 -1em;
padding: 0;
}
.book h2.subtitle {
text-align: center;
background: #404040;
}
h1, h2, h3, h4, h5, h6, b, .strong {
color: #fffffd;
/*background: #484848;*/
}
div.navheader * {
background: #484848;
color: #fffffd
}
div.navheader, div.navfooter {
background: #484848;
color: #fffffd
}
div.navheader {
border-bottom: 3px solid #525252;
}
div.navheader ul, div.navfooter ul {
background: #484848;
color: #fffffd
}
div.navfooter {
border-top: 1px solid #525252;
}
.sect1 h1, .appendix h1 {
background: #313131;
color: #fffffd
}
pre {
background-color: #282828;
border: 1px solid #050505;
padding: .5em 1em;
margin: 0 2em .5em 2em;
font-weight: bold;
}
.preface h1, .part h1, .chapter h1, .appendix h1, .index h1, .sect1 h1 {
background: #404040;
color: #fffffd;
border-bottom: .1em solid #525252;
}
pre.userinput {
color: #fffffd;
background: #282828;
}
pre.screen {
color: #fffffd;
background-color: #282828;
font-weight: normal;
}
.wrap h1, h2, h3, h4, h5, h6, b, .strong {
color: #fffffd;
background: #484848;
}
.lfs .package {
background: #484848;
border-bottom: 0.2em solid #484848;
}
.lfs .configuration {
background: #525252;
border-top: 0.2em solid #525252;
}
.lfs .content {
background: #525252;
border-top: 0.2em solid #525252;
padding-bottom: .1em;
margin-bottom: 0;
}
div.note, div.tip {
background-color: #737373;
border: 2px solid #000;
width: 90%;
margin: .5em auto;
}
div.admon h3 {
background-color: #737373;
display: inline;
margin-left: 2em;
}
div.important, div.warning, div.caution {
background-color: #737373;
border: medium solid #400;
width: 90%;
margin: .5em auto;
color: #fffffd;
}
div.important em, div.warning em, div.caution em {
color: #fffffd;
font-weight: bold;
} | data/usercss/141501.user.css |
a:link { color: #9393ef ! important;}
a:visited {color: #7a7aad ! important;}
body {
background: #525252 !important;
color: #fffffd;
}
.book .titlepage {
background: #484848;
color: #fffffd;
margin: 0px auto;
padding: 0 1em;
}
.book hr {
background: #484848;
height: .3em;
border: 0px;
margin: 0 -1em;
padding: 0;
}
.book h2.subtitle {
text-align: center;
background: #404040;
}
h1, h2, h3, h4, h5, h6, b, .strong {
color: #fffffd;
/*background: #484848;*/
}
div.navheader * {
background: #484848;
color: #fffffd
}
div.navheader, div.navfooter {
background: #484848;
color: #fffffd
}
div.navheader {
border-bottom: 3px solid #525252;
}
div.navheader ul, div.navfooter ul {
background: #484848;
color: #fffffd
}
div.navfooter {
border-top: 1px solid #525252;
}
.sect1 h1, .appendix h1 {
background: #313131;
color: #fffffd
}
pre {
background-color: #282828;
border: 1px solid #050505;
padding: .5em 1em;
margin: 0 2em .5em 2em;
font-weight: bold;
}
.preface h1, .part h1, .chapter h1, .appendix h1, .index h1, .sect1 h1 {
background: #404040;
color: #fffffd;
border-bottom: .1em solid #525252;
}
pre.userinput {
color: #fffffd;
background: #282828;
}
pre.screen {
color: #fffffd;
background-color: #282828;
font-weight: normal;
}
.wrap h1, h2, h3, h4, h5, h6, b, .strong {
color: #fffffd;
background: #484848;
}
.lfs .package {
background: #484848;
border-bottom: 0.2em solid #484848;
}
.lfs .configuration {
background: #525252;
border-top: 0.2em solid #525252;
}
.lfs .content {
background: #525252;
border-top: 0.2em solid #525252;
padding-bottom: .1em;
margin-bottom: 0;
}
div.note, div.tip {
background-color: #737373;
border: 2px solid #000;
width: 90%;
margin: .5em auto;
}
div.admon h3 {
background-color: #737373;
display: inline;
margin-left: 2em;
}
div.important, div.warning, div.caution {
background-color: #737373;
border: medium solid #400;
width: 90%;
margin: .5em auto;
color: #fffffd;
}
div.important em, div.warning em, div.caution em {
color: #fffffd;
font-weight: bold;
} | 0.266644 | 0.101056 |
html {
padding: 0px;
margin: 0px;
}
#container {
margin-right: 0px;
padding-right: 0px;
min-width: 1000px;
}
body {
padding: 0px;
margin: 0px;
margin-bottom: 100px;
font-family: 'Roboto', sans-serif;
}
.jsreport-header {
font-family: 'Play', sans-serif;
}
a {
text-decoration: none;
color: #B87200;
}
.header {
width: 100%;
font-family: 'Play', sans-serif;
border-bottom: 1px solid #ddd;
height: 55px;
position: relative;
}
.brand {
margin: 15px;
margin-left: 25px;
font-size: 2em;
width: 250px;
color: #00386c;
}
.brand a {
color: #00386c;
}
.brand .logo {
margin-top: -3px;
height: 1.5em;
width: 1.5em;
margin-right: 0.5em;
float: left;
}
.brand .name {
float: left;
}
.nav-right {
position: absolute;
right: 50px;
font-size: 1.25em;
font-family: 'Roboto', sans-serif;
top: 8px;
}
.nav-right .nav-link {
float: left;
}
.nav-right a {
color: #00386c;
margin-right: 15px;
position: relative;
}
.nav-right a img {
position: relative;
top: -4px;
}
#content {
width: 1000px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}
.changelog li {
line-height: 1.5em;
}
p code {
color: #00386c;
background-color: #ddd;
padding: 2px;
border-radius: 1px;
}
pre {
background-color: #ddd;
border-radius: 2px;
padding: 3px;
}
.error-gag-img {
width: 300px;
}
.error-404 {
width: 100%;
text-align: center;
}
/* Home page */
.hero {
width: 100%;
height: 500px;
background: url(/images/books.jpeg);
background-size: cover;
background-repeat: no-repeat;
min-width: 1000px;
}
.hero a {
color: white;
}
.hero .copy {
width: 100%;
background-color: rgba(255, 255, 255, 0.75);
height: 500px;
}
.hero .intro {
width: 1000px;
margin-left: auto;
margin-right: auto;
font-size: 3.5em;
color: #00386c;
text-align: center;
padding-top: 80px;
}
.hero .cta {
width: 1000px;
margin-top: 50px;
color: #232323;
margin-left: auto;
margin-right: auto;
font-size: 1.5em;
text-align: center;
}
.hero .button {
margin-top: 50px;
width: 250px;
margin-left: auto;
margin-right: auto;
font-size: 2em;
}
.button {
background-color: #B87200;
padding: 10px;
color: white;
text-align: center;
border-radius: 3px;
cursor: pointer;
border: 1px solid transparent;
font-size: 1em;
}
.button:disabled {
background-color: #dedede;
}
.button a {
color: white;
}
.follow {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
.latest-releases {
font-size: 1.25em;
width: 1000px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
}
.latest-releases .version {
width: 100%;
border: 1px solid #dfdfdf;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 10px;
}
.version .description {
margin-top: 0.5em;
font-size: 0.75em;
color: #333;
line-height: 1.5em;
}
.latest-releases .ts {
font-size: 0.75em;
color: #333333;
margin-top: 0.5em;
}
.latest-releases .button {
width: 180px;
cursor: pointer;
}
.latest-releases .changelog {
display: none;
margin: 1em;
}
.latest-releases .left {
float: left;
margin-left: 10px;
width: 700px;
}
.latest-releases .right {
float: right;
margin-right: 10px;
}
.latest-releases .right a {
color: white;
} | website/style.css | html {
padding: 0px;
margin: 0px;
}
#container {
margin-right: 0px;
padding-right: 0px;
min-width: 1000px;
}
body {
padding: 0px;
margin: 0px;
margin-bottom: 100px;
font-family: 'Roboto', sans-serif;
}
.jsreport-header {
font-family: 'Play', sans-serif;
}
a {
text-decoration: none;
color: #B87200;
}
.header {
width: 100%;
font-family: 'Play', sans-serif;
border-bottom: 1px solid #ddd;
height: 55px;
position: relative;
}
.brand {
margin: 15px;
margin-left: 25px;
font-size: 2em;
width: 250px;
color: #00386c;
}
.brand a {
color: #00386c;
}
.brand .logo {
margin-top: -3px;
height: 1.5em;
width: 1.5em;
margin-right: 0.5em;
float: left;
}
.brand .name {
float: left;
}
.nav-right {
position: absolute;
right: 50px;
font-size: 1.25em;
font-family: 'Roboto', sans-serif;
top: 8px;
}
.nav-right .nav-link {
float: left;
}
.nav-right a {
color: #00386c;
margin-right: 15px;
position: relative;
}
.nav-right a img {
position: relative;
top: -4px;
}
#content {
width: 1000px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}
.changelog li {
line-height: 1.5em;
}
p code {
color: #00386c;
background-color: #ddd;
padding: 2px;
border-radius: 1px;
}
pre {
background-color: #ddd;
border-radius: 2px;
padding: 3px;
}
.error-gag-img {
width: 300px;
}
.error-404 {
width: 100%;
text-align: center;
}
/* Home page */
.hero {
width: 100%;
height: 500px;
background: url(/images/books.jpeg);
background-size: cover;
background-repeat: no-repeat;
min-width: 1000px;
}
.hero a {
color: white;
}
.hero .copy {
width: 100%;
background-color: rgba(255, 255, 255, 0.75);
height: 500px;
}
.hero .intro {
width: 1000px;
margin-left: auto;
margin-right: auto;
font-size: 3.5em;
color: #00386c;
text-align: center;
padding-top: 80px;
}
.hero .cta {
width: 1000px;
margin-top: 50px;
color: #232323;
margin-left: auto;
margin-right: auto;
font-size: 1.5em;
text-align: center;
}
.hero .button {
margin-top: 50px;
width: 250px;
margin-left: auto;
margin-right: auto;
font-size: 2em;
}
.button {
background-color: #B87200;
padding: 10px;
color: white;
text-align: center;
border-radius: 3px;
cursor: pointer;
border: 1px solid transparent;
font-size: 1em;
}
.button:disabled {
background-color: #dedede;
}
.button a {
color: white;
}
.follow {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
.latest-releases {
font-size: 1.25em;
width: 1000px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
}
.latest-releases .version {
width: 100%;
border: 1px solid #dfdfdf;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 10px;
}
.version .description {
margin-top: 0.5em;
font-size: 0.75em;
color: #333;
line-height: 1.5em;
}
.latest-releases .ts {
font-size: 0.75em;
color: #333333;
margin-top: 0.5em;
}
.latest-releases .button {
width: 180px;
cursor: pointer;
}
.latest-releases .changelog {
display: none;
margin: 1em;
}
.latest-releases .left {
float: left;
margin-left: 10px;
width: 700px;
}
.latest-releases .right {
float: right;
margin-right: 10px;
}
.latest-releases .right a {
color: white;
} | 0.510985 | 0.091829 |
@import url('https://fonts.googleapis.com/css?family=Kanit');
body{
font-family: Kanit, sans-serif;
background-color:#F9F9F9;
}
a {
color: #F74443;
-webkit-transition: color 0.7s;
-mgoz-transition: color 0.7s;
-ms-transition: color 0.7s;
-o-transition: color 0.7s;
transition: color 0.7s;
}
.banner{
background-image: url("/image/hand-bg.jpg");
filter: brightness(45%);
background-repeat: no-repeat;
background-attachment: fixed;
background-position-x:center;
background-position-y:0;
background-size: cover;
width:100%;
height:270px;
padding-left:6vw;
padding-right:6vw;
padding-top:2vw;
}
#socialIcon{
width:35px;
height:35px;
margin-left:10px;
}
img{
max-width: 100%;
}
iframe {
width:70%; /* as desired */
height:50vh; /* as desired */
display:block;
margin:0px auto
}
p{
margin-top:20px;
}
@media(max-width:500px){
iframe {
width:100%; /* as desired */
height:30vh; /* as desired */
display:block;
margin:0px auto
}
img{
max-width: 100%;
height:auto;
}
}
#socialIconFirst{
width:35px;
height:35px;
}
#sheet{
margin-left:4vw;
margin-right:4vw;
background-color:white;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:100%;
padding-bottom:20px;
padding-top:30px;
padding-left:4vw;
padding-right:4vw;
}
#postInformation{
margin-top:-163px;
padding:0;
padding-top:40px;
padding-left:230px;
}
#img-banner{
width:55px;
height:55px;
margin-top:30px;
}
#headerNews{
font-size:33px;
font-weight:bold;
}
#des-banner{
font-size:20px;
color:white;
display:block;
margin-top:10px;
}
#header-banner{
font-size:30px;
color:white;
display:block;
}
.banner-content{
margin-top:-220px;
}
#contentcard{
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:250px;
padding:0;
transition: 0.7s;
}
#contentcard2{
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:250px;
background-color:white;
padding-top:15px;
transition: 0.7s;
}
#contentcard2:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
border-radius: 50px 15px;
}
#contentcard:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
#readmore{
height:30px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
margin-bottom:2vw;
padding-left:17px;
padding-right:17px;
margin-left:2vw;
}
#readmore:hover {
background-color: #EC0909;
color: white;
}
#readmore{
height:30px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
margin-bottom:2vw;
padding-left:17px;
padding-right:17px;
margin-left:2vw;
}
#readmore:hover {
background-color: #EC0909;
color: white;
}
#button-menu:hover {
background-color: #EC0909;
color: white;
}
.allcard{
padding-left:5vw;
padding-right:5vw;
height:100%;
overflow: hidden;
max-height:290px;
margin-bottom:40px;
-webkit-overflow-scrolling: touch;
}
.allcard::-webkit-scrollbar {
display: none;
}
.columcard{
margin-bottom:40px;
}
.card {
transition: 0.3s;
}
#moreUp{
display:none;
}
#card-des{
font-size:20px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
.moreNews{
color:#0C0C0C;
margin-right:5vw;
margin-bottom:10px;
transition: 0.7s;
}
#img-col-1-1{
height:400px;
width:22%;
}
#img-col-1-2{
height:500px;
width:36%;
margin-left:10px;
}
#img-col-1-3{
height:400px;
width:22%;
margin-left:10px;
}
#arrowLeft{
width:30px;
height:30px;
}
#arrowRight{
width:30px;
height:30px;
}
#img-col-2-1{
height:400px;
width:28%;
}
.leftfooter{
padding-left:7vw;
padding-right:7vw;
margin-top:7vw;
padding-bottom:30px;
font-size:16px;
border-right:2px solid #F74443;
}
#mobilefooter{
display:none;
}
#desktopfooter{
display:block;
}
#imgslide{
display: inline-block;
border-radius:20px;
width:20%;
height:20%;
transition: 0.7s;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
#myNavbar{
margin-top:-3px !important;
}
.navbar-fixed-top{
background-color:#404040;
margin-bottom:0;
height:59px !important;
padding-top:9px;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
#imgslide:hover{
border-radius:80px 40px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#carousel::-webkit-scrollbar {
display: none;
}
#carousel{
-webkit-overflow-scrolling: touch;
}
#borderButton{
background-color:transparent;
border-radius:15px;
border-color:#F74443;
color:white;
padding-left:17px;
padding-right:17px;
height:40px;
transition: 0.7s;
}
#borderButton:hover{
border-radius:0px;
}
.rightfooter{
padding-left:9vw;
padding-right:7vw;
margin-top:7vw;
font-size:16px;
}
#img-col-2-2{
height:400px;
width:28%;
margin-left:10px;
}
.moreNews:hover{
color: #F74443;
}
.col-2{
margin-top:20px;
}
#headerSection{
color:#0C0C0C;
font-size:42px;
font-weight:bold;
}
#box{
padding:0;
padding-left:4vw;
padding-right:4vw;
margin-top:90px;
}
#desSection{
font-size:15px;
color:#808080;
}
.divider{
border-bottom: 2px solid #E23E00;
width:120px;
}
.dividerNews{
border-bottom: 1px solid #FF9797;
width:120px;
}
.dividerContentNews{
border-bottom: 1px solid #DFDFDF;
width:85vw;
margin-top:69px;
}
.footer{
height:500px;
background-color:#343434;
}
#welcomeText{
color:white;
font-size:55px;
font-weight:bold;
}
#desText{
color:white;
font-size:20px;
}
#allTextWelcome{
padding-top:7vw;
}
.columDes{
margin-top:8px;
}
.columButton{
margin-top:23px;
}
#button-menu{
height:37px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
}
.bookLogo {
height:40px ;
width:40px;
margin-right:10px;
margin-top:-7px;
}
.background{
background-image: url("/image/book-bg.jpg");
filter: brightness(70%);
background-position-y:-150px;
background-position-x:center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
width:100%;
height:33vw;
}
.background-another{
width:100%;
filter: brightness(85%);
height:33vw;
}
.container{
margin-top:2vw;
padding-left:0;
padding-right:0;
}
.menu{
padding-left:8vw;
padding-right:8vw;
}
.header-red{
font-size:30px;
font-weight: bold;
width:69vw;
display: block;
float:left;
color:#F74443;
padding-left:4vw;
}
.nav.navbar-nav{
margin-top:-4px;
font-size:17px;
display:inline;
}
#textButton{
padding-left:15px;
padding-right:15px;
}
.nav.navbar-nav a{
color:white;
}
.navbar{
min-height:0px;
z-index: 9999;
height:30px;
}
.navbar .navbar-nav > li > a:hover ,.navbar .navbar-nav > .active > a, .navbar .navbar-nav > li > a:focus {
background-color: transparent;
color: #F74443;
}
.navbar .navbar-nav > .active{
-webkit-text-decoration-line: line-through; /* Safari */
text-decoration: underline;
}
#allSocial{
float:right;
margin-top:25px;
margin-bottom:15px;
}
#profileBox{
width:171px;
height:159px;
background-color:#FFC7C7;
padding-top:15px;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
@media only screen and (max-width: 1793px){
.header-red{
width:67vw;
}
}
@media only screen and (max-width: 1670px){
#allTextWelcome{
padding-top:6vw;
}
}
@media only screen and (max-width: 1556px) {
.header-red{
width:65vw;
}
}
@media only screen and (max-width: 1493px) {
.background{
background-position-y:-100px;
}
#img-col-1-1{
height:300px;
}
#img-col-1-2{
height:400px;
margin-left:0;
}
#img-col-1-3{
height:300px;
margin-left:0;
}
#img-col-2-1{
height:300px;
}
#img-col-2-2{
height:300px;
margin-left:0;
}
}
@media only screen and (max-width: 1463px) {
.header-red{
width:63vw;
}
}
@media only screen and (max-width: 1373px) {
.navbar-fixed-top{
height:50px !important;
padding-top:9px;
}
.leftfooter{
font-size:14px;
}
.rightfooter{
font-size:14px;
}
.header-red{
font-size:23px;
width:65vw;
}
.nav.navbar-nav{
font-size:15px;
}
.bookLogo {
height:30px ;
width:30px;
}
#welcomeText{
color:white;
font-size:45px;
}
#desText{
color:white;
font-size:15px;
}
#button-menu{
height:40px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
}
@media only screen and (max-width: 1324px) {
.header-red{
width:64vw;
}
#arrowLeft{
width:25px;
height:25px;
}
#arrowRight{
width:25px;
height:25px;
}
}
@media only screen and (max-width: 1278px) {
.header-red{
width:63vw;
}
}
@media only screen and (max-width: 1240px) {
.header-red{
width:62vw;
}
}
@media only screen and (max-width: 1204px) {
.header-red{
width:60vw;
}
#allTextWelcome{
padding-top:3vw;
}
#textButton{
padding-left:13px;
padding-right:13px;
}
#button-menu{
height:35px;
}
}
@media only screen and (max-width: 1140px) {
.header-red{
width:59vw;
}
.background{
background-position-y:-180px;
}
}
@media only screen and (max-width: 1091px) {
.header-red{
width:58vw;
}
#img-col-1-1{
height:200px;
}
#img-col-1-2{
height:300px;
}
#img-col-1-3{
height:200px;
}
#img-col-2-1{
height:250px;
}
#img-col-2-2{
height:250px;
}
}
@media only screen and (max-width: 1107px) {
.header-red{
width:56vw;
}
}
@media only screen and (max-width: 1076px) {
.header-red{
width:54vw;
}
.background{
height:33vw;
background-position-y:-140px;
}
}
@media only screen and (max-width: 1022px) {
.header-red{
width:53vw;
padding-left:3vw;
}
}
@media only screen and (max-width: 1000px) {
.header-red{
width:52vw;
}
.background{
height:37vw;
background-position-y:-100px;
}
.background-another{
height:37vw;
}
#allTextWelcome{
padding-top:6vw;
}
}
@media only screen and (max-width: 991px) {
.allcard{
max-height:580px;
}
.banner{
height:510px;
}
.banner-content{
margin-top:-445px;
}
#content-first{
margin-bottom:40px;
}
}
@media only screen and (max-width: 983px) {
.header-red{
width:51vw;
}
}
@media only screen and (max-width: 950px) {
.header-red{
width:50vw;
}
#allTextWelcome{
padding-top:5vw;
}
}
@media only screen and (max-width: 930px) {
.header-red{
width:49vw;
}
}
@media only screen and (max-width: 909px) {
.background{
background-position-y:-150px;
}
#box{
margin-top:65px;
}
#headerNews{
font-size:23px;
font-weight:bold;
}
.header-red{
width:55vw;
margin-top:-2px;
}
.nav.navbar-nav a{
font-size:12px;
}
.nav.navbar-nav{
margin-top:-10px;
}
.header-red{
font-size:17px;
}
.navbar-fixed-top{
height:47px !important;
padding-top:13px;
}
}
@media only screen and (max-width: 871px) {
.header-red{
width:53vw;
}
}
@media only screen and (max-width: 845px) {
.header-red{
width:51vw;
}
.nav.navbar-nav{
margin-right:0;
}
#allTextWelcome{
padding-top:3vw;
}
}
@media only screen and (max-width: 831px) {
#profileImage{
width:74px;
}
.dividerContentNews{
width:83vw;
margin-top:10px;
}
#sheet{
padding-top:20px;
}
#profileBox{
width:100px;
height:100px;
}
#postInformation{
margin-top:-135px;
padding-left:140px;
font-size:12px!important;
}
#allSocial{
float:none;
margin-top:10px;
}
#socialIcon{
width:28px;
height:28px;
margin-left:5px;
}
#socialIconFirst{
width:28px;
height:28px;
margin-left:2px;
}
}
@media only screen and (max-width: 814px) {
.header-red{
width:50vw;
}
}
@media only screen and (max-width: 782px) {
.header-red{
width:49vw;
}
}
@media only screen and (max-width: 767px) {
.banner{
background-attachment: initial;
}
p{
font-size:12px;
}
#readmore{
margin-left:5vw;
margin-bottom:3vw;
height:25px;
padding-left:14px;
padding-right:14px;
}
.leftfooter{
border-right:0px;
margin-top:10vw;
padding-bottom:7vw;
border-bottom:2px solid #F74443;
text-align:center;
}
.rightfooter{
padding-left:7vw;
text-align:center;
}
#setCenterButton{
text-align: center;
}
#img-col-1-1{
display:none;
}
#arrowLeft{
width:25px;
height:25px;
}
#arrowRight{
width:25px;
height:25px;
}
#imgslide{
width:50%;
height:50%;
}
.footer{
height:700px;
background-color:#343434;
}
.col-2{
margin-top:10px;
}
.header-red{
width:87vw;
margin-right:0vw;
padding-left:7.5vw;
}
#allTextWelcome{
padding-top:13vw;
}
.navbar-toggle{
float:none;
margin:0;
}
.background{
background-attachment: initial;
background-position-y:0px;
height:70vw;
}
.background-another{
height:70vw;
}
.burgerMenu{
width:22px;
height:22px;
margin-top:-20px;
}
.container{
margin-top:6vw;
}
.nav.navbar-nav a{
text-align: center;
}
.nav.navbar-nav{
margin:0;
}
#myNavbar{
background-color:#404040;
border-radius:8px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#img-col-1-2{
height:200px;
}
#img-col-1-3{
height:200px;
width:45%;
}
#img-col-2-1{
height:200px;
width:40%;
}
#img-col-2-2{
height:200px;
width:40%;
}
}
@media only screen and (max-width: 716px) {
#allTextWelcome{
padding-top:10vw;
}
#headerSection{
font-size:35px;
}
.rightfooter{
font-size:15px;
}
#desktopfooter{
display:none;
}
#mobilefooter{
display:block;
}
.leftfooter{
font-size:15px;
}
}
@media only screen and (max-width: 550px) {
#img-col-1-2{
height:170px;
}
#img-col-1-3{
height:170px;
width:45%;
}
#img-col-2-1{
height:170px;
}
#img-col-2-2{
height:170px;
}
}
@media only screen and (max-width: 520px) {
#allTextWelcome{
padding-top:5vw;
}
.allcard{
padding-left:1vw;
padding-right:1vw;
}
}
@media only screen and (max-width: 487px) {
.navbar-fixed-top{
padding-top:15px;
}
#headerNews{
font-size:18px;
font-weight:bold;
}
#cardParagraph{
font-size:12px;
}
.footer{
height:610px;
}
.leftfooter{
font-size:13px;
}
.rightfooter{
font-size:13px;
}
#arrowLeft{
width:20px;
height:20px;
}
#arrowRight{
width:20px;
height:20px;
}
#img-banner{
width:55px;
height:55px;
margin-top:30px;
}
#card-des{
font-size:17px;
}
#des-banner{
font-size:15px;
}
#header-banner{
font-size:25px;
}
.burgerMenu{
width:18px;
height:18px;
margin-top:-22px;
}
.header-red{
font-size:15px;
width:84vw;
padding-left:7.5vw;
}
.bookLogo {
height:22px ;
width:22px;
margin-top:-3px;
margin-right:5px;
}
.container{
margin-top:6vw;
}
#myNavbar{
margin-top:-6px !important;
}
#welcomeText{
font-size:38px;
}
#desText{
font-size:15px;
}
#allTextWelcome{
padding-top:5vw;
}
#button-menu{
height:33px;
}
#textButton{
padding-left:10px;
padding-right:10px;
}
#headerSection{
font-size:25px;
}
.divider{
width:80px;
}
#moreDown{
font-size:13px;
}
#moreUp{
font-size:13px;
}
.allcard{
max-height:480px;
}
#contentcard{
height:200px;
}
#contentcard2{
height:200px;
}
#img-col-1-2{
height:140px;
}
#img-col-1-3{
height:140px;
}
#img-col-2-1{
height:140px;
}
#img-col-2-2{
height:140px;
}
}
@media only screen and (max-width: 413px) {
#profileImage{
width:55px;
}
#profileBox{
width:83px;
height:80px;
}
#postInformation{
margin-top:-115px;
padding-left:100px;
font-size:11px !important;
}
#allSocial{
float:none;
margin-top:10px;
}
#socialIcon{
width:24px;
height:24px;
margin-left:5px;
}
#socialIconFirst{
width:24px;
height:24px;
}
}
@media only screen and (max-width: 404px) {
#welcomeText{
font-size:25px;
}
.dividerContentNews{
width:91vw;
}
#desText{
font-size:10px;
}
#allTextWelcome{
padding-top:8vw;
}
#button-menu{
height:27px;
}
#textButton{
padding-left:9px;
padding-right:9px;
font-size:11px;
}
#allTextWelcome{
padding-top:5vw;
}
.columDes{
margin-top:0px;
}
.columButton{
margin-top:10px;
}
.moreNews{
margin-right:1vw;
}
#desSection{
font-size:13px;
}
#sheet{
margin-left:0;
margin-right:0;
}
}
@media only screen and (max-width: 379px) {
#allTextWelcome{
padding-top:4vw;
}
.allcard{
padding-left:0;
padding-right:0;
}
#contentcard{
height:190px;
}
#contentcard2{
height:190px;
}
.allcard{
max-height:460px;
}
}
@media only screen and (max-width: 340px) {
#allTextWelcome{
padding-top:2vw;
}
.header-red{
width:82vw;
}
#textButton{
padding-left:7px;
padding-right:7px;
}
#img-col-1-2{
height:120px;
}
#img-col-1-3{
height:120px;
}
#img-col-2-1{
height:120px;
}
#img-col-2-2{
height:120px;
}
}
@media only screen and (max-width: 317px) {
#allTextWelcome{
padding-top:0vw;
}
.allcard{
max-height:460px;
}
} | wwwroot/css/newstyle.css | @import url('https://fonts.googleapis.com/css?family=Kanit');
body{
font-family: Kanit, sans-serif;
background-color:#F9F9F9;
}
a {
color: #F74443;
-webkit-transition: color 0.7s;
-mgoz-transition: color 0.7s;
-ms-transition: color 0.7s;
-o-transition: color 0.7s;
transition: color 0.7s;
}
.banner{
background-image: url("/image/hand-bg.jpg");
filter: brightness(45%);
background-repeat: no-repeat;
background-attachment: fixed;
background-position-x:center;
background-position-y:0;
background-size: cover;
width:100%;
height:270px;
padding-left:6vw;
padding-right:6vw;
padding-top:2vw;
}
#socialIcon{
width:35px;
height:35px;
margin-left:10px;
}
img{
max-width: 100%;
}
iframe {
width:70%; /* as desired */
height:50vh; /* as desired */
display:block;
margin:0px auto
}
p{
margin-top:20px;
}
@media(max-width:500px){
iframe {
width:100%; /* as desired */
height:30vh; /* as desired */
display:block;
margin:0px auto
}
img{
max-width: 100%;
height:auto;
}
}
#socialIconFirst{
width:35px;
height:35px;
}
#sheet{
margin-left:4vw;
margin-right:4vw;
background-color:white;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:100%;
padding-bottom:20px;
padding-top:30px;
padding-left:4vw;
padding-right:4vw;
}
#postInformation{
margin-top:-163px;
padding:0;
padding-top:40px;
padding-left:230px;
}
#img-banner{
width:55px;
height:55px;
margin-top:30px;
}
#headerNews{
font-size:33px;
font-weight:bold;
}
#des-banner{
font-size:20px;
color:white;
display:block;
margin-top:10px;
}
#header-banner{
font-size:30px;
color:white;
display:block;
}
.banner-content{
margin-top:-220px;
}
#contentcard{
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:250px;
padding:0;
transition: 0.7s;
}
#contentcard2{
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
height:250px;
background-color:white;
padding-top:15px;
transition: 0.7s;
}
#contentcard2:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
border-radius: 50px 15px;
}
#contentcard:hover{
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .15);
}
#readmore{
height:30px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
margin-bottom:2vw;
padding-left:17px;
padding-right:17px;
margin-left:2vw;
}
#readmore:hover {
background-color: #EC0909;
color: white;
}
#readmore{
height:30px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
margin-bottom:2vw;
padding-left:17px;
padding-right:17px;
margin-left:2vw;
}
#readmore:hover {
background-color: #EC0909;
color: white;
}
#button-menu:hover {
background-color: #EC0909;
color: white;
}
.allcard{
padding-left:5vw;
padding-right:5vw;
height:100%;
overflow: hidden;
max-height:290px;
margin-bottom:40px;
-webkit-overflow-scrolling: touch;
}
.allcard::-webkit-scrollbar {
display: none;
}
.columcard{
margin-bottom:40px;
}
.card {
transition: 0.3s;
}
#moreUp{
display:none;
}
#card-des{
font-size:20px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
.moreNews{
color:#0C0C0C;
margin-right:5vw;
margin-bottom:10px;
transition: 0.7s;
}
#img-col-1-1{
height:400px;
width:22%;
}
#img-col-1-2{
height:500px;
width:36%;
margin-left:10px;
}
#img-col-1-3{
height:400px;
width:22%;
margin-left:10px;
}
#arrowLeft{
width:30px;
height:30px;
}
#arrowRight{
width:30px;
height:30px;
}
#img-col-2-1{
height:400px;
width:28%;
}
.leftfooter{
padding-left:7vw;
padding-right:7vw;
margin-top:7vw;
padding-bottom:30px;
font-size:16px;
border-right:2px solid #F74443;
}
#mobilefooter{
display:none;
}
#desktopfooter{
display:block;
}
#imgslide{
display: inline-block;
border-radius:20px;
width:20%;
height:20%;
transition: 0.7s;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
#myNavbar{
margin-top:-3px !important;
}
.navbar-fixed-top{
background-color:#404040;
margin-bottom:0;
height:59px !important;
padding-top:9px;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
#imgslide:hover{
border-radius:80px 40px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#carousel::-webkit-scrollbar {
display: none;
}
#carousel{
-webkit-overflow-scrolling: touch;
}
#borderButton{
background-color:transparent;
border-radius:15px;
border-color:#F74443;
color:white;
padding-left:17px;
padding-right:17px;
height:40px;
transition: 0.7s;
}
#borderButton:hover{
border-radius:0px;
}
.rightfooter{
padding-left:9vw;
padding-right:7vw;
margin-top:7vw;
font-size:16px;
}
#img-col-2-2{
height:400px;
width:28%;
margin-left:10px;
}
.moreNews:hover{
color: #F74443;
}
.col-2{
margin-top:20px;
}
#headerSection{
color:#0C0C0C;
font-size:42px;
font-weight:bold;
}
#box{
padding:0;
padding-left:4vw;
padding-right:4vw;
margin-top:90px;
}
#desSection{
font-size:15px;
color:#808080;
}
.divider{
border-bottom: 2px solid #E23E00;
width:120px;
}
.dividerNews{
border-bottom: 1px solid #FF9797;
width:120px;
}
.dividerContentNews{
border-bottom: 1px solid #DFDFDF;
width:85vw;
margin-top:69px;
}
.footer{
height:500px;
background-color:#343434;
}
#welcomeText{
color:white;
font-size:55px;
font-weight:bold;
}
#desText{
color:white;
font-size:20px;
}
#allTextWelcome{
padding-top:7vw;
}
.columDes{
margin-top:8px;
}
.columButton{
margin-top:23px;
}
#button-menu{
height:37px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
transition: 0.7s;
}
.bookLogo {
height:40px ;
width:40px;
margin-right:10px;
margin-top:-7px;
}
.background{
background-image: url("/image/book-bg.jpg");
filter: brightness(70%);
background-position-y:-150px;
background-position-x:center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
width:100%;
height:33vw;
}
.background-another{
width:100%;
filter: brightness(85%);
height:33vw;
}
.container{
margin-top:2vw;
padding-left:0;
padding-right:0;
}
.menu{
padding-left:8vw;
padding-right:8vw;
}
.header-red{
font-size:30px;
font-weight: bold;
width:69vw;
display: block;
float:left;
color:#F74443;
padding-left:4vw;
}
.nav.navbar-nav{
margin-top:-4px;
font-size:17px;
display:inline;
}
#textButton{
padding-left:15px;
padding-right:15px;
}
.nav.navbar-nav a{
color:white;
}
.navbar{
min-height:0px;
z-index: 9999;
height:30px;
}
.navbar .navbar-nav > li > a:hover ,.navbar .navbar-nav > .active > a, .navbar .navbar-nav > li > a:focus {
background-color: transparent;
color: #F74443;
}
.navbar .navbar-nav > .active{
-webkit-text-decoration-line: line-through; /* Safari */
text-decoration: underline;
}
#allSocial{
float:right;
margin-top:25px;
margin-bottom:15px;
}
#profileBox{
width:171px;
height:159px;
background-color:#FFC7C7;
padding-top:15px;
box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
@media only screen and (max-width: 1793px){
.header-red{
width:67vw;
}
}
@media only screen and (max-width: 1670px){
#allTextWelcome{
padding-top:6vw;
}
}
@media only screen and (max-width: 1556px) {
.header-red{
width:65vw;
}
}
@media only screen and (max-width: 1493px) {
.background{
background-position-y:-100px;
}
#img-col-1-1{
height:300px;
}
#img-col-1-2{
height:400px;
margin-left:0;
}
#img-col-1-3{
height:300px;
margin-left:0;
}
#img-col-2-1{
height:300px;
}
#img-col-2-2{
height:300px;
margin-left:0;
}
}
@media only screen and (max-width: 1463px) {
.header-red{
width:63vw;
}
}
@media only screen and (max-width: 1373px) {
.navbar-fixed-top{
height:50px !important;
padding-top:9px;
}
.leftfooter{
font-size:14px;
}
.rightfooter{
font-size:14px;
}
.header-red{
font-size:23px;
width:65vw;
}
.nav.navbar-nav{
font-size:15px;
}
.bookLogo {
height:30px ;
width:30px;
}
#welcomeText{
color:white;
font-size:45px;
}
#desText{
color:white;
font-size:15px;
}
#button-menu{
height:40px;
background-color:#F74443;
color:white;
border:0;
border-radius:4px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
}
@media only screen and (max-width: 1324px) {
.header-red{
width:64vw;
}
#arrowLeft{
width:25px;
height:25px;
}
#arrowRight{
width:25px;
height:25px;
}
}
@media only screen and (max-width: 1278px) {
.header-red{
width:63vw;
}
}
@media only screen and (max-width: 1240px) {
.header-red{
width:62vw;
}
}
@media only screen and (max-width: 1204px) {
.header-red{
width:60vw;
}
#allTextWelcome{
padding-top:3vw;
}
#textButton{
padding-left:13px;
padding-right:13px;
}
#button-menu{
height:35px;
}
}
@media only screen and (max-width: 1140px) {
.header-red{
width:59vw;
}
.background{
background-position-y:-180px;
}
}
@media only screen and (max-width: 1091px) {
.header-red{
width:58vw;
}
#img-col-1-1{
height:200px;
}
#img-col-1-2{
height:300px;
}
#img-col-1-3{
height:200px;
}
#img-col-2-1{
height:250px;
}
#img-col-2-2{
height:250px;
}
}
@media only screen and (max-width: 1107px) {
.header-red{
width:56vw;
}
}
@media only screen and (max-width: 1076px) {
.header-red{
width:54vw;
}
.background{
height:33vw;
background-position-y:-140px;
}
}
@media only screen and (max-width: 1022px) {
.header-red{
width:53vw;
padding-left:3vw;
}
}
@media only screen and (max-width: 1000px) {
.header-red{
width:52vw;
}
.background{
height:37vw;
background-position-y:-100px;
}
.background-another{
height:37vw;
}
#allTextWelcome{
padding-top:6vw;
}
}
@media only screen and (max-width: 991px) {
.allcard{
max-height:580px;
}
.banner{
height:510px;
}
.banner-content{
margin-top:-445px;
}
#content-first{
margin-bottom:40px;
}
}
@media only screen and (max-width: 983px) {
.header-red{
width:51vw;
}
}
@media only screen and (max-width: 950px) {
.header-red{
width:50vw;
}
#allTextWelcome{
padding-top:5vw;
}
}
@media only screen and (max-width: 930px) {
.header-red{
width:49vw;
}
}
@media only screen and (max-width: 909px) {
.background{
background-position-y:-150px;
}
#box{
margin-top:65px;
}
#headerNews{
font-size:23px;
font-weight:bold;
}
.header-red{
width:55vw;
margin-top:-2px;
}
.nav.navbar-nav a{
font-size:12px;
}
.nav.navbar-nav{
margin-top:-10px;
}
.header-red{
font-size:17px;
}
.navbar-fixed-top{
height:47px !important;
padding-top:13px;
}
}
@media only screen and (max-width: 871px) {
.header-red{
width:53vw;
}
}
@media only screen and (max-width: 845px) {
.header-red{
width:51vw;
}
.nav.navbar-nav{
margin-right:0;
}
#allTextWelcome{
padding-top:3vw;
}
}
@media only screen and (max-width: 831px) {
#profileImage{
width:74px;
}
.dividerContentNews{
width:83vw;
margin-top:10px;
}
#sheet{
padding-top:20px;
}
#profileBox{
width:100px;
height:100px;
}
#postInformation{
margin-top:-135px;
padding-left:140px;
font-size:12px!important;
}
#allSocial{
float:none;
margin-top:10px;
}
#socialIcon{
width:28px;
height:28px;
margin-left:5px;
}
#socialIconFirst{
width:28px;
height:28px;
margin-left:2px;
}
}
@media only screen and (max-width: 814px) {
.header-red{
width:50vw;
}
}
@media only screen and (max-width: 782px) {
.header-red{
width:49vw;
}
}
@media only screen and (max-width: 767px) {
.banner{
background-attachment: initial;
}
p{
font-size:12px;
}
#readmore{
margin-left:5vw;
margin-bottom:3vw;
height:25px;
padding-left:14px;
padding-right:14px;
}
.leftfooter{
border-right:0px;
margin-top:10vw;
padding-bottom:7vw;
border-bottom:2px solid #F74443;
text-align:center;
}
.rightfooter{
padding-left:7vw;
text-align:center;
}
#setCenterButton{
text-align: center;
}
#img-col-1-1{
display:none;
}
#arrowLeft{
width:25px;
height:25px;
}
#arrowRight{
width:25px;
height:25px;
}
#imgslide{
width:50%;
height:50%;
}
.footer{
height:700px;
background-color:#343434;
}
.col-2{
margin-top:10px;
}
.header-red{
width:87vw;
margin-right:0vw;
padding-left:7.5vw;
}
#allTextWelcome{
padding-top:13vw;
}
.navbar-toggle{
float:none;
margin:0;
}
.background{
background-attachment: initial;
background-position-y:0px;
height:70vw;
}
.background-another{
height:70vw;
}
.burgerMenu{
width:22px;
height:22px;
margin-top:-20px;
}
.container{
margin-top:6vw;
}
.nav.navbar-nav a{
text-align: center;
}
.nav.navbar-nav{
margin:0;
}
#myNavbar{
background-color:#404040;
border-radius:8px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#img-col-1-2{
height:200px;
}
#img-col-1-3{
height:200px;
width:45%;
}
#img-col-2-1{
height:200px;
width:40%;
}
#img-col-2-2{
height:200px;
width:40%;
}
}
@media only screen and (max-width: 716px) {
#allTextWelcome{
padding-top:10vw;
}
#headerSection{
font-size:35px;
}
.rightfooter{
font-size:15px;
}
#desktopfooter{
display:none;
}
#mobilefooter{
display:block;
}
.leftfooter{
font-size:15px;
}
}
@media only screen and (max-width: 550px) {
#img-col-1-2{
height:170px;
}
#img-col-1-3{
height:170px;
width:45%;
}
#img-col-2-1{
height:170px;
}
#img-col-2-2{
height:170px;
}
}
@media only screen and (max-width: 520px) {
#allTextWelcome{
padding-top:5vw;
}
.allcard{
padding-left:1vw;
padding-right:1vw;
}
}
@media only screen and (max-width: 487px) {
.navbar-fixed-top{
padding-top:15px;
}
#headerNews{
font-size:18px;
font-weight:bold;
}
#cardParagraph{
font-size:12px;
}
.footer{
height:610px;
}
.leftfooter{
font-size:13px;
}
.rightfooter{
font-size:13px;
}
#arrowLeft{
width:20px;
height:20px;
}
#arrowRight{
width:20px;
height:20px;
}
#img-banner{
width:55px;
height:55px;
margin-top:30px;
}
#card-des{
font-size:17px;
}
#des-banner{
font-size:15px;
}
#header-banner{
font-size:25px;
}
.burgerMenu{
width:18px;
height:18px;
margin-top:-22px;
}
.header-red{
font-size:15px;
width:84vw;
padding-left:7.5vw;
}
.bookLogo {
height:22px ;
width:22px;
margin-top:-3px;
margin-right:5px;
}
.container{
margin-top:6vw;
}
#myNavbar{
margin-top:-6px !important;
}
#welcomeText{
font-size:38px;
}
#desText{
font-size:15px;
}
#allTextWelcome{
padding-top:5vw;
}
#button-menu{
height:33px;
}
#textButton{
padding-left:10px;
padding-right:10px;
}
#headerSection{
font-size:25px;
}
.divider{
width:80px;
}
#moreDown{
font-size:13px;
}
#moreUp{
font-size:13px;
}
.allcard{
max-height:480px;
}
#contentcard{
height:200px;
}
#contentcard2{
height:200px;
}
#img-col-1-2{
height:140px;
}
#img-col-1-3{
height:140px;
}
#img-col-2-1{
height:140px;
}
#img-col-2-2{
height:140px;
}
}
@media only screen and (max-width: 413px) {
#profileImage{
width:55px;
}
#profileBox{
width:83px;
height:80px;
}
#postInformation{
margin-top:-115px;
padding-left:100px;
font-size:11px !important;
}
#allSocial{
float:none;
margin-top:10px;
}
#socialIcon{
width:24px;
height:24px;
margin-left:5px;
}
#socialIconFirst{
width:24px;
height:24px;
}
}
@media only screen and (max-width: 404px) {
#welcomeText{
font-size:25px;
}
.dividerContentNews{
width:91vw;
}
#desText{
font-size:10px;
}
#allTextWelcome{
padding-top:8vw;
}
#button-menu{
height:27px;
}
#textButton{
padding-left:9px;
padding-right:9px;
font-size:11px;
}
#allTextWelcome{
padding-top:5vw;
}
.columDes{
margin-top:0px;
}
.columButton{
margin-top:10px;
}
.moreNews{
margin-right:1vw;
}
#desSection{
font-size:13px;
}
#sheet{
margin-left:0;
margin-right:0;
}
}
@media only screen and (max-width: 379px) {
#allTextWelcome{
padding-top:4vw;
}
.allcard{
padding-left:0;
padding-right:0;
}
#contentcard{
height:190px;
}
#contentcard2{
height:190px;
}
.allcard{
max-height:460px;
}
}
@media only screen and (max-width: 340px) {
#allTextWelcome{
padding-top:2vw;
}
.header-red{
width:82vw;
}
#textButton{
padding-left:7px;
padding-right:7px;
}
#img-col-1-2{
height:120px;
}
#img-col-1-3{
height:120px;
}
#img-col-2-1{
height:120px;
}
#img-col-2-2{
height:120px;
}
}
@media only screen and (max-width: 317px) {
#allTextWelcome{
padding-top:0vw;
}
.allcard{
max-height:460px;
}
} | 0.160398 | 0.054752 |
.menu .svg-inline--fa {
margin-right: 0.5em;
width: 1.5em;
}
.auto-refresh-pause::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\F04C";
}
.auto-refresh-resume::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04b";
}
.overview-link::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f21e";
}
.stats::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f06e";
}
.mon::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f080";
}
.logs::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f02d";
}
.map::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0e8";
}
.runtime::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f233";
}
.metrics::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f1fe";
}
.config-show::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f6ff";
}
.compare::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c5";
}
.add::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f067";
}
.cert::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0a3";
}
.option::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0b0";
}
.edit::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f044";
}
.lists::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0cb";
}
.waf::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f06d";
}
.hap::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f074";
}
.backup::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f24d";
}
.ha::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c2";
}
.keepalived::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f126";
}
.nginx::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0e8";
}
.version::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f021";
}
.upload::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f093";
}
.delete::before, .deleteVer::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f00d";
}
.login::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f007";
}
.patreon::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f004";
color: red;
padding-left: 3px;
}
.update-row::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f01e";
}
.admin::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f21b";
}
.users::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f234";
}
.group::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f039";
}
.role::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f2b9";
}
.settings::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0ad";
}
.add-admin::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f00c";
}
.add-userlist::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c0";
}
.add-server::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f067";
width:3px;
}
.new-version-exists::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f093";
padding-left: 5px;
}
.backends::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f233";
padding-left: 5px;
}
.div-pic::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f303";
}
.fa-pencil-alt{
padding-left: 7px;
color: #5cb85c !important;
}
.service-start::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04b";
}
.fa-play, .fa-stop, .fa-sync-alt {
width: 3px;
color: #a0d100 !important;
cursor: pointer;
margin-bottom: 3px;
}
.service-stop::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04d";
}
.fa-stop {
color: red !important;
}
.service-reload::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f2f1";
} | inc/awesome.css | .menu .svg-inline--fa {
margin-right: 0.5em;
width: 1.5em;
}
.auto-refresh-pause::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\F04C";
}
.auto-refresh-resume::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04b";
}
.overview-link::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f21e";
}
.stats::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f06e";
}
.mon::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f080";
}
.logs::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f02d";
}
.map::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0e8";
}
.runtime::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f233";
}
.metrics::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f1fe";
}
.config-show::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f6ff";
}
.compare::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c5";
}
.add::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f067";
}
.cert::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0a3";
}
.option::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0b0";
}
.edit::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f044";
}
.lists::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0cb";
}
.waf::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f06d";
}
.hap::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f074";
}
.backup::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f24d";
}
.ha::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c2";
}
.keepalived::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f126";
}
.nginx::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0e8";
}
.version::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f021";
}
.upload::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f093";
}
.delete::before, .deleteVer::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f00d";
}
.login::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f007";
}
.patreon::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f004";
color: red;
padding-left: 3px;
}
.update-row::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f01e";
}
.admin::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f21b";
}
.users::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f234";
}
.group::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f039";
}
.role::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f2b9";
}
.settings::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0ad";
}
.add-admin::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f00c";
}
.add-userlist::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f0c0";
}
.add-server::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f067";
width:3px;
}
.new-version-exists::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f093";
padding-left: 5px;
}
.backends::before {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f233";
padding-left: 5px;
}
.div-pic::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f303";
}
.fa-pencil-alt{
padding-left: 7px;
color: #5cb85c !important;
}
.service-start::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04b";
}
.fa-play, .fa-stop, .fa-sync-alt {
width: 3px;
color: #a0d100 !important;
cursor: pointer;
margin-bottom: 3px;
}
.service-stop::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f04d";
}
.fa-stop {
color: red !important;
}
.service-reload::after {
display: none;
font-family: "Font Awesome 5 Solid";
content: "\f2f1";
} | 0.342022 | 0.060197 |
@font-face {
font-family: 'EntypoRegular';
src: url('type/entypo-webfont.eot');
src: url('type/entypo-webfont.eot?#iefix') format('embedded-opentype'),
url('type/entypo-webfont.woff') format('woff'),
url('type/entypo-webfont.ttf') format('truetype'),
url('type/entypo-webfont.svg#EntypoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'fontello';
src: url("../font/fontello.eot");
src: url("../font/fontello.eot?#iefix") format('embedded-opentype'), url("../font/fontello.woff") format('woff'), url("../font/fontello.ttf") format('truetype'), url("../font/fontello.svg#fontello") format('svg');
font-weight: normal;
font-style: normal;
}
/* [class^="label-"]:before,
[class*=" label-"]:before */
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
opacity: 0.7;
/* fix buttons height */
line-height: 1em;
}
/* @end */
* {
font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.ir {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
a, tr, hgroup p {
-webkit-transition: all .3s ease-in-out;
}
body {
background:#f0f2f4 url('img/handmadepaper.png') fixed;
}
#wrapper {
color: #333;
/*max-width: 720px;*/
margin: 0 auto;
padding: 0 2%;
/* height: 100%;
width: 100%;
position: absolute;
overflow: scroll; */
}
hgroup,h1,h2,h3,h4,h5,h6,#tableheader {
text-rendering: optimizeLegibility;
}
header#main, aside {
padding-bottom: 1em;
width: 29%;
display: block;
float: left;
margin: 0 1% 0 0;
/* text-shadow: 0px -1px 1px white; */
}
header#main {
position: fixed;
}
.target {
background: #fafafa;
border-bottom: 1px solid #fff;
border-top: 1px solid #aaa;
text-align: center;
border-radius: 2em;
padding: .2em;
width: 80%;
box-shadow: 0 -2px 15px #ddd inset;
}
.target span {
color: #666;
font-size: .8em;
font-weight: 700;
text-shadow: 0 1px 0 #fff;
margin: 2px 0 0 0;
}
header nav ul, header nav ul li {
list-style-type: none;
display: inline-block;
box-shadow: 0 0 0 rgba(0,0,0,0);
/* -webkit-transition: all .3s ease-out; */
}
header nav li {
color: #888;
cursor: pointer;
border-radius: .2em;
padding: .2em;
}
header nav li:hover, header nav .selected {
background: #fff;
color: rgb(232,17,46);
box-shadow: 0 1px 1px rgba(0,0,0,.5);
}
header nav li:hover {
box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
header nav li:active {
color: #fff;
background: red;
box-shadow: 0 1px 0px rgba(0,0,0,.5);
}
header input {
margin: 1em 0;
width: 80%;
border: 1px solid #888;
}
header input[type="search"] {
font-size: large;
}
header input[type="search"]:focus, #main nav select:focus {
border: 1px solid #db242f !important;
outline: #db242f;
}
header textarea#live_preview {
width: 80%;
padding: 1%;
border-radius: 4px;
border: 1px solid #aaa;
font-size: .875em;
outline:none;
box-shadow: 0 2px 3px #ddd inset;
resize: vertical;
}
header textarea#live_preview:focus {
border: 1px solid #db242f !important;
}
header textarea#live_preview:after {
content: "hello";
font-family: "EntypoRegular";
display: block;
background: red;
width: 6%;
height: 22px;
}
aside {
clear: left;
position: fixed;
bottom: 0;
}
#iosfonts {
/*background: rgba(0,0,0,.1);*/
width: 69%;
float: right;
}
hgroup h1 {
display: block;
text-align: left;
background: #e8112d;
background:
-webkit-linear-gradient(#e95837 0%, #ad200d 2.32%, #ff0000 87.09%, #c94327 100%);
padding: 1em 2% 2% 2%;
font-family: "HelveticaNeue-UltraLight", "Helvetica Neue", Helvetica, sans-serif;
font-weight: 100 !important;
font-size: 46px;
color:white;
letter-spacing: -.02em;
border-bottom: 1px solid #fff;
text-shadow: 0 0 0 #fff;
z-index: 1;
box-shadow: 0 5px 10px -2px rgba(0,0,0,.2);
}
h2 {
text-align: left;
margin: .2em 0;
font-weight: lighter;
font-size: 15px;
}
header article {
margin: 1em 0;
/*background: white;*/
padding: 3px;
/* border-top: 1px solid rgb(219,219,219);
border-radius: 5px;
*/ line-height: 1.4em;
display: block;
float: right;
text-align: left;
width: 100%;
/*box-shadow: 0 3px 3px rgba(0,0,0,.3);*/
}
article h1 {
font-weight: 500;
}
.os {
width: 100%;
}
.os, .os li {
text-align: center;
cursor: pointer;
list-style: none;
display: block;
float: left;
/* -webkit-transition: all .2s ease-in-out; */
}
.os li {
background: #f4f4f4;
border: 1px solid #f4f4f4;
border-radius: 4px;
margin: 0 1% 8px 0;
padding: 2px 4px;
width: 22.8%;
}
.os li:last-child {
margin: 0 !important;
float: left;
}
.os li.selected {
color: #fff !important;
background: red !important;
border: 1px solid red;
}
.os li:hover {
color:#000;
background: #fff;
border: 1px solid red;
}
section {
display: block;
clear: both;
position: relative;
/*background: rgba(2550,0,0,.2);*/
}
table {
width: 90%;
}
/*tbody {
display: block;
height: 560px;
overflow-y: scroll;
}*/
footer {
clear: both;
color: silver;
font-size: 12px;
margin-top: 1em;
margin-bottom: 2em;
float: right;
}
a, a:visited {
color: gray;
text-shadow: 0px 1px 1px white;
text-decoration: none;
}
a:hover {
color:#e8112d;
text-shadow: 0px 2px 1px white;
}
a b {
border-bottom: 1px solid gray;
}
a b:hover {
border-bottom: 1px solid #e8112d;
}
.device {
width: 50%;
float:left;
}
table {
clear: both;
padding: 0;
border-bottom: 1px solid #f4f4f4;
border-spacing: 0;
margin: 1% 0;
width: 100%;
box-shadow: 0px 2px 5px rgba(0,0,0,.3);
border-radius: 4px;
/*position: relative;*/
}
tr {
margin: 0px;
background: #fafafa;
padding: 0;
}
td {
padding: 0;
line-height: .8em;
/* -webkit-transition: all .3s ease-in-out; */
}
tr:hover td{
color: #000;
background: #fff;
}
.rowheader, .font_face {
width: 80%;
font-size: 1em;
margin: 0px;
padding: 1%;
}
.font_face.preview {
font-size: 1.5em;
}
.rowheader, .label_iphone, .label_ipad {
color: #b1b8bf;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(1, rgb(240,245,245)),
color-stop(0, rgb(210,219,219))
) !important;
font-size: 15px;
text-align: center;
font-weight: bold;
border-top: 1px solid #999;
border-top-left-radius: 5px;
padding: 0;
}
.rowheader {
font-size: .7em;
text-shadow: 0 1px 0 #fff;
}
.section_header:hover *{
color: #b1b8bf;
}
.label_iphone, .label_ipad {
vertical-align: middle;
font-family: "EntypoRegular";
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(1, rgb(240,245,245)),
color-stop(0, rgb(210,219,219))
);
text-shadow: -1px 0 0 rgba(255,255,255,.1);
border-top-left-radius: 0;
font-size: 2em;
}
.label_iphone {
}
.label_iphone:before,
.label_ipad:before {
vertical-align: middle;
padding: 0 4px;
position: relative;
top:-6px;
width: 5%;
}
.label_iphone:before {
content: '\"';
}
.label_ipad {
border-top-right-radius: 5px;
}
.label_ipad:before {
top: -8px;
font-size: 1.4em;
content: "o";
}
.ipad, .iphone {
font-size: .7em;
color: #bbb;
text-align: center;
}
.available {
color: #000;
}
.old {
color: #aaa;
}
.unavailable {
color: #aaa;
text-decoration: line-through;
}
.fixed_header { /* section header */
width: 720px;
position: fixed;
top:0;
display: block;
background: rgba(255,255,255,.9);
}
#tableheader {
color: #555;
font-size: 22px;
font-weight: lighter;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(180,190,195)),
color-stop(1, rgb(220,225,225))
);
text-align: center;
text-shadow: 0px 1px 0px #fff;
}
#tableheader {
clear: both;
border-top: 1px solid #555;
border-radius: 5px 5px 0 0;
}
#tableheader span {
display: inline-block;
width: 45%;
}
.shadow-white {
text-shadow: 0px -1px 1px white;
}
.shadow-black {
text-shadow: 0px -1px 1px black;
}
::selection {
color: white;
background: black;
text-shadow: none !important;
}
h3 {
color: #888;
font-size: .8em;
font-weight: 500;
display: block;
background: #ddd;
clear:both;
padding: .5em;
margin: 1em 0 0 0;
border-radius: .5em;
}
@media only screen and (max-width: 768px) {
header#main {
width: 100%;
clear:both;
float: none;
position: relative;
font-size: .8em;
}
#main hgroup {
width: 49%;
float: left;
margin: 0 1% 0 0;
}
#main hgroup h1 {
padding: 2%;
}
#main nav {
width: 49%;
float: right;
margin: 2% 0 0 1%;
}
textarea {
border-radius: 2px;
}
.target {
width: 100%;
}
#main nav span, #main nav ul {
text-align: right;
}
#main nav select {
outline: none;
}
#main nav input, #main nav textarea {
font-size: 12px;
clear: left;
width: 100%;
/* width: 45%; */
margin: 2% 0;
float: left;
}
#main nav textarea {
margin: 2% 2% 0 0;
}
#main nav input[type="search"] {
display: block;
/* margin: 22px 0 0 0;*/
}
.count {
clear: both;
text-align: center;
font-size: 1.3em;
}
section#iosfonts {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
header#main {
width: 99%;
clear:both;
float: none;
position: relative;
font-size: .8em;
}
#main nav span {
/* display: none; */
}
#main nav {
width: 100%;
margin: 1% 0;
}
#main nav ul {
width: 100%;
float: left;
}
#main nav li {
font-size: 1.2em;
font-weight: 500;
display: block;
float: left;
text-align: center;
width: 33%;
height: 30px;
padding: 6px 0 0 0;
color: #eee;
background: #535960;
background: -webkit-linear-gradient(#abb8c7 0%, #535960 45.36%, #000000 49.34%, #a0b1ba 100%);
margin: 0;
border-radius: 0;
}
#main nav .selected {
background: red;
background: -webkit-linear-gradient(#e95837 0%, #ad200d 13.25%, #ff0000 87.09%, #c94327 100%);
box-shadow: inset 0 -1px 0 #a91d00;
}
#main nav li:first-child {
border-radius: 2em 0 0 2em;
border-right: 1px solid #eee;
}
#main nav li:last-child {
border-radius: 0 2em 2em 0;
border-left: 1px solid #eee;
}
#main nav input[type="search"], #main nav textarea#live_preview {
width: 99%;
margin: 1em auto;
float: left;
}
#main nav input[type="search"] {
font-size: large;
}
header article {
display: none;
}
table, table * {
/* box-sizing: border-box !important; */
}
table {
width: 60% !important;
margin: 0 auto;
}
.rowheader, .font_face {
width: auto !important;
overflow: hidden;
text-overflow: clip !important;
}
.font_face {
font-size: 1em;
width: auto !important;
}
#main hgroup {
width: 100%;
float:none;
margin: 0;
}
} | css/style.css | @font-face {
font-family: 'EntypoRegular';
src: url('type/entypo-webfont.eot');
src: url('type/entypo-webfont.eot?#iefix') format('embedded-opentype'),
url('type/entypo-webfont.woff') format('woff'),
url('type/entypo-webfont.ttf') format('truetype'),
url('type/entypo-webfont.svg#EntypoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'fontello';
src: url("../font/fontello.eot");
src: url("../font/fontello.eot?#iefix") format('embedded-opentype'), url("../font/fontello.woff") format('woff'), url("../font/fontello.ttf") format('truetype'), url("../font/fontello.svg#fontello") format('svg');
font-weight: normal;
font-style: normal;
}
/* [class^="label-"]:before,
[class*=" label-"]:before */
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'fontello';
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
opacity: 0.7;
/* fix buttons height */
line-height: 1em;
}
/* @end */
* {
font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.ir {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
a, tr, hgroup p {
-webkit-transition: all .3s ease-in-out;
}
body {
background:#f0f2f4 url('img/handmadepaper.png') fixed;
}
#wrapper {
color: #333;
/*max-width: 720px;*/
margin: 0 auto;
padding: 0 2%;
/* height: 100%;
width: 100%;
position: absolute;
overflow: scroll; */
}
hgroup,h1,h2,h3,h4,h5,h6,#tableheader {
text-rendering: optimizeLegibility;
}
header#main, aside {
padding-bottom: 1em;
width: 29%;
display: block;
float: left;
margin: 0 1% 0 0;
/* text-shadow: 0px -1px 1px white; */
}
header#main {
position: fixed;
}
.target {
background: #fafafa;
border-bottom: 1px solid #fff;
border-top: 1px solid #aaa;
text-align: center;
border-radius: 2em;
padding: .2em;
width: 80%;
box-shadow: 0 -2px 15px #ddd inset;
}
.target span {
color: #666;
font-size: .8em;
font-weight: 700;
text-shadow: 0 1px 0 #fff;
margin: 2px 0 0 0;
}
header nav ul, header nav ul li {
list-style-type: none;
display: inline-block;
box-shadow: 0 0 0 rgba(0,0,0,0);
/* -webkit-transition: all .3s ease-out; */
}
header nav li {
color: #888;
cursor: pointer;
border-radius: .2em;
padding: .2em;
}
header nav li:hover, header nav .selected {
background: #fff;
color: rgb(232,17,46);
box-shadow: 0 1px 1px rgba(0,0,0,.5);
}
header nav li:hover {
box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
header nav li:active {
color: #fff;
background: red;
box-shadow: 0 1px 0px rgba(0,0,0,.5);
}
header input {
margin: 1em 0;
width: 80%;
border: 1px solid #888;
}
header input[type="search"] {
font-size: large;
}
header input[type="search"]:focus, #main nav select:focus {
border: 1px solid #db242f !important;
outline: #db242f;
}
header textarea#live_preview {
width: 80%;
padding: 1%;
border-radius: 4px;
border: 1px solid #aaa;
font-size: .875em;
outline:none;
box-shadow: 0 2px 3px #ddd inset;
resize: vertical;
}
header textarea#live_preview:focus {
border: 1px solid #db242f !important;
}
header textarea#live_preview:after {
content: "hello";
font-family: "EntypoRegular";
display: block;
background: red;
width: 6%;
height: 22px;
}
aside {
clear: left;
position: fixed;
bottom: 0;
}
#iosfonts {
/*background: rgba(0,0,0,.1);*/
width: 69%;
float: right;
}
hgroup h1 {
display: block;
text-align: left;
background: #e8112d;
background:
-webkit-linear-gradient(#e95837 0%, #ad200d 2.32%, #ff0000 87.09%, #c94327 100%);
padding: 1em 2% 2% 2%;
font-family: "HelveticaNeue-UltraLight", "Helvetica Neue", Helvetica, sans-serif;
font-weight: 100 !important;
font-size: 46px;
color:white;
letter-spacing: -.02em;
border-bottom: 1px solid #fff;
text-shadow: 0 0 0 #fff;
z-index: 1;
box-shadow: 0 5px 10px -2px rgba(0,0,0,.2);
}
h2 {
text-align: left;
margin: .2em 0;
font-weight: lighter;
font-size: 15px;
}
header article {
margin: 1em 0;
/*background: white;*/
padding: 3px;
/* border-top: 1px solid rgb(219,219,219);
border-radius: 5px;
*/ line-height: 1.4em;
display: block;
float: right;
text-align: left;
width: 100%;
/*box-shadow: 0 3px 3px rgba(0,0,0,.3);*/
}
article h1 {
font-weight: 500;
}
.os {
width: 100%;
}
.os, .os li {
text-align: center;
cursor: pointer;
list-style: none;
display: block;
float: left;
/* -webkit-transition: all .2s ease-in-out; */
}
.os li {
background: #f4f4f4;
border: 1px solid #f4f4f4;
border-radius: 4px;
margin: 0 1% 8px 0;
padding: 2px 4px;
width: 22.8%;
}
.os li:last-child {
margin: 0 !important;
float: left;
}
.os li.selected {
color: #fff !important;
background: red !important;
border: 1px solid red;
}
.os li:hover {
color:#000;
background: #fff;
border: 1px solid red;
}
section {
display: block;
clear: both;
position: relative;
/*background: rgba(2550,0,0,.2);*/
}
table {
width: 90%;
}
/*tbody {
display: block;
height: 560px;
overflow-y: scroll;
}*/
footer {
clear: both;
color: silver;
font-size: 12px;
margin-top: 1em;
margin-bottom: 2em;
float: right;
}
a, a:visited {
color: gray;
text-shadow: 0px 1px 1px white;
text-decoration: none;
}
a:hover {
color:#e8112d;
text-shadow: 0px 2px 1px white;
}
a b {
border-bottom: 1px solid gray;
}
a b:hover {
border-bottom: 1px solid #e8112d;
}
.device {
width: 50%;
float:left;
}
table {
clear: both;
padding: 0;
border-bottom: 1px solid #f4f4f4;
border-spacing: 0;
margin: 1% 0;
width: 100%;
box-shadow: 0px 2px 5px rgba(0,0,0,.3);
border-radius: 4px;
/*position: relative;*/
}
tr {
margin: 0px;
background: #fafafa;
padding: 0;
}
td {
padding: 0;
line-height: .8em;
/* -webkit-transition: all .3s ease-in-out; */
}
tr:hover td{
color: #000;
background: #fff;
}
.rowheader, .font_face {
width: 80%;
font-size: 1em;
margin: 0px;
padding: 1%;
}
.font_face.preview {
font-size: 1.5em;
}
.rowheader, .label_iphone, .label_ipad {
color: #b1b8bf;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(1, rgb(240,245,245)),
color-stop(0, rgb(210,219,219))
) !important;
font-size: 15px;
text-align: center;
font-weight: bold;
border-top: 1px solid #999;
border-top-left-radius: 5px;
padding: 0;
}
.rowheader {
font-size: .7em;
text-shadow: 0 1px 0 #fff;
}
.section_header:hover *{
color: #b1b8bf;
}
.label_iphone, .label_ipad {
vertical-align: middle;
font-family: "EntypoRegular";
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(1, rgb(240,245,245)),
color-stop(0, rgb(210,219,219))
);
text-shadow: -1px 0 0 rgba(255,255,255,.1);
border-top-left-radius: 0;
font-size: 2em;
}
.label_iphone {
}
.label_iphone:before,
.label_ipad:before {
vertical-align: middle;
padding: 0 4px;
position: relative;
top:-6px;
width: 5%;
}
.label_iphone:before {
content: '\"';
}
.label_ipad {
border-top-right-radius: 5px;
}
.label_ipad:before {
top: -8px;
font-size: 1.4em;
content: "o";
}
.ipad, .iphone {
font-size: .7em;
color: #bbb;
text-align: center;
}
.available {
color: #000;
}
.old {
color: #aaa;
}
.unavailable {
color: #aaa;
text-decoration: line-through;
}
.fixed_header { /* section header */
width: 720px;
position: fixed;
top:0;
display: block;
background: rgba(255,255,255,.9);
}
#tableheader {
color: #555;
font-size: 22px;
font-weight: lighter;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(180,190,195)),
color-stop(1, rgb(220,225,225))
);
text-align: center;
text-shadow: 0px 1px 0px #fff;
}
#tableheader {
clear: both;
border-top: 1px solid #555;
border-radius: 5px 5px 0 0;
}
#tableheader span {
display: inline-block;
width: 45%;
}
.shadow-white {
text-shadow: 0px -1px 1px white;
}
.shadow-black {
text-shadow: 0px -1px 1px black;
}
::selection {
color: white;
background: black;
text-shadow: none !important;
}
h3 {
color: #888;
font-size: .8em;
font-weight: 500;
display: block;
background: #ddd;
clear:both;
padding: .5em;
margin: 1em 0 0 0;
border-radius: .5em;
}
@media only screen and (max-width: 768px) {
header#main {
width: 100%;
clear:both;
float: none;
position: relative;
font-size: .8em;
}
#main hgroup {
width: 49%;
float: left;
margin: 0 1% 0 0;
}
#main hgroup h1 {
padding: 2%;
}
#main nav {
width: 49%;
float: right;
margin: 2% 0 0 1%;
}
textarea {
border-radius: 2px;
}
.target {
width: 100%;
}
#main nav span, #main nav ul {
text-align: right;
}
#main nav select {
outline: none;
}
#main nav input, #main nav textarea {
font-size: 12px;
clear: left;
width: 100%;
/* width: 45%; */
margin: 2% 0;
float: left;
}
#main nav textarea {
margin: 2% 2% 0 0;
}
#main nav input[type="search"] {
display: block;
/* margin: 22px 0 0 0;*/
}
.count {
clear: both;
text-align: center;
font-size: 1.3em;
}
section#iosfonts {
width: 100%;
}
}
@media only screen and (max-width: 480px) {
header#main {
width: 99%;
clear:both;
float: none;
position: relative;
font-size: .8em;
}
#main nav span {
/* display: none; */
}
#main nav {
width: 100%;
margin: 1% 0;
}
#main nav ul {
width: 100%;
float: left;
}
#main nav li {
font-size: 1.2em;
font-weight: 500;
display: block;
float: left;
text-align: center;
width: 33%;
height: 30px;
padding: 6px 0 0 0;
color: #eee;
background: #535960;
background: -webkit-linear-gradient(#abb8c7 0%, #535960 45.36%, #000000 49.34%, #a0b1ba 100%);
margin: 0;
border-radius: 0;
}
#main nav .selected {
background: red;
background: -webkit-linear-gradient(#e95837 0%, #ad200d 13.25%, #ff0000 87.09%, #c94327 100%);
box-shadow: inset 0 -1px 0 #a91d00;
}
#main nav li:first-child {
border-radius: 2em 0 0 2em;
border-right: 1px solid #eee;
}
#main nav li:last-child {
border-radius: 0 2em 2em 0;
border-left: 1px solid #eee;
}
#main nav input[type="search"], #main nav textarea#live_preview {
width: 99%;
margin: 1em auto;
float: left;
}
#main nav input[type="search"] {
font-size: large;
}
header article {
display: none;
}
table, table * {
/* box-sizing: border-box !important; */
}
table {
width: 60% !important;
margin: 0 auto;
}
.rowheader, .font_face {
width: auto !important;
overflow: hidden;
text-overflow: clip !important;
}
.font_face {
font-size: 1em;
width: auto !important;
}
#main hgroup {
width: 100%;
float:none;
margin: 0;
}
} | 0.194406 | 0.071786 |
html{
width:100%;
height:100%;
}
body{
margin:0;
padding:0;
width:100%;
font-rendering:optimizeLegibility;
-webkit-font-smoothing: antialiased;
height:100%;
font-family: 'Righteous', cursive;
color: white;
font-size: 100px;
overflow-x: hidden;
}
#comp {
font-family: 'Audiowide';
}
.menu{
position: fixed;
width:147px;
top: 60px;
left: 1%;
padding: 12px;
padding-left: 22px;
background: rgb(51, 37, 41);
font-size: 42px;
color: #fff;
font-family: 'Montserrat', sans-serif;
cursor: default;
-webkit-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
-o-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
overflow: hidden;
height: 54px;
-webkit-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-moz-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-o-transition: all 0.6s cubic-bezier(.55,0,.1,1);
transition: all 0.6s cubic-bezier(.55,0,.1,1);
z-index: 100000;
}
.menu a{
color: white;
text-decoration: none;
}
.menu:hover{
height: 100%;
width:227px;
}
.menu:hover .bars div{
width: 0px;
}
.bars {
position: absolute;
top: 22px;
left: 0px;
}
.bars div{
width: 18px;
height: 2px;
background: white;
margin-top: 6px;
-webkit-transition: all 0.1s ease;
-moz-transition: all 0.1s ease;
-o-transition: all 0.1s ease;
transition: all 0.1s ease;
}
.bars div:nth-child(2){
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.bars div:nth-child(3){
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.options{
list-style-type: none;
font-size: 22px;
position: relative;
left: -28px;
width: 100%;
border-top: 4px #CE281B solid;
padding-top: 16px;
}
.options li{
cursor: pointer;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
position: relative;
margin-top: 24px;
}
.options li::after{
position: absolute;
-webkit-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-moz-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-o-transition: all 0.6s cubic-bezier(.55,0,.1,1);
transition: all 0.6s cubic-bezier(.55,0,.1,1);
content: "";
left: -12px;
top: 8px;
height: 1px;
width: 6px;
background: white;
}
@media (max-width: 720px){
.menu{
font-size: 20px;
height: 30px;
}
.bars{
margin-top: -5px;
}
.bars div{
width: 12px;
margin-top: 2px;
}
.menu li{
font-size: 16px;
}
}
.main{
width:100%;
height:100vh;
top: 0px;
left:0px;
background-color: #000;
padding:0;
margin:0;
}
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500);
.snip1189 {
font-family: 'Raleway', Arial, sans-serif;
text-align: center;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 1px;
font-size: 13px;
position:fixed;
z-index:10000;
background-color: #333;
width:100%;
height:45px;
margin:0;
padding:0;
}
#hori_menu {
position: absolute;
background-color: black;
width:100%;
z-index: 99999;
}
.snip1189 * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
}
.snip1189 li {
display: inline-block;
list-style: outside none none;
margin: 0 1em;
padding: 0;
}
.snip1189 a {
padding: 0.5em 0.8em;
margin: 0.2em 0;
display: block;
color: rgba(255, 255, 255, 0.5);
position: relative;
text-decoration: none;
}
.snip1189 a:before,
.snip1189 a:after {
height: 14px;
width: 14px;
position: absolute;
content: '';
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
opacity: 0;
}
.snip1189 a:before {
left: 0;
top: 0;
border-left: 3px solid #c0392b;
border-top: 3px solid #c0392b;
-webkit-transform: translate(100%, 50%);
transform: translate(100%, 50%);
}
.snip1189 a:after {
right: 0;
bottom: 0;
border-right: 3px solid #c0392b;
border-bottom: 3px solid #c0392b;
-webkit-transform: translate(-100%, -50%);
transform: translate(-100%, -50%);
}
.snip1189 a:hover,
.snip1189 .current a {
color: #ffffff;
}
.snip1189 a:hover:before,
.snip1189 .current a:before,
.snip1189 a:hover:after,
.snip1189 .current a:after {
-webkit-transform: translate(0%, 0%);
transform: translate(0%, 0%);
opacity: 1;
}
#co{
position:absolute;
left:50%;
top:50%;
}
.wrap{
font-size: .7em;
overflow: hidden;
margin:0;
width: 100px;
height:100px;
border-radius: 100%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-webkit-transition:all 0.3s ease;
transition: all 0.3s ease;
position: absolute;
top:100%;
left:50%;
padding: 0px;
margin: 0px;
}
.wrap:hover{
box-shadow: 0px 0px 0px 8px #4F5E7F;
border: solid 4px #965F8A;
}
.wrap img{
width:100%;
}
.whole{
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#button {
background-color:white;
width: 20px;
border-radius: 100%;
z-index:1000000;
}
#box2 {
width:100%;
height:120px;
background-color:#222;
padding:0;
margin:0;
}
#about {
width:100%;
height:510px;
background-color: #fff;
margin:0;
padding:0;
color:black;
}
#parallax {
background-attachment: fixed;
background-size: cover;
}
#ltext{
font-size: 220px;
margin:0;
padding:0;
}
#rtext {
font-size: 220px;
margin:0;
padding:0;
}
#rules {
height:700px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#events {
font-size: 277px;
color:#000;
height:300px;
width:100%;
background-color:#fff;
margin:0;
padding:0;
}
#photography {
height:600px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#seperator {
color: #fff;
height:57px;
width:100%;
background-color: #000;
margin: 0;
padding:0;
font-size: 20px;
}
#Rb {
position: relative;
top:0px;
}
.btn {
border: none;
display: block;
text-align: center;
cursor: pointer;
text-transform: uppercase;
outline: none;
overflow: hidden;
position: relative;
top:106px;
color: #fff;
font-weight: 700;
font-size: 15px;
background-color: #222;
padding: 34px 120px;
margin: 0 auto;
box-shadow: 0 5px 15px rgba(0,0,0,0.20);
margin-top: -23%;
}
.btn span {
position: relative;
z-index: 1;
}
.btn:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 490%;
width: 140%;
background: #78c7d2;
-webkit-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
-webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
transform: translateX(-98%) translateY(-25%) rotate(45deg);
}
.btn:hover:after {
-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.link {
font-size: 20px;
margin-top: 30px;
}
.link a {
color: #000;
font-size: 25px;
}
#map {
height:750px;
width:100%;
margin:0;
padding:0;
}
#principal {
height:870px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
.contact_us{
color: #fff;
height:700px;
width:100%;
background-color: #000;
margin:0;
padding: 0;
overflow: hidden;
}
#contact_text {
position:relative;
bottom:700px;
margin-left: auto;
margin-right: auto;
left:0;
right: 0;
margin:0;
padding:0;
text-align: center;
}
#sub_text {
font-family:"Source Sans Pro";
font-size: 45px;
transition: transform 0.9s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 0.9s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
transform: scale(1);
margin-top:0;
padding-top:0;
}
#rules_head {
font-size: 175px;
margin:0;
padding:0;
text-align:center;
}
.list_space {
margin:20px;
}
#footer {
height:550px;
width:100%;
background-color: #222;
margin: 0;
padding: 0;
}
.boton {
width: 200px;
height: 50px;
margin: 0 auto;
padding:0;
display: block;
position: relative;
top: 30px;
border-radius:4%;
}
.botontext {
position: absolute;
height: 100%;
width: 100%;
z-index: 1;
text-align: center;
line-height: 50px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
text-transform: uppercase;
}
.twist {
display: block;
height: 100%;
width: 25%;
position: relative;
float: left;
margin-left: -4px;
}
.twist:before {
content: "";
width: 100%;
height: 100%;
background: #fed5a9;
bottom: 100%;
position: absolute;
transform-origin: center bottom 0px;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, -0.003,
0, 1, 0, 0,
0, 0, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.twist:after {
content: "";
position: absolute;
width: 100%;
top: 100%;
height: 100%;
background: #999;
transform-origin: center top 0px;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, -0.003,
0, -50, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .twist:before {
background: #fff;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0.003,
0, 50, 0, 1);
}
.boton:hover .twist:after {
background: #dedae1;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, 0.003,
0, 1, 0, 0,
0, 0, 0, 1);
}
.boton .twist:nth-of-type(1) {
margin-left: 0;
}
.boton .twist:nth-of-type(1):before,
.boton .twist:nth-of-type(1):after {
transition-delay: 0s;
}
.boton .twist:nth-of-type(2):before,
.boton .twist:nth-of-type(2):after {
transition-delay: 0.1s;
}
.boton .twist:nth-of-type(3):before,
.boton .twist:nth-of-type(3):after {
transition-delay: 0.2s;
}
.boton .twist:nth-of-type(4):before,
.boton .twist:nth-of-type(4):after {
transition-delay: 0.3s;
}
.boton .botontext:nth-of-type(1) {
color: #3d3b40;
bottom: 100%;
transform-origin: center bottom 0px;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, -0.003,
0, 1, 0, 0,
0, 0, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .botontext:nth-of-type(1) {
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0.003,
0, 50, 0, 1);
}
.boton .botontext:nth-of-type(2) {
color: #fff;
top: 100%;
transform-origin: center top 0px;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, -0.003,
0, -50, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .botontext:nth-of-type(2) {
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, 0.003,
0, 1, 0, 0,
0, 0, 0, 1);
}
.scroll-down {
opacity: 1;
-webkit-transition: all .5s ease-in 3s;
transition: all .5s ease-in 3s;
}
.scroll-down {
position: absolute;
bottom: 30px;
left: 50%;
margin-left: -16px;
display: block;
width: 50px;
height: 50px;
border: 2px solid #fff;
background-size: 14px auto;
border-radius: 50%;
z-index: 2;
-webkit-animation: bounce 2s infinite 2s;
animation: bounce 2s infinite 2s;
-webkit-transition: all .2s ease-in;
transition: all .2s ease-in;
background-color: #333;
}
.scroll-down:before {
position: absolute;
top: calc(50% - 8px);
left: calc(50% - 7px);
transform: rotate(-45deg);
display: block;
width: 12px;
height: 12px;
content: "";
border: 2px solid white;
border-width: 0px 0 2px 2px;
}
@keyframes bounce {
0%,
100%,
20%,
50%,
80% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
60% {
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
transform: translateY(-5px);
}
}
.animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
#a12 {
margin:0;
padding:0;
text-align: center;
}
#event_h {
font-size: 277px;
margin:0;
padding:0;
text-align: center;
}
#rules_con {
font-family: 'Saira Semi Condensed', sans-serif;
font-size: 27px;
}
#pd {
margin:0;
padding: 0;
text-align: center;
font-size: 100px;
}
#swat {
height: 200px;
width: 600px;
font-size: 25px;
font-family: 'montserrat';
text-transform: uppercase;
position: relative;
top:20px;
left: 0;
margin:0;
padding: 0;
-webkit-animation-delay: 0.2s;
}
#comp1 {
height: 200px;
width: 600px;
font-size: 25px;
font-family: 'montserrat';
text-transform: uppercase;
position: absolute;
top:0;
left: 100%;
margin:0;
padding:0;
-webkit-animation-delay: 0.4s;
}
#swat_picture {
height:150px;
width:200px;
margin:0;
padding:0;
}
#tagline {
color: #fff;
font-family: 'Saira Semi Condensed';
font-size:26px;
margin-top:-90px;
padding:0;
-webkit-animation-delay: 0.4s;
}
#madeby {
margin:25px;
}
#madeby1 {
color:#fff;
font-family: 'Saira Semi Condensed';
font-size: 15px;
padding: 0;
letter-spacing: 0;
-webkit-animation-delay: 0.6s;
}
#timer {
height:640px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#ti_head {
font-size: 117px;
}
#no_desk {
display:none;
}
@media(max-width: 690px;){
#no_desk {
display: block;
height:100%;
width:100%;
}
} | css1/style1.css | html{
width:100%;
height:100%;
}
body{
margin:0;
padding:0;
width:100%;
font-rendering:optimizeLegibility;
-webkit-font-smoothing: antialiased;
height:100%;
font-family: 'Righteous', cursive;
color: white;
font-size: 100px;
overflow-x: hidden;
}
#comp {
font-family: 'Audiowide';
}
.menu{
position: fixed;
width:147px;
top: 60px;
left: 1%;
padding: 12px;
padding-left: 22px;
background: rgb(51, 37, 41);
font-size: 42px;
color: #fff;
font-family: 'Montserrat', sans-serif;
cursor: default;
-webkit-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
-o-box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
overflow: hidden;
height: 54px;
-webkit-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-moz-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-o-transition: all 0.6s cubic-bezier(.55,0,.1,1);
transition: all 0.6s cubic-bezier(.55,0,.1,1);
z-index: 100000;
}
.menu a{
color: white;
text-decoration: none;
}
.menu:hover{
height: 100%;
width:227px;
}
.menu:hover .bars div{
width: 0px;
}
.bars {
position: absolute;
top: 22px;
left: 0px;
}
.bars div{
width: 18px;
height: 2px;
background: white;
margin-top: 6px;
-webkit-transition: all 0.1s ease;
-moz-transition: all 0.1s ease;
-o-transition: all 0.1s ease;
transition: all 0.1s ease;
}
.bars div:nth-child(2){
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.bars div:nth-child(3){
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.options{
list-style-type: none;
font-size: 22px;
position: relative;
left: -28px;
width: 100%;
border-top: 4px #CE281B solid;
padding-top: 16px;
}
.options li{
cursor: pointer;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
position: relative;
margin-top: 24px;
}
.options li::after{
position: absolute;
-webkit-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-moz-transition: all 0.6s cubic-bezier(.55,0,.1,1);
-o-transition: all 0.6s cubic-bezier(.55,0,.1,1);
transition: all 0.6s cubic-bezier(.55,0,.1,1);
content: "";
left: -12px;
top: 8px;
height: 1px;
width: 6px;
background: white;
}
@media (max-width: 720px){
.menu{
font-size: 20px;
height: 30px;
}
.bars{
margin-top: -5px;
}
.bars div{
width: 12px;
margin-top: 2px;
}
.menu li{
font-size: 16px;
}
}
.main{
width:100%;
height:100vh;
top: 0px;
left:0px;
background-color: #000;
padding:0;
margin:0;
}
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500);
.snip1189 {
font-family: 'Raleway', Arial, sans-serif;
text-align: center;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 1px;
font-size: 13px;
position:fixed;
z-index:10000;
background-color: #333;
width:100%;
height:45px;
margin:0;
padding:0;
}
#hori_menu {
position: absolute;
background-color: black;
width:100%;
z-index: 99999;
}
.snip1189 * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
}
.snip1189 li {
display: inline-block;
list-style: outside none none;
margin: 0 1em;
padding: 0;
}
.snip1189 a {
padding: 0.5em 0.8em;
margin: 0.2em 0;
display: block;
color: rgba(255, 255, 255, 0.5);
position: relative;
text-decoration: none;
}
.snip1189 a:before,
.snip1189 a:after {
height: 14px;
width: 14px;
position: absolute;
content: '';
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
opacity: 0;
}
.snip1189 a:before {
left: 0;
top: 0;
border-left: 3px solid #c0392b;
border-top: 3px solid #c0392b;
-webkit-transform: translate(100%, 50%);
transform: translate(100%, 50%);
}
.snip1189 a:after {
right: 0;
bottom: 0;
border-right: 3px solid #c0392b;
border-bottom: 3px solid #c0392b;
-webkit-transform: translate(-100%, -50%);
transform: translate(-100%, -50%);
}
.snip1189 a:hover,
.snip1189 .current a {
color: #ffffff;
}
.snip1189 a:hover:before,
.snip1189 .current a:before,
.snip1189 a:hover:after,
.snip1189 .current a:after {
-webkit-transform: translate(0%, 0%);
transform: translate(0%, 0%);
opacity: 1;
}
#co{
position:absolute;
left:50%;
top:50%;
}
.wrap{
font-size: .7em;
overflow: hidden;
margin:0;
width: 100px;
height:100px;
border-radius: 100%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-webkit-transition:all 0.3s ease;
transition: all 0.3s ease;
position: absolute;
top:100%;
left:50%;
padding: 0px;
margin: 0px;
}
.wrap:hover{
box-shadow: 0px 0px 0px 8px #4F5E7F;
border: solid 4px #965F8A;
}
.wrap img{
width:100%;
}
.whole{
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#button {
background-color:white;
width: 20px;
border-radius: 100%;
z-index:1000000;
}
#box2 {
width:100%;
height:120px;
background-color:#222;
padding:0;
margin:0;
}
#about {
width:100%;
height:510px;
background-color: #fff;
margin:0;
padding:0;
color:black;
}
#parallax {
background-attachment: fixed;
background-size: cover;
}
#ltext{
font-size: 220px;
margin:0;
padding:0;
}
#rtext {
font-size: 220px;
margin:0;
padding:0;
}
#rules {
height:700px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#events {
font-size: 277px;
color:#000;
height:300px;
width:100%;
background-color:#fff;
margin:0;
padding:0;
}
#photography {
height:600px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#seperator {
color: #fff;
height:57px;
width:100%;
background-color: #000;
margin: 0;
padding:0;
font-size: 20px;
}
#Rb {
position: relative;
top:0px;
}
.btn {
border: none;
display: block;
text-align: center;
cursor: pointer;
text-transform: uppercase;
outline: none;
overflow: hidden;
position: relative;
top:106px;
color: #fff;
font-weight: 700;
font-size: 15px;
background-color: #222;
padding: 34px 120px;
margin: 0 auto;
box-shadow: 0 5px 15px rgba(0,0,0,0.20);
margin-top: -23%;
}
.btn span {
position: relative;
z-index: 1;
}
.btn:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 490%;
width: 140%;
background: #78c7d2;
-webkit-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
-webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
transform: translateX(-98%) translateY(-25%) rotate(45deg);
}
.btn:hover:after {
-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.link {
font-size: 20px;
margin-top: 30px;
}
.link a {
color: #000;
font-size: 25px;
}
#map {
height:750px;
width:100%;
margin:0;
padding:0;
}
#principal {
height:870px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
.contact_us{
color: #fff;
height:700px;
width:100%;
background-color: #000;
margin:0;
padding: 0;
overflow: hidden;
}
#contact_text {
position:relative;
bottom:700px;
margin-left: auto;
margin-right: auto;
left:0;
right: 0;
margin:0;
padding:0;
text-align: center;
}
#sub_text {
font-family:"Source Sans Pro";
font-size: 45px;
transition: transform 0.9s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 0.9s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
transform: scale(1);
margin-top:0;
padding-top:0;
}
#rules_head {
font-size: 175px;
margin:0;
padding:0;
text-align:center;
}
.list_space {
margin:20px;
}
#footer {
height:550px;
width:100%;
background-color: #222;
margin: 0;
padding: 0;
}
.boton {
width: 200px;
height: 50px;
margin: 0 auto;
padding:0;
display: block;
position: relative;
top: 30px;
border-radius:4%;
}
.botontext {
position: absolute;
height: 100%;
width: 100%;
z-index: 1;
text-align: center;
line-height: 50px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
text-transform: uppercase;
}
.twist {
display: block;
height: 100%;
width: 25%;
position: relative;
float: left;
margin-left: -4px;
}
.twist:before {
content: "";
width: 100%;
height: 100%;
background: #fed5a9;
bottom: 100%;
position: absolute;
transform-origin: center bottom 0px;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, -0.003,
0, 1, 0, 0,
0, 0, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.twist:after {
content: "";
position: absolute;
width: 100%;
top: 100%;
height: 100%;
background: #999;
transform-origin: center top 0px;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, -0.003,
0, -50, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .twist:before {
background: #fff;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0.003,
0, 50, 0, 1);
}
.boton:hover .twist:after {
background: #dedae1;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, 0.003,
0, 1, 0, 0,
0, 0, 0, 1);
}
.boton .twist:nth-of-type(1) {
margin-left: 0;
}
.boton .twist:nth-of-type(1):before,
.boton .twist:nth-of-type(1):after {
transition-delay: 0s;
}
.boton .twist:nth-of-type(2):before,
.boton .twist:nth-of-type(2):after {
transition-delay: 0.1s;
}
.boton .twist:nth-of-type(3):before,
.boton .twist:nth-of-type(3):after {
transition-delay: 0.2s;
}
.boton .twist:nth-of-type(4):before,
.boton .twist:nth-of-type(4):after {
transition-delay: 0.3s;
}
.boton .botontext:nth-of-type(1) {
color: #3d3b40;
bottom: 100%;
transform-origin: center bottom 0px;
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, -0.003,
0, 1, 0, 0,
0, 0, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .botontext:nth-of-type(1) {
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0.003,
0, 50, 0, 1);
}
.boton .botontext:nth-of-type(2) {
color: #fff;
top: 100%;
transform-origin: center top 0px;
transform: matrix3d(1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, -0.003,
0, -50, 0, 1);
-webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
-o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995);
transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */
}
.boton:hover .botontext:nth-of-type(2) {
transform: matrix3d(1, 0, 0, 0,
0, 0, -1, 0.003,
0, 1, 0, 0,
0, 0, 0, 1);
}
.scroll-down {
opacity: 1;
-webkit-transition: all .5s ease-in 3s;
transition: all .5s ease-in 3s;
}
.scroll-down {
position: absolute;
bottom: 30px;
left: 50%;
margin-left: -16px;
display: block;
width: 50px;
height: 50px;
border: 2px solid #fff;
background-size: 14px auto;
border-radius: 50%;
z-index: 2;
-webkit-animation: bounce 2s infinite 2s;
animation: bounce 2s infinite 2s;
-webkit-transition: all .2s ease-in;
transition: all .2s ease-in;
background-color: #333;
}
.scroll-down:before {
position: absolute;
top: calc(50% - 8px);
left: calc(50% - 7px);
transform: rotate(-45deg);
display: block;
width: 12px;
height: 12px;
content: "";
border: 2px solid white;
border-width: 0px 0 2px 2px;
}
@keyframes bounce {
0%,
100%,
20%,
50%,
80% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
60% {
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
transform: translateY(-5px);
}
}
.animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
#a12 {
margin:0;
padding:0;
text-align: center;
}
#event_h {
font-size: 277px;
margin:0;
padding:0;
text-align: center;
}
#rules_con {
font-family: 'Saira Semi Condensed', sans-serif;
font-size: 27px;
}
#pd {
margin:0;
padding: 0;
text-align: center;
font-size: 100px;
}
#swat {
height: 200px;
width: 600px;
font-size: 25px;
font-family: 'montserrat';
text-transform: uppercase;
position: relative;
top:20px;
left: 0;
margin:0;
padding: 0;
-webkit-animation-delay: 0.2s;
}
#comp1 {
height: 200px;
width: 600px;
font-size: 25px;
font-family: 'montserrat';
text-transform: uppercase;
position: absolute;
top:0;
left: 100%;
margin:0;
padding:0;
-webkit-animation-delay: 0.4s;
}
#swat_picture {
height:150px;
width:200px;
margin:0;
padding:0;
}
#tagline {
color: #fff;
font-family: 'Saira Semi Condensed';
font-size:26px;
margin-top:-90px;
padding:0;
-webkit-animation-delay: 0.4s;
}
#madeby {
margin:25px;
}
#madeby1 {
color:#fff;
font-family: 'Saira Semi Condensed';
font-size: 15px;
padding: 0;
letter-spacing: 0;
-webkit-animation-delay: 0.6s;
}
#timer {
height:640px;
background-attachment:fixed;
background-position: center;
background-repeat: no-repeat;
margin:0;
padding:0;
background-size: cover;
}
#ti_head {
font-size: 117px;
}
#no_desk {
display:none;
}
@media(max-width: 690px;){
#no_desk {
display: block;
height:100%;
width:100%;
}
} | 0.403097 | 0.057308 |
.dark-theme.reveal{
background:
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url("../media/black-board.jpg");
background-size: cover;
}
.dark-theme.reveal .title-slide h1{
color:white;
}
.white-theme.reveal .title-slide h1{
color:black !important;
} */
.reveal .title-slide h1{
font-size:150px;
line-height: 1.5 !important;
}
/* Lists */
/* ===== */
.reveal ul,
.reveal ol {
padding-inline-start: 40px;
}
/* A fix for lists in hebrew */
.reveal ol,
.reveal dl,
.reveal ul {
text-align: inherit;
}
/* Headers */
/* ======= */
.reveal h2 {
font-size: 1.3em !important;
}
.reveal h4 {
color: #678ece !important;
}
/* Images */
/* ====== */
.reveal .main-content section img {
border:none !important;
box-shadow:none !important;
background-color: transparent;
margin-left: auto;
margin-right: auto
}
.reveal .main-content section img:not(.no-background) {
background-color :rgba(255, 255, 255, 0.7) !important;
}
/* .slide-image {
display: block;
margin-left: auto;
margin-right: auto;
justify-content: center;
background-color :rgba(255, 255, 255, 0.7);
box-shadow: 0 0 5px 10px rgba(255, 255, 255, 0.7)
}
.slide-image img{
display: block;
margin-left: auto;
margin-right: auto
} */
/* Increase font in tables */
/* ======================= */
.reveal .main-content table {
font-size:16px;
}
/* Code Block */
/* ========== */
.reveal .main-content pre code {
max-height: 700px !important;
}
/* Fragments */
/* ========= */
.reveal .frag.replace,
.reveal .frag.add {
display: none;
}
.reveal .frag.replace.active-frag,
.reveal .frag.add.active-frag {
display: initial;
}
.reveal .frag.add.prev-frag {
display: initial;
}
.reveal .frag.highlight {
border: initial;
border-radius: initial;
background-color: initial;
}
.reveal .frag.highlight.active-frag {
border-radius:10px;
background-color:#7b1c1c;
} | css/slides.css |
.dark-theme.reveal{
background:
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url("../media/black-board.jpg");
background-size: cover;
}
.dark-theme.reveal .title-slide h1{
color:white;
}
.white-theme.reveal .title-slide h1{
color:black !important;
} */
.reveal .title-slide h1{
font-size:150px;
line-height: 1.5 !important;
}
/* Lists */
/* ===== */
.reveal ul,
.reveal ol {
padding-inline-start: 40px;
}
/* A fix for lists in hebrew */
.reveal ol,
.reveal dl,
.reveal ul {
text-align: inherit;
}
/* Headers */
/* ======= */
.reveal h2 {
font-size: 1.3em !important;
}
.reveal h4 {
color: #678ece !important;
}
/* Images */
/* ====== */
.reveal .main-content section img {
border:none !important;
box-shadow:none !important;
background-color: transparent;
margin-left: auto;
margin-right: auto
}
.reveal .main-content section img:not(.no-background) {
background-color :rgba(255, 255, 255, 0.7) !important;
}
/* .slide-image {
display: block;
margin-left: auto;
margin-right: auto;
justify-content: center;
background-color :rgba(255, 255, 255, 0.7);
box-shadow: 0 0 5px 10px rgba(255, 255, 255, 0.7)
}
.slide-image img{
display: block;
margin-left: auto;
margin-right: auto
} */
/* Increase font in tables */
/* ======================= */
.reveal .main-content table {
font-size:16px;
}
/* Code Block */
/* ========== */
.reveal .main-content pre code {
max-height: 700px !important;
}
/* Fragments */
/* ========= */
.reveal .frag.replace,
.reveal .frag.add {
display: none;
}
.reveal .frag.replace.active-frag,
.reveal .frag.add.active-frag {
display: initial;
}
.reveal .frag.add.prev-frag {
display: initial;
}
.reveal .frag.highlight {
border: initial;
border-radius: initial;
background-color: initial;
}
.reveal .frag.highlight.active-frag {
border-radius:10px;
background-color:#7b1c1c;
} | 0.376852 | 0.069954 |
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
body,
[class*="styled__SocialMediaContainer-"] {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text);
}
* {
outline: none !important;
}
/* TEXT */
h1,
h2,
h3,
h4,
h5,
h6,
label:not(.toggle-on.btn, .toggle-off.btn),
legend {
color: var(--text-hover) !important;
}
.dashboard-context-info {
color: var(--text);
}
a,
.dashboard-context-info a {
color: var(--link-color) !important;
}
a:hover,
.dashboard-context-info a:hover {
color: var(--link-color-hover) !important;
}
.loadOverlay {
color: var(--text) !important;
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
/* Navbar */
.navbar-default {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
background-color: rgba(0, 0, 0, .25) !important;
color: var(--text-hover) !important;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
background-color: rgba(0, 0, 0, .25) !important;
}
.navbar-default,
.navbar-inverse {
border: 0px solid rgba(0, 0, 0, 0.6) !important;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) !important;
}
.navbar-default .navbar-brand {
color: #ffffff !important;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #ffffff !important;
background-color: rgba(0, 0, 0, .25) !important;
}
.navbar-default .navbar-nav>li>a,
.navbar-inverse .navbar-nav>li>a {
border-right: 1px solid rgba(0, 0, 0, 0) !important;
border-left: 1px solid rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
background-color: rgba(0, 0, 0, 0.15) !important;
border: 1px solid #00000000 !important;
color: rgb(var(--accent-color));
}
.nav>li>a:hover,
.nav>li>a:focus {
text-decoration: none;
background-color: #3e444c;
}
.nav>li>a:hover,
.nav>li>a:focus {
background-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-tabs>li>a:hover {
border-color: transparent;
}
.nav-tabs {
border-bottom: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
#my-netdata-dropdown-content .agent-item:hover {
background-color: rgba(255, 255, 255, 0.08);
}
.sign-in-btn {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.dropdown-menu,
[class*="__Dropdown-"],
[class*="documentation__Container-sc-"],
[class*="styled__PickerBox-"] {
background: var(--drop-down-menu-bg) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border: 0px !important;
}
[class*="styled__ShortPickElement-"] {
color: var(--link-color);
}
[class*="styled__ShortPickElement-"]:hover {
color: var(--link-color-hover);
}
.DateInput_input__focused {
border: 1px solid rgb(var(--accent-color));
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover,
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
background: rgb(var(--accent-color));
color: var(--label-text-color);
}
.CalendarDay__default:hover {
background: var(--accent-color-hover);
color: var(--label-text-color);
}
[class*="item__PanelRowContainer-"]:hover {
background: rgba(255, 255, 255, 0.15);
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
background-color: rgba(0, 0, 0, 0.25) !important;
}
.modal-content {
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.modal-header {
background: var(--modal-header-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-bottom: 1px solid rgb(var(--accent-color)) !important;
}
.modal-footer {
background: var(--modal-footer-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-top: 1px solid rgb(var(--accent-color)) !important;
}
.nav-tabs {
border-bottom: 1px solid rgb(var(--accent-color)) !important;
}
.panel {
background: rgba(0, 0, 0, 0.45) !important;
}
.panel-default>.panel-heading {
background-color: transparent !important;
}
table {
background: transparent !important;
}
.table-hover>tbody>tr:hover {
background-color: rgba(255, 255, 255, 0.08) !important;
}
.table>thead>tr>th {
border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
}
#my-netdata-dropdown-content hr {
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
background-color: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-top: 1px solid #00000000 !important;
}
.multi-column-dropdown li a:hover {
background-color: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.close,
.close:hover,
.close:focus {
color: #ffffff !important;
}
/* System Overview */
.dashboard-sidebar .nav>.active>a,
.dashboard-sidebar .nav>.active:hover>a,
.dashboard-sidebar .nav>.active:focus>a {
color: rgb(var(--accent-color)) !important;
border-left: 2px solid rgb(var(--accent-color)) !important;
}
[class*="sidebar__Wrapper-"] {
background-color: rgba(0, 0, 0, 0.25);
}
[class*="sidebar__Wrapper-"] [class*="flex-sc-"]:not([class*="collapsible__Animated-"]) {
background: transparent;
}
[class*="collapsible__Animated-"] {
background: var(--main-bg-color);
}
[class*="header__Wrapper-"] {
background: var(--main-bg-color);
}
[class*="styled__StyledButton-"] .button-icon {
fill: rgb(var(--accent-color)) !important;
}
[class*="styled__StyledButton-"]:hover .button-icon {
fill: var(--accent-color-hover) !important;
}
/*code*/
code {
color: var(--label-text-color) !important;
background-color: rgb(var(--accent-color)) !important;
}
/* System Overview metrics */
.gaugeChartTitle,
.gaugeChartUnits,
.gaugeChartMax,
.gaugeChartMin,
.gaugeChartLabel,
.easyPieChartTitle,
.easyPieChartLabel,
.easyPieChartUnits {
color: #ffffff !important;
}
.netdata-legend-value,
.netdata-legend-toolbox,
.netdata-legend-toolbox-button,
.dygraph-axis-label {
background-color: rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.netdata-legend-resize-handler {
background-color: rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.netdata-legend-name-table-line {
border-bottom-width: 0px !important;
}
/* Sidebar */
.dashboard-sidebar .nav>li>a {
color: var(--text);
}
.dashboard-sidebar .nav>li>a:focus,
.dashboard-sidebar .nav>li>a:hover {
padding-left: 19px;
color: var(--text-hover);
text-decoration: none;
background-color: transparent;
border-left: 1px solid rgb(var(--accent-color));
}
small,
.small {
color: var(--text-muted);
}
.action-button {
color: var(--button-text-hover) !important;
}
hr {
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.pagination>li>a,
.pagination>li>span {
background-color: rgba(0, 0, 0, 0.25) !important;
border: 1px solid transparent !important;
}
.pagination>li>a:hover {
background-color: rgba(255, 255, 255, 0.08) !important;
}
/* Buttons */
.btn-default:not([class*="toggle"]) {
background-color: var(--button-color);
color: var(--button-text);
border-color: var(--button-color);
}
a[class*="styled__StyledButton-"],
[data-testid*="date-picker::click-apply::global-view-"] {
background-color: var(--button-color) !important;
color: var(--button-text) !important;
border-color: var(--button-color) !important;
}
a[class*="styled__StyledButton-"]:hover,
a[class*="styled__StyledButton-"]:active,
[data-testid*="date-picker::click-apply::global-view-"]:hover,
[data-testid*="date-picker::click-apply::global-view-"]:active {
background-color: var(--button-color-hover) !important;
color: var(--button-text-hover) !important;
border-color: var(--button-color-hover) !important;
}
.btn-default:hover:not([class*="toggle"]) {
background-color: var(--button-color-hover);
color: var(--button-text-hover);
border-color: var(--button-color-hover);
}
.btn-default:active:not(.open>.dropdown-toggle.btn-default):not([class*="toggle"]),
.btn-default.active:not(.open>.dropdown-toggle.btn-default):not([class*="toggle"]) {
background-color: var(--button-color-hover);
border-color: var(--button-color-hover);
color: var(--button-text-hover);
}
/* NAV */
[class^="with-panel"] {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
[class*="styled__ListContainer"],
[class*="container__Container-"] div,
[class*="styled__PanelContainer"],
[class*="styled__StyledHeader"] {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text-hover);
}
[class^="styled__BottomPanel"] {
background: #0000;
}
[class^=".styled__StyledSpaceBarPlus"] {
background: rgb(var(--accent-color));
border-color: rgb(var(--accent-color));
} | CSS/themes/netdata/netdata-base.css |
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
body,
[class*="styled__SocialMediaContainer-"] {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text);
}
* {
outline: none !important;
}
/* TEXT */
h1,
h2,
h3,
h4,
h5,
h6,
label:not(.toggle-on.btn, .toggle-off.btn),
legend {
color: var(--text-hover) !important;
}
.dashboard-context-info {
color: var(--text);
}
a,
.dashboard-context-info a {
color: var(--link-color) !important;
}
a:hover,
.dashboard-context-info a:hover {
color: var(--link-color-hover) !important;
}
.loadOverlay {
color: var(--text) !important;
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
/* Navbar */
.navbar-default {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
background-color: rgba(0, 0, 0, .25) !important;
color: var(--text-hover) !important;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
background-color: rgba(0, 0, 0, .25) !important;
}
.navbar-default,
.navbar-inverse {
border: 0px solid rgba(0, 0, 0, 0.6) !important;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) !important;
}
.navbar-default .navbar-brand {
color: #ffffff !important;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #ffffff !important;
background-color: rgba(0, 0, 0, .25) !important;
}
.navbar-default .navbar-nav>li>a,
.navbar-inverse .navbar-nav>li>a {
border-right: 1px solid rgba(0, 0, 0, 0) !important;
border-left: 1px solid rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
background-color: rgba(0, 0, 0, 0.15) !important;
border: 1px solid #00000000 !important;
color: rgb(var(--accent-color));
}
.nav>li>a:hover,
.nav>li>a:focus {
text-decoration: none;
background-color: #3e444c;
}
.nav>li>a:hover,
.nav>li>a:focus {
background-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-tabs>li>a:hover {
border-color: transparent;
}
.nav-tabs {
border-bottom: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
#my-netdata-dropdown-content .agent-item:hover {
background-color: rgba(255, 255, 255, 0.08);
}
.sign-in-btn {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.dropdown-menu,
[class*="__Dropdown-"],
[class*="documentation__Container-sc-"],
[class*="styled__PickerBox-"] {
background: var(--drop-down-menu-bg) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border: 0px !important;
}
[class*="styled__ShortPickElement-"] {
color: var(--link-color);
}
[class*="styled__ShortPickElement-"]:hover {
color: var(--link-color-hover);
}
.DateInput_input__focused {
border: 1px solid rgb(var(--accent-color));
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover,
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
background: rgb(var(--accent-color));
color: var(--label-text-color);
}
.CalendarDay__default:hover {
background: var(--accent-color-hover);
color: var(--label-text-color);
}
[class*="item__PanelRowContainer-"]:hover {
background: rgba(255, 255, 255, 0.15);
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
background-color: rgba(0, 0, 0, 0.25) !important;
}
.modal-content {
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.modal-header {
background: var(--modal-header-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-bottom: 1px solid rgb(var(--accent-color)) !important;
}
.modal-footer {
background: var(--modal-footer-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-top: 1px solid rgb(var(--accent-color)) !important;
}
.nav-tabs {
border-bottom: 1px solid rgb(var(--accent-color)) !important;
}
.panel {
background: rgba(0, 0, 0, 0.45) !important;
}
.panel-default>.panel-heading {
background-color: transparent !important;
}
table {
background: transparent !important;
}
.table-hover>tbody>tr:hover {
background-color: rgba(255, 255, 255, 0.08) !important;
}
.table>thead>tr>th {
border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
}
#my-netdata-dropdown-content hr {
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
background-color: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
border-top: 1px solid #00000000 !important;
}
.multi-column-dropdown li a:hover {
background-color: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
.close,
.close:hover,
.close:focus {
color: #ffffff !important;
}
/* System Overview */
.dashboard-sidebar .nav>.active>a,
.dashboard-sidebar .nav>.active:hover>a,
.dashboard-sidebar .nav>.active:focus>a {
color: rgb(var(--accent-color)) !important;
border-left: 2px solid rgb(var(--accent-color)) !important;
}
[class*="sidebar__Wrapper-"] {
background-color: rgba(0, 0, 0, 0.25);
}
[class*="sidebar__Wrapper-"] [class*="flex-sc-"]:not([class*="collapsible__Animated-"]) {
background: transparent;
}
[class*="collapsible__Animated-"] {
background: var(--main-bg-color);
}
[class*="header__Wrapper-"] {
background: var(--main-bg-color);
}
[class*="styled__StyledButton-"] .button-icon {
fill: rgb(var(--accent-color)) !important;
}
[class*="styled__StyledButton-"]:hover .button-icon {
fill: var(--accent-color-hover) !important;
}
/*code*/
code {
color: var(--label-text-color) !important;
background-color: rgb(var(--accent-color)) !important;
}
/* System Overview metrics */
.gaugeChartTitle,
.gaugeChartUnits,
.gaugeChartMax,
.gaugeChartMin,
.gaugeChartLabel,
.easyPieChartTitle,
.easyPieChartLabel,
.easyPieChartUnits {
color: #ffffff !important;
}
.netdata-legend-value,
.netdata-legend-toolbox,
.netdata-legend-toolbox-button,
.dygraph-axis-label {
background-color: rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.netdata-legend-resize-handler {
background-color: rgba(0, 0, 0, 0) !important;
color: #ffffff !important;
}
.netdata-legend-name-table-line {
border-bottom-width: 0px !important;
}
/* Sidebar */
.dashboard-sidebar .nav>li>a {
color: var(--text);
}
.dashboard-sidebar .nav>li>a:focus,
.dashboard-sidebar .nav>li>a:hover {
padding-left: 19px;
color: var(--text-hover);
text-decoration: none;
background-color: transparent;
border-left: 1px solid rgb(var(--accent-color));
}
small,
.small {
color: var(--text-muted);
}
.action-button {
color: var(--button-text-hover) !important;
}
hr {
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.pagination>li>a,
.pagination>li>span {
background-color: rgba(0, 0, 0, 0.25) !important;
border: 1px solid transparent !important;
}
.pagination>li>a:hover {
background-color: rgba(255, 255, 255, 0.08) !important;
}
/* Buttons */
.btn-default:not([class*="toggle"]) {
background-color: var(--button-color);
color: var(--button-text);
border-color: var(--button-color);
}
a[class*="styled__StyledButton-"],
[data-testid*="date-picker::click-apply::global-view-"] {
background-color: var(--button-color) !important;
color: var(--button-text) !important;
border-color: var(--button-color) !important;
}
a[class*="styled__StyledButton-"]:hover,
a[class*="styled__StyledButton-"]:active,
[data-testid*="date-picker::click-apply::global-view-"]:hover,
[data-testid*="date-picker::click-apply::global-view-"]:active {
background-color: var(--button-color-hover) !important;
color: var(--button-text-hover) !important;
border-color: var(--button-color-hover) !important;
}
.btn-default:hover:not([class*="toggle"]) {
background-color: var(--button-color-hover);
color: var(--button-text-hover);
border-color: var(--button-color-hover);
}
.btn-default:active:not(.open>.dropdown-toggle.btn-default):not([class*="toggle"]),
.btn-default.active:not(.open>.dropdown-toggle.btn-default):not([class*="toggle"]) {
background-color: var(--button-color-hover);
border-color: var(--button-color-hover);
color: var(--button-text-hover);
}
/* NAV */
[class^="with-panel"] {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
[class*="styled__ListContainer"],
[class*="container__Container-"] div,
[class*="styled__PanelContainer"],
[class*="styled__StyledHeader"] {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text-hover);
}
[class^="styled__BottomPanel"] {
background: #0000;
}
[class^=".styled__StyledSpaceBarPlus"] {
background: rgb(var(--accent-color));
border-color: rgb(var(--accent-color));
} | 0.267026 | 0.045735 |
:root {
--color-bg: #69F7BE;
--color-text-main: #000000;
--color-primary: #FFFF00;
--wrapper-height: 87vh;
--image-max-width: 300px;
--image-margin: 3rem;
--font-family: "HK Grotesk";
--font-family-header: "HK Grotesk";
}
* {
box-sizing: border-box;
}
[hidden] {
display: none !important;
}
@font-face {
font-family: HK Grotesk;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
format("opentype");
}
@font-face {
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
format("opentype");
}
.btn--remix {
font-family: HK Grotesk;
padding: 0.75rem 1rem;
font-size: 1.1rem;
line-height: 1rem;
font-weight: 500;
height: 2.75rem;
align-items: center;
cursor: pointer;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
text-decoration: none;
color: #000;
white-space: nowrap;
margin-left: auto;
}
.btn--remix img {
margin-right: 0.5rem;
}
.btn--remix:hover {
background-color: #D0FFF1;
}
/* Navigation grid */
.footer {
display: flex;
justify-content: space-between;
margin: 1rem auto 0;
padding: 1rem 0 0.75rem 0;
width: 100%;
flex-wrap: wrap;
border-top: 4px solid #fff;
}
.divider {
padding: 0 1rem;
}
body {
font-family: HK Grotesk;
background-color: var(--color-bg);
}
.wrapper {
min-height: var(--wrapper-height);
display: grid;
place-items: center;
margin: 0 1rem;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title {
color: #2800FF;
font-family: HK Grotesk;
font-style: normal;
font-weight: bold;
font-size: 75px;
line-height: 105%;
margin: 0;
}
.illustration {
max-width: 100%;
max-height: var(--image-max-width);
margin-top: var(--image-margin);
}
/* Instructions */
.instructions {
margin: 1rem auto 0;
}
button,
input {
font-family: inherit;
font-size: 100%;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
padding: 0.5rem 1rem;
transition: 500ms;
}
h2 {
color: #2800FF;
}
.illustration:active {
transform: translateY(5px);
}
.dipped {
transform: translateY(5px);
}
.comebacks {
border-radius: 25px;
margin: 20px;
border: 5px solid;
background-color: #FBD603;
padding: 50px
}
.crediting {
color: #8f8f8f;
font-size: 15px;
font-style: italic;
text-align: right;
}
.footext {
text-align: center;
} | style.css | :root {
--color-bg: #69F7BE;
--color-text-main: #000000;
--color-primary: #FFFF00;
--wrapper-height: 87vh;
--image-max-width: 300px;
--image-margin: 3rem;
--font-family: "HK Grotesk";
--font-family-header: "HK Grotesk";
}
* {
box-sizing: border-box;
}
[hidden] {
display: none !important;
}
@font-face {
font-family: HK Grotesk;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
format("opentype");
}
@font-face {
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
format("opentype");
}
.btn--remix {
font-family: HK Grotesk;
padding: 0.75rem 1rem;
font-size: 1.1rem;
line-height: 1rem;
font-weight: 500;
height: 2.75rem;
align-items: center;
cursor: pointer;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
text-decoration: none;
color: #000;
white-space: nowrap;
margin-left: auto;
}
.btn--remix img {
margin-right: 0.5rem;
}
.btn--remix:hover {
background-color: #D0FFF1;
}
/* Navigation grid */
.footer {
display: flex;
justify-content: space-between;
margin: 1rem auto 0;
padding: 1rem 0 0.75rem 0;
width: 100%;
flex-wrap: wrap;
border-top: 4px solid #fff;
}
.divider {
padding: 0 1rem;
}
body {
font-family: HK Grotesk;
background-color: var(--color-bg);
}
.wrapper {
min-height: var(--wrapper-height);
display: grid;
place-items: center;
margin: 0 1rem;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title {
color: #2800FF;
font-family: HK Grotesk;
font-style: normal;
font-weight: bold;
font-size: 75px;
line-height: 105%;
margin: 0;
}
.illustration {
max-width: 100%;
max-height: var(--image-max-width);
margin-top: var(--image-margin);
}
/* Instructions */
.instructions {
margin: 1rem auto 0;
}
button,
input {
font-family: inherit;
font-size: 100%;
background: #FFFFFF;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
padding: 0.5rem 1rem;
transition: 500ms;
}
h2 {
color: #2800FF;
}
.illustration:active {
transform: translateY(5px);
}
.dipped {
transform: translateY(5px);
}
.comebacks {
border-radius: 25px;
margin: 20px;
border: 5px solid;
background-color: #FBD603;
padding: 50px
}
.crediting {
color: #8f8f8f;
font-size: 15px;
font-style: italic;
text-align: right;
}
.footext {
text-align: center;
} | 0.551332 | 0.162413 |
textarea {
border-radius: 10px;
border: none;
resize: none;
background-color: #cbfacbe3;
padding: 20px;
}
textarea#descricaoDetalhes{
border: none;
background: none;
}
#descricao.blocoEvento {
/* flex-grow: 2; */
}
.sentimentoField {
padding: 10px;
display: flex;
flex: 1;
flex-direction: row;
justify-content: space-between;
align-items: space-between;
}
.sentimentoItem {
flex: 1;
padding: 10px;
}
.sentimentoButton {
padding: 10px;
font-size: medium;
margin: 0 30px;
color: white;
border-radius: 10px;
background-color: #271D24;
font: small;
height: 30px;
border: none;
align-self: center;
}
a.sentimentoButton:hover{
color: #cbfacbe3;
}
.sentimentoButtonG {
padding: 10px;
font-size: medium;
margin: 0 30px;
color: white;
border-radius: 10px;
background-color: #271D24;
font: small;
height: 30px;
width: 300px;
border: none;
align-self: center;
}
.sentimentoButtonDangerG {
padding: 10px;
font-size: medium;
width: 300px;
margin: 0 30px;
color: rgb(255, 255, 255);
border-radius: 10px;
background-color: #c90d06;
font: small;
height: 30px;
border: none;
align-self: center;
}
.footer{
display: flex;
justify-content: center;
align-items: center;
}
#select {
display: block;
font-size: 16px;
font-family: sans-serif;
/* font-weight: 700; */
color: #444;
line-height: 1.3;
padding: .6em 1.4em .5em .8em;
width: 100%;
max-width: 100%;
/* useful when width is set to anything other than 100% */
box-sizing: border-box;
margin: 0;
border: 1px solid #aaa;
box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
border-radius: .5em;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-color: #fff;
}
#select:hover {
border-color: #888;
}
#select option {
font-weight: normal;
}
.radioSentimentos {
flex: 1;
flex-direction: row;
}
#data {
margin: 10px;
border-radius: 10px;
border: none;
background-color: #cbfacbe3;
padding: 20px;
}
input#data {
border-radius: 10px;
border: none;
background-color: #cbfacbe3;
padding: 20px;
}
#tituloInput {
margin-left: 15px;
}
#salvar {
padding: 50px;
font-size: 20px;
text-align: center;
align-self: center;
}
.status{
display: flex;
} | src/main/rancoapp/src/styles/adicionar.css | textarea {
border-radius: 10px;
border: none;
resize: none;
background-color: #cbfacbe3;
padding: 20px;
}
textarea#descricaoDetalhes{
border: none;
background: none;
}
#descricao.blocoEvento {
/* flex-grow: 2; */
}
.sentimentoField {
padding: 10px;
display: flex;
flex: 1;
flex-direction: row;
justify-content: space-between;
align-items: space-between;
}
.sentimentoItem {
flex: 1;
padding: 10px;
}
.sentimentoButton {
padding: 10px;
font-size: medium;
margin: 0 30px;
color: white;
border-radius: 10px;
background-color: #271D24;
font: small;
height: 30px;
border: none;
align-self: center;
}
a.sentimentoButton:hover{
color: #cbfacbe3;
}
.sentimentoButtonG {
padding: 10px;
font-size: medium;
margin: 0 30px;
color: white;
border-radius: 10px;
background-color: #271D24;
font: small;
height: 30px;
width: 300px;
border: none;
align-self: center;
}
.sentimentoButtonDangerG {
padding: 10px;
font-size: medium;
width: 300px;
margin: 0 30px;
color: rgb(255, 255, 255);
border-radius: 10px;
background-color: #c90d06;
font: small;
height: 30px;
border: none;
align-self: center;
}
.footer{
display: flex;
justify-content: center;
align-items: center;
}
#select {
display: block;
font-size: 16px;
font-family: sans-serif;
/* font-weight: 700; */
color: #444;
line-height: 1.3;
padding: .6em 1.4em .5em .8em;
width: 100%;
max-width: 100%;
/* useful when width is set to anything other than 100% */
box-sizing: border-box;
margin: 0;
border: 1px solid #aaa;
box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
border-radius: .5em;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-color: #fff;
}
#select:hover {
border-color: #888;
}
#select option {
font-weight: normal;
}
.radioSentimentos {
flex: 1;
flex-direction: row;
}
#data {
margin: 10px;
border-radius: 10px;
border: none;
background-color: #cbfacbe3;
padding: 20px;
}
input#data {
border-radius: 10px;
border: none;
background-color: #cbfacbe3;
padding: 20px;
}
#tituloInput {
margin-left: 15px;
}
#salvar {
padding: 50px;
font-size: 20px;
text-align: center;
align-self: center;
}
.status{
display: flex;
} | 0.249813 | 0.129595 |
.lwa-modal {
margin-left: -180px;
padding: 32px;
width: 360px;
z-index: 1201;
}
.lwa-modal .lwa-modal-close {
display: none;
}
.lwa-modal[style*="hidden"] {
display: none !important;
}
.lwa-modal-bg {
z-index: 1200;
}
.lwa-form {
display: none;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
font-size: 14.95px;
height: auto !important;
}
.lwa-form.form-visible {
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
}
.lwa-form p {
-ms-flex-order: 1;
margin-bottom: 12px;
-webkit-order: 1;
order: 1;
}
.lwa-form p:last-child {
margin-bottom: 0;
}
.lwa-form .oneall_social_login,
.lwa-form .wc-social-login,
.lwa-form .wp-social-login-widget {
border-bottom: 1px solid #d8d8d8;
margin-bottom: 23px;
padding-bottom: 19px;
position: relative;
}
.lwa-form .wc-social-login:after {
background-color: white;
bottom: -20px;
color: #919191;
content: "or";
display: inline-block;
font-weight: 600;
left: 50%;
padding: 10px;
position: absolute;
text-align: center;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.lwa-form .wc-social-login p:first-child {
display: none;
}
.lwa-form .wc-social-login a:first-of-type {
margin-top: 0;
}
.lwa-form .wc-social-login .button-social-login {
border-radius: 4px;
box-shadow: none;
display: block;
font-size: 16px;
margin: 10px 0;
padding-bottom: 6px;
padding-top: 6px;
text-align: center;
text-shadow: none;
width: 100%;
}
.lwa-form .wc-social-login .button-social-login .si {
border: 0;
left: 13px;
position: absolute;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.lwa-form .wp-social-login-provider-list {
padding-left: 0;
padding-right: 0;
}
.lwa-form .wp-social-login-connect-with {
display: none;
}
.lwa-form .oneall_social_login {
max-height: 110px;
overflow-y: scroll;
}
.lwa-form .lwa-submit-wrapper {
margin: 0;
}
.lwa-form button[type="submit"] {
background-color: #484848;
display: block;
text-align: center;
width: 100%;
}
.lwa-form button[type="submit"]:hover {
background-color: #ff4d55;
}
.lwa-form .button-arrow {
position: relative;
}
.lwa-form .button-arrow:after {
border: 4px solid transparent;
border-left: 4px solid white;
content: "";
display: inline-block;
height: 0;
pointer-events: none;
position: absolute;
right: -18px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
width: 0;
}
.lwa-form label {
display: block;
margin-bottom: 7px;
}
.lwa-form .lwa-meta {
height: 25px;
margin-bottom: 17px;
margin-top: 6px;
}
.lwa-form .lwa-bottom-text {
border-top: 1px solid #d8d8d8;
margin-top: 25px;
padding-top: 18px;
text-align: center;
}
.lwa-form .lwa-action-link {
color: #ff4d55;
}
.lwa-login .remember-me-checkbox {
margin: 0;
margin-right: 10px;
}
.lwa-login .remember-me-checkbox:checked + label {
color: black;
}
.lwa-login .remember-me label {
color: #919191;
display: inline-block;
font-weight: 500;
margin-bottom: 0;
vertical-align: middle;
}
.lwa-login .lost-password {
text-align: right;
}
.lwa-login .lwa-show-remember-pass {
display: inline-block;
font-size: 13px;
vertical-align: middle;
}
.lwa-login .lwa-links-register-inline {
color: #ff4d55;
}
.lwa {
margin-bottom: 0;
}
.lwa .lwa-remember,
.lwa .lwa-register {
margin-top: 0;
}
.lwa-remember p {
margin: 0;
}
.lwa-remember .lwa-submit-wrapper {
margin-bottom: 20px;
margin-top: 25px;
}
.lwa-remember .cancel-button-wrapper a {
display: block;
text-align: center;
}
#lwa-modal-holder {
display: none;
} | assets/css/login-with-ajax.css | .lwa-modal {
margin-left: -180px;
padding: 32px;
width: 360px;
z-index: 1201;
}
.lwa-modal .lwa-modal-close {
display: none;
}
.lwa-modal[style*="hidden"] {
display: none !important;
}
.lwa-modal-bg {
z-index: 1200;
}
.lwa-form {
display: none;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
font-size: 14.95px;
height: auto !important;
}
.lwa-form.form-visible {
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
}
.lwa-form p {
-ms-flex-order: 1;
margin-bottom: 12px;
-webkit-order: 1;
order: 1;
}
.lwa-form p:last-child {
margin-bottom: 0;
}
.lwa-form .oneall_social_login,
.lwa-form .wc-social-login,
.lwa-form .wp-social-login-widget {
border-bottom: 1px solid #d8d8d8;
margin-bottom: 23px;
padding-bottom: 19px;
position: relative;
}
.lwa-form .wc-social-login:after {
background-color: white;
bottom: -20px;
color: #919191;
content: "or";
display: inline-block;
font-weight: 600;
left: 50%;
padding: 10px;
position: absolute;
text-align: center;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.lwa-form .wc-social-login p:first-child {
display: none;
}
.lwa-form .wc-social-login a:first-of-type {
margin-top: 0;
}
.lwa-form .wc-social-login .button-social-login {
border-radius: 4px;
box-shadow: none;
display: block;
font-size: 16px;
margin: 10px 0;
padding-bottom: 6px;
padding-top: 6px;
text-align: center;
text-shadow: none;
width: 100%;
}
.lwa-form .wc-social-login .button-social-login .si {
border: 0;
left: 13px;
position: absolute;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.lwa-form .wp-social-login-provider-list {
padding-left: 0;
padding-right: 0;
}
.lwa-form .wp-social-login-connect-with {
display: none;
}
.lwa-form .oneall_social_login {
max-height: 110px;
overflow-y: scroll;
}
.lwa-form .lwa-submit-wrapper {
margin: 0;
}
.lwa-form button[type="submit"] {
background-color: #484848;
display: block;
text-align: center;
width: 100%;
}
.lwa-form button[type="submit"]:hover {
background-color: #ff4d55;
}
.lwa-form .button-arrow {
position: relative;
}
.lwa-form .button-arrow:after {
border: 4px solid transparent;
border-left: 4px solid white;
content: "";
display: inline-block;
height: 0;
pointer-events: none;
position: absolute;
right: -18px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
width: 0;
}
.lwa-form label {
display: block;
margin-bottom: 7px;
}
.lwa-form .lwa-meta {
height: 25px;
margin-bottom: 17px;
margin-top: 6px;
}
.lwa-form .lwa-bottom-text {
border-top: 1px solid #d8d8d8;
margin-top: 25px;
padding-top: 18px;
text-align: center;
}
.lwa-form .lwa-action-link {
color: #ff4d55;
}
.lwa-login .remember-me-checkbox {
margin: 0;
margin-right: 10px;
}
.lwa-login .remember-me-checkbox:checked + label {
color: black;
}
.lwa-login .remember-me label {
color: #919191;
display: inline-block;
font-weight: 500;
margin-bottom: 0;
vertical-align: middle;
}
.lwa-login .lost-password {
text-align: right;
}
.lwa-login .lwa-show-remember-pass {
display: inline-block;
font-size: 13px;
vertical-align: middle;
}
.lwa-login .lwa-links-register-inline {
color: #ff4d55;
}
.lwa {
margin-bottom: 0;
}
.lwa .lwa-remember,
.lwa .lwa-register {
margin-top: 0;
}
.lwa-remember p {
margin: 0;
}
.lwa-remember .lwa-submit-wrapper {
margin-bottom: 20px;
margin-top: 25px;
}
.lwa-remember .cancel-button-wrapper a {
display: block;
text-align: center;
}
#lwa-modal-holder {
display: none;
} | 0.18407 | 0.048451 |
* {
box-sizing: border-box;
}
body {
background-color: black;
font-family: 'Space Mono', monospace;
}
a {
color: goldenrod;
}
h2 {
color: goldenrod;
font-family: 'Special Elite', cursive;
}
h3 {
color: goldenrod;
margin-bottom: 5px;
margin-top: 30px;
font-family: 'Special Elite', cursive;
}
p {
text-align:justify;
text-justify:inter-word;
margin: 5px;
}
img {
filter: drop-shadow(8px 8px 10px gray);
}
img:hover {
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.imgSocial {
margin: 25px;
width: 60px;
height: 60px;
filter: drop-shadow(4px 4px 10px rgb(128, 128, 128));
}
.imgSocial:hover{
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.container {
width: 65%;
margin: auto;
padding: 20px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
.socials {
width: 65%;
margin: auto;
text-align: center;
color: white;
}
.simbolosHome {
margin: 20px;
max-width: 100%;
height: auto;
}
.start {
background-color: black;
border: 2px solid white;
color: white;
padding: 10px 28px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Special Elite', cursive;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.start:hover {
background-color: white;
color: black;
}
@media only screen and (max-width: 768px) {
.container {
width: 100%;
margin: auto;
margin-top: none;
padding: 10px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
h3 {
margin-top: 20px;
font-size: 16px;
}
p {
font-size: 14px;
text-align: justify;
text-justify: inter-word;
margin: 2px;
}
img {
width: 65px;
height: 75px;
filter: drop-shadow(8px 8px 10px gray);
}
.imgSocial {
margin-top: 40px;
width: 40px;
height: 40px;
filter: drop-shadow(4px 4px 10px gray);
}
} | styles/index.css | * {
box-sizing: border-box;
}
body {
background-color: black;
font-family: 'Space Mono', monospace;
}
a {
color: goldenrod;
}
h2 {
color: goldenrod;
font-family: 'Special Elite', cursive;
}
h3 {
color: goldenrod;
margin-bottom: 5px;
margin-top: 30px;
font-family: 'Special Elite', cursive;
}
p {
text-align:justify;
text-justify:inter-word;
margin: 5px;
}
img {
filter: drop-shadow(8px 8px 10px gray);
}
img:hover {
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.imgSocial {
margin: 25px;
width: 60px;
height: 60px;
filter: drop-shadow(4px 4px 10px rgb(128, 128, 128));
}
.imgSocial:hover{
transition-duration: 200ms;
transform: translateY(-0.2rem);
}
.container {
width: 65%;
margin: auto;
padding: 20px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
.socials {
width: 65%;
margin: auto;
text-align: center;
color: white;
}
.simbolosHome {
margin: 20px;
max-width: 100%;
height: auto;
}
.start {
background-color: black;
border: 2px solid white;
color: white;
padding: 10px 28px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Special Elite', cursive;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.start:hover {
background-color: white;
color: black;
}
@media only screen and (max-width: 768px) {
.container {
width: 100%;
margin: auto;
margin-top: none;
padding: 10px;
border: 2px solid goldenrod;
text-align: center;
color: white;
}
h3 {
margin-top: 20px;
font-size: 16px;
}
p {
font-size: 14px;
text-align: justify;
text-justify: inter-word;
margin: 2px;
}
img {
width: 65px;
height: 75px;
filter: drop-shadow(8px 8px 10px gray);
}
.imgSocial {
margin-top: 40px;
width: 40px;
height: 40px;
filter: drop-shadow(4px 4px 10px gray);
}
} | 0.636014 | 0.157914 |
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;600;700&display=swap");
/*<a href="https://imgur.com/iMvqVJd"><img src="https://i.imgur.com/iMvqVJd.jpg" title="source: imgur.com" alt="pic of me" /></a>*/
body {
background-color: #848484;
}
html{
scroll-behavior: smooth;
}
h1 {
font-family: "Overpass", serif;
font-weight: 700;
font-size: 8em;
color: #9881c9;
text-align: center;
line-height: 150px;
position: relative;
bottom: -250px;
vertical-align: bottom;
}
h2 {
font-family: "Overpass", serif;
font-weight: 700;
font-size: 6em;
color: #ffffff;
margin: 30px 20px;
}
h3 {
font-family: "Overpass", serif;
font-weight: 300;
font-size: 3em;
color: #c9ff85;
}
info {
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2em;
color: black;
transition-duration: 1ms;
transition-property: width;
transition-delay: 0s;
}
h4 {
display: flex;
justify-content: space-evenly;
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2em;
color: black;
transition-duration: 1ms;
transition-property: width;
transition-delay: 0s;
}
h4:hover {
color: #c9ff85;
}
h5 {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 3em;
color: #c9ff85;
margin: 20px;
}
h6 {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 1.8em;
color: white;
margin: 80px 20px;
}
.subtitle {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 4px;
color: Black;
text-align: center;
line-height: 400px;
position: relative;
vertical-align: bottom;
margin-left: -710px;
}
header {
background-image: url("https://i.imgur.com/iMvqVJd.jpg");
background-size: cover;
display: flex;
flex-direction: column;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.example {
width: 80%;
margin: 120px auto;
display: block;
}
.radish {
width: 80%;
margin: 400px 100px;
display: block;
padding: 20px;
}
.corn {
width: 80%;
margin: 400px 200px;
display: block;
padding: 20px;
}
.logo {
height: 200px;
width: auto;
align-self: flex-end;
}
.gut {
height: 80%;
width: 80%;
margin: 120px 445px;
display: block;
align-self: flex-center;
}
a {
display: flex;
justify-content: space-evenly;
font-family: "Overpass", serif;
font-weight: 600;
font-size: 1em;
color: black;
text-decoration: none;
text-align: center;
}
a:hover {
color: #c9ff85;
text-decoration: none;
}
#contact {
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2.5em;
text-decoration: none;
text-align: center;
}
footer {
padding: 20px;
background-color: #9881c9;
display: flex;
Justify-content: center;
height: 4em;
}
@media (min-width: 600px) {
p {
font-size: 7em;
}
}
@media (min-width: 800px) {
p {
font-size: 10em;
} | style.css | @import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;600;700&display=swap");
/*<a href="https://imgur.com/iMvqVJd"><img src="https://i.imgur.com/iMvqVJd.jpg" title="source: imgur.com" alt="pic of me" /></a>*/
body {
background-color: #848484;
}
html{
scroll-behavior: smooth;
}
h1 {
font-family: "Overpass", serif;
font-weight: 700;
font-size: 8em;
color: #9881c9;
text-align: center;
line-height: 150px;
position: relative;
bottom: -250px;
vertical-align: bottom;
}
h2 {
font-family: "Overpass", serif;
font-weight: 700;
font-size: 6em;
color: #ffffff;
margin: 30px 20px;
}
h3 {
font-family: "Overpass", serif;
font-weight: 300;
font-size: 3em;
color: #c9ff85;
}
info {
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2em;
color: black;
transition-duration: 1ms;
transition-property: width;
transition-delay: 0s;
}
h4 {
display: flex;
justify-content: space-evenly;
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2em;
color: black;
transition-duration: 1ms;
transition-property: width;
transition-delay: 0s;
}
h4:hover {
color: #c9ff85;
}
h5 {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 3em;
color: #c9ff85;
margin: 20px;
}
h6 {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 1.8em;
color: white;
margin: 80px 20px;
}
.subtitle {
font-family: "Overpass", serif;
font-weight: 400;
font-size: 4px;
color: Black;
text-align: center;
line-height: 400px;
position: relative;
vertical-align: bottom;
margin-left: -710px;
}
header {
background-image: url("https://i.imgur.com/iMvqVJd.jpg");
background-size: cover;
display: flex;
flex-direction: column;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.example {
width: 80%;
margin: 120px auto;
display: block;
}
.radish {
width: 80%;
margin: 400px 100px;
display: block;
padding: 20px;
}
.corn {
width: 80%;
margin: 400px 200px;
display: block;
padding: 20px;
}
.logo {
height: 200px;
width: auto;
align-self: flex-end;
}
.gut {
height: 80%;
width: 80%;
margin: 120px 445px;
display: block;
align-self: flex-center;
}
a {
display: flex;
justify-content: space-evenly;
font-family: "Overpass", serif;
font-weight: 600;
font-size: 1em;
color: black;
text-decoration: none;
text-align: center;
}
a:hover {
color: #c9ff85;
text-decoration: none;
}
#contact {
font-family: "Overpass", serif;
font-weight: 600;
font-size: 2.5em;
text-decoration: none;
text-align: center;
}
footer {
padding: 20px;
background-color: #9881c9;
display: flex;
Justify-content: center;
height: 4em;
}
@media (min-width: 600px) {
p {
font-size: 7em;
}
}
@media (min-width: 800px) {
p {
font-size: 10em;
} | 0.22465 | 0.115162 |
BODY { /* main_body */
background:#FFFFFF;
color:#000000;
}
A { /* default link */
text-decoration:underline;
color:#08215A;
}
TABLE.NB { /* navbar table */
width:100%;
}
TABLE.NB TD { /* navbar table text */
font-family:sans-serif;
background:#BBCCCC;
padding:0;
border:outset;
font-weight:bold;
font-size:12px;
text-decoration:none;
}
TABLE.NB A { /* navbar table links */
color:#08215A;
text-decoration:none;
}
A.HI { background:#FFFF00; } /* highlighted link found in search (not in NS4.x)*/
/* verilog language elements */
SPAN.C { color:#0000FF; } /* comment (non-link) */
A.C { color:#0000FF; background:#CCCCFF; } /* comment (link) */
SPAN.M { color:#9933FF; font-weight:bold; } /* compiler (non-link) */
SPAN.D { color:#990099; } /* define (non-link) */
A.D { color:#990099; } /* define (link) */
SPAN.F { color:#CC0033; } /* function (non-link) */
A.F { color:#CC0033; } /* function (link) */
SPAN.K { color:#CC3300; } /* keyword (non-link) */
SPAN.MM { color:#6600FF; } /* module (non-link) */
A.MM { color:#6600FF; } /* module (link) */
SPAN.PA { color:#CC0066; } /* parameter (non-link) */
A.PA { color:#CC0066; } /* parameter (link) */
SPAN.P { color:#999999; } /* pre-processor ignore (non-link) */
SPAN.S { color:#009900; } /* string (non-link) */
A.S { color:#009900; } /* string (link) */
SPAN.ST { color:#9933FF; } /* systemtask (non-link) */
SPAN.T { color:#660033; } /* task (non-link) */
A.T { color:#660033; } /* task (link) */
SPAN.SIO { color:#00CC99; } /* signal inout (non-link) */
A.SIO { color:#00CC99; } /* signal inout (link) */
SPAN.SIOR { color:#009999; } /* signal inout_reg (non-link) */
A.SIOR { color:#009999; } /* signal inout_reg (link) */
SPAN.SI { color:#006600; } /* signal input (non-link) */
A.SI { color:#006600; } /* signal input (link) */
SPAN.SIT { color:#663333; } /* signal integer (non-link) */
A.SIT { color:#663333; } /* signal integer (link) */
SPAN.SO { color:#000066; } /* signal output (non-link) */
A.SO { color:#000066; } /* signal output (link) */
SPAN.SOR { color:#0000CC; } /* signal output_reg (non-link) */
A.SOR { color:#0000CC; } /* signal output_reg (link) */
SPAN.SRL { color:#663333; } /* signal real (non-link) */
A.SRL { color:#663333; } /* signal real (link) */
SPAN.SR { color:#FF9933; } /* signal reg (non-link) */
A.SR { color:#FF9933; } /* signal reg (link) */
SPAN.SS0 { color:#CC6600; } /* signal supply0 (non-link) */
A.SS0 { color:#CC6600; } /* signal supply0 (link) */
SPAN.SS1 { color:#CC6600; } /* signal supply1 (non-link) */
A.SS1 { color:#CC6600; } /* signal supply1 (link) */
SPAN.STM { color:#CC3333; } /* signal time (non-link) */
A.STM { color:#CC3333; } /* signal time (link) */
SPAN.SRT { color:#CC3333; } /* signal realtime (non-link)*/
A.SRT { color:#CC3333; } /* signal realtime (link) */
SPAN.STI { color:#CC6600; } /* signal tri (non-link) */
A.STI { color:#CC6600; } /* signal tri (link) */
SPAN.ST0 { color:#CC6600; } /* signal tri0 (non-link) */
A.ST0 { color:#CC6600; } /* signal tri0 (link) */
SPAN.ST1 { color:#CC6600; } /* signal tri1 (non-link) */
A.ST1 { color:#CC6600; } /* signal tri1 (link) */
SPAN.STA { color:#CC6600; } /* signal triand (non-link) */
A.STA { color:#CC6600; } /* signal triand (link) */
SPAN.STO { color:#CC6600; } /* signal trior (non-link) */
A.STO { color:#CC6600; } /* signal trior (link) */
SPAN.STR { color:#CC6600; } /* signal trireg (non-link) */
A.STR { color:#CC6600; } /* signal trireg (link) */
SPAN.SWA { color:#CC6600; } /* signal wand (non-link) */
A.SWA { color:#CC6600; } /* signal wand (link) */
SPAN.SW { color:#CC6600; } /* signal wire (non-link) */
A.SW { color:#CC6600; } /* signal wire (link) */
SPAN.SWO { color:#CC6600; } /* signal wor (non-link) */
A.SWO { color:#CC6600; } /* signal wor (link) */
SPAN.GV { color:#CC6600; font-weight:bold } /* V2001 genvar */
A.GV { color:#CC6600; font-weight:bold } /* V2001 genvar */
SPAN.AT { color:#CC00CC; font-weight:bold } /* V2001 attribute */
A.AT { color:#CC00CC; font-weight:bold } /* V2001 attribute */ | pacoblaze/pacoblaze/v2html.css | BODY { /* main_body */
background:#FFFFFF;
color:#000000;
}
A { /* default link */
text-decoration:underline;
color:#08215A;
}
TABLE.NB { /* navbar table */
width:100%;
}
TABLE.NB TD { /* navbar table text */
font-family:sans-serif;
background:#BBCCCC;
padding:0;
border:outset;
font-weight:bold;
font-size:12px;
text-decoration:none;
}
TABLE.NB A { /* navbar table links */
color:#08215A;
text-decoration:none;
}
A.HI { background:#FFFF00; } /* highlighted link found in search (not in NS4.x)*/
/* verilog language elements */
SPAN.C { color:#0000FF; } /* comment (non-link) */
A.C { color:#0000FF; background:#CCCCFF; } /* comment (link) */
SPAN.M { color:#9933FF; font-weight:bold; } /* compiler (non-link) */
SPAN.D { color:#990099; } /* define (non-link) */
A.D { color:#990099; } /* define (link) */
SPAN.F { color:#CC0033; } /* function (non-link) */
A.F { color:#CC0033; } /* function (link) */
SPAN.K { color:#CC3300; } /* keyword (non-link) */
SPAN.MM { color:#6600FF; } /* module (non-link) */
A.MM { color:#6600FF; } /* module (link) */
SPAN.PA { color:#CC0066; } /* parameter (non-link) */
A.PA { color:#CC0066; } /* parameter (link) */
SPAN.P { color:#999999; } /* pre-processor ignore (non-link) */
SPAN.S { color:#009900; } /* string (non-link) */
A.S { color:#009900; } /* string (link) */
SPAN.ST { color:#9933FF; } /* systemtask (non-link) */
SPAN.T { color:#660033; } /* task (non-link) */
A.T { color:#660033; } /* task (link) */
SPAN.SIO { color:#00CC99; } /* signal inout (non-link) */
A.SIO { color:#00CC99; } /* signal inout (link) */
SPAN.SIOR { color:#009999; } /* signal inout_reg (non-link) */
A.SIOR { color:#009999; } /* signal inout_reg (link) */
SPAN.SI { color:#006600; } /* signal input (non-link) */
A.SI { color:#006600; } /* signal input (link) */
SPAN.SIT { color:#663333; } /* signal integer (non-link) */
A.SIT { color:#663333; } /* signal integer (link) */
SPAN.SO { color:#000066; } /* signal output (non-link) */
A.SO { color:#000066; } /* signal output (link) */
SPAN.SOR { color:#0000CC; } /* signal output_reg (non-link) */
A.SOR { color:#0000CC; } /* signal output_reg (link) */
SPAN.SRL { color:#663333; } /* signal real (non-link) */
A.SRL { color:#663333; } /* signal real (link) */
SPAN.SR { color:#FF9933; } /* signal reg (non-link) */
A.SR { color:#FF9933; } /* signal reg (link) */
SPAN.SS0 { color:#CC6600; } /* signal supply0 (non-link) */
A.SS0 { color:#CC6600; } /* signal supply0 (link) */
SPAN.SS1 { color:#CC6600; } /* signal supply1 (non-link) */
A.SS1 { color:#CC6600; } /* signal supply1 (link) */
SPAN.STM { color:#CC3333; } /* signal time (non-link) */
A.STM { color:#CC3333; } /* signal time (link) */
SPAN.SRT { color:#CC3333; } /* signal realtime (non-link)*/
A.SRT { color:#CC3333; } /* signal realtime (link) */
SPAN.STI { color:#CC6600; } /* signal tri (non-link) */
A.STI { color:#CC6600; } /* signal tri (link) */
SPAN.ST0 { color:#CC6600; } /* signal tri0 (non-link) */
A.ST0 { color:#CC6600; } /* signal tri0 (link) */
SPAN.ST1 { color:#CC6600; } /* signal tri1 (non-link) */
A.ST1 { color:#CC6600; } /* signal tri1 (link) */
SPAN.STA { color:#CC6600; } /* signal triand (non-link) */
A.STA { color:#CC6600; } /* signal triand (link) */
SPAN.STO { color:#CC6600; } /* signal trior (non-link) */
A.STO { color:#CC6600; } /* signal trior (link) */
SPAN.STR { color:#CC6600; } /* signal trireg (non-link) */
A.STR { color:#CC6600; } /* signal trireg (link) */
SPAN.SWA { color:#CC6600; } /* signal wand (non-link) */
A.SWA { color:#CC6600; } /* signal wand (link) */
SPAN.SW { color:#CC6600; } /* signal wire (non-link) */
A.SW { color:#CC6600; } /* signal wire (link) */
SPAN.SWO { color:#CC6600; } /* signal wor (non-link) */
A.SWO { color:#CC6600; } /* signal wor (link) */
SPAN.GV { color:#CC6600; font-weight:bold } /* V2001 genvar */
A.GV { color:#CC6600; font-weight:bold } /* V2001 genvar */
SPAN.AT { color:#CC00CC; font-weight:bold } /* V2001 attribute */
A.AT { color:#CC00CC; font-weight:bold } /* V2001 attribute */ | 0.183155 | 0.037679 |
@import url('https://fonts.googleapis.com/css?family=Architects+Daughter|Inknut+Antiqua|Inknut+Antiqua:700&display=swap');
/* General Styling */
.sheet-bold {
font-weight: bold;
}
.sheet-italic {
font-style: italic;
}
.sheet-center {
text-align: center;
}
.sheet-hidden {
display: none;
}
.sheet-font-smallest {
font-size: 0.75em
}
.sheet-font-smaller {
font-size: 0.8em
}
.sheet-font-small {
font-size: 0.9em
}
.sheet-font-big {
font-size: 1.1em
}
.sheet-font-bigger {
font-size: 1.2em
}
.sheet-font-biggest {
font-size: 1.4em
}
span {
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
}
.sheet-column-2 {
width: calc(49% - 5px);
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-column-3 {
width: calc(32% - 5px);
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-compact {
display: block;
line-height: 1.2;
}
.sheet-left {
float: left;
}
.sheet-right {
float: right;
}
.sheet-faint {
color: rgba(150, 150, 150, 0.8);
}
.sheet-footer {
bottom: 0;
left: 0;
position: absolute;
text-align: center;
width: 100%;
}
.sheet-danger {
color: red;
}
.sheet-relative {
position: relative;
}
/* Tab Styling */
input[type=radio].sheet-tab {
opacity: 0;
position: absolute;
z-index: 2;
height: 20px;
}
input[type=radio].sheet-tab + span {
position: absolute;
border: 2px solid rgba(165, 165, 165, 0.8);
border-radius: 5px 5px 0px 0px;
background-color: #E8E8E8;
color: rgb(64, 64, 64);
text-align: center;
font-weight: bold;
}
input[type=radio].sheet-tab:checked + span {
color: #FFFFFF;
background-color: #3155a4;
}
input[type=radio].sheet-tab.sheet-page1:checked ~ .sheet-page1,
input[type=radio].sheet-tab.sheet-page2:checked ~ .sheet-page2,
input[type=radio].sheet-tab.sheet-page3:checked ~ .sheet-page3,
input[type=radio].sheet-tab.sheet-page4:checked ~ .sheet-page4,
input[type=radio].sheet-tab.sheet-page5:checked ~ .sheet-page5,
input[type=radio].sheet-tab.sheet-page6:checked ~ .sheet-page6
{
display: block;
}
input[type=radio].sheet-tab.sheet-page1,
input[type=radio].sheet-tab.sheet-page1 + span {
top: -20px;
left: 0px;
width: 95px;
}
input[type=radio].sheet-tab.sheet-page2,
input[type=radio].sheet-tab.sheet-page2 + span {
top: -20px;
left: 99px;
width: 50px;
}
input[type=radio].sheet-tab.sheet-page3,
input[type=radio].sheet-tab.sheet-page3 + span {
top: -20px;
left: 153px;
width: 60px;
}
input[type=radio].sheet-tab.sheet-page4,
input[type=radio].sheet-tab.sheet-page4 + span {
top: -20px;
left: 217px;
width: 90px;
}
input[type=radio].sheet-tab.sheet-page5,
input[type=radio].sheet-tab.sheet-page5 + span {
top: -20px;
left: 311px;
width: 50px;
}
input[type=radio].sheet-tab.sheet-page6,
input[type=radio].sheet-tab.sheet-page6 + span {
top: -20px;
left: 365px;
width: 65px;
}
input[type=radio].sheet-tab.sheet-editing,
input[type=radio].sheet-tab.sheet-editing + span {
top: -20px;
right: 79px;
width: 75px;
}
input[type=radio].sheet-tab.sheet-playing,
input[type=radio].sheet-tab.sheet-playing + span {
top: -20px;
right: 0px;
width: 75px;
}
.sheet-tabcontainer {
width: 1075px;
}
/* Edit/Play Mode Styles */
input[type=radio].sheet-playing:checked ~ .sheet-edit,
input[type=radio].sheet-editing:checked ~ .sheet-play,
input[type=radio].sheet-playing:checked ~ .sheet-tabcontainer .sheet-edit,
input[type=radio].sheet-editing:checked ~ .sheet-tabcontainer .sheet-play {
display: none;
}
.sheet-edit,
.sheet-edit > select {
background-color: rgb(255, 255, 0, 0.2);
}
.sheet-name .sheet-edit {
width: 102px;
}
.sheet-stock .sheet-edit {
width: 103px;
}
.sheet-class .sheet-edit {
width: 107px;
}
.sheet-home .sheet-edit {
width: 101px;
}
.sheet-raiment .sheet-edit {
width: 333px;
}
.sheet-parents .sheet-edit {
width: 90px;
}
.sheet-mentor .sheet-edit {
width: 91px;
}
.sheet-friend .sheet-edit {
width: 98px;
}
.sheet-enemy .sheet-edit {
width: 95px;
}
/* Button Styling */
button[type=roll]
{
background-color: transparent;
color: rgb(64, 64, 64);
border: none;
font-size: 1em !important;
text-align: left;
background-image: none;
text-shadow: none;
box-shadow: none;
padding: 0px;
margin: 0px;
width: 100%;
overflow: hidden;
}
button[type=roll]::before
{
content: "" !important;
}
button[type=roll]:hover,
input[type="checkbox"].sheet-complex_roll:hover + span.sheet-complex_roll
{
color: #3155a4;
}
.sheet-complex_roll{
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
}
input[type="checkbox"].sheet-complex_roll {
opacity: 0.0;
cursor: pointer;
z-index: 10;
height: 100%;
}
/* Header Styling */
.sheet-header {
color: #3155a4;
font-family: 'Inknut Antiqua';
font-size: 1.6em;
font-weight: 700;
font-variant: small-caps;
letter-spacing: -2px;
text-shadow: 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0;
background-image: linear-gradient(to right, rgba(216, 216, 216, 0.6), rgba(238, 222, 222, 0));
border-radius: 25px;
padding-left: 8px;
margin-top: 5px;
}
.sheet-center-column .sheet-header {
text-align: center;
padding: 0px;
}
/* Handwritten Styling */
.sheet-handwritten {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
}
.sheet-underlined-input,
input[type="checkbox"].sheet-underlined + span,
input[type="radio"].sheet-underlined + span
{
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
width: 30px !important;
-webkit-appearance: textfield;
margin: 0;
-moz-appearance: textfield;
text-align: center;
padding: 0px;
font-size: 1.2em;
}
.sheet-underlined-input::-webkit-outer-spin-button,
.sheet-underlined-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.sheet-underlined-input.sheet-edit {
border: none;
background-color: rgb(255, 255, 0, 0.2);
}
.sheet-underlined-select {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
padding: 0px;
font-size: 1.2em;
height: 20px;
}
/* Layout Styling */
.sheet-container {
width: 1075px;
position: relative;
margin-left: -15px;
background: url('https://i.imgur.com/MzNsfJi.jpg');
background-size: 100% 100%;
min-height: 935px;
display: flex;
}
.sheet-left-column {
display: inline-block;
vertical-align: top;
width: 355px;
height: 100%;
border-right: 2px solid rgba(165, 165, 165, 0.8);
position: relative;
}
.sheet-center-column {
display: inline-block;
vertical-align: top;
width: 188px;
margin-left: -5px;
margin-right: -5px;
height: 100%;
position: relative;
}
.sheet-right-column {
display: inline-block;
vertical-align: top;
width: 530px;
height: 100%;
border-left: 2px solid rgba(165, 165, 165, 0.8);
position: relative;
}
.sheet-section {
padding: 10px;
border-top: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-container {
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-traits,
.sheet-fate,
.sheet-check-info
{
position: relative;
}
.sheet-logo {
background: url('https://i.imgur.com/5SuVIW0.png');
background-size: 100% 100%;
height: 53px;
width: 98%;
position: absolute;
top: 0;
left: 1%;
}
/* Bubble Styling */
input[type="radio"].sheet-normal
{
position: absolute;
opacity: 0.0;
width: 10px;
cursor: pointer;
z-index: 10;
margin-top: 5px;
margin-right: -4px;
}
input[type="radio"].sheet-normal + span::before
{
border: solid 1px #000000;
line-height: 11px;
text-align: center;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 0px #000;
-webkit-box-shadow: 0 0 0px #000;
box-shadow: 0 0 0px #000;
background: #000000;
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
background: radial-gradient(#f6f6f6, #dfdfdf);
}
input[type="radio"].sheet-normal + span::before
{
content: "•";
width: 8px;
height: 8px;
font-size: 40.9px;
font-family: "Arial";
text-indent: -3px;
font-weight: normal;
-webkit-font-smoothing: antialiased;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
margin-right: -4px;
}
input[type="radio"].sheet-normal:checked ~ input[type="radio"] + span::before
{
content: "";
}
input.sheet-zero:checked + span::before
{
opacity: 0;
}
input.sheet-zero:hover + span::before
{
opacity: 0.25;
font-size: 12px;
content: "✖";
text-indent: -1px;
}
input.sheet-zero + span::before
{
opacity: 0;
}
.sheet-advancement-flag[value="0"] ~ .sheet-advancement-pass .sheet-0,
.sheet-advancement-flag[value="1"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-4,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-4,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="0"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-8,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-8,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-9,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-8,
.sheet-untaxed_nature[value="1"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="2"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="2"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-5,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-5,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-6,
.sheet-show-advancement[value="1"] ~ .sheet-advancement-checkbox,
.sheet-roll_type[value="simple"] ~ div .sheet-beginner_luck_flag[value="0"] ~ .sheet-simple_roll.sheet-beginner_luck,
.sheet-roll_type[value="simple"] ~ div .sheet-beginner_luck_flag:not([value="0"]) ~ .sheet-simple_roll.sheet-normal,
.sheet-roll_type[value="complex"] ~ div .sheet-complex_roll
{
display: inline-block;
}
.sheet-advancement-flag[value="0"]:not(.sheet-max10) ~ .sheet-advancement-pass,
.sheet-advancement-flag[value="0"]:not(.sheet-max10) ~ .sheet-advancement-fail,
.sheet-advancement-flag:not([value="0"]) ~ .sheet-beginner-checks
{
display: none;
}
.sheet-advancement-checkbox {
position: absolute;
right: 0;
top: 0;
width: 15px;
height: 15px;
}
input[type="checkbox"].sheet-advancement-checkbox {
opacity: 0.0;
cursor: pointer;
z-index: 10;
height: 15px;
}
input[type="checkbox"].sheet-advancement-checkbox + span {
background: url('https://i.imgur.com/lz44L8d.png');
background-size: 100% 100%;
}
/* Condition Checkbox Styling */
.sheet-conditions .sheet-body .sheet-condition
{
position: relative;
}
input[type="checkbox"].sheet-underlined,
input[type="radio"].sheet-underlined
{
position: absolute;
opacity: 0.0;
width: 30px;
cursor: pointer;
z-index: 10;
}
input[type="checkbox"].sheet-underlined:checked + span::before,
input[type="radio"].sheet-underlined:checked + span::before
{
content: "x";
position: absolute;
top: -4px;
left: 11px;
}
.sheet-conditions .sheet-body .sheet-leftside,
.sheet-conditions .sheet-body .sheet-rightside
{
height: 19px;
display: inline-block;
}
.sheet-conditions .sheet-body .sheet-leftside {
width: 70%;
}
.sheet-conditions .sheet-body .sheet-rightside {
width: 27%;
position: relative;
}
.sheet-conditions .sheet-body .sheet-rightside .sheet-complex_roll {
top: 7px;
}
.sheet-conditions .sheet-body .sheet-rightside .sheet-simple_roll {
vertical-align: bottom;
}
.sheet-hidden.sheet-condition-display {
display: none;
}
input.sheet-condition-flag[value="1"] + .sheet-condition-display {
display: block;
}
.sheet-warning {
background-color: rgb(255, 255, 0, 0.2);
border: 1px solid rgba(165, 165, 165, 0.8);
border-radius: 5px;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
}
.sheet-skills .sheet-row.sheet-warning {
height: 18px;
}
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ button,
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ input,
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ input + span
{
cursor: not-allowed;
pointer-events: none;
color: rgba(150, 150, 150, 0.8);
}
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"],
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"] + span
{
cursor: not-allowed;
pointer-events: none;
color: rgba(150, 150, 150, 0.8);
}
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"] + span::before {
background: radial-gradient(rgba(150, 150, 150, 0.8), rgba(150, 150, 150, 0.8));
border: 1px solid rgba(150, 150, 150, 0.8)
}
/* Who You Are Styling */
.sheet-who-you-are .sheet-column-2 .sheet-row span:first-of-type {
margin-right: 5px;
}
/* Traits */
.sheet-trait {
margin-bottom: 10px;
min-height: 40px;
}
.sheet-trait div {
vertical-align: top;
}
.sheet-trait-name {
width: 120px;
display: inline-block;
}
.sheet-trait-level {
width: 80px;
display: inline-block;
}
.sheet-trait-uses {
width: 90px;
display: inline-block;
}
.sheet-trait-checks {
width: 28px;
display: inline-block;
}
.sheet-traits-flag[value="1"] ~ div .sheet-1,
.sheet-traits-flag[value="2"] ~ div .sheet-2,
.sheet-traits-flag[value="3"] ~ div .sheet-3 {
display: inline-block;
}
.sheet-trait-name input {
width: 115px;
}
.sheet-trait-level select {
width: 80px;
}
/* ABILITIES AND SKILLS */
.sheet-raw-abilities,
.sheet-town-abilities {
display: inline-block;
width: 95px;
padding-right: 5px;
vertical-align: top;
position: relative;
height: 30px;
}
.sheet-rating {
display: inline-block;
width: 25px;
margin-right: 10px;
text-align: center;
vertical-align: top;
}
.sheet-advancement {
display: inline-block;
width: 110px;
line-height: 10px;
}
.sheet-nature-descriptor {
display: inline-block;
margin-left: 5px;
}
.sheet-nature-descriptor:not(:last-child) span::after {
content: ",";
}
.sheet-abilities .sheet-row,
.sheet-skills .sheet-row
{
height: 30px;
}
.sheet-abilities .sheet-rating:not(.sheet-header-only),
.sheet-skills .sheet-rating:not(.sheet-header-only) {
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
font-size: 1.2em;
line-height: .9;
}
.sheet-raw-abilities.sheet-nature {
width: 80px;
}
.sheet-rating.sheet-nature {
width: 40px;
}
.sheet-rating.sheet-nature .sheet-edit {
width: 12px !important;
}
.sheet-might-container {
vertical-align: top;
}
.sheet-might {
display: inline-block;
margin-right: 15px;
}
input[type=radio].sheet-editing:checked ~ .sheet-tabcontainer .sheet-might + .sheet-rating {
position: relative;
min-height: 25px;
}
.sheet-beginner-checks .sheet-bl-label {
margin-right: -7px;
}
.sheet-skill-footer .sheet-footer-left,
.sheet-skill-footer .sheet-footer-right {
display: inline-block;
}
.sheet-skill-footer .sheet-footer-left {
width: 22.5%;
border-right: 1px solid black;
}
.sheet-skill-footer .sheet-footer-right {
width: 76%;
}
.sheet-skill-footer .sheet-row {
height: 12px;
}
.sheet-roll_type[value="simple"] ~ div .sheet-precedence {
margin-left: 9px;
}
.sheet-nature-descriptor input {
width: 120px;
}
.sheet-town-abilities input.sheet-edit {
width: 100px;
}
.sheet-advancement {
position: relative;
}
.sheet-advancement .sheet-edit {
width: 68px;
position: absolute;
top: -5px;
right: 0px;
}
.sheet-advancement .sheet-edit select {
width: 68px;
}
.sheet-column-skills {
width: calc(50% - 2px);
display: inline-block;
vertical-align: top;
}
.sheet-bl-ability {
position: absolute;
right: 14px;
font-size: .8em;
}
.sheet-bl-ability-flag[value="w"] ~ .sheet-w,
.sheet-bl-ability-flag[value="h"] ~ .sheet-h
{
display: inline-block;
}
/* Fate Styling */
.sheet-fate .sheet-box {
display: inline-block;
padding: 5px;
border: 2px solid rgba(150, 150, 150, 0.8);
margin-right: -5px;
width: 60px;
}
.sheet-fate .sheet-name-header {
margin-top: 10px;
}
.sheet-fate .sheet-compact,
.sheet-check-info .sheet-compact {
margin-top: 3px;
}
/* Who You Are & What You Fight For Styling */
.sheet-who-you-are .sheet-row,
.sheet-what-you-fight-for .sheet-body > .sheet-row
{
margin-top: 6px;
}
.sheet-conditions .sheet-body > .sheet-row {
margin-top: 12px;
}
.sheet-who-you-are .sheet-row {
min-height: 25px;
}
.sheet-what-you-fight-for .sheet-body > .sheet-row {
min-height: 75px;
}
.sheet-what-you-fight-for textarea {
width: calc(100% - 15px);
resize: vertical;
height: 40px;
}
/* Wises Styling */
.sheet-wise-check-container {
position: relative;
display: inline-block;
}
.sheet-wise-check-container:not(:last-child) {
border-right: 1px solid black;
padding-right: 5px;
}
.sheet-wise-check-container input[type="checkbox"].sheet-underlined,
.sheet-wise-check-container input[type="checkbox"].sheet-underlined + span,
.sheet-wise-check-container input[type="radio"].sheet-underlined,
.sheet-wise-check-container input[type="radio"].sheet-underlined + span
{
width: 15px !important;
}
.sheet-wise-check-container input[type="checkbox"].sheet-underlined + span:before,
.sheet-wise-check-container input[type="radio"].sheet-underlined + span:before
{
left: 3px;
}
.sheet-wises .sheet-name-container {
min-height: 20px;
border-bottom: 1px solid black;
margin-bottom: 5px;
}
.sheet-wises .sheet-row {
margin-bottom: 10px;
}
.sheet-wises-left,
.sheet-wises-right {
width: 45%;
display: inline-block;
}
.sheet-wises-left {
margin-right: 5%;
}
/* Complex Roll Styling */
.sheet-modal-flag[value="1"] + .sheet-complex-roll-modal
{
display: block;
position: fixed;
top: 100px;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
z-index: 100;
width: 500px;
background: rgb(240, 240, 240);
border: 2px solid rgba(64, 64, 64, 0.8);
border-radius: 5px;
padding: 10px;
}
input[type=checkbox].sheet-close-complex-modal,
input[type=checkbox].sheet-close-complex-modal + span {
position: absolute;
top: 0px;
right: 0px;
width: 15px;
height: 15px;
}
input[type=checkbox].sheet-close-complex-modal {
cursor: pointer;
opacity: 0;
z-index: 101;
}
input[type=checkbox].sheet-close-complex-modal + span::before {
content: "✖";
}
.sheet-check-container {
position: relative;
height: 25px;
}
input.sheet-ob-flag[value="independent"] ~ .sheet-independent,
input.sheet-ob-flag[value="versus"] ~ .sheet-versus,
input.sheet-ob-flag[value="versus"] ~ div .sheet-versus,
input.sheet-ob-flag[value="conflict"] ~ .sheet-conflict
{
display: block;
}
.sheet-roll-choices {
border-top: 2px solid rgba(165, 165, 165, 0.8);
margin-top: 10px;
padding-top: 10px;
}
.sheet-trait-mod:checked ~ .sheet-trait-mod-options,
.sheet-persona:checked ~ .sheet-persona-options,
.sheet-nature:checked ~ .sheet-nature-options,
.sheet-help:checked ~ .sheet-help-options,
.sheet-gear:checked ~ .sheet-gear-options,
.sheet-other:checked ~ .sheet-other-options,
input.sheet-town-ability-flag[value="circles"] + .sheet-town-ability,
input.sheet-town-ability-flag[value="resources"] + .sheet-town-ability,
input.sheet-mod-flag:not([value="0"]) + .sheet-mod,
/* input.sheet-mod-flag[value="1"] + .sheet-mod, */
input.sheet-mod-flag[value="0"] + input.sheet-not-town[value="0"] + .sheet-mod,
input.sheet-mod-flag-bl[value="ceil(("] + .sheet-mod,
input.sheet-in-or-out[value="outside"] + .sheet-out
{
display: inline-block;
}
.sheet-row.sheet-check-container.sheet-hidden,
.sheet-row.sheet-conflict.sheet-hidden
{
display: none;
}
.sheet-trait-select {
width: 130px;
}
.sheet-nature-select {
width: 80px;
}
input[type=number].sheet-ob-input {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
width: 50px;
text-align: center;
padding: 0px;
font-size: 2.5em;
}
.sheet-roll-obstacle {
position: relative;
}
.sheet-rolling {
margin-top: 17px;
}
button[type=roll].sheet-complex-roll-button {
position: absolute;
right: 10px;
bottom: -5px;
width: 33%;
height: 25px;
background: #3155a4;
border: 2px solid rgba(165, 165, 165, 0.8);
text-align: center;
z-index: 10;
}
/* input[type=checkbox].sheet-complex-roll-listener {
position: absolute;
right: 10px;
bottom: -5px;
width: 33%;
height: 25px;
opacity: 0.1;
z-index: 10;
} */
button[type=roll].sheet-complex-roll-button span {
color: white;
-webkit-text-stroke-color: white;
}
.sheet-disposition-type {
width: 110%;
}
.sheet-disposition-type input[type="radio"].sheet-underlined + span {
margin-right: 3px;
}
.sheet-disposition-type input[type="radio"].sheet-underlined + span::before {
left: 3px;
}
.sheet-disposition-type input[type="radio"].sheet-underlined,
.sheet-disposition-type input[type="radio"].sheet-underlined + span {
width: 15px !important;
}
.sheet-disposition-type div {
display: inline-block;
}
.sheet-disposition-type .sheet-disposition-subtype {
position: absolute;
right: 0px;
top: 10px;
width: 85px;
}
.sheet-check-container.sheet-bottom {
height: 40px;
}
/* Roll Template Styling */
.sheet-rolltemplate-simple .sheet-container,
.sheet-rolltemplate-complex .sheet-container
{
background: rgb(240, 240, 240);
border: 2px solid rgba(150, 150, 150, 0.8);
border-radius: 5px;
padding: 10px;
}
.sheet-rolltemplate-simple .sheet-name,
.sheet-rolltemplate-complex .sheet-name
{
color: #3155a4;
font-family: 'Inknut Antiqua';
font-size: 1.4em;
font-weight: 700;
font-variant: small-caps;
letter-spacing: -2px;
text-shadow: 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0;
}
.sheet-rolltemplate-simple .sheet-faint,
.sheet-rolltemplate-complex .sheet-faint
{
color: rgba(150, 150, 150, 0.8);
font-size: 0.85em;
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
}
.sheet-rolltemplate-simple .sheet-result,
.sheet-rolltemplate-complex .sheet-result
{
text-align: center;
font-size: 2em;
}
.sheet-rolltemplate-simple .sheet-success-footer,
.sheet-rolltemplate-complex .sheet-success-footer
{
font-size: 0.35em;
}
.sheet-rolltemplate-simple .sheet-dead,
.sheet-rolltemplate-complex .sheet-dead
{
font-size: 0.8em;
line-height: 1;
}
.sheet-rolltemplate-simple .sheet-conditions,
.sheet-rolltemplate-complex .sheet-conditions
{
line-height: 10px;
}
.sheet-rolltemplate-simple .sheet-conditions .sheet-handwritten,
.sheet-rolltemplate-complex .sheet-conditions .sheet-handwritten
{
font-size: 0.8em;
color: rgba(150, 150, 150, 0.8);
-webkit-text-stroke-color: rgba(150, 150, 150, 0.8);
}
.sheet-rolltemplate-simple .inlinerollresult,
.sheet-rolltemplate-simple .inlinerollresult.fullcrit,
.sheet-rolltemplate-simple .inlinerollresult.fullfail,
.sheet-rolltemplate-simple .inlinerollresult.importantroll,
.sheet-rolltemplate-complex .inlinerollresult,
.sheet-rolltemplate-complex .inlinerollresult.fullcrit,
.sheet-rolltemplate-complex .inlinerollresult.fullfail,
.sheet-rolltemplate-complex .inlinerollresult.importantroll
{
background: none;
border: none;
}
.sheet-rolltemplate-simple .sheet-caps,
.sheet-rolltemplate-complex .sheet-caps
{
text-transform: uppercase;
}
.sheet-rolltemplate-simple .sheet-handwritten,
.sheet-rolltemplate-complex .sheet-handwritten
{
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
}
.sheet-rolltemplate-simple .sheet-handwritten.sheet-failure,
.sheet-rolltemplate-complex .sheet-handwritten.sheet-failure
{
color: #a4110e;
-webkit-text-stroke-color: #a4110e;
}
.sheet-rolltemplate-complex .sheet-comma {
margin-left: -5px;
}
.sheet-rolltemplate-complex .sheet-column-3 {
/* width: calc(30% - 5px); */
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-rolltemplate-complex .sheet-vs {
color: rgba(150, 150, 150, 0.8);
font-size: 0.55em;
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
margin-left: -15px;
margin-right: -15px;
}
.sheet-rolltemplate-complex .sheet-conflict-subtype {
text-align: center;
}
/* INVENTORY STYLING */
.sheet-inventory .sheet-name-header {
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-inventory-row {
display: inline-block;
margin-right: 10px;
vertical-align: top;
max-height: 450px;
}
.sheet-inventory-section {
width: 190px;
margin-bottom: 20px;
}
.sheet-inventory-container {
min-height: 30px;
width: 100%;
}
.sheet-inventory-container .sheet-status-container {
position: relative;
}
input[type=radio].sheet-editing:not(:checked) ~ .sheet-tabcontainer .sheet-inventory-container .sheet-status-container input[type="checkbox"]:checked ~ span.sheet-status {
display: inline-block;
position: absolute;
left: 55px;
top: -5px;
}
.sheet-inventory-container .sheet-textinput {
width: 140px;
}
.sheet-status {
background: none;
}
.sheet-worn {
margin-right: 5px;
}
input.sheet-backpack-flag[value="none"] ~ .sheet-none,
input.sheet-backpack-flag[value="satchel"] ~ .sheet-satchel,
input.sheet-backpack-flag[value="backpack"] ~ .sheet-backpack,
input.sheet-container-flag[value="small"] ~ .sheet-small,
input.sheet-container-flag[value="large"] ~ .sheet-large,
input.sheet-container-flag[value="cache"] ~ .sheet-cache
{
display: inline-block;
}
.sheet-inventory .repitem {
display: inline-block;
vertical-align: top;
margin-right: 10px;
}
.sheet-inventory-row.sheet-end {
max-width: 400px;
}
.sheet-carried-options div {
display: inline-block;
position: relative;
}
.sheet-carried-options input.sheet-underlined,
.sheet-carried-options input.sheet-underlined + span
{
width: 15px !important;
}
.sheet-carried-options input[type="radio"].sheet-underlined:checked + span::before {
left: 3px;
}
/* MAGIC STYLING */
.sheet-relic-name,
.sheet-relic-inventory,
.sheet-relic-invocation
{
display: inline-block;
min-height: 25px;
position: relative;
}
.sheet-relic-name span,
.sheet-relic-inventory span,
.sheet-relic-invocation span
{
position: absolute;
bottom: 0px;
}
.sheet-relic-name input,
.sheet-relic-inventory input,
.sheet-relic-invocation input
{
position: absolute;
bottom: -3px;
}
.sheet-relic-name,
.sheet-relic-name input
{
width: 200px;
}
.sheet-relic-inventory,
.sheet-relic-inventory input
{
width: 200px;
}
.sheet-relic-invocation,
.sheet-relic-invocation input
{
width: 300px;
}
.sheet-relics .sheet-row {
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-relic-section {
margin-right: 25px;
display: inline-block;
}
.sheet-urdr-burden-section {
display: inline-block;
vertical-align: top;
}
.sheet-urdr-burden-section,
.sheet-urdr-burden-section .sheet-row
{
width: 250px;
}
.sheet-urdr-burden-section span.sheet-faint,
.sheet-urdr-burden-section span.sheet-handwritten {
padding-left: 15px;
}
span.sheet-handwritten.sheet-danger {
color: red;
-webkit-text-stroke-color:red;
}
.sheet-relics {
width: 100%;
}
.sheet-relics .sheet-header {
width: 100%;
}
input.sheet-stigmata-flag[value="1"] ~ .sheet-stigmata
{
display: inline-block;
}
.sheet-spells {
position: relative;
}
.sheet-spells .sheet-header {
width: 100%;
}
.sheet-spells .sheet-memory-palace {
position: absolute;
top: 0px;
right: 45px;
}
.sheet-spell-name {
width: 200px;
min-height: 25px;
position: relative;
vertical-align: top;
}
.sheet-spell-name input {
width: 200px;
}
.sheet-spell-ob,
.sheet-spell-known,
.sheet-spell-book,
.sheet-spell-mem,
.sheet-spell-cast,
.sheet-spell-scroll,
.sheet-spell-supplies {
width: 70px;
min-height: 25px;
position: relative;
text-align: center;
vertical-align: top;
}
.sheet-spell-effect {
width: 355px;
min-height: 25px;
position: relative;
vertical-align: top;
padding-left: 5px;
}
.sheet-spell-effect.sheet-title {
text-align: center;
}
.sheet-spell-effect span {
margin-left: 15px;
}
.sheet-spell-effect input {
width: 355px;
}
.sheet-spell-ob,
.sheet-spell-book,
.sheet-spell-cast,
.sheet-spell-supplies
{
background-color: rgba(165, 165, 165, 0.3);
}
.sheet-spells .sheet-underlined {
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
padding-left: 15px;
}
.sheet-memory-palace span.sheet-faint {
width: 250px;
}
.sheet-spells input[type="checkbox"].sheet-underlined:checked + span::before {
left: 30px;
}
.sheet-spells .sheet-row {
display: flex;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-spells-section {
width: 1060px;
}
/* RELATIONSHIP STYLING */
.sheet-relationships .sheet-row {
display: flex;
width: 1060px;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-relationship-name,
.sheet-relationship-name input
{
width: 200px;
}
.sheet-relationship-location,
.sheet-relationship-location input
{
width: 150px;
}
.sheet-relationship-status,
.sheet-relationship-status input
{
width: 150px;
}
.sheet-relationship-notes,
.sheet-relationship-notes input
{
width: 560px;
}
.sheet-relationship-notes span {
margin-left: 15px;
}
/* LEVELS STYLING */
.sheet-level-number,
.sheet-level-f,
.sheet-level-p
{
display: inline-block;
text-align: center;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-level-benefits {
display: inline-block;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-level-row:not(:first-child) .sheet-level-number,
.sheet-level-row:not(:first-child) .sheet-level-f,
.sheet-level-row:not(:first-child) .sheet-level-p,
.sheet-level-row:not(:first-child) .sheet-level-benefits
{
padding-top: 15px;
padding-bottom: 15px;
}
.sheet-level-number {
width: 50px;
font-weight: bold;
}
.sheet-level-f {
width: 30px;
}
.sheet-level-p {
width: 30px;
}
.sheet-level-benefits {
width: 930px;
padding-left: 10px;
}
.sheet-levels .sheet-row:first-child,
.sheet-row.sheet-level-row {
display: flex;
}
.sheet-level-row.sheet-shaded {
background-color: rgba(165, 165, 165, 0.3);
}
.sheet-level-row:not(:first-child) .sheet-level-f,
.sheet-level-row:not(:first-child) .sheet-level-p,
.sheet-level-row:not(:first-child) .sheet-level-benefits
{
border-left: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-levels textarea {
height: 18px;
margin: 0px;
width: 920px;
resize: vertical;
} | Torchbearer 2E/torchbearer.css | @import url('https://fonts.googleapis.com/css?family=Architects+Daughter|Inknut+Antiqua|Inknut+Antiqua:700&display=swap');
/* General Styling */
.sheet-bold {
font-weight: bold;
}
.sheet-italic {
font-style: italic;
}
.sheet-center {
text-align: center;
}
.sheet-hidden {
display: none;
}
.sheet-font-smallest {
font-size: 0.75em
}
.sheet-font-smaller {
font-size: 0.8em
}
.sheet-font-small {
font-size: 0.9em
}
.sheet-font-big {
font-size: 1.1em
}
.sheet-font-bigger {
font-size: 1.2em
}
.sheet-font-biggest {
font-size: 1.4em
}
span {
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
}
.sheet-column-2 {
width: calc(49% - 5px);
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-column-3 {
width: calc(32% - 5px);
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-compact {
display: block;
line-height: 1.2;
}
.sheet-left {
float: left;
}
.sheet-right {
float: right;
}
.sheet-faint {
color: rgba(150, 150, 150, 0.8);
}
.sheet-footer {
bottom: 0;
left: 0;
position: absolute;
text-align: center;
width: 100%;
}
.sheet-danger {
color: red;
}
.sheet-relative {
position: relative;
}
/* Tab Styling */
input[type=radio].sheet-tab {
opacity: 0;
position: absolute;
z-index: 2;
height: 20px;
}
input[type=radio].sheet-tab + span {
position: absolute;
border: 2px solid rgba(165, 165, 165, 0.8);
border-radius: 5px 5px 0px 0px;
background-color: #E8E8E8;
color: rgb(64, 64, 64);
text-align: center;
font-weight: bold;
}
input[type=radio].sheet-tab:checked + span {
color: #FFFFFF;
background-color: #3155a4;
}
input[type=radio].sheet-tab.sheet-page1:checked ~ .sheet-page1,
input[type=radio].sheet-tab.sheet-page2:checked ~ .sheet-page2,
input[type=radio].sheet-tab.sheet-page3:checked ~ .sheet-page3,
input[type=radio].sheet-tab.sheet-page4:checked ~ .sheet-page4,
input[type=radio].sheet-tab.sheet-page5:checked ~ .sheet-page5,
input[type=radio].sheet-tab.sheet-page6:checked ~ .sheet-page6
{
display: block;
}
input[type=radio].sheet-tab.sheet-page1,
input[type=radio].sheet-tab.sheet-page1 + span {
top: -20px;
left: 0px;
width: 95px;
}
input[type=radio].sheet-tab.sheet-page2,
input[type=radio].sheet-tab.sheet-page2 + span {
top: -20px;
left: 99px;
width: 50px;
}
input[type=radio].sheet-tab.sheet-page3,
input[type=radio].sheet-tab.sheet-page3 + span {
top: -20px;
left: 153px;
width: 60px;
}
input[type=radio].sheet-tab.sheet-page4,
input[type=radio].sheet-tab.sheet-page4 + span {
top: -20px;
left: 217px;
width: 90px;
}
input[type=radio].sheet-tab.sheet-page5,
input[type=radio].sheet-tab.sheet-page5 + span {
top: -20px;
left: 311px;
width: 50px;
}
input[type=radio].sheet-tab.sheet-page6,
input[type=radio].sheet-tab.sheet-page6 + span {
top: -20px;
left: 365px;
width: 65px;
}
input[type=radio].sheet-tab.sheet-editing,
input[type=radio].sheet-tab.sheet-editing + span {
top: -20px;
right: 79px;
width: 75px;
}
input[type=radio].sheet-tab.sheet-playing,
input[type=radio].sheet-tab.sheet-playing + span {
top: -20px;
right: 0px;
width: 75px;
}
.sheet-tabcontainer {
width: 1075px;
}
/* Edit/Play Mode Styles */
input[type=radio].sheet-playing:checked ~ .sheet-edit,
input[type=radio].sheet-editing:checked ~ .sheet-play,
input[type=radio].sheet-playing:checked ~ .sheet-tabcontainer .sheet-edit,
input[type=radio].sheet-editing:checked ~ .sheet-tabcontainer .sheet-play {
display: none;
}
.sheet-edit,
.sheet-edit > select {
background-color: rgb(255, 255, 0, 0.2);
}
.sheet-name .sheet-edit {
width: 102px;
}
.sheet-stock .sheet-edit {
width: 103px;
}
.sheet-class .sheet-edit {
width: 107px;
}
.sheet-home .sheet-edit {
width: 101px;
}
.sheet-raiment .sheet-edit {
width: 333px;
}
.sheet-parents .sheet-edit {
width: 90px;
}
.sheet-mentor .sheet-edit {
width: 91px;
}
.sheet-friend .sheet-edit {
width: 98px;
}
.sheet-enemy .sheet-edit {
width: 95px;
}
/* Button Styling */
button[type=roll]
{
background-color: transparent;
color: rgb(64, 64, 64);
border: none;
font-size: 1em !important;
text-align: left;
background-image: none;
text-shadow: none;
box-shadow: none;
padding: 0px;
margin: 0px;
width: 100%;
overflow: hidden;
}
button[type=roll]::before
{
content: "" !important;
}
button[type=roll]:hover,
input[type="checkbox"].sheet-complex_roll:hover + span.sheet-complex_roll
{
color: #3155a4;
}
.sheet-complex_roll{
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
}
input[type="checkbox"].sheet-complex_roll {
opacity: 0.0;
cursor: pointer;
z-index: 10;
height: 100%;
}
/* Header Styling */
.sheet-header {
color: #3155a4;
font-family: 'Inknut Antiqua';
font-size: 1.6em;
font-weight: 700;
font-variant: small-caps;
letter-spacing: -2px;
text-shadow: 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0;
background-image: linear-gradient(to right, rgba(216, 216, 216, 0.6), rgba(238, 222, 222, 0));
border-radius: 25px;
padding-left: 8px;
margin-top: 5px;
}
.sheet-center-column .sheet-header {
text-align: center;
padding: 0px;
}
/* Handwritten Styling */
.sheet-handwritten {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
}
.sheet-underlined-input,
input[type="checkbox"].sheet-underlined + span,
input[type="radio"].sheet-underlined + span
{
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
width: 30px !important;
-webkit-appearance: textfield;
margin: 0;
-moz-appearance: textfield;
text-align: center;
padding: 0px;
font-size: 1.2em;
}
.sheet-underlined-input::-webkit-outer-spin-button,
.sheet-underlined-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.sheet-underlined-input.sheet-edit {
border: none;
background-color: rgb(255, 255, 0, 0.2);
}
.sheet-underlined-select {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
padding: 0px;
font-size: 1.2em;
height: 20px;
}
/* Layout Styling */
.sheet-container {
width: 1075px;
position: relative;
margin-left: -15px;
background: url('https://i.imgur.com/MzNsfJi.jpg');
background-size: 100% 100%;
min-height: 935px;
display: flex;
}
.sheet-left-column {
display: inline-block;
vertical-align: top;
width: 355px;
height: 100%;
border-right: 2px solid rgba(165, 165, 165, 0.8);
position: relative;
}
.sheet-center-column {
display: inline-block;
vertical-align: top;
width: 188px;
margin-left: -5px;
margin-right: -5px;
height: 100%;
position: relative;
}
.sheet-right-column {
display: inline-block;
vertical-align: top;
width: 530px;
height: 100%;
border-left: 2px solid rgba(165, 165, 165, 0.8);
position: relative;
}
.sheet-section {
padding: 10px;
border-top: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-container {
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-traits,
.sheet-fate,
.sheet-check-info
{
position: relative;
}
.sheet-logo {
background: url('https://i.imgur.com/5SuVIW0.png');
background-size: 100% 100%;
height: 53px;
width: 98%;
position: absolute;
top: 0;
left: 1%;
}
/* Bubble Styling */
input[type="radio"].sheet-normal
{
position: absolute;
opacity: 0.0;
width: 10px;
cursor: pointer;
z-index: 10;
margin-top: 5px;
margin-right: -4px;
}
input[type="radio"].sheet-normal + span::before
{
border: solid 1px #000000;
line-height: 11px;
text-align: center;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 0px #000;
-webkit-box-shadow: 0 0 0px #000;
box-shadow: 0 0 0px #000;
background: #000000;
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
background: radial-gradient(#f6f6f6, #dfdfdf);
}
input[type="radio"].sheet-normal + span::before
{
content: "•";
width: 8px;
height: 8px;
font-size: 40.9px;
font-family: "Arial";
text-indent: -3px;
font-weight: normal;
-webkit-font-smoothing: antialiased;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
margin-right: -4px;
}
input[type="radio"].sheet-normal:checked ~ input[type="radio"] + span::before
{
content: "";
}
input.sheet-zero:checked + span::before
{
opacity: 0;
}
input.sheet-zero:hover + span::before
{
opacity: 0.25;
font-size: 12px;
content: "✖";
text-indent: -1px;
}
input.sheet-zero + span::before
{
opacity: 0;
}
.sheet-advancement-flag[value="0"] ~ .sheet-advancement-pass .sheet-0,
.sheet-advancement-flag[value="1"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-pass .sheet-4,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-1,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-2,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-4,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="0"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-pass .sheet-8,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-1,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-2,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-3,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-4,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-5,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-6,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-8,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-pass .sheet-9,
.sheet-advancement-flag[value="2"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="3"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="4"] ~ .sheet-advancement-fail .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-1,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-2,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-3,
.sheet-advancement-flag[value="5"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="6"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="7"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="8"] ~ .sheet-advancement-fail .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-1,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-2,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-3,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-4,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-5,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-6,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-7,
.sheet-max10.sheet-advancement-flag[value="9"] ~ .sheet-advancement-fail .sheet-8,
.sheet-untaxed_nature[value="1"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="2"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="2"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="3"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="4"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="5"] ~ div .sheet-beginner-checks .sheet-5,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-1,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-2,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-3,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-4,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-5,
.sheet-untaxed_nature[value="6"] ~ div .sheet-beginner-checks .sheet-6,
.sheet-show-advancement[value="1"] ~ .sheet-advancement-checkbox,
.sheet-roll_type[value="simple"] ~ div .sheet-beginner_luck_flag[value="0"] ~ .sheet-simple_roll.sheet-beginner_luck,
.sheet-roll_type[value="simple"] ~ div .sheet-beginner_luck_flag:not([value="0"]) ~ .sheet-simple_roll.sheet-normal,
.sheet-roll_type[value="complex"] ~ div .sheet-complex_roll
{
display: inline-block;
}
.sheet-advancement-flag[value="0"]:not(.sheet-max10) ~ .sheet-advancement-pass,
.sheet-advancement-flag[value="0"]:not(.sheet-max10) ~ .sheet-advancement-fail,
.sheet-advancement-flag:not([value="0"]) ~ .sheet-beginner-checks
{
display: none;
}
.sheet-advancement-checkbox {
position: absolute;
right: 0;
top: 0;
width: 15px;
height: 15px;
}
input[type="checkbox"].sheet-advancement-checkbox {
opacity: 0.0;
cursor: pointer;
z-index: 10;
height: 15px;
}
input[type="checkbox"].sheet-advancement-checkbox + span {
background: url('https://i.imgur.com/lz44L8d.png');
background-size: 100% 100%;
}
/* Condition Checkbox Styling */
.sheet-conditions .sheet-body .sheet-condition
{
position: relative;
}
input[type="checkbox"].sheet-underlined,
input[type="radio"].sheet-underlined
{
position: absolute;
opacity: 0.0;
width: 30px;
cursor: pointer;
z-index: 10;
}
input[type="checkbox"].sheet-underlined:checked + span::before,
input[type="radio"].sheet-underlined:checked + span::before
{
content: "x";
position: absolute;
top: -4px;
left: 11px;
}
.sheet-conditions .sheet-body .sheet-leftside,
.sheet-conditions .sheet-body .sheet-rightside
{
height: 19px;
display: inline-block;
}
.sheet-conditions .sheet-body .sheet-leftside {
width: 70%;
}
.sheet-conditions .sheet-body .sheet-rightside {
width: 27%;
position: relative;
}
.sheet-conditions .sheet-body .sheet-rightside .sheet-complex_roll {
top: 7px;
}
.sheet-conditions .sheet-body .sheet-rightside .sheet-simple_roll {
vertical-align: bottom;
}
.sheet-hidden.sheet-condition-display {
display: none;
}
input.sheet-condition-flag[value="1"] + .sheet-condition-display {
display: block;
}
.sheet-warning {
background-color: rgb(255, 255, 0, 0.2);
border: 1px solid rgba(165, 165, 165, 0.8);
border-radius: 5px;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
}
.sheet-skills .sheet-row.sheet-warning {
height: 18px;
}
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ button,
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ input,
.sheet-skills input.sheet-afraid-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input.sheet-beginner_luck_flag[value="0"] ~ input + span
{
cursor: not-allowed;
pointer-events: none;
color: rgba(150, 150, 150, 0.8);
}
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"],
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"] + span
{
cursor: not-allowed;
pointer-events: none;
color: rgba(150, 150, 150, 0.8);
}
.sheet-skills input.sheet-sick-flag.sheet-condition-flag[value="1"] ~ .sheet-column-skills input[type="radio"] + span::before {
background: radial-gradient(rgba(150, 150, 150, 0.8), rgba(150, 150, 150, 0.8));
border: 1px solid rgba(150, 150, 150, 0.8)
}
/* Who You Are Styling */
.sheet-who-you-are .sheet-column-2 .sheet-row span:first-of-type {
margin-right: 5px;
}
/* Traits */
.sheet-trait {
margin-bottom: 10px;
min-height: 40px;
}
.sheet-trait div {
vertical-align: top;
}
.sheet-trait-name {
width: 120px;
display: inline-block;
}
.sheet-trait-level {
width: 80px;
display: inline-block;
}
.sheet-trait-uses {
width: 90px;
display: inline-block;
}
.sheet-trait-checks {
width: 28px;
display: inline-block;
}
.sheet-traits-flag[value="1"] ~ div .sheet-1,
.sheet-traits-flag[value="2"] ~ div .sheet-2,
.sheet-traits-flag[value="3"] ~ div .sheet-3 {
display: inline-block;
}
.sheet-trait-name input {
width: 115px;
}
.sheet-trait-level select {
width: 80px;
}
/* ABILITIES AND SKILLS */
.sheet-raw-abilities,
.sheet-town-abilities {
display: inline-block;
width: 95px;
padding-right: 5px;
vertical-align: top;
position: relative;
height: 30px;
}
.sheet-rating {
display: inline-block;
width: 25px;
margin-right: 10px;
text-align: center;
vertical-align: top;
}
.sheet-advancement {
display: inline-block;
width: 110px;
line-height: 10px;
}
.sheet-nature-descriptor {
display: inline-block;
margin-left: 5px;
}
.sheet-nature-descriptor:not(:last-child) span::after {
content: ",";
}
.sheet-abilities .sheet-row,
.sheet-skills .sheet-row
{
height: 30px;
}
.sheet-abilities .sheet-rating:not(.sheet-header-only),
.sheet-skills .sheet-rating:not(.sheet-header-only) {
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
font-size: 1.2em;
line-height: .9;
}
.sheet-raw-abilities.sheet-nature {
width: 80px;
}
.sheet-rating.sheet-nature {
width: 40px;
}
.sheet-rating.sheet-nature .sheet-edit {
width: 12px !important;
}
.sheet-might-container {
vertical-align: top;
}
.sheet-might {
display: inline-block;
margin-right: 15px;
}
input[type=radio].sheet-editing:checked ~ .sheet-tabcontainer .sheet-might + .sheet-rating {
position: relative;
min-height: 25px;
}
.sheet-beginner-checks .sheet-bl-label {
margin-right: -7px;
}
.sheet-skill-footer .sheet-footer-left,
.sheet-skill-footer .sheet-footer-right {
display: inline-block;
}
.sheet-skill-footer .sheet-footer-left {
width: 22.5%;
border-right: 1px solid black;
}
.sheet-skill-footer .sheet-footer-right {
width: 76%;
}
.sheet-skill-footer .sheet-row {
height: 12px;
}
.sheet-roll_type[value="simple"] ~ div .sheet-precedence {
margin-left: 9px;
}
.sheet-nature-descriptor input {
width: 120px;
}
.sheet-town-abilities input.sheet-edit {
width: 100px;
}
.sheet-advancement {
position: relative;
}
.sheet-advancement .sheet-edit {
width: 68px;
position: absolute;
top: -5px;
right: 0px;
}
.sheet-advancement .sheet-edit select {
width: 68px;
}
.sheet-column-skills {
width: calc(50% - 2px);
display: inline-block;
vertical-align: top;
}
.sheet-bl-ability {
position: absolute;
right: 14px;
font-size: .8em;
}
.sheet-bl-ability-flag[value="w"] ~ .sheet-w,
.sheet-bl-ability-flag[value="h"] ~ .sheet-h
{
display: inline-block;
}
/* Fate Styling */
.sheet-fate .sheet-box {
display: inline-block;
padding: 5px;
border: 2px solid rgba(150, 150, 150, 0.8);
margin-right: -5px;
width: 60px;
}
.sheet-fate .sheet-name-header {
margin-top: 10px;
}
.sheet-fate .sheet-compact,
.sheet-check-info .sheet-compact {
margin-top: 3px;
}
/* Who You Are & What You Fight For Styling */
.sheet-who-you-are .sheet-row,
.sheet-what-you-fight-for .sheet-body > .sheet-row
{
margin-top: 6px;
}
.sheet-conditions .sheet-body > .sheet-row {
margin-top: 12px;
}
.sheet-who-you-are .sheet-row {
min-height: 25px;
}
.sheet-what-you-fight-for .sheet-body > .sheet-row {
min-height: 75px;
}
.sheet-what-you-fight-for textarea {
width: calc(100% - 15px);
resize: vertical;
height: 40px;
}
/* Wises Styling */
.sheet-wise-check-container {
position: relative;
display: inline-block;
}
.sheet-wise-check-container:not(:last-child) {
border-right: 1px solid black;
padding-right: 5px;
}
.sheet-wise-check-container input[type="checkbox"].sheet-underlined,
.sheet-wise-check-container input[type="checkbox"].sheet-underlined + span,
.sheet-wise-check-container input[type="radio"].sheet-underlined,
.sheet-wise-check-container input[type="radio"].sheet-underlined + span
{
width: 15px !important;
}
.sheet-wise-check-container input[type="checkbox"].sheet-underlined + span:before,
.sheet-wise-check-container input[type="radio"].sheet-underlined + span:before
{
left: 3px;
}
.sheet-wises .sheet-name-container {
min-height: 20px;
border-bottom: 1px solid black;
margin-bottom: 5px;
}
.sheet-wises .sheet-row {
margin-bottom: 10px;
}
.sheet-wises-left,
.sheet-wises-right {
width: 45%;
display: inline-block;
}
.sheet-wises-left {
margin-right: 5%;
}
/* Complex Roll Styling */
.sheet-modal-flag[value="1"] + .sheet-complex-roll-modal
{
display: block;
position: fixed;
top: 100px;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
z-index: 100;
width: 500px;
background: rgb(240, 240, 240);
border: 2px solid rgba(64, 64, 64, 0.8);
border-radius: 5px;
padding: 10px;
}
input[type=checkbox].sheet-close-complex-modal,
input[type=checkbox].sheet-close-complex-modal + span {
position: absolute;
top: 0px;
right: 0px;
width: 15px;
height: 15px;
}
input[type=checkbox].sheet-close-complex-modal {
cursor: pointer;
opacity: 0;
z-index: 101;
}
input[type=checkbox].sheet-close-complex-modal + span::before {
content: "✖";
}
.sheet-check-container {
position: relative;
height: 25px;
}
input.sheet-ob-flag[value="independent"] ~ .sheet-independent,
input.sheet-ob-flag[value="versus"] ~ .sheet-versus,
input.sheet-ob-flag[value="versus"] ~ div .sheet-versus,
input.sheet-ob-flag[value="conflict"] ~ .sheet-conflict
{
display: block;
}
.sheet-roll-choices {
border-top: 2px solid rgba(165, 165, 165, 0.8);
margin-top: 10px;
padding-top: 10px;
}
.sheet-trait-mod:checked ~ .sheet-trait-mod-options,
.sheet-persona:checked ~ .sheet-persona-options,
.sheet-nature:checked ~ .sheet-nature-options,
.sheet-help:checked ~ .sheet-help-options,
.sheet-gear:checked ~ .sheet-gear-options,
.sheet-other:checked ~ .sheet-other-options,
input.sheet-town-ability-flag[value="circles"] + .sheet-town-ability,
input.sheet-town-ability-flag[value="resources"] + .sheet-town-ability,
input.sheet-mod-flag:not([value="0"]) + .sheet-mod,
/* input.sheet-mod-flag[value="1"] + .sheet-mod, */
input.sheet-mod-flag[value="0"] + input.sheet-not-town[value="0"] + .sheet-mod,
input.sheet-mod-flag-bl[value="ceil(("] + .sheet-mod,
input.sheet-in-or-out[value="outside"] + .sheet-out
{
display: inline-block;
}
.sheet-row.sheet-check-container.sheet-hidden,
.sheet-row.sheet-conflict.sheet-hidden
{
display: none;
}
.sheet-trait-select {
width: 130px;
}
.sheet-nature-select {
width: 80px;
}
input[type=number].sheet-ob-input {
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
background: none;
border-top: none;
border-left: none;
border-right: none;
border-radius: 0px;
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
width: 50px;
text-align: center;
padding: 0px;
font-size: 2.5em;
}
.sheet-roll-obstacle {
position: relative;
}
.sheet-rolling {
margin-top: 17px;
}
button[type=roll].sheet-complex-roll-button {
position: absolute;
right: 10px;
bottom: -5px;
width: 33%;
height: 25px;
background: #3155a4;
border: 2px solid rgba(165, 165, 165, 0.8);
text-align: center;
z-index: 10;
}
/* input[type=checkbox].sheet-complex-roll-listener {
position: absolute;
right: 10px;
bottom: -5px;
width: 33%;
height: 25px;
opacity: 0.1;
z-index: 10;
} */
button[type=roll].sheet-complex-roll-button span {
color: white;
-webkit-text-stroke-color: white;
}
.sheet-disposition-type {
width: 110%;
}
.sheet-disposition-type input[type="radio"].sheet-underlined + span {
margin-right: 3px;
}
.sheet-disposition-type input[type="radio"].sheet-underlined + span::before {
left: 3px;
}
.sheet-disposition-type input[type="radio"].sheet-underlined,
.sheet-disposition-type input[type="radio"].sheet-underlined + span {
width: 15px !important;
}
.sheet-disposition-type div {
display: inline-block;
}
.sheet-disposition-type .sheet-disposition-subtype {
position: absolute;
right: 0px;
top: 10px;
width: 85px;
}
.sheet-check-container.sheet-bottom {
height: 40px;
}
/* Roll Template Styling */
.sheet-rolltemplate-simple .sheet-container,
.sheet-rolltemplate-complex .sheet-container
{
background: rgb(240, 240, 240);
border: 2px solid rgba(150, 150, 150, 0.8);
border-radius: 5px;
padding: 10px;
}
.sheet-rolltemplate-simple .sheet-name,
.sheet-rolltemplate-complex .sheet-name
{
color: #3155a4;
font-family: 'Inknut Antiqua';
font-size: 1.4em;
font-weight: 700;
font-variant: small-caps;
letter-spacing: -2px;
text-shadow: 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0, 0 0 2px #bac6e0;
}
.sheet-rolltemplate-simple .sheet-faint,
.sheet-rolltemplate-complex .sheet-faint
{
color: rgba(150, 150, 150, 0.8);
font-size: 0.85em;
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
}
.sheet-rolltemplate-simple .sheet-result,
.sheet-rolltemplate-complex .sheet-result
{
text-align: center;
font-size: 2em;
}
.sheet-rolltemplate-simple .sheet-success-footer,
.sheet-rolltemplate-complex .sheet-success-footer
{
font-size: 0.35em;
}
.sheet-rolltemplate-simple .sheet-dead,
.sheet-rolltemplate-complex .sheet-dead
{
font-size: 0.8em;
line-height: 1;
}
.sheet-rolltemplate-simple .sheet-conditions,
.sheet-rolltemplate-complex .sheet-conditions
{
line-height: 10px;
}
.sheet-rolltemplate-simple .sheet-conditions .sheet-handwritten,
.sheet-rolltemplate-complex .sheet-conditions .sheet-handwritten
{
font-size: 0.8em;
color: rgba(150, 150, 150, 0.8);
-webkit-text-stroke-color: rgba(150, 150, 150, 0.8);
}
.sheet-rolltemplate-simple .inlinerollresult,
.sheet-rolltemplate-simple .inlinerollresult.fullcrit,
.sheet-rolltemplate-simple .inlinerollresult.fullfail,
.sheet-rolltemplate-simple .inlinerollresult.importantroll,
.sheet-rolltemplate-complex .inlinerollresult,
.sheet-rolltemplate-complex .inlinerollresult.fullcrit,
.sheet-rolltemplate-complex .inlinerollresult.fullfail,
.sheet-rolltemplate-complex .inlinerollresult.importantroll
{
background: none;
border: none;
}
.sheet-rolltemplate-simple .sheet-caps,
.sheet-rolltemplate-complex .sheet-caps
{
text-transform: uppercase;
}
.sheet-rolltemplate-simple .sheet-handwritten,
.sheet-rolltemplate-complex .sheet-handwritten
{
font-family: 'Architects Daughter';
color: #3155a4;
font-weight: bold;
text-transform: uppercase;
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #3155a4;
letter-spacing: normal;
}
.sheet-rolltemplate-simple .sheet-handwritten.sheet-failure,
.sheet-rolltemplate-complex .sheet-handwritten.sheet-failure
{
color: #a4110e;
-webkit-text-stroke-color: #a4110e;
}
.sheet-rolltemplate-complex .sheet-comma {
margin-left: -5px;
}
.sheet-rolltemplate-complex .sheet-column-3 {
/* width: calc(30% - 5px); */
display: inline-block;
vertical-align: top;
padding-right: 5px;
}
.sheet-rolltemplate-complex .sheet-vs {
color: rgba(150, 150, 150, 0.8);
font-size: 0.55em;
font-family: 'Inknut Antiqua';
letter-spacing: -1px;
margin-left: -15px;
margin-right: -15px;
}
.sheet-rolltemplate-complex .sheet-conflict-subtype {
text-align: center;
}
/* INVENTORY STYLING */
.sheet-inventory .sheet-name-header {
border-bottom: 2px solid rgba(165, 165, 165, 0.8);
}
.sheet-inventory-row {
display: inline-block;
margin-right: 10px;
vertical-align: top;
max-height: 450px;
}
.sheet-inventory-section {
width: 190px;
margin-bottom: 20px;
}
.sheet-inventory-container {
min-height: 30px;
width: 100%;
}
.sheet-inventory-container .sheet-status-container {
position: relative;
}
input[type=radio].sheet-editing:not(:checked) ~ .sheet-tabcontainer .sheet-inventory-container .sheet-status-container input[type="checkbox"]:checked ~ span.sheet-status {
display: inline-block;
position: absolute;
left: 55px;
top: -5px;
}
.sheet-inventory-container .sheet-textinput {
width: 140px;
}
.sheet-status {
background: none;
}
.sheet-worn {
margin-right: 5px;
}
input.sheet-backpack-flag[value="none"] ~ .sheet-none,
input.sheet-backpack-flag[value="satchel"] ~ .sheet-satchel,
input.sheet-backpack-flag[value="backpack"] ~ .sheet-backpack,
input.sheet-container-flag[value="small"] ~ .sheet-small,
input.sheet-container-flag[value="large"] ~ .sheet-large,
input.sheet-container-flag[value="cache"] ~ .sheet-cache
{
display: inline-block;
}
.sheet-inventory .repitem {
display: inline-block;
vertical-align: top;
margin-right: 10px;
}
.sheet-inventory-row.sheet-end {
max-width: 400px;
}
.sheet-carried-options div {
display: inline-block;
position: relative;
}
.sheet-carried-options input.sheet-underlined,
.sheet-carried-options input.sheet-underlined + span
{
width: 15px !important;
}
.sheet-carried-options input[type="radio"].sheet-underlined:checked + span::before {
left: 3px;
}
/* MAGIC STYLING */
.sheet-relic-name,
.sheet-relic-inventory,
.sheet-relic-invocation
{
display: inline-block;
min-height: 25px;
position: relative;
}
.sheet-relic-name span,
.sheet-relic-inventory span,
.sheet-relic-invocation span
{
position: absolute;
bottom: 0px;
}
.sheet-relic-name input,
.sheet-relic-inventory input,
.sheet-relic-invocation input
{
position: absolute;
bottom: -3px;
}
.sheet-relic-name,
.sheet-relic-name input
{
width: 200px;
}
.sheet-relic-inventory,
.sheet-relic-inventory input
{
width: 200px;
}
.sheet-relic-invocation,
.sheet-relic-invocation input
{
width: 300px;
}
.sheet-relics .sheet-row {
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-relic-section {
margin-right: 25px;
display: inline-block;
}
.sheet-urdr-burden-section {
display: inline-block;
vertical-align: top;
}
.sheet-urdr-burden-section,
.sheet-urdr-burden-section .sheet-row
{
width: 250px;
}
.sheet-urdr-burden-section span.sheet-faint,
.sheet-urdr-burden-section span.sheet-handwritten {
padding-left: 15px;
}
span.sheet-handwritten.sheet-danger {
color: red;
-webkit-text-stroke-color:red;
}
.sheet-relics {
width: 100%;
}
.sheet-relics .sheet-header {
width: 100%;
}
input.sheet-stigmata-flag[value="1"] ~ .sheet-stigmata
{
display: inline-block;
}
.sheet-spells {
position: relative;
}
.sheet-spells .sheet-header {
width: 100%;
}
.sheet-spells .sheet-memory-palace {
position: absolute;
top: 0px;
right: 45px;
}
.sheet-spell-name {
width: 200px;
min-height: 25px;
position: relative;
vertical-align: top;
}
.sheet-spell-name input {
width: 200px;
}
.sheet-spell-ob,
.sheet-spell-known,
.sheet-spell-book,
.sheet-spell-mem,
.sheet-spell-cast,
.sheet-spell-scroll,
.sheet-spell-supplies {
width: 70px;
min-height: 25px;
position: relative;
text-align: center;
vertical-align: top;
}
.sheet-spell-effect {
width: 355px;
min-height: 25px;
position: relative;
vertical-align: top;
padding-left: 5px;
}
.sheet-spell-effect.sheet-title {
text-align: center;
}
.sheet-spell-effect span {
margin-left: 15px;
}
.sheet-spell-effect input {
width: 355px;
}
.sheet-spell-ob,
.sheet-spell-book,
.sheet-spell-cast,
.sheet-spell-supplies
{
background-color: rgba(165, 165, 165, 0.3);
}
.sheet-spells .sheet-underlined {
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
padding-left: 15px;
}
.sheet-memory-palace span.sheet-faint {
width: 250px;
}
.sheet-spells input[type="checkbox"].sheet-underlined:checked + span::before {
left: 30px;
}
.sheet-spells .sheet-row {
display: flex;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-spells-section {
width: 1060px;
}
/* RELATIONSHIP STYLING */
.sheet-relationships .sheet-row {
display: flex;
width: 1060px;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-relationship-name,
.sheet-relationship-name input
{
width: 200px;
}
.sheet-relationship-location,
.sheet-relationship-location input
{
width: 150px;
}
.sheet-relationship-status,
.sheet-relationship-status input
{
width: 150px;
}
.sheet-relationship-notes,
.sheet-relationship-notes input
{
width: 560px;
}
.sheet-relationship-notes span {
margin-left: 15px;
}
/* LEVELS STYLING */
.sheet-level-number,
.sheet-level-f,
.sheet-level-p
{
display: inline-block;
text-align: center;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-level-benefits {
display: inline-block;
border-bottom: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-level-row:not(:first-child) .sheet-level-number,
.sheet-level-row:not(:first-child) .sheet-level-f,
.sheet-level-row:not(:first-child) .sheet-level-p,
.sheet-level-row:not(:first-child) .sheet-level-benefits
{
padding-top: 15px;
padding-bottom: 15px;
}
.sheet-level-number {
width: 50px;
font-weight: bold;
}
.sheet-level-f {
width: 30px;
}
.sheet-level-p {
width: 30px;
}
.sheet-level-benefits {
width: 930px;
padding-left: 10px;
}
.sheet-levels .sheet-row:first-child,
.sheet-row.sheet-level-row {
display: flex;
}
.sheet-level-row.sheet-shaded {
background-color: rgba(165, 165, 165, 0.3);
}
.sheet-level-row:not(:first-child) .sheet-level-f,
.sheet-level-row:not(:first-child) .sheet-level-p,
.sheet-level-row:not(:first-child) .sheet-level-benefits
{
border-left: 1px solid rgba(165, 165, 165, 0.8);
}
.sheet-levels textarea {
height: 18px;
margin: 0px;
width: 920px;
resize: vertical;
} | 0.436862 | 0.184217 |
.v-h {
visibility: hidden; }
.v-v {
visibility: visible; }
.d-n {
display: none; }
.d-i {
display: inline; }
.d-b {
display: block; }
.d-ib {
display: inline-block; }
.d-f {
display: flex; }
.d-g {
display: grid; }
.d-li {
display: list-item; }
.d-t {
display: table; }
.d-itb {
display: inline-table; }
.d-bc {
display: table-cell; }
.d-tbcp {
display: table-caption; }
.d-tbr {
display: table-row; }
.d-tbrg {
display: table-row-group; }
.d-tbcl {
display: table-column; }
.d-tbclg {
display: table-column-group; }
.d-tbhg {
display: table-header-group; }
.d-tbfg {
display: table-footer-group; }
.fl-n {
float: none; }
.fl-l {
float: left; }
.fl-r {
float: right; }
.cl-n {
clear: none; }
.cl-l {
clear: left; }
.cl-r {
clear: right; }
.cl-b {
clear: both; }
.pos-s {
position: static; }
.pos-f {
position: fixed; }
.pos-r {
position: relative; }
.pos-a {
position: absolute; }
.fw-b {
font-weight: bold; }
.fw-n {
font-weight: normal; }
.fw-l {
font-weight: lighter; }
.fw-br {
font-weight: bolder; }
.fs-i {
font-style: italic; }
.fs-n {
font-style: normal; }
.va-t {
vertical-align: top; }
.va-m {
vertical-align: middle; }
.va-b {
vertical-align: bottom; }
.va-tb {
vertical-align: text-bottom; }
.va-tt {
vertical-align: text-top; }
.va-sp {
vertical-align: super; }
.va-sb {
vertical-align: sub; }
.tt-n {
text-transform: none; }
.tt-c {
text-transform: capitalize; }
.tt-u {
text-transform: uppercase; }
.tt-l {
text-transform: lowercase; }
.td-n {
text-decoration: none; }
.tt-o {
text-decoration: overline; }
.tt-l {
text-decoration: line-through; }
.tt-u {
text-decoration: underline; }
.ta-c {
text-align: center; }
.ta-l {
text-align: left; }
.ta-r {
text-align: right; }
.ta-j {
text-align: justify; }
.tal-c {
text-align-last: center; }
.tal-l {
text-align-last: left; }
.tal-r {
text-align-last: right; }
.tal-j {
text-align-last: justify; }
.bgr-n {
background-repeat: no-repeat; }
.bgr-x {
background-repeat: repeat-x; }
.bgr-y {
background-repeat: repeat-y; }
.bgr-r {
background-repeat: round; }
.bgr-s {
background-repeat: space; }
.bga-f {
background-attachment: fixed; }
.bgs-cv {
background-size: cover; }
.bgs-ct {
background-size: contain; }
.bgc-pd {
background-clip: padding-box; }
.bgc-bb {
background-clip: border-box; }
.bgc-cb {
background-clip: content-box; }
.bgo-pd {
background-origin: padding-box; }
.bgo-bb {
background-origin: border-box; }
.bgo-cb {
background-origin: content-box; }
.tbl-a {
table-layout: auto; }
.tbl-f {
table-layout: fixed; }
.cps-t {
caption-side: top; }
.cps-b {
caption-side: bottom; }
.ec-s {
empty-cells: show; }
.ec-h {
empty-cells: hide; }
.lst-n {
list-style-type: none; }
.lst-d {
list-style-type: disc; }
.lst-c {
list-style-type: circle; }
.lst-s {
list-style-type: square; }
.lst-u {
list-style-type: upper-roman; }
.lst-l {
list-style-type: lower-alpha; }
.lst-dc {
list-style-type: decimal; }
.cur-p {
cursor: pointer; }
.cur-t {
cursor: text; }
.cur-m {
cursor: move; }
.cur-c {
cursor: crosshair; }
.cur-h {
cursor: help; }
.cur-d {
cursor: default; }
.rsz-n {
resize: none; }
.rsz-b {
resize: both; }
.rsz-h {
resize: horizontal; }
.rsz-v {
resize: vertical; }
.bxz-cb {
box-sizing: content-box; }
.bxz-bb {
box-sizing: border-box; }
.ov-a {
overflow: auto; }
.ov-v {
overflow: visible; }
.ov-h {
overflow: hidden; }
.ov-s {
overflow: scroll; }
.ovx-a {
overflow-x: auto; }
.ovx-v {
overflow-x: visible; }
.ovx-h {
overflow-x: hidden; }
.ovx-s {
overflow-x: scroll; }
.ovy-a {
overflow-y: auto; }
.ovy-v {
overflow-y: visible; }
.ovy-h {
overflow-y: hidden; }
.ovy-s {
overflow-y: scroll; }
.bdcl-c {
border-collapse: collapse; }
.bdcl-s {
border-collapse: separate; }
.ols-n {
outline-style: none; }
.ols-dt {
outline-style: dotted; }
.ols-ds {
outline-style: dashed; }
.ols-sl {
outline-style: solid; }
.ols-du {
outline-style: double; }
.fz0 {
font-size: 0px; }
.ti0 {
text-indent: 0px; }
.bdsp0 {
border-spacing: 0px; }
.p0 {
padding: 0px; }
.pt0 {
padding-top: 0px; }
.pr0 {
padding-right: 0px; }
.pb0 {
padding-bottom: 0px; }
.pl0 {
padding-left: 0px; }
.m0 {
margin: 0px; }
.mt0 {
margin-top: 0px; }
.mr0 {
margin-right: 0px; }
.mb0 {
margin-bottom: 0px; }
.ml0 {
margin-left: 0px; }
.bdrs0 {
border-radius: 0px; }
.btrr0 {
border-top-right-radius: 0px; }
.btlr0 {
border-top-left-radius: 0px; }
.bbrr0 {
border-bottom-right-radius: 0px; }
.bblr0 {
border-bottom-left-radius: 0px; }
.fz1 {
font-size: 1px; }
.ti1 {
text-indent: 1px; }
.bdsp1 {
border-spacing: 1px; }
.p1 {
padding: 1px; }
.pt1 {
padding-top: 1px; }
.pr1 {
padding-right: 1px; }
.pb1 {
padding-bottom: 1px; }
.pl1 {
padding-left: 1px; }
.m1 {
margin: 1px; }
.mt1 {
margin-top: 1px; }
.mr1 {
margin-right: 1px; }
.mb1 {
margin-bottom: 1px; }
.ml1 {
margin-left: 1px; }
.bdrs1 {
border-radius: 1px; }
.btrr1 {
border-top-right-radius: 1px; }
.btlr1 {
border-top-left-radius: 1px; }
.bbrr1 {
border-bottom-right-radius: 1px; }
.bblr1 {
border-bottom-left-radius: 1px; }
.fz2 {
font-size: 2px; }
.ti2 {
text-indent: 2px; }
.bdsp2 {
border-spacing: 2px; }
.p2 {
padding: 2px; }
.pt2 {
padding-top: 2px; }
.pr2 {
padding-right: 2px; }
.pb2 {
padding-bottom: 2px; }
.pl2 {
padding-left: 2px; }
.m2 {
margin: 2px; }
.mt2 {
margin-top: 2px; }
.mr2 {
margin-right: 2px; }
.mb2 {
margin-bottom: 2px; }
.ml2 {
margin-left: 2px; }
.bdrs2 {
border-radius: 2px; }
.btrr2 {
border-top-right-radius: 2px; }
.btlr2 {
border-top-left-radius: 2px; }
.bbrr2 {
border-bottom-right-radius: 2px; }
.bblr2 {
border-bottom-left-radius: 2px; }
.fz3 {
font-size: 3px; }
.ti3 {
text-indent: 3px; }
.bdsp3 {
border-spacing: 3px; }
.p3 {
padding: 3px; }
.pt3 {
padding-top: 3px; }
.pr3 {
padding-right: 3px; }
.pb3 {
padding-bottom: 3px; }
.pl3 {
padding-left: 3px; }
.m3 {
margin: 3px; }
.mt3 {
margin-top: 3px; }
.mr3 {
margin-right: 3px; }
.mb3 {
margin-bottom: 3px; }
.ml3 {
margin-left: 3px; }
.bdrs3 {
border-radius: 3px; }
.btrr3 {
border-top-right-radius: 3px; }
.btlr3 {
border-top-left-radius: 3px; }
.bbrr3 {
border-bottom-right-radius: 3px; }
.bblr3 {
border-bottom-left-radius: 3px; }
.fz4 {
font-size: 4px; }
.ti4 {
text-indent: 4px; }
.bdsp4 {
border-spacing: 4px; }
.p4 {
padding: 4px; }
.pt4 {
padding-top: 4px; }
.pr4 {
padding-right: 4px; }
.pb4 {
padding-bottom: 4px; }
.pl4 {
padding-left: 4px; }
.m4 {
margin: 4px; }
.mt4 {
margin-top: 4px; }
.mr4 {
margin-right: 4px; }
.mb4 {
margin-bottom: 4px; }
.ml4 {
margin-left: 4px; }
.bdrs4 {
border-radius: 4px; }
.btrr4 {
border-top-right-radius: 4px; }
.btlr4 {
border-top-left-radius: 4px; }
.bbrr4 {
border-bottom-right-radius: 4px; }
.bblr4 {
border-bottom-left-radius: 4px; }
.fz5 {
font-size: 5px; }
.ti5 {
text-indent: 5px; }
.bdsp5 {
border-spacing: 5px; }
.p5 {
padding: 5px; }
.pt5 {
padding-top: 5px; }
.pr5 {
padding-right: 5px; }
.pb5 {
padding-bottom: 5px; }
.pl5 {
padding-left: 5px; }
.m5 {
margin: 5px; }
.mt5 {
margin-top: 5px; }
.mr5 {
margin-right: 5px; }
.mb5 {
margin-bottom: 5px; }
.ml5 {
margin-left: 5px; }
.bdrs5 {
border-radius: 5px; }
.btrr5 {
border-top-right-radius: 5px; }
.btlr5 {
border-top-left-radius: 5px; }
.bbrr5 {
border-bottom-right-radius: 5px; }
.bblr5 {
border-bottom-left-radius: 5px; }
.fz6 {
font-size: 6px; }
.ti6 {
text-indent: 6px; }
.bdsp6 {
border-spacing: 6px; }
.p6 {
padding: 6px; }
.pt6 {
padding-top: 6px; }
.pr6 {
padding-right: 6px; }
.pb6 {
padding-bottom: 6px; }
.pl6 {
padding-left: 6px; }
.m6 {
margin: 6px; }
.mt6 {
margin-top: 6px; }
.mr6 {
margin-right: 6px; }
.mb6 {
margin-bottom: 6px; }
.ml6 {
margin-left: 6px; }
.bdrs6 {
border-radius: 6px; }
.btrr6 {
border-top-right-radius: 6px; }
.btlr6 {
border-top-left-radius: 6px; }
.bbrr6 {
border-bottom-right-radius: 6px; }
.bblr6 {
border-bottom-left-radius: 6px; }
.fz7 {
font-size: 7px; }
.ti7 {
text-indent: 7px; }
.bdsp7 {
border-spacing: 7px; }
.p7 {
padding: 7px; }
.pt7 {
padding-top: 7px; }
.pr7 {
padding-right: 7px; }
.pb7 {
padding-bottom: 7px; }
.pl7 {
padding-left: 7px; }
.m7 {
margin: 7px; }
.mt7 {
margin-top: 7px; }
.mr7 {
margin-right: 7px; }
.mb7 {
margin-bottom: 7px; }
.ml7 {
margin-left: 7px; }
.bdrs7 {
border-radius: 7px; }
.btrr7 {
border-top-right-radius: 7px; }
.btlr7 {
border-top-left-radius: 7px; }
.bbrr7 {
border-bottom-right-radius: 7px; }
.bblr7 {
border-bottom-left-radius: 7px; }
.fz8 {
font-size: 8px; }
.ti8 {
text-indent: 8px; }
.bdsp8 {
border-spacing: 8px; }
.p8 {
padding: 8px; }
.pt8 {
padding-top: 8px; }
.pr8 {
padding-right: 8px; }
.pb8 {
padding-bottom: 8px; }
.pl8 {
padding-left: 8px; }
.m8 {
margin: 8px; }
.mt8 {
margin-top: 8px; }
.mr8 {
margin-right: 8px; }
.mb8 {
margin-bottom: 8px; }
.ml8 {
margin-left: 8px; }
.bdrs8 {
border-radius: 8px; }
.btrr8 {
border-top-right-radius: 8px; }
.btlr8 {
border-top-left-radius: 8px; }
.bbrr8 {
border-bottom-right-radius: 8px; }
.bblr8 {
border-bottom-left-radius: 8px; }
.fz9 {
font-size: 9px; }
.ti9 {
text-indent: 9px; }
.bdsp9 {
border-spacing: 9px; }
.p9 {
padding: 9px; }
.pt9 {
padding-top: 9px; }
.pr9 {
padding-right: 9px; }
.pb9 {
padding-bottom: 9px; }
.pl9 {
padding-left: 9px; }
.m9 {
margin: 9px; }
.mt9 {
margin-top: 9px; }
.mr9 {
margin-right: 9px; }
.mb9 {
margin-bottom: 9px; }
.ml9 {
margin-left: 9px; }
.bdrs9 {
border-radius: 9px; }
.btrr9 {
border-top-right-radius: 9px; }
.btlr9 {
border-top-left-radius: 9px; }
.bbrr9 {
border-bottom-right-radius: 9px; }
.bblr9 {
border-bottom-left-radius: 9px; }
.fz10 {
font-size: 10px; }
.ti10 {
text-indent: 10px; }
.bdsp10 {
border-spacing: 10px; }
.p10 {
padding: 10px; }
.pt10 {
padding-top: 10px; }
.pr10 {
padding-right: 10px; }
.pb10 {
padding-bottom: 10px; }
.pl10 {
padding-left: 10px; }
.m10 {
margin: 10px; }
.mt10 {
margin-top: 10px; }
.mr10 {
margin-right: 10px; }
.mb10 {
margin-bottom: 10px; }
.ml10 {
margin-left: 10px; }
.bdrs10 {
border-radius: 10px; }
.btrr10 {
border-top-right-radius: 10px; }
.btlr10 {
border-top-left-radius: 10px; }
.bbrr10 {
border-bottom-right-radius: 10px; }
.bblr10 {
border-bottom-left-radius: 10px; }
.fz11 {
font-size: 11px; }
.ti11 {
text-indent: 11px; }
.bdsp11 {
border-spacing: 11px; }
.p11 {
padding: 11px; }
.pt11 {
padding-top: 11px; }
.pr11 {
padding-right: 11px; }
.pb11 {
padding-bottom: 11px; }
.pl11 {
padding-left: 11px; }
.m11 {
margin: 11px; }
.mt11 {
margin-top: 11px; }
.mr11 {
margin-right: 11px; }
.mb11 {
margin-bottom: 11px; }
.ml11 {
margin-left: 11px; }
.bdrs11 {
border-radius: 11px; }
.btrr11 {
border-top-right-radius: 11px; }
.btlr11 {
border-top-left-radius: 11px; }
.bbrr11 {
border-bottom-right-radius: 11px; }
.bblr11 {
border-bottom-left-radius: 11px; }
.fz12 {
font-size: 12px; }
.ti12 {
text-indent: 12px; }
.bdsp12 {
border-spacing: 12px; }
.p12 {
padding: 12px; }
.pt12 {
padding-top: 12px; }
.pr12 {
padding-right: 12px; }
.pb12 {
padding-bottom: 12px; }
.pl12 {
padding-left: 12px; }
.m12 {
margin: 12px; }
.mt12 {
margin-top: 12px; }
.mr12 {
margin-right: 12px; }
.mb12 {
margin-bottom: 12px; }
.ml12 {
margin-left: 12px; }
.bdrs12 {
border-radius: 12px; }
.btrr12 {
border-top-right-radius: 12px; }
.btlr12 {
border-top-left-radius: 12px; }
.bbrr12 {
border-bottom-right-radius: 12px; }
.bblr12 {
border-bottom-left-radius: 12px; }
.fz13 {
font-size: 13px; }
.ti13 {
text-indent: 13px; }
.bdsp13 {
border-spacing: 13px; }
.p13 {
padding: 13px; }
.pt13 {
padding-top: 13px; }
.pr13 {
padding-right: 13px; }
.pb13 {
padding-bottom: 13px; }
.pl13 {
padding-left: 13px; }
.m13 {
margin: 13px; }
.mt13 {
margin-top: 13px; }
.mr13 {
margin-right: 13px; }
.mb13 {
margin-bottom: 13px; }
.ml13 {
margin-left: 13px; }
.bdrs13 {
border-radius: 13px; }
.btrr13 {
border-top-right-radius: 13px; }
.btlr13 {
border-top-left-radius: 13px; }
.bbrr13 {
border-bottom-right-radius: 13px; }
.bblr13 {
border-bottom-left-radius: 13px; }
.fz14 {
font-size: 14px; }
.ti14 {
text-indent: 14px; }
.bdsp14 {
border-spacing: 14px; }
.p14 {
padding: 14px; }
.pt14 {
padding-top: 14px; }
.pr14 {
padding-right: 14px; }
.pb14 {
padding-bottom: 14px; }
.pl14 {
padding-left: 14px; }
.m14 {
margin: 14px; }
.mt14 {
margin-top: 14px; }
.mr14 {
margin-right: 14px; }
.mb14 {
margin-bottom: 14px; }
.ml14 {
margin-left: 14px; }
.bdrs14 {
border-radius: 14px; }
.btrr14 {
border-top-right-radius: 14px; }
.btlr14 {
border-top-left-radius: 14px; }
.bbrr14 {
border-bottom-right-radius: 14px; }
.bblr14 {
border-bottom-left-radius: 14px; }
.fz15 {
font-size: 15px; }
.ti15 {
text-indent: 15px; }
.bdsp15 {
border-spacing: 15px; }
.p15 {
padding: 15px; }
.pt15 {
padding-top: 15px; }
.pr15 {
padding-right: 15px; }
.pb15 {
padding-bottom: 15px; }
.pl15 {
padding-left: 15px; }
.m15 {
margin: 15px; }
.mt15 {
margin-top: 15px; }
.mr15 {
margin-right: 15px; }
.mb15 {
margin-bottom: 15px; }
.ml15 {
margin-left: 15px; }
.bdrs15 {
border-radius: 15px; }
.btrr15 {
border-top-right-radius: 15px; }
.btlr15 {
border-top-left-radius: 15px; }
.bbrr15 {
border-bottom-right-radius: 15px; }
.bblr15 {
border-bottom-left-radius: 15px; }
.fz16 {
font-size: 16px; }
.ti16 {
text-indent: 16px; }
.bdsp16 {
border-spacing: 16px; }
.p16 {
padding: 16px; }
.pt16 {
padding-top: 16px; }
.pr16 {
padding-right: 16px; }
.pb16 {
padding-bottom: 16px; }
.pl16 {
padding-left: 16px; }
.m16 {
margin: 16px; }
.mt16 {
margin-top: 16px; }
.mr16 {
margin-right: 16px; }
.mb16 {
margin-bottom: 16px; }
.ml16 {
margin-left: 16px; }
.bdrs16 {
border-radius: 16px; }
.btrr16 {
border-top-right-radius: 16px; }
.btlr16 {
border-top-left-radius: 16px; }
.bbrr16 {
border-bottom-right-radius: 16px; }
.bblr16 {
border-bottom-left-radius: 16px; }
.fz17 {
font-size: 17px; }
.ti17 {
text-indent: 17px; }
.bdsp17 {
border-spacing: 17px; }
.p17 {
padding: 17px; }
.pt17 {
padding-top: 17px; }
.pr17 {
padding-right: 17px; }
.pb17 {
padding-bottom: 17px; }
.pl17 {
padding-left: 17px; }
.m17 {
margin: 17px; }
.mt17 {
margin-top: 17px; }
.mr17 {
margin-right: 17px; }
.mb17 {
margin-bottom: 17px; }
.ml17 {
margin-left: 17px; }
.bdrs17 {
border-radius: 17px; }
.btrr17 {
border-top-right-radius: 17px; }
.btlr17 {
border-top-left-radius: 17px; }
.bbrr17 {
border-bottom-right-radius: 17px; }
.bblr17 {
border-bottom-left-radius: 17px; }
.fz18 {
font-size: 18px; }
.ti18 {
text-indent: 18px; }
.bdsp18 {
border-spacing: 18px; }
.p18 {
padding: 18px; }
.pt18 {
padding-top: 18px; }
.pr18 {
padding-right: 18px; }
.pb18 {
padding-bottom: 18px; }
.pl18 {
padding-left: 18px; }
.m18 {
margin: 18px; }
.mt18 {
margin-top: 18px; }
.mr18 {
margin-right: 18px; }
.mb18 {
margin-bottom: 18px; }
.ml18 {
margin-left: 18px; }
.bdrs18 {
border-radius: 18px; }
.btrr18 {
border-top-right-radius: 18px; }
.btlr18 {
border-top-left-radius: 18px; }
.bbrr18 {
border-bottom-right-radius: 18px; }
.bblr18 {
border-bottom-left-radius: 18px; }
.fz19 {
font-size: 19px; }
.ti19 {
text-indent: 19px; }
.bdsp19 {
border-spacing: 19px; }
.p19 {
padding: 19px; }
.pt19 {
padding-top: 19px; }
.pr19 {
padding-right: 19px; }
.pb19 {
padding-bottom: 19px; }
.pl19 {
padding-left: 19px; }
.m19 {
margin: 19px; }
.mt19 {
margin-top: 19px; }
.mr19 {
margin-right: 19px; }
.mb19 {
margin-bottom: 19px; }
.ml19 {
margin-left: 19px; }
.bdrs19 {
border-radius: 19px; }
.btrr19 {
border-top-right-radius: 19px; }
.btlr19 {
border-top-left-radius: 19px; }
.bbrr19 {
border-bottom-right-radius: 19px; }
.bblr19 {
border-bottom-left-radius: 19px; }
.fz20 {
font-size: 20px; }
.ti20 {
text-indent: 20px; }
.bdsp20 {
border-spacing: 20px; }
.p20 {
padding: 20px; }
.pt20 {
padding-top: 20px; }
.pr20 {
padding-right: 20px; }
.pb20 {
padding-bottom: 20px; }
.pl20 {
padding-left: 20px; }
.m20 {
margin: 20px; }
.mt20 {
margin-top: 20px; }
.mr20 {
margin-right: 20px; }
.mb20 {
margin-bottom: 20px; }
.ml20 {
margin-left: 20px; }
.bdrs20 {
border-radius: 20px; }
.btrr20 {
border-top-right-radius: 20px; }
.btlr20 {
border-top-left-radius: 20px; }
.bbrr20 {
border-bottom-right-radius: 20px; }
.bblr20 {
border-bottom-left-radius: 20px; }
.fz21 {
font-size: 21px; }
.ti21 {
text-indent: 21px; }
.bdsp21 {
border-spacing: 21px; }
.p21 {
padding: 21px; }
.pt21 {
padding-top: 21px; }
.pr21 {
padding-right: 21px; }
.pb21 {
padding-bottom: 21px; }
.pl21 {
padding-left: 21px; }
.m21 {
margin: 21px; }
.mt21 {
margin-top: 21px; }
.mr21 {
margin-right: 21px; }
.mb21 {
margin-bottom: 21px; }
.ml21 {
margin-left: 21px; }
.bdrs21 {
border-radius: 21px; }
.btrr21 {
border-top-right-radius: 21px; }
.btlr21 {
border-top-left-radius: 21px; }
.bbrr21 {
border-bottom-right-radius: 21px; }
.bblr21 {
border-bottom-left-radius: 21px; }
.fz22 {
font-size: 22px; }
.ti22 {
text-indent: 22px; }
.bdsp22 {
border-spacing: 22px; }
.p22 {
padding: 22px; }
.pt22 {
padding-top: 22px; }
.pr22 {
padding-right: 22px; }
.pb22 {
padding-bottom: 22px; }
.pl22 {
padding-left: 22px; }
.m22 {
margin: 22px; }
.mt22 {
margin-top: 22px; }
.mr22 {
margin-right: 22px; }
.mb22 {
margin-bottom: 22px; }
.ml22 {
margin-left: 22px; }
.bdrs22 {
border-radius: 22px; }
.btrr22 {
border-top-right-radius: 22px; }
.btlr22 {
border-top-left-radius: 22px; }
.bbrr22 {
border-bottom-right-radius: 22px; }
.bblr22 {
border-bottom-left-radius: 22px; }
.fz23 {
font-size: 23px; }
.ti23 {
text-indent: 23px; }
.bdsp23 {
border-spacing: 23px; }
.p23 {
padding: 23px; }
.pt23 {
padding-top: 23px; }
.pr23 {
padding-right: 23px; }
.pb23 {
padding-bottom: 23px; }
.pl23 {
padding-left: 23px; }
.m23 {
margin: 23px; }
.mt23 {
margin-top: 23px; }
.mr23 {
margin-right: 23px; }
.mb23 {
margin-bottom: 23px; }
.ml23 {
margin-left: 23px; }
.bdrs23 {
border-radius: 23px; }
.btrr23 {
border-top-right-radius: 23px; }
.btlr23 {
border-top-left-radius: 23px; }
.bbrr23 {
border-bottom-right-radius: 23px; }
.bblr23 {
border-bottom-left-radius: 23px; }
.fz24 {
font-size: 24px; }
.ti24 {
text-indent: 24px; }
.bdsp24 {
border-spacing: 24px; }
.p24 {
padding: 24px; }
.pt24 {
padding-top: 24px; }
.pr24 {
padding-right: 24px; }
.pb24 {
padding-bottom: 24px; }
.pl24 {
padding-left: 24px; }
.m24 {
margin: 24px; }
.mt24 {
margin-top: 24px; }
.mr24 {
margin-right: 24px; }
.mb24 {
margin-bottom: 24px; }
.ml24 {
margin-left: 24px; }
.bdrs24 {
border-radius: 24px; }
.btrr24 {
border-top-right-radius: 24px; }
.btlr24 {
border-top-left-radius: 24px; }
.bbrr24 {
border-bottom-right-radius: 24px; }
.bblr24 {
border-bottom-left-radius: 24px; }
.fz25 {
font-size: 25px; }
.ti25 {
text-indent: 25px; }
.bdsp25 {
border-spacing: 25px; }
.p25 {
padding: 25px; }
.pt25 {
padding-top: 25px; }
.pr25 {
padding-right: 25px; }
.pb25 {
padding-bottom: 25px; }
.pl25 {
padding-left: 25px; }
.m25 {
margin: 25px; }
.mt25 {
margin-top: 25px; }
.mr25 {
margin-right: 25px; }
.mb25 {
margin-bottom: 25px; }
.ml25 {
margin-left: 25px; }
.bdrs25 {
border-radius: 25px; }
.btrr25 {
border-top-right-radius: 25px; }
.btlr25 {
border-top-left-radius: 25px; }
.bbrr25 {
border-bottom-right-radius: 25px; }
.bblr25 {
border-bottom-left-radius: 25px; }
.fz26 {
font-size: 26px; }
.ti26 {
text-indent: 26px; }
.bdsp26 {
border-spacing: 26px; }
.p26 {
padding: 26px; }
.pt26 {
padding-top: 26px; }
.pr26 {
padding-right: 26px; }
.pb26 {
padding-bottom: 26px; }
.pl26 {
padding-left: 26px; }
.m26 {
margin: 26px; }
.mt26 {
margin-top: 26px; }
.mr26 {
margin-right: 26px; }
.mb26 {
margin-bottom: 26px; }
.ml26 {
margin-left: 26px; }
.bdrs26 {
border-radius: 26px; }
.btrr26 {
border-top-right-radius: 26px; }
.btlr26 {
border-top-left-radius: 26px; }
.bbrr26 {
border-bottom-right-radius: 26px; }
.bblr26 {
border-bottom-left-radius: 26px; }
.fz27 {
font-size: 27px; }
.ti27 {
text-indent: 27px; }
.bdsp27 {
border-spacing: 27px; }
.p27 {
padding: 27px; }
.pt27 {
padding-top: 27px; }
.pr27 {
padding-right: 27px; }
.pb27 {
padding-bottom: 27px; }
.pl27 {
padding-left: 27px; }
.m27 {
margin: 27px; }
.mt27 {
margin-top: 27px; }
.mr27 {
margin-right: 27px; }
.mb27 {
margin-bottom: 27px; }
.ml27 {
margin-left: 27px; }
.bdrs27 {
border-radius: 27px; }
.btrr27 {
border-top-right-radius: 27px; }
.btlr27 {
border-top-left-radius: 27px; }
.bbrr27 {
border-bottom-right-radius: 27px; }
.bblr27 {
border-bottom-left-radius: 27px; }
.fz28 {
font-size: 28px; }
.ti28 {
text-indent: 28px; }
.bdsp28 {
border-spacing: 28px; }
.p28 {
padding: 28px; }
.pt28 {
padding-top: 28px; }
.pr28 {
padding-right: 28px; }
.pb28 {
padding-bottom: 28px; }
.pl28 {
padding-left: 28px; }
.m28 {
margin: 28px; }
.mt28 {
margin-top: 28px; }
.mr28 {
margin-right: 28px; }
.mb28 {
margin-bottom: 28px; }
.ml28 {
margin-left: 28px; }
.bdrs28 {
border-radius: 28px; }
.btrr28 {
border-top-right-radius: 28px; }
.btlr28 {
border-top-left-radius: 28px; }
.bbrr28 {
border-bottom-right-radius: 28px; }
.bblr28 {
border-bottom-left-radius: 28px; }
.fz29 {
font-size: 29px; }
.ti29 {
text-indent: 29px; }
.bdsp29 {
border-spacing: 29px; }
.p29 {
padding: 29px; }
.pt29 {
padding-top: 29px; }
.pr29 {
padding-right: 29px; }
.pb29 {
padding-bottom: 29px; }
.pl29 {
padding-left: 29px; }
.m29 {
margin: 29px; }
.mt29 {
margin-top: 29px; }
.mr29 {
margin-right: 29px; }
.mb29 {
margin-bottom: 29px; }
.ml29 {
margin-left: 29px; }
.bdrs29 {
border-radius: 29px; }
.btrr29 {
border-top-right-radius: 29px; }
.btlr29 {
border-top-left-radius: 29px; }
.bbrr29 {
border-bottom-right-radius: 29px; }
.bblr29 {
border-bottom-left-radius: 29px; }
.fz30 {
font-size: 30px; }
.ti30 {
text-indent: 30px; }
.bdsp30 {
border-spacing: 30px; }
.p30 {
padding: 30px; }
.pt30 {
padding-top: 30px; }
.pr30 {
padding-right: 30px; }
.pb30 {
padding-bottom: 30px; }
.pl30 {
padding-left: 30px; }
.m30 {
margin: 30px; }
.mt30 {
margin-top: 30px; }
.mr30 {
margin-right: 30px; }
.mb30 {
margin-bottom: 30px; }
.ml30 {
margin-left: 30px; }
.bdrs30 {
border-radius: 30px; }
.btrr30 {
border-top-right-radius: 30px; }
.btlr30 {
border-top-left-radius: 30px; }
.bbrr30 {
border-bottom-right-radius: 30px; }
.bblr30 {
border-bottom-left-radius: 30px; }
.fz31 {
font-size: 31px; }
.ti31 {
text-indent: 31px; }
.bdsp31 {
border-spacing: 31px; }
.p31 {
padding: 31px; }
.pt31 {
padding-top: 31px; }
.pr31 {
padding-right: 31px; }
.pb31 {
padding-bottom: 31px; }
.pl31 {
padding-left: 31px; }
.m31 {
margin: 31px; }
.mt31 {
margin-top: 31px; }
.mr31 {
margin-right: 31px; }
.mb31 {
margin-bottom: 31px; }
.ml31 {
margin-left: 31px; }
.bdrs31 {
border-radius: 31px; }
.btrr31 {
border-top-right-radius: 31px; }
.btlr31 {
border-top-left-radius: 31px; }
.bbrr31 {
border-bottom-right-radius: 31px; }
.bblr31 {
border-bottom-left-radius: 31px; }
.fz32 {
font-size: 32px; }
.ti32 {
text-indent: 32px; }
.bdsp32 {
border-spacing: 32px; }
.p32 {
padding: 32px; }
.pt32 {
padding-top: 32px; }
.pr32 {
padding-right: 32px; }
.pb32 {
padding-bottom: 32px; }
.pl32 {
padding-left: 32px; }
.m32 {
margin: 32px; }
.mt32 {
margin-top: 32px; }
.mr32 {
margin-right: 32px; }
.mb32 {
margin-bottom: 32px; }
.ml32 {
margin-left: 32px; }
.bdrs32 {
border-radius: 32px; }
.btrr32 {
border-top-right-radius: 32px; }
.btlr32 {
border-top-left-radius: 32px; }
.bbrr32 {
border-bottom-right-radius: 32px; }
.bblr32 {
border-bottom-left-radius: 32px; }
.fz33 {
font-size: 33px; }
.ti33 {
text-indent: 33px; }
.bdsp33 {
border-spacing: 33px; }
.p33 {
padding: 33px; }
.pt33 {
padding-top: 33px; }
.pr33 {
padding-right: 33px; }
.pb33 {
padding-bottom: 33px; }
.pl33 {
padding-left: 33px; }
.m33 {
margin: 33px; }
.mt33 {
margin-top: 33px; }
.mr33 {
margin-right: 33px; }
.mb33 {
margin-bottom: 33px; }
.ml33 {
margin-left: 33px; }
.bdrs33 {
border-radius: 33px; }
.btrr33 {
border-top-right-radius: 33px; }
.btlr33 {
border-top-left-radius: 33px; }
.bbrr33 {
border-bottom-right-radius: 33px; }
.bblr33 {
border-bottom-left-radius: 33px; }
.fz34 {
font-size: 34px; }
.ti34 {
text-indent: 34px; }
.bdsp34 {
border-spacing: 34px; }
.p34 {
padding: 34px; }
.pt34 {
padding-top: 34px; }
.pr34 {
padding-right: 34px; }
.pb34 {
padding-bottom: 34px; }
.pl34 {
padding-left: 34px; }
.m34 {
margin: 34px; }
.mt34 {
margin-top: 34px; }
.mr34 {
margin-right: 34px; }
.mb34 {
margin-bottom: 34px; }
.ml34 {
margin-left: 34px; }
.bdrs34 {
border-radius: 34px; }
.btrr34 {
border-top-right-radius: 34px; }
.btlr34 {
border-top-left-radius: 34px; }
.bbrr34 {
border-bottom-right-radius: 34px; }
.bblr34 {
border-bottom-left-radius: 34px; }
.fz35 {
font-size: 35px; }
.ti35 {
text-indent: 35px; }
.bdsp35 {
border-spacing: 35px; }
.p35 {
padding: 35px; }
.pt35 {
padding-top: 35px; }
.pr35 {
padding-right: 35px; }
.pb35 {
padding-bottom: 35px; }
.pl35 {
padding-left: 35px; }
.m35 {
margin: 35px; }
.mt35 {
margin-top: 35px; }
.mr35 {
margin-right: 35px; }
.mb35 {
margin-bottom: 35px; }
.ml35 {
margin-left: 35px; }
.bdrs35 {
border-radius: 35px; }
.btrr35 {
border-top-right-radius: 35px; }
.btlr35 {
border-top-left-radius: 35px; }
.bbrr35 {
border-bottom-right-radius: 35px; }
.bblr35 {
border-bottom-left-radius: 35px; }
.fz36 {
font-size: 36px; }
.ti36 {
text-indent: 36px; }
.bdsp36 {
border-spacing: 36px; }
.p36 {
padding: 36px; }
.pt36 {
padding-top: 36px; }
.pr36 {
padding-right: 36px; }
.pb36 {
padding-bottom: 36px; }
.pl36 {
padding-left: 36px; }
.m36 {
margin: 36px; }
.mt36 {
margin-top: 36px; }
.mr36 {
margin-right: 36px; }
.mb36 {
margin-bottom: 36px; }
.ml36 {
margin-left: 36px; }
.bdrs36 {
border-radius: 36px; }
.btrr36 {
border-top-right-radius: 36px; }
.btlr36 {
border-top-left-radius: 36px; }
.bbrr36 {
border-bottom-right-radius: 36px; }
.bblr36 {
border-bottom-left-radius: 36px; }
.fz37 {
font-size: 37px; }
.ti37 {
text-indent: 37px; }
.bdsp37 {
border-spacing: 37px; }
.p37 {
padding: 37px; }
.pt37 {
padding-top: 37px; }
.pr37 {
padding-right: 37px; }
.pb37 {
padding-bottom: 37px; }
.pl37 {
padding-left: 37px; }
.m37 {
margin: 37px; }
.mt37 {
margin-top: 37px; }
.mr37 {
margin-right: 37px; }
.mb37 {
margin-bottom: 37px; }
.ml37 {
margin-left: 37px; }
.bdrs37 {
border-radius: 37px; }
.btrr37 {
border-top-right-radius: 37px; }
.btlr37 {
border-top-left-radius: 37px; }
.bbrr37 {
border-bottom-right-radius: 37px; }
.bblr37 {
border-bottom-left-radius: 37px; }
.fz38 {
font-size: 38px; }
.ti38 {
text-indent: 38px; }
.bdsp38 {
border-spacing: 38px; }
.p38 {
padding: 38px; }
.pt38 {
padding-top: 38px; }
.pr38 {
padding-right: 38px; }
.pb38 {
padding-bottom: 38px; }
.pl38 {
padding-left: 38px; }
.m38 {
margin: 38px; }
.mt38 {
margin-top: 38px; }
.mr38 {
margin-right: 38px; }
.mb38 {
margin-bottom: 38px; }
.ml38 {
margin-left: 38px; }
.bdrs38 {
border-radius: 38px; }
.btrr38 {
border-top-right-radius: 38px; }
.btlr38 {
border-top-left-radius: 38px; }
.bbrr38 {
border-bottom-right-radius: 38px; }
.bblr38 {
border-bottom-left-radius: 38px; }
.fz39 {
font-size: 39px; }
.ti39 {
text-indent: 39px; }
.bdsp39 {
border-spacing: 39px; }
.p39 {
padding: 39px; }
.pt39 {
padding-top: 39px; }
.pr39 {
padding-right: 39px; }
.pb39 {
padding-bottom: 39px; }
.pl39 {
padding-left: 39px; }
.m39 {
margin: 39px; }
.mt39 {
margin-top: 39px; }
.mr39 {
margin-right: 39px; }
.mb39 {
margin-bottom: 39px; }
.ml39 {
margin-left: 39px; }
.bdrs39 {
border-radius: 39px; }
.btrr39 {
border-top-right-radius: 39px; }
.btlr39 {
border-top-left-radius: 39px; }
.bbrr39 {
border-bottom-right-radius: 39px; }
.bblr39 {
border-bottom-left-radius: 39px; }
.fz40 {
font-size: 40px; }
.ti40 {
text-indent: 40px; }
.bdsp40 {
border-spacing: 40px; }
.p40 {
padding: 40px; }
.pt40 {
padding-top: 40px; }
.pr40 {
padding-right: 40px; }
.pb40 {
padding-bottom: 40px; }
.pl40 {
padding-left: 40px; }
.m40 {
margin: 40px; }
.mt40 {
margin-top: 40px; }
.mr40 {
margin-right: 40px; }
.mb40 {
margin-bottom: 40px; }
.ml40 {
margin-left: 40px; }
.bdrs40 {
border-radius: 40px; }
.btrr40 {
border-top-right-radius: 40px; }
.btlr40 {
border-top-left-radius: 40px; }
.bbrr40 {
border-bottom-right-radius: 40px; }
.bblr40 {
border-bottom-left-radius: 40px; }
.fz41 {
font-size: 41px; }
.ti41 {
text-indent: 41px; }
.bdsp41 {
border-spacing: 41px; }
.p41 {
padding: 41px; }
.pt41 {
padding-top: 41px; }
.pr41 {
padding-right: 41px; }
.pb41 {
padding-bottom: 41px; }
.pl41 {
padding-left: 41px; }
.m41 {
margin: 41px; }
.mt41 {
margin-top: 41px; }
.mr41 {
margin-right: 41px; }
.mb41 {
margin-bottom: 41px; }
.ml41 {
margin-left: 41px; }
.bdrs41 {
border-radius: 41px; }
.btrr41 {
border-top-right-radius: 41px; }
.btlr41 {
border-top-left-radius: 41px; }
.bbrr41 {
border-bottom-right-radius: 41px; }
.bblr41 {
border-bottom-left-radius: 41px; }
.fz42 {
font-size: 42px; }
.ti42 {
text-indent: 42px; }
.bdsp42 {
border-spacing: 42px; }
.p42 {
padding: 42px; }
.pt42 {
padding-top: 42px; }
.pr42 {
padding-right: 42px; }
.pb42 {
padding-bottom: 42px; }
.pl42 {
padding-left: 42px; }
.m42 {
margin: 42px; }
.mt42 {
margin-top: 42px; }
.mr42 {
margin-right: 42px; }
.mb42 {
margin-bottom: 42px; }
.ml42 {
margin-left: 42px; }
.bdrs42 {
border-radius: 42px; }
.btrr42 {
border-top-right-radius: 42px; }
.btlr42 {
border-top-left-radius: 42px; }
.bbrr42 {
border-bottom-right-radius: 42px; }
.bblr42 {
border-bottom-left-radius: 42px; }
.fz43 {
font-size: 43px; }
.ti43 {
text-indent: 43px; }
.bdsp43 {
border-spacing: 43px; }
.p43 {
padding: 43px; }
.pt43 {
padding-top: 43px; }
.pr43 {
padding-right: 43px; }
.pb43 {
padding-bottom: 43px; }
.pl43 {
padding-left: 43px; }
.m43 {
margin: 43px; }
.mt43 {
margin-top: 43px; }
.mr43 {
margin-right: 43px; }
.mb43 {
margin-bottom: 43px; }
.ml43 {
margin-left: 43px; }
.bdrs43 {
border-radius: 43px; }
.btrr43 {
border-top-right-radius: 43px; }
.btlr43 {
border-top-left-radius: 43px; }
.bbrr43 {
border-bottom-right-radius: 43px; }
.bblr43 {
border-bottom-left-radius: 43px; }
.fz44 {
font-size: 44px; }
.ti44 {
text-indent: 44px; }
.bdsp44 {
border-spacing: 44px; }
.p44 {
padding: 44px; }
.pt44 {
padding-top: 44px; }
.pr44 {
padding-right: 44px; }
.pb44 {
padding-bottom: 44px; }
.pl44 {
padding-left: 44px; }
.m44 {
margin: 44px; }
.mt44 {
margin-top: 44px; }
.mr44 {
margin-right: 44px; }
.mb44 {
margin-bottom: 44px; }
.ml44 {
margin-left: 44px; }
.bdrs44 {
border-radius: 44px; }
.btrr44 {
border-top-right-radius: 44px; }
.btlr44 {
border-top-left-radius: 44px; }
.bbrr44 {
border-bottom-right-radius: 44px; }
.bblr44 {
border-bottom-left-radius: 44px; }
.fz45 {
font-size: 45px; }
.ti45 {
text-indent: 45px; }
.bdsp45 {
border-spacing: 45px; }
.p45 {
padding: 45px; }
.pt45 {
padding-top: 45px; }
.pr45 {
padding-right: 45px; }
.pb45 {
padding-bottom: 45px; }
.pl45 {
padding-left: 45px; }
.m45 {
margin: 45px; }
.mt45 {
margin-top: 45px; }
.mr45 {
margin-right: 45px; }
.mb45 {
margin-bottom: 45px; }
.ml45 {
margin-left: 45px; }
.bdrs45 {
border-radius: 45px; }
.btrr45 {
border-top-right-radius: 45px; }
.btlr45 {
border-top-left-radius: 45px; }
.bbrr45 {
border-bottom-right-radius: 45px; }
.bblr45 {
border-bottom-left-radius: 45px; }
.fz46 {
font-size: 46px; }
.ti46 {
text-indent: 46px; }
.bdsp46 {
border-spacing: 46px; }
.p46 {
padding: 46px; }
.pt46 {
padding-top: 46px; }
.pr46 {
padding-right: 46px; }
.pb46 {
padding-bottom: 46px; }
.pl46 {
padding-left: 46px; }
.m46 {
margin: 46px; }
.mt46 {
margin-top: 46px; }
.mr46 {
margin-right: 46px; }
.mb46 {
margin-bottom: 46px; }
.ml46 {
margin-left: 46px; }
.bdrs46 {
border-radius: 46px; }
.btrr46 {
border-top-right-radius: 46px; }
.btlr46 {
border-top-left-radius: 46px; }
.bbrr46 {
border-bottom-right-radius: 46px; }
.bblr46 {
border-bottom-left-radius: 46px; }
.fz47 {
font-size: 47px; }
.ti47 {
text-indent: 47px; }
.bdsp47 {
border-spacing: 47px; }
.p47 {
padding: 47px; }
.pt47 {
padding-top: 47px; }
.pr47 {
padding-right: 47px; }
.pb47 {
padding-bottom: 47px; }
.pl47 {
padding-left: 47px; }
.m47 {
margin: 47px; }
.mt47 {
margin-top: 47px; }
.mr47 {
margin-right: 47px; }
.mb47 {
margin-bottom: 47px; }
.ml47 {
margin-left: 47px; }
.bdrs47 {
border-radius: 47px; }
.btrr47 {
border-top-right-radius: 47px; }
.btlr47 {
border-top-left-radius: 47px; }
.bbrr47 {
border-bottom-right-radius: 47px; }
.bblr47 {
border-bottom-left-radius: 47px; }
.fz48 {
font-size: 48px; }
.ti48 {
text-indent: 48px; }
.bdsp48 {
border-spacing: 48px; }
.p48 {
padding: 48px; }
.pt48 {
padding-top: 48px; }
.pr48 {
padding-right: 48px; }
.pb48 {
padding-bottom: 48px; }
.pl48 {
padding-left: 48px; }
.m48 {
margin: 48px; }
.mt48 {
margin-top: 48px; }
.mr48 {
margin-right: 48px; }
.mb48 {
margin-bottom: 48px; }
.ml48 {
margin-left: 48px; }
.bdrs48 {
border-radius: 48px; }
.btrr48 {
border-top-right-radius: 48px; }
.btlr48 {
border-top-left-radius: 48px; }
.bbrr48 {
border-bottom-right-radius: 48px; }
.bblr48 {
border-bottom-left-radius: 48px; }
.fz49 {
font-size: 49px; }
.ti49 {
text-indent: 49px; }
.bdsp49 {
border-spacing: 49px; }
.p49 {
padding: 49px; }
.pt49 {
padding-top: 49px; }
.pr49 {
padding-right: 49px; }
.pb49 {
padding-bottom: 49px; }
.pl49 {
padding-left: 49px; }
.m49 {
margin: 49px; }
.mt49 {
margin-top: 49px; }
.mr49 {
margin-right: 49px; }
.mb49 {
margin-bottom: 49px; }
.ml49 {
margin-left: 49px; }
.bdrs49 {
border-radius: 49px; }
.btrr49 {
border-top-right-radius: 49px; }
.btlr49 {
border-top-left-radius: 49px; }
.bbrr49 {
border-bottom-right-radius: 49px; }
.bblr49 {
border-bottom-left-radius: 49px; }
.fz50 {
font-size: 50px; }
.ti50 {
text-indent: 50px; }
.bdsp50 {
border-spacing: 50px; }
.p50 {
padding: 50px; }
.pt50 {
padding-top: 50px; }
.pr50 {
padding-right: 50px; }
.pb50 {
padding-bottom: 50px; }
.pl50 {
padding-left: 50px; }
.m50 {
margin: 50px; }
.mt50 {
margin-top: 50px; }
.mr50 {
margin-right: 50px; }
.mb50 {
margin-bottom: 50px; }
.ml50 {
margin-left: 50px; }
.bdrs50 {
border-radius: 50px; }
.btrr50 {
border-top-right-radius: 50px; }
.btlr50 {
border-top-left-radius: 50px; }
.bbrr50 {
border-bottom-right-radius: 50px; }
.bblr50 {
border-bottom-left-radius: 50px; }
.fz51 {
font-size: 51px; }
.ti51 {
text-indent: 51px; }
.bdsp51 {
border-spacing: 51px; }
.p51 {
padding: 51px; }
.pt51 {
padding-top: 51px; }
.pr51 {
padding-right: 51px; }
.pb51 {
padding-bottom: 51px; }
.pl51 {
padding-left: 51px; }
.m51 {
margin: 51px; }
.mt51 {
margin-top: 51px; }
.mr51 {
margin-right: 51px; }
.mb51 {
margin-bottom: 51px; }
.ml51 {
margin-left: 51px; }
.bdrs51 {
border-radius: 51px; }
.btrr51 {
border-top-right-radius: 51px; }
.btlr51 {
border-top-left-radius: 51px; }
.bbrr51 {
border-bottom-right-radius: 51px; }
.bblr51 {
border-bottom-left-radius: 51px; }
.fz52 {
font-size: 52px; }
.ti52 {
text-indent: 52px; }
.bdsp52 {
border-spacing: 52px; }
.p52 {
padding: 52px; }
.pt52 {
padding-top: 52px; }
.pr52 {
padding-right: 52px; }
.pb52 {
padding-bottom: 52px; }
.pl52 {
padding-left: 52px; }
.m52 {
margin: 52px; }
.mt52 {
margin-top: 52px; }
.mr52 {
margin-right: 52px; }
.mb52 {
margin-bottom: 52px; }
.ml52 {
margin-left: 52px; }
.bdrs52 {
border-radius: 52px; }
.btrr52 {
border-top-right-radius: 52px; }
.btlr52 {
border-top-left-radius: 52px; }
.bbrr52 {
border-bottom-right-radius: 52px; }
.bblr52 {
border-bottom-left-radius: 52px; }
.fz53 {
font-size: 53px; }
.ti53 {
text-indent: 53px; }
.bdsp53 {
border-spacing: 53px; }
.p53 {
padding: 53px; }
.pt53 {
padding-top: 53px; }
.pr53 {
padding-right: 53px; }
.pb53 {
padding-bottom: 53px; }
.pl53 {
padding-left: 53px; }
.m53 {
margin: 53px; }
.mt53 {
margin-top: 53px; }
.mr53 {
margin-right: 53px; }
.mb53 {
margin-bottom: 53px; }
.ml53 {
margin-left: 53px; }
.bdrs53 {
border-radius: 53px; }
.btrr53 {
border-top-right-radius: 53px; }
.btlr53 {
border-top-left-radius: 53px; }
.bbrr53 {
border-bottom-right-radius: 53px; }
.bblr53 {
border-bottom-left-radius: 53px; }
.fz54 {
font-size: 54px; }
.ti54 {
text-indent: 54px; }
.bdsp54 {
border-spacing: 54px; }
.p54 {
padding: 54px; }
.pt54 {
padding-top: 54px; }
.pr54 {
padding-right: 54px; }
.pb54 {
padding-bottom: 54px; }
.pl54 {
padding-left: 54px; }
.m54 {
margin: 54px; }
.mt54 {
margin-top: 54px; }
.mr54 {
margin-right: 54px; }
.mb54 {
margin-bottom: 54px; }
.ml54 {
margin-left: 54px; }
.bdrs54 {
border-radius: 54px; }
.btrr54 {
border-top-right-radius: 54px; }
.btlr54 {
border-top-left-radius: 54px; }
.bbrr54 {
border-bottom-right-radius: 54px; }
.bblr54 {
border-bottom-left-radius: 54px; }
.fz55 {
font-size: 55px; }
.ti55 {
text-indent: 55px; }
.bdsp55 {
border-spacing: 55px; }
.p55 {
padding: 55px; }
.pt55 {
padding-top: 55px; }
.pr55 {
padding-right: 55px; }
.pb55 {
padding-bottom: 55px; }
.pl55 {
padding-left: 55px; }
.m55 {
margin: 55px; }
.mt55 {
margin-top: 55px; }
.mr55 {
margin-right: 55px; }
.mb55 {
margin-bottom: 55px; }
.ml55 {
margin-left: 55px; }
.bdrs55 {
border-radius: 55px; }
.btrr55 {
border-top-right-radius: 55px; }
.btlr55 {
border-top-left-radius: 55px; }
.bbrr55 {
border-bottom-right-radius: 55px; }
.bblr55 {
border-bottom-left-radius: 55px; }
.fz56 {
font-size: 56px; }
.ti56 {
text-indent: 56px; }
.bdsp56 {
border-spacing: 56px; }
.p56 {
padding: 56px; }
.pt56 {
padding-top: 56px; }
.pr56 {
padding-right: 56px; }
.pb56 {
padding-bottom: 56px; }
.pl56 {
padding-left: 56px; }
.m56 {
margin: 56px; }
.mt56 {
margin-top: 56px; }
.mr56 {
margin-right: 56px; }
.mb56 {
margin-bottom: 56px; }
.ml56 {
margin-left: 56px; }
.bdrs56 {
border-radius: 56px; }
.btrr56 {
border-top-right-radius: 56px; }
.btlr56 {
border-top-left-radius: 56px; }
.bbrr56 {
border-bottom-right-radius: 56px; }
.bblr56 {
border-bottom-left-radius: 56px; }
.fz57 {
font-size: 57px; }
.ti57 {
text-indent: 57px; }
.bdsp57 {
border-spacing: 57px; }
.p57 {
padding: 57px; }
.pt57 {
padding-top: 57px; }
.pr57 {
padding-right: 57px; }
.pb57 {
padding-bottom: 57px; }
.pl57 {
padding-left: 57px; }
.m57 {
margin: 57px; }
.mt57 {
margin-top: 57px; }
.mr57 {
margin-right: 57px; }
.mb57 {
margin-bottom: 57px; }
.ml57 {
margin-left: 57px; }
.bdrs57 {
border-radius: 57px; }
.btrr57 {
border-top-right-radius: 57px; }
.btlr57 {
border-top-left-radius: 57px; }
.bbrr57 {
border-bottom-right-radius: 57px; }
.bblr57 {
border-bottom-left-radius: 57px; }
.fz58 {
font-size: 58px; }
.ti58 {
text-indent: 58px; }
.bdsp58 {
border-spacing: 58px; }
.p58 {
padding: 58px; }
.pt58 {
padding-top: 58px; }
.pr58 {
padding-right: 58px; }
.pb58 {
padding-bottom: 58px; }
.pl58 {
padding-left: 58px; }
.m58 {
margin: 58px; }
.mt58 {
margin-top: 58px; }
.mr58 {
margin-right: 58px; }
.mb58 {
margin-bottom: 58px; }
.ml58 {
margin-left: 58px; }
.bdrs58 {
border-radius: 58px; }
.btrr58 {
border-top-right-radius: 58px; }
.btlr58 {
border-top-left-radius: 58px; }
.bbrr58 {
border-bottom-right-radius: 58px; }
.bblr58 {
border-bottom-left-radius: 58px; }
.fz59 {
font-size: 59px; }
.ti59 {
text-indent: 59px; }
.bdsp59 {
border-spacing: 59px; }
.p59 {
padding: 59px; }
.pt59 {
padding-top: 59px; }
.pr59 {
padding-right: 59px; }
.pb59 {
padding-bottom: 59px; }
.pl59 {
padding-left: 59px; }
.m59 {
margin: 59px; }
.mt59 {
margin-top: 59px; }
.mr59 {
margin-right: 59px; }
.mb59 {
margin-bottom: 59px; }
.ml59 {
margin-left: 59px; }
.bdrs59 {
border-radius: 59px; }
.btrr59 {
border-top-right-radius: 59px; }
.btlr59 {
border-top-left-radius: 59px; }
.bbrr59 {
border-bottom-right-radius: 59px; }
.bblr59 {
border-bottom-left-radius: 59px; }
.fz60 {
font-size: 60px; }
.ti60 {
text-indent: 60px; }
.bdsp60 {
border-spacing: 60px; }
.p60 {
padding: 60px; }
.pt60 {
padding-top: 60px; }
.pr60 {
padding-right: 60px; }
.pb60 {
padding-bottom: 60px; }
.pl60 {
padding-left: 60px; }
.m60 {
margin: 60px; }
.mt60 {
margin-top: 60px; }
.mr60 {
margin-right: 60px; }
.mb60 {
margin-bottom: 60px; }
.ml60 {
margin-left: 60px; }
.bdrs60 {
border-radius: 60px; }
.btrr60 {
border-top-right-radius: 60px; }
.btlr60 {
border-top-left-radius: 60px; }
.bbrr60 {
border-bottom-right-radius: 60px; }
.bblr60 {
border-bottom-left-radius: 60px; }
.fz61 {
font-size: 61px; }
.ti61 {
text-indent: 61px; }
.bdsp61 {
border-spacing: 61px; }
.p61 {
padding: 61px; }
.pt61 {
padding-top: 61px; }
.pr61 {
padding-right: 61px; }
.pb61 {
padding-bottom: 61px; }
.pl61 {
padding-left: 61px; }
.m61 {
margin: 61px; }
.mt61 {
margin-top: 61px; }
.mr61 {
margin-right: 61px; }
.mb61 {
margin-bottom: 61px; }
.ml61 {
margin-left: 61px; }
.bdrs61 {
border-radius: 61px; }
.btrr61 {
border-top-right-radius: 61px; }
.btlr61 {
border-top-left-radius: 61px; }
.bbrr61 {
border-bottom-right-radius: 61px; }
.bblr61 {
border-bottom-left-radius: 61px; }
.fz62 {
font-size: 62px; }
.ti62 {
text-indent: 62px; }
.bdsp62 {
border-spacing: 62px; }
.p62 {
padding: 62px; }
.pt62 {
padding-top: 62px; }
.pr62 {
padding-right: 62px; }
.pb62 {
padding-bottom: 62px; }
.pl62 {
padding-left: 62px; }
.m62 {
margin: 62px; }
.mt62 {
margin-top: 62px; }
.mr62 {
margin-right: 62px; }
.mb62 {
margin-bottom: 62px; }
.ml62 {
margin-left: 62px; }
.bdrs62 {
border-radius: 62px; }
.btrr62 {
border-top-right-radius: 62px; }
.btlr62 {
border-top-left-radius: 62px; }
.bbrr62 {
border-bottom-right-radius: 62px; }
.bblr62 {
border-bottom-left-radius: 62px; }
.fz63 {
font-size: 63px; }
.ti63 {
text-indent: 63px; }
.bdsp63 {
border-spacing: 63px; }
.p63 {
padding: 63px; }
.pt63 {
padding-top: 63px; }
.pr63 {
padding-right: 63px; }
.pb63 {
padding-bottom: 63px; }
.pl63 {
padding-left: 63px; }
.m63 {
margin: 63px; }
.mt63 {
margin-top: 63px; }
.mr63 {
margin-right: 63px; }
.mb63 {
margin-bottom: 63px; }
.ml63 {
margin-left: 63px; }
.bdrs63 {
border-radius: 63px; }
.btrr63 {
border-top-right-radius: 63px; }
.btlr63 {
border-top-left-radius: 63px; }
.bbrr63 {
border-bottom-right-radius: 63px; }
.bblr63 {
border-bottom-left-radius: 63px; }
.fz64 {
font-size: 64px; }
.ti64 {
text-indent: 64px; }
.bdsp64 {
border-spacing: 64px; }
.p64 {
padding: 64px; }
.pt64 {
padding-top: 64px; }
.pr64 {
padding-right: 64px; }
.pb64 {
padding-bottom: 64px; }
.pl64 {
padding-left: 64px; }
.m64 {
margin: 64px; }
.mt64 {
margin-top: 64px; }
.mr64 {
margin-right: 64px; }
.mb64 {
margin-bottom: 64px; }
.ml64 {
margin-left: 64px; }
.bdrs64 {
border-radius: 64px; }
.btrr64 {
border-top-right-radius: 64px; }
.btlr64 {
border-top-left-radius: 64px; }
.bbrr64 {
border-bottom-right-radius: 64px; }
.bblr64 {
border-bottom-left-radius: 64px; }
.fz65 {
font-size: 65px; }
.ti65 {
text-indent: 65px; }
.bdsp65 {
border-spacing: 65px; }
.p65 {
padding: 65px; }
.pt65 {
padding-top: 65px; }
.pr65 {
padding-right: 65px; }
.pb65 {
padding-bottom: 65px; }
.pl65 {
padding-left: 65px; }
.m65 {
margin: 65px; }
.mt65 {
margin-top: 65px; }
.mr65 {
margin-right: 65px; }
.mb65 {
margin-bottom: 65px; }
.ml65 {
margin-left: 65px; }
.bdrs65 {
border-radius: 65px; }
.btrr65 {
border-top-right-radius: 65px; }
.btlr65 {
border-top-left-radius: 65px; }
.bbrr65 {
border-bottom-right-radius: 65px; }
.bblr65 {
border-bottom-left-radius: 65px; }
.fz66 {
font-size: 66px; }
.ti66 {
text-indent: 66px; }
.bdsp66 {
border-spacing: 66px; }
.p66 {
padding: 66px; }
.pt66 {
padding-top: 66px; }
.pr66 {
padding-right: 66px; }
.pb66 {
padding-bottom: 66px; }
.pl66 {
padding-left: 66px; }
.m66 {
margin: 66px; }
.mt66 {
margin-top: 66px; }
.mr66 {
margin-right: 66px; }
.mb66 {
margin-bottom: 66px; }
.ml66 {
margin-left: 66px; }
.bdrs66 {
border-radius: 66px; }
.btrr66 {
border-top-right-radius: 66px; }
.btlr66 {
border-top-left-radius: 66px; }
.bbrr66 {
border-bottom-right-radius: 66px; }
.bblr66 {
border-bottom-left-radius: 66px; }
.fz67 {
font-size: 67px; }
.ti67 {
text-indent: 67px; }
.bdsp67 {
border-spacing: 67px; }
.p67 {
padding: 67px; }
.pt67 {
padding-top: 67px; }
.pr67 {
padding-right: 67px; }
.pb67 {
padding-bottom: 67px; }
.pl67 {
padding-left: 67px; }
.m67 {
margin: 67px; }
.mt67 {
margin-top: 67px; }
.mr67 {
margin-right: 67px; }
.mb67 {
margin-bottom: 67px; }
.ml67 {
margin-left: 67px; }
.bdrs67 {
border-radius: 67px; }
.btrr67 {
border-top-right-radius: 67px; }
.btlr67 {
border-top-left-radius: 67px; }
.bbrr67 {
border-bottom-right-radius: 67px; }
.bblr67 {
border-bottom-left-radius: 67px; }
.fz68 {
font-size: 68px; }
.ti68 {
text-indent: 68px; }
.bdsp68 {
border-spacing: 68px; }
.p68 {
padding: 68px; }
.pt68 {
padding-top: 68px; }
.pr68 {
padding-right: 68px; }
.pb68 {
padding-bottom: 68px; }
.pl68 {
padding-left: 68px; }
.m68 {
margin: 68px; }
.mt68 {
margin-top: 68px; }
.mr68 {
margin-right: 68px; }
.mb68 {
margin-bottom: 68px; }
.ml68 {
margin-left: 68px; }
.bdrs68 {
border-radius: 68px; }
.btrr68 {
border-top-right-radius: 68px; }
.btlr68 {
border-top-left-radius: 68px; }
.bbrr68 {
border-bottom-right-radius: 68px; }
.bblr68 {
border-bottom-left-radius: 68px; }
.fz69 {
font-size: 69px; }
.ti69 {
text-indent: 69px; }
.bdsp69 {
border-spacing: 69px; }
.p69 {
padding: 69px; }
.pt69 {
padding-top: 69px; }
.pr69 {
padding-right: 69px; }
.pb69 {
padding-bottom: 69px; }
.pl69 {
padding-left: 69px; }
.m69 {
margin: 69px; }
.mt69 {
margin-top: 69px; }
.mr69 {
margin-right: 69px; }
.mb69 {
margin-bottom: 69px; }
.ml69 {
margin-left: 69px; }
.bdrs69 {
border-radius: 69px; }
.btrr69 {
border-top-right-radius: 69px; }
.btlr69 {
border-top-left-radius: 69px; }
.bbrr69 {
border-bottom-right-radius: 69px; }
.bblr69 {
border-bottom-left-radius: 69px; }
.fz70 {
font-size: 70px; }
.ti70 {
text-indent: 70px; }
.bdsp70 {
border-spacing: 70px; }
.p70 {
padding: 70px; }
.pt70 {
padding-top: 70px; }
.pr70 {
padding-right: 70px; }
.pb70 {
padding-bottom: 70px; }
.pl70 {
padding-left: 70px; }
.m70 {
margin: 70px; }
.mt70 {
margin-top: 70px; }
.mr70 {
margin-right: 70px; }
.mb70 {
margin-bottom: 70px; }
.ml70 {
margin-left: 70px; }
.bdrs70 {
border-radius: 70px; }
.btrr70 {
border-top-right-radius: 70px; }
.btlr70 {
border-top-left-radius: 70px; }
.bbrr70 {
border-bottom-right-radius: 70px; }
.bblr70 {
border-bottom-left-radius: 70px; }
.fz71 {
font-size: 71px; }
.ti71 {
text-indent: 71px; }
.bdsp71 {
border-spacing: 71px; }
.p71 {
padding: 71px; }
.pt71 {
padding-top: 71px; }
.pr71 {
padding-right: 71px; }
.pb71 {
padding-bottom: 71px; }
.pl71 {
padding-left: 71px; }
.m71 {
margin: 71px; }
.mt71 {
margin-top: 71px; }
.mr71 {
margin-right: 71px; }
.mb71 {
margin-bottom: 71px; }
.ml71 {
margin-left: 71px; }
.bdrs71 {
border-radius: 71px; }
.btrr71 {
border-top-right-radius: 71px; }
.btlr71 {
border-top-left-radius: 71px; }
.bbrr71 {
border-bottom-right-radius: 71px; }
.bblr71 {
border-bottom-left-radius: 71px; }
.fz72 {
font-size: 72px; }
.ti72 {
text-indent: 72px; }
.bdsp72 {
border-spacing: 72px; }
.p72 {
padding: 72px; }
.pt72 {
padding-top: 72px; }
.pr72 {
padding-right: 72px; }
.pb72 {
padding-bottom: 72px; }
.pl72 {
padding-left: 72px; }
.m72 {
margin: 72px; }
.mt72 {
margin-top: 72px; }
.mr72 {
margin-right: 72px; }
.mb72 {
margin-bottom: 72px; }
.ml72 {
margin-left: 72px; }
.bdrs72 {
border-radius: 72px; }
.btrr72 {
border-top-right-radius: 72px; }
.btlr72 {
border-top-left-radius: 72px; }
.bbrr72 {
border-bottom-right-radius: 72px; }
.bblr72 {
border-bottom-left-radius: 72px; }
.fz73 {
font-size: 73px; }
.ti73 {
text-indent: 73px; }
.bdsp73 {
border-spacing: 73px; }
.p73 {
padding: 73px; }
.pt73 {
padding-top: 73px; }
.pr73 {
padding-right: 73px; }
.pb73 {
padding-bottom: 73px; }
.pl73 {
padding-left: 73px; }
.m73 {
margin: 73px; }
.mt73 {
margin-top: 73px; }
.mr73 {
margin-right: 73px; }
.mb73 {
margin-bottom: 73px; }
.ml73 {
margin-left: 73px; }
.bdrs73 {
border-radius: 73px; }
.btrr73 {
border-top-right-radius: 73px; }
.btlr73 {
border-top-left-radius: 73px; }
.bbrr73 {
border-bottom-right-radius: 73px; }
.bblr73 {
border-bottom-left-radius: 73px; }
.fz74 {
font-size: 74px; }
.ti74 {
text-indent: 74px; }
.bdsp74 {
border-spacing: 74px; }
.p74 {
padding: 74px; }
.pt74 {
padding-top: 74px; }
.pr74 {
padding-right: 74px; }
.pb74 {
padding-bottom: 74px; }
.pl74 {
padding-left: 74px; }
.m74 {
margin: 74px; }
.mt74 {
margin-top: 74px; }
.mr74 {
margin-right: 74px; }
.mb74 {
margin-bottom: 74px; }
.ml74 {
margin-left: 74px; }
.bdrs74 {
border-radius: 74px; }
.btrr74 {
border-top-right-radius: 74px; }
.btlr74 {
border-top-left-radius: 74px; }
.bbrr74 {
border-bottom-right-radius: 74px; }
.bblr74 {
border-bottom-left-radius: 74px; }
.fz75 {
font-size: 75px; }
.ti75 {
text-indent: 75px; }
.bdsp75 {
border-spacing: 75px; }
.p75 {
padding: 75px; }
.pt75 {
padding-top: 75px; }
.pr75 {
padding-right: 75px; }
.pb75 {
padding-bottom: 75px; }
.pl75 {
padding-left: 75px; }
.m75 {
margin: 75px; }
.mt75 {
margin-top: 75px; }
.mr75 {
margin-right: 75px; }
.mb75 {
margin-bottom: 75px; }
.ml75 {
margin-left: 75px; }
.bdrs75 {
border-radius: 75px; }
.btrr75 {
border-top-right-radius: 75px; }
.btlr75 {
border-top-left-radius: 75px; }
.bbrr75 {
border-bottom-right-radius: 75px; }
.bblr75 {
border-bottom-left-radius: 75px; }
.fz76 {
font-size: 76px; }
.ti76 {
text-indent: 76px; }
.bdsp76 {
border-spacing: 76px; }
.p76 {
padding: 76px; }
.pt76 {
padding-top: 76px; }
.pr76 {
padding-right: 76px; }
.pb76 {
padding-bottom: 76px; }
.pl76 {
padding-left: 76px; }
.m76 {
margin: 76px; }
.mt76 {
margin-top: 76px; }
.mr76 {
margin-right: 76px; }
.mb76 {
margin-bottom: 76px; }
.ml76 {
margin-left: 76px; }
.bdrs76 {
border-radius: 76px; }
.btrr76 {
border-top-right-radius: 76px; }
.btlr76 {
border-top-left-radius: 76px; }
.bbrr76 {
border-bottom-right-radius: 76px; }
.bblr76 {
border-bottom-left-radius: 76px; }
.fz77 {
font-size: 77px; }
.ti77 {
text-indent: 77px; }
.bdsp77 {
border-spacing: 77px; }
.p77 {
padding: 77px; }
.pt77 {
padding-top: 77px; }
.pr77 {
padding-right: 77px; }
.pb77 {
padding-bottom: 77px; }
.pl77 {
padding-left: 77px; }
.m77 {
margin: 77px; }
.mt77 {
margin-top: 77px; }
.mr77 {
margin-right: 77px; }
.mb77 {
margin-bottom: 77px; }
.ml77 {
margin-left: 77px; }
.bdrs77 {
border-radius: 77px; }
.btrr77 {
border-top-right-radius: 77px; }
.btlr77 {
border-top-left-radius: 77px; }
.bbrr77 {
border-bottom-right-radius: 77px; }
.bblr77 {
border-bottom-left-radius: 77px; }
.fz78 {
font-size: 78px; }
.ti78 {
text-indent: 78px; }
.bdsp78 {
border-spacing: 78px; }
.p78 {
padding: 78px; }
.pt78 {
padding-top: 78px; }
.pr78 {
padding-right: 78px; }
.pb78 {
padding-bottom: 78px; }
.pl78 {
padding-left: 78px; }
.m78 {
margin: 78px; }
.mt78 {
margin-top: 78px; }
.mr78 {
margin-right: 78px; }
.mb78 {
margin-bottom: 78px; }
.ml78 {
margin-left: 78px; }
.bdrs78 {
border-radius: 78px; }
.btrr78 {
border-top-right-radius: 78px; }
.btlr78 {
border-top-left-radius: 78px; }
.bbrr78 {
border-bottom-right-radius: 78px; }
.bblr78 {
border-bottom-left-radius: 78px; }
.fz79 {
font-size: 79px; }
.ti79 {
text-indent: 79px; }
.bdsp79 {
border-spacing: 79px; }
.p79 {
padding: 79px; }
.pt79 {
padding-top: 79px; }
.pr79 {
padding-right: 79px; }
.pb79 {
padding-bottom: 79px; }
.pl79 {
padding-left: 79px; }
.m79 {
margin: 79px; }
.mt79 {
margin-top: 79px; }
.mr79 {
margin-right: 79px; }
.mb79 {
margin-bottom: 79px; }
.ml79 {
margin-left: 79px; }
.bdrs79 {
border-radius: 79px; }
.btrr79 {
border-top-right-radius: 79px; }
.btlr79 {
border-top-left-radius: 79px; }
.bbrr79 {
border-bottom-right-radius: 79px; }
.bblr79 {
border-bottom-left-radius: 79px; }
.fz80 {
font-size: 80px; }
.ti80 {
text-indent: 80px; }
.bdsp80 {
border-spacing: 80px; }
.p80 {
padding: 80px; }
.pt80 {
padding-top: 80px; }
.pr80 {
padding-right: 80px; }
.pb80 {
padding-bottom: 80px; }
.pl80 {
padding-left: 80px; }
.m80 {
margin: 80px; }
.mt80 {
margin-top: 80px; }
.mr80 {
margin-right: 80px; }
.mb80 {
margin-bottom: 80px; }
.ml80 {
margin-left: 80px; }
.bdrs80 {
border-radius: 80px; }
.btrr80 {
border-top-right-radius: 80px; }
.btlr80 {
border-top-left-radius: 80px; }
.bbrr80 {
border-bottom-right-radius: 80px; }
.bblr80 {
border-bottom-left-radius: 80px; }
.fz81 {
font-size: 81px; }
.ti81 {
text-indent: 81px; }
.bdsp81 {
border-spacing: 81px; }
.p81 {
padding: 81px; }
.pt81 {
padding-top: 81px; }
.pr81 {
padding-right: 81px; }
.pb81 {
padding-bottom: 81px; }
.pl81 {
padding-left: 81px; }
.m81 {
margin: 81px; }
.mt81 {
margin-top: 81px; }
.mr81 {
margin-right: 81px; }
.mb81 {
margin-bottom: 81px; }
.ml81 {
margin-left: 81px; }
.bdrs81 {
border-radius: 81px; }
.btrr81 {
border-top-right-radius: 81px; }
.btlr81 {
border-top-left-radius: 81px; }
.bbrr81 {
border-bottom-right-radius: 81px; }
.bblr81 {
border-bottom-left-radius: 81px; }
.fz82 {
font-size: 82px; }
.ti82 {
text-indent: 82px; }
.bdsp82 {
border-spacing: 82px; }
.p82 {
padding: 82px; }
.pt82 {
padding-top: 82px; }
.pr82 {
padding-right: 82px; }
.pb82 {
padding-bottom: 82px; }
.pl82 {
padding-left: 82px; }
.m82 {
margin: 82px; }
.mt82 {
margin-top: 82px; }
.mr82 {
margin-right: 82px; }
.mb82 {
margin-bottom: 82px; }
.ml82 {
margin-left: 82px; }
.bdrs82 {
border-radius: 82px; }
.btrr82 {
border-top-right-radius: 82px; }
.btlr82 {
border-top-left-radius: 82px; }
.bbrr82 {
border-bottom-right-radius: 82px; }
.bblr82 {
border-bottom-left-radius: 82px; }
.fz83 {
font-size: 83px; }
.ti83 {
text-indent: 83px; }
.bdsp83 {
border-spacing: 83px; }
.p83 {
padding: 83px; }
.pt83 {
padding-top: 83px; }
.pr83 {
padding-right: 83px; }
.pb83 {
padding-bottom: 83px; }
.pl83 {
padding-left: 83px; }
.m83 {
margin: 83px; }
.mt83 {
margin-top: 83px; }
.mr83 {
margin-right: 83px; }
.mb83 {
margin-bottom: 83px; }
.ml83 {
margin-left: 83px; }
.bdrs83 {
border-radius: 83px; }
.btrr83 {
border-top-right-radius: 83px; }
.btlr83 {
border-top-left-radius: 83px; }
.bbrr83 {
border-bottom-right-radius: 83px; }
.bblr83 {
border-bottom-left-radius: 83px; }
.fz84 {
font-size: 84px; }
.ti84 {
text-indent: 84px; }
.bdsp84 {
border-spacing: 84px; }
.p84 {
padding: 84px; }
.pt84 {
padding-top: 84px; }
.pr84 {
padding-right: 84px; }
.pb84 {
padding-bottom: 84px; }
.pl84 {
padding-left: 84px; }
.m84 {
margin: 84px; }
.mt84 {
margin-top: 84px; }
.mr84 {
margin-right: 84px; }
.mb84 {
margin-bottom: 84px; }
.ml84 {
margin-left: 84px; }
.bdrs84 {
border-radius: 84px; }
.btrr84 {
border-top-right-radius: 84px; }
.btlr84 {
border-top-left-radius: 84px; }
.bbrr84 {
border-bottom-right-radius: 84px; }
.bblr84 {
border-bottom-left-radius: 84px; }
.fz85 {
font-size: 85px; }
.ti85 {
text-indent: 85px; }
.bdsp85 {
border-spacing: 85px; }
.p85 {
padding: 85px; }
.pt85 {
padding-top: 85px; }
.pr85 {
padding-right: 85px; }
.pb85 {
padding-bottom: 85px; }
.pl85 {
padding-left: 85px; }
.m85 {
margin: 85px; }
.mt85 {
margin-top: 85px; }
.mr85 {
margin-right: 85px; }
.mb85 {
margin-bottom: 85px; }
.ml85 {
margin-left: 85px; }
.bdrs85 {
border-radius: 85px; }
.btrr85 {
border-top-right-radius: 85px; }
.btlr85 {
border-top-left-radius: 85px; }
.bbrr85 {
border-bottom-right-radius: 85px; }
.bblr85 {
border-bottom-left-radius: 85px; }
.fz86 {
font-size: 86px; }
.ti86 {
text-indent: 86px; }
.bdsp86 {
border-spacing: 86px; }
.p86 {
padding: 86px; }
.pt86 {
padding-top: 86px; }
.pr86 {
padding-right: 86px; }
.pb86 {
padding-bottom: 86px; }
.pl86 {
padding-left: 86px; }
.m86 {
margin: 86px; }
.mt86 {
margin-top: 86px; }
.mr86 {
margin-right: 86px; }
.mb86 {
margin-bottom: 86px; }
.ml86 {
margin-left: 86px; }
.bdrs86 {
border-radius: 86px; }
.btrr86 {
border-top-right-radius: 86px; }
.btlr86 {
border-top-left-radius: 86px; }
.bbrr86 {
border-bottom-right-radius: 86px; }
.bblr86 {
border-bottom-left-radius: 86px; }
.fz87 {
font-size: 87px; }
.ti87 {
text-indent: 87px; }
.bdsp87 {
border-spacing: 87px; }
.p87 {
padding: 87px; }
.pt87 {
padding-top: 87px; }
.pr87 {
padding-right: 87px; }
.pb87 {
padding-bottom: 87px; }
.pl87 {
padding-left: 87px; }
.m87 {
margin: 87px; }
.mt87 {
margin-top: 87px; }
.mr87 {
margin-right: 87px; }
.mb87 {
margin-bottom: 87px; }
.ml87 {
margin-left: 87px; }
.bdrs87 {
border-radius: 87px; }
.btrr87 {
border-top-right-radius: 87px; }
.btlr87 {
border-top-left-radius: 87px; }
.bbrr87 {
border-bottom-right-radius: 87px; }
.bblr87 {
border-bottom-left-radius: 87px; }
.fz88 {
font-size: 88px; }
.ti88 {
text-indent: 88px; }
.bdsp88 {
border-spacing: 88px; }
.p88 {
padding: 88px; }
.pt88 {
padding-top: 88px; }
.pr88 {
padding-right: 88px; }
.pb88 {
padding-bottom: 88px; }
.pl88 {
padding-left: 88px; }
.m88 {
margin: 88px; }
.mt88 {
margin-top: 88px; }
.mr88 {
margin-right: 88px; }
.mb88 {
margin-bottom: 88px; }
.ml88 {
margin-left: 88px; }
.bdrs88 {
border-radius: 88px; }
.btrr88 {
border-top-right-radius: 88px; }
.btlr88 {
border-top-left-radius: 88px; }
.bbrr88 {
border-bottom-right-radius: 88px; }
.bblr88 {
border-bottom-left-radius: 88px; }
.fz89 {
font-size: 89px; }
.ti89 {
text-indent: 89px; }
.bdsp89 {
border-spacing: 89px; }
.p89 {
padding: 89px; }
.pt89 {
padding-top: 89px; }
.pr89 {
padding-right: 89px; }
.pb89 {
padding-bottom: 89px; }
.pl89 {
padding-left: 89px; }
.m89 {
margin: 89px; }
.mt89 {
margin-top: 89px; }
.mr89 {
margin-right: 89px; }
.mb89 {
margin-bottom: 89px; }
.ml89 {
margin-left: 89px; }
.bdrs89 {
border-radius: 89px; }
.btrr89 {
border-top-right-radius: 89px; }
.btlr89 {
border-top-left-radius: 89px; }
.bbrr89 {
border-bottom-right-radius: 89px; }
.bblr89 {
border-bottom-left-radius: 89px; }
.fz90 {
font-size: 90px; }
.ti90 {
text-indent: 90px; }
.bdsp90 {
border-spacing: 90px; }
.p90 {
padding: 90px; }
.pt90 {
padding-top: 90px; }
.pr90 {
padding-right: 90px; }
.pb90 {
padding-bottom: 90px; }
.pl90 {
padding-left: 90px; }
.m90 {
margin: 90px; }
.mt90 {
margin-top: 90px; }
.mr90 {
margin-right: 90px; }
.mb90 {
margin-bottom: 90px; }
.ml90 {
margin-left: 90px; }
.bdrs90 {
border-radius: 90px; }
.btrr90 {
border-top-right-radius: 90px; }
.btlr90 {
border-top-left-radius: 90px; }
.bbrr90 {
border-bottom-right-radius: 90px; }
.bblr90 {
border-bottom-left-radius: 90px; }
.fz91 {
font-size: 91px; }
.ti91 {
text-indent: 91px; }
.bdsp91 {
border-spacing: 91px; }
.p91 {
padding: 91px; }
.pt91 {
padding-top: 91px; }
.pr91 {
padding-right: 91px; }
.pb91 {
padding-bottom: 91px; }
.pl91 {
padding-left: 91px; }
.m91 {
margin: 91px; }
.mt91 {
margin-top: 91px; }
.mr91 {
margin-right: 91px; }
.mb91 {
margin-bottom: 91px; }
.ml91 {
margin-left: 91px; }
.bdrs91 {
border-radius: 91px; }
.btrr91 {
border-top-right-radius: 91px; }
.btlr91 {
border-top-left-radius: 91px; }
.bbrr91 {
border-bottom-right-radius: 91px; }
.bblr91 {
border-bottom-left-radius: 91px; }
.fz92 {
font-size: 92px; }
.ti92 {
text-indent: 92px; }
.bdsp92 {
border-spacing: 92px; }
.p92 {
padding: 92px; }
.pt92 {
padding-top: 92px; }
.pr92 {
padding-right: 92px; }
.pb92 {
padding-bottom: 92px; }
.pl92 {
padding-left: 92px; }
.m92 {
margin: 92px; }
.mt92 {
margin-top: 92px; }
.mr92 {
margin-right: 92px; }
.mb92 {
margin-bottom: 92px; }
.ml92 {
margin-left: 92px; }
.bdrs92 {
border-radius: 92px; }
.btrr92 {
border-top-right-radius: 92px; }
.btlr92 {
border-top-left-radius: 92px; }
.bbrr92 {
border-bottom-right-radius: 92px; }
.bblr92 {
border-bottom-left-radius: 92px; }
.fz93 {
font-size: 93px; }
.ti93 {
text-indent: 93px; }
.bdsp93 {
border-spacing: 93px; }
.p93 {
padding: 93px; }
.pt93 {
padding-top: 93px; }
.pr93 {
padding-right: 93px; }
.pb93 {
padding-bottom: 93px; }
.pl93 {
padding-left: 93px; }
.m93 {
margin: 93px; }
.mt93 {
margin-top: 93px; }
.mr93 {
margin-right: 93px; }
.mb93 {
margin-bottom: 93px; }
.ml93 {
margin-left: 93px; }
.bdrs93 {
border-radius: 93px; }
.btrr93 {
border-top-right-radius: 93px; }
.btlr93 {
border-top-left-radius: 93px; }
.bbrr93 {
border-bottom-right-radius: 93px; }
.bblr93 {
border-bottom-left-radius: 93px; }
.fz94 {
font-size: 94px; }
.ti94 {
text-indent: 94px; }
.bdsp94 {
border-spacing: 94px; }
.p94 {
padding: 94px; }
.pt94 {
padding-top: 94px; }
.pr94 {
padding-right: 94px; }
.pb94 {
padding-bottom: 94px; }
.pl94 {
padding-left: 94px; }
.m94 {
margin: 94px; }
.mt94 {
margin-top: 94px; }
.mr94 {
margin-right: 94px; }
.mb94 {
margin-bottom: 94px; }
.ml94 {
margin-left: 94px; }
.bdrs94 {
border-radius: 94px; }
.btrr94 {
border-top-right-radius: 94px; }
.btlr94 {
border-top-left-radius: 94px; }
.bbrr94 {
border-bottom-right-radius: 94px; }
.bblr94 {
border-bottom-left-radius: 94px; }
.fz95 {
font-size: 95px; }
.ti95 {
text-indent: 95px; }
.bdsp95 {
border-spacing: 95px; }
.p95 {
padding: 95px; }
.pt95 {
padding-top: 95px; }
.pr95 {
padding-right: 95px; }
.pb95 {
padding-bottom: 95px; }
.pl95 {
padding-left: 95px; }
.m95 {
margin: 95px; }
.mt95 {
margin-top: 95px; }
.mr95 {
margin-right: 95px; }
.mb95 {
margin-bottom: 95px; }
.ml95 {
margin-left: 95px; }
.bdrs95 {
border-radius: 95px; }
.btrr95 {
border-top-right-radius: 95px; }
.btlr95 {
border-top-left-radius: 95px; }
.bbrr95 {
border-bottom-right-radius: 95px; }
.bblr95 {
border-bottom-left-radius: 95px; }
.fz96 {
font-size: 96px; }
.ti96 {
text-indent: 96px; }
.bdsp96 {
border-spacing: 96px; }
.p96 {
padding: 96px; }
.pt96 {
padding-top: 96px; }
.pr96 {
padding-right: 96px; }
.pb96 {
padding-bottom: 96px; }
.pl96 {
padding-left: 96px; }
.m96 {
margin: 96px; }
.mt96 {
margin-top: 96px; }
.mr96 {
margin-right: 96px; }
.mb96 {
margin-bottom: 96px; }
.ml96 {
margin-left: 96px; }
.bdrs96 {
border-radius: 96px; }
.btrr96 {
border-top-right-radius: 96px; }
.btlr96 {
border-top-left-radius: 96px; }
.bbrr96 {
border-bottom-right-radius: 96px; }
.bblr96 {
border-bottom-left-radius: 96px; }
.fz97 {
font-size: 97px; }
.ti97 {
text-indent: 97px; }
.bdsp97 {
border-spacing: 97px; }
.p97 {
padding: 97px; }
.pt97 {
padding-top: 97px; }
.pr97 {
padding-right: 97px; }
.pb97 {
padding-bottom: 97px; }
.pl97 {
padding-left: 97px; }
.m97 {
margin: 97px; }
.mt97 {
margin-top: 97px; }
.mr97 {
margin-right: 97px; }
.mb97 {
margin-bottom: 97px; }
.ml97 {
margin-left: 97px; }
.bdrs97 {
border-radius: 97px; }
.btrr97 {
border-top-right-radius: 97px; }
.btlr97 {
border-top-left-radius: 97px; }
.bbrr97 {
border-bottom-right-radius: 97px; }
.bblr97 {
border-bottom-left-radius: 97px; }
.fz98 {
font-size: 98px; }
.ti98 {
text-indent: 98px; }
.bdsp98 {
border-spacing: 98px; }
.p98 {
padding: 98px; }
.pt98 {
padding-top: 98px; }
.pr98 {
padding-right: 98px; }
.pb98 {
padding-bottom: 98px; }
.pl98 {
padding-left: 98px; }
.m98 {
margin: 98px; }
.mt98 {
margin-top: 98px; }
.mr98 {
margin-right: 98px; }
.mb98 {
margin-bottom: 98px; }
.ml98 {
margin-left: 98px; }
.bdrs98 {
border-radius: 98px; }
.btrr98 {
border-top-right-radius: 98px; }
.btlr98 {
border-top-left-radius: 98px; }
.bbrr98 {
border-bottom-right-radius: 98px; }
.bblr98 {
border-bottom-left-radius: 98px; }
.fz99 {
font-size: 99px; }
.ti99 {
text-indent: 99px; }
.bdsp99 {
border-spacing: 99px; }
.p99 {
padding: 99px; }
.pt99 {
padding-top: 99px; }
.pr99 {
padding-right: 99px; }
.pb99 {
padding-bottom: 99px; }
.pl99 {
padding-left: 99px; }
.m99 {
margin: 99px; }
.mt99 {
margin-top: 99px; }
.mr99 {
margin-right: 99px; }
.mb99 {
margin-bottom: 99px; }
.ml99 {
margin-left: 99px; }
.bdrs99 {
border-radius: 99px; }
.btrr99 {
border-top-right-radius: 99px; }
.btlr99 {
border-top-left-radius: 99px; }
.bbrr99 {
border-bottom-right-radius: 99px; }
.bblr99 {
border-bottom-left-radius: 99px; }
.fz100 {
font-size: 100px; }
.ti100 {
text-indent: 100px; }
.bdsp100 {
border-spacing: 100px; }
.p100 {
padding: 100px; }
.pt100 {
padding-top: 100px; }
.pr100 {
padding-right: 100px; }
.pb100 {
padding-bottom: 100px; }
.pl100 {
padding-left: 100px; }
.m100 {
margin: 100px; }
.mt100 {
margin-top: 100px; }
.mr100 {
margin-right: 100px; }
.mb100 {
margin-bottom: 100px; }
.ml100 {
margin-left: 100px; }
.bdrs100 {
border-radius: 100px; }
.btrr100 {
border-top-right-radius: 100px; }
.btlr100 {
border-top-left-radius: 100px; }
.bbrr100 {
border-bottom-right-radius: 100px; }
.bblr100 {
border-bottom-left-radius: 100px; }
.bd_1-dotted {
border: 1px dotted; }
.bdt_1-dotted {
border-top: 1px dotted; }
.bdr_1-dotted {
border-right: 1px dotted; }
.bdb_1-dotted {
border-bottom: 1px dotted; }
.bdl_1-dotted {
border-left: 1px dotted; }
.bd_2-dotted {
border: 2px dotted; }
.bdt_2-dotted {
border-top: 2px dotted; }
.bdr_2-dotted {
border-right: 2px dotted; }
.bdb_2-dotted {
border-bottom: 2px dotted; }
.bdl_2-dotted {
border-left: 2px dotted; }
.bd_3-dotted {
border: 3px dotted; }
.bdt_3-dotted {
border-top: 3px dotted; }
.bdr_3-dotted {
border-right: 3px dotted; }
.bdb_3-dotted {
border-bottom: 3px dotted; }
.bdl_3-dotted {
border-left: 3px dotted; }
.bd_4-dotted {
border: 4px dotted; }
.bdt_4-dotted {
border-top: 4px dotted; }
.bdr_4-dotted {
border-right: 4px dotted; }
.bdb_4-dotted {
border-bottom: 4px dotted; }
.bdl_4-dotted {
border-left: 4px dotted; }
.bd_5-dotted {
border: 5px dotted; }
.bdt_5-dotted {
border-top: 5px dotted; }
.bdr_5-dotted {
border-right: 5px dotted; }
.bdb_5-dotted {
border-bottom: 5px dotted; }
.bdl_5-dotted {
border-left: 5px dotted; }
.bd_6-dotted {
border: 6px dotted; }
.bdt_6-dotted {
border-top: 6px dotted; }
.bdr_6-dotted {
border-right: 6px dotted; }
.bdb_6-dotted {
border-bottom: 6px dotted; }
.bdl_6-dotted {
border-left: 6px dotted; }
.bd_7-dotted {
border: 7px dotted; }
.bdt_7-dotted {
border-top: 7px dotted; }
.bdr_7-dotted {
border-right: 7px dotted; }
.bdb_7-dotted {
border-bottom: 7px dotted; }
.bdl_7-dotted {
border-left: 7px dotted; }
.bd_8-dotted {
border: 8px dotted; }
.bdt_8-dotted {
border-top: 8px dotted; }
.bdr_8-dotted {
border-right: 8px dotted; }
.bdb_8-dotted {
border-bottom: 8px dotted; }
.bdl_8-dotted {
border-left: 8px dotted; }
.bd_9-dotted {
border: 9px dotted; }
.bdt_9-dotted {
border-top: 9px dotted; }
.bdr_9-dotted {
border-right: 9px dotted; }
.bdb_9-dotted {
border-bottom: 9px dotted; }
.bdl_9-dotted {
border-left: 9px dotted; }
.bd_10-dotted {
border: 10px dotted; }
.bdt_10-dotted {
border-top: 10px dotted; }
.bdr_10-dotted {
border-right: 10px dotted; }
.bdb_10-dotted {
border-bottom: 10px dotted; }
.bdl_10-dotted {
border-left: 10px dotted; }
.bd_1-dashed {
border: 1px dashed; }
.bdt_1-dashed {
border-top: 1px dashed; }
.bdr_1-dashed {
border-right: 1px dashed; }
.bdb_1-dashed {
border-bottom: 1px dashed; }
.bdl_1-dashed {
border-left: 1px dashed; }
.bd_2-dashed {
border: 2px dashed; }
.bdt_2-dashed {
border-top: 2px dashed; }
.bdr_2-dashed {
border-right: 2px dashed; }
.bdb_2-dashed {
border-bottom: 2px dashed; }
.bdl_2-dashed {
border-left: 2px dashed; }
.bd_3-dashed {
border: 3px dashed; }
.bdt_3-dashed {
border-top: 3px dashed; }
.bdr_3-dashed {
border-right: 3px dashed; }
.bdb_3-dashed {
border-bottom: 3px dashed; }
.bdl_3-dashed {
border-left: 3px dashed; }
.bd_4-dashed {
border: 4px dashed; }
.bdt_4-dashed {
border-top: 4px dashed; }
.bdr_4-dashed {
border-right: 4px dashed; }
.bdb_4-dashed {
border-bottom: 4px dashed; }
.bdl_4-dashed {
border-left: 4px dashed; }
.bd_5-dashed {
border: 5px dashed; }
.bdt_5-dashed {
border-top: 5px dashed; }
.bdr_5-dashed {
border-right: 5px dashed; }
.bdb_5-dashed {
border-bottom: 5px dashed; }
.bdl_5-dashed {
border-left: 5px dashed; }
.bd_6-dashed {
border: 6px dashed; }
.bdt_6-dashed {
border-top: 6px dashed; }
.bdr_6-dashed {
border-right: 6px dashed; }
.bdb_6-dashed {
border-bottom: 6px dashed; }
.bdl_6-dashed {
border-left: 6px dashed; }
.bd_7-dashed {
border: 7px dashed; }
.bdt_7-dashed {
border-top: 7px dashed; }
.bdr_7-dashed {
border-right: 7px dashed; }
.bdb_7-dashed {
border-bottom: 7px dashed; }
.bdl_7-dashed {
border-left: 7px dashed; }
.bd_8-dashed {
border: 8px dashed; }
.bdt_8-dashed {
border-top: 8px dashed; }
.bdr_8-dashed {
border-right: 8px dashed; }
.bdb_8-dashed {
border-bottom: 8px dashed; }
.bdl_8-dashed {
border-left: 8px dashed; }
.bd_9-dashed {
border: 9px dashed; }
.bdt_9-dashed {
border-top: 9px dashed; }
.bdr_9-dashed {
border-right: 9px dashed; }
.bdb_9-dashed {
border-bottom: 9px dashed; }
.bdl_9-dashed {
border-left: 9px dashed; }
.bd_10-dashed {
border: 10px dashed; }
.bdt_10-dashed {
border-top: 10px dashed; }
.bdr_10-dashed {
border-right: 10px dashed; }
.bdb_10-dashed {
border-bottom: 10px dashed; }
.bdl_10-dashed {
border-left: 10px dashed; }
.bd_1-solid {
border: 1px solid; }
.bdt_1-solid {
border-top: 1px solid; }
.bdr_1-solid {
border-right: 1px solid; }
.bdb_1-solid {
border-bottom: 1px solid; }
.bdl_1-solid {
border-left: 1px solid; }
.bd_2-solid {
border: 2px solid; }
.bdt_2-solid {
border-top: 2px solid; }
.bdr_2-solid {
border-right: 2px solid; }
.bdb_2-solid {
border-bottom: 2px solid; }
.bdl_2-solid {
border-left: 2px solid; }
.bd_3-solid {
border: 3px solid; }
.bdt_3-solid {
border-top: 3px solid; }
.bdr_3-solid {
border-right: 3px solid; }
.bdb_3-solid {
border-bottom: 3px solid; }
.bdl_3-solid {
border-left: 3px solid; }
.bd_4-solid {
border: 4px solid; }
.bdt_4-solid {
border-top: 4px solid; }
.bdr_4-solid {
border-right: 4px solid; }
.bdb_4-solid {
border-bottom: 4px solid; }
.bdl_4-solid {
border-left: 4px solid; }
.bd_5-solid {
border: 5px solid; }
.bdt_5-solid {
border-top: 5px solid; }
.bdr_5-solid {
border-right: 5px solid; }
.bdb_5-solid {
border-bottom: 5px solid; }
.bdl_5-solid {
border-left: 5px solid; }
.bd_6-solid {
border: 6px solid; }
.bdt_6-solid {
border-top: 6px solid; }
.bdr_6-solid {
border-right: 6px solid; }
.bdb_6-solid {
border-bottom: 6px solid; }
.bdl_6-solid {
border-left: 6px solid; }
.bd_7-solid {
border: 7px solid; }
.bdt_7-solid {
border-top: 7px solid; }
.bdr_7-solid {
border-right: 7px solid; }
.bdb_7-solid {
border-bottom: 7px solid; }
.bdl_7-solid {
border-left: 7px solid; }
.bd_8-solid {
border: 8px solid; }
.bdt_8-solid {
border-top: 8px solid; }
.bdr_8-solid {
border-right: 8px solid; }
.bdb_8-solid {
border-bottom: 8px solid; }
.bdl_8-solid {
border-left: 8px solid; }
.bd_9-solid {
border: 9px solid; }
.bdt_9-solid {
border-top: 9px solid; }
.bdr_9-solid {
border-right: 9px solid; }
.bdb_9-solid {
border-bottom: 9px solid; }
.bdl_9-solid {
border-left: 9px solid; }
.bd_10-solid {
border: 10px solid; }
.bdt_10-solid {
border-top: 10px solid; }
.bdr_10-solid {
border-right: 10px solid; }
.bdb_10-solid {
border-bottom: 10px solid; }
.bdl_10-solid {
border-left: 10px solid; }
.bd_1-double {
border: 1px double; }
.bdt_1-double {
border-top: 1px double; }
.bdr_1-double {
border-right: 1px double; }
.bdb_1-double {
border-bottom: 1px double; }
.bdl_1-double {
border-left: 1px double; }
.bd_2-double {
border: 2px double; }
.bdt_2-double {
border-top: 2px double; }
.bdr_2-double {
border-right: 2px double; }
.bdb_2-double {
border-bottom: 2px double; }
.bdl_2-double {
border-left: 2px double; }
.bd_3-double {
border: 3px double; }
.bdt_3-double {
border-top: 3px double; }
.bdr_3-double {
border-right: 3px double; }
.bdb_3-double {
border-bottom: 3px double; }
.bdl_3-double {
border-left: 3px double; }
.bd_4-double {
border: 4px double; }
.bdt_4-double {
border-top: 4px double; }
.bdr_4-double {
border-right: 4px double; }
.bdb_4-double {
border-bottom: 4px double; }
.bdl_4-double {
border-left: 4px double; }
.bd_5-double {
border: 5px double; }
.bdt_5-double {
border-top: 5px double; }
.bdr_5-double {
border-right: 5px double; }
.bdb_5-double {
border-bottom: 5px double; }
.bdl_5-double {
border-left: 5px double; }
.bd_6-double {
border: 6px double; }
.bdt_6-double {
border-top: 6px double; }
.bdr_6-double {
border-right: 6px double; }
.bdb_6-double {
border-bottom: 6px double; }
.bdl_6-double {
border-left: 6px double; }
.bd_7-double {
border: 7px double; }
.bdt_7-double {
border-top: 7px double; }
.bdr_7-double {
border-right: 7px double; }
.bdb_7-double {
border-bottom: 7px double; }
.bdl_7-double {
border-left: 7px double; }
.bd_8-double {
border: 8px double; }
.bdt_8-double {
border-top: 8px double; }
.bdr_8-double {
border-right: 8px double; }
.bdb_8-double {
border-bottom: 8px double; }
.bdl_8-double {
border-left: 8px double; }
.bd_9-double {
border: 9px double; }
.bdt_9-double {
border-top: 9px double; }
.bdr_9-double {
border-right: 9px double; }
.bdb_9-double {
border-bottom: 9px double; }
.bdl_9-double {
border-left: 9px double; }
.bd_10-double {
border: 10px double; }
.bdt_10-double {
border-top: 10px double; }
.bdr_10-double {
border-right: 10px double; }
.bdb_10-double {
border-bottom: 10px double; }
.bdl_10-double {
border-left: 10px double; }
.bd-n {
border: none; }
.bdts-n {
border-top-style: none; }
.bdrs-n {
border-right-style: none; }
.bdbs-n {
border-bottom-style: none; }
.bdls-n {
border-left-style: none; }
.olo0 {
outline-offset: 0px; }
.olw0 {
outline-width: 0px; }
.z0 {
z-index: 0; }
.olo1 {
outline-offset: 1px; }
.olw1 {
outline-width: 1px; }
.z1 {
z-index: 1; }
.olo2 {
outline-offset: 2px; }
.olw2 {
outline-width: 2px; }
.z2 {
z-index: 2; }
.olo3 {
outline-offset: 3px; }
.olw3 {
outline-width: 3px; }
.z3 {
z-index: 3; }
.olo4 {
outline-offset: 4px; }
.olw4 {
outline-width: 4px; }
.z4 {
z-index: 4; }
.olo5 {
outline-offset: 5px; }
.olw5 {
outline-width: 5px; }
.z5 {
z-index: 5; }
.olo6 {
outline-offset: 6px; }
.olw6 {
outline-width: 6px; }
.z6 {
z-index: 6; }
.olo7 {
outline-offset: 7px; }
.olw7 {
outline-width: 7px; }
.z7 {
z-index: 7; }
.olo8 {
outline-offset: 8px; }
.olw8 {
outline-width: 8px; }
.z8 {
z-index: 8; }
.olo9 {
outline-offset: 9px; }
.olw9 {
outline-width: 9px; }
.z9 {
z-index: 9; }
.olo10 {
outline-offset: 10px; }
.olw10 {
outline-width: 10px; }
.z10 {
z-index: 10; }
.lh100p {
line-height: 100%; }
.lh110p {
line-height: 110%; }
.lh120p {
line-height: 120%; }
.lh130p {
line-height: 130%; }
.lh140p {
line-height: 140%; }
.lh150p {
line-height: 150%; }
.lh160p {
line-height: 160%; }
.lh170p {
line-height: 170%; }
.lh180p {
line-height: 180%; }
.lh190p {
line-height: 190%; }
.lh200p {
line-height: 200%; }
.lh210p {
line-height: 210%; }
.lh220p {
line-height: 220%; }
.lh230p {
line-height: 230%; }
.lh240p {
line-height: 240%; }
.lh250p {
line-height: 250%; }
.lh260p {
line-height: 260%; }
.lh270p {
line-height: 270%; }
.lh280p {
line-height: 280%; }
.lh290p {
line-height: 290%; }
.lh300p {
line-height: 300%; }
.lh310p {
line-height: 310%; }
.lh320p {
line-height: 320%; }
.lh330p {
line-height: 330%; }
.lh340p {
line-height: 340%; }
.lh350p {
line-height: 350%; }
.lh360p {
line-height: 360%; }
.lh370p {
line-height: 370%; }
.lh380p {
line-height: 380%; }
.lh390p {
line-height: 390%; }
.lh400p {
line-height: 400%; }
.lh410p {
line-height: 410%; }
.lh420p {
line-height: 420%; }
.lh430p {
line-height: 430%; }
.lh440p {
line-height: 440%; }
.lh450p {
line-height: 450%; }
.lh460p {
line-height: 460%; }
.lh470p {
line-height: 470%; }
.lh480p {
line-height: 480%; }
.lh490p {
line-height: 490%; }
.lh500p {
line-height: 500%; }
.lh510p {
line-height: 510%; }
.lh520p {
line-height: 520%; }
.lh530p {
line-height: 530%; }
.lh540p {
line-height: 540%; }
.lh550p {
line-height: 550%; }
.lh560p {
line-height: 560%; }
.lh570p {
line-height: 570%; }
.lh580p {
line-height: 580%; }
.lh590p {
line-height: 590%; }
.lh600p {
line-height: 600%; }
.lh610p {
line-height: 610%; }
.lh620p {
line-height: 620%; }
.lh630p {
line-height: 630%; }
.lh640p {
line-height: 640%; }
.lh650p {
line-height: 650%; }
.lh660p {
line-height: 660%; }
.lh670p {
line-height: 670%; }
.lh680p {
line-height: 680%; }
.lh690p {
line-height: 690%; }
.lh700p {
line-height: 700%; }
.lh710p {
line-height: 710%; }
.lh720p {
line-height: 720%; }
.lh730p {
line-height: 730%; }
.lh740p {
line-height: 740%; }
.lh750p {
line-height: 750%; }
.lh760p {
line-height: 760%; }
.lh770p {
line-height: 770%; }
.lh780p {
line-height: 780%; }
.lh790p {
line-height: 790%; }
.lh800p {
line-height: 800%; }
.lh810p {
line-height: 810%; }
.lh820p {
line-height: 820%; }
.lh830p {
line-height: 830%; }
.lh840p {
line-height: 840%; }
.lh850p {
line-height: 850%; }
.lh860p {
line-height: 860%; }
.lh870p {
line-height: 870%; }
.lh880p {
line-height: 880%; }
.lh890p {
line-height: 890%; }
.lh900p {
line-height: 900%; }
.lh910p {
line-height: 910%; }
.lh920p {
line-height: 920%; }
.lh930p {
line-height: 930%; }
.lh940p {
line-height: 940%; }
.lh950p {
line-height: 950%; }
.lh960p {
line-height: 960%; }
.lh970p {
line-height: 970%; }
.lh980p {
line-height: 980%; }
.lh990p {
line-height: 990%; }
.lh1000p {
line-height: 1000%; }
.w0p {
width: 0%; }
.w1p {
width: 1%; }
.w2p {
width: 2%; }
.w3p {
width: 3%; }
.w4p {
width: 4%; }
.w5p {
width: 5%; }
.w6p {
width: 6%; }
.w7p {
width: 7%; }
.w8p {
width: 8%; }
.w9p {
width: 9%; }
.w10p {
width: 10%; }
.w11p {
width: 11%; }
.w12p {
width: 12%; }
.w13p {
width: 13%; }
.w14p {
width: 14%; }
.w15p {
width: 15%; }
.w16p {
width: 16%; }
.w17p {
width: 17%; }
.w18p {
width: 18%; }
.w19p {
width: 19%; }
.w20p {
width: 20%; }
.w21p {
width: 21%; }
.w22p {
width: 22%; }
.w23p {
width: 23%; }
.w24p {
width: 24%; }
.w25p {
width: 25%; }
.w26p {
width: 26%; }
.w27p {
width: 27%; }
.w28p {
width: 28%; }
.w29p {
width: 29%; }
.w30p {
width: 30%; }
.w31p {
width: 31%; }
.w32p {
width: 32%; }
.w33p {
width: 33%; }
.w34p {
width: 34%; }
.w35p {
width: 35%; }
.w36p {
width: 36%; }
.w37p {
width: 37%; }
.w38p {
width: 38%; }
.w39p {
width: 39%; }
.w40p {
width: 40%; }
.w41p {
width: 41%; }
.w42p {
width: 42%; }
.w43p {
width: 43%; }
.w44p {
width: 44%; }
.w45p {
width: 45%; }
.w46p {
width: 46%; }
.w47p {
width: 47%; }
.w48p {
width: 48%; }
.w49p {
width: 49%; }
.w50p {
width: 50%; }
.w51p {
width: 51%; }
.w52p {
width: 52%; }
.w53p {
width: 53%; }
.w54p {
width: 54%; }
.w55p {
width: 55%; }
.w56p {
width: 56%; }
.w57p {
width: 57%; }
.w58p {
width: 58%; }
.w59p {
width: 59%; }
.w60p {
width: 60%; }
.w61p {
width: 61%; }
.w62p {
width: 62%; }
.w63p {
width: 63%; }
.w64p {
width: 64%; }
.w65p {
width: 65%; }
.w66p {
width: 66%; }
.w67p {
width: 67%; }
.w68p {
width: 68%; }
.w69p {
width: 69%; }
.w70p {
width: 70%; }
.w71p {
width: 71%; }
.w72p {
width: 72%; }
.w73p {
width: 73%; }
.w74p {
width: 74%; }
.w75p {
width: 75%; }
.w76p {
width: 76%; }
.w77p {
width: 77%; }
.w78p {
width: 78%; }
.w79p {
width: 79%; }
.w80p {
width: 80%; }
.w81p {
width: 81%; }
.w82p {
width: 82%; }
.w83p {
width: 83%; }
.w84p {
width: 84%; }
.w85p {
width: 85%; }
.w86p {
width: 86%; }
.w87p {
width: 87%; }
.w88p {
width: 88%; }
.w89p {
width: 89%; }
.w90p {
width: 90%; }
.w91p {
width: 91%; }
.w92p {
width: 92%; }
.w93p {
width: 93%; }
.w94p {
width: 94%; }
.w95p {
width: 95%; }
.w96p {
width: 96%; }
.w97p {
width: 97%; }
.w98p {
width: 98%; }
.w99p {
width: 99%; }
.w100p {
width: 100%; }
.bgp_50p0 {
background-position: 50% 0; }
.bgp_100p0 {
background-position: 100% 0; }
.bgp_0p50p {
background-position: 0 50%; }
.bgp_0p100p {
background-position: 0 100%; }
.bgp_50p50p {
background-position: 50% 50%; }
.bgp_50p100p {
background-position: 50% 100%; }
.bgp_100p50p {
background-position: 100% 50%; }
.bgp_100p100p {
background-position: 100% 100%; } | pc/new_1706hd/css/emmet-px.css | .v-h {
visibility: hidden; }
.v-v {
visibility: visible; }
.d-n {
display: none; }
.d-i {
display: inline; }
.d-b {
display: block; }
.d-ib {
display: inline-block; }
.d-f {
display: flex; }
.d-g {
display: grid; }
.d-li {
display: list-item; }
.d-t {
display: table; }
.d-itb {
display: inline-table; }
.d-bc {
display: table-cell; }
.d-tbcp {
display: table-caption; }
.d-tbr {
display: table-row; }
.d-tbrg {
display: table-row-group; }
.d-tbcl {
display: table-column; }
.d-tbclg {
display: table-column-group; }
.d-tbhg {
display: table-header-group; }
.d-tbfg {
display: table-footer-group; }
.fl-n {
float: none; }
.fl-l {
float: left; }
.fl-r {
float: right; }
.cl-n {
clear: none; }
.cl-l {
clear: left; }
.cl-r {
clear: right; }
.cl-b {
clear: both; }
.pos-s {
position: static; }
.pos-f {
position: fixed; }
.pos-r {
position: relative; }
.pos-a {
position: absolute; }
.fw-b {
font-weight: bold; }
.fw-n {
font-weight: normal; }
.fw-l {
font-weight: lighter; }
.fw-br {
font-weight: bolder; }
.fs-i {
font-style: italic; }
.fs-n {
font-style: normal; }
.va-t {
vertical-align: top; }
.va-m {
vertical-align: middle; }
.va-b {
vertical-align: bottom; }
.va-tb {
vertical-align: text-bottom; }
.va-tt {
vertical-align: text-top; }
.va-sp {
vertical-align: super; }
.va-sb {
vertical-align: sub; }
.tt-n {
text-transform: none; }
.tt-c {
text-transform: capitalize; }
.tt-u {
text-transform: uppercase; }
.tt-l {
text-transform: lowercase; }
.td-n {
text-decoration: none; }
.tt-o {
text-decoration: overline; }
.tt-l {
text-decoration: line-through; }
.tt-u {
text-decoration: underline; }
.ta-c {
text-align: center; }
.ta-l {
text-align: left; }
.ta-r {
text-align: right; }
.ta-j {
text-align: justify; }
.tal-c {
text-align-last: center; }
.tal-l {
text-align-last: left; }
.tal-r {
text-align-last: right; }
.tal-j {
text-align-last: justify; }
.bgr-n {
background-repeat: no-repeat; }
.bgr-x {
background-repeat: repeat-x; }
.bgr-y {
background-repeat: repeat-y; }
.bgr-r {
background-repeat: round; }
.bgr-s {
background-repeat: space; }
.bga-f {
background-attachment: fixed; }
.bgs-cv {
background-size: cover; }
.bgs-ct {
background-size: contain; }
.bgc-pd {
background-clip: padding-box; }
.bgc-bb {
background-clip: border-box; }
.bgc-cb {
background-clip: content-box; }
.bgo-pd {
background-origin: padding-box; }
.bgo-bb {
background-origin: border-box; }
.bgo-cb {
background-origin: content-box; }
.tbl-a {
table-layout: auto; }
.tbl-f {
table-layout: fixed; }
.cps-t {
caption-side: top; }
.cps-b {
caption-side: bottom; }
.ec-s {
empty-cells: show; }
.ec-h {
empty-cells: hide; }
.lst-n {
list-style-type: none; }
.lst-d {
list-style-type: disc; }
.lst-c {
list-style-type: circle; }
.lst-s {
list-style-type: square; }
.lst-u {
list-style-type: upper-roman; }
.lst-l {
list-style-type: lower-alpha; }
.lst-dc {
list-style-type: decimal; }
.cur-p {
cursor: pointer; }
.cur-t {
cursor: text; }
.cur-m {
cursor: move; }
.cur-c {
cursor: crosshair; }
.cur-h {
cursor: help; }
.cur-d {
cursor: default; }
.rsz-n {
resize: none; }
.rsz-b {
resize: both; }
.rsz-h {
resize: horizontal; }
.rsz-v {
resize: vertical; }
.bxz-cb {
box-sizing: content-box; }
.bxz-bb {
box-sizing: border-box; }
.ov-a {
overflow: auto; }
.ov-v {
overflow: visible; }
.ov-h {
overflow: hidden; }
.ov-s {
overflow: scroll; }
.ovx-a {
overflow-x: auto; }
.ovx-v {
overflow-x: visible; }
.ovx-h {
overflow-x: hidden; }
.ovx-s {
overflow-x: scroll; }
.ovy-a {
overflow-y: auto; }
.ovy-v {
overflow-y: visible; }
.ovy-h {
overflow-y: hidden; }
.ovy-s {
overflow-y: scroll; }
.bdcl-c {
border-collapse: collapse; }
.bdcl-s {
border-collapse: separate; }
.ols-n {
outline-style: none; }
.ols-dt {
outline-style: dotted; }
.ols-ds {
outline-style: dashed; }
.ols-sl {
outline-style: solid; }
.ols-du {
outline-style: double; }
.fz0 {
font-size: 0px; }
.ti0 {
text-indent: 0px; }
.bdsp0 {
border-spacing: 0px; }
.p0 {
padding: 0px; }
.pt0 {
padding-top: 0px; }
.pr0 {
padding-right: 0px; }
.pb0 {
padding-bottom: 0px; }
.pl0 {
padding-left: 0px; }
.m0 {
margin: 0px; }
.mt0 {
margin-top: 0px; }
.mr0 {
margin-right: 0px; }
.mb0 {
margin-bottom: 0px; }
.ml0 {
margin-left: 0px; }
.bdrs0 {
border-radius: 0px; }
.btrr0 {
border-top-right-radius: 0px; }
.btlr0 {
border-top-left-radius: 0px; }
.bbrr0 {
border-bottom-right-radius: 0px; }
.bblr0 {
border-bottom-left-radius: 0px; }
.fz1 {
font-size: 1px; }
.ti1 {
text-indent: 1px; }
.bdsp1 {
border-spacing: 1px; }
.p1 {
padding: 1px; }
.pt1 {
padding-top: 1px; }
.pr1 {
padding-right: 1px; }
.pb1 {
padding-bottom: 1px; }
.pl1 {
padding-left: 1px; }
.m1 {
margin: 1px; }
.mt1 {
margin-top: 1px; }
.mr1 {
margin-right: 1px; }
.mb1 {
margin-bottom: 1px; }
.ml1 {
margin-left: 1px; }
.bdrs1 {
border-radius: 1px; }
.btrr1 {
border-top-right-radius: 1px; }
.btlr1 {
border-top-left-radius: 1px; }
.bbrr1 {
border-bottom-right-radius: 1px; }
.bblr1 {
border-bottom-left-radius: 1px; }
.fz2 {
font-size: 2px; }
.ti2 {
text-indent: 2px; }
.bdsp2 {
border-spacing: 2px; }
.p2 {
padding: 2px; }
.pt2 {
padding-top: 2px; }
.pr2 {
padding-right: 2px; }
.pb2 {
padding-bottom: 2px; }
.pl2 {
padding-left: 2px; }
.m2 {
margin: 2px; }
.mt2 {
margin-top: 2px; }
.mr2 {
margin-right: 2px; }
.mb2 {
margin-bottom: 2px; }
.ml2 {
margin-left: 2px; }
.bdrs2 {
border-radius: 2px; }
.btrr2 {
border-top-right-radius: 2px; }
.btlr2 {
border-top-left-radius: 2px; }
.bbrr2 {
border-bottom-right-radius: 2px; }
.bblr2 {
border-bottom-left-radius: 2px; }
.fz3 {
font-size: 3px; }
.ti3 {
text-indent: 3px; }
.bdsp3 {
border-spacing: 3px; }
.p3 {
padding: 3px; }
.pt3 {
padding-top: 3px; }
.pr3 {
padding-right: 3px; }
.pb3 {
padding-bottom: 3px; }
.pl3 {
padding-left: 3px; }
.m3 {
margin: 3px; }
.mt3 {
margin-top: 3px; }
.mr3 {
margin-right: 3px; }
.mb3 {
margin-bottom: 3px; }
.ml3 {
margin-left: 3px; }
.bdrs3 {
border-radius: 3px; }
.btrr3 {
border-top-right-radius: 3px; }
.btlr3 {
border-top-left-radius: 3px; }
.bbrr3 {
border-bottom-right-radius: 3px; }
.bblr3 {
border-bottom-left-radius: 3px; }
.fz4 {
font-size: 4px; }
.ti4 {
text-indent: 4px; }
.bdsp4 {
border-spacing: 4px; }
.p4 {
padding: 4px; }
.pt4 {
padding-top: 4px; }
.pr4 {
padding-right: 4px; }
.pb4 {
padding-bottom: 4px; }
.pl4 {
padding-left: 4px; }
.m4 {
margin: 4px; }
.mt4 {
margin-top: 4px; }
.mr4 {
margin-right: 4px; }
.mb4 {
margin-bottom: 4px; }
.ml4 {
margin-left: 4px; }
.bdrs4 {
border-radius: 4px; }
.btrr4 {
border-top-right-radius: 4px; }
.btlr4 {
border-top-left-radius: 4px; }
.bbrr4 {
border-bottom-right-radius: 4px; }
.bblr4 {
border-bottom-left-radius: 4px; }
.fz5 {
font-size: 5px; }
.ti5 {
text-indent: 5px; }
.bdsp5 {
border-spacing: 5px; }
.p5 {
padding: 5px; }
.pt5 {
padding-top: 5px; }
.pr5 {
padding-right: 5px; }
.pb5 {
padding-bottom: 5px; }
.pl5 {
padding-left: 5px; }
.m5 {
margin: 5px; }
.mt5 {
margin-top: 5px; }
.mr5 {
margin-right: 5px; }
.mb5 {
margin-bottom: 5px; }
.ml5 {
margin-left: 5px; }
.bdrs5 {
border-radius: 5px; }
.btrr5 {
border-top-right-radius: 5px; }
.btlr5 {
border-top-left-radius: 5px; }
.bbrr5 {
border-bottom-right-radius: 5px; }
.bblr5 {
border-bottom-left-radius: 5px; }
.fz6 {
font-size: 6px; }
.ti6 {
text-indent: 6px; }
.bdsp6 {
border-spacing: 6px; }
.p6 {
padding: 6px; }
.pt6 {
padding-top: 6px; }
.pr6 {
padding-right: 6px; }
.pb6 {
padding-bottom: 6px; }
.pl6 {
padding-left: 6px; }
.m6 {
margin: 6px; }
.mt6 {
margin-top: 6px; }
.mr6 {
margin-right: 6px; }
.mb6 {
margin-bottom: 6px; }
.ml6 {
margin-left: 6px; }
.bdrs6 {
border-radius: 6px; }
.btrr6 {
border-top-right-radius: 6px; }
.btlr6 {
border-top-left-radius: 6px; }
.bbrr6 {
border-bottom-right-radius: 6px; }
.bblr6 {
border-bottom-left-radius: 6px; }
.fz7 {
font-size: 7px; }
.ti7 {
text-indent: 7px; }
.bdsp7 {
border-spacing: 7px; }
.p7 {
padding: 7px; }
.pt7 {
padding-top: 7px; }
.pr7 {
padding-right: 7px; }
.pb7 {
padding-bottom: 7px; }
.pl7 {
padding-left: 7px; }
.m7 {
margin: 7px; }
.mt7 {
margin-top: 7px; }
.mr7 {
margin-right: 7px; }
.mb7 {
margin-bottom: 7px; }
.ml7 {
margin-left: 7px; }
.bdrs7 {
border-radius: 7px; }
.btrr7 {
border-top-right-radius: 7px; }
.btlr7 {
border-top-left-radius: 7px; }
.bbrr7 {
border-bottom-right-radius: 7px; }
.bblr7 {
border-bottom-left-radius: 7px; }
.fz8 {
font-size: 8px; }
.ti8 {
text-indent: 8px; }
.bdsp8 {
border-spacing: 8px; }
.p8 {
padding: 8px; }
.pt8 {
padding-top: 8px; }
.pr8 {
padding-right: 8px; }
.pb8 {
padding-bottom: 8px; }
.pl8 {
padding-left: 8px; }
.m8 {
margin: 8px; }
.mt8 {
margin-top: 8px; }
.mr8 {
margin-right: 8px; }
.mb8 {
margin-bottom: 8px; }
.ml8 {
margin-left: 8px; }
.bdrs8 {
border-radius: 8px; }
.btrr8 {
border-top-right-radius: 8px; }
.btlr8 {
border-top-left-radius: 8px; }
.bbrr8 {
border-bottom-right-radius: 8px; }
.bblr8 {
border-bottom-left-radius: 8px; }
.fz9 {
font-size: 9px; }
.ti9 {
text-indent: 9px; }
.bdsp9 {
border-spacing: 9px; }
.p9 {
padding: 9px; }
.pt9 {
padding-top: 9px; }
.pr9 {
padding-right: 9px; }
.pb9 {
padding-bottom: 9px; }
.pl9 {
padding-left: 9px; }
.m9 {
margin: 9px; }
.mt9 {
margin-top: 9px; }
.mr9 {
margin-right: 9px; }
.mb9 {
margin-bottom: 9px; }
.ml9 {
margin-left: 9px; }
.bdrs9 {
border-radius: 9px; }
.btrr9 {
border-top-right-radius: 9px; }
.btlr9 {
border-top-left-radius: 9px; }
.bbrr9 {
border-bottom-right-radius: 9px; }
.bblr9 {
border-bottom-left-radius: 9px; }
.fz10 {
font-size: 10px; }
.ti10 {
text-indent: 10px; }
.bdsp10 {
border-spacing: 10px; }
.p10 {
padding: 10px; }
.pt10 {
padding-top: 10px; }
.pr10 {
padding-right: 10px; }
.pb10 {
padding-bottom: 10px; }
.pl10 {
padding-left: 10px; }
.m10 {
margin: 10px; }
.mt10 {
margin-top: 10px; }
.mr10 {
margin-right: 10px; }
.mb10 {
margin-bottom: 10px; }
.ml10 {
margin-left: 10px; }
.bdrs10 {
border-radius: 10px; }
.btrr10 {
border-top-right-radius: 10px; }
.btlr10 {
border-top-left-radius: 10px; }
.bbrr10 {
border-bottom-right-radius: 10px; }
.bblr10 {
border-bottom-left-radius: 10px; }
.fz11 {
font-size: 11px; }
.ti11 {
text-indent: 11px; }
.bdsp11 {
border-spacing: 11px; }
.p11 {
padding: 11px; }
.pt11 {
padding-top: 11px; }
.pr11 {
padding-right: 11px; }
.pb11 {
padding-bottom: 11px; }
.pl11 {
padding-left: 11px; }
.m11 {
margin: 11px; }
.mt11 {
margin-top: 11px; }
.mr11 {
margin-right: 11px; }
.mb11 {
margin-bottom: 11px; }
.ml11 {
margin-left: 11px; }
.bdrs11 {
border-radius: 11px; }
.btrr11 {
border-top-right-radius: 11px; }
.btlr11 {
border-top-left-radius: 11px; }
.bbrr11 {
border-bottom-right-radius: 11px; }
.bblr11 {
border-bottom-left-radius: 11px; }
.fz12 {
font-size: 12px; }
.ti12 {
text-indent: 12px; }
.bdsp12 {
border-spacing: 12px; }
.p12 {
padding: 12px; }
.pt12 {
padding-top: 12px; }
.pr12 {
padding-right: 12px; }
.pb12 {
padding-bottom: 12px; }
.pl12 {
padding-left: 12px; }
.m12 {
margin: 12px; }
.mt12 {
margin-top: 12px; }
.mr12 {
margin-right: 12px; }
.mb12 {
margin-bottom: 12px; }
.ml12 {
margin-left: 12px; }
.bdrs12 {
border-radius: 12px; }
.btrr12 {
border-top-right-radius: 12px; }
.btlr12 {
border-top-left-radius: 12px; }
.bbrr12 {
border-bottom-right-radius: 12px; }
.bblr12 {
border-bottom-left-radius: 12px; }
.fz13 {
font-size: 13px; }
.ti13 {
text-indent: 13px; }
.bdsp13 {
border-spacing: 13px; }
.p13 {
padding: 13px; }
.pt13 {
padding-top: 13px; }
.pr13 {
padding-right: 13px; }
.pb13 {
padding-bottom: 13px; }
.pl13 {
padding-left: 13px; }
.m13 {
margin: 13px; }
.mt13 {
margin-top: 13px; }
.mr13 {
margin-right: 13px; }
.mb13 {
margin-bottom: 13px; }
.ml13 {
margin-left: 13px; }
.bdrs13 {
border-radius: 13px; }
.btrr13 {
border-top-right-radius: 13px; }
.btlr13 {
border-top-left-radius: 13px; }
.bbrr13 {
border-bottom-right-radius: 13px; }
.bblr13 {
border-bottom-left-radius: 13px; }
.fz14 {
font-size: 14px; }
.ti14 {
text-indent: 14px; }
.bdsp14 {
border-spacing: 14px; }
.p14 {
padding: 14px; }
.pt14 {
padding-top: 14px; }
.pr14 {
padding-right: 14px; }
.pb14 {
padding-bottom: 14px; }
.pl14 {
padding-left: 14px; }
.m14 {
margin: 14px; }
.mt14 {
margin-top: 14px; }
.mr14 {
margin-right: 14px; }
.mb14 {
margin-bottom: 14px; }
.ml14 {
margin-left: 14px; }
.bdrs14 {
border-radius: 14px; }
.btrr14 {
border-top-right-radius: 14px; }
.btlr14 {
border-top-left-radius: 14px; }
.bbrr14 {
border-bottom-right-radius: 14px; }
.bblr14 {
border-bottom-left-radius: 14px; }
.fz15 {
font-size: 15px; }
.ti15 {
text-indent: 15px; }
.bdsp15 {
border-spacing: 15px; }
.p15 {
padding: 15px; }
.pt15 {
padding-top: 15px; }
.pr15 {
padding-right: 15px; }
.pb15 {
padding-bottom: 15px; }
.pl15 {
padding-left: 15px; }
.m15 {
margin: 15px; }
.mt15 {
margin-top: 15px; }
.mr15 {
margin-right: 15px; }
.mb15 {
margin-bottom: 15px; }
.ml15 {
margin-left: 15px; }
.bdrs15 {
border-radius: 15px; }
.btrr15 {
border-top-right-radius: 15px; }
.btlr15 {
border-top-left-radius: 15px; }
.bbrr15 {
border-bottom-right-radius: 15px; }
.bblr15 {
border-bottom-left-radius: 15px; }
.fz16 {
font-size: 16px; }
.ti16 {
text-indent: 16px; }
.bdsp16 {
border-spacing: 16px; }
.p16 {
padding: 16px; }
.pt16 {
padding-top: 16px; }
.pr16 {
padding-right: 16px; }
.pb16 {
padding-bottom: 16px; }
.pl16 {
padding-left: 16px; }
.m16 {
margin: 16px; }
.mt16 {
margin-top: 16px; }
.mr16 {
margin-right: 16px; }
.mb16 {
margin-bottom: 16px; }
.ml16 {
margin-left: 16px; }
.bdrs16 {
border-radius: 16px; }
.btrr16 {
border-top-right-radius: 16px; }
.btlr16 {
border-top-left-radius: 16px; }
.bbrr16 {
border-bottom-right-radius: 16px; }
.bblr16 {
border-bottom-left-radius: 16px; }
.fz17 {
font-size: 17px; }
.ti17 {
text-indent: 17px; }
.bdsp17 {
border-spacing: 17px; }
.p17 {
padding: 17px; }
.pt17 {
padding-top: 17px; }
.pr17 {
padding-right: 17px; }
.pb17 {
padding-bottom: 17px; }
.pl17 {
padding-left: 17px; }
.m17 {
margin: 17px; }
.mt17 {
margin-top: 17px; }
.mr17 {
margin-right: 17px; }
.mb17 {
margin-bottom: 17px; }
.ml17 {
margin-left: 17px; }
.bdrs17 {
border-radius: 17px; }
.btrr17 {
border-top-right-radius: 17px; }
.btlr17 {
border-top-left-radius: 17px; }
.bbrr17 {
border-bottom-right-radius: 17px; }
.bblr17 {
border-bottom-left-radius: 17px; }
.fz18 {
font-size: 18px; }
.ti18 {
text-indent: 18px; }
.bdsp18 {
border-spacing: 18px; }
.p18 {
padding: 18px; }
.pt18 {
padding-top: 18px; }
.pr18 {
padding-right: 18px; }
.pb18 {
padding-bottom: 18px; }
.pl18 {
padding-left: 18px; }
.m18 {
margin: 18px; }
.mt18 {
margin-top: 18px; }
.mr18 {
margin-right: 18px; }
.mb18 {
margin-bottom: 18px; }
.ml18 {
margin-left: 18px; }
.bdrs18 {
border-radius: 18px; }
.btrr18 {
border-top-right-radius: 18px; }
.btlr18 {
border-top-left-radius: 18px; }
.bbrr18 {
border-bottom-right-radius: 18px; }
.bblr18 {
border-bottom-left-radius: 18px; }
.fz19 {
font-size: 19px; }
.ti19 {
text-indent: 19px; }
.bdsp19 {
border-spacing: 19px; }
.p19 {
padding: 19px; }
.pt19 {
padding-top: 19px; }
.pr19 {
padding-right: 19px; }
.pb19 {
padding-bottom: 19px; }
.pl19 {
padding-left: 19px; }
.m19 {
margin: 19px; }
.mt19 {
margin-top: 19px; }
.mr19 {
margin-right: 19px; }
.mb19 {
margin-bottom: 19px; }
.ml19 {
margin-left: 19px; }
.bdrs19 {
border-radius: 19px; }
.btrr19 {
border-top-right-radius: 19px; }
.btlr19 {
border-top-left-radius: 19px; }
.bbrr19 {
border-bottom-right-radius: 19px; }
.bblr19 {
border-bottom-left-radius: 19px; }
.fz20 {
font-size: 20px; }
.ti20 {
text-indent: 20px; }
.bdsp20 {
border-spacing: 20px; }
.p20 {
padding: 20px; }
.pt20 {
padding-top: 20px; }
.pr20 {
padding-right: 20px; }
.pb20 {
padding-bottom: 20px; }
.pl20 {
padding-left: 20px; }
.m20 {
margin: 20px; }
.mt20 {
margin-top: 20px; }
.mr20 {
margin-right: 20px; }
.mb20 {
margin-bottom: 20px; }
.ml20 {
margin-left: 20px; }
.bdrs20 {
border-radius: 20px; }
.btrr20 {
border-top-right-radius: 20px; }
.btlr20 {
border-top-left-radius: 20px; }
.bbrr20 {
border-bottom-right-radius: 20px; }
.bblr20 {
border-bottom-left-radius: 20px; }
.fz21 {
font-size: 21px; }
.ti21 {
text-indent: 21px; }
.bdsp21 {
border-spacing: 21px; }
.p21 {
padding: 21px; }
.pt21 {
padding-top: 21px; }
.pr21 {
padding-right: 21px; }
.pb21 {
padding-bottom: 21px; }
.pl21 {
padding-left: 21px; }
.m21 {
margin: 21px; }
.mt21 {
margin-top: 21px; }
.mr21 {
margin-right: 21px; }
.mb21 {
margin-bottom: 21px; }
.ml21 {
margin-left: 21px; }
.bdrs21 {
border-radius: 21px; }
.btrr21 {
border-top-right-radius: 21px; }
.btlr21 {
border-top-left-radius: 21px; }
.bbrr21 {
border-bottom-right-radius: 21px; }
.bblr21 {
border-bottom-left-radius: 21px; }
.fz22 {
font-size: 22px; }
.ti22 {
text-indent: 22px; }
.bdsp22 {
border-spacing: 22px; }
.p22 {
padding: 22px; }
.pt22 {
padding-top: 22px; }
.pr22 {
padding-right: 22px; }
.pb22 {
padding-bottom: 22px; }
.pl22 {
padding-left: 22px; }
.m22 {
margin: 22px; }
.mt22 {
margin-top: 22px; }
.mr22 {
margin-right: 22px; }
.mb22 {
margin-bottom: 22px; }
.ml22 {
margin-left: 22px; }
.bdrs22 {
border-radius: 22px; }
.btrr22 {
border-top-right-radius: 22px; }
.btlr22 {
border-top-left-radius: 22px; }
.bbrr22 {
border-bottom-right-radius: 22px; }
.bblr22 {
border-bottom-left-radius: 22px; }
.fz23 {
font-size: 23px; }
.ti23 {
text-indent: 23px; }
.bdsp23 {
border-spacing: 23px; }
.p23 {
padding: 23px; }
.pt23 {
padding-top: 23px; }
.pr23 {
padding-right: 23px; }
.pb23 {
padding-bottom: 23px; }
.pl23 {
padding-left: 23px; }
.m23 {
margin: 23px; }
.mt23 {
margin-top: 23px; }
.mr23 {
margin-right: 23px; }
.mb23 {
margin-bottom: 23px; }
.ml23 {
margin-left: 23px; }
.bdrs23 {
border-radius: 23px; }
.btrr23 {
border-top-right-radius: 23px; }
.btlr23 {
border-top-left-radius: 23px; }
.bbrr23 {
border-bottom-right-radius: 23px; }
.bblr23 {
border-bottom-left-radius: 23px; }
.fz24 {
font-size: 24px; }
.ti24 {
text-indent: 24px; }
.bdsp24 {
border-spacing: 24px; }
.p24 {
padding: 24px; }
.pt24 {
padding-top: 24px; }
.pr24 {
padding-right: 24px; }
.pb24 {
padding-bottom: 24px; }
.pl24 {
padding-left: 24px; }
.m24 {
margin: 24px; }
.mt24 {
margin-top: 24px; }
.mr24 {
margin-right: 24px; }
.mb24 {
margin-bottom: 24px; }
.ml24 {
margin-left: 24px; }
.bdrs24 {
border-radius: 24px; }
.btrr24 {
border-top-right-radius: 24px; }
.btlr24 {
border-top-left-radius: 24px; }
.bbrr24 {
border-bottom-right-radius: 24px; }
.bblr24 {
border-bottom-left-radius: 24px; }
.fz25 {
font-size: 25px; }
.ti25 {
text-indent: 25px; }
.bdsp25 {
border-spacing: 25px; }
.p25 {
padding: 25px; }
.pt25 {
padding-top: 25px; }
.pr25 {
padding-right: 25px; }
.pb25 {
padding-bottom: 25px; }
.pl25 {
padding-left: 25px; }
.m25 {
margin: 25px; }
.mt25 {
margin-top: 25px; }
.mr25 {
margin-right: 25px; }
.mb25 {
margin-bottom: 25px; }
.ml25 {
margin-left: 25px; }
.bdrs25 {
border-radius: 25px; }
.btrr25 {
border-top-right-radius: 25px; }
.btlr25 {
border-top-left-radius: 25px; }
.bbrr25 {
border-bottom-right-radius: 25px; }
.bblr25 {
border-bottom-left-radius: 25px; }
.fz26 {
font-size: 26px; }
.ti26 {
text-indent: 26px; }
.bdsp26 {
border-spacing: 26px; }
.p26 {
padding: 26px; }
.pt26 {
padding-top: 26px; }
.pr26 {
padding-right: 26px; }
.pb26 {
padding-bottom: 26px; }
.pl26 {
padding-left: 26px; }
.m26 {
margin: 26px; }
.mt26 {
margin-top: 26px; }
.mr26 {
margin-right: 26px; }
.mb26 {
margin-bottom: 26px; }
.ml26 {
margin-left: 26px; }
.bdrs26 {
border-radius: 26px; }
.btrr26 {
border-top-right-radius: 26px; }
.btlr26 {
border-top-left-radius: 26px; }
.bbrr26 {
border-bottom-right-radius: 26px; }
.bblr26 {
border-bottom-left-radius: 26px; }
.fz27 {
font-size: 27px; }
.ti27 {
text-indent: 27px; }
.bdsp27 {
border-spacing: 27px; }
.p27 {
padding: 27px; }
.pt27 {
padding-top: 27px; }
.pr27 {
padding-right: 27px; }
.pb27 {
padding-bottom: 27px; }
.pl27 {
padding-left: 27px; }
.m27 {
margin: 27px; }
.mt27 {
margin-top: 27px; }
.mr27 {
margin-right: 27px; }
.mb27 {
margin-bottom: 27px; }
.ml27 {
margin-left: 27px; }
.bdrs27 {
border-radius: 27px; }
.btrr27 {
border-top-right-radius: 27px; }
.btlr27 {
border-top-left-radius: 27px; }
.bbrr27 {
border-bottom-right-radius: 27px; }
.bblr27 {
border-bottom-left-radius: 27px; }
.fz28 {
font-size: 28px; }
.ti28 {
text-indent: 28px; }
.bdsp28 {
border-spacing: 28px; }
.p28 {
padding: 28px; }
.pt28 {
padding-top: 28px; }
.pr28 {
padding-right: 28px; }
.pb28 {
padding-bottom: 28px; }
.pl28 {
padding-left: 28px; }
.m28 {
margin: 28px; }
.mt28 {
margin-top: 28px; }
.mr28 {
margin-right: 28px; }
.mb28 {
margin-bottom: 28px; }
.ml28 {
margin-left: 28px; }
.bdrs28 {
border-radius: 28px; }
.btrr28 {
border-top-right-radius: 28px; }
.btlr28 {
border-top-left-radius: 28px; }
.bbrr28 {
border-bottom-right-radius: 28px; }
.bblr28 {
border-bottom-left-radius: 28px; }
.fz29 {
font-size: 29px; }
.ti29 {
text-indent: 29px; }
.bdsp29 {
border-spacing: 29px; }
.p29 {
padding: 29px; }
.pt29 {
padding-top: 29px; }
.pr29 {
padding-right: 29px; }
.pb29 {
padding-bottom: 29px; }
.pl29 {
padding-left: 29px; }
.m29 {
margin: 29px; }
.mt29 {
margin-top: 29px; }
.mr29 {
margin-right: 29px; }
.mb29 {
margin-bottom: 29px; }
.ml29 {
margin-left: 29px; }
.bdrs29 {
border-radius: 29px; }
.btrr29 {
border-top-right-radius: 29px; }
.btlr29 {
border-top-left-radius: 29px; }
.bbrr29 {
border-bottom-right-radius: 29px; }
.bblr29 {
border-bottom-left-radius: 29px; }
.fz30 {
font-size: 30px; }
.ti30 {
text-indent: 30px; }
.bdsp30 {
border-spacing: 30px; }
.p30 {
padding: 30px; }
.pt30 {
padding-top: 30px; }
.pr30 {
padding-right: 30px; }
.pb30 {
padding-bottom: 30px; }
.pl30 {
padding-left: 30px; }
.m30 {
margin: 30px; }
.mt30 {
margin-top: 30px; }
.mr30 {
margin-right: 30px; }
.mb30 {
margin-bottom: 30px; }
.ml30 {
margin-left: 30px; }
.bdrs30 {
border-radius: 30px; }
.btrr30 {
border-top-right-radius: 30px; }
.btlr30 {
border-top-left-radius: 30px; }
.bbrr30 {
border-bottom-right-radius: 30px; }
.bblr30 {
border-bottom-left-radius: 30px; }
.fz31 {
font-size: 31px; }
.ti31 {
text-indent: 31px; }
.bdsp31 {
border-spacing: 31px; }
.p31 {
padding: 31px; }
.pt31 {
padding-top: 31px; }
.pr31 {
padding-right: 31px; }
.pb31 {
padding-bottom: 31px; }
.pl31 {
padding-left: 31px; }
.m31 {
margin: 31px; }
.mt31 {
margin-top: 31px; }
.mr31 {
margin-right: 31px; }
.mb31 {
margin-bottom: 31px; }
.ml31 {
margin-left: 31px; }
.bdrs31 {
border-radius: 31px; }
.btrr31 {
border-top-right-radius: 31px; }
.btlr31 {
border-top-left-radius: 31px; }
.bbrr31 {
border-bottom-right-radius: 31px; }
.bblr31 {
border-bottom-left-radius: 31px; }
.fz32 {
font-size: 32px; }
.ti32 {
text-indent: 32px; }
.bdsp32 {
border-spacing: 32px; }
.p32 {
padding: 32px; }
.pt32 {
padding-top: 32px; }
.pr32 {
padding-right: 32px; }
.pb32 {
padding-bottom: 32px; }
.pl32 {
padding-left: 32px; }
.m32 {
margin: 32px; }
.mt32 {
margin-top: 32px; }
.mr32 {
margin-right: 32px; }
.mb32 {
margin-bottom: 32px; }
.ml32 {
margin-left: 32px; }
.bdrs32 {
border-radius: 32px; }
.btrr32 {
border-top-right-radius: 32px; }
.btlr32 {
border-top-left-radius: 32px; }
.bbrr32 {
border-bottom-right-radius: 32px; }
.bblr32 {
border-bottom-left-radius: 32px; }
.fz33 {
font-size: 33px; }
.ti33 {
text-indent: 33px; }
.bdsp33 {
border-spacing: 33px; }
.p33 {
padding: 33px; }
.pt33 {
padding-top: 33px; }
.pr33 {
padding-right: 33px; }
.pb33 {
padding-bottom: 33px; }
.pl33 {
padding-left: 33px; }
.m33 {
margin: 33px; }
.mt33 {
margin-top: 33px; }
.mr33 {
margin-right: 33px; }
.mb33 {
margin-bottom: 33px; }
.ml33 {
margin-left: 33px; }
.bdrs33 {
border-radius: 33px; }
.btrr33 {
border-top-right-radius: 33px; }
.btlr33 {
border-top-left-radius: 33px; }
.bbrr33 {
border-bottom-right-radius: 33px; }
.bblr33 {
border-bottom-left-radius: 33px; }
.fz34 {
font-size: 34px; }
.ti34 {
text-indent: 34px; }
.bdsp34 {
border-spacing: 34px; }
.p34 {
padding: 34px; }
.pt34 {
padding-top: 34px; }
.pr34 {
padding-right: 34px; }
.pb34 {
padding-bottom: 34px; }
.pl34 {
padding-left: 34px; }
.m34 {
margin: 34px; }
.mt34 {
margin-top: 34px; }
.mr34 {
margin-right: 34px; }
.mb34 {
margin-bottom: 34px; }
.ml34 {
margin-left: 34px; }
.bdrs34 {
border-radius: 34px; }
.btrr34 {
border-top-right-radius: 34px; }
.btlr34 {
border-top-left-radius: 34px; }
.bbrr34 {
border-bottom-right-radius: 34px; }
.bblr34 {
border-bottom-left-radius: 34px; }
.fz35 {
font-size: 35px; }
.ti35 {
text-indent: 35px; }
.bdsp35 {
border-spacing: 35px; }
.p35 {
padding: 35px; }
.pt35 {
padding-top: 35px; }
.pr35 {
padding-right: 35px; }
.pb35 {
padding-bottom: 35px; }
.pl35 {
padding-left: 35px; }
.m35 {
margin: 35px; }
.mt35 {
margin-top: 35px; }
.mr35 {
margin-right: 35px; }
.mb35 {
margin-bottom: 35px; }
.ml35 {
margin-left: 35px; }
.bdrs35 {
border-radius: 35px; }
.btrr35 {
border-top-right-radius: 35px; }
.btlr35 {
border-top-left-radius: 35px; }
.bbrr35 {
border-bottom-right-radius: 35px; }
.bblr35 {
border-bottom-left-radius: 35px; }
.fz36 {
font-size: 36px; }
.ti36 {
text-indent: 36px; }
.bdsp36 {
border-spacing: 36px; }
.p36 {
padding: 36px; }
.pt36 {
padding-top: 36px; }
.pr36 {
padding-right: 36px; }
.pb36 {
padding-bottom: 36px; }
.pl36 {
padding-left: 36px; }
.m36 {
margin: 36px; }
.mt36 {
margin-top: 36px; }
.mr36 {
margin-right: 36px; }
.mb36 {
margin-bottom: 36px; }
.ml36 {
margin-left: 36px; }
.bdrs36 {
border-radius: 36px; }
.btrr36 {
border-top-right-radius: 36px; }
.btlr36 {
border-top-left-radius: 36px; }
.bbrr36 {
border-bottom-right-radius: 36px; }
.bblr36 {
border-bottom-left-radius: 36px; }
.fz37 {
font-size: 37px; }
.ti37 {
text-indent: 37px; }
.bdsp37 {
border-spacing: 37px; }
.p37 {
padding: 37px; }
.pt37 {
padding-top: 37px; }
.pr37 {
padding-right: 37px; }
.pb37 {
padding-bottom: 37px; }
.pl37 {
padding-left: 37px; }
.m37 {
margin: 37px; }
.mt37 {
margin-top: 37px; }
.mr37 {
margin-right: 37px; }
.mb37 {
margin-bottom: 37px; }
.ml37 {
margin-left: 37px; }
.bdrs37 {
border-radius: 37px; }
.btrr37 {
border-top-right-radius: 37px; }
.btlr37 {
border-top-left-radius: 37px; }
.bbrr37 {
border-bottom-right-radius: 37px; }
.bblr37 {
border-bottom-left-radius: 37px; }
.fz38 {
font-size: 38px; }
.ti38 {
text-indent: 38px; }
.bdsp38 {
border-spacing: 38px; }
.p38 {
padding: 38px; }
.pt38 {
padding-top: 38px; }
.pr38 {
padding-right: 38px; }
.pb38 {
padding-bottom: 38px; }
.pl38 {
padding-left: 38px; }
.m38 {
margin: 38px; }
.mt38 {
margin-top: 38px; }
.mr38 {
margin-right: 38px; }
.mb38 {
margin-bottom: 38px; }
.ml38 {
margin-left: 38px; }
.bdrs38 {
border-radius: 38px; }
.btrr38 {
border-top-right-radius: 38px; }
.btlr38 {
border-top-left-radius: 38px; }
.bbrr38 {
border-bottom-right-radius: 38px; }
.bblr38 {
border-bottom-left-radius: 38px; }
.fz39 {
font-size: 39px; }
.ti39 {
text-indent: 39px; }
.bdsp39 {
border-spacing: 39px; }
.p39 {
padding: 39px; }
.pt39 {
padding-top: 39px; }
.pr39 {
padding-right: 39px; }
.pb39 {
padding-bottom: 39px; }
.pl39 {
padding-left: 39px; }
.m39 {
margin: 39px; }
.mt39 {
margin-top: 39px; }
.mr39 {
margin-right: 39px; }
.mb39 {
margin-bottom: 39px; }
.ml39 {
margin-left: 39px; }
.bdrs39 {
border-radius: 39px; }
.btrr39 {
border-top-right-radius: 39px; }
.btlr39 {
border-top-left-radius: 39px; }
.bbrr39 {
border-bottom-right-radius: 39px; }
.bblr39 {
border-bottom-left-radius: 39px; }
.fz40 {
font-size: 40px; }
.ti40 {
text-indent: 40px; }
.bdsp40 {
border-spacing: 40px; }
.p40 {
padding: 40px; }
.pt40 {
padding-top: 40px; }
.pr40 {
padding-right: 40px; }
.pb40 {
padding-bottom: 40px; }
.pl40 {
padding-left: 40px; }
.m40 {
margin: 40px; }
.mt40 {
margin-top: 40px; }
.mr40 {
margin-right: 40px; }
.mb40 {
margin-bottom: 40px; }
.ml40 {
margin-left: 40px; }
.bdrs40 {
border-radius: 40px; }
.btrr40 {
border-top-right-radius: 40px; }
.btlr40 {
border-top-left-radius: 40px; }
.bbrr40 {
border-bottom-right-radius: 40px; }
.bblr40 {
border-bottom-left-radius: 40px; }
.fz41 {
font-size: 41px; }
.ti41 {
text-indent: 41px; }
.bdsp41 {
border-spacing: 41px; }
.p41 {
padding: 41px; }
.pt41 {
padding-top: 41px; }
.pr41 {
padding-right: 41px; }
.pb41 {
padding-bottom: 41px; }
.pl41 {
padding-left: 41px; }
.m41 {
margin: 41px; }
.mt41 {
margin-top: 41px; }
.mr41 {
margin-right: 41px; }
.mb41 {
margin-bottom: 41px; }
.ml41 {
margin-left: 41px; }
.bdrs41 {
border-radius: 41px; }
.btrr41 {
border-top-right-radius: 41px; }
.btlr41 {
border-top-left-radius: 41px; }
.bbrr41 {
border-bottom-right-radius: 41px; }
.bblr41 {
border-bottom-left-radius: 41px; }
.fz42 {
font-size: 42px; }
.ti42 {
text-indent: 42px; }
.bdsp42 {
border-spacing: 42px; }
.p42 {
padding: 42px; }
.pt42 {
padding-top: 42px; }
.pr42 {
padding-right: 42px; }
.pb42 {
padding-bottom: 42px; }
.pl42 {
padding-left: 42px; }
.m42 {
margin: 42px; }
.mt42 {
margin-top: 42px; }
.mr42 {
margin-right: 42px; }
.mb42 {
margin-bottom: 42px; }
.ml42 {
margin-left: 42px; }
.bdrs42 {
border-radius: 42px; }
.btrr42 {
border-top-right-radius: 42px; }
.btlr42 {
border-top-left-radius: 42px; }
.bbrr42 {
border-bottom-right-radius: 42px; }
.bblr42 {
border-bottom-left-radius: 42px; }
.fz43 {
font-size: 43px; }
.ti43 {
text-indent: 43px; }
.bdsp43 {
border-spacing: 43px; }
.p43 {
padding: 43px; }
.pt43 {
padding-top: 43px; }
.pr43 {
padding-right: 43px; }
.pb43 {
padding-bottom: 43px; }
.pl43 {
padding-left: 43px; }
.m43 {
margin: 43px; }
.mt43 {
margin-top: 43px; }
.mr43 {
margin-right: 43px; }
.mb43 {
margin-bottom: 43px; }
.ml43 {
margin-left: 43px; }
.bdrs43 {
border-radius: 43px; }
.btrr43 {
border-top-right-radius: 43px; }
.btlr43 {
border-top-left-radius: 43px; }
.bbrr43 {
border-bottom-right-radius: 43px; }
.bblr43 {
border-bottom-left-radius: 43px; }
.fz44 {
font-size: 44px; }
.ti44 {
text-indent: 44px; }
.bdsp44 {
border-spacing: 44px; }
.p44 {
padding: 44px; }
.pt44 {
padding-top: 44px; }
.pr44 {
padding-right: 44px; }
.pb44 {
padding-bottom: 44px; }
.pl44 {
padding-left: 44px; }
.m44 {
margin: 44px; }
.mt44 {
margin-top: 44px; }
.mr44 {
margin-right: 44px; }
.mb44 {
margin-bottom: 44px; }
.ml44 {
margin-left: 44px; }
.bdrs44 {
border-radius: 44px; }
.btrr44 {
border-top-right-radius: 44px; }
.btlr44 {
border-top-left-radius: 44px; }
.bbrr44 {
border-bottom-right-radius: 44px; }
.bblr44 {
border-bottom-left-radius: 44px; }
.fz45 {
font-size: 45px; }
.ti45 {
text-indent: 45px; }
.bdsp45 {
border-spacing: 45px; }
.p45 {
padding: 45px; }
.pt45 {
padding-top: 45px; }
.pr45 {
padding-right: 45px; }
.pb45 {
padding-bottom: 45px; }
.pl45 {
padding-left: 45px; }
.m45 {
margin: 45px; }
.mt45 {
margin-top: 45px; }
.mr45 {
margin-right: 45px; }
.mb45 {
margin-bottom: 45px; }
.ml45 {
margin-left: 45px; }
.bdrs45 {
border-radius: 45px; }
.btrr45 {
border-top-right-radius: 45px; }
.btlr45 {
border-top-left-radius: 45px; }
.bbrr45 {
border-bottom-right-radius: 45px; }
.bblr45 {
border-bottom-left-radius: 45px; }
.fz46 {
font-size: 46px; }
.ti46 {
text-indent: 46px; }
.bdsp46 {
border-spacing: 46px; }
.p46 {
padding: 46px; }
.pt46 {
padding-top: 46px; }
.pr46 {
padding-right: 46px; }
.pb46 {
padding-bottom: 46px; }
.pl46 {
padding-left: 46px; }
.m46 {
margin: 46px; }
.mt46 {
margin-top: 46px; }
.mr46 {
margin-right: 46px; }
.mb46 {
margin-bottom: 46px; }
.ml46 {
margin-left: 46px; }
.bdrs46 {
border-radius: 46px; }
.btrr46 {
border-top-right-radius: 46px; }
.btlr46 {
border-top-left-radius: 46px; }
.bbrr46 {
border-bottom-right-radius: 46px; }
.bblr46 {
border-bottom-left-radius: 46px; }
.fz47 {
font-size: 47px; }
.ti47 {
text-indent: 47px; }
.bdsp47 {
border-spacing: 47px; }
.p47 {
padding: 47px; }
.pt47 {
padding-top: 47px; }
.pr47 {
padding-right: 47px; }
.pb47 {
padding-bottom: 47px; }
.pl47 {
padding-left: 47px; }
.m47 {
margin: 47px; }
.mt47 {
margin-top: 47px; }
.mr47 {
margin-right: 47px; }
.mb47 {
margin-bottom: 47px; }
.ml47 {
margin-left: 47px; }
.bdrs47 {
border-radius: 47px; }
.btrr47 {
border-top-right-radius: 47px; }
.btlr47 {
border-top-left-radius: 47px; }
.bbrr47 {
border-bottom-right-radius: 47px; }
.bblr47 {
border-bottom-left-radius: 47px; }
.fz48 {
font-size: 48px; }
.ti48 {
text-indent: 48px; }
.bdsp48 {
border-spacing: 48px; }
.p48 {
padding: 48px; }
.pt48 {
padding-top: 48px; }
.pr48 {
padding-right: 48px; }
.pb48 {
padding-bottom: 48px; }
.pl48 {
padding-left: 48px; }
.m48 {
margin: 48px; }
.mt48 {
margin-top: 48px; }
.mr48 {
margin-right: 48px; }
.mb48 {
margin-bottom: 48px; }
.ml48 {
margin-left: 48px; }
.bdrs48 {
border-radius: 48px; }
.btrr48 {
border-top-right-radius: 48px; }
.btlr48 {
border-top-left-radius: 48px; }
.bbrr48 {
border-bottom-right-radius: 48px; }
.bblr48 {
border-bottom-left-radius: 48px; }
.fz49 {
font-size: 49px; }
.ti49 {
text-indent: 49px; }
.bdsp49 {
border-spacing: 49px; }
.p49 {
padding: 49px; }
.pt49 {
padding-top: 49px; }
.pr49 {
padding-right: 49px; }
.pb49 {
padding-bottom: 49px; }
.pl49 {
padding-left: 49px; }
.m49 {
margin: 49px; }
.mt49 {
margin-top: 49px; }
.mr49 {
margin-right: 49px; }
.mb49 {
margin-bottom: 49px; }
.ml49 {
margin-left: 49px; }
.bdrs49 {
border-radius: 49px; }
.btrr49 {
border-top-right-radius: 49px; }
.btlr49 {
border-top-left-radius: 49px; }
.bbrr49 {
border-bottom-right-radius: 49px; }
.bblr49 {
border-bottom-left-radius: 49px; }
.fz50 {
font-size: 50px; }
.ti50 {
text-indent: 50px; }
.bdsp50 {
border-spacing: 50px; }
.p50 {
padding: 50px; }
.pt50 {
padding-top: 50px; }
.pr50 {
padding-right: 50px; }
.pb50 {
padding-bottom: 50px; }
.pl50 {
padding-left: 50px; }
.m50 {
margin: 50px; }
.mt50 {
margin-top: 50px; }
.mr50 {
margin-right: 50px; }
.mb50 {
margin-bottom: 50px; }
.ml50 {
margin-left: 50px; }
.bdrs50 {
border-radius: 50px; }
.btrr50 {
border-top-right-radius: 50px; }
.btlr50 {
border-top-left-radius: 50px; }
.bbrr50 {
border-bottom-right-radius: 50px; }
.bblr50 {
border-bottom-left-radius: 50px; }
.fz51 {
font-size: 51px; }
.ti51 {
text-indent: 51px; }
.bdsp51 {
border-spacing: 51px; }
.p51 {
padding: 51px; }
.pt51 {
padding-top: 51px; }
.pr51 {
padding-right: 51px; }
.pb51 {
padding-bottom: 51px; }
.pl51 {
padding-left: 51px; }
.m51 {
margin: 51px; }
.mt51 {
margin-top: 51px; }
.mr51 {
margin-right: 51px; }
.mb51 {
margin-bottom: 51px; }
.ml51 {
margin-left: 51px; }
.bdrs51 {
border-radius: 51px; }
.btrr51 {
border-top-right-radius: 51px; }
.btlr51 {
border-top-left-radius: 51px; }
.bbrr51 {
border-bottom-right-radius: 51px; }
.bblr51 {
border-bottom-left-radius: 51px; }
.fz52 {
font-size: 52px; }
.ti52 {
text-indent: 52px; }
.bdsp52 {
border-spacing: 52px; }
.p52 {
padding: 52px; }
.pt52 {
padding-top: 52px; }
.pr52 {
padding-right: 52px; }
.pb52 {
padding-bottom: 52px; }
.pl52 {
padding-left: 52px; }
.m52 {
margin: 52px; }
.mt52 {
margin-top: 52px; }
.mr52 {
margin-right: 52px; }
.mb52 {
margin-bottom: 52px; }
.ml52 {
margin-left: 52px; }
.bdrs52 {
border-radius: 52px; }
.btrr52 {
border-top-right-radius: 52px; }
.btlr52 {
border-top-left-radius: 52px; }
.bbrr52 {
border-bottom-right-radius: 52px; }
.bblr52 {
border-bottom-left-radius: 52px; }
.fz53 {
font-size: 53px; }
.ti53 {
text-indent: 53px; }
.bdsp53 {
border-spacing: 53px; }
.p53 {
padding: 53px; }
.pt53 {
padding-top: 53px; }
.pr53 {
padding-right: 53px; }
.pb53 {
padding-bottom: 53px; }
.pl53 {
padding-left: 53px; }
.m53 {
margin: 53px; }
.mt53 {
margin-top: 53px; }
.mr53 {
margin-right: 53px; }
.mb53 {
margin-bottom: 53px; }
.ml53 {
margin-left: 53px; }
.bdrs53 {
border-radius: 53px; }
.btrr53 {
border-top-right-radius: 53px; }
.btlr53 {
border-top-left-radius: 53px; }
.bbrr53 {
border-bottom-right-radius: 53px; }
.bblr53 {
border-bottom-left-radius: 53px; }
.fz54 {
font-size: 54px; }
.ti54 {
text-indent: 54px; }
.bdsp54 {
border-spacing: 54px; }
.p54 {
padding: 54px; }
.pt54 {
padding-top: 54px; }
.pr54 {
padding-right: 54px; }
.pb54 {
padding-bottom: 54px; }
.pl54 {
padding-left: 54px; }
.m54 {
margin: 54px; }
.mt54 {
margin-top: 54px; }
.mr54 {
margin-right: 54px; }
.mb54 {
margin-bottom: 54px; }
.ml54 {
margin-left: 54px; }
.bdrs54 {
border-radius: 54px; }
.btrr54 {
border-top-right-radius: 54px; }
.btlr54 {
border-top-left-radius: 54px; }
.bbrr54 {
border-bottom-right-radius: 54px; }
.bblr54 {
border-bottom-left-radius: 54px; }
.fz55 {
font-size: 55px; }
.ti55 {
text-indent: 55px; }
.bdsp55 {
border-spacing: 55px; }
.p55 {
padding: 55px; }
.pt55 {
padding-top: 55px; }
.pr55 {
padding-right: 55px; }
.pb55 {
padding-bottom: 55px; }
.pl55 {
padding-left: 55px; }
.m55 {
margin: 55px; }
.mt55 {
margin-top: 55px; }
.mr55 {
margin-right: 55px; }
.mb55 {
margin-bottom: 55px; }
.ml55 {
margin-left: 55px; }
.bdrs55 {
border-radius: 55px; }
.btrr55 {
border-top-right-radius: 55px; }
.btlr55 {
border-top-left-radius: 55px; }
.bbrr55 {
border-bottom-right-radius: 55px; }
.bblr55 {
border-bottom-left-radius: 55px; }
.fz56 {
font-size: 56px; }
.ti56 {
text-indent: 56px; }
.bdsp56 {
border-spacing: 56px; }
.p56 {
padding: 56px; }
.pt56 {
padding-top: 56px; }
.pr56 {
padding-right: 56px; }
.pb56 {
padding-bottom: 56px; }
.pl56 {
padding-left: 56px; }
.m56 {
margin: 56px; }
.mt56 {
margin-top: 56px; }
.mr56 {
margin-right: 56px; }
.mb56 {
margin-bottom: 56px; }
.ml56 {
margin-left: 56px; }
.bdrs56 {
border-radius: 56px; }
.btrr56 {
border-top-right-radius: 56px; }
.btlr56 {
border-top-left-radius: 56px; }
.bbrr56 {
border-bottom-right-radius: 56px; }
.bblr56 {
border-bottom-left-radius: 56px; }
.fz57 {
font-size: 57px; }
.ti57 {
text-indent: 57px; }
.bdsp57 {
border-spacing: 57px; }
.p57 {
padding: 57px; }
.pt57 {
padding-top: 57px; }
.pr57 {
padding-right: 57px; }
.pb57 {
padding-bottom: 57px; }
.pl57 {
padding-left: 57px; }
.m57 {
margin: 57px; }
.mt57 {
margin-top: 57px; }
.mr57 {
margin-right: 57px; }
.mb57 {
margin-bottom: 57px; }
.ml57 {
margin-left: 57px; }
.bdrs57 {
border-radius: 57px; }
.btrr57 {
border-top-right-radius: 57px; }
.btlr57 {
border-top-left-radius: 57px; }
.bbrr57 {
border-bottom-right-radius: 57px; }
.bblr57 {
border-bottom-left-radius: 57px; }
.fz58 {
font-size: 58px; }
.ti58 {
text-indent: 58px; }
.bdsp58 {
border-spacing: 58px; }
.p58 {
padding: 58px; }
.pt58 {
padding-top: 58px; }
.pr58 {
padding-right: 58px; }
.pb58 {
padding-bottom: 58px; }
.pl58 {
padding-left: 58px; }
.m58 {
margin: 58px; }
.mt58 {
margin-top: 58px; }
.mr58 {
margin-right: 58px; }
.mb58 {
margin-bottom: 58px; }
.ml58 {
margin-left: 58px; }
.bdrs58 {
border-radius: 58px; }
.btrr58 {
border-top-right-radius: 58px; }
.btlr58 {
border-top-left-radius: 58px; }
.bbrr58 {
border-bottom-right-radius: 58px; }
.bblr58 {
border-bottom-left-radius: 58px; }
.fz59 {
font-size: 59px; }
.ti59 {
text-indent: 59px; }
.bdsp59 {
border-spacing: 59px; }
.p59 {
padding: 59px; }
.pt59 {
padding-top: 59px; }
.pr59 {
padding-right: 59px; }
.pb59 {
padding-bottom: 59px; }
.pl59 {
padding-left: 59px; }
.m59 {
margin: 59px; }
.mt59 {
margin-top: 59px; }
.mr59 {
margin-right: 59px; }
.mb59 {
margin-bottom: 59px; }
.ml59 {
margin-left: 59px; }
.bdrs59 {
border-radius: 59px; }
.btrr59 {
border-top-right-radius: 59px; }
.btlr59 {
border-top-left-radius: 59px; }
.bbrr59 {
border-bottom-right-radius: 59px; }
.bblr59 {
border-bottom-left-radius: 59px; }
.fz60 {
font-size: 60px; }
.ti60 {
text-indent: 60px; }
.bdsp60 {
border-spacing: 60px; }
.p60 {
padding: 60px; }
.pt60 {
padding-top: 60px; }
.pr60 {
padding-right: 60px; }
.pb60 {
padding-bottom: 60px; }
.pl60 {
padding-left: 60px; }
.m60 {
margin: 60px; }
.mt60 {
margin-top: 60px; }
.mr60 {
margin-right: 60px; }
.mb60 {
margin-bottom: 60px; }
.ml60 {
margin-left: 60px; }
.bdrs60 {
border-radius: 60px; }
.btrr60 {
border-top-right-radius: 60px; }
.btlr60 {
border-top-left-radius: 60px; }
.bbrr60 {
border-bottom-right-radius: 60px; }
.bblr60 {
border-bottom-left-radius: 60px; }
.fz61 {
font-size: 61px; }
.ti61 {
text-indent: 61px; }
.bdsp61 {
border-spacing: 61px; }
.p61 {
padding: 61px; }
.pt61 {
padding-top: 61px; }
.pr61 {
padding-right: 61px; }
.pb61 {
padding-bottom: 61px; }
.pl61 {
padding-left: 61px; }
.m61 {
margin: 61px; }
.mt61 {
margin-top: 61px; }
.mr61 {
margin-right: 61px; }
.mb61 {
margin-bottom: 61px; }
.ml61 {
margin-left: 61px; }
.bdrs61 {
border-radius: 61px; }
.btrr61 {
border-top-right-radius: 61px; }
.btlr61 {
border-top-left-radius: 61px; }
.bbrr61 {
border-bottom-right-radius: 61px; }
.bblr61 {
border-bottom-left-radius: 61px; }
.fz62 {
font-size: 62px; }
.ti62 {
text-indent: 62px; }
.bdsp62 {
border-spacing: 62px; }
.p62 {
padding: 62px; }
.pt62 {
padding-top: 62px; }
.pr62 {
padding-right: 62px; }
.pb62 {
padding-bottom: 62px; }
.pl62 {
padding-left: 62px; }
.m62 {
margin: 62px; }
.mt62 {
margin-top: 62px; }
.mr62 {
margin-right: 62px; }
.mb62 {
margin-bottom: 62px; }
.ml62 {
margin-left: 62px; }
.bdrs62 {
border-radius: 62px; }
.btrr62 {
border-top-right-radius: 62px; }
.btlr62 {
border-top-left-radius: 62px; }
.bbrr62 {
border-bottom-right-radius: 62px; }
.bblr62 {
border-bottom-left-radius: 62px; }
.fz63 {
font-size: 63px; }
.ti63 {
text-indent: 63px; }
.bdsp63 {
border-spacing: 63px; }
.p63 {
padding: 63px; }
.pt63 {
padding-top: 63px; }
.pr63 {
padding-right: 63px; }
.pb63 {
padding-bottom: 63px; }
.pl63 {
padding-left: 63px; }
.m63 {
margin: 63px; }
.mt63 {
margin-top: 63px; }
.mr63 {
margin-right: 63px; }
.mb63 {
margin-bottom: 63px; }
.ml63 {
margin-left: 63px; }
.bdrs63 {
border-radius: 63px; }
.btrr63 {
border-top-right-radius: 63px; }
.btlr63 {
border-top-left-radius: 63px; }
.bbrr63 {
border-bottom-right-radius: 63px; }
.bblr63 {
border-bottom-left-radius: 63px; }
.fz64 {
font-size: 64px; }
.ti64 {
text-indent: 64px; }
.bdsp64 {
border-spacing: 64px; }
.p64 {
padding: 64px; }
.pt64 {
padding-top: 64px; }
.pr64 {
padding-right: 64px; }
.pb64 {
padding-bottom: 64px; }
.pl64 {
padding-left: 64px; }
.m64 {
margin: 64px; }
.mt64 {
margin-top: 64px; }
.mr64 {
margin-right: 64px; }
.mb64 {
margin-bottom: 64px; }
.ml64 {
margin-left: 64px; }
.bdrs64 {
border-radius: 64px; }
.btrr64 {
border-top-right-radius: 64px; }
.btlr64 {
border-top-left-radius: 64px; }
.bbrr64 {
border-bottom-right-radius: 64px; }
.bblr64 {
border-bottom-left-radius: 64px; }
.fz65 {
font-size: 65px; }
.ti65 {
text-indent: 65px; }
.bdsp65 {
border-spacing: 65px; }
.p65 {
padding: 65px; }
.pt65 {
padding-top: 65px; }
.pr65 {
padding-right: 65px; }
.pb65 {
padding-bottom: 65px; }
.pl65 {
padding-left: 65px; }
.m65 {
margin: 65px; }
.mt65 {
margin-top: 65px; }
.mr65 {
margin-right: 65px; }
.mb65 {
margin-bottom: 65px; }
.ml65 {
margin-left: 65px; }
.bdrs65 {
border-radius: 65px; }
.btrr65 {
border-top-right-radius: 65px; }
.btlr65 {
border-top-left-radius: 65px; }
.bbrr65 {
border-bottom-right-radius: 65px; }
.bblr65 {
border-bottom-left-radius: 65px; }
.fz66 {
font-size: 66px; }
.ti66 {
text-indent: 66px; }
.bdsp66 {
border-spacing: 66px; }
.p66 {
padding: 66px; }
.pt66 {
padding-top: 66px; }
.pr66 {
padding-right: 66px; }
.pb66 {
padding-bottom: 66px; }
.pl66 {
padding-left: 66px; }
.m66 {
margin: 66px; }
.mt66 {
margin-top: 66px; }
.mr66 {
margin-right: 66px; }
.mb66 {
margin-bottom: 66px; }
.ml66 {
margin-left: 66px; }
.bdrs66 {
border-radius: 66px; }
.btrr66 {
border-top-right-radius: 66px; }
.btlr66 {
border-top-left-radius: 66px; }
.bbrr66 {
border-bottom-right-radius: 66px; }
.bblr66 {
border-bottom-left-radius: 66px; }
.fz67 {
font-size: 67px; }
.ti67 {
text-indent: 67px; }
.bdsp67 {
border-spacing: 67px; }
.p67 {
padding: 67px; }
.pt67 {
padding-top: 67px; }
.pr67 {
padding-right: 67px; }
.pb67 {
padding-bottom: 67px; }
.pl67 {
padding-left: 67px; }
.m67 {
margin: 67px; }
.mt67 {
margin-top: 67px; }
.mr67 {
margin-right: 67px; }
.mb67 {
margin-bottom: 67px; }
.ml67 {
margin-left: 67px; }
.bdrs67 {
border-radius: 67px; }
.btrr67 {
border-top-right-radius: 67px; }
.btlr67 {
border-top-left-radius: 67px; }
.bbrr67 {
border-bottom-right-radius: 67px; }
.bblr67 {
border-bottom-left-radius: 67px; }
.fz68 {
font-size: 68px; }
.ti68 {
text-indent: 68px; }
.bdsp68 {
border-spacing: 68px; }
.p68 {
padding: 68px; }
.pt68 {
padding-top: 68px; }
.pr68 {
padding-right: 68px; }
.pb68 {
padding-bottom: 68px; }
.pl68 {
padding-left: 68px; }
.m68 {
margin: 68px; }
.mt68 {
margin-top: 68px; }
.mr68 {
margin-right: 68px; }
.mb68 {
margin-bottom: 68px; }
.ml68 {
margin-left: 68px; }
.bdrs68 {
border-radius: 68px; }
.btrr68 {
border-top-right-radius: 68px; }
.btlr68 {
border-top-left-radius: 68px; }
.bbrr68 {
border-bottom-right-radius: 68px; }
.bblr68 {
border-bottom-left-radius: 68px; }
.fz69 {
font-size: 69px; }
.ti69 {
text-indent: 69px; }
.bdsp69 {
border-spacing: 69px; }
.p69 {
padding: 69px; }
.pt69 {
padding-top: 69px; }
.pr69 {
padding-right: 69px; }
.pb69 {
padding-bottom: 69px; }
.pl69 {
padding-left: 69px; }
.m69 {
margin: 69px; }
.mt69 {
margin-top: 69px; }
.mr69 {
margin-right: 69px; }
.mb69 {
margin-bottom: 69px; }
.ml69 {
margin-left: 69px; }
.bdrs69 {
border-radius: 69px; }
.btrr69 {
border-top-right-radius: 69px; }
.btlr69 {
border-top-left-radius: 69px; }
.bbrr69 {
border-bottom-right-radius: 69px; }
.bblr69 {
border-bottom-left-radius: 69px; }
.fz70 {
font-size: 70px; }
.ti70 {
text-indent: 70px; }
.bdsp70 {
border-spacing: 70px; }
.p70 {
padding: 70px; }
.pt70 {
padding-top: 70px; }
.pr70 {
padding-right: 70px; }
.pb70 {
padding-bottom: 70px; }
.pl70 {
padding-left: 70px; }
.m70 {
margin: 70px; }
.mt70 {
margin-top: 70px; }
.mr70 {
margin-right: 70px; }
.mb70 {
margin-bottom: 70px; }
.ml70 {
margin-left: 70px; }
.bdrs70 {
border-radius: 70px; }
.btrr70 {
border-top-right-radius: 70px; }
.btlr70 {
border-top-left-radius: 70px; }
.bbrr70 {
border-bottom-right-radius: 70px; }
.bblr70 {
border-bottom-left-radius: 70px; }
.fz71 {
font-size: 71px; }
.ti71 {
text-indent: 71px; }
.bdsp71 {
border-spacing: 71px; }
.p71 {
padding: 71px; }
.pt71 {
padding-top: 71px; }
.pr71 {
padding-right: 71px; }
.pb71 {
padding-bottom: 71px; }
.pl71 {
padding-left: 71px; }
.m71 {
margin: 71px; }
.mt71 {
margin-top: 71px; }
.mr71 {
margin-right: 71px; }
.mb71 {
margin-bottom: 71px; }
.ml71 {
margin-left: 71px; }
.bdrs71 {
border-radius: 71px; }
.btrr71 {
border-top-right-radius: 71px; }
.btlr71 {
border-top-left-radius: 71px; }
.bbrr71 {
border-bottom-right-radius: 71px; }
.bblr71 {
border-bottom-left-radius: 71px; }
.fz72 {
font-size: 72px; }
.ti72 {
text-indent: 72px; }
.bdsp72 {
border-spacing: 72px; }
.p72 {
padding: 72px; }
.pt72 {
padding-top: 72px; }
.pr72 {
padding-right: 72px; }
.pb72 {
padding-bottom: 72px; }
.pl72 {
padding-left: 72px; }
.m72 {
margin: 72px; }
.mt72 {
margin-top: 72px; }
.mr72 {
margin-right: 72px; }
.mb72 {
margin-bottom: 72px; }
.ml72 {
margin-left: 72px; }
.bdrs72 {
border-radius: 72px; }
.btrr72 {
border-top-right-radius: 72px; }
.btlr72 {
border-top-left-radius: 72px; }
.bbrr72 {
border-bottom-right-radius: 72px; }
.bblr72 {
border-bottom-left-radius: 72px; }
.fz73 {
font-size: 73px; }
.ti73 {
text-indent: 73px; }
.bdsp73 {
border-spacing: 73px; }
.p73 {
padding: 73px; }
.pt73 {
padding-top: 73px; }
.pr73 {
padding-right: 73px; }
.pb73 {
padding-bottom: 73px; }
.pl73 {
padding-left: 73px; }
.m73 {
margin: 73px; }
.mt73 {
margin-top: 73px; }
.mr73 {
margin-right: 73px; }
.mb73 {
margin-bottom: 73px; }
.ml73 {
margin-left: 73px; }
.bdrs73 {
border-radius: 73px; }
.btrr73 {
border-top-right-radius: 73px; }
.btlr73 {
border-top-left-radius: 73px; }
.bbrr73 {
border-bottom-right-radius: 73px; }
.bblr73 {
border-bottom-left-radius: 73px; }
.fz74 {
font-size: 74px; }
.ti74 {
text-indent: 74px; }
.bdsp74 {
border-spacing: 74px; }
.p74 {
padding: 74px; }
.pt74 {
padding-top: 74px; }
.pr74 {
padding-right: 74px; }
.pb74 {
padding-bottom: 74px; }
.pl74 {
padding-left: 74px; }
.m74 {
margin: 74px; }
.mt74 {
margin-top: 74px; }
.mr74 {
margin-right: 74px; }
.mb74 {
margin-bottom: 74px; }
.ml74 {
margin-left: 74px; }
.bdrs74 {
border-radius: 74px; }
.btrr74 {
border-top-right-radius: 74px; }
.btlr74 {
border-top-left-radius: 74px; }
.bbrr74 {
border-bottom-right-radius: 74px; }
.bblr74 {
border-bottom-left-radius: 74px; }
.fz75 {
font-size: 75px; }
.ti75 {
text-indent: 75px; }
.bdsp75 {
border-spacing: 75px; }
.p75 {
padding: 75px; }
.pt75 {
padding-top: 75px; }
.pr75 {
padding-right: 75px; }
.pb75 {
padding-bottom: 75px; }
.pl75 {
padding-left: 75px; }
.m75 {
margin: 75px; }
.mt75 {
margin-top: 75px; }
.mr75 {
margin-right: 75px; }
.mb75 {
margin-bottom: 75px; }
.ml75 {
margin-left: 75px; }
.bdrs75 {
border-radius: 75px; }
.btrr75 {
border-top-right-radius: 75px; }
.btlr75 {
border-top-left-radius: 75px; }
.bbrr75 {
border-bottom-right-radius: 75px; }
.bblr75 {
border-bottom-left-radius: 75px; }
.fz76 {
font-size: 76px; }
.ti76 {
text-indent: 76px; }
.bdsp76 {
border-spacing: 76px; }
.p76 {
padding: 76px; }
.pt76 {
padding-top: 76px; }
.pr76 {
padding-right: 76px; }
.pb76 {
padding-bottom: 76px; }
.pl76 {
padding-left: 76px; }
.m76 {
margin: 76px; }
.mt76 {
margin-top: 76px; }
.mr76 {
margin-right: 76px; }
.mb76 {
margin-bottom: 76px; }
.ml76 {
margin-left: 76px; }
.bdrs76 {
border-radius: 76px; }
.btrr76 {
border-top-right-radius: 76px; }
.btlr76 {
border-top-left-radius: 76px; }
.bbrr76 {
border-bottom-right-radius: 76px; }
.bblr76 {
border-bottom-left-radius: 76px; }
.fz77 {
font-size: 77px; }
.ti77 {
text-indent: 77px; }
.bdsp77 {
border-spacing: 77px; }
.p77 {
padding: 77px; }
.pt77 {
padding-top: 77px; }
.pr77 {
padding-right: 77px; }
.pb77 {
padding-bottom: 77px; }
.pl77 {
padding-left: 77px; }
.m77 {
margin: 77px; }
.mt77 {
margin-top: 77px; }
.mr77 {
margin-right: 77px; }
.mb77 {
margin-bottom: 77px; }
.ml77 {
margin-left: 77px; }
.bdrs77 {
border-radius: 77px; }
.btrr77 {
border-top-right-radius: 77px; }
.btlr77 {
border-top-left-radius: 77px; }
.bbrr77 {
border-bottom-right-radius: 77px; }
.bblr77 {
border-bottom-left-radius: 77px; }
.fz78 {
font-size: 78px; }
.ti78 {
text-indent: 78px; }
.bdsp78 {
border-spacing: 78px; }
.p78 {
padding: 78px; }
.pt78 {
padding-top: 78px; }
.pr78 {
padding-right: 78px; }
.pb78 {
padding-bottom: 78px; }
.pl78 {
padding-left: 78px; }
.m78 {
margin: 78px; }
.mt78 {
margin-top: 78px; }
.mr78 {
margin-right: 78px; }
.mb78 {
margin-bottom: 78px; }
.ml78 {
margin-left: 78px; }
.bdrs78 {
border-radius: 78px; }
.btrr78 {
border-top-right-radius: 78px; }
.btlr78 {
border-top-left-radius: 78px; }
.bbrr78 {
border-bottom-right-radius: 78px; }
.bblr78 {
border-bottom-left-radius: 78px; }
.fz79 {
font-size: 79px; }
.ti79 {
text-indent: 79px; }
.bdsp79 {
border-spacing: 79px; }
.p79 {
padding: 79px; }
.pt79 {
padding-top: 79px; }
.pr79 {
padding-right: 79px; }
.pb79 {
padding-bottom: 79px; }
.pl79 {
padding-left: 79px; }
.m79 {
margin: 79px; }
.mt79 {
margin-top: 79px; }
.mr79 {
margin-right: 79px; }
.mb79 {
margin-bottom: 79px; }
.ml79 {
margin-left: 79px; }
.bdrs79 {
border-radius: 79px; }
.btrr79 {
border-top-right-radius: 79px; }
.btlr79 {
border-top-left-radius: 79px; }
.bbrr79 {
border-bottom-right-radius: 79px; }
.bblr79 {
border-bottom-left-radius: 79px; }
.fz80 {
font-size: 80px; }
.ti80 {
text-indent: 80px; }
.bdsp80 {
border-spacing: 80px; }
.p80 {
padding: 80px; }
.pt80 {
padding-top: 80px; }
.pr80 {
padding-right: 80px; }
.pb80 {
padding-bottom: 80px; }
.pl80 {
padding-left: 80px; }
.m80 {
margin: 80px; }
.mt80 {
margin-top: 80px; }
.mr80 {
margin-right: 80px; }
.mb80 {
margin-bottom: 80px; }
.ml80 {
margin-left: 80px; }
.bdrs80 {
border-radius: 80px; }
.btrr80 {
border-top-right-radius: 80px; }
.btlr80 {
border-top-left-radius: 80px; }
.bbrr80 {
border-bottom-right-radius: 80px; }
.bblr80 {
border-bottom-left-radius: 80px; }
.fz81 {
font-size: 81px; }
.ti81 {
text-indent: 81px; }
.bdsp81 {
border-spacing: 81px; }
.p81 {
padding: 81px; }
.pt81 {
padding-top: 81px; }
.pr81 {
padding-right: 81px; }
.pb81 {
padding-bottom: 81px; }
.pl81 {
padding-left: 81px; }
.m81 {
margin: 81px; }
.mt81 {
margin-top: 81px; }
.mr81 {
margin-right: 81px; }
.mb81 {
margin-bottom: 81px; }
.ml81 {
margin-left: 81px; }
.bdrs81 {
border-radius: 81px; }
.btrr81 {
border-top-right-radius: 81px; }
.btlr81 {
border-top-left-radius: 81px; }
.bbrr81 {
border-bottom-right-radius: 81px; }
.bblr81 {
border-bottom-left-radius: 81px; }
.fz82 {
font-size: 82px; }
.ti82 {
text-indent: 82px; }
.bdsp82 {
border-spacing: 82px; }
.p82 {
padding: 82px; }
.pt82 {
padding-top: 82px; }
.pr82 {
padding-right: 82px; }
.pb82 {
padding-bottom: 82px; }
.pl82 {
padding-left: 82px; }
.m82 {
margin: 82px; }
.mt82 {
margin-top: 82px; }
.mr82 {
margin-right: 82px; }
.mb82 {
margin-bottom: 82px; }
.ml82 {
margin-left: 82px; }
.bdrs82 {
border-radius: 82px; }
.btrr82 {
border-top-right-radius: 82px; }
.btlr82 {
border-top-left-radius: 82px; }
.bbrr82 {
border-bottom-right-radius: 82px; }
.bblr82 {
border-bottom-left-radius: 82px; }
.fz83 {
font-size: 83px; }
.ti83 {
text-indent: 83px; }
.bdsp83 {
border-spacing: 83px; }
.p83 {
padding: 83px; }
.pt83 {
padding-top: 83px; }
.pr83 {
padding-right: 83px; }
.pb83 {
padding-bottom: 83px; }
.pl83 {
padding-left: 83px; }
.m83 {
margin: 83px; }
.mt83 {
margin-top: 83px; }
.mr83 {
margin-right: 83px; }
.mb83 {
margin-bottom: 83px; }
.ml83 {
margin-left: 83px; }
.bdrs83 {
border-radius: 83px; }
.btrr83 {
border-top-right-radius: 83px; }
.btlr83 {
border-top-left-radius: 83px; }
.bbrr83 {
border-bottom-right-radius: 83px; }
.bblr83 {
border-bottom-left-radius: 83px; }
.fz84 {
font-size: 84px; }
.ti84 {
text-indent: 84px; }
.bdsp84 {
border-spacing: 84px; }
.p84 {
padding: 84px; }
.pt84 {
padding-top: 84px; }
.pr84 {
padding-right: 84px; }
.pb84 {
padding-bottom: 84px; }
.pl84 {
padding-left: 84px; }
.m84 {
margin: 84px; }
.mt84 {
margin-top: 84px; }
.mr84 {
margin-right: 84px; }
.mb84 {
margin-bottom: 84px; }
.ml84 {
margin-left: 84px; }
.bdrs84 {
border-radius: 84px; }
.btrr84 {
border-top-right-radius: 84px; }
.btlr84 {
border-top-left-radius: 84px; }
.bbrr84 {
border-bottom-right-radius: 84px; }
.bblr84 {
border-bottom-left-radius: 84px; }
.fz85 {
font-size: 85px; }
.ti85 {
text-indent: 85px; }
.bdsp85 {
border-spacing: 85px; }
.p85 {
padding: 85px; }
.pt85 {
padding-top: 85px; }
.pr85 {
padding-right: 85px; }
.pb85 {
padding-bottom: 85px; }
.pl85 {
padding-left: 85px; }
.m85 {
margin: 85px; }
.mt85 {
margin-top: 85px; }
.mr85 {
margin-right: 85px; }
.mb85 {
margin-bottom: 85px; }
.ml85 {
margin-left: 85px; }
.bdrs85 {
border-radius: 85px; }
.btrr85 {
border-top-right-radius: 85px; }
.btlr85 {
border-top-left-radius: 85px; }
.bbrr85 {
border-bottom-right-radius: 85px; }
.bblr85 {
border-bottom-left-radius: 85px; }
.fz86 {
font-size: 86px; }
.ti86 {
text-indent: 86px; }
.bdsp86 {
border-spacing: 86px; }
.p86 {
padding: 86px; }
.pt86 {
padding-top: 86px; }
.pr86 {
padding-right: 86px; }
.pb86 {
padding-bottom: 86px; }
.pl86 {
padding-left: 86px; }
.m86 {
margin: 86px; }
.mt86 {
margin-top: 86px; }
.mr86 {
margin-right: 86px; }
.mb86 {
margin-bottom: 86px; }
.ml86 {
margin-left: 86px; }
.bdrs86 {
border-radius: 86px; }
.btrr86 {
border-top-right-radius: 86px; }
.btlr86 {
border-top-left-radius: 86px; }
.bbrr86 {
border-bottom-right-radius: 86px; }
.bblr86 {
border-bottom-left-radius: 86px; }
.fz87 {
font-size: 87px; }
.ti87 {
text-indent: 87px; }
.bdsp87 {
border-spacing: 87px; }
.p87 {
padding: 87px; }
.pt87 {
padding-top: 87px; }
.pr87 {
padding-right: 87px; }
.pb87 {
padding-bottom: 87px; }
.pl87 {
padding-left: 87px; }
.m87 {
margin: 87px; }
.mt87 {
margin-top: 87px; }
.mr87 {
margin-right: 87px; }
.mb87 {
margin-bottom: 87px; }
.ml87 {
margin-left: 87px; }
.bdrs87 {
border-radius: 87px; }
.btrr87 {
border-top-right-radius: 87px; }
.btlr87 {
border-top-left-radius: 87px; }
.bbrr87 {
border-bottom-right-radius: 87px; }
.bblr87 {
border-bottom-left-radius: 87px; }
.fz88 {
font-size: 88px; }
.ti88 {
text-indent: 88px; }
.bdsp88 {
border-spacing: 88px; }
.p88 {
padding: 88px; }
.pt88 {
padding-top: 88px; }
.pr88 {
padding-right: 88px; }
.pb88 {
padding-bottom: 88px; }
.pl88 {
padding-left: 88px; }
.m88 {
margin: 88px; }
.mt88 {
margin-top: 88px; }
.mr88 {
margin-right: 88px; }
.mb88 {
margin-bottom: 88px; }
.ml88 {
margin-left: 88px; }
.bdrs88 {
border-radius: 88px; }
.btrr88 {
border-top-right-radius: 88px; }
.btlr88 {
border-top-left-radius: 88px; }
.bbrr88 {
border-bottom-right-radius: 88px; }
.bblr88 {
border-bottom-left-radius: 88px; }
.fz89 {
font-size: 89px; }
.ti89 {
text-indent: 89px; }
.bdsp89 {
border-spacing: 89px; }
.p89 {
padding: 89px; }
.pt89 {
padding-top: 89px; }
.pr89 {
padding-right: 89px; }
.pb89 {
padding-bottom: 89px; }
.pl89 {
padding-left: 89px; }
.m89 {
margin: 89px; }
.mt89 {
margin-top: 89px; }
.mr89 {
margin-right: 89px; }
.mb89 {
margin-bottom: 89px; }
.ml89 {
margin-left: 89px; }
.bdrs89 {
border-radius: 89px; }
.btrr89 {
border-top-right-radius: 89px; }
.btlr89 {
border-top-left-radius: 89px; }
.bbrr89 {
border-bottom-right-radius: 89px; }
.bblr89 {
border-bottom-left-radius: 89px; }
.fz90 {
font-size: 90px; }
.ti90 {
text-indent: 90px; }
.bdsp90 {
border-spacing: 90px; }
.p90 {
padding: 90px; }
.pt90 {
padding-top: 90px; }
.pr90 {
padding-right: 90px; }
.pb90 {
padding-bottom: 90px; }
.pl90 {
padding-left: 90px; }
.m90 {
margin: 90px; }
.mt90 {
margin-top: 90px; }
.mr90 {
margin-right: 90px; }
.mb90 {
margin-bottom: 90px; }
.ml90 {
margin-left: 90px; }
.bdrs90 {
border-radius: 90px; }
.btrr90 {
border-top-right-radius: 90px; }
.btlr90 {
border-top-left-radius: 90px; }
.bbrr90 {
border-bottom-right-radius: 90px; }
.bblr90 {
border-bottom-left-radius: 90px; }
.fz91 {
font-size: 91px; }
.ti91 {
text-indent: 91px; }
.bdsp91 {
border-spacing: 91px; }
.p91 {
padding: 91px; }
.pt91 {
padding-top: 91px; }
.pr91 {
padding-right: 91px; }
.pb91 {
padding-bottom: 91px; }
.pl91 {
padding-left: 91px; }
.m91 {
margin: 91px; }
.mt91 {
margin-top: 91px; }
.mr91 {
margin-right: 91px; }
.mb91 {
margin-bottom: 91px; }
.ml91 {
margin-left: 91px; }
.bdrs91 {
border-radius: 91px; }
.btrr91 {
border-top-right-radius: 91px; }
.btlr91 {
border-top-left-radius: 91px; }
.bbrr91 {
border-bottom-right-radius: 91px; }
.bblr91 {
border-bottom-left-radius: 91px; }
.fz92 {
font-size: 92px; }
.ti92 {
text-indent: 92px; }
.bdsp92 {
border-spacing: 92px; }
.p92 {
padding: 92px; }
.pt92 {
padding-top: 92px; }
.pr92 {
padding-right: 92px; }
.pb92 {
padding-bottom: 92px; }
.pl92 {
padding-left: 92px; }
.m92 {
margin: 92px; }
.mt92 {
margin-top: 92px; }
.mr92 {
margin-right: 92px; }
.mb92 {
margin-bottom: 92px; }
.ml92 {
margin-left: 92px; }
.bdrs92 {
border-radius: 92px; }
.btrr92 {
border-top-right-radius: 92px; }
.btlr92 {
border-top-left-radius: 92px; }
.bbrr92 {
border-bottom-right-radius: 92px; }
.bblr92 {
border-bottom-left-radius: 92px; }
.fz93 {
font-size: 93px; }
.ti93 {
text-indent: 93px; }
.bdsp93 {
border-spacing: 93px; }
.p93 {
padding: 93px; }
.pt93 {
padding-top: 93px; }
.pr93 {
padding-right: 93px; }
.pb93 {
padding-bottom: 93px; }
.pl93 {
padding-left: 93px; }
.m93 {
margin: 93px; }
.mt93 {
margin-top: 93px; }
.mr93 {
margin-right: 93px; }
.mb93 {
margin-bottom: 93px; }
.ml93 {
margin-left: 93px; }
.bdrs93 {
border-radius: 93px; }
.btrr93 {
border-top-right-radius: 93px; }
.btlr93 {
border-top-left-radius: 93px; }
.bbrr93 {
border-bottom-right-radius: 93px; }
.bblr93 {
border-bottom-left-radius: 93px; }
.fz94 {
font-size: 94px; }
.ti94 {
text-indent: 94px; }
.bdsp94 {
border-spacing: 94px; }
.p94 {
padding: 94px; }
.pt94 {
padding-top: 94px; }
.pr94 {
padding-right: 94px; }
.pb94 {
padding-bottom: 94px; }
.pl94 {
padding-left: 94px; }
.m94 {
margin: 94px; }
.mt94 {
margin-top: 94px; }
.mr94 {
margin-right: 94px; }
.mb94 {
margin-bottom: 94px; }
.ml94 {
margin-left: 94px; }
.bdrs94 {
border-radius: 94px; }
.btrr94 {
border-top-right-radius: 94px; }
.btlr94 {
border-top-left-radius: 94px; }
.bbrr94 {
border-bottom-right-radius: 94px; }
.bblr94 {
border-bottom-left-radius: 94px; }
.fz95 {
font-size: 95px; }
.ti95 {
text-indent: 95px; }
.bdsp95 {
border-spacing: 95px; }
.p95 {
padding: 95px; }
.pt95 {
padding-top: 95px; }
.pr95 {
padding-right: 95px; }
.pb95 {
padding-bottom: 95px; }
.pl95 {
padding-left: 95px; }
.m95 {
margin: 95px; }
.mt95 {
margin-top: 95px; }
.mr95 {
margin-right: 95px; }
.mb95 {
margin-bottom: 95px; }
.ml95 {
margin-left: 95px; }
.bdrs95 {
border-radius: 95px; }
.btrr95 {
border-top-right-radius: 95px; }
.btlr95 {
border-top-left-radius: 95px; }
.bbrr95 {
border-bottom-right-radius: 95px; }
.bblr95 {
border-bottom-left-radius: 95px; }
.fz96 {
font-size: 96px; }
.ti96 {
text-indent: 96px; }
.bdsp96 {
border-spacing: 96px; }
.p96 {
padding: 96px; }
.pt96 {
padding-top: 96px; }
.pr96 {
padding-right: 96px; }
.pb96 {
padding-bottom: 96px; }
.pl96 {
padding-left: 96px; }
.m96 {
margin: 96px; }
.mt96 {
margin-top: 96px; }
.mr96 {
margin-right: 96px; }
.mb96 {
margin-bottom: 96px; }
.ml96 {
margin-left: 96px; }
.bdrs96 {
border-radius: 96px; }
.btrr96 {
border-top-right-radius: 96px; }
.btlr96 {
border-top-left-radius: 96px; }
.bbrr96 {
border-bottom-right-radius: 96px; }
.bblr96 {
border-bottom-left-radius: 96px; }
.fz97 {
font-size: 97px; }
.ti97 {
text-indent: 97px; }
.bdsp97 {
border-spacing: 97px; }
.p97 {
padding: 97px; }
.pt97 {
padding-top: 97px; }
.pr97 {
padding-right: 97px; }
.pb97 {
padding-bottom: 97px; }
.pl97 {
padding-left: 97px; }
.m97 {
margin: 97px; }
.mt97 {
margin-top: 97px; }
.mr97 {
margin-right: 97px; }
.mb97 {
margin-bottom: 97px; }
.ml97 {
margin-left: 97px; }
.bdrs97 {
border-radius: 97px; }
.btrr97 {
border-top-right-radius: 97px; }
.btlr97 {
border-top-left-radius: 97px; }
.bbrr97 {
border-bottom-right-radius: 97px; }
.bblr97 {
border-bottom-left-radius: 97px; }
.fz98 {
font-size: 98px; }
.ti98 {
text-indent: 98px; }
.bdsp98 {
border-spacing: 98px; }
.p98 {
padding: 98px; }
.pt98 {
padding-top: 98px; }
.pr98 {
padding-right: 98px; }
.pb98 {
padding-bottom: 98px; }
.pl98 {
padding-left: 98px; }
.m98 {
margin: 98px; }
.mt98 {
margin-top: 98px; }
.mr98 {
margin-right: 98px; }
.mb98 {
margin-bottom: 98px; }
.ml98 {
margin-left: 98px; }
.bdrs98 {
border-radius: 98px; }
.btrr98 {
border-top-right-radius: 98px; }
.btlr98 {
border-top-left-radius: 98px; }
.bbrr98 {
border-bottom-right-radius: 98px; }
.bblr98 {
border-bottom-left-radius: 98px; }
.fz99 {
font-size: 99px; }
.ti99 {
text-indent: 99px; }
.bdsp99 {
border-spacing: 99px; }
.p99 {
padding: 99px; }
.pt99 {
padding-top: 99px; }
.pr99 {
padding-right: 99px; }
.pb99 {
padding-bottom: 99px; }
.pl99 {
padding-left: 99px; }
.m99 {
margin: 99px; }
.mt99 {
margin-top: 99px; }
.mr99 {
margin-right: 99px; }
.mb99 {
margin-bottom: 99px; }
.ml99 {
margin-left: 99px; }
.bdrs99 {
border-radius: 99px; }
.btrr99 {
border-top-right-radius: 99px; }
.btlr99 {
border-top-left-radius: 99px; }
.bbrr99 {
border-bottom-right-radius: 99px; }
.bblr99 {
border-bottom-left-radius: 99px; }
.fz100 {
font-size: 100px; }
.ti100 {
text-indent: 100px; }
.bdsp100 {
border-spacing: 100px; }
.p100 {
padding: 100px; }
.pt100 {
padding-top: 100px; }
.pr100 {
padding-right: 100px; }
.pb100 {
padding-bottom: 100px; }
.pl100 {
padding-left: 100px; }
.m100 {
margin: 100px; }
.mt100 {
margin-top: 100px; }
.mr100 {
margin-right: 100px; }
.mb100 {
margin-bottom: 100px; }
.ml100 {
margin-left: 100px; }
.bdrs100 {
border-radius: 100px; }
.btrr100 {
border-top-right-radius: 100px; }
.btlr100 {
border-top-left-radius: 100px; }
.bbrr100 {
border-bottom-right-radius: 100px; }
.bblr100 {
border-bottom-left-radius: 100px; }
.bd_1-dotted {
border: 1px dotted; }
.bdt_1-dotted {
border-top: 1px dotted; }
.bdr_1-dotted {
border-right: 1px dotted; }
.bdb_1-dotted {
border-bottom: 1px dotted; }
.bdl_1-dotted {
border-left: 1px dotted; }
.bd_2-dotted {
border: 2px dotted; }
.bdt_2-dotted {
border-top: 2px dotted; }
.bdr_2-dotted {
border-right: 2px dotted; }
.bdb_2-dotted {
border-bottom: 2px dotted; }
.bdl_2-dotted {
border-left: 2px dotted; }
.bd_3-dotted {
border: 3px dotted; }
.bdt_3-dotted {
border-top: 3px dotted; }
.bdr_3-dotted {
border-right: 3px dotted; }
.bdb_3-dotted {
border-bottom: 3px dotted; }
.bdl_3-dotted {
border-left: 3px dotted; }
.bd_4-dotted {
border: 4px dotted; }
.bdt_4-dotted {
border-top: 4px dotted; }
.bdr_4-dotted {
border-right: 4px dotted; }
.bdb_4-dotted {
border-bottom: 4px dotted; }
.bdl_4-dotted {
border-left: 4px dotted; }
.bd_5-dotted {
border: 5px dotted; }
.bdt_5-dotted {
border-top: 5px dotted; }
.bdr_5-dotted {
border-right: 5px dotted; }
.bdb_5-dotted {
border-bottom: 5px dotted; }
.bdl_5-dotted {
border-left: 5px dotted; }
.bd_6-dotted {
border: 6px dotted; }
.bdt_6-dotted {
border-top: 6px dotted; }
.bdr_6-dotted {
border-right: 6px dotted; }
.bdb_6-dotted {
border-bottom: 6px dotted; }
.bdl_6-dotted {
border-left: 6px dotted; }
.bd_7-dotted {
border: 7px dotted; }
.bdt_7-dotted {
border-top: 7px dotted; }
.bdr_7-dotted {
border-right: 7px dotted; }
.bdb_7-dotted {
border-bottom: 7px dotted; }
.bdl_7-dotted {
border-left: 7px dotted; }
.bd_8-dotted {
border: 8px dotted; }
.bdt_8-dotted {
border-top: 8px dotted; }
.bdr_8-dotted {
border-right: 8px dotted; }
.bdb_8-dotted {
border-bottom: 8px dotted; }
.bdl_8-dotted {
border-left: 8px dotted; }
.bd_9-dotted {
border: 9px dotted; }
.bdt_9-dotted {
border-top: 9px dotted; }
.bdr_9-dotted {
border-right: 9px dotted; }
.bdb_9-dotted {
border-bottom: 9px dotted; }
.bdl_9-dotted {
border-left: 9px dotted; }
.bd_10-dotted {
border: 10px dotted; }
.bdt_10-dotted {
border-top: 10px dotted; }
.bdr_10-dotted {
border-right: 10px dotted; }
.bdb_10-dotted {
border-bottom: 10px dotted; }
.bdl_10-dotted {
border-left: 10px dotted; }
.bd_1-dashed {
border: 1px dashed; }
.bdt_1-dashed {
border-top: 1px dashed; }
.bdr_1-dashed {
border-right: 1px dashed; }
.bdb_1-dashed {
border-bottom: 1px dashed; }
.bdl_1-dashed {
border-left: 1px dashed; }
.bd_2-dashed {
border: 2px dashed; }
.bdt_2-dashed {
border-top: 2px dashed; }
.bdr_2-dashed {
border-right: 2px dashed; }
.bdb_2-dashed {
border-bottom: 2px dashed; }
.bdl_2-dashed {
border-left: 2px dashed; }
.bd_3-dashed {
border: 3px dashed; }
.bdt_3-dashed {
border-top: 3px dashed; }
.bdr_3-dashed {
border-right: 3px dashed; }
.bdb_3-dashed {
border-bottom: 3px dashed; }
.bdl_3-dashed {
border-left: 3px dashed; }
.bd_4-dashed {
border: 4px dashed; }
.bdt_4-dashed {
border-top: 4px dashed; }
.bdr_4-dashed {
border-right: 4px dashed; }
.bdb_4-dashed {
border-bottom: 4px dashed; }
.bdl_4-dashed {
border-left: 4px dashed; }
.bd_5-dashed {
border: 5px dashed; }
.bdt_5-dashed {
border-top: 5px dashed; }
.bdr_5-dashed {
border-right: 5px dashed; }
.bdb_5-dashed {
border-bottom: 5px dashed; }
.bdl_5-dashed {
border-left: 5px dashed; }
.bd_6-dashed {
border: 6px dashed; }
.bdt_6-dashed {
border-top: 6px dashed; }
.bdr_6-dashed {
border-right: 6px dashed; }
.bdb_6-dashed {
border-bottom: 6px dashed; }
.bdl_6-dashed {
border-left: 6px dashed; }
.bd_7-dashed {
border: 7px dashed; }
.bdt_7-dashed {
border-top: 7px dashed; }
.bdr_7-dashed {
border-right: 7px dashed; }
.bdb_7-dashed {
border-bottom: 7px dashed; }
.bdl_7-dashed {
border-left: 7px dashed; }
.bd_8-dashed {
border: 8px dashed; }
.bdt_8-dashed {
border-top: 8px dashed; }
.bdr_8-dashed {
border-right: 8px dashed; }
.bdb_8-dashed {
border-bottom: 8px dashed; }
.bdl_8-dashed {
border-left: 8px dashed; }
.bd_9-dashed {
border: 9px dashed; }
.bdt_9-dashed {
border-top: 9px dashed; }
.bdr_9-dashed {
border-right: 9px dashed; }
.bdb_9-dashed {
border-bottom: 9px dashed; }
.bdl_9-dashed {
border-left: 9px dashed; }
.bd_10-dashed {
border: 10px dashed; }
.bdt_10-dashed {
border-top: 10px dashed; }
.bdr_10-dashed {
border-right: 10px dashed; }
.bdb_10-dashed {
border-bottom: 10px dashed; }
.bdl_10-dashed {
border-left: 10px dashed; }
.bd_1-solid {
border: 1px solid; }
.bdt_1-solid {
border-top: 1px solid; }
.bdr_1-solid {
border-right: 1px solid; }
.bdb_1-solid {
border-bottom: 1px solid; }
.bdl_1-solid {
border-left: 1px solid; }
.bd_2-solid {
border: 2px solid; }
.bdt_2-solid {
border-top: 2px solid; }
.bdr_2-solid {
border-right: 2px solid; }
.bdb_2-solid {
border-bottom: 2px solid; }
.bdl_2-solid {
border-left: 2px solid; }
.bd_3-solid {
border: 3px solid; }
.bdt_3-solid {
border-top: 3px solid; }
.bdr_3-solid {
border-right: 3px solid; }
.bdb_3-solid {
border-bottom: 3px solid; }
.bdl_3-solid {
border-left: 3px solid; }
.bd_4-solid {
border: 4px solid; }
.bdt_4-solid {
border-top: 4px solid; }
.bdr_4-solid {
border-right: 4px solid; }
.bdb_4-solid {
border-bottom: 4px solid; }
.bdl_4-solid {
border-left: 4px solid; }
.bd_5-solid {
border: 5px solid; }
.bdt_5-solid {
border-top: 5px solid; }
.bdr_5-solid {
border-right: 5px solid; }
.bdb_5-solid {
border-bottom: 5px solid; }
.bdl_5-solid {
border-left: 5px solid; }
.bd_6-solid {
border: 6px solid; }
.bdt_6-solid {
border-top: 6px solid; }
.bdr_6-solid {
border-right: 6px solid; }
.bdb_6-solid {
border-bottom: 6px solid; }
.bdl_6-solid {
border-left: 6px solid; }
.bd_7-solid {
border: 7px solid; }
.bdt_7-solid {
border-top: 7px solid; }
.bdr_7-solid {
border-right: 7px solid; }
.bdb_7-solid {
border-bottom: 7px solid; }
.bdl_7-solid {
border-left: 7px solid; }
.bd_8-solid {
border: 8px solid; }
.bdt_8-solid {
border-top: 8px solid; }
.bdr_8-solid {
border-right: 8px solid; }
.bdb_8-solid {
border-bottom: 8px solid; }
.bdl_8-solid {
border-left: 8px solid; }
.bd_9-solid {
border: 9px solid; }
.bdt_9-solid {
border-top: 9px solid; }
.bdr_9-solid {
border-right: 9px solid; }
.bdb_9-solid {
border-bottom: 9px solid; }
.bdl_9-solid {
border-left: 9px solid; }
.bd_10-solid {
border: 10px solid; }
.bdt_10-solid {
border-top: 10px solid; }
.bdr_10-solid {
border-right: 10px solid; }
.bdb_10-solid {
border-bottom: 10px solid; }
.bdl_10-solid {
border-left: 10px solid; }
.bd_1-double {
border: 1px double; }
.bdt_1-double {
border-top: 1px double; }
.bdr_1-double {
border-right: 1px double; }
.bdb_1-double {
border-bottom: 1px double; }
.bdl_1-double {
border-left: 1px double; }
.bd_2-double {
border: 2px double; }
.bdt_2-double {
border-top: 2px double; }
.bdr_2-double {
border-right: 2px double; }
.bdb_2-double {
border-bottom: 2px double; }
.bdl_2-double {
border-left: 2px double; }
.bd_3-double {
border: 3px double; }
.bdt_3-double {
border-top: 3px double; }
.bdr_3-double {
border-right: 3px double; }
.bdb_3-double {
border-bottom: 3px double; }
.bdl_3-double {
border-left: 3px double; }
.bd_4-double {
border: 4px double; }
.bdt_4-double {
border-top: 4px double; }
.bdr_4-double {
border-right: 4px double; }
.bdb_4-double {
border-bottom: 4px double; }
.bdl_4-double {
border-left: 4px double; }
.bd_5-double {
border: 5px double; }
.bdt_5-double {
border-top: 5px double; }
.bdr_5-double {
border-right: 5px double; }
.bdb_5-double {
border-bottom: 5px double; }
.bdl_5-double {
border-left: 5px double; }
.bd_6-double {
border: 6px double; }
.bdt_6-double {
border-top: 6px double; }
.bdr_6-double {
border-right: 6px double; }
.bdb_6-double {
border-bottom: 6px double; }
.bdl_6-double {
border-left: 6px double; }
.bd_7-double {
border: 7px double; }
.bdt_7-double {
border-top: 7px double; }
.bdr_7-double {
border-right: 7px double; }
.bdb_7-double {
border-bottom: 7px double; }
.bdl_7-double {
border-left: 7px double; }
.bd_8-double {
border: 8px double; }
.bdt_8-double {
border-top: 8px double; }
.bdr_8-double {
border-right: 8px double; }
.bdb_8-double {
border-bottom: 8px double; }
.bdl_8-double {
border-left: 8px double; }
.bd_9-double {
border: 9px double; }
.bdt_9-double {
border-top: 9px double; }
.bdr_9-double {
border-right: 9px double; }
.bdb_9-double {
border-bottom: 9px double; }
.bdl_9-double {
border-left: 9px double; }
.bd_10-double {
border: 10px double; }
.bdt_10-double {
border-top: 10px double; }
.bdr_10-double {
border-right: 10px double; }
.bdb_10-double {
border-bottom: 10px double; }
.bdl_10-double {
border-left: 10px double; }
.bd-n {
border: none; }
.bdts-n {
border-top-style: none; }
.bdrs-n {
border-right-style: none; }
.bdbs-n {
border-bottom-style: none; }
.bdls-n {
border-left-style: none; }
.olo0 {
outline-offset: 0px; }
.olw0 {
outline-width: 0px; }
.z0 {
z-index: 0; }
.olo1 {
outline-offset: 1px; }
.olw1 {
outline-width: 1px; }
.z1 {
z-index: 1; }
.olo2 {
outline-offset: 2px; }
.olw2 {
outline-width: 2px; }
.z2 {
z-index: 2; }
.olo3 {
outline-offset: 3px; }
.olw3 {
outline-width: 3px; }
.z3 {
z-index: 3; }
.olo4 {
outline-offset: 4px; }
.olw4 {
outline-width: 4px; }
.z4 {
z-index: 4; }
.olo5 {
outline-offset: 5px; }
.olw5 {
outline-width: 5px; }
.z5 {
z-index: 5; }
.olo6 {
outline-offset: 6px; }
.olw6 {
outline-width: 6px; }
.z6 {
z-index: 6; }
.olo7 {
outline-offset: 7px; }
.olw7 {
outline-width: 7px; }
.z7 {
z-index: 7; }
.olo8 {
outline-offset: 8px; }
.olw8 {
outline-width: 8px; }
.z8 {
z-index: 8; }
.olo9 {
outline-offset: 9px; }
.olw9 {
outline-width: 9px; }
.z9 {
z-index: 9; }
.olo10 {
outline-offset: 10px; }
.olw10 {
outline-width: 10px; }
.z10 {
z-index: 10; }
.lh100p {
line-height: 100%; }
.lh110p {
line-height: 110%; }
.lh120p {
line-height: 120%; }
.lh130p {
line-height: 130%; }
.lh140p {
line-height: 140%; }
.lh150p {
line-height: 150%; }
.lh160p {
line-height: 160%; }
.lh170p {
line-height: 170%; }
.lh180p {
line-height: 180%; }
.lh190p {
line-height: 190%; }
.lh200p {
line-height: 200%; }
.lh210p {
line-height: 210%; }
.lh220p {
line-height: 220%; }
.lh230p {
line-height: 230%; }
.lh240p {
line-height: 240%; }
.lh250p {
line-height: 250%; }
.lh260p {
line-height: 260%; }
.lh270p {
line-height: 270%; }
.lh280p {
line-height: 280%; }
.lh290p {
line-height: 290%; }
.lh300p {
line-height: 300%; }
.lh310p {
line-height: 310%; }
.lh320p {
line-height: 320%; }
.lh330p {
line-height: 330%; }
.lh340p {
line-height: 340%; }
.lh350p {
line-height: 350%; }
.lh360p {
line-height: 360%; }
.lh370p {
line-height: 370%; }
.lh380p {
line-height: 380%; }
.lh390p {
line-height: 390%; }
.lh400p {
line-height: 400%; }
.lh410p {
line-height: 410%; }
.lh420p {
line-height: 420%; }
.lh430p {
line-height: 430%; }
.lh440p {
line-height: 440%; }
.lh450p {
line-height: 450%; }
.lh460p {
line-height: 460%; }
.lh470p {
line-height: 470%; }
.lh480p {
line-height: 480%; }
.lh490p {
line-height: 490%; }
.lh500p {
line-height: 500%; }
.lh510p {
line-height: 510%; }
.lh520p {
line-height: 520%; }
.lh530p {
line-height: 530%; }
.lh540p {
line-height: 540%; }
.lh550p {
line-height: 550%; }
.lh560p {
line-height: 560%; }
.lh570p {
line-height: 570%; }
.lh580p {
line-height: 580%; }
.lh590p {
line-height: 590%; }
.lh600p {
line-height: 600%; }
.lh610p {
line-height: 610%; }
.lh620p {
line-height: 620%; }
.lh630p {
line-height: 630%; }
.lh640p {
line-height: 640%; }
.lh650p {
line-height: 650%; }
.lh660p {
line-height: 660%; }
.lh670p {
line-height: 670%; }
.lh680p {
line-height: 680%; }
.lh690p {
line-height: 690%; }
.lh700p {
line-height: 700%; }
.lh710p {
line-height: 710%; }
.lh720p {
line-height: 720%; }
.lh730p {
line-height: 730%; }
.lh740p {
line-height: 740%; }
.lh750p {
line-height: 750%; }
.lh760p {
line-height: 760%; }
.lh770p {
line-height: 770%; }
.lh780p {
line-height: 780%; }
.lh790p {
line-height: 790%; }
.lh800p {
line-height: 800%; }
.lh810p {
line-height: 810%; }
.lh820p {
line-height: 820%; }
.lh830p {
line-height: 830%; }
.lh840p {
line-height: 840%; }
.lh850p {
line-height: 850%; }
.lh860p {
line-height: 860%; }
.lh870p {
line-height: 870%; }
.lh880p {
line-height: 880%; }
.lh890p {
line-height: 890%; }
.lh900p {
line-height: 900%; }
.lh910p {
line-height: 910%; }
.lh920p {
line-height: 920%; }
.lh930p {
line-height: 930%; }
.lh940p {
line-height: 940%; }
.lh950p {
line-height: 950%; }
.lh960p {
line-height: 960%; }
.lh970p {
line-height: 970%; }
.lh980p {
line-height: 980%; }
.lh990p {
line-height: 990%; }
.lh1000p {
line-height: 1000%; }
.w0p {
width: 0%; }
.w1p {
width: 1%; }
.w2p {
width: 2%; }
.w3p {
width: 3%; }
.w4p {
width: 4%; }
.w5p {
width: 5%; }
.w6p {
width: 6%; }
.w7p {
width: 7%; }
.w8p {
width: 8%; }
.w9p {
width: 9%; }
.w10p {
width: 10%; }
.w11p {
width: 11%; }
.w12p {
width: 12%; }
.w13p {
width: 13%; }
.w14p {
width: 14%; }
.w15p {
width: 15%; }
.w16p {
width: 16%; }
.w17p {
width: 17%; }
.w18p {
width: 18%; }
.w19p {
width: 19%; }
.w20p {
width: 20%; }
.w21p {
width: 21%; }
.w22p {
width: 22%; }
.w23p {
width: 23%; }
.w24p {
width: 24%; }
.w25p {
width: 25%; }
.w26p {
width: 26%; }
.w27p {
width: 27%; }
.w28p {
width: 28%; }
.w29p {
width: 29%; }
.w30p {
width: 30%; }
.w31p {
width: 31%; }
.w32p {
width: 32%; }
.w33p {
width: 33%; }
.w34p {
width: 34%; }
.w35p {
width: 35%; }
.w36p {
width: 36%; }
.w37p {
width: 37%; }
.w38p {
width: 38%; }
.w39p {
width: 39%; }
.w40p {
width: 40%; }
.w41p {
width: 41%; }
.w42p {
width: 42%; }
.w43p {
width: 43%; }
.w44p {
width: 44%; }
.w45p {
width: 45%; }
.w46p {
width: 46%; }
.w47p {
width: 47%; }
.w48p {
width: 48%; }
.w49p {
width: 49%; }
.w50p {
width: 50%; }
.w51p {
width: 51%; }
.w52p {
width: 52%; }
.w53p {
width: 53%; }
.w54p {
width: 54%; }
.w55p {
width: 55%; }
.w56p {
width: 56%; }
.w57p {
width: 57%; }
.w58p {
width: 58%; }
.w59p {
width: 59%; }
.w60p {
width: 60%; }
.w61p {
width: 61%; }
.w62p {
width: 62%; }
.w63p {
width: 63%; }
.w64p {
width: 64%; }
.w65p {
width: 65%; }
.w66p {
width: 66%; }
.w67p {
width: 67%; }
.w68p {
width: 68%; }
.w69p {
width: 69%; }
.w70p {
width: 70%; }
.w71p {
width: 71%; }
.w72p {
width: 72%; }
.w73p {
width: 73%; }
.w74p {
width: 74%; }
.w75p {
width: 75%; }
.w76p {
width: 76%; }
.w77p {
width: 77%; }
.w78p {
width: 78%; }
.w79p {
width: 79%; }
.w80p {
width: 80%; }
.w81p {
width: 81%; }
.w82p {
width: 82%; }
.w83p {
width: 83%; }
.w84p {
width: 84%; }
.w85p {
width: 85%; }
.w86p {
width: 86%; }
.w87p {
width: 87%; }
.w88p {
width: 88%; }
.w89p {
width: 89%; }
.w90p {
width: 90%; }
.w91p {
width: 91%; }
.w92p {
width: 92%; }
.w93p {
width: 93%; }
.w94p {
width: 94%; }
.w95p {
width: 95%; }
.w96p {
width: 96%; }
.w97p {
width: 97%; }
.w98p {
width: 98%; }
.w99p {
width: 99%; }
.w100p {
width: 100%; }
.bgp_50p0 {
background-position: 50% 0; }
.bgp_100p0 {
background-position: 100% 0; }
.bgp_0p50p {
background-position: 0 50%; }
.bgp_0p100p {
background-position: 0 100%; }
.bgp_50p50p {
background-position: 50% 50%; }
.bgp_50p100p {
background-position: 50% 100%; }
.bgp_100p50p {
background-position: 100% 50%; }
.bgp_100p100p {
background-position: 100% 100%; } | 0.619701 | 0.153011 |