code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
* {
margin: 0;
}
/* END: Removing default margins */
/* Declaring global-scope CSS variables */
:root {
--main-font: "Lato", sans-serif;
--accent: #8d3938;
--light-bg-color: #fafafa;
--dark-bg-color: #f6f6f6;
--darker-bg-color: #666666;
--main-font-color: #545454;
--light-font-color: #fff;
--dark-font-color: #292929;
}
/* END: Declaring global-scope CSS variables */
/* Default values */
html {
font-size: 15px;
line-height: 1.45;
font-family: var(--main-font);
font-weight: 400;
}
body {
position: relative;
color: var(--main-font-color);
}
/* END: Default values */
.padding-0 {
padding-right: 0;
padding-left: 0;
}
.navbar {
background: rgba(0, 0, 0, 0.65);
box-shadow: 0 8px 6px -6px var(--dark);
}
.navbar-nav {
height: 100%;
}
.navbar-logo {
position: absolute;
right: 40px;
top: 10px;
animation: showlogo 1.1s;
animation-timing-function: ease-in-out;
}
.navbar-logo img {
width: 80px;
}
@media (max-width: 767.98px) {
.navbar-logo img {
width: 60px;
}
}
@keyframes showlogo {
from {
top: -85px;
}
to {
top: 10px;
}
}
.nav-link,
.nav-link:hover {
color: var(--white);
}
.nav-link:hover {
color: var(--white);
}
/* Bootstrap DropDown styling */
.dropdown-toggle::after {
display: none;
}
.dropdown-menu {
margin-top: 0;
padding: 0;
border: 0;
background: rgba(0, 0, 0, 0.65);
}
.dropdown-item:focus,
.dropdown-item:hover {
background: rgba(0, 0, 0, 0.65);
}
.dropdown-menu.fade {
display: block;
max-height: 0;
opacity: 1;
pointer-events: none;
transition: max-height 0.5s ease;
overflow: hidden;
}
.dropdown:hover .dropdown-menu.fade {
max-height: 150px;
pointer-events: auto;
}
/* END: Bootstrap DropDown styling */
.section--dark {
background: var(--dark-bg-color);
}
/* Section styling */
.section {
width: 100%;
box-sizing: border-box;
padding: 40px;
background: var(--light-bg-color);
}
.section__header {
margin-bottom: 35px;
text-align: center;
font-size: 1.5rem;
font-weight: 800;
color: var(--dark-font-color);
}
.section__sub-header {
font-size: 1.1rem;
margin: 15px 0 15px 0;
}
.section__paragraph {
margin-bottom: 5px;
}
.section--centered {
text-align: center;
}
/* END: Section stylign */
/* Score Composition */
.score__team-logo {
width: 100px;
height: 100px;
margin: 0px 18px;
transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
.score__team-logo {
width: 80px;
height: 80px;
}
}
.score__team-logo:hover {
transform: scale3d(1.1, 1.1, 1);
}
.score__info {
display: inline-block;
}
.score__score {
font-size: 3rem;
font-weight: 800;
color: var(--dark-font-color);
}
@media (max-width: 767.98px) {
.score__score {
font-size: 2rem;
}
}
/* END: Score Composition */
/* Footer */
.footer {
background: var(--darker-bg-color);
padding: 40px 0;
}
/* END: Footer */
/* Contact container */
.contact {
padding-inline-start: 0;
}
.contact__item {
list-style-type: none;
text-align: left;
}
/* END: Contact container */
/* NEWS CARDS */
.card-img-wrap {
overflow: hidden;
position: relative;
}
.card-img-wrap:after {
content: "";
position: absolute;
}
.card-img-wrap img {
transition: transform 0.25s;
width: 100%;
}
.card-img-wrap:hover img {
transform: scale(1.2);
}
/* END: NEWS CARDS */
/* MARQUEE News Line */
@-webkit-keyframes scroll {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
100% {
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0);
}
}
@keyframes scroll {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}
.marquee {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
}
.marquee * {
display: inline-block;
padding-left: 100%;
-webkit-animation: scroll 21s infinite linear;
animation: scroll 21s infinite linear;
}
.marquee *:hover {
-webkit-animation-play-state: paused;
animation-play-state: paused;
}
/* END: MARQUEE News Line */
.kv-avatar .krajee-default.file-preview-frame,
.kv-avatar .krajee-default.file-preview-frame:hover {
margin: 0;
padding: 0;
border: none;
box-shadow: none;
text-align: center;
}
.kv-avatar {
display: inline-block;
}
.kv-avatar .file-input {
display: table-cell;
width: 213px;
}
.kv-reqd {
color: red;
font-family: monospace;
font-weight: normal;
}
/* Bootstrap 4 Alerts */
#pageMessages {
position: fixed;
bottom: 15px;
right: 15px;
width: 30%;
}
.alert {
position: relative;
}
.alert .close {
position: absolute;
top: 5px;
right: 5px;
font-size: 1em;
}
.alert .fa {
margin-right:.3em;
}
/* END: Bootstrap 4 Alerts */ | common/css/styles.css | * {
margin: 0;
}
/* END: Removing default margins */
/* Declaring global-scope CSS variables */
:root {
--main-font: "Lato", sans-serif;
--accent: #8d3938;
--light-bg-color: #fafafa;
--dark-bg-color: #f6f6f6;
--darker-bg-color: #666666;
--main-font-color: #545454;
--light-font-color: #fff;
--dark-font-color: #292929;
}
/* END: Declaring global-scope CSS variables */
/* Default values */
html {
font-size: 15px;
line-height: 1.45;
font-family: var(--main-font);
font-weight: 400;
}
body {
position: relative;
color: var(--main-font-color);
}
/* END: Default values */
.padding-0 {
padding-right: 0;
padding-left: 0;
}
.navbar {
background: rgba(0, 0, 0, 0.65);
box-shadow: 0 8px 6px -6px var(--dark);
}
.navbar-nav {
height: 100%;
}
.navbar-logo {
position: absolute;
right: 40px;
top: 10px;
animation: showlogo 1.1s;
animation-timing-function: ease-in-out;
}
.navbar-logo img {
width: 80px;
}
@media (max-width: 767.98px) {
.navbar-logo img {
width: 60px;
}
}
@keyframes showlogo {
from {
top: -85px;
}
to {
top: 10px;
}
}
.nav-link,
.nav-link:hover {
color: var(--white);
}
.nav-link:hover {
color: var(--white);
}
/* Bootstrap DropDown styling */
.dropdown-toggle::after {
display: none;
}
.dropdown-menu {
margin-top: 0;
padding: 0;
border: 0;
background: rgba(0, 0, 0, 0.65);
}
.dropdown-item:focus,
.dropdown-item:hover {
background: rgba(0, 0, 0, 0.65);
}
.dropdown-menu.fade {
display: block;
max-height: 0;
opacity: 1;
pointer-events: none;
transition: max-height 0.5s ease;
overflow: hidden;
}
.dropdown:hover .dropdown-menu.fade {
max-height: 150px;
pointer-events: auto;
}
/* END: Bootstrap DropDown styling */
.section--dark {
background: var(--dark-bg-color);
}
/* Section styling */
.section {
width: 100%;
box-sizing: border-box;
padding: 40px;
background: var(--light-bg-color);
}
.section__header {
margin-bottom: 35px;
text-align: center;
font-size: 1.5rem;
font-weight: 800;
color: var(--dark-font-color);
}
.section__sub-header {
font-size: 1.1rem;
margin: 15px 0 15px 0;
}
.section__paragraph {
margin-bottom: 5px;
}
.section--centered {
text-align: center;
}
/* END: Section stylign */
/* Score Composition */
.score__team-logo {
width: 100px;
height: 100px;
margin: 0px 18px;
transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
.score__team-logo {
width: 80px;
height: 80px;
}
}
.score__team-logo:hover {
transform: scale3d(1.1, 1.1, 1);
}
.score__info {
display: inline-block;
}
.score__score {
font-size: 3rem;
font-weight: 800;
color: var(--dark-font-color);
}
@media (max-width: 767.98px) {
.score__score {
font-size: 2rem;
}
}
/* END: Score Composition */
/* Footer */
.footer {
background: var(--darker-bg-color);
padding: 40px 0;
}
/* END: Footer */
/* Contact container */
.contact {
padding-inline-start: 0;
}
.contact__item {
list-style-type: none;
text-align: left;
}
/* END: Contact container */
/* NEWS CARDS */
.card-img-wrap {
overflow: hidden;
position: relative;
}
.card-img-wrap:after {
content: "";
position: absolute;
}
.card-img-wrap img {
transition: transform 0.25s;
width: 100%;
}
.card-img-wrap:hover img {
transform: scale(1.2);
}
/* END: NEWS CARDS */
/* MARQUEE News Line */
@-webkit-keyframes scroll {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
100% {
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0);
}
}
@keyframes scroll {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}
.marquee {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
}
.marquee * {
display: inline-block;
padding-left: 100%;
-webkit-animation: scroll 21s infinite linear;
animation: scroll 21s infinite linear;
}
.marquee *:hover {
-webkit-animation-play-state: paused;
animation-play-state: paused;
}
/* END: MARQUEE News Line */
.kv-avatar .krajee-default.file-preview-frame,
.kv-avatar .krajee-default.file-preview-frame:hover {
margin: 0;
padding: 0;
border: none;
box-shadow: none;
text-align: center;
}
.kv-avatar {
display: inline-block;
}
.kv-avatar .file-input {
display: table-cell;
width: 213px;
}
.kv-reqd {
color: red;
font-family: monospace;
font-weight: normal;
}
/* Bootstrap 4 Alerts */
#pageMessages {
position: fixed;
bottom: 15px;
right: 15px;
width: 30%;
}
.alert {
position: relative;
}
.alert .close {
position: absolute;
top: 5px;
right: 5px;
font-size: 1em;
}
.alert .fa {
margin-right:.3em;
}
/* END: Bootstrap 4 Alerts */ | 0.311636 | 0.048744 |
.ModBlogC .blog-main-content { padding: 1em 1em 8em 1em }
.ModBlogC .is-post {
border-bottom: 1px solid #ddd;
min-height: 300px;
position: relative;
}
.ModBlogC .is-post header {
margin: 0 0 1em 0;
padding: 1em 0 0 0;
}
.ModBlogC .is-post h2 {
font-size: 3.25em;
line-height: 1.25em
}
.ModBlogC .is-post h2 a, .ModBlogC .is-post h2 a:visited {
color: #222;
text-decoration: none;
}
.ModBlogC .is-post h2 a:hover { color: #666 }
.ModBlogC .is-post .byline {
color: #999;
display: block;
margin-bottom: -0.65em;
margin-top: 1em;
position: relative;
top: -0.65em;
}
.ModBlogC .is-post p, .ModBlogC .is-post ul, .ModBlogC .is-post ol, .ModBlogC .is-post dl, .ModBlogC .is-post table { margin-bottom: 1em }
.ModBlogC .is-post section, .ModBlogC article.is-post { margin-bottom: 1em }
.ModBlogC .is-post section > :last-child, .ModBlogC article.is-post > :last-child, .ModBlogC .is-post section > .inner > :last-child, .ModBlogC article.is-post > .inner > :last-child, .ModBlogC .is-post section:last-child, .ModBlogC article.is-post:last-child { margin-bottom: 0 }
.ModBlogC .is-post .image { display: inline-block }
.ModBlogC .is-post .image img {
display: block;
width: 100%
}
.ModBlogC .is-post .image-full {
display: block;
margin: 0 0 2em 0;
width: 100%;
}
.ModBlogC .is-post .info .date .unpublished div {
color: #f00;
display: block;
font-size: 1.4em;
padding-top: 10px;
}
.ModBlogC .is-post .info .tags { margin: 0 }
.ModBlogC .is-post .info .tags a {
color: #999;
font-size: .8em;
font-weight: 700;
text-decoration: none;
}
.ModBlogC .is-post .info {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
background-color: #eee;
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
box-sizing: border-box;
left: -7.5em;
overflow: hidden;
padding: 1em;
position: absolute;
top: 0;
width: 5.5em;
}
.ModBlogC .is-post .info:after {
content: '';
display: block;
height: 100%;
left: 0;
opacity: .5;
position: absolute;
top: 0;
width: 100%;
z-index: 0
}
.ModBlogC .is-post .info .date {
border-bottom: solid 1px #ddd;
color: #999;
color: #999;
display: block;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 1.5em;
font-weight: 400;
margin: 0 0 .75em 0;
padding: 0 0 1em 0;
position: relative;
text-align: center;
z-index: 1;
}
.ModBlogC .is-post .info .date .year {
color: #999;
display: block;
font-size: .9em;
font-weight: 700;
padding: .75em 0 0 0;
}
.ModBlogC .is-post .info .date .day {
color: #999;
display: block;
font-size: 1.5em;
font-weight: 700;
margin: .45em 0 0 0;
}
.ModBlogC .is-post .info .tags {
position: relative;
z-index: 1
}
.ModBlogC .is-post .info .tags li {
list-style-type: none;
margin: .35em 0 0 0;
}
.ModBlogC .is-post .info .tags li a {
display: block;
text-align: right
}
.ModBlogC .is-post .info .tags li a:hover, .ModBlogC .is-post .info .tags li a:active { color: #000 }
.ModBlogC .is-post .pager .pages {
display: inline-block;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700
}
.ModBlogC .is-post .pager .pages span {
display: inline-block;
margin: 0 .4em 0 0;
text-align: center;
width: 1.5em;
}
.ModBlogC .is-post .pager .pages a {
-moz-transition: background-color .25s ease-in-out;
-ms-transition: background-color .25s ease-in-out;
-o-transition: background-color .25s ease-in-out;
-webkit-transition: background-color .25s ease-in-out;
background-color: #e8e8e8;
border-radius: .4em;
box-shadow: inset 0 .075em .25em 0 rgba(0, 0, 0, 0.1);
color: inherit;
color: #565656;
cursor: pointer;
display: inline-block;
margin: 0 .4em 0 0;
text-align: center;
text-decoration: none;
transition: background-color .25s ease-in-out;
}
.ModBlogC .is-post .pager .pages a:hover { background-color: #dadada }
.ModBlogC .is-post .pager .pages a.active {
background-color: #364050;
box-shadow: none;
color: #fff;
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5)
}
a.blog_commentLinkSelected {
color: #3B96B6 !important;
cursor: default
}
.ModBlogC .is-post h2 a, .ModBlogC .is-post h2 { font-size: larger }
.ModBlogC div.stats { clear: both }
.ModBlogC div.stats div.stat {
color: #999;
display: inline;
float: right;
}
.ModBlogC div.summary {
color: #333;
padding-bottom: 2em
}
.ModBlogC .post-details { border-bottom: 0 }
.ModBlogC .post-details .socialbar {
border: 1px solid #999;
border-radius: .4em;
font-size: 1.5em;
margin-bottom: 8px;
padding: 4px;
}
.ModBlogC .post-details .socialbar .sharrre a { padding-left: 10px }
.ModBlogC .post-details header, .ModBlogC .selectbanner {
background-color: #34383b;
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
padding: 15px 10px;
}
.ModBlogC .post-details header h2, .ModBlogC .post-details header .byline, .ModBlogC .post-details header .byline a, .ModBlogC .post-details header .byline a:visited { color: #ddd }
.ModBlogC .post-details header .byline a:hover { color: #fff }
.ModBlogC span.removeselection {
float: right;
margin-top: -8px
}
.ModBlogC span.removeselection a { color: #aaa }
.ModBlogC a.taglink {
background-color: #C94663;
background-image: url("images/bg1.png");
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
margin-right: 8px;
padding: 4px 8px;
}
.ModBlogC a.pagebtn {
background-color: #ccc;
background-image: url("images/bg1.png");
border-radius: .4em;
color: #fff;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 4px;
padding: 10px;
text-align: center;
text-decoration: none;
}
.ModBlogC a.pagebtn:hover {
background-color: #C94663;
background-image: url("images/bg1.png")
}
.ModBlogC a.active, .ModBlogC a.active:hover {
background-color: #364050;
background-image: url("images/bg1.png")
}
.ModBlogC .pager span {
font-weight: bold;
margin-right: 4px;
padding: 10px;
}
.ModBlogC .blog_comments { padding: 10px 0 10px 0 }
.ModBlogC .blog_comments .blog_comment_totals {
font-weight: bold;
padding-left: 10px;
}
.ModBlogC .blog_comment { padding: 10px 0 0 10px }
.ModBlogC .blog_comment .blog_comment_pic {
float: left;
padding: 2px 5px 5px 0
}
.ModBlogC .blog_comment .blog_comment_details .blog_comment_actions { color: #888 }
.ModBlogC .blog_topPad { padding-top: 20px } | Templates/Blog/Whatever/template.css | .ModBlogC .blog-main-content { padding: 1em 1em 8em 1em }
.ModBlogC .is-post {
border-bottom: 1px solid #ddd;
min-height: 300px;
position: relative;
}
.ModBlogC .is-post header {
margin: 0 0 1em 0;
padding: 1em 0 0 0;
}
.ModBlogC .is-post h2 {
font-size: 3.25em;
line-height: 1.25em
}
.ModBlogC .is-post h2 a, .ModBlogC .is-post h2 a:visited {
color: #222;
text-decoration: none;
}
.ModBlogC .is-post h2 a:hover { color: #666 }
.ModBlogC .is-post .byline {
color: #999;
display: block;
margin-bottom: -0.65em;
margin-top: 1em;
position: relative;
top: -0.65em;
}
.ModBlogC .is-post p, .ModBlogC .is-post ul, .ModBlogC .is-post ol, .ModBlogC .is-post dl, .ModBlogC .is-post table { margin-bottom: 1em }
.ModBlogC .is-post section, .ModBlogC article.is-post { margin-bottom: 1em }
.ModBlogC .is-post section > :last-child, .ModBlogC article.is-post > :last-child, .ModBlogC .is-post section > .inner > :last-child, .ModBlogC article.is-post > .inner > :last-child, .ModBlogC .is-post section:last-child, .ModBlogC article.is-post:last-child { margin-bottom: 0 }
.ModBlogC .is-post .image { display: inline-block }
.ModBlogC .is-post .image img {
display: block;
width: 100%
}
.ModBlogC .is-post .image-full {
display: block;
margin: 0 0 2em 0;
width: 100%;
}
.ModBlogC .is-post .info .date .unpublished div {
color: #f00;
display: block;
font-size: 1.4em;
padding-top: 10px;
}
.ModBlogC .is-post .info .tags { margin: 0 }
.ModBlogC .is-post .info .tags a {
color: #999;
font-size: .8em;
font-weight: 700;
text-decoration: none;
}
.ModBlogC .is-post .info {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
background-color: #eee;
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
box-sizing: border-box;
left: -7.5em;
overflow: hidden;
padding: 1em;
position: absolute;
top: 0;
width: 5.5em;
}
.ModBlogC .is-post .info:after {
content: '';
display: block;
height: 100%;
left: 0;
opacity: .5;
position: absolute;
top: 0;
width: 100%;
z-index: 0
}
.ModBlogC .is-post .info .date {
border-bottom: solid 1px #ddd;
color: #999;
color: #999;
display: block;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 1.5em;
font-weight: 400;
margin: 0 0 .75em 0;
padding: 0 0 1em 0;
position: relative;
text-align: center;
z-index: 1;
}
.ModBlogC .is-post .info .date .year {
color: #999;
display: block;
font-size: .9em;
font-weight: 700;
padding: .75em 0 0 0;
}
.ModBlogC .is-post .info .date .day {
color: #999;
display: block;
font-size: 1.5em;
font-weight: 700;
margin: .45em 0 0 0;
}
.ModBlogC .is-post .info .tags {
position: relative;
z-index: 1
}
.ModBlogC .is-post .info .tags li {
list-style-type: none;
margin: .35em 0 0 0;
}
.ModBlogC .is-post .info .tags li a {
display: block;
text-align: right
}
.ModBlogC .is-post .info .tags li a:hover, .ModBlogC .is-post .info .tags li a:active { color: #000 }
.ModBlogC .is-post .pager .pages {
display: inline-block;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700
}
.ModBlogC .is-post .pager .pages span {
display: inline-block;
margin: 0 .4em 0 0;
text-align: center;
width: 1.5em;
}
.ModBlogC .is-post .pager .pages a {
-moz-transition: background-color .25s ease-in-out;
-ms-transition: background-color .25s ease-in-out;
-o-transition: background-color .25s ease-in-out;
-webkit-transition: background-color .25s ease-in-out;
background-color: #e8e8e8;
border-radius: .4em;
box-shadow: inset 0 .075em .25em 0 rgba(0, 0, 0, 0.1);
color: inherit;
color: #565656;
cursor: pointer;
display: inline-block;
margin: 0 .4em 0 0;
text-align: center;
text-decoration: none;
transition: background-color .25s ease-in-out;
}
.ModBlogC .is-post .pager .pages a:hover { background-color: #dadada }
.ModBlogC .is-post .pager .pages a.active {
background-color: #364050;
box-shadow: none;
color: #fff;
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5)
}
a.blog_commentLinkSelected {
color: #3B96B6 !important;
cursor: default
}
.ModBlogC .is-post h2 a, .ModBlogC .is-post h2 { font-size: larger }
.ModBlogC div.stats { clear: both }
.ModBlogC div.stats div.stat {
color: #999;
display: inline;
float: right;
}
.ModBlogC div.summary {
color: #333;
padding-bottom: 2em
}
.ModBlogC .post-details { border-bottom: 0 }
.ModBlogC .post-details .socialbar {
border: 1px solid #999;
border-radius: .4em;
font-size: 1.5em;
margin-bottom: 8px;
padding: 4px;
}
.ModBlogC .post-details .socialbar .sharrre a { padding-left: 10px }
.ModBlogC .post-details header, .ModBlogC .selectbanner {
background-color: #34383b;
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
padding: 15px 10px;
}
.ModBlogC .post-details header h2, .ModBlogC .post-details header .byline, .ModBlogC .post-details header .byline a, .ModBlogC .post-details header .byline a:visited { color: #ddd }
.ModBlogC .post-details header .byline a:hover { color: #fff }
.ModBlogC span.removeselection {
float: right;
margin-top: -8px
}
.ModBlogC span.removeselection a { color: #aaa }
.ModBlogC a.taglink {
background-color: #C94663;
background-image: url("images/bg1.png");
border-radius: .4em;
box-shadow: 0 0 .25em 0 rgba(0, 0, 0, 0.25);
margin-right: 8px;
padding: 4px 8px;
}
.ModBlogC a.pagebtn {
background-color: #ccc;
background-image: url("images/bg1.png");
border-radius: .4em;
color: #fff;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 4px;
padding: 10px;
text-align: center;
text-decoration: none;
}
.ModBlogC a.pagebtn:hover {
background-color: #C94663;
background-image: url("images/bg1.png")
}
.ModBlogC a.active, .ModBlogC a.active:hover {
background-color: #364050;
background-image: url("images/bg1.png")
}
.ModBlogC .pager span {
font-weight: bold;
margin-right: 4px;
padding: 10px;
}
.ModBlogC .blog_comments { padding: 10px 0 10px 0 }
.ModBlogC .blog_comments .blog_comment_totals {
font-weight: bold;
padding-left: 10px;
}
.ModBlogC .blog_comment { padding: 10px 0 0 10px }
.ModBlogC .blog_comment .blog_comment_pic {
float: left;
padding: 2px 5px 5px 0
}
.ModBlogC .blog_comment .blog_comment_details .blog_comment_actions { color: #888 }
.ModBlogC .blog_topPad { padding-top: 20px } | 0.359814 | 0.079317 |
footer {
margin-top: 80px;
}
.footer-banner {
height: 40px;
background-color: #0E820C;
}
.footer {
height: 110px;
background-color: #165106;
position: relative;
}
.footer-content {
height: 60%;
display: flex;
align-items: center;
}
/*---------------------------------Links--------------------------------------*/
.footer-links {
float: left;
width: 35%;
padding-top: 30px;
justify-content: space-evenly;
font-size: 0.9em;
}
.footer-links a {
color: #999999;
text-decoration: none;
padding-bottom: 4px;
margin-bottom: 6px;
border-bottom: 1px transparent;
transition: border 0.5s;
}
.footer-links a:hover {
border-bottom: 1px solid #999999;
}
/*---------------------------------Icons--------------------------------------*/
.footer-icons {
float: right;
width: 20%;
margin-right: 9%;
padding-top: 20px;
justify-content: space-around;
font-size: 1.5em;
color: #999999;
}
.icon-single { color: #999999; }
.icon-single:hover {
color: #C3C3C3;
transition: color 0.2s;
cursor: pointer;
}
.icon-single:after {
font-size: 0.5em;
position: absolute;
z-index: 1;
padding-top: 2px;
}
.footer-icons > a { text-decoration: none; }
.contact-us::after {
content: 'Contact Us';
transform: translate(-66%, 160%);
}
.facebook::after {
content: 'Visit our Facebook';
transform: translate(-52%, 160%);
}
.footer-rights {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 0.8em;
color: #717171;
white-space: nowrap;
}
/*--------------------------------Queries-------------------------------------*/
@media only screen and (max-width: 850px) {
.contact-us { margin-right: 30px; }
.footer-icons { margin-right: 75px; }
}
@media only screen and (max-width: 767px) {
.footer-icons i::after { content: ''; }
.footer-icons { font-size: 2em; }
.footer-links { width: 50%; }
}
@media only screen and (max-width: 480px) {
.footer-links { display: none; }
.footer-icons {
float: none;
width: 70%;
margin: 0 auto;
padding-top: 10px;
justify-content: space-evenly;
}
} | client/src/components/Footer/Footer.css | footer {
margin-top: 80px;
}
.footer-banner {
height: 40px;
background-color: #0E820C;
}
.footer {
height: 110px;
background-color: #165106;
position: relative;
}
.footer-content {
height: 60%;
display: flex;
align-items: center;
}
/*---------------------------------Links--------------------------------------*/
.footer-links {
float: left;
width: 35%;
padding-top: 30px;
justify-content: space-evenly;
font-size: 0.9em;
}
.footer-links a {
color: #999999;
text-decoration: none;
padding-bottom: 4px;
margin-bottom: 6px;
border-bottom: 1px transparent;
transition: border 0.5s;
}
.footer-links a:hover {
border-bottom: 1px solid #999999;
}
/*---------------------------------Icons--------------------------------------*/
.footer-icons {
float: right;
width: 20%;
margin-right: 9%;
padding-top: 20px;
justify-content: space-around;
font-size: 1.5em;
color: #999999;
}
.icon-single { color: #999999; }
.icon-single:hover {
color: #C3C3C3;
transition: color 0.2s;
cursor: pointer;
}
.icon-single:after {
font-size: 0.5em;
position: absolute;
z-index: 1;
padding-top: 2px;
}
.footer-icons > a { text-decoration: none; }
.contact-us::after {
content: 'Contact Us';
transform: translate(-66%, 160%);
}
.facebook::after {
content: 'Visit our Facebook';
transform: translate(-52%, 160%);
}
.footer-rights {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 0.8em;
color: #717171;
white-space: nowrap;
}
/*--------------------------------Queries-------------------------------------*/
@media only screen and (max-width: 850px) {
.contact-us { margin-right: 30px; }
.footer-icons { margin-right: 75px; }
}
@media only screen and (max-width: 767px) {
.footer-icons i::after { content: ''; }
.footer-icons { font-size: 2em; }
.footer-links { width: 50%; }
}
@media only screen and (max-width: 480px) {
.footer-links { display: none; }
.footer-icons {
float: none;
width: 70%;
margin: 0 auto;
padding-top: 10px;
justify-content: space-evenly;
}
} | 0.319865 | 0.066934 |
@media all { .hide { display: none; } }
@media print {
.noprint, div.indexgroup, .backlinktop, .backlinkbottom { display: none }
* {
border-color: black !important;
color: black !important;
background-color: transparent !important;
background-image: none !important;
}
}
@media screen, tty, tv, projection {
.noscreen { display: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:active { text-decoration: none; }
a:hover { background: #fec; text-decoration: none; }
body.contentspage a { text-decoration: none; }
a.u { color: #000 !important; text-decoration: none; }
body.pod {
font-family: Georgia, "Times New Roman", serif;
margin: 10px 30px;
color: #000;
background-color: #fff;
}
p.indexlink { text-align: right }
body.pod h1 { font-size: large }
body.pod h2 { font-size: large }
body.pod dt {
font-size: 105%; /* just a wee bit more than normal */
}
/* Indent the body text and lower headings. */
body.pod p { margin-left: 2em }
body.pod dl { margin-left: 2em }
body.pod ol { margin-left: 2em }
body.pod ul { margin-left: 2em }
body.pod dl p { margin-left: 0 }
body.pod ol p { margin-left: 0 }
body.pod ul p { margin-left: 0 }
body.pod pre { margin-left: 2em }
body.pod dl pre { margin-left: 0 }
body.pod ol pre { margin-left: 0 }
body.pod ul pre { margin-left: 0 }
body.pod h2 { margin-left: 0.5em }
body.pod h3 { margin-left: 1em }
body.pod h4 { margin-left: 1em }
/* Special handling for the synopsis section to outdent the first line. */
body.pod .synopsis { padding-left: 2em; text-indent: -2em; }
body.contentspage {
font-family: Georgia, "Times New Roman", serif;
margin: 10px 30px;
color: #000;
background-color: #fff;
}
body.contentspage h1 {
color: #000;
margin-left: 1em;
margin-right: 1em;
text-indent: -.9em;
font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
font-weight: normal;
border-top: medium solid #000;
border-bottom: medium solid #000;
text-align: center;
}
body.contentspage th {
font-weight: bold;
font-size: large;
text-align: left;
}
body.contentspage td { padding: 0 0.5em; }
} | doc/man-pages/style.css |
@media all { .hide { display: none; } }
@media print {
.noprint, div.indexgroup, .backlinktop, .backlinkbottom { display: none }
* {
border-color: black !important;
color: black !important;
background-color: transparent !important;
background-image: none !important;
}
}
@media screen, tty, tv, projection {
.noscreen { display: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:active { text-decoration: none; }
a:hover { background: #fec; text-decoration: none; }
body.contentspage a { text-decoration: none; }
a.u { color: #000 !important; text-decoration: none; }
body.pod {
font-family: Georgia, "Times New Roman", serif;
margin: 10px 30px;
color: #000;
background-color: #fff;
}
p.indexlink { text-align: right }
body.pod h1 { font-size: large }
body.pod h2 { font-size: large }
body.pod dt {
font-size: 105%; /* just a wee bit more than normal */
}
/* Indent the body text and lower headings. */
body.pod p { margin-left: 2em }
body.pod dl { margin-left: 2em }
body.pod ol { margin-left: 2em }
body.pod ul { margin-left: 2em }
body.pod dl p { margin-left: 0 }
body.pod ol p { margin-left: 0 }
body.pod ul p { margin-left: 0 }
body.pod pre { margin-left: 2em }
body.pod dl pre { margin-left: 0 }
body.pod ol pre { margin-left: 0 }
body.pod ul pre { margin-left: 0 }
body.pod h2 { margin-left: 0.5em }
body.pod h3 { margin-left: 1em }
body.pod h4 { margin-left: 1em }
/* Special handling for the synopsis section to outdent the first line. */
body.pod .synopsis { padding-left: 2em; text-indent: -2em; }
body.contentspage {
font-family: Georgia, "Times New Roman", serif;
margin: 10px 30px;
color: #000;
background-color: #fff;
}
body.contentspage h1 {
color: #000;
margin-left: 1em;
margin-right: 1em;
text-indent: -.9em;
font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
font-weight: normal;
border-top: medium solid #000;
border-bottom: medium solid #000;
text-align: center;
}
body.contentspage th {
font-weight: bold;
font-size: large;
text-align: left;
}
body.contentspage td { padding: 0 0.5em; }
} | 0.538498 | 0.100481 |
REQUIRED to hide the non-active tab content.
But do not hide them in the print stylesheet!
--------------------------------------------------*/
.tabberlive .tabbertabhide {
display:none;
}
/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.tabber {
}
.tabberlive {
margin-top:1em;
/* background: #FFFFFF;
*/
}
/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
ul.tabbernav
{
margin:0;
padding: 4px 0;
border-bottom: 1px solid #e8e8e8;
font: bold 12px Verdana, sans-serif;
}
ul.tabbernav li
{
list-style: none;
margin: 0;
display: inline;
background:url("../Common/images/tab_right.gif") no-repeat right top;
padding:5px 0px;
}
ul.tabbernav li.TabLiDisabled
{
list-style: none;
margin: 0;
display: inline;
background:url("../Common/images/tab_right.gif") no-repeat right top;
padding:5px 0px;
}
ul.tabbernav li a
{
/* padding: 3px 0.5em;*/
/* margin-left: 3px;*/
/* border: 1px solid #778;*/
/* border-bottom: none;
/* background: #F1F4FA;*/
/* text-decoration: none;*/
background:url("../Common/images/tab_left.gif") no-repeat left top;
padding:5px 15px;
}
ul.tabbernav li a:link { color: #222222; }
ul.tabbernav li a:visited { color: #667; }
ul.tabbernav li a.TabAdisabled
{
background:url("../Common/images/tab_left.gif") no-repeat left top;
padding:5px 15px;
color: #909090;
}
ul.tabbernav li:hover
{
/* background:url("../Common/images/norm_right_hover.gif") no-repeat right top;
/* color: #000;
background: #FFFFFF;
border-color: #227;*/
}
ul.tabbernav li a:hover
{
/* background:url("../Common/images/norm_left_hover.gif") no-repeat left top;
/* color: #000;
background: #FFFFFF;
border-color: #227;*/
}
ul.tabbernav li.tabberactive
{
background:url("../Common/images/tab_selected_right.gif") no-repeat right top;
/* background-color: #fff;
border-bottom: 1px solid #fff;*/
}
ul.tabbernav li.tabberactive a
{
background:url("../Common/images/tab_selected_left.gif") no-repeat left top;
/* background-color: #fff;
border-bottom: 1px solid #fff;*/
}
ul.tabbernav li.tabberactive a:hover
{
/* color: #000;
background: white;
border-bottom: 1px solid white;*/
}
/*--------------------------------------------------
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.tabberlive .tabbertab {
padding:0px;
border:1px solid #aaa;
border-right:0;
border-top:0;
border-bottom:0;
border-left:0;
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
display:none;
}
.tabberlive .tabbertab h3 {
display:none;
}
/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
height:200px;
overflow:auto;
} | gyaneo/Common/css/tab.css | REQUIRED to hide the non-active tab content.
But do not hide them in the print stylesheet!
--------------------------------------------------*/
.tabberlive .tabbertabhide {
display:none;
}
/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.tabber {
}
.tabberlive {
margin-top:1em;
/* background: #FFFFFF;
*/
}
/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
ul.tabbernav
{
margin:0;
padding: 4px 0;
border-bottom: 1px solid #e8e8e8;
font: bold 12px Verdana, sans-serif;
}
ul.tabbernav li
{
list-style: none;
margin: 0;
display: inline;
background:url("../Common/images/tab_right.gif") no-repeat right top;
padding:5px 0px;
}
ul.tabbernav li.TabLiDisabled
{
list-style: none;
margin: 0;
display: inline;
background:url("../Common/images/tab_right.gif") no-repeat right top;
padding:5px 0px;
}
ul.tabbernav li a
{
/* padding: 3px 0.5em;*/
/* margin-left: 3px;*/
/* border: 1px solid #778;*/
/* border-bottom: none;
/* background: #F1F4FA;*/
/* text-decoration: none;*/
background:url("../Common/images/tab_left.gif") no-repeat left top;
padding:5px 15px;
}
ul.tabbernav li a:link { color: #222222; }
ul.tabbernav li a:visited { color: #667; }
ul.tabbernav li a.TabAdisabled
{
background:url("../Common/images/tab_left.gif") no-repeat left top;
padding:5px 15px;
color: #909090;
}
ul.tabbernav li:hover
{
/* background:url("../Common/images/norm_right_hover.gif") no-repeat right top;
/* color: #000;
background: #FFFFFF;
border-color: #227;*/
}
ul.tabbernav li a:hover
{
/* background:url("../Common/images/norm_left_hover.gif") no-repeat left top;
/* color: #000;
background: #FFFFFF;
border-color: #227;*/
}
ul.tabbernav li.tabberactive
{
background:url("../Common/images/tab_selected_right.gif") no-repeat right top;
/* background-color: #fff;
border-bottom: 1px solid #fff;*/
}
ul.tabbernav li.tabberactive a
{
background:url("../Common/images/tab_selected_left.gif") no-repeat left top;
/* background-color: #fff;
border-bottom: 1px solid #fff;*/
}
ul.tabbernav li.tabberactive a:hover
{
/* color: #000;
background: white;
border-bottom: 1px solid white;*/
}
/*--------------------------------------------------
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.tabberlive .tabbertab {
padding:0px;
border:1px solid #aaa;
border-right:0;
border-top:0;
border-bottom:0;
border-left:0;
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
display:none;
}
.tabberlive .tabbertab h3 {
display:none;
}
/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
height:200px;
overflow:auto;
} | 0.235548 | 0.063686 |
.text-xl {
font-size: 2rem;
padding: 1rem;
}
.text-lg {
font-size: 1.5rem;
padding: 0.75rem;
}
.text-md {
font-size: 1rem;
padding: 0.5rem;
}
.text-sm {
font-size: 0.6rem;
padding: 0.3rem;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
.UP {
text-transform: uppercase;
}
.tp-0_5 {
padding: 0.5rem;
}
.tp-1 {
padding: 1rem;
}
.tp-1_5 {
padding: 1.5rem;
}
.tp-2 {
padding: 2rem;
}
.tp-2_5 {
padding: 2.5rem;
}
.tp-3 {
padding: 3rem;
}
.tm-0_5 {
margin: 0.5rem;
}
.tm-1 {
margin: 1rem;
}
.tm-1_5 {
margin: 1.5rem;
}
.tm-2 {
margin: 2rem;
}
.tm-2_5 {
margin: 2.5rem;
}
.tm-3 {
margin: 3rem;
}
.tm-3_5 {
margin: 3.5rem;
}
.btn {
margin: 0.25rem 0;
display: inline-block;
font-weight: 500;
color: #f8f9f7;
font-family: inherit;
text-align: center;
font-size: 1rem;
line-height: 1.5;
vertical-align: middle;
cursor: pointer;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
border-radius: 0.25rem;
text-decoration: none;
box-shadow: 0 1px 2px #000000;
}
.btn-prim-c {
background-color: #1177ff;
transition: all 0.5s ease;
}
.btn-prim-c:hover {
transition: all 0.5s ease;
background-color: #005fdd;
color: #f8f9f7;
box-shadow: 0 1px 20px #000000;
}
.btn-secondary-c {
background-color: #9daaa0;
transition: all 0.5s ease;
}
.btn-secondary-c:hover {
transition: all 0.5s ease;
background-color: #829286;
color: #f8f9f7;
}
.btn-success-c {
background-color: #22aa44;
transition: all 0.5s ease;
}
.btn-success-c:hover {
transition: all 0.5s ease;
background-color: #1a8033;
color: #f8f9f7;
}
.btn-danger-c {
background-color: #cc3b3b;
transition: all 0.5s ease;
}
.btn-danger-c:hover {
transition: all 0.5s ease;
background-color: #a82c2c;
color: #f8f9f7;
}
.btn-warning-c {
background-color: #ffbb33;
transition: all 0.5s ease;
color: #0a000e;
transition: all 0.5s ease;
}
.btn-warning-c:hover {
transition: all 0.5s ease;
background-color: #ffaa00;
color: #f8f9f7;
}
.btn-info-c {
background-color: #11a2b2;
transition: all 0.5s ease;
}
.btn-info-c:hover {
transition: all 0.5s ease;
background-color: #0d7883;
color: #f8f9f7;
}
.btn-light-c {
background-color: #f8f9f7;
transition: all 0.5s ease;
color: #0a000e;
transition: all 0.5s ease;
}
.btn-light-c:hover {
transition: all 0.5s ease;
background-color: #dfe3da;
color: #f8f9f7;
}
.btn-dark-c {
background-color: #0a000e;
transition: all 0.5s ease;
}
.btn-dark-c:hover {
transition: all 0.5s ease;
background-color: black;
color: #f8f9f7;
}
.btn-link-c {
background-color: #1177ff;
transition: all 0.5s ease;
background-color: transparent;
color: #1177ff;
transition: all 0.5s ease;
}
.btn-link-c:hover {
transition: all 0.5s ease;
background-color: #005fdd;
color: #f8f9f7;
background-color: transparent;
color: #005fdd;
text-decoration: underline;
transition: all 0.5s ease;
}
.btn-outline-prim-c {
color: #1177ff;
border: 1px solid #1177ff;
transition: all 0.5s ease;
}
.btn-outline-prim-c:hover {
transition: all 0.5s ease;
background-color: #1177ff;
color: #f8f9f7;
}
.btn-outline-secondary-c {
color: #9daaa0;
border: 1px solid #9daaa0;
transition: all 0.5s ease;
}
.btn-outline-secondary-c:hover {
transition: all 0.5s ease;
background-color: #9daaa0;
color: #f8f9f7;
}
.btn-outline-success-c {
color: #22aa44;
border: 1px solid #22aa44;
transition: all 0.5s ease;
}
.btn-outline-success-c:hover {
transition: all 0.5s ease;
background-color: #22aa44;
color: #f8f9f7;
}
.btn-outline-danger-c {
color: #cc3b3b;
border: 1px solid #cc3b3b;
transition: all 0.5s ease;
}
.btn-outline-danger-c:hover {
transition: all 0.5s ease;
background-color: #cc3b3b;
color: #f8f9f7;
}
.btn-outline-warning-c {
color: #ffbb33;
border: 1px solid #ffbb33;
transition: all 0.5s ease;
}
.btn-outline-warning-c:hover {
transition: all 0.5s ease;
background-color: #ffbb33;
color: #f8f9f7;
color: black;
transition: all 0.5s ease;
}
.btn-outline-info-c {
color: #11a2b2;
border: 1px solid #11a2b2;
transition: all 0.5s ease;
}
.btn-outline-info-c:hover {
transition: all 0.5s ease;
background-color: #11a2b2;
color: #f8f9f7;
}
.btn-outline-light-c {
color: #f8f9f7;
border: 1px solid #f8f9f7;
transition: all 0.5s ease;
color: #131510;
}
.btn-outline-light-c:hover {
transition: all 0.5s ease;
background-color: #f8f9f7;
color: #f8f9f7;
background-color: #dfe3da;
color: #f8f9f7;
}
.btn-outline-dark-c {
color: #0a000e;
border: 1px solid #0a000e;
transition: all 0.5s ease;
}
.btn-outline-dark-c:hover {
transition: all 0.5s ease;
background-color: #0a000e;
color: #f8f9f7;
}
.btn-lg {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.btn-sm {
padding: 0.3rem 0.5rem;
font-size: 0.8rem;
line-height: 1.1rem;
border-radius: 0.1rem;
}
.btn-block {
width: 100%;
}
.btn-group {
margin: 0 0.25rem;
position: relative;
display: inline-flex;
vertical-align: middle;
}
.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
a.btn-Neon {
font-size: 1.3rem;
font-weight: 500;
text-align: center;
text-decoration: none;
position: relative;
display: inline-block;
overflow: hidden;
color: inherit;
transition: 0.5s;
}
a.btn-Neon-Red {
color: #f40303;
background-color: transparent;
}
a.btn-Neon-Red:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #f40303;
box-shadow: 0 0 5px #f40303, 0 0 25px #f40303, 0 0 50px #f40303, 0 0 200px #f40303;
}
a.btn-Neon-Red span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Red span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f40303);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Red span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f40303);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Red span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f40303);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Red span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f40303);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Blue {
color: #032ff4;
background-color: transparent;
}
a.btn-Neon-Blue:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #032ff4;
box-shadow: 0 0 5px #032ff4, 0 0 25px #032ff4, 0 0 50px #032ff4, 0 0 200px #032ff4;
}
a.btn-Neon-Blue span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Blue span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #032ff4);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Blue span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #032ff4);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Blue span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #032ff4);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Blue span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #032ff4);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Green {
color: #03f423;
background-color: transparent;
}
a.btn-Neon-Green:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #03f423;
box-shadow: 0 0 5px #03f423, 0 0 25px #03f423, 0 0 50px #03f423, 0 0 200px #03f423;
}
a.btn-Neon-Green span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Green span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #03f423);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Green span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #03f423);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Green span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #03f423);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Green span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #03f423);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Yellow {
color: #f0f403;
background-color: transparent;
}
a.btn-Neon-Yellow:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #f0f403;
box-shadow: 0 0 5px #f0f403, 0 0 25px #f0f403, 0 0 50px #f0f403, 0 0 200px #f0f403;
}
a.btn-Neon-Yellow span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Yellow span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f0f403);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Yellow span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f0f403);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Yellow span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f0f403);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Yellow span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f0f403);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-White {
color: #f8f9f7;
background-color: #798a67;
}
a.btn-Neon-White:hover {
background-color: #131510;
}
a.btn-Neon-White span.neon {
position: absolute;
display: block;
}
a.btn-Neon-White span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f8f9f7);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-White span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f8f9f7);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-White span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f8f9f7);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-White span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f8f9f7);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
@keyframes NeonHorizontal {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
@keyframes NeonVertical {
0% {
top: -100%;
}
100% {
top: 100%;
}
}
#Cards {
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.card {
border: 1px solid gray;
display: flex;
flex-direction: column;
border-radius: 5px;
}
.card-img-top {
width: 100%;
}
.card-img-bg {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.card-img-bg img {
position: absolute;
height: inherit;
width: inherit;
z-index: -1;
}
.card-text-right {
text-align: right;
}
.card-text-center {
text-align: center;
}
.card-text-left {
text-align: left;
}
.card-header {
border: none;
border-bottom: 1px solid rgba(10, 0, 14, 0.3);
padding: 1rem 0.2rem;
background-color: rgba(10, 0, 14, 0.1);
}
.card-footer {
border: none;
border-top: 1px solid rgba(10, 0, 14, 0.3);
padding: 1rem 0.2rem;
background-color: rgba(10, 0, 14, 0.1);
}
.card .card-body {
padding: 0rem;
}
.card-prim-c {
background-color: #1177ff;
color: #f8f9f7;
}
.card-secondary-c {
background-color: #9daaa0;
color: #0a000e;
}
.card-success-c {
background-color: #22aa44;
color: #f8f9f7;
}
.card-danger-c {
background-color: #cc3b3b;
color: #f8f9f7;
}
.card-warning-c {
background-color: #ffbb33;
color: #0a000e;
}
.card-info-c {
background-color: #11a2b2;
color: #f8f9f7;
}
.card-light-c {
background-color: #f8f9f7;
color: #0a000e;
}
.card-dark-c {
background-color: #0a000e;
color: #f8f9f7;
}
.card-link-c {
background-color: #1177ff;
color: #f8f9f7;
background-color: transparent;
color: #1177ff;
}
.card-outline-prim-c {
color: #1177ff;
border: 1px solid #1177ff;
}
.card-outline-secondary-c {
color: #9daaa0;
border: 1px solid #9daaa0;
}
.card-outline-success-c {
color: #22aa44;
border: 1px solid #22aa44;
}
.card-outline-danger-c {
color: #cc3b3b;
border: 1px solid #cc3b3b;
}
.card-outline-warning-c {
color: #ffbb33;
border: 1px solid #ffbb33;
}
.card-outline-info-c {
color: #11a2b2;
border: 1px solid #11a2b2;
}
.card-outline-light-c {
color: #f8f9f7;
border: 1px solid #f8f9f7;
}
.card-outline-dark-c {
color: #0a000e;
border: 1px solid #0a000e;
}
.nav,
#Simple_Nav {
height: 60px;
max-width: 100%;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.5);
}
.nav_links {
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links li {
display: inline-block;
padding: 0 20px 0 0;
}
.nav_links li a {
color: white;
transition: 0.3s ease 0.1s;
}
.nav_links li a:hover {
color: blue;
}
#Simple_Nav {
justify-content: center;
justify-content: flex-end;
justify-content: flex-start;
}
.nav-prim-c {
background-color: #1177ff;
color: white;
}
.nav-secondary-c {
background-color: #9daaa0;
color: white;
color: black;
}
.nav-success-c {
background-color: #22aa44;
color: white;
}
.nav-danger-c {
background-color: #cc3b3b;
color: white;
}
.nav-warning-c {
background-color: #ffbb33;
color: white;
}
.nav-info-c {
background-color: #11a2b2;
color: white;
}
.nav-light-c {
background-color: #f8f9f7;
color: white;
color: #2c3226;
}
.nav-dark-c {
background-color: #0a000e;
color: white;
}
.nav-transparent {
background-color: transparent;
color: rgba(255, 255, 255, 0);
background-color: rgba(0, 0, 0, 0.6);
}
#navColors {
justify-content: center;
}
.nav_logo {
cursor: pointer;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_logo img {
height: 50px;
border-radius: 50%;
margin: 1rem;
}
.nav_reverse-dir {
flex-direction: row-reverse;
}
#Nav-with-Logo {
justify-content: center;
justify-content: space-around;
justify-content: space-between;
}
.nav_menu_btn {
display: block;
margin: 0 1rem;
}
.nav_menu_btn button {
padding: 9px 25px;
background-color: #608f9b;
border: none;
outline: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s ease;
}
.nav_menu_btn button:hover {
background-color: rgba(0, 136, 169, 0.8);
transition: 0.3s ease;
}
#Nav-with-Button {
justify-content: space-evenly;
justify-content: space-around;
justify-content: space-between;
}
#Nav-with-Logo-Button {
height: 80px;
justify-content: space-between;
}
#Nav-with-Logo-Button .nav_logo .navbar-brand {
color: white;
}
.nav.order .nav_logo,
.order#Simple_Nav .nav_logo {
order: 3;
}
.nav.order .nav_links,
.order#Simple_Nav .nav_links {
order: 4;
}
.nav.order .nav-form-inline,
.order#Simple_Nav .nav-form-inline {
order: 1;
}
.nav.order .nav_menu_btn,
.order#Simple_Nav .nav_menu_btn {
order: 2;
}
#Nav-item-positioning {
justify-content: space-between;
}
.nav,
#Simple_Nav {
height: 60px;
max-width: 100%;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links {
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links li {
display: inline-block;
padding: 0 20px 0 0;
}
.nav_links li a {
color: white;
transition: 0.3s ease 0.1s;
}
.nav_links li a:hover {
color: blue;
}
.nav_logo {
cursor: pointer;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_logo img {
height: 50px;
border-radius: 50%;
margin: 1rem;
}
.nav_reverse-dir {
flex-direction: row-reverse;
}
.nav_menu_btn {
display: block;
margin: 0 1rem;
}
.nav_menu_btn button {
padding: 9px 25px;
background-color: #608f9b;
border: none;
outline: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s ease;
}
.nav_menu_btn button:hover {
background-color: rgba(0, 136, 169, 0.8);
transition: 0.3s ease;
}
.nav.order .nav_logo,
.order#Simple_Nav .nav_logo {
order: 3;
}
.nav.order .nav_links,
.order#Simple_Nav .nav_links {
order: 4;
}
.nav.order .nav-form-inline,
.order#Simple_Nav .nav-form-inline {
order: 1;
}
.nav.order .nav_menu_btn,
.order#Simple_Nav .nav_menu_btn {
order: 2;
}
.position-left {
position: fixed;
left: 0;
top: 0;
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
height: 100vh;
}
.position-left>ul {
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
justify-content: space-evenly;
height: 100%;
}
.position-left .nav_logo {
flex-direction: column;
}
.position-top {
position: fixed;
top: 0;
width: 100%;
}
.position-top>ul li {
padding: 0 1.5rem;
}
.position-right {
position: fixed;
right: 0;
top: 0;
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
height: 100vh;
}
.position-right>ul {
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
justify-content: space-evenly;
height: 100%;
}
.position-right .nav_logo {
flex-direction: column;
}
.position-bottom {
position: fixed;
bottom: 0;
width: 100%;
}
.position-bottom>ul li {
padding: 0 1.5rem;
}
#Nav-positioning {
max-width: 1024px;
justify-content: space-evenly;
}
#Nav-positioning .nav_logo {
order: 1;
}
#Nav-positioning .nav_links {
order: 2;
}
#Nav-positioning .nav-form-inline {
order: 3;
}
#Nav-positioning .nav_menu_btn {
order: 4;
}
.col {
position: relative;
width: 100%;
padding: 0 1em;
}
.col-sm-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 25%;
}
.col-md-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 50%;
}
.col-lg-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 75%;
}
.col-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 100%;
}
.col-sm-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 25%;
}
.col-md-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 50%;
}
.col-lg-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 75%;
}
.col-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 100%;
}
.col-sm-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 25%;
}
.col-md-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 50%;
}
.col-lg-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 75%;
}
.col-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 100%;
}
.col-sm-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 25%;
}
.col-md-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 50%;
}
.col-lg-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 75%;
}
.col-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 100%;
}
.col-sm-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 25%;
}
.col-md-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 50%;
}
.col-lg-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 75%;
}
.col-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 100%;
}
.col-sm-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 25%;
}
.col-md-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 50%;
}
.col-lg-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 75%;
}
.col-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 100%;
}
form {
display: block;
margin-top: 0;
}
form label {
display: inline-block;
margin-bottom: 0.5rem;
}
form .form-group {
margin-bottom: 1rem;
}
form .form-control {
display: block;
width: 100%;
height: calc(1.5em+0.75rem+2px);
padding: 0.375rem 0.75rem;
font-size: 1.1rem;
font-weight: 400;
line-height: 1.5;
color: #485057;
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
form .form-text {
display: block;
margin-top: 0.25rem;
}
form .form .text-muted {
color: #6c757d !important;
}
form .form .small,
form .form small {
font-size: 80%;
font-weight: 400;
}
.form-inline {
display: inline-block;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.form-row {
display: flex;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.form-grid {
display: grid;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.col-25 {
gap: 25%;
}
.col-50 {
gap: 50%;
}
.col-75 {
gap: 75%;
} | css/Components.css | .text-xl {
font-size: 2rem;
padding: 1rem;
}
.text-lg {
font-size: 1.5rem;
padding: 0.75rem;
}
.text-md {
font-size: 1rem;
padding: 0.5rem;
}
.text-sm {
font-size: 0.6rem;
padding: 0.3rem;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
.UP {
text-transform: uppercase;
}
.tp-0_5 {
padding: 0.5rem;
}
.tp-1 {
padding: 1rem;
}
.tp-1_5 {
padding: 1.5rem;
}
.tp-2 {
padding: 2rem;
}
.tp-2_5 {
padding: 2.5rem;
}
.tp-3 {
padding: 3rem;
}
.tm-0_5 {
margin: 0.5rem;
}
.tm-1 {
margin: 1rem;
}
.tm-1_5 {
margin: 1.5rem;
}
.tm-2 {
margin: 2rem;
}
.tm-2_5 {
margin: 2.5rem;
}
.tm-3 {
margin: 3rem;
}
.tm-3_5 {
margin: 3.5rem;
}
.btn {
margin: 0.25rem 0;
display: inline-block;
font-weight: 500;
color: #f8f9f7;
font-family: inherit;
text-align: center;
font-size: 1rem;
line-height: 1.5;
vertical-align: middle;
cursor: pointer;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
border-radius: 0.25rem;
text-decoration: none;
box-shadow: 0 1px 2px #000000;
}
.btn-prim-c {
background-color: #1177ff;
transition: all 0.5s ease;
}
.btn-prim-c:hover {
transition: all 0.5s ease;
background-color: #005fdd;
color: #f8f9f7;
box-shadow: 0 1px 20px #000000;
}
.btn-secondary-c {
background-color: #9daaa0;
transition: all 0.5s ease;
}
.btn-secondary-c:hover {
transition: all 0.5s ease;
background-color: #829286;
color: #f8f9f7;
}
.btn-success-c {
background-color: #22aa44;
transition: all 0.5s ease;
}
.btn-success-c:hover {
transition: all 0.5s ease;
background-color: #1a8033;
color: #f8f9f7;
}
.btn-danger-c {
background-color: #cc3b3b;
transition: all 0.5s ease;
}
.btn-danger-c:hover {
transition: all 0.5s ease;
background-color: #a82c2c;
color: #f8f9f7;
}
.btn-warning-c {
background-color: #ffbb33;
transition: all 0.5s ease;
color: #0a000e;
transition: all 0.5s ease;
}
.btn-warning-c:hover {
transition: all 0.5s ease;
background-color: #ffaa00;
color: #f8f9f7;
}
.btn-info-c {
background-color: #11a2b2;
transition: all 0.5s ease;
}
.btn-info-c:hover {
transition: all 0.5s ease;
background-color: #0d7883;
color: #f8f9f7;
}
.btn-light-c {
background-color: #f8f9f7;
transition: all 0.5s ease;
color: #0a000e;
transition: all 0.5s ease;
}
.btn-light-c:hover {
transition: all 0.5s ease;
background-color: #dfe3da;
color: #f8f9f7;
}
.btn-dark-c {
background-color: #0a000e;
transition: all 0.5s ease;
}
.btn-dark-c:hover {
transition: all 0.5s ease;
background-color: black;
color: #f8f9f7;
}
.btn-link-c {
background-color: #1177ff;
transition: all 0.5s ease;
background-color: transparent;
color: #1177ff;
transition: all 0.5s ease;
}
.btn-link-c:hover {
transition: all 0.5s ease;
background-color: #005fdd;
color: #f8f9f7;
background-color: transparent;
color: #005fdd;
text-decoration: underline;
transition: all 0.5s ease;
}
.btn-outline-prim-c {
color: #1177ff;
border: 1px solid #1177ff;
transition: all 0.5s ease;
}
.btn-outline-prim-c:hover {
transition: all 0.5s ease;
background-color: #1177ff;
color: #f8f9f7;
}
.btn-outline-secondary-c {
color: #9daaa0;
border: 1px solid #9daaa0;
transition: all 0.5s ease;
}
.btn-outline-secondary-c:hover {
transition: all 0.5s ease;
background-color: #9daaa0;
color: #f8f9f7;
}
.btn-outline-success-c {
color: #22aa44;
border: 1px solid #22aa44;
transition: all 0.5s ease;
}
.btn-outline-success-c:hover {
transition: all 0.5s ease;
background-color: #22aa44;
color: #f8f9f7;
}
.btn-outline-danger-c {
color: #cc3b3b;
border: 1px solid #cc3b3b;
transition: all 0.5s ease;
}
.btn-outline-danger-c:hover {
transition: all 0.5s ease;
background-color: #cc3b3b;
color: #f8f9f7;
}
.btn-outline-warning-c {
color: #ffbb33;
border: 1px solid #ffbb33;
transition: all 0.5s ease;
}
.btn-outline-warning-c:hover {
transition: all 0.5s ease;
background-color: #ffbb33;
color: #f8f9f7;
color: black;
transition: all 0.5s ease;
}
.btn-outline-info-c {
color: #11a2b2;
border: 1px solid #11a2b2;
transition: all 0.5s ease;
}
.btn-outline-info-c:hover {
transition: all 0.5s ease;
background-color: #11a2b2;
color: #f8f9f7;
}
.btn-outline-light-c {
color: #f8f9f7;
border: 1px solid #f8f9f7;
transition: all 0.5s ease;
color: #131510;
}
.btn-outline-light-c:hover {
transition: all 0.5s ease;
background-color: #f8f9f7;
color: #f8f9f7;
background-color: #dfe3da;
color: #f8f9f7;
}
.btn-outline-dark-c {
color: #0a000e;
border: 1px solid #0a000e;
transition: all 0.5s ease;
}
.btn-outline-dark-c:hover {
transition: all 0.5s ease;
background-color: #0a000e;
color: #f8f9f7;
}
.btn-lg {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.btn-sm {
padding: 0.3rem 0.5rem;
font-size: 0.8rem;
line-height: 1.1rem;
border-radius: 0.1rem;
}
.btn-block {
width: 100%;
}
.btn-group {
margin: 0 0.25rem;
position: relative;
display: inline-flex;
vertical-align: middle;
}
.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
a.btn-Neon {
font-size: 1.3rem;
font-weight: 500;
text-align: center;
text-decoration: none;
position: relative;
display: inline-block;
overflow: hidden;
color: inherit;
transition: 0.5s;
}
a.btn-Neon-Red {
color: #f40303;
background-color: transparent;
}
a.btn-Neon-Red:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #f40303;
box-shadow: 0 0 5px #f40303, 0 0 25px #f40303, 0 0 50px #f40303, 0 0 200px #f40303;
}
a.btn-Neon-Red span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Red span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f40303);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Red span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f40303);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Red span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f40303);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Red span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f40303);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Blue {
color: #032ff4;
background-color: transparent;
}
a.btn-Neon-Blue:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #032ff4;
box-shadow: 0 0 5px #032ff4, 0 0 25px #032ff4, 0 0 50px #032ff4, 0 0 200px #032ff4;
}
a.btn-Neon-Blue span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Blue span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #032ff4);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Blue span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #032ff4);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Blue span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #032ff4);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Blue span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #032ff4);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Green {
color: #03f423;
background-color: transparent;
}
a.btn-Neon-Green:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #03f423;
box-shadow: 0 0 5px #03f423, 0 0 25px #03f423, 0 0 50px #03f423, 0 0 200px #03f423;
}
a.btn-Neon-Green span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Green span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #03f423);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Green span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #03f423);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Green span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #03f423);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Green span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #03f423);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-Yellow {
color: #f0f403;
background-color: transparent;
}
a.btn-Neon-Yellow:hover {
transition: all 0.5s ease-in-out;
color: #050810;
background-color: #f0f403;
box-shadow: 0 0 5px #f0f403, 0 0 25px #f0f403, 0 0 50px #f0f403, 0 0 200px #f0f403;
}
a.btn-Neon-Yellow span.neon {
position: absolute;
display: block;
}
a.btn-Neon-Yellow span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f0f403);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-Yellow span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f0f403);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-Yellow span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f0f403);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-Yellow span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f0f403);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
a.btn-Neon-White {
color: #f8f9f7;
background-color: #798a67;
}
a.btn-Neon-White:hover {
background-color: #131510;
}
a.btn-Neon-White span.neon {
position: absolute;
display: block;
}
a.btn-Neon-White span.neon:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f8f9f7);
animation: NeonHorizontal 1s linear infinite;
}
a.btn-Neon-White span.neon:nth-child(2) {
top: -100%;
right: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f8f9f7);
animation: NeonVertical 1s 1.5s linear infinite;
}
a.btn-Neon-White span.neon:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #f8f9f7);
animation: NeonHorizontal 1s 2s linear infinite reverse;
}
a.btn-Neon-White span.neon:nth-child(4) {
top: -100%;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(180deg, transparent, #f8f9f7);
animation: NeonVertical 1s 2.5s linear infinite reverse;
}
@keyframes NeonHorizontal {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
@keyframes NeonVertical {
0% {
top: -100%;
}
100% {
top: 100%;
}
}
#Cards {
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.card {
border: 1px solid gray;
display: flex;
flex-direction: column;
border-radius: 5px;
}
.card-img-top {
width: 100%;
}
.card-img-bg {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.card-img-bg img {
position: absolute;
height: inherit;
width: inherit;
z-index: -1;
}
.card-text-right {
text-align: right;
}
.card-text-center {
text-align: center;
}
.card-text-left {
text-align: left;
}
.card-header {
border: none;
border-bottom: 1px solid rgba(10, 0, 14, 0.3);
padding: 1rem 0.2rem;
background-color: rgba(10, 0, 14, 0.1);
}
.card-footer {
border: none;
border-top: 1px solid rgba(10, 0, 14, 0.3);
padding: 1rem 0.2rem;
background-color: rgba(10, 0, 14, 0.1);
}
.card .card-body {
padding: 0rem;
}
.card-prim-c {
background-color: #1177ff;
color: #f8f9f7;
}
.card-secondary-c {
background-color: #9daaa0;
color: #0a000e;
}
.card-success-c {
background-color: #22aa44;
color: #f8f9f7;
}
.card-danger-c {
background-color: #cc3b3b;
color: #f8f9f7;
}
.card-warning-c {
background-color: #ffbb33;
color: #0a000e;
}
.card-info-c {
background-color: #11a2b2;
color: #f8f9f7;
}
.card-light-c {
background-color: #f8f9f7;
color: #0a000e;
}
.card-dark-c {
background-color: #0a000e;
color: #f8f9f7;
}
.card-link-c {
background-color: #1177ff;
color: #f8f9f7;
background-color: transparent;
color: #1177ff;
}
.card-outline-prim-c {
color: #1177ff;
border: 1px solid #1177ff;
}
.card-outline-secondary-c {
color: #9daaa0;
border: 1px solid #9daaa0;
}
.card-outline-success-c {
color: #22aa44;
border: 1px solid #22aa44;
}
.card-outline-danger-c {
color: #cc3b3b;
border: 1px solid #cc3b3b;
}
.card-outline-warning-c {
color: #ffbb33;
border: 1px solid #ffbb33;
}
.card-outline-info-c {
color: #11a2b2;
border: 1px solid #11a2b2;
}
.card-outline-light-c {
color: #f8f9f7;
border: 1px solid #f8f9f7;
}
.card-outline-dark-c {
color: #0a000e;
border: 1px solid #0a000e;
}
.nav,
#Simple_Nav {
height: 60px;
max-width: 100%;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.5);
}
.nav_links {
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links li {
display: inline-block;
padding: 0 20px 0 0;
}
.nav_links li a {
color: white;
transition: 0.3s ease 0.1s;
}
.nav_links li a:hover {
color: blue;
}
#Simple_Nav {
justify-content: center;
justify-content: flex-end;
justify-content: flex-start;
}
.nav-prim-c {
background-color: #1177ff;
color: white;
}
.nav-secondary-c {
background-color: #9daaa0;
color: white;
color: black;
}
.nav-success-c {
background-color: #22aa44;
color: white;
}
.nav-danger-c {
background-color: #cc3b3b;
color: white;
}
.nav-warning-c {
background-color: #ffbb33;
color: white;
}
.nav-info-c {
background-color: #11a2b2;
color: white;
}
.nav-light-c {
background-color: #f8f9f7;
color: white;
color: #2c3226;
}
.nav-dark-c {
background-color: #0a000e;
color: white;
}
.nav-transparent {
background-color: transparent;
color: rgba(255, 255, 255, 0);
background-color: rgba(0, 0, 0, 0.6);
}
#navColors {
justify-content: center;
}
.nav_logo {
cursor: pointer;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_logo img {
height: 50px;
border-radius: 50%;
margin: 1rem;
}
.nav_reverse-dir {
flex-direction: row-reverse;
}
#Nav-with-Logo {
justify-content: center;
justify-content: space-around;
justify-content: space-between;
}
.nav_menu_btn {
display: block;
margin: 0 1rem;
}
.nav_menu_btn button {
padding: 9px 25px;
background-color: #608f9b;
border: none;
outline: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s ease;
}
.nav_menu_btn button:hover {
background-color: rgba(0, 136, 169, 0.8);
transition: 0.3s ease;
}
#Nav-with-Button {
justify-content: space-evenly;
justify-content: space-around;
justify-content: space-between;
}
#Nav-with-Logo-Button {
height: 80px;
justify-content: space-between;
}
#Nav-with-Logo-Button .nav_logo .navbar-brand {
color: white;
}
.nav.order .nav_logo,
.order#Simple_Nav .nav_logo {
order: 3;
}
.nav.order .nav_links,
.order#Simple_Nav .nav_links {
order: 4;
}
.nav.order .nav-form-inline,
.order#Simple_Nav .nav-form-inline {
order: 1;
}
.nav.order .nav_menu_btn,
.order#Simple_Nav .nav_menu_btn {
order: 2;
}
#Nav-item-positioning {
justify-content: space-between;
}
.nav,
#Simple_Nav {
height: 60px;
max-width: 100%;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links {
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_links li {
display: inline-block;
padding: 0 20px 0 0;
}
.nav_links li a {
color: white;
transition: 0.3s ease 0.1s;
}
.nav_links li a:hover {
color: blue;
}
.nav_logo {
cursor: pointer;
display: flex;
flex-direction: row;
justify-items: center;
align-items: center;
}
.nav_logo img {
height: 50px;
border-radius: 50%;
margin: 1rem;
}
.nav_reverse-dir {
flex-direction: row-reverse;
}
.nav_menu_btn {
display: block;
margin: 0 1rem;
}
.nav_menu_btn button {
padding: 9px 25px;
background-color: #608f9b;
border: none;
outline: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s ease;
}
.nav_menu_btn button:hover {
background-color: rgba(0, 136, 169, 0.8);
transition: 0.3s ease;
}
.nav.order .nav_logo,
.order#Simple_Nav .nav_logo {
order: 3;
}
.nav.order .nav_links,
.order#Simple_Nav .nav_links {
order: 4;
}
.nav.order .nav-form-inline,
.order#Simple_Nav .nav-form-inline {
order: 1;
}
.nav.order .nav_menu_btn,
.order#Simple_Nav .nav_menu_btn {
order: 2;
}
.position-left {
position: fixed;
left: 0;
top: 0;
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
height: 100vh;
}
.position-left>ul {
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
justify-content: space-evenly;
height: 100%;
}
.position-left .nav_logo {
flex-direction: column;
}
.position-top {
position: fixed;
top: 0;
width: 100%;
}
.position-top>ul li {
padding: 0 1.5rem;
}
.position-right {
position: fixed;
right: 0;
top: 0;
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
height: 100vh;
}
.position-right>ul {
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
justify-content: space-evenly;
height: 100%;
}
.position-right .nav_logo {
flex-direction: column;
}
.position-bottom {
position: fixed;
bottom: 0;
width: 100%;
}
.position-bottom>ul li {
padding: 0 1.5rem;
}
#Nav-positioning {
max-width: 1024px;
justify-content: space-evenly;
}
#Nav-positioning .nav_logo {
order: 1;
}
#Nav-positioning .nav_links {
order: 2;
}
#Nav-positioning .nav-form-inline {
order: 3;
}
#Nav-positioning .nav_menu_btn {
order: 4;
}
.col {
position: relative;
width: 100%;
padding: 0 1em;
}
.col-sm-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 25%;
}
.col-md-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 50%;
}
.col-lg-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 75%;
}
.col-1 {
grid-template-columns: repeat(1, 1fr);
max-width: 100%;
}
.col-sm-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 25%;
}
.col-md-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 50%;
}
.col-lg-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 75%;
}
.col-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 100%;
}
.col-sm-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 25%;
}
.col-md-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 50%;
}
.col-lg-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 75%;
}
.col-3 {
grid-template-columns: repeat(3, 1fr);
max-width: 100%;
}
.col-sm-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 25%;
}
.col-md-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 50%;
}
.col-lg-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 75%;
}
.col-4 {
grid-template-columns: repeat(4, 1fr);
max-width: 100%;
}
.col-sm-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 25%;
}
.col-md-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 50%;
}
.col-lg-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 75%;
}
.col-5 {
grid-template-columns: repeat(5, 1fr);
max-width: 100%;
}
.col-sm-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 25%;
}
.col-md-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 50%;
}
.col-lg-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 75%;
}
.col-6 {
grid-template-columns: repeat(6, 1fr);
max-width: 100%;
}
form {
display: block;
margin-top: 0;
}
form label {
display: inline-block;
margin-bottom: 0.5rem;
}
form .form-group {
margin-bottom: 1rem;
}
form .form-control {
display: block;
width: 100%;
height: calc(1.5em+0.75rem+2px);
padding: 0.375rem 0.75rem;
font-size: 1.1rem;
font-weight: 400;
line-height: 1.5;
color: #485057;
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
form .form-text {
display: block;
margin-top: 0.25rem;
}
form .form .text-muted {
color: #6c757d !important;
}
form .form .small,
form .form small {
font-size: 80%;
font-weight: 400;
}
.form-inline {
display: inline-block;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.form-row {
display: flex;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.form-grid {
display: grid;
justify-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
.col-25 {
gap: 25%;
}
.col-50 {
gap: 50%;
}
.col-75 {
gap: 75%;
} | 0.543833 | 0.089973 |
.monster-creator-container {
justify-self: flex-end;
/* padding-top: 5rem;
padding-bottom: 5rem; */
width: 20rem;
height: 100vh;
border: 1px solid grey;
background-color: rgba(17, 17, 17, 0.349);
overflow: scroll;
}
.minions-button {
background-color: rgba(56, 56, 56, 0.644);
height: 2.5rem;
border: 1px solid rgb(167, 167, 167);
padding-top: 6px;
margin-bottom: 1rem;
color: rgb(224, 224, 224);
font-size: 0.9rem;
outline: none;
width: 70%;
font-family: gilSans;
letter-spacing: 1px;
border-radius: 8px;
margin: auto;
}
.minions-button:hover {
cursor: pointer;
font-weight: bold;
background-color: rgba(42, 42, 42, 0.781);
}
.minions-button:focus {
cursor: pointer;
font-weight: bold;
background-color: rgba(42, 42, 42, 0.781);
}
.monster-list-container {
width: 100%;
}
.monster-list-item-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.733);
width: 100%;
height: 3rem;
border-top: 1px solid grey;
border-bottom: 1px solid grey;
}
.monster-list-item-container:hover {
/* background-color: rgba(32, 32, 32, 0.733); */
}
.monster-item-image {
display: flex;
justify-content: center;
align-items: flex-start;
height: 2.5rem;
width: 2.5rem;
overflow: hidden;
margin-left: 10px;
}
.monster-item-image img {
height: 100;
width: auto;
overflow: hidden;
}
.dead-icon {
height: 100%;
width: 100%;
overflow: hidden;
color: rgb(114, 0, 0);
}
.monster-item-delete {
height: 2rem;
width: 2rem;
margin-right: 10px;
}
.monster-delete-icon {
width: 100%;
height: 100%;
color: rgb(70, 24, 24);
}
.monster-delete-icon:hover {
color: red;
}
.select-monster-container {
width: 5rem;
height: 70%;
background-color: transparent;
}
.select-monster-container button {
height: 100%;
width: 100%;
border: none;
outline: none;
background-color: rgba(41, 41, 41, 0.603);
border: 1px solid rgb(112, 112, 112);
color: white;
font-family: gilSans;
letter-spacing: 1px;
}
.select-monster-container button:hover {
border: 1px solid grey;
background-color: rgba(0, 93, 5, 0.603);
}
.draggable {
cursor: move;
}
.draggable.dragging {
opacity: 0.5;
}
.activeSelect {
background-color: green;
}
.black-background {
background-color: rgba(0, 0, 0, 0.733);
width: 100%;
height: 100%;
border-bottom: 1px solid grey;
}
.combatButton_container {
width: 100%;
display: flex;
justify-content: center;
margin-top: 1rem;
}
.dmCombat_instructions {
}
.dmCombat_instructions p {
color: rgb(155, 155, 155);
font-size: 0.9rem;
font-family: gilSans;
text-align: center;
margin-left: 12px;
margin-right: 12px;
} | src/Components/Combat/MonsterCreator.css | .monster-creator-container {
justify-self: flex-end;
/* padding-top: 5rem;
padding-bottom: 5rem; */
width: 20rem;
height: 100vh;
border: 1px solid grey;
background-color: rgba(17, 17, 17, 0.349);
overflow: scroll;
}
.minions-button {
background-color: rgba(56, 56, 56, 0.644);
height: 2.5rem;
border: 1px solid rgb(167, 167, 167);
padding-top: 6px;
margin-bottom: 1rem;
color: rgb(224, 224, 224);
font-size: 0.9rem;
outline: none;
width: 70%;
font-family: gilSans;
letter-spacing: 1px;
border-radius: 8px;
margin: auto;
}
.minions-button:hover {
cursor: pointer;
font-weight: bold;
background-color: rgba(42, 42, 42, 0.781);
}
.minions-button:focus {
cursor: pointer;
font-weight: bold;
background-color: rgba(42, 42, 42, 0.781);
}
.monster-list-container {
width: 100%;
}
.monster-list-item-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.733);
width: 100%;
height: 3rem;
border-top: 1px solid grey;
border-bottom: 1px solid grey;
}
.monster-list-item-container:hover {
/* background-color: rgba(32, 32, 32, 0.733); */
}
.monster-item-image {
display: flex;
justify-content: center;
align-items: flex-start;
height: 2.5rem;
width: 2.5rem;
overflow: hidden;
margin-left: 10px;
}
.monster-item-image img {
height: 100;
width: auto;
overflow: hidden;
}
.dead-icon {
height: 100%;
width: 100%;
overflow: hidden;
color: rgb(114, 0, 0);
}
.monster-item-delete {
height: 2rem;
width: 2rem;
margin-right: 10px;
}
.monster-delete-icon {
width: 100%;
height: 100%;
color: rgb(70, 24, 24);
}
.monster-delete-icon:hover {
color: red;
}
.select-monster-container {
width: 5rem;
height: 70%;
background-color: transparent;
}
.select-monster-container button {
height: 100%;
width: 100%;
border: none;
outline: none;
background-color: rgba(41, 41, 41, 0.603);
border: 1px solid rgb(112, 112, 112);
color: white;
font-family: gilSans;
letter-spacing: 1px;
}
.select-monster-container button:hover {
border: 1px solid grey;
background-color: rgba(0, 93, 5, 0.603);
}
.draggable {
cursor: move;
}
.draggable.dragging {
opacity: 0.5;
}
.activeSelect {
background-color: green;
}
.black-background {
background-color: rgba(0, 0, 0, 0.733);
width: 100%;
height: 100%;
border-bottom: 1px solid grey;
}
.combatButton_container {
width: 100%;
display: flex;
justify-content: center;
margin-top: 1rem;
}
.dmCombat_instructions {
}
.dmCombat_instructions p {
color: rgb(155, 155, 155);
font-size: 0.9rem;
font-family: gilSans;
text-align: center;
margin-left: 12px;
margin-right: 12px;
} | 0.567937 | 0.082033 |
.pg_bgd {
min-height: 100%;
height: 100vh;
background-color: black;
position:relative;
overflow: hidden;
overflow-y:scroll;
overflow-x:scroll;
color:red;
font-family: 'SignPainter';
margin-top: 0.5%;
}
.headerBar{
background-color:white;
height: 5vh;
text-align: center;
margin-top: 0;
}
.options_bar{
height: 5vh;
margin-top: -1.3%;
text-align: center;
}
.titleBar{
color: white;
}
.option_bar_button{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: left;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.option_bar_button2{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: center;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.option_bar_button3{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: right;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.box22 {
text-align: center;
margin-top: 2.5%;
position: absolute;
width: 99vh; width: 700px;
height: 75vh; height: 600px;
top: 15vh;
margin-left: 25%;
margin-right: 25%;
background-color: brown;
border: 0.5%;
border-radius: 30%;
border-style: dashed;
}
.box23{
text-align: center;
margin-top: 2.5%;
position: absolute;
width: 80vh;
height: 75vh;
top: 15vh;
margin-left: 50%;
margin-right: 25%;
background-color: brown;
overflow-y: auto;
margin-bottom: 2.5%;
}
.styled{
font-size: 350%;
margin-bottom: 2%;
color: aliceblue;
}
.checkbox_title{
margin-top: 0.5%;
font-display: bold;
font-size: 230%;
font-stretch: extra-condensed;
margin-bottom: 2%;
}
.tboxes{
width: 40%;
margin-top: 0%;
text-align: center;
}
.TextBox{
size: "90";
height: 20%;
border: 0.5%;
}
.crb{
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.small-box{
margin-top: 1%;
height: 10%;
background-color: green;
}
.each-box{
margin-top: 1%;
height: 10%;
background-color: blue;
width: 95%;
float: right;
margin-right: 3%;
/*margin-bottom: 1.5%;*/
}
.each-box2{
height: 10%;
background-color: blue;
width: 95%;
float: right;
margin-right: 3%;
margin-top: 2%;
margin-bottom: 1.5%;
}
.mini_script{
float: left;
margin-top: 0%;
margin-left: 3%;
color: white;
}
.which_week{
height: 40%;
width: 50%;
float: right;
margin-right: 10%;
margin-top: 0%;
}
.togglebtn{
float: left;
margin-top: 3%;
margin-left: 0.5%;
}
.inBoxEventDescription{
margin-top: 2%;
/*background-color: coral;*/
/*width: 80%;*/
/*float: right;*/
}
.calendarDiv{
margin-top: 15%;
margin-left: 7.5%;
font-family: 'SignPainter';
} | client/src/createEvent.css | .pg_bgd {
min-height: 100%;
height: 100vh;
background-color: black;
position:relative;
overflow: hidden;
overflow-y:scroll;
overflow-x:scroll;
color:red;
font-family: 'SignPainter';
margin-top: 0.5%;
}
.headerBar{
background-color:white;
height: 5vh;
text-align: center;
margin-top: 0;
}
.options_bar{
height: 5vh;
margin-top: -1.3%;
text-align: center;
}
.titleBar{
color: white;
}
.option_bar_button{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: left;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.option_bar_button2{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: center;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.option_bar_button3{
background-attachment: fixed;
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
float: right;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.box22 {
text-align: center;
margin-top: 2.5%;
position: absolute;
width: 99vh; width: 700px;
height: 75vh; height: 600px;
top: 15vh;
margin-left: 25%;
margin-right: 25%;
background-color: brown;
border: 0.5%;
border-radius: 30%;
border-style: dashed;
}
.box23{
text-align: center;
margin-top: 2.5%;
position: absolute;
width: 80vh;
height: 75vh;
top: 15vh;
margin-left: 50%;
margin-right: 25%;
background-color: brown;
overflow-y: auto;
margin-bottom: 2.5%;
}
.styled{
font-size: 350%;
margin-bottom: 2%;
color: aliceblue;
}
.checkbox_title{
margin-top: 0.5%;
font-display: bold;
font-size: 230%;
font-stretch: extra-condensed;
margin-bottom: 2%;
}
.tboxes{
width: 40%;
margin-top: 0%;
text-align: center;
}
.TextBox{
size: "90";
height: 20%;
border: 0.5%;
}
.crb{
font-family:'SignPainter';
color: black;
text-align: left;
font-size: 130%;
font-weight: bold;
margin: 4px 12px;
padding: 5px 20px;
margin-top: 2%;
cursor: progress;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
}
.small-box{
margin-top: 1%;
height: 10%;
background-color: green;
}
.each-box{
margin-top: 1%;
height: 10%;
background-color: blue;
width: 95%;
float: right;
margin-right: 3%;
/*margin-bottom: 1.5%;*/
}
.each-box2{
height: 10%;
background-color: blue;
width: 95%;
float: right;
margin-right: 3%;
margin-top: 2%;
margin-bottom: 1.5%;
}
.mini_script{
float: left;
margin-top: 0%;
margin-left: 3%;
color: white;
}
.which_week{
height: 40%;
width: 50%;
float: right;
margin-right: 10%;
margin-top: 0%;
}
.togglebtn{
float: left;
margin-top: 3%;
margin-left: 0.5%;
}
.inBoxEventDescription{
margin-top: 2%;
/*background-color: coral;*/
/*width: 80%;*/
/*float: right;*/
}
.calendarDiv{
margin-top: 15%;
margin-left: 7.5%;
font-family: 'SignPainter';
} | 0.419886 | 0.061706 |
.modal-dialog {
margin: 10% auto;
}
.hide-when-is-msg-job-in-history, .show-when-is-msg-job-in-history, .hide-when-is-script-job-in-history {
display: none;
}
.diff-conf-warning {
padding-left:22px;
color:#8a6d3b;
display:none;
height: 34px;
line-height: 34px;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 34px;
}
.waning-border {
border-color: #8a6d3b;
}
.warnging-tag {
border: 1px solid #8a6d3b !important;
}
.loading{
display:none;
width:160px;
height:56px;
position: absolute;
top:50%;
left:50%;
line-height:56px;
color:#fff;
padding-left:60px;
font-size:15px;
background: #000 url(loading.gif) no-repeat 10px 50%;
opacity: 0.7;
z-index:9999;
-moz-border-radius:20px;
-webkit-border-radius:20px;
border-radius:20px;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
.pull-left h1 {
margin-top: 0;
}
.pull-right h2 {
margin-top: 0;
}
.panel-yellow > .panel-heading {
background-color: #f0ad4e;
border-color: #f0ad4e;
color: #fff;
}
.panel-green > .panel-heading {
background-color: #5cb85c;
border-color: #5cb85c;
color: #fff;
}
.panel-red > .panel-heading {
background-color: #d9534f;
border-color: #d9534f;
color: #fff;
}
.huge {
font-size: 40px;
line-height: normal;
}
#jobviews-operation-area {
display: inline;
}
#serverviews-status-showall {
display: none;
}
html {
position: relative;
min-height: 100%;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
z-index:1500;
}
.text-muted {
text-align: center;
color: silver;
}
body {
margin-bottom: 13px;
}
#history-config {
margin-top:5px;
}
@font-face {
font-family: 'devicon';
src:url('fonts/devicon.eot?-hdf3wh');
src:url('fonts/devicon.eot?#iefix-hdf3wh') format('embedded-opentype'),
url('fonts/devicon.woff?-hdf3wh') format('woff'),
url('fonts/devicon.ttf?-hdf3wh') format('truetype'),
url('fonts/devicon.svg?-hdf3wh#devicon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="devicon-"], [class*=" devicon-"] {
font-family: 'devicon';
speak: none;
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;
}
.devicon-java-plain-wordmark:before {
content: "\e841";
}
.devicon-java-plain:before {
content: "\e842";
}
.devicon-javascript-plain:before {
content: "\e845";
}
.devicon-linux-plain:before {
content: "\eb1c";
}
.confirm-reason {
word-wrap: break-word;
word-break: break-all;
}
td > hr {
margin-bottom: 1px;
margin-top: 1px;
}
#job-operation > button, .bootstrap-switch {
margin-top: -8px;
}
.bg-aqua, .callout.callout-info {
background-color: #00c0ef !important;
}
.callout.callout-info {
color: #fff !important;
border-color: #0097bc;
}
.lead {
font-size: 18px;
font-weight: 400;
}
.callout {
border-left: 5px solid #eee;
border-radius: 3px;
margin: 0 0 10px;
padding: 6px 0px 1px 12px;
line-height: 1.4;
}
.callout > p {
margin-bottom: 6px;
}
#logstash-operation {
display:inline-flex;
}
#start-time-div, #end-time-div {
width:180px;
}
#jobnames-div {
padding-left:7px;
padding-right:7px;
}
#btn-div {
padding-right: 7px;
}
.panel-green {
border-color: #5cb85c;
}
.panel-yellow {
border-color: #f0ad4e;
}
.panel-red {
border-color: #d9534f;
}
#add-container-dialog {
overflow:scroll;
}
.memory-div {
padding-left: 0px;
} | saturn-console/src/main/resources/static/css/frame.css | .modal-dialog {
margin: 10% auto;
}
.hide-when-is-msg-job-in-history, .show-when-is-msg-job-in-history, .hide-when-is-script-job-in-history {
display: none;
}
.diff-conf-warning {
padding-left:22px;
color:#8a6d3b;
display:none;
height: 34px;
line-height: 34px;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 34px;
}
.waning-border {
border-color: #8a6d3b;
}
.warnging-tag {
border: 1px solid #8a6d3b !important;
}
.loading{
display:none;
width:160px;
height:56px;
position: absolute;
top:50%;
left:50%;
line-height:56px;
color:#fff;
padding-left:60px;
font-size:15px;
background: #000 url(loading.gif) no-repeat 10px 50%;
opacity: 0.7;
z-index:9999;
-moz-border-radius:20px;
-webkit-border-radius:20px;
border-radius:20px;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}
.pull-left h1 {
margin-top: 0;
}
.pull-right h2 {
margin-top: 0;
}
.panel-yellow > .panel-heading {
background-color: #f0ad4e;
border-color: #f0ad4e;
color: #fff;
}
.panel-green > .panel-heading {
background-color: #5cb85c;
border-color: #5cb85c;
color: #fff;
}
.panel-red > .panel-heading {
background-color: #d9534f;
border-color: #d9534f;
color: #fff;
}
.huge {
font-size: 40px;
line-height: normal;
}
#jobviews-operation-area {
display: inline;
}
#serverviews-status-showall {
display: none;
}
html {
position: relative;
min-height: 100%;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
z-index:1500;
}
.text-muted {
text-align: center;
color: silver;
}
body {
margin-bottom: 13px;
}
#history-config {
margin-top:5px;
}
@font-face {
font-family: 'devicon';
src:url('fonts/devicon.eot?-hdf3wh');
src:url('fonts/devicon.eot?#iefix-hdf3wh') format('embedded-opentype'),
url('fonts/devicon.woff?-hdf3wh') format('woff'),
url('fonts/devicon.ttf?-hdf3wh') format('truetype'),
url('fonts/devicon.svg?-hdf3wh#devicon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="devicon-"], [class*=" devicon-"] {
font-family: 'devicon';
speak: none;
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;
}
.devicon-java-plain-wordmark:before {
content: "\e841";
}
.devicon-java-plain:before {
content: "\e842";
}
.devicon-javascript-plain:before {
content: "\e845";
}
.devicon-linux-plain:before {
content: "\eb1c";
}
.confirm-reason {
word-wrap: break-word;
word-break: break-all;
}
td > hr {
margin-bottom: 1px;
margin-top: 1px;
}
#job-operation > button, .bootstrap-switch {
margin-top: -8px;
}
.bg-aqua, .callout.callout-info {
background-color: #00c0ef !important;
}
.callout.callout-info {
color: #fff !important;
border-color: #0097bc;
}
.lead {
font-size: 18px;
font-weight: 400;
}
.callout {
border-left: 5px solid #eee;
border-radius: 3px;
margin: 0 0 10px;
padding: 6px 0px 1px 12px;
line-height: 1.4;
}
.callout > p {
margin-bottom: 6px;
}
#logstash-operation {
display:inline-flex;
}
#start-time-div, #end-time-div {
width:180px;
}
#jobnames-div {
padding-left:7px;
padding-right:7px;
}
#btn-div {
padding-right: 7px;
}
.panel-green {
border-color: #5cb85c;
}
.panel-yellow {
border-color: #f0ad4e;
}
.panel-red {
border-color: #d9534f;
}
#add-container-dialog {
overflow:scroll;
}
.memory-div {
padding-left: 0px;
} | 0.226356 | 0.05752 |
body{padding-top:54px;color:#495057;font-weight:400;font-family: 'Work Sans', sans-serif}
/* font-family:Muli,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'} */
@media (min-width:992px)
{body{padding-top:0;padding-left:17rem}}
h1,h2,h3,h4,h5,h6{font-weight:700;text-transform:uppercase;color:#343a40;font-family:'Saira Extra Condensed',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'}
h1{font-size:6rem;line-height:5.5rem}
h2{font-size:3.5rem}
h3{font-size:2rem}
p.lead{font-family:Verdana;font-size:1rem;font-weight:550}
.heading{color:#343a40;text-transform:uppercase;font-weight:700;font-size:2rem;font-family:'Saira Condensed'}
.subheading{color:#004A7F;text-transform:uppercase;font-weight:500;font-size:1.5rem;font-family:'Saira Extra Condensed'}
.subheadinggrey{color:#787f86;text-transform:uppercase;font-weight:500;font-size:1.5rem;font-family:'Saira Extra Condensed'}
/* -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'} */
.subsubheading1{color:#787f86;font-weight:300;font-size:1.3rem;font-family:'Saira Extra Condensed'}
.subsubheading2{color:#004A7F;font-weight:300;font-size:1.3rem;font-family:'Saira Extra Condensed'}
.bg-primary{background-color:#004A7F!important}
.text-primary{color:#004A7F!important}
a{color:#0288e8}a:active,a:focus,a:hover{color:#495057}
ul{list-style: square;list-style-position: outside;font-family: 'Work Sans', sans-serif}
.left{text-align: left; width:65%; display: inline-block;}
.right{float:right}
/* .right{text-align: right; display: inline-block} */
.social-icons a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:#fff!important;
border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}
.social-icons a:last-child{margin-right:0}
.social-icons a:hover{background-color:#0288e8}
.social-icons-small a{display:inline-block;height:2.1rem;width:2.1rem;background-color:#495057;color:#fff!important;
border-radius:100%;text-align:center;font-size:1.3rem;line-height:2.1rem;margin-right:rem}
.social-icons-small a:last-child{margin-right:0}
.social-icons-small a:hover{background-color:#0288e8}
.dev-icons{font-size:3rem}
.dev-icons .list-inline-item i:hover{color:#0288e8}
#sideNav .navbar-nav .nav-item .nav-link{font-weight:800;letter-spacing:.05rem;text-transform:uppercase}
#sideNav .navbar-toggler:focus{outline-color:#d48a6e}@media (min-width:992px)
{
#sideNav{text-align:center;position:fixed;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:17rem;height:100vh}
#sideNav .navbar-brand{display:-webkit-box;display:-ms-flexbox;display:flex;margin:auto auto 0;padding:.5rem}
#sideNav .navbar-brand .img-profile{max-width:10rem;max-height:10rem;border:.5rem solid rgba(255,255,255,.2)}
#sideNav .navbar-collapse{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;width:100%;margin-bottom:auto}
#sideNav .navbar-collapse .navbar-nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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{padding-top:5rem!important;padding-bottom:5rem!important;max-width:75rem}
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}} | public/css/resume.min.css | body{padding-top:54px;color:#495057;font-weight:400;font-family: 'Work Sans', sans-serif}
/* font-family:Muli,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'} */
@media (min-width:992px)
{body{padding-top:0;padding-left:17rem}}
h1,h2,h3,h4,h5,h6{font-weight:700;text-transform:uppercase;color:#343a40;font-family:'Saira Extra Condensed',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'}
h1{font-size:6rem;line-height:5.5rem}
h2{font-size:3.5rem}
h3{font-size:2rem}
p.lead{font-family:Verdana;font-size:1rem;font-weight:550}
.heading{color:#343a40;text-transform:uppercase;font-weight:700;font-size:2rem;font-family:'Saira Condensed'}
.subheading{color:#004A7F;text-transform:uppercase;font-weight:500;font-size:1.5rem;font-family:'Saira Extra Condensed'}
.subheadinggrey{color:#787f86;text-transform:uppercase;font-weight:500;font-size:1.5rem;font-family:'Saira Extra Condensed'}
/* -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'} */
.subsubheading1{color:#787f86;font-weight:300;font-size:1.3rem;font-family:'Saira Extra Condensed'}
.subsubheading2{color:#004A7F;font-weight:300;font-size:1.3rem;font-family:'Saira Extra Condensed'}
.bg-primary{background-color:#004A7F!important}
.text-primary{color:#004A7F!important}
a{color:#0288e8}a:active,a:focus,a:hover{color:#495057}
ul{list-style: square;list-style-position: outside;font-family: 'Work Sans', sans-serif}
.left{text-align: left; width:65%; display: inline-block;}
.right{float:right}
/* .right{text-align: right; display: inline-block} */
.social-icons a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:#fff!important;
border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}
.social-icons a:last-child{margin-right:0}
.social-icons a:hover{background-color:#0288e8}
.social-icons-small a{display:inline-block;height:2.1rem;width:2.1rem;background-color:#495057;color:#fff!important;
border-radius:100%;text-align:center;font-size:1.3rem;line-height:2.1rem;margin-right:rem}
.social-icons-small a:last-child{margin-right:0}
.social-icons-small a:hover{background-color:#0288e8}
.dev-icons{font-size:3rem}
.dev-icons .list-inline-item i:hover{color:#0288e8}
#sideNav .navbar-nav .nav-item .nav-link{font-weight:800;letter-spacing:.05rem;text-transform:uppercase}
#sideNav .navbar-toggler:focus{outline-color:#d48a6e}@media (min-width:992px)
{
#sideNav{text-align:center;position:fixed;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:17rem;height:100vh}
#sideNav .navbar-brand{display:-webkit-box;display:-ms-flexbox;display:flex;margin:auto auto 0;padding:.5rem}
#sideNav .navbar-brand .img-profile{max-width:10rem;max-height:10rem;border:.5rem solid rgba(255,255,255,.2)}
#sideNav .navbar-collapse{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;width:100%;margin-bottom:auto}
#sideNav .navbar-collapse .navbar-nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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{padding-top:5rem!important;padding-bottom:5rem!important;max-width:75rem}
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}} | 0.320077 | 0.044743 |
.banner {
background-color: #0a0b11;
width: 100%;
text-align: center
}
.banner .el-carousel {
width: 100%;
max-width: 1920px;
max-height: 440px;
}
.carousel-img {
max-width: 100%;
max-height: 440px;
}
.content .item {
width: 100%;
padding: 40px 210px 50px;
}
.content .title {
padding-left: 20px;
color: #333333;
font-size: 36.0px;
height: 50px;
line-height: 50px;
border-left: 4px solid #13a2e0;
}
.content .more {
height: 28px;
line-height: 28px;
padding-right: 38px;
background: url('../img/index/more_normal.png') right center no-repeat;
float: right;
}
.content .more:hover {
background-image: url('../img/index/more_pressed.png');
}
.content .product-group {
width: 100%;
height: 387px;
margin-top: 47px;
display: flex;
justify-content: space-around;
align-items: center;
}
.content .product-group .product-item {
height: 100%;
width: 230px;
/* float: left; */
/* margin-right: 128px; */
margin: 0 64px;
}
/* .content .product-group .product-item:last-child {
margin-right: 0px;
} */
.content .product-group .product-img {
width: 230px;
height: 230px;
}
.content .product-group .product-img .circle {
position: relative;
border-radius: 50%;
box-sizing: border-box;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.3;
}
.content .product-group .product-item:hover .product-img .circle {
animation: hoverScale 0.9s cubic-bezier(.17, .67, .83, .67) infinite alternate;
}
@keyframes hoverScale {
0% {
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.3;
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
.content .product-group .product-img .circle1 {
width: 10px;
height: 10px;
background: #ffffff;
margin-left: 110px;
margin-top: -120px;
}
.content .product-group .product-img .circle2 {
width: 50px;
height: 50px;
border: 1px solid #ffffff;
margin-left: 90px;
margin-top: -30px;
}
.content .product-group .product-img .circle3 {
width: 230px;
height: 230px;
border: 1px solid #dddddd;
margin-left: 0;
margin-top: -142px;
}
.content .product-group .product-hr {
position: relative;
width: 1px;
margin: 0 auto;
margin-top: -38px;
height: 76px;
background: #dddddd;
z-index: 10;
}
.content .product-group .product-name {
color: #333333;
font-size: 24.0px;
text-align: center;
margin: 8px 0 19px;
}
.content .product-group .product-icon {
width: 60px;
height: 60px;
margin: 0 auto;
}
.content .program {
height: 840px;
background: #fbfbfd;
}
.content .program-content {
height: calc(100% - 50px);
width: 100%;
}
.content .program-content .subtitle {
width: 284px;
height: 50px;
line-height: 50px;
color: #ffffff;
font-size: 28.0px;
background: url('../img/index/subtitle-bg.png') center center no-repeat;
text-align: center;
margin: 18px auto;
}
.content .program-content .control {
display: inline-block;
float: right;
height: 31px;
line-height: 31px;
color: #999999;
font-size: 20.0px;
margin-right: 50px;
text-align: right;
padding-right: 70px;
background-image: url('../img/index/close.png');
background-position: right bottom;
background-repeat: no-repeat;
}
.content .program-content .control.close {
background-image: url('../img/index/close.png');
}
.content .program-content .control.open {
background-image: url('../img/index/open.png');
}
.content .program-content .program-img {
margin: 0 auto;
margin-top: 16px;
position: relative;
}
.content .program-content .program-img img {
margin: 0 auto;
display: block;
}
.content .program-content .program-img>.point {
position: absolute;
width: 24px;
height: 24px;
}
.content .program-content .program-img>.point>.point-circle-white {
position: absolute;
left: 8px;
top: 8px;
width: 8px;
height: 8px;
border-radius: 4px;
background: #ffffff;
z-index: 10;
}
.content .program-content .program-img>.point>.point-circle-color {
position: absolute;
left: 0px;
top: 0px;
width: 24px;
height: 24px;
border-radius: 12px;
background: #13a2e0;
z-index: 1;
animation: myglare 2s linear infinite;
}
@keyframes myglare {
0% {
-webkit-transform: scale(0.4);
-ms-transform: scale(.4);
transform: scale(0.4);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 0.0;
}
}
.content .program-content .program-img>.point>.point-text {
position: absolute;
left: 10px;
top: 10px;
padding: 0 15px;
white-space: nowrap;
height: 34px;
line-height: 34px;
color: #666666;
font-size: 16.0px;
border: 1px solid #d7d7d7;
background: #ffffff;
box-shadow: 0px 2px 4px rgba(105, 105, 105, 0.5);
transition: opacity .8s;
opacity: 0;
}
.content .program-content .program-img>.point>.point-text.allshow {
opacity: 1;
}
.content .program-content .program-img>.point:hover>.point-text {
opacity: 1;
}
#point-1 {
left: 478.51px;
top: 50.65px;
}
#point-2 {
left: 662.51px;
top: 113.65px;
}
#point-3 {
left: 488.51px;
top: 284.65px;
}
#point-4 {
left: 795.51px;
top: 280.65px;
}
#point-5 {
left: 209.51px;
top: 304.65px;
}
#point-6 {
left: 332.51px;
top: 355.65px;
}
#point-7 {
left: 389.51px;
top: 407.65px;
}
#point-8 {
left: 532.51px;
top: 367.65px;
}
.content .item.news {
padding-bottom: 0px;
}
.content .news-content {
margin-top: 34px;
display: flex;
justify-content: space-around;
}
.content .news-content .news-item {
width: 300px;
height: 290px;
}
.content .news-content .news-item .img-margin {
width: 300px;
height: 225px;
}
.content .news-content .news-item .img-margin img {
max-width: 300px;
max-height: 225px;
}
.content .news-content .news-item .news-value {
font-size: 16.0px;
color: #333333;
margin: 15px 0 8px;
}
.content .news-content .news-item .news-time {
font-size: 12.0px;
color: #999999;
}
.cooperation {
width: 100%;
padding: 0 210px 50px;
}
.cooperation-count {
height: 208px;
background: url('../img/index/cooperation-count-bg.png') center center no-repeat;
background-size: 100% 100%;
width: 100%;
display: flex;
justify-content: center;
}
.cooperation-count .count-item {
width: 236px;
height: 100%;
margin: 0 43px;
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.cooperation-count .count-item .count-name {
display: block;
margin-bottom: 24px;
height: 33px;
line-height: 33px;
font-size: 24.0px;
}
.cooperation-count .count-item .count-value {
display: block;
height: 60px;
line-height: 60px;
font-size: 70.0px;
}
.content .el-row {
box-sizing: content-box;
border-bottom: 1px solid #eaeaea;
}
.content .el-row:last-child {
border-color: transparent;
}
.content .cooperation-count .cooperation-brands {
width: 100%;
height: auto;
}
.content .bg-purple.brand-item {
height: 110px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.content .hasBg-margin {
position: absolute;
left: 0;
right: 0;
background: #fbfbfd;
z-index: -1;
}
#hasBg-1 {
height: 840px;
}
@media screen and (max-width:980px) {
.content .item {
width: 100%;
padding: 40px 10px 50px;
}
/* .content .product-group {
justify-content: space-around;
} */
.content .product-group .product-item {
margin: 0;
}
.cooperation {
padding: 0 10px 50px;
}
} | css/index.css | .banner {
background-color: #0a0b11;
width: 100%;
text-align: center
}
.banner .el-carousel {
width: 100%;
max-width: 1920px;
max-height: 440px;
}
.carousel-img {
max-width: 100%;
max-height: 440px;
}
.content .item {
width: 100%;
padding: 40px 210px 50px;
}
.content .title {
padding-left: 20px;
color: #333333;
font-size: 36.0px;
height: 50px;
line-height: 50px;
border-left: 4px solid #13a2e0;
}
.content .more {
height: 28px;
line-height: 28px;
padding-right: 38px;
background: url('../img/index/more_normal.png') right center no-repeat;
float: right;
}
.content .more:hover {
background-image: url('../img/index/more_pressed.png');
}
.content .product-group {
width: 100%;
height: 387px;
margin-top: 47px;
display: flex;
justify-content: space-around;
align-items: center;
}
.content .product-group .product-item {
height: 100%;
width: 230px;
/* float: left; */
/* margin-right: 128px; */
margin: 0 64px;
}
/* .content .product-group .product-item:last-child {
margin-right: 0px;
} */
.content .product-group .product-img {
width: 230px;
height: 230px;
}
.content .product-group .product-img .circle {
position: relative;
border-radius: 50%;
box-sizing: border-box;
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.3;
}
.content .product-group .product-item:hover .product-img .circle {
animation: hoverScale 0.9s cubic-bezier(.17, .67, .83, .67) infinite alternate;
}
@keyframes hoverScale {
0% {
-webkit-transform: scale(0.6);
-ms-transform: scale(0.6);
transform: scale(0.6);
opacity: 0.3;
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
.content .product-group .product-img .circle1 {
width: 10px;
height: 10px;
background: #ffffff;
margin-left: 110px;
margin-top: -120px;
}
.content .product-group .product-img .circle2 {
width: 50px;
height: 50px;
border: 1px solid #ffffff;
margin-left: 90px;
margin-top: -30px;
}
.content .product-group .product-img .circle3 {
width: 230px;
height: 230px;
border: 1px solid #dddddd;
margin-left: 0;
margin-top: -142px;
}
.content .product-group .product-hr {
position: relative;
width: 1px;
margin: 0 auto;
margin-top: -38px;
height: 76px;
background: #dddddd;
z-index: 10;
}
.content .product-group .product-name {
color: #333333;
font-size: 24.0px;
text-align: center;
margin: 8px 0 19px;
}
.content .product-group .product-icon {
width: 60px;
height: 60px;
margin: 0 auto;
}
.content .program {
height: 840px;
background: #fbfbfd;
}
.content .program-content {
height: calc(100% - 50px);
width: 100%;
}
.content .program-content .subtitle {
width: 284px;
height: 50px;
line-height: 50px;
color: #ffffff;
font-size: 28.0px;
background: url('../img/index/subtitle-bg.png') center center no-repeat;
text-align: center;
margin: 18px auto;
}
.content .program-content .control {
display: inline-block;
float: right;
height: 31px;
line-height: 31px;
color: #999999;
font-size: 20.0px;
margin-right: 50px;
text-align: right;
padding-right: 70px;
background-image: url('../img/index/close.png');
background-position: right bottom;
background-repeat: no-repeat;
}
.content .program-content .control.close {
background-image: url('../img/index/close.png');
}
.content .program-content .control.open {
background-image: url('../img/index/open.png');
}
.content .program-content .program-img {
margin: 0 auto;
margin-top: 16px;
position: relative;
}
.content .program-content .program-img img {
margin: 0 auto;
display: block;
}
.content .program-content .program-img>.point {
position: absolute;
width: 24px;
height: 24px;
}
.content .program-content .program-img>.point>.point-circle-white {
position: absolute;
left: 8px;
top: 8px;
width: 8px;
height: 8px;
border-radius: 4px;
background: #ffffff;
z-index: 10;
}
.content .program-content .program-img>.point>.point-circle-color {
position: absolute;
left: 0px;
top: 0px;
width: 24px;
height: 24px;
border-radius: 12px;
background: #13a2e0;
z-index: 1;
animation: myglare 2s linear infinite;
}
@keyframes myglare {
0% {
-webkit-transform: scale(0.4);
-ms-transform: scale(.4);
transform: scale(0.4);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 0.0;
}
}
.content .program-content .program-img>.point>.point-text {
position: absolute;
left: 10px;
top: 10px;
padding: 0 15px;
white-space: nowrap;
height: 34px;
line-height: 34px;
color: #666666;
font-size: 16.0px;
border: 1px solid #d7d7d7;
background: #ffffff;
box-shadow: 0px 2px 4px rgba(105, 105, 105, 0.5);
transition: opacity .8s;
opacity: 0;
}
.content .program-content .program-img>.point>.point-text.allshow {
opacity: 1;
}
.content .program-content .program-img>.point:hover>.point-text {
opacity: 1;
}
#point-1 {
left: 478.51px;
top: 50.65px;
}
#point-2 {
left: 662.51px;
top: 113.65px;
}
#point-3 {
left: 488.51px;
top: 284.65px;
}
#point-4 {
left: 795.51px;
top: 280.65px;
}
#point-5 {
left: 209.51px;
top: 304.65px;
}
#point-6 {
left: 332.51px;
top: 355.65px;
}
#point-7 {
left: 389.51px;
top: 407.65px;
}
#point-8 {
left: 532.51px;
top: 367.65px;
}
.content .item.news {
padding-bottom: 0px;
}
.content .news-content {
margin-top: 34px;
display: flex;
justify-content: space-around;
}
.content .news-content .news-item {
width: 300px;
height: 290px;
}
.content .news-content .news-item .img-margin {
width: 300px;
height: 225px;
}
.content .news-content .news-item .img-margin img {
max-width: 300px;
max-height: 225px;
}
.content .news-content .news-item .news-value {
font-size: 16.0px;
color: #333333;
margin: 15px 0 8px;
}
.content .news-content .news-item .news-time {
font-size: 12.0px;
color: #999999;
}
.cooperation {
width: 100%;
padding: 0 210px 50px;
}
.cooperation-count {
height: 208px;
background: url('../img/index/cooperation-count-bg.png') center center no-repeat;
background-size: 100% 100%;
width: 100%;
display: flex;
justify-content: center;
}
.cooperation-count .count-item {
width: 236px;
height: 100%;
margin: 0 43px;
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.cooperation-count .count-item .count-name {
display: block;
margin-bottom: 24px;
height: 33px;
line-height: 33px;
font-size: 24.0px;
}
.cooperation-count .count-item .count-value {
display: block;
height: 60px;
line-height: 60px;
font-size: 70.0px;
}
.content .el-row {
box-sizing: content-box;
border-bottom: 1px solid #eaeaea;
}
.content .el-row:last-child {
border-color: transparent;
}
.content .cooperation-count .cooperation-brands {
width: 100%;
height: auto;
}
.content .bg-purple.brand-item {
height: 110px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.content .hasBg-margin {
position: absolute;
left: 0;
right: 0;
background: #fbfbfd;
z-index: -1;
}
#hasBg-1 {
height: 840px;
}
@media screen and (max-width:980px) {
.content .item {
width: 100%;
padding: 40px 10px 50px;
}
/* .content .product-group {
justify-content: space-around;
} */
.content .product-group .product-item {
margin: 0;
}
.cooperation {
padding: 0 10px 50px;
}
} | 0.417509 | 0.11187 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #80CBC4;
--dark: #263238;
--dark-light: #3C474C;
--light: #8B969A;
--bg-dark: rgba(0,0,0,.75);
--spacing-one: calc(1rem * 0.5);
--spacing-two: calc(1rem);
--spacing-five: calc(2.5rem);
--main-font: 'Ubuntu Condensed', 'Roboto', sans-serif;
}
body {
font-family: var(--main-font);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: url(./assets/images/background.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: bottom;
background-attachment: fixed;
height: 100vh;
color: white;
overflow-x: hidden;
}
main {
top: 7.5rem;
position: absolute;
}
/* display styles */
.h100 {
height:100%
}
.w25 {
width: 25%;
}
.w75 {
width: 75%;
}
.w100 {
width: 100%
}
.vw100 {
width: 100vw;
}
.flex-row {
display: flex;
flex-wrap: wrap;
}
.justify-space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.align-center {
align-content: center;
}
.circle {
border-radius: 100%;
}
.bg-dark {
background-color: var(--bg-dark);
}
/* margin and padding styles */
.mx-1 {
margin-right: var(--spacing-one);
margin-left: var(--spacing-one);
}
.mx-2 {
margin-right: var(--spacing-two);
margin-left: var(--spacing-two);
}
.mx-5 {
margin-left: var(--spacing-five);
margin-right: var(--spacing-five);
}
.my-1 {
margin-top: var(--spacing-one);
margin-bottom: var(--spacing-one);
}
.my-2 {
margin-top: var(--spacing-two);
margin-bottom: var(--spacing-two);
}
.my-5 {
margin-top: var(--spacing-five);
margin-bottom: var(--spacing-five);
}
.px-1 {
padding-right: var(--spacing-one);
padding-left: var(--spacing-one);
}
.px-2 {
padding-right: var(--spacing-two);
padding-left: var(--spacing-two);
}
.px-5 {
padding-left: var(--spacing-five);
padding-right: var(--spacing-five);
}
.py-1 {
padding-top: var(--spacing-one);
padding-bottom: var(--spacing-one);
}
.py-2 {
padding-top: var(--spacing-two);
padding-bottom: var(--spacing-two);
}
.py-5 {
padding-top: var(--spacing-five);
padding-bottom: var(--spacing-five);
}
.mt-1 {
margin-top: var(--spacing-one);
}
.mt-2 {
margin-top: var(--spacing-two);
}
.mr-1 {
margin-right: var(--spacing-one);
}
.mb-1 {
margin-bottom: var(--spacing-one);
}
.mb-2 {
margin-bottom: var(--spacing-two);
}
.mb-5 {
margin-bottom: var(--spacing-five);
}
.ml-2 {
margin-left: var(--spacing-two);
}
.pl-2 {
padding-left: var(--spacing-two);
}
.pb-5 {
padding-bottom: var(--spacing-five);
}
/* text styles */
.text-primary {
color: var(--primary);
}
.text-center {
text-align: center;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.text-small {
font-size: .8rem;
}
.navActive {
color: var(--primary);
border-bottom: 1px solid var(--primary);
}
a, a:visited {
font-family: var(--main-font);
color: white;
transition: color .5s;
}
a:hover {
color: var(--primary)
}
/* container styles */
.section-container {
padding: var(--spacing-five);
}
/* form control */
.form-control {
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
width: 100%;
line-height: 1.5rem;
font-family: var(--main-font);
font-size: 1rem;
border: 2px solid var(--primary);
border-radius: 5px;
}
.form-control:focus {
outline: none;
border: 3px solid var(--primary)
}
.form-label {
font-weight: bold;
line-height: 1.5rem;
margin-top: 2px;
margin-bottom: 2px;
}
.btn {
padding: .5rem .8rem;
margin: .5rem 0;
background-color: var(--dark-light);
color: white;
font-family: var(--main-font);
font-weight: bold;
border-radius: 5px;
border: 1px solid var(--dark);
transition: background-color .5s;
}
.btn:hover {
background-color: var(--primary);
}
@media screen and (max-width: 576px) {
.section-container {
padding: var(--spacing-two);
}
} | src/index.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #80CBC4;
--dark: #263238;
--dark-light: #3C474C;
--light: #8B969A;
--bg-dark: rgba(0,0,0,.75);
--spacing-one: calc(1rem * 0.5);
--spacing-two: calc(1rem);
--spacing-five: calc(2.5rem);
--main-font: 'Ubuntu Condensed', 'Roboto', sans-serif;
}
body {
font-family: var(--main-font);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: url(./assets/images/background.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: bottom;
background-attachment: fixed;
height: 100vh;
color: white;
overflow-x: hidden;
}
main {
top: 7.5rem;
position: absolute;
}
/* display styles */
.h100 {
height:100%
}
.w25 {
width: 25%;
}
.w75 {
width: 75%;
}
.w100 {
width: 100%
}
.vw100 {
width: 100vw;
}
.flex-row {
display: flex;
flex-wrap: wrap;
}
.justify-space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.align-center {
align-content: center;
}
.circle {
border-radius: 100%;
}
.bg-dark {
background-color: var(--bg-dark);
}
/* margin and padding styles */
.mx-1 {
margin-right: var(--spacing-one);
margin-left: var(--spacing-one);
}
.mx-2 {
margin-right: var(--spacing-two);
margin-left: var(--spacing-two);
}
.mx-5 {
margin-left: var(--spacing-five);
margin-right: var(--spacing-five);
}
.my-1 {
margin-top: var(--spacing-one);
margin-bottom: var(--spacing-one);
}
.my-2 {
margin-top: var(--spacing-two);
margin-bottom: var(--spacing-two);
}
.my-5 {
margin-top: var(--spacing-five);
margin-bottom: var(--spacing-five);
}
.px-1 {
padding-right: var(--spacing-one);
padding-left: var(--spacing-one);
}
.px-2 {
padding-right: var(--spacing-two);
padding-left: var(--spacing-two);
}
.px-5 {
padding-left: var(--spacing-five);
padding-right: var(--spacing-five);
}
.py-1 {
padding-top: var(--spacing-one);
padding-bottom: var(--spacing-one);
}
.py-2 {
padding-top: var(--spacing-two);
padding-bottom: var(--spacing-two);
}
.py-5 {
padding-top: var(--spacing-five);
padding-bottom: var(--spacing-five);
}
.mt-1 {
margin-top: var(--spacing-one);
}
.mt-2 {
margin-top: var(--spacing-two);
}
.mr-1 {
margin-right: var(--spacing-one);
}
.mb-1 {
margin-bottom: var(--spacing-one);
}
.mb-2 {
margin-bottom: var(--spacing-two);
}
.mb-5 {
margin-bottom: var(--spacing-five);
}
.ml-2 {
margin-left: var(--spacing-two);
}
.pl-2 {
padding-left: var(--spacing-two);
}
.pb-5 {
padding-bottom: var(--spacing-five);
}
/* text styles */
.text-primary {
color: var(--primary);
}
.text-center {
text-align: center;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.text-small {
font-size: .8rem;
}
.navActive {
color: var(--primary);
border-bottom: 1px solid var(--primary);
}
a, a:visited {
font-family: var(--main-font);
color: white;
transition: color .5s;
}
a:hover {
color: var(--primary)
}
/* container styles */
.section-container {
padding: var(--spacing-five);
}
/* form control */
.form-control {
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
width: 100%;
line-height: 1.5rem;
font-family: var(--main-font);
font-size: 1rem;
border: 2px solid var(--primary);
border-radius: 5px;
}
.form-control:focus {
outline: none;
border: 3px solid var(--primary)
}
.form-label {
font-weight: bold;
line-height: 1.5rem;
margin-top: 2px;
margin-bottom: 2px;
}
.btn {
padding: .5rem .8rem;
margin: .5rem 0;
background-color: var(--dark-light);
color: white;
font-family: var(--main-font);
font-weight: bold;
border-radius: 5px;
border: 1px solid var(--dark);
transition: background-color .5s;
}
.btn:hover {
background-color: var(--primary);
}
@media screen and (max-width: 576px) {
.section-container {
padding: var(--spacing-two);
}
} | 0.549641 | 0.10961 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
scroll-behavior: smooth;
}
/* Customizar scroll bar */
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track{
background: #F1F1F1;
}
::-webkit-scrollbar-thumb{
background: #4070F4;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover{
background: #6E93F7;
border-radius: 20px;
}
/* Navegador menu */
nav {
position: fixed;
width: 100%;
padding: 20px 0;
font-family: 'Ubuntu' , sans-serif;
transition: all 0.4s ease;
z-index: 998;
}
nav.sticky {
background: #4070F4;
padding: 13px 0;
}
nav .navbar {
width: 90%;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
}
nav .navbar .logo a{
font-size: 40px;
font-weight: 500;
color: #4070F4;
}
nav.sticky .navbar .logo a{
color: #fff;
}
nav .navbar .menu {
display: flex;
}
nav .navbar .menu li{
margin: 0 8px;
list-style: none;
}
.navbar .menu li a{
font-size: 18px;
font-size: 500;
color: #0e2431;
transition: all 0.3s ease;
}
.navbar .menu li a:hover{
color: #4070F4;
}
nav.sticky .navbar .menu li a{
color: #FFF;
}
nav.sticky .navbar .menu li a:hover{
color: #4070F4;
}
.navbar .media-icons a{
font-size: 18px;
margin: 0 6px;
color: #4070F4;
}
nav.sticky .navbar .media-icons a{
color: #FFF;
}
nav.sticky .navbar .media-icons a:hover{
color: #0e2431;
}
/* lado navegar o Menu do botão css */
nav .menu-btn,
.navbar .cancel-btn {
position: absolute;
color: #fff;
font-size: 20px;
right: 30px;
top: 20px;
display: none;
cursor: pointer;
}
nav .menu-btn{
color: #4070F4;
}
nav.sticky .menu-btn{
color: #FFF;
}
/* Inicio section css */
.home {
height: 100vh;
width: 100%;
background: url("images/back1.png") no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
font-family: 'Ubuntu' , sans-serif;
}
.home .home-content {
height: 100%;
width: 90%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.home .text .text-um{
font-size: 35px;
color: #0e2431;
}
.home .text .text-dois{
font-size: 75px;
font-weight: 600;
margin-left: -3px;
color: #0e2431;
}
.home .text .text-tres{
font-size: 35px;
color: #0e2431;
}
.home .text .text-quatro{
font-size: 23px;
margin: 5px 0;
color: #0e2431;
}
.home .button{
margin: 14px 0;
}
.home .button button{
outline: none;
color: #FFF;
font-size: 25px;
font-weight: 500;
padding: 8px 16px;
background: #4070F4;
border: 2px solid transparent;
border-radius: 5px;
transition: all 0.4s ease;
}
.home .button button:hover{
color: #4070F4;
background: #FFF;
border-color: #4070F4;
}
/* Sobre mim css / about me section */
section {
padding-top: 40px;
}
section .content {
width: 80%;
margin: 40px auto;
font-family: 'Poppins' , sans-serif;
}
section .title{
display: flex;
justify-content: center;
margin-bottom: 40px;
}
section .title span{
font-size: 30px;
font-weight: 600;
position: relative;
}
section .title span::before,
section .title span::after{
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100%;
background: #4070F4;
}
section .title span::after{
width: 70%;
left: 50%;
transform: translateX(-50%);
bottom: -7px;
}
.about .about-details{
display: flex;
align-items: center;
justify-content: space-between;
}
.about .about-details .right {
width: 45%;
}
.about .about-details .right img{
height: 400px;
width: 400px;
object-fit: cover;
border-radius: 12px;
}
.about .about-details .left{
width: 55%;
}
section .topic{
font-size: 25px;
font-weight: 500;
color: #0e2431;
margin-bottom: 10px;
}
.about-details .left .topic p{
color: #0e2431;
text-align: justify;
}
section .button{
margin: 14px 0;
}
section .button button{
outline: none;
color: #FFF;
font-size: 25px;
font-weight: 500;
padding: 8px 16px;
background: #4070F4;
border: 2px solid transparent;
border-radius: 5px;
transition: all 0.4s ease;
}
section .button button:hover{
color: #4070F4;
background: #FFF;
border-color: #4070F4;
}
/* Minhas habilidades css / my skills CSS*/
.skills{
background: #F0F8ff;
}
.skills .content{
padding: 40px 0;
}
.skills .skill-details{
display: flex;
align-items: center;
justify-content: space-between;
}
.skills .skill-details .left{
width: 50%;
}
.skill-details .left p{
color: #0e2431;
text-align: justify;
}
.skill-details .left .experience{
display: flex;
align-items: center;
}
.skill-details .left .experience .num{
font-size: 80px;
color: #0e2431;
font-weight: 500;
}
.skill-details .left .experience .exp{
font-size: 19px;
color: #0e2431;
font-weight: 500;
}
.skills .skill-details .boxes{
width: 45%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.skills .skill-details .boxes .box{
width: calc(100% / 2 - 20px);
}
.skill-details .boxes .box .topic{
font-size: 20px;
font-weight: 500;
color: #4070F4;
}
.skill-details .boxes .box .num{
font-size: 60px;
font-weight: 500;
color: #4070F4;
}
/* Meu serviço css / my service css */
.services .boxes{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.services .boxes .box{
width: calc(100% / 3 - 20px);
margin: 20px 0;
border-radius: 12px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
text-align: center;
padding: 20px 10px;
transition: all 0.4s ease;
}
.services .boxes .box:hover{
background: #4070F4;
color: #fff;
}
.services .boxes .box .icon{
height: 50px;
width: 50px;
color: #FFF;
background: #4070F4;
border-radius: 50%;
text-align: center;
line-height: 50px;
margin: 0 auto 10px auto;
transition: all 0.4s ease;
}
.services .boxes .box:hover .icon{
background: #FFF;
color: #4070F4;
}
.services .boxes .box:hover .topic{
color: #FFF;
}
/* Contato css / contact css*/
.contact{
background: #F0F8ff;
padding: 20px 0;
}
.contact .text{
text-align: center;
margin: auto;
width: 80%;
}
/* Rodape css / footer css */
footer{
background: #4070F4;
text-align: center;
padding: 15px 0;
font-family: 'Poppins' , sans-serif;
}
footer .text span{
color:#fff;
font-size: 17px;
font-weight: 500;
}
footer .text span a{
color:#fff;
font-size: 18px;
font-weight: 500;
}
footer .text span a:hover{
text-decoration: underline;
}
/* Scroll */
.scroll-btn i{
position: fixed;
bottom: 20px;
right: 20px;
padding: 7px 20px;
background: #4070F4;
color: #FFF;
font-size: 18px;
box-shadow: 0 5px 10px rgba(0,0,0,0.15);
border-radius: 6px;
}
/* Media query */
@media (max-width: 1190px){
.about .content {
width: 85%;
}
.skills .content {
width: 90%;
}
.services .content {
width: 90%;
}
}
@media (max-width: 1090px){
.about .about-details{
flex-direction: column;
}
.about .about-details .right{
width: 100%;
display: flex;
justify-content: center;
}
.about .about-details .left{
width: 90%;
margin: 40px 0;
}
.services .boxes .box{
width: calc(100% / 2 - 20px);
}
.contact .text{
width: 90%;
}
}
@media (max-width: 961px){
.about .about-details .right img{
height: 350px;
width: 350px;
}
}
@media (max-width: 800px) {
nav .navbar .menu{
position: absolute;
left: -100%;
top: 0;
height: 100vh;
max-width: 400px;
width: 100%;
background: #0e2431;
flex-direction: column;
align-items: center;
padding-top: 60px;
transition: all 0.5s ease;
}
nav .navbar.active .menu{
left: 0;
}
.navbar .menu li a{
display: block;
margin: 10px 0;
font-size: 23px;
color: #FFF;
}
.navbar .media-icons a{
display: none;
}
nav .menu-btn,
.navbar .cancel-btn {
display: block;
}
.home .text .text-dois{
font-size: 60px;
}
.home .text .text-tres{
font-size: 30px;
}
.skills .skill-details{
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.skills .skill-details .left{
width: 90%;
}
.skills .skill-details .boxes{
width: 90%;
margin: 40px 0;
}
.services .boxes .box{
width: 100%;
}
.contact .text{
width: 90%;
}
}
@media (max-width: 510px) {
.home .text .text-dois{
font-size: 55px;
}
.home .text .text-tres{
font-size: 26px;
}
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
scroll-behavior: smooth;
}
/* Customizar scroll bar */
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track{
background: #F1F1F1;
}
::-webkit-scrollbar-thumb{
background: #4070F4;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover{
background: #6E93F7;
border-radius: 20px;
}
/* Navegador menu */
nav {
position: fixed;
width: 100%;
padding: 20px 0;
font-family: 'Ubuntu' , sans-serif;
transition: all 0.4s ease;
z-index: 998;
}
nav.sticky {
background: #4070F4;
padding: 13px 0;
}
nav .navbar {
width: 90%;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
}
nav .navbar .logo a{
font-size: 40px;
font-weight: 500;
color: #4070F4;
}
nav.sticky .navbar .logo a{
color: #fff;
}
nav .navbar .menu {
display: flex;
}
nav .navbar .menu li{
margin: 0 8px;
list-style: none;
}
.navbar .menu li a{
font-size: 18px;
font-size: 500;
color: #0e2431;
transition: all 0.3s ease;
}
.navbar .menu li a:hover{
color: #4070F4;
}
nav.sticky .navbar .menu li a{
color: #FFF;
}
nav.sticky .navbar .menu li a:hover{
color: #4070F4;
}
.navbar .media-icons a{
font-size: 18px;
margin: 0 6px;
color: #4070F4;
}
nav.sticky .navbar .media-icons a{
color: #FFF;
}
nav.sticky .navbar .media-icons a:hover{
color: #0e2431;
}
/* lado navegar o Menu do botão css */
nav .menu-btn,
.navbar .cancel-btn {
position: absolute;
color: #fff;
font-size: 20px;
right: 30px;
top: 20px;
display: none;
cursor: pointer;
}
nav .menu-btn{
color: #4070F4;
}
nav.sticky .menu-btn{
color: #FFF;
}
/* Inicio section css */
.home {
height: 100vh;
width: 100%;
background: url("images/back1.png") no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
font-family: 'Ubuntu' , sans-serif;
}
.home .home-content {
height: 100%;
width: 90%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.home .text .text-um{
font-size: 35px;
color: #0e2431;
}
.home .text .text-dois{
font-size: 75px;
font-weight: 600;
margin-left: -3px;
color: #0e2431;
}
.home .text .text-tres{
font-size: 35px;
color: #0e2431;
}
.home .text .text-quatro{
font-size: 23px;
margin: 5px 0;
color: #0e2431;
}
.home .button{
margin: 14px 0;
}
.home .button button{
outline: none;
color: #FFF;
font-size: 25px;
font-weight: 500;
padding: 8px 16px;
background: #4070F4;
border: 2px solid transparent;
border-radius: 5px;
transition: all 0.4s ease;
}
.home .button button:hover{
color: #4070F4;
background: #FFF;
border-color: #4070F4;
}
/* Sobre mim css / about me section */
section {
padding-top: 40px;
}
section .content {
width: 80%;
margin: 40px auto;
font-family: 'Poppins' , sans-serif;
}
section .title{
display: flex;
justify-content: center;
margin-bottom: 40px;
}
section .title span{
font-size: 30px;
font-weight: 600;
position: relative;
}
section .title span::before,
section .title span::after{
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100%;
background: #4070F4;
}
section .title span::after{
width: 70%;
left: 50%;
transform: translateX(-50%);
bottom: -7px;
}
.about .about-details{
display: flex;
align-items: center;
justify-content: space-between;
}
.about .about-details .right {
width: 45%;
}
.about .about-details .right img{
height: 400px;
width: 400px;
object-fit: cover;
border-radius: 12px;
}
.about .about-details .left{
width: 55%;
}
section .topic{
font-size: 25px;
font-weight: 500;
color: #0e2431;
margin-bottom: 10px;
}
.about-details .left .topic p{
color: #0e2431;
text-align: justify;
}
section .button{
margin: 14px 0;
}
section .button button{
outline: none;
color: #FFF;
font-size: 25px;
font-weight: 500;
padding: 8px 16px;
background: #4070F4;
border: 2px solid transparent;
border-radius: 5px;
transition: all 0.4s ease;
}
section .button button:hover{
color: #4070F4;
background: #FFF;
border-color: #4070F4;
}
/* Minhas habilidades css / my skills CSS*/
.skills{
background: #F0F8ff;
}
.skills .content{
padding: 40px 0;
}
.skills .skill-details{
display: flex;
align-items: center;
justify-content: space-between;
}
.skills .skill-details .left{
width: 50%;
}
.skill-details .left p{
color: #0e2431;
text-align: justify;
}
.skill-details .left .experience{
display: flex;
align-items: center;
}
.skill-details .left .experience .num{
font-size: 80px;
color: #0e2431;
font-weight: 500;
}
.skill-details .left .experience .exp{
font-size: 19px;
color: #0e2431;
font-weight: 500;
}
.skills .skill-details .boxes{
width: 45%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.skills .skill-details .boxes .box{
width: calc(100% / 2 - 20px);
}
.skill-details .boxes .box .topic{
font-size: 20px;
font-weight: 500;
color: #4070F4;
}
.skill-details .boxes .box .num{
font-size: 60px;
font-weight: 500;
color: #4070F4;
}
/* Meu serviço css / my service css */
.services .boxes{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.services .boxes .box{
width: calc(100% / 3 - 20px);
margin: 20px 0;
border-radius: 12px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
text-align: center;
padding: 20px 10px;
transition: all 0.4s ease;
}
.services .boxes .box:hover{
background: #4070F4;
color: #fff;
}
.services .boxes .box .icon{
height: 50px;
width: 50px;
color: #FFF;
background: #4070F4;
border-radius: 50%;
text-align: center;
line-height: 50px;
margin: 0 auto 10px auto;
transition: all 0.4s ease;
}
.services .boxes .box:hover .icon{
background: #FFF;
color: #4070F4;
}
.services .boxes .box:hover .topic{
color: #FFF;
}
/* Contato css / contact css*/
.contact{
background: #F0F8ff;
padding: 20px 0;
}
.contact .text{
text-align: center;
margin: auto;
width: 80%;
}
/* Rodape css / footer css */
footer{
background: #4070F4;
text-align: center;
padding: 15px 0;
font-family: 'Poppins' , sans-serif;
}
footer .text span{
color:#fff;
font-size: 17px;
font-weight: 500;
}
footer .text span a{
color:#fff;
font-size: 18px;
font-weight: 500;
}
footer .text span a:hover{
text-decoration: underline;
}
/* Scroll */
.scroll-btn i{
position: fixed;
bottom: 20px;
right: 20px;
padding: 7px 20px;
background: #4070F4;
color: #FFF;
font-size: 18px;
box-shadow: 0 5px 10px rgba(0,0,0,0.15);
border-radius: 6px;
}
/* Media query */
@media (max-width: 1190px){
.about .content {
width: 85%;
}
.skills .content {
width: 90%;
}
.services .content {
width: 90%;
}
}
@media (max-width: 1090px){
.about .about-details{
flex-direction: column;
}
.about .about-details .right{
width: 100%;
display: flex;
justify-content: center;
}
.about .about-details .left{
width: 90%;
margin: 40px 0;
}
.services .boxes .box{
width: calc(100% / 2 - 20px);
}
.contact .text{
width: 90%;
}
}
@media (max-width: 961px){
.about .about-details .right img{
height: 350px;
width: 350px;
}
}
@media (max-width: 800px) {
nav .navbar .menu{
position: absolute;
left: -100%;
top: 0;
height: 100vh;
max-width: 400px;
width: 100%;
background: #0e2431;
flex-direction: column;
align-items: center;
padding-top: 60px;
transition: all 0.5s ease;
}
nav .navbar.active .menu{
left: 0;
}
.navbar .menu li a{
display: block;
margin: 10px 0;
font-size: 23px;
color: #FFF;
}
.navbar .media-icons a{
display: none;
}
nav .menu-btn,
.navbar .cancel-btn {
display: block;
}
.home .text .text-dois{
font-size: 60px;
}
.home .text .text-tres{
font-size: 30px;
}
.skills .skill-details{
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.skills .skill-details .left{
width: 90%;
}
.skills .skill-details .boxes{
width: 90%;
margin: 40px 0;
}
.services .boxes .box{
width: 100%;
}
.contact .text{
width: 90%;
}
}
@media (max-width: 510px) {
.home .text .text-dois{
font-size: 55px;
}
.home .text .text-tres{
font-size: 26px;
}
} | 0.241579 | 0.041153 |
:root {
--value-thin: 0.125rem;
--value-light: 0.25rem;
--value-regular: 0.5rem;
--value-medium: 1rem;
--value-bold: 2rem;
}
.blurred-t {
filter: blur(var(--value-thin));
}
.blurred-l {
filter: blur(var(--value-light));
}
.blurred-r {
filter: blur(var(--value-regular));
}
.blurred-m {
filter: blur(var(--value-medium));
}
.blurred-b {
filter: blur(var(--value-bold));
}
.filter-none {
filter: none;
}
@media screen and (min-width: 30em) {
.blurred-t-ns {
filter: blur(var(--value-thin));
}
.blurred-l-ns {
filter: blur(var(--value-light));
}
.blurred-r-ns {
filter: blur(var(--value-regular));
}
.blurred-m-ns {
filter: blur(var(--value-medium));
}
.blurred-b-ns {
filter: blur(var(--value-bold));
}
.filter-none-ns {
filter: none;
}
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.blurred-t-m {
filter: blur(var(--value-thin));
}
.blurred-l-m {
filter: blur(var(--value-light));
}
.blurred-r-m {
filter: blur(var(--value-regular));
}
.blurred-m-m {
filter: blur(var(--value-medium));
}
.blurred-b-m {
filter: blur(var(--value-bold));
}
.filter-none-m {
filter: none;
}
}
@media screen and (max-width: 60em) and (orientation: landscape) {
.blurred-t-ml {
filter: blur(var(--value-thin));
}
.blurred-l-ml {
filter: blur(var(--value-light));
}
.blurred-r-ml {
filter: blur(var(--value-regular));
}
.blurred-m-ml {
filter: blur(var(--value-medium));
}
.blurred-b-ml {
filter: blur(var(--value-bold));
}
.filter-none-ml {
filter: none;
}
}
@media screen and (min-width: 60em) {
.blurred-t-l {
filter: blur(var(--value-thin));
}
.blurred-l-l {
filter: blur(var(--value-light));
}
.blurred-r-l {
filter: blur(var(--value-regular));
}
.blurred-m-l {
filter: blur(var(--value-medium));
}
.blurred-b-l {
filter: blur(var(--value-bold));
}
.filter-none-l {
filter: none;
}
} | src/modules/filter.css | :root {
--value-thin: 0.125rem;
--value-light: 0.25rem;
--value-regular: 0.5rem;
--value-medium: 1rem;
--value-bold: 2rem;
}
.blurred-t {
filter: blur(var(--value-thin));
}
.blurred-l {
filter: blur(var(--value-light));
}
.blurred-r {
filter: blur(var(--value-regular));
}
.blurred-m {
filter: blur(var(--value-medium));
}
.blurred-b {
filter: blur(var(--value-bold));
}
.filter-none {
filter: none;
}
@media screen and (min-width: 30em) {
.blurred-t-ns {
filter: blur(var(--value-thin));
}
.blurred-l-ns {
filter: blur(var(--value-light));
}
.blurred-r-ns {
filter: blur(var(--value-regular));
}
.blurred-m-ns {
filter: blur(var(--value-medium));
}
.blurred-b-ns {
filter: blur(var(--value-bold));
}
.filter-none-ns {
filter: none;
}
}
@media screen and (min-width: 30em) and (max-width: 60em) {
.blurred-t-m {
filter: blur(var(--value-thin));
}
.blurred-l-m {
filter: blur(var(--value-light));
}
.blurred-r-m {
filter: blur(var(--value-regular));
}
.blurred-m-m {
filter: blur(var(--value-medium));
}
.blurred-b-m {
filter: blur(var(--value-bold));
}
.filter-none-m {
filter: none;
}
}
@media screen and (max-width: 60em) and (orientation: landscape) {
.blurred-t-ml {
filter: blur(var(--value-thin));
}
.blurred-l-ml {
filter: blur(var(--value-light));
}
.blurred-r-ml {
filter: blur(var(--value-regular));
}
.blurred-m-ml {
filter: blur(var(--value-medium));
}
.blurred-b-ml {
filter: blur(var(--value-bold));
}
.filter-none-ml {
filter: none;
}
}
@media screen and (min-width: 60em) {
.blurred-t-l {
filter: blur(var(--value-thin));
}
.blurred-l-l {
filter: blur(var(--value-light));
}
.blurred-r-l {
filter: blur(var(--value-regular));
}
.blurred-m-l {
filter: blur(var(--value-medium));
}
.blurred-b-l {
filter: blur(var(--value-bold));
}
.filter-none-l {
filter: none;
}
} | 0.734596 | 0.320861 |
/* Wrappers */
body.rtl .fl-module-post-carousel .bx-viewport {
direction: ltr;
}
.fl-module-post-carousel .bx-wrapper {
max-width: 100% !important;
margin: 0 auto 40px;
}
.fl-module-post-carousel .bx-controls {
width: 100%;
position: absolute;
bottom: 0;
margin-top: 20px;
}
.fl-post-carousel-navigation{
position: absolute;
top: 50%;
left: 0;
right: 0;
z-index: 20;
margin-top: -16px;
}
.fl-post-carousel-navigation a{
position: absolute;
display: inline-block;
opacity: .7;
}
.fl-post-carousel-navigation a:hover{ opacity: 1; }
.fl-post-carousel-navigation .carousel-prev{ left: 0; }
.fl-post-carousel-navigation .carousel-next{ right: 0; }
.fl-post-carousel-navigation .fl-post-carousel-svg-container{
position: relative;
width: 32px;
height: 32px;
}
.fl-post-carousel-navigation svg{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.fl-post-carousel-navigation path{ fill: #fff; }
.fl-post-carousel-navigation a.disabled,
.bx-controls a.disabled {
pointer-events: none;
}
/*Module styles =======================================*/
/* Post Carousel */
.fl-post-carousel {
margin: 0 auto;
position: relative;
}
.fl-post-carousel-wrapper:before,
.fl-post-carousel-wrapper:after {
content: '';
display: table;
}
.fl-post-carousel-wrapper:after {
clear: both;
}
.fl-post-carousel-post {
position: absolute;
top: 0;
float: left;
visibility: hidden;
background: #fff;
}
.fl-post-carousel-loaded .fl-post-carousel-post {
position: relative;
visibility: visible;
}
.fl-post-carousel-image img {
height: auto !important;
width: 100% !important;
}
.fl-post-carousel-image .fl-photo-content {
display: block;
}
/* Layout - post grid */
.fl-post-carousel-grid .fl-post-carousel-post {
border: 1px solid #e6e6e6;
border: 1px solid rgba(0,0,0,0.1);
}
.fl-post-carousel-grid .fl-post-carousel-text {
padding: 20px;
}
.fl-post-carousel-grid .fl-post-carousel-title {
padding-bottom: 7px;
}
body .fl-post-carousel-text,
body .fl-post-carousel-content p {
font-size: 14px;
line-height: 22px;
}
body .fl-post-carousel-grid .fl-post-carousel-content p:last-of-type {
margin-bottom: 0;
padding-bottom: 0;
}
body .fl-post-carousel-grid .fl-post-carousel-title {
font-size: 20px;
line-height: 26px;
margin: 0 0 10px;
padding: 0;
}
body .fl-post-carousel-grid .fl-post-carousel-meta {
font-size: 14px;
padding-bottom: 10px;
}
/* Layout - post gallery */
.fl-post-carousel-gallery .fl-post-carousel-link {
display: block;
height: 100%;
text-decoration: none;
}
.fl-post-carousel-gallery .fl-post-carousel-img {
position: relative;
z-index: 1;
}
.fl-post-carousel-gallery .fl-post-carousel-text-wrap {
position: absolute;
top: 0;
bottom: 0;
z-index: 2;
width: 100%;
height: 100%;
padding: 0 20px;
text-align: center;
filter: alpha(opacity = 0);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text{
position: relative;
padding: 20px;
top: 0;
left: 0;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
transform: none;
}
.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text-wrap {
filter: alpha(opacity = 100);
opacity: 1;
}
.fl-post-carousel-gallery .fl-post-carousel-text {
position: absolute;
top: 50%;
left: 50%;
display: block;
width: 100%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-carousel-text h2.fl-post-carousel-title {
font-size: 22px;
margin: 0 0 5px 0;
}
/* slide ratio - for slides with no thumb */
.fl-post-carousel-gallery .fl-post-carousel-ratio{
display: block;
position: relative;
width: 100%;
height: auto;
}
.fl-post-carousel-gallery .fl-post-carousel-ratio{ padding-bottom: 70%; }
.fl-post-carousel-gallery .fl-carousel-icon{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.fl-post-carousel-gallery .fl-carousel-icon i,
.fl-post-carousel-gallery .fl-carousel-icon i:before{
width: 24px;
height: 24px;
font-size: 24px;
}
/* Gallery Transitions */
.fl-post-carousel-gallery .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text{
-webkit-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
-ms-transform: translate(-50%,-50%);
transform: translate3d(-50%,-50%,0);
}
/* Common Styles */
body .fl-post-carousel-text a {
text-decoration: none;
} | wp-content/plugins/bb-plugin/modules/post-carousel/css/frontend.css |
/* Wrappers */
body.rtl .fl-module-post-carousel .bx-viewport {
direction: ltr;
}
.fl-module-post-carousel .bx-wrapper {
max-width: 100% !important;
margin: 0 auto 40px;
}
.fl-module-post-carousel .bx-controls {
width: 100%;
position: absolute;
bottom: 0;
margin-top: 20px;
}
.fl-post-carousel-navigation{
position: absolute;
top: 50%;
left: 0;
right: 0;
z-index: 20;
margin-top: -16px;
}
.fl-post-carousel-navigation a{
position: absolute;
display: inline-block;
opacity: .7;
}
.fl-post-carousel-navigation a:hover{ opacity: 1; }
.fl-post-carousel-navigation .carousel-prev{ left: 0; }
.fl-post-carousel-navigation .carousel-next{ right: 0; }
.fl-post-carousel-navigation .fl-post-carousel-svg-container{
position: relative;
width: 32px;
height: 32px;
}
.fl-post-carousel-navigation svg{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.fl-post-carousel-navigation path{ fill: #fff; }
.fl-post-carousel-navigation a.disabled,
.bx-controls a.disabled {
pointer-events: none;
}
/*Module styles =======================================*/
/* Post Carousel */
.fl-post-carousel {
margin: 0 auto;
position: relative;
}
.fl-post-carousel-wrapper:before,
.fl-post-carousel-wrapper:after {
content: '';
display: table;
}
.fl-post-carousel-wrapper:after {
clear: both;
}
.fl-post-carousel-post {
position: absolute;
top: 0;
float: left;
visibility: hidden;
background: #fff;
}
.fl-post-carousel-loaded .fl-post-carousel-post {
position: relative;
visibility: visible;
}
.fl-post-carousel-image img {
height: auto !important;
width: 100% !important;
}
.fl-post-carousel-image .fl-photo-content {
display: block;
}
/* Layout - post grid */
.fl-post-carousel-grid .fl-post-carousel-post {
border: 1px solid #e6e6e6;
border: 1px solid rgba(0,0,0,0.1);
}
.fl-post-carousel-grid .fl-post-carousel-text {
padding: 20px;
}
.fl-post-carousel-grid .fl-post-carousel-title {
padding-bottom: 7px;
}
body .fl-post-carousel-text,
body .fl-post-carousel-content p {
font-size: 14px;
line-height: 22px;
}
body .fl-post-carousel-grid .fl-post-carousel-content p:last-of-type {
margin-bottom: 0;
padding-bottom: 0;
}
body .fl-post-carousel-grid .fl-post-carousel-title {
font-size: 20px;
line-height: 26px;
margin: 0 0 10px;
padding: 0;
}
body .fl-post-carousel-grid .fl-post-carousel-meta {
font-size: 14px;
padding-bottom: 10px;
}
/* Layout - post gallery */
.fl-post-carousel-gallery .fl-post-carousel-link {
display: block;
height: 100%;
text-decoration: none;
}
.fl-post-carousel-gallery .fl-post-carousel-img {
position: relative;
z-index: 1;
}
.fl-post-carousel-gallery .fl-post-carousel-text-wrap {
position: absolute;
top: 0;
bottom: 0;
z-index: 2;
width: 100%;
height: 100%;
padding: 0 20px;
text-align: center;
filter: alpha(opacity = 0);
opacity: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text{
position: relative;
padding: 20px;
top: 0;
left: 0;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
transform: none;
}
.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text-wrap {
filter: alpha(opacity = 100);
opacity: 1;
}
.fl-post-carousel-gallery .fl-post-carousel-text {
position: absolute;
top: 50%;
left: 50%;
display: block;
width: 100%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-carousel-text h2.fl-post-carousel-title {
font-size: 22px;
margin: 0 0 5px 0;
}
/* slide ratio - for slides with no thumb */
.fl-post-carousel-gallery .fl-post-carousel-ratio{
display: block;
position: relative;
width: 100%;
height: auto;
}
.fl-post-carousel-gallery .fl-post-carousel-ratio{ padding-bottom: 70%; }
.fl-post-carousel-gallery .fl-carousel-icon{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.fl-post-carousel-gallery .fl-carousel-icon i,
.fl-post-carousel-gallery .fl-carousel-icon i:before{
width: 24px;
height: 24px;
font-size: 24px;
}
/* Gallery Transitions */
.fl-post-carousel-gallery .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text{
-webkit-transform: translate3d(-50%,-50%,0);
-moz-transform: translate3d(-50%,-50%,0);
-ms-transform: translate(-50%,-50%);
transform: translate3d(-50%,-50%,0);
}
/* Common Styles */
body .fl-post-carousel-text a {
text-decoration: none;
} | 0.357343 | 0.050284 |
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
#chat-messages {
min-height: 10vh;
height: 60vh;
overflow-y: scroll;
}
#chat-members {
min-height: 10vh;
height: 60vh;
overflow-y: scroll;
}
img {
width: 4rem;
margin-right: 1rem;
}
@media screen and (max-width: 992px) {
.img-sizing {
width: 3rem;
margin-right: 0.7rem;
}
}
@media screen and (max-width: 400px) {
.img-sizing {
width: 1.3rem;
margin-right: 0.5rem;
}
}
.chat
{
list-style: none;
margin: 0;
padding: 0;
}
.chat li
{
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dotted #B3A9A9;
}
.chat li .chat-body p
{
margin: 0;
color: #777777;
}
.panel .slidedown .glyphicon, .chat .glyphicon
{
margin-right: 5px;
}
.panel-body
{
overflow-y: scroll;
height: 250px;
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 12px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}
.border-3 {
border-width:3px !important;
}
.side-button{
width: 0.75rem;
height: 100%;
align-items: center;
vertical-align: middle;
display: flex !important;
text-align: center;
}
.top-button{
align-items: center;
display: block;
text-align: center;
}
.collapse {
visibility: hidden;
}
.collapse.show {
visibility: visible;
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.collapsing.width {
-webkit-transition-property: width, visibility;
transition-property: width, visibility;
width: 0;
height: auto;
}
.chat-image{
width: 50%;
}
@media screen and (max-width: 576px) {
.chat-image {
width: 100%;
}
}
.chat-image-half{
width: 25%;
}
.menu-section{
display: inline;
text-align: center;
}
.menu-item{
display: inline-block;
}
@media screen and (max-width: 576px) {
.chat-image-half {
width: 50%;
}
}
.box-dragndrop {
position: fixed;
background-color: rgba(66, 134, 244, 0.5) !important;
z-index: 100;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.overlay-text{
color: white;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
font-size: 2rem;
position: absolute;
} | public/style.css | body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
#chat-messages {
min-height: 10vh;
height: 60vh;
overflow-y: scroll;
}
#chat-members {
min-height: 10vh;
height: 60vh;
overflow-y: scroll;
}
img {
width: 4rem;
margin-right: 1rem;
}
@media screen and (max-width: 992px) {
.img-sizing {
width: 3rem;
margin-right: 0.7rem;
}
}
@media screen and (max-width: 400px) {
.img-sizing {
width: 1.3rem;
margin-right: 0.5rem;
}
}
.chat
{
list-style: none;
margin: 0;
padding: 0;
}
.chat li
{
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dotted #B3A9A9;
}
.chat li .chat-body p
{
margin: 0;
color: #777777;
}
.panel .slidedown .glyphicon, .chat .glyphicon
{
margin-right: 5px;
}
.panel-body
{
overflow-y: scroll;
height: 250px;
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 12px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}
.border-3 {
border-width:3px !important;
}
.side-button{
width: 0.75rem;
height: 100%;
align-items: center;
vertical-align: middle;
display: flex !important;
text-align: center;
}
.top-button{
align-items: center;
display: block;
text-align: center;
}
.collapse {
visibility: hidden;
}
.collapse.show {
visibility: visible;
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.collapsing.width {
-webkit-transition-property: width, visibility;
transition-property: width, visibility;
width: 0;
height: auto;
}
.chat-image{
width: 50%;
}
@media screen and (max-width: 576px) {
.chat-image {
width: 100%;
}
}
.chat-image-half{
width: 25%;
}
.menu-section{
display: inline;
text-align: center;
}
.menu-item{
display: inline-block;
}
@media screen and (max-width: 576px) {
.chat-image-half {
width: 50%;
}
}
.box-dragndrop {
position: fixed;
background-color: rgba(66, 134, 244, 0.5) !important;
z-index: 100;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.overlay-text{
color: white;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
font-size: 2rem;
position: absolute;
} | 0.638497 | 0.061255 |
.tile, .space {
position: relative; height: 40px; width: 40px;
float: left; margin: 1px 1px; white-space: nowrap;
line-height: 40px;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
.tile { background: #2d2d2d; }
.space { background: white; }
.B { background: #394966; }
.W { background: #d9dee2; }
#header {
border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px;
background: #2d2d2d;
color: #FFFFFF;
width: auto;
height: 70px;
}
#title { padding: 2px 2px 2px 15px; font-size: 50px; font-weight: bold; }
#options { position: relative; margin-top: 10px; margin-bottom: 20px; }
.board { margin-bottom: 20px; }
ul {
padding: 0;
margin: 0;
list-style: none;
}
li {
float: left;
position: relative;
width: 100px;
}
li ul {
display: none;
position: absolute;
top: 1em;
left: 0;
}
li > ul {
top: auto;
left: auto;
}
li:hover ul { display: block; }
ul, p, label { font-family: 'Inconsolata', monospace, Tahoma, sans-serif;; font-size: 12px; }
.select { height: 20px;}
li.select { margin-top: 0px; }
li.select, li.select > ul {
background: #FFFFFF;
border: 1px solid #B8B8B8;
border-radius: 10px;
}
li#player1 { border-right: 8px solid #2e3a51; }
li#player2 { border-right: 8px solid #d9dee2; margin-left: 10px; }
div.select { margin-left: 5px; color: #000000; }
li.option {
background: #D8D8D8;
padding-left: 5px;
color: #000000;
}
li.option:hover { background: #E8E8E8; font-weight: 200 }
#dialogDiv {
border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px;
border: 2px solid grey;
background: #C8C8C8;
color: black;
position: relative;
}
#dialogText {
width: 150px;
height: 20px;
}
#newGameButton {
margin-bottom: 10px;
} | index.css | .tile, .space {
position: relative; height: 40px; width: 40px;
float: left; margin: 1px 1px; white-space: nowrap;
line-height: 40px;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
.tile { background: #2d2d2d; }
.space { background: white; }
.B { background: #394966; }
.W { background: #d9dee2; }
#header {
border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px;
background: #2d2d2d;
color: #FFFFFF;
width: auto;
height: 70px;
}
#title { padding: 2px 2px 2px 15px; font-size: 50px; font-weight: bold; }
#options { position: relative; margin-top: 10px; margin-bottom: 20px; }
.board { margin-bottom: 20px; }
ul {
padding: 0;
margin: 0;
list-style: none;
}
li {
float: left;
position: relative;
width: 100px;
}
li ul {
display: none;
position: absolute;
top: 1em;
left: 0;
}
li > ul {
top: auto;
left: auto;
}
li:hover ul { display: block; }
ul, p, label { font-family: 'Inconsolata', monospace, Tahoma, sans-serif;; font-size: 12px; }
.select { height: 20px;}
li.select { margin-top: 0px; }
li.select, li.select > ul {
background: #FFFFFF;
border: 1px solid #B8B8B8;
border-radius: 10px;
}
li#player1 { border-right: 8px solid #2e3a51; }
li#player2 { border-right: 8px solid #d9dee2; margin-left: 10px; }
div.select { margin-left: 5px; color: #000000; }
li.option {
background: #D8D8D8;
padding-left: 5px;
color: #000000;
}
li.option:hover { background: #E8E8E8; font-weight: 200 }
#dialogDiv {
border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px;
border: 2px solid grey;
background: #C8C8C8;
color: black;
position: relative;
}
#dialogText {
width: 150px;
height: 20px;
}
#newGameButton {
margin-bottom: 10px;
} | 0.260013 | 0.193795 |
*{
margin: 0px;
padding: 0px;
list-style: none;
}
a:hover{
text-decoration: none;
}
body{
background-color: #f5f5f5;
}
/*导航条部分开始*/
.header{
height: 105px;
/*background-color: red;*/
margin: 0px auto;
position: relative;
}
.header .nav{
width: 620px;
height: 30px;
/*background-color:green; */
float: left;
}
.header .nav_ul .xian{
width: 1px;
height: 15px;
background-color: #a4a4a4;
margin-top: 7px;
margin-left: 8px;
margin-right: 8px;
}
.header .nav_ul .xia{
position: relative;
}
.header .nav_ul .xiala{
width: 140px;
height: 280px;
background-color: #fff;
position: absolute;
top:30px;
left: -85px;
z-index: 999;
box-shadow: 0px 0px 2px 2px #ccc;
display: none;
}
.header .nav_ul .xiala ul{
width: 130px;
height: 127px;
margin: 5px;
/*background-color: red;*/
border-bottom: 1px solid #ccc;
}
.header .nav_ul .xiala ul li{
width: 137px;
height:25px;
/*background-color: pink;*/
line-height: 25px;
text-align: center;
margin-top: 5px;
}
.header .nav_ul .xia:hover > .xiala{
display: block;
}
.header .nav_ul .xiala img{
padding: 20px;
padding-left: 30px;
padding-bottom: 10px;
}
.header .nav_ul .xiala h5{
padding-left: 15px;
}
.header .nav_ul li{
float: left;
}
.header .nav_ul li a{
color: #a4a4a4;
line-height: 30px;
font-size: 13px;
text-decoration: none;
}
.header .nav_ul li a:hover{
color: #ca141d;
}
.header .nav_ul select{
border: none;
margin-top: 5px;
font-size: 13px;
color: #a4a4a4;
}
.header .nav-right{
width: 235px;
height: 30px;
/*background-color:blue;*/
float: right;
}
.header .nav-right .nav_ul .dl{
margin-right: 5px;
margin-left: -10px;
}
.header .nav_title{
width: 510px;
height: 60px;
/*background-color: yellow;*/
margin-top: 10px;
position: relative;
}
.header .nav_title .nav_cen li{
float: left;
margin-right: 16px;
line-height: 80px;
font-size: 17px;
}
.header .nav_title .nav_cen li a{
font-size: 16px;
color: #000;
font-size: 16px;
text-decoration: none;
}
.header .nav_title .nav_cen .active a:hover{
color: #ca141d;
border-bottom: 2px solid #ca141d;
}
.header .nav_title li .center{
width: 1173px;
height: 250px;
background-color: #fff;
box-shadow: 0px 0px 2px 3px #ccc;
position: absolute;
top: 80px;
left: -280px;
z-index: 999;
display: none;
}
.header .nav_title li .center ul li{
font-size: 13px;
}
.header .nav_title li .center h5{
text-align: center;
}
.header .nav_title li .center h6{
text-align: center;
color: #ca141b;
}
.header .nav_title li .center .lefts{
margin-left: 30px;
}
.header .search{
padding-top: 24px;
}
/*导航条部分结束*/
/*导航部分开始*/
.dh{
width: 1349px;
height: 450px;
/*background-color: red;*/
margin: 0px auto;
position: relative;
}
.dh .cebi{
width: 240px;
height: 450px;
background-color: rgba(0,0,0,0.7);
position: absolute;
top: 0px;
left: 105px;
}
.dh .cebi .cb_1{
width: 240px;
height: 75px;
/*background-color: pink;*/
}
.dh .cebi .cb_1 #phone{
font-size: 15px;
color: #fff;
line-height: 40px;
}
.dh .cebi .cb_1 #phone:hover{
text-decoration: none;
}
.dh .cebi .cb_1 #rong{
font-size: 13px;
color: #999;
}
.dh .cebi .cb_1 #rong:hover{
text-decoration: none;
color: #fff;
}
.dh .cebi .cb_1 .jito{
font-size: 20px;
color: #999;
line-height: 5px;
}
.dh .cebi .cb_1 .jito .jito:hover{
color: #fff;
}
.dh .cebi .cb_1:hover{
background-color: #595959;
}
.cebi ul{
position:relative;
}
.cebi .cb_1 .list{
display:none;
position:absolute;
top: 0px;
left: 240px;
width: 650px;
height: 450px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
background: #fff;
}
.dh .cebi .list .list_t{
height: 70px;
/*background-color: orange;*/
border-bottom: 1px solid #eaeaea;
}
.dh .cebi .list .list_t p{
float: left;
line-height: 70px;
}
.dh .cebi .list .list_t .liu{
margin-left: 40px;
}
.dh .cebi .list .list_t p a{
color: #CA151D;
font-size: 14px;
}
.dh .cebi .list .list_c{
height: 140px;
/*background-color: orange;*/
border-bottom: 1px solid #eaeaea;
}
.dh .cebi .list .list_c .c_zi{
width: 450px;
height: 139px;
/*background-color: pink;*/
margin-left: 40px;
}
.dh .cebi .list .list_c .c_zi p{
float: left;
margin-top: 20px;
margin-right: 30px;
}
.dh .cebi .list .list_c .c_zi .meta{
margin-right: 0px;
}
.dh .cebi .list .list_c .c_zi p a{
color: #3a3a3a;
font-size: 14px;
}
.dh .cebi .list .list_c .c_zi p a:hover{
color: #CA151D;
}
.dh .cebi .list .list_b .b_cp{
width: 162px;
height: 240px;
/*background-color: pink;*/
float: left;
border-right: 1px solid #eaeaea;
cursor: pointer;
}
.dh .cebi .list .list_b .b_cp h5{
text-align: center;
font-size: 15px;
color:#3a3a3a;
}
.dh .cebi .list .list_b .b_cp .mo{
color: #CC0E11;
}
.dh .cebi .list .list_b .b_cp1{
border-right: none;
}
.lbx{
width: 1198px;
height: 98px;
background-color: #fff;
border: 1px solid #eaeaea;
}
.lbx .lbx_1{
height: 95px;
padding: 0px;
border-right: 1px;
border-right: 1px solid #f5f5f5;
}
.lbx .lbx_1 ul{
float: left;
margin-top: 20px;
margin-left: 10px;
}
.lbx .lbx_1 ul li{
font-size: 12px;
color: #a4a4a4;
}
.lbx .lbx_1 ul li a{
color: #3a3a3a;
text-decoration: underline;
}
.lbx .lbx_1 ul li button{
width: 60px;
height: 20px;
background-color: #fff;
border: none;
margin-top: 8px;
margin-right: 10px;
border: 1px solid #CA141D;
color: #CA141D;
line-height: 20px;
}
.lbx .lbx_2{
/*background-color: orange;*/
}
.lbx .lbx_2 .xt{
width: 50px;
height: 60px;
/*background-color: pink;*/
margin-left: 25px;
margin-top: 20px;
}
.lbx .lbx_2 .xt1{
margin-left: 50px;
}
.lbx .lbx_2 .xt h6{
font-size: 12px;
color: #3a3a3a;
margin-top: 2px;
cursor: pointer;
}
.lbx .lbx_2 .xt h6:hover{
color: #ca151d;
}
.lbx .lbx_3 .lb_t{
height: 47px;
/*background-color: blue;*/
border-bottom: 1px solid #f5f5f5;
}
.lbx .lbx_3 .lb_t p a{
font-size: 15px;
color:#CA161F;
font-weight: bold;
line-height: 47px;
letter-spacing: 5px;
margin-left: 13px;
}
.lbx .lbx_3 .lb_b{
height: 47px;
/*background-color: green;*/
}
.lbx .lbx_3 .lb_b ul{
width: 300px;
}
.lbx .lbx_3 .lb_b ul li{
width: 65px;
height: 20px;
/*background-color: red;*/
margin-right: 30px;
float: left;
cursor: pointer;
}
.lbx .lbx_3 .lb_b ul li:nth-child(2){
width: 80px;
/*background-color: purple;*/
}
.lbx .lbx_3 .lb_b ul li:hover{
color: #ca151d;
}
/*导航部分结束*/
/*导航下部分开始*/
.ten{
height: 13px;
}
.dhx{
width: 1200px;
height: 160px;
/*background-color: orange;*/
}
.dhx .dhx_1{
padding: 0px;
}
/*导航下部分结束*/
/*热销单品部分开始*/
.rexi{
width: 1200px;
height: 630px;
/*background-color: orange;*/
margin-top: 30px;
}
.rexi .rxdp{
width: 230px;
margin-left: -15px;
}
.rexi .item{
width: 230px;
height: 290px;
background-color: #fff;
margin-left: 30px;
}
.rexi .item h5{
text-align: center;
}
.rexi .item h5 a{
font-size: 14px;
color: #3a3a3a;
}
.rexi .item h6{
text-align: center;
}
.rexi .item h6 a{
font-size: 12px;
color: #a4a4a4;
}
.rexi .item .money a{
color: #cc0e11;
}
/*热销单品部分结束*/
/*精品推荐部分开始*/
.jptj{
width: 1200px;
height: 330px;
/*background-color: orange;*/
margin-top: 30px;
}
.jptj .jipi{
width: 215px;
height: 294px;
background-color: #fff;
}
.jptj .jipi h5{
text-align: center;
line-height: 20px;
}
.jptj .jipi h5 a{
font-size: 14px;
color: #3a3a3a;
}
.jptj .jipi h6{
text-align: center;
line-height: 20px;
}
.jptj .jipi h6 a{
font-size: 12px;
color: #a4a4a4;
}
.jptj .jipi .money a{
color: #cc0e11;
}
.jptj .jipi_1{
width: 110px;
height: 294px;
background-color: #fff;
}
.jptj .jipi_1 h5{
text-align: center;
line-height: 20px;
}
.jptj .jipi_1 h5 a{
font-size: 14px;
color: #3a3a3a;
}
.jptj .jipi_1 h6{
text-align: center;
line-height: 20px;
}
.jptj .jipi_1 h6 a{
font-size: 12px;
color: #a4a4a4;
}
.jptj .jipi_1 .money a{
color: #cc0e11;
}
/*精品推荐部分结束*/
/*广告图部分开始*/
.adv{
width: 1200px;
height: 120px;
/*background-color: orange;*/
margin-top: 25px;
padding: 0px;
}
/*广告图部分结束*/
/*手机部分开始*/
.iphone{
width: 1200px;
height: 750px;
/*background-color: orange;*/
margin-top: 25px;
}
.iphone .iphone_t{
width: 1200px;
height: 45px;
/*background-color: pink;*/
}
.iphone .iphone_t h3{
float: left;
margin-top: 1px;
}
.iphone .iphone_t ul{
width: 1110px;
height: 45px;
/*background-color: lightgreen;*/
float: right;
}
.iphone .iphone_t ul li{
float: left;
margin-right: 20px;
margin-top: 7px;
}
.iphone .iphone_t ul li a{
font-size: 16px;
color: #a4a4a4;
}
.iphone .iphone_t ul li a:hover{
color: #ca151d;
text-decoration: none;
border-bottom: 2px solid #ca151d;
}
.iphone .iphone_t ul .gedu{
float: right;
}
.iphone .iphone_t ul .gedu a{
font-size: 18px;
color: #666;
}
.iphone .iphone_t ul .gedu a:hover{
border-bottom: none;
}
.iphone .iphone_b{
width: 1200px;
height: 705px;
/*background-color: lightblue;*/
}
.iphone .iphone_b ul .gao{
width: 290px;
height: 345px;
background-color: #fff;
margin-right: 10px;
margin-bottom: 10px;
}
.iphone .iphone_b ul .gao h5{
text-align: center;
}
.iphone .iphone_b ul .gao h5 a{
font-size: 14px;
color: #3a3a3a;
}
.iphone .iphone_b ul .gao h6{
text-align: center;
}
.iphone .iphone_b ul .gao h6 a{
font-size: 12px;
color: #a4a4a4;
}
.iphone .iphone_b ul .gao .yuan{
text-align: center;
}
.iphone .iphone_b ul .gao .yuan a{
font-size: 14px;
color: #cc0e11;
}
/*手机部分结束*/
/*笔记本电脑部分开始*/
.brain{
height: 400px;
/*background-color: orange;*/
}
.brain .brain_t ul{
width: 1020px;
height: 45px;
/*background-color: lightgreen;*/
float: right;
}
.brain .brain_b{
width: 1200px;
height: 350px;
/*background-color: lightblue;*/
}
/*笔记本电脑部分结束*/
/*手机部分开始*/
.iphone .iph_t ul{
width: 1050px;
}
/*手机部分结束*/
/*智能穿戴部分开始*/
.iphone .noop ul{
width: 1050px;
}
/*智能穿戴部分结束*/
/*智能家居部分开始*/
.iphone .home_t ul{
width: 1055px;
}
.house{
width: 1200px;
height: 290px;
/*background-color: orange;*/
margin-top: 20px;
}
.house .hou{
width: 215px;
height: 290px;
background-color: #fff;
}
.house .hous{
width: 110px;
height: 290px;
background-color: #fff;
}
.house .hou h5{
text-align: center;
line-height: 20px;
}
.house .hou h5 a{
font-size: 14px;
color: #3a3a3a;
}
.house .hou h6{
text-align: center;
line-height: 20px;
}
.house .hou h6 a{
font-size: 12px;
color: #a4a4a4;
}
.house .hou .money a{
color: #cc0e11;
}
.house .hous h5{
text-align: center;
line-height: 20px;
}
.house .hous h5 a{
font-size: 14px;
color: #3a3a3a;
}
.house .hous h6{
text-align: center;
line-height: 20px;
}
.house .hous h6 a{
font-size: 12px;
color: #a4a4a4;
}
.house .hous .money a{
color: #cc0e11;
}
.itm{
height: 65px;
/*background-color: red;*/
}
/*智能家居部分结束*/
/*脚部部分开始*/
.footer{
width: 100%;
height: 480px;
background-color:#f0f0f0;
}
.footer .foot_t{
height: 140px;
/*background-color: lightblue;*/
border-bottom: 1px solid #e8e8e8;
}
.footer .foot_t ul li{
margin-top: 45px;
}
.footer .foot_t ul .foot_t_1 span{
line-height: 50px;
}
.footer .foot_t ul .foot_t_1 span a{
font-size: 18px;
color: #3a3a3a;
}
.footer .foot_c{
height: 220px;
/*background-color: lightgreen;*/
overflow: hidden;
position: relative;
}
.footer .foot_c .s1{
margin-top: 30px;
float: left;
}
.footer .foot_c .s1 .line{
width: 25px;
height: 2px;
background-color: #a8a8a8;
}
.footer .foot_c .s1 .title{
font-size: 14px;
color: #3a3a3a;
font-weight: normal;
}
.footer .foot_c .s1 .tit{
font-size: 24px;
}
.footer .foot_c .s1 ol li a{
font-size: 12px;
color: #666;
line-height: 23px;
}
.footer .foot_c .s1 ol li a:hover{
color: #ca141d;
}
.footer .foot_c .xian{
width: 1px;
height: 165px;
background-color: #ebebeb;
position: absolute;
top: 25px;
right: 220px;
}
.footer .foot_b{
height: 120px;
background-color: #e6e6e6;
}
.footer .foot_b .ban{
color: #a4a4a4;
font-size: 12px;
}
.footer .foot_b .ban a{
color: 12px;
color: #a4a4a4;
}
.footer .foot_b .ban a:hover{
color: #ca141d;
}
/*脚部部分结束*/
/*返回顶部部分开始*/
.back{
width: 35px;
height: 140px;
/*background-color: #757575;*/
position: fixed;
bottom: 35px;
right: 0px;
display: none;
}
.back .back_1{
width: 35px;
height: 38px;
background-color: #757575;
text-align: center;
border-radius: 100%;
margin-bottom: 5px;
}
.back .back_1 a{
color: #fff;
font-size: 5px;
}
.back .back_1 a:hover{
text-decoration: none;
}
/*返回顶部部分结束*/ | public/css/page.css | *{
margin: 0px;
padding: 0px;
list-style: none;
}
a:hover{
text-decoration: none;
}
body{
background-color: #f5f5f5;
}
/*导航条部分开始*/
.header{
height: 105px;
/*background-color: red;*/
margin: 0px auto;
position: relative;
}
.header .nav{
width: 620px;
height: 30px;
/*background-color:green; */
float: left;
}
.header .nav_ul .xian{
width: 1px;
height: 15px;
background-color: #a4a4a4;
margin-top: 7px;
margin-left: 8px;
margin-right: 8px;
}
.header .nav_ul .xia{
position: relative;
}
.header .nav_ul .xiala{
width: 140px;
height: 280px;
background-color: #fff;
position: absolute;
top:30px;
left: -85px;
z-index: 999;
box-shadow: 0px 0px 2px 2px #ccc;
display: none;
}
.header .nav_ul .xiala ul{
width: 130px;
height: 127px;
margin: 5px;
/*background-color: red;*/
border-bottom: 1px solid #ccc;
}
.header .nav_ul .xiala ul li{
width: 137px;
height:25px;
/*background-color: pink;*/
line-height: 25px;
text-align: center;
margin-top: 5px;
}
.header .nav_ul .xia:hover > .xiala{
display: block;
}
.header .nav_ul .xiala img{
padding: 20px;
padding-left: 30px;
padding-bottom: 10px;
}
.header .nav_ul .xiala h5{
padding-left: 15px;
}
.header .nav_ul li{
float: left;
}
.header .nav_ul li a{
color: #a4a4a4;
line-height: 30px;
font-size: 13px;
text-decoration: none;
}
.header .nav_ul li a:hover{
color: #ca141d;
}
.header .nav_ul select{
border: none;
margin-top: 5px;
font-size: 13px;
color: #a4a4a4;
}
.header .nav-right{
width: 235px;
height: 30px;
/*background-color:blue;*/
float: right;
}
.header .nav-right .nav_ul .dl{
margin-right: 5px;
margin-left: -10px;
}
.header .nav_title{
width: 510px;
height: 60px;
/*background-color: yellow;*/
margin-top: 10px;
position: relative;
}
.header .nav_title .nav_cen li{
float: left;
margin-right: 16px;
line-height: 80px;
font-size: 17px;
}
.header .nav_title .nav_cen li a{
font-size: 16px;
color: #000;
font-size: 16px;
text-decoration: none;
}
.header .nav_title .nav_cen .active a:hover{
color: #ca141d;
border-bottom: 2px solid #ca141d;
}
.header .nav_title li .center{
width: 1173px;
height: 250px;
background-color: #fff;
box-shadow: 0px 0px 2px 3px #ccc;
position: absolute;
top: 80px;
left: -280px;
z-index: 999;
display: none;
}
.header .nav_title li .center ul li{
font-size: 13px;
}
.header .nav_title li .center h5{
text-align: center;
}
.header .nav_title li .center h6{
text-align: center;
color: #ca141b;
}
.header .nav_title li .center .lefts{
margin-left: 30px;
}
.header .search{
padding-top: 24px;
}
/*导航条部分结束*/
/*导航部分开始*/
.dh{
width: 1349px;
height: 450px;
/*background-color: red;*/
margin: 0px auto;
position: relative;
}
.dh .cebi{
width: 240px;
height: 450px;
background-color: rgba(0,0,0,0.7);
position: absolute;
top: 0px;
left: 105px;
}
.dh .cebi .cb_1{
width: 240px;
height: 75px;
/*background-color: pink;*/
}
.dh .cebi .cb_1 #phone{
font-size: 15px;
color: #fff;
line-height: 40px;
}
.dh .cebi .cb_1 #phone:hover{
text-decoration: none;
}
.dh .cebi .cb_1 #rong{
font-size: 13px;
color: #999;
}
.dh .cebi .cb_1 #rong:hover{
text-decoration: none;
color: #fff;
}
.dh .cebi .cb_1 .jito{
font-size: 20px;
color: #999;
line-height: 5px;
}
.dh .cebi .cb_1 .jito .jito:hover{
color: #fff;
}
.dh .cebi .cb_1:hover{
background-color: #595959;
}
.cebi ul{
position:relative;
}
.cebi .cb_1 .list{
display:none;
position:absolute;
top: 0px;
left: 240px;
width: 650px;
height: 450px;
border-top: 1px solid #eaeaea;
border-bottom: 1px solid #eaeaea;
background: #fff;
}
.dh .cebi .list .list_t{
height: 70px;
/*background-color: orange;*/
border-bottom: 1px solid #eaeaea;
}
.dh .cebi .list .list_t p{
float: left;
line-height: 70px;
}
.dh .cebi .list .list_t .liu{
margin-left: 40px;
}
.dh .cebi .list .list_t p a{
color: #CA151D;
font-size: 14px;
}
.dh .cebi .list .list_c{
height: 140px;
/*background-color: orange;*/
border-bottom: 1px solid #eaeaea;
}
.dh .cebi .list .list_c .c_zi{
width: 450px;
height: 139px;
/*background-color: pink;*/
margin-left: 40px;
}
.dh .cebi .list .list_c .c_zi p{
float: left;
margin-top: 20px;
margin-right: 30px;
}
.dh .cebi .list .list_c .c_zi .meta{
margin-right: 0px;
}
.dh .cebi .list .list_c .c_zi p a{
color: #3a3a3a;
font-size: 14px;
}
.dh .cebi .list .list_c .c_zi p a:hover{
color: #CA151D;
}
.dh .cebi .list .list_b .b_cp{
width: 162px;
height: 240px;
/*background-color: pink;*/
float: left;
border-right: 1px solid #eaeaea;
cursor: pointer;
}
.dh .cebi .list .list_b .b_cp h5{
text-align: center;
font-size: 15px;
color:#3a3a3a;
}
.dh .cebi .list .list_b .b_cp .mo{
color: #CC0E11;
}
.dh .cebi .list .list_b .b_cp1{
border-right: none;
}
.lbx{
width: 1198px;
height: 98px;
background-color: #fff;
border: 1px solid #eaeaea;
}
.lbx .lbx_1{
height: 95px;
padding: 0px;
border-right: 1px;
border-right: 1px solid #f5f5f5;
}
.lbx .lbx_1 ul{
float: left;
margin-top: 20px;
margin-left: 10px;
}
.lbx .lbx_1 ul li{
font-size: 12px;
color: #a4a4a4;
}
.lbx .lbx_1 ul li a{
color: #3a3a3a;
text-decoration: underline;
}
.lbx .lbx_1 ul li button{
width: 60px;
height: 20px;
background-color: #fff;
border: none;
margin-top: 8px;
margin-right: 10px;
border: 1px solid #CA141D;
color: #CA141D;
line-height: 20px;
}
.lbx .lbx_2{
/*background-color: orange;*/
}
.lbx .lbx_2 .xt{
width: 50px;
height: 60px;
/*background-color: pink;*/
margin-left: 25px;
margin-top: 20px;
}
.lbx .lbx_2 .xt1{
margin-left: 50px;
}
.lbx .lbx_2 .xt h6{
font-size: 12px;
color: #3a3a3a;
margin-top: 2px;
cursor: pointer;
}
.lbx .lbx_2 .xt h6:hover{
color: #ca151d;
}
.lbx .lbx_3 .lb_t{
height: 47px;
/*background-color: blue;*/
border-bottom: 1px solid #f5f5f5;
}
.lbx .lbx_3 .lb_t p a{
font-size: 15px;
color:#CA161F;
font-weight: bold;
line-height: 47px;
letter-spacing: 5px;
margin-left: 13px;
}
.lbx .lbx_3 .lb_b{
height: 47px;
/*background-color: green;*/
}
.lbx .lbx_3 .lb_b ul{
width: 300px;
}
.lbx .lbx_3 .lb_b ul li{
width: 65px;
height: 20px;
/*background-color: red;*/
margin-right: 30px;
float: left;
cursor: pointer;
}
.lbx .lbx_3 .lb_b ul li:nth-child(2){
width: 80px;
/*background-color: purple;*/
}
.lbx .lbx_3 .lb_b ul li:hover{
color: #ca151d;
}
/*导航部分结束*/
/*导航下部分开始*/
.ten{
height: 13px;
}
.dhx{
width: 1200px;
height: 160px;
/*background-color: orange;*/
}
.dhx .dhx_1{
padding: 0px;
}
/*导航下部分结束*/
/*热销单品部分开始*/
.rexi{
width: 1200px;
height: 630px;
/*background-color: orange;*/
margin-top: 30px;
}
.rexi .rxdp{
width: 230px;
margin-left: -15px;
}
.rexi .item{
width: 230px;
height: 290px;
background-color: #fff;
margin-left: 30px;
}
.rexi .item h5{
text-align: center;
}
.rexi .item h5 a{
font-size: 14px;
color: #3a3a3a;
}
.rexi .item h6{
text-align: center;
}
.rexi .item h6 a{
font-size: 12px;
color: #a4a4a4;
}
.rexi .item .money a{
color: #cc0e11;
}
/*热销单品部分结束*/
/*精品推荐部分开始*/
.jptj{
width: 1200px;
height: 330px;
/*background-color: orange;*/
margin-top: 30px;
}
.jptj .jipi{
width: 215px;
height: 294px;
background-color: #fff;
}
.jptj .jipi h5{
text-align: center;
line-height: 20px;
}
.jptj .jipi h5 a{
font-size: 14px;
color: #3a3a3a;
}
.jptj .jipi h6{
text-align: center;
line-height: 20px;
}
.jptj .jipi h6 a{
font-size: 12px;
color: #a4a4a4;
}
.jptj .jipi .money a{
color: #cc0e11;
}
.jptj .jipi_1{
width: 110px;
height: 294px;
background-color: #fff;
}
.jptj .jipi_1 h5{
text-align: center;
line-height: 20px;
}
.jptj .jipi_1 h5 a{
font-size: 14px;
color: #3a3a3a;
}
.jptj .jipi_1 h6{
text-align: center;
line-height: 20px;
}
.jptj .jipi_1 h6 a{
font-size: 12px;
color: #a4a4a4;
}
.jptj .jipi_1 .money a{
color: #cc0e11;
}
/*精品推荐部分结束*/
/*广告图部分开始*/
.adv{
width: 1200px;
height: 120px;
/*background-color: orange;*/
margin-top: 25px;
padding: 0px;
}
/*广告图部分结束*/
/*手机部分开始*/
.iphone{
width: 1200px;
height: 750px;
/*background-color: orange;*/
margin-top: 25px;
}
.iphone .iphone_t{
width: 1200px;
height: 45px;
/*background-color: pink;*/
}
.iphone .iphone_t h3{
float: left;
margin-top: 1px;
}
.iphone .iphone_t ul{
width: 1110px;
height: 45px;
/*background-color: lightgreen;*/
float: right;
}
.iphone .iphone_t ul li{
float: left;
margin-right: 20px;
margin-top: 7px;
}
.iphone .iphone_t ul li a{
font-size: 16px;
color: #a4a4a4;
}
.iphone .iphone_t ul li a:hover{
color: #ca151d;
text-decoration: none;
border-bottom: 2px solid #ca151d;
}
.iphone .iphone_t ul .gedu{
float: right;
}
.iphone .iphone_t ul .gedu a{
font-size: 18px;
color: #666;
}
.iphone .iphone_t ul .gedu a:hover{
border-bottom: none;
}
.iphone .iphone_b{
width: 1200px;
height: 705px;
/*background-color: lightblue;*/
}
.iphone .iphone_b ul .gao{
width: 290px;
height: 345px;
background-color: #fff;
margin-right: 10px;
margin-bottom: 10px;
}
.iphone .iphone_b ul .gao h5{
text-align: center;
}
.iphone .iphone_b ul .gao h5 a{
font-size: 14px;
color: #3a3a3a;
}
.iphone .iphone_b ul .gao h6{
text-align: center;
}
.iphone .iphone_b ul .gao h6 a{
font-size: 12px;
color: #a4a4a4;
}
.iphone .iphone_b ul .gao .yuan{
text-align: center;
}
.iphone .iphone_b ul .gao .yuan a{
font-size: 14px;
color: #cc0e11;
}
/*手机部分结束*/
/*笔记本电脑部分开始*/
.brain{
height: 400px;
/*background-color: orange;*/
}
.brain .brain_t ul{
width: 1020px;
height: 45px;
/*background-color: lightgreen;*/
float: right;
}
.brain .brain_b{
width: 1200px;
height: 350px;
/*background-color: lightblue;*/
}
/*笔记本电脑部分结束*/
/*手机部分开始*/
.iphone .iph_t ul{
width: 1050px;
}
/*手机部分结束*/
/*智能穿戴部分开始*/
.iphone .noop ul{
width: 1050px;
}
/*智能穿戴部分结束*/
/*智能家居部分开始*/
.iphone .home_t ul{
width: 1055px;
}
.house{
width: 1200px;
height: 290px;
/*background-color: orange;*/
margin-top: 20px;
}
.house .hou{
width: 215px;
height: 290px;
background-color: #fff;
}
.house .hous{
width: 110px;
height: 290px;
background-color: #fff;
}
.house .hou h5{
text-align: center;
line-height: 20px;
}
.house .hou h5 a{
font-size: 14px;
color: #3a3a3a;
}
.house .hou h6{
text-align: center;
line-height: 20px;
}
.house .hou h6 a{
font-size: 12px;
color: #a4a4a4;
}
.house .hou .money a{
color: #cc0e11;
}
.house .hous h5{
text-align: center;
line-height: 20px;
}
.house .hous h5 a{
font-size: 14px;
color: #3a3a3a;
}
.house .hous h6{
text-align: center;
line-height: 20px;
}
.house .hous h6 a{
font-size: 12px;
color: #a4a4a4;
}
.house .hous .money a{
color: #cc0e11;
}
.itm{
height: 65px;
/*background-color: red;*/
}
/*智能家居部分结束*/
/*脚部部分开始*/
.footer{
width: 100%;
height: 480px;
background-color:#f0f0f0;
}
.footer .foot_t{
height: 140px;
/*background-color: lightblue;*/
border-bottom: 1px solid #e8e8e8;
}
.footer .foot_t ul li{
margin-top: 45px;
}
.footer .foot_t ul .foot_t_1 span{
line-height: 50px;
}
.footer .foot_t ul .foot_t_1 span a{
font-size: 18px;
color: #3a3a3a;
}
.footer .foot_c{
height: 220px;
/*background-color: lightgreen;*/
overflow: hidden;
position: relative;
}
.footer .foot_c .s1{
margin-top: 30px;
float: left;
}
.footer .foot_c .s1 .line{
width: 25px;
height: 2px;
background-color: #a8a8a8;
}
.footer .foot_c .s1 .title{
font-size: 14px;
color: #3a3a3a;
font-weight: normal;
}
.footer .foot_c .s1 .tit{
font-size: 24px;
}
.footer .foot_c .s1 ol li a{
font-size: 12px;
color: #666;
line-height: 23px;
}
.footer .foot_c .s1 ol li a:hover{
color: #ca141d;
}
.footer .foot_c .xian{
width: 1px;
height: 165px;
background-color: #ebebeb;
position: absolute;
top: 25px;
right: 220px;
}
.footer .foot_b{
height: 120px;
background-color: #e6e6e6;
}
.footer .foot_b .ban{
color: #a4a4a4;
font-size: 12px;
}
.footer .foot_b .ban a{
color: 12px;
color: #a4a4a4;
}
.footer .foot_b .ban a:hover{
color: #ca141d;
}
/*脚部部分结束*/
/*返回顶部部分开始*/
.back{
width: 35px;
height: 140px;
/*background-color: #757575;*/
position: fixed;
bottom: 35px;
right: 0px;
display: none;
}
.back .back_1{
width: 35px;
height: 38px;
background-color: #757575;
text-align: center;
border-radius: 100%;
margin-bottom: 5px;
}
.back .back_1 a{
color: #fff;
font-size: 5px;
}
.back .back_1 a:hover{
text-decoration: none;
}
/*返回顶部部分结束*/ | 0.222278 | 0.044122 |
display: none;
}
.navbar-default .navbar-nav > li {
border-right: none;
}
section.white{
padding-bottom: 5px;
padding-top: 40px;
}
.widget a{
color: #999eab;
}
/* ----------------------------------------------------
File Name: style.css
Template Name: Learn Plus
Created By: Template Visual
http://themeforest.net/user/templatevisual
1. IMPORT
2. SKELETON
3. HEADER & MENUS
4. SLIDER
5. SECTIONS & MODULES,
6. FOOTER & COPYRIGHTS,
7. PAGE STYLES
8. COURSE STYLES,
9. LOGIN PAGE
10. BX SLIDER
11. PRICING TABLE
12. CAROUSEL
13. CONTACT PAGE
14. BLOG
15. SHOP
16. SIDEBAR STYLES
17. COLORS
18. MENU BG
19. RESPONSIVENESS
------------------------------------------------------- */
/* ----------------------------------------------------
IMPORT
------------------------------------------------------- */
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);
/* ----------------------------------------------------
SKELETON
------------------------------------------------------- */
body {
background: #eeedef;
color: #777777;
font-size: 14px;
line-height: 1.9;
letter-spacing: 0;
font-weight: 400;
padding:0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6{
letter-spacing:0px;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:normal;
position: relative;
padding: 0 0 10px 0;
font-weight:normal;
line-height:1.6 !important;
color:#363a47;
}
h1{
font-size: 22px;
}
h2{
font-size: 20px;
}
h3{
font-size: 18px;
}
h4{
font-size: 16px;
}
h5{
font-size: 14px;
}
h6{
font-size: 14px;
}
a {
color:#696969;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
text-decoration:none !important;
}
img.aligncenter{
display:block;
text-align:center;
display: block;
margin:0 auto 20px auto;
padding:0px;
border:0px;
background:none;
}
.image-center img {
width: auto;
display: block;
margin: auto;
}
.alignleft,
img.alignleft{
float:left;
margin: 6px 20px 6px 0;
display: inline;
border:0px;
background:none;
padding:0;
display:block;
}
.alignright,
img.alignright{
padding:0;
float:right;
margin: 6px 0 6px 20px;
border:0px;
display:block;
background:none;
}
::selection {
background: #f84b4a; /* Safari */
color:#fff;
}
::-moz-selection {
background: #f84b4a; /* Firefox */
color:#fff;
}
blockquote {
font-size:16px;
line-height: 32px;
font-family: 'Droid Serif', Georgia, "Times New Roman", serif;
font-weight:normal;
font-style:italic;
position:relative;
width:auto;
}
blockquote small {
display: block;
margin-top: 20px;
}
pre {
line-height:18px;
margin-bottom:18px;
}
.btn,
a {
outline:0 !important;
text-decoration: none !important;
}
ins {
text-decoration:none;
}
sup {
bottom: 1ex;
}
sub {
top: .5ex;
}
p{
padding:0 0 20px 0;
}
.check li:before {
content: "\f105";
font-family: "FontAwesome";
font-size: 14px;
left: 0;
color:#363a47;
padding-right:8px;
position: relative;
}
.check li {
font-size:14px;
list-style:none;
margin-bottom:5px;
}
.check {
margin-left:0;
padding-left:0
}
/* ==================================================================
HEADER & MENUS
================================================================== */
.header.affix{
top:0;
left:0;
right:0;
width:100%;
padding:0;
z-index:9999;
position: fixed;
}
.header.affix .navbar-default {
padding: 18px 0 0px !important;
}
.topbar {
padding:10px 0;
display: block;
z-index: 1100;
position: relative;
text-transform: capitalize;
}
.contactwrap i {
font-size: 15px;
padding-right: 5px;
}
.contactwrap a {
color:#afb0b4;
}
.topbar .form-control {
margin-bottom: 10px;
text-transform: none;
font-size: 12px;
border-radius: 0;
box-shadow: none;
}
.topbar form .btn {
border-radius: 0;
font-size: 13px;
}
.topbar .dropdown-menu {
border: 1px solid #e8e8e8;
border-radius: 0;
box-shadow: none;
font-size: 14px;
left: -114px;
margin: 10px 0;
min-width: 240px;
padding: 20px;
position: absolute;
}
.topbar h4 a {
color:#383c4b !important;
text-decoration: underline !important;
}
.topbar h4 {
font-size: 14px;
line-height: 1 !important;
margin: 0 !important;
padding: 0 !important;
font-weight: 400;
text-align: center;
}
.topbar hr {
margin: 15px 0;
border-color:#d7d7d7;
}
.form-title h4 {
text-align: left;
}
.form-title hr {
width: 40px;
}
.topbar ul {
padding: 0;
margin: 0;
}
.box img {
width: 100%;
}
.topbar span {
padding:0 4px;
}
.topbar i {
padding-right: 3px;
}
.topbar a {
color:#fff;
}
.social i {
font-size: 16px;
}
.social {
margin-right: 3px;
}
.topbar p {
color:#ffffff;
padding:0;
margin:0;
}
.header {
background-color: #fff;
position: relative;
display: block;
}
.topbar.topbar-transparent {
position: absolute;
left: 0;
right: 0;
width: 100%;
background-color:rgba(0,0,0,0.7) !important;
}
.transparent-header {
position: absolute;
left: 0;
right: 0;
top:60px;
width: 100%;
background-color: transparent;
}
.transparent-header .navbar-default .navbar-nav > li {
border-right:2px solid rgba(255,255,255,0) !important;
}
.transparent-header.affix {
background-color: #ffffff !important;
}
.transparent-header .navbar-default {
background-color: transparent !important;
}
.ttmenu {
position: relative;
display: block;
z-index: 199;
}
.ttmenu .navbar-default .navbar-toggle {
background: #494949 none repeat scroll 0 0 !important;
border-color: #111;
color: #fff !important;
margin-top: 8px;
padding: 0 15px;
}
.navbar-toggle .fa {
background-color: transparent !important;
color:#4949494 !important;
}
.ttmenu .navbar-default {
border-radius: 0;
padding-top: 35px;
padding-bottom: 15px;
background:#ffffff;
}
.nav,
.navbar,
.navbar-nav {
margin-bottom: 0 !important;
}
.nav > li > a {
padding-left: 10px;
font-weight: 500;
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: -0.2px !important;
padding-right: 10px;
}
.ttmenu .navbar-default .dropdown-menu {
border:0 !important;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
font-size: 15px;
outline: 0;
letter-spacing: 0;
padding: 7px 15px;
text-transform: none;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.dropdown-menu > li > a,
.ttmenu-content .box li a {
font-size:13px;
}
.dropdown-menu > li > a:hover,
.ttmenu-content .box li a:hover {
opacity: 0.8
}
.ttmenu .navbar-default .dropdown-menu,
.ttmenu .navbar-default .dropdown-menu li a {
color:#fff;
}
.ttmenu .navbar-default .navbar-nav > li > .dropdown-menu {
margin-top: 0;
}
.navbar-default .dropdown-menu li,
.ttmenu-content .box li {
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.ttmenu-content .box li {
padding:6px 10px 6px 10px !important;
}
.navbar-default .navbar-nav > li > a:hover {
opacity: 0.8;
}
.navbar-default .navbar-nav > li > a {
background-color: transparent !important;
}
.navbar-default .navbar-nav > li {
border-right:2px solid rgba(255,255,255,0.2) !important;
}
.navbar-default .navbar-nav > li:last-child {
border-right:0 solid rgb(255,175,75) !important;
}
.dropme::after {
color:#494949;
font-size: 16px;
}
.ttmenu .navbar-brand {
float: left;
margin-right: 0px;
padding: 0 30px 0 0;
position: relative;
text-align: center;
top: 3px;
width: auto;
}
.ttmenu {
position: relative;
z-index: 1;
overflow: visible !important;
}
.navbar-default .navbar-nav > li > a {
color:#363a47 !important;
font-weight: 400;
}
.navbar-right {
text-transform: uppercase !important;
}
.navbar-right i {
font-size: 15px;
padding-right: 5px !important;
vertical-align: initial;
}
.nav > li > a.btn {
margin-top: -2px;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
padding:6px 20px;
text-transform: none !important;
font-size: 14px;
font-weight: 600;
color:#fff !important;
}
.ttmenu {
z-index: 1000;
}
/* ==================================================================
SLIDER
================================================================== */
.boxedcontainer {
max-width: 1170px;
margin:auto;
padding:0px 30px;
}
.tp-banner-container{
width:100%;
position:relative;
padding:0;
z-index: 0;
}
.tp-banner{
width:100%;
position:relative;
}
.tp-banner-fullscreen-container {
width:100%;
position:relative;
padding:0;
}
.tp-bannertimer {
display: none;
}
.lightcolor {
color:#ffffff !important;
}
.slider_layer_05 {
color:#363a47;
font-size: 31px;
padding:0;
width: 80px;
height: 80px;
line-height: 80px;
border-radius: 100%;
background-color: rgba(255,255,255,0.8);
}
.slider_layer_01 {
font-weight: 400;
color:#363a47;
font-size: 34px;
padding:7px 60px;
background-color: rgba(255,255,255,0.8);
}
.slider_layer_02 {
color:#363a47;
font-size: 16px;
font-family: "Droid Serif",Georgia,"Times New Roman",serif;
font-style: italic;
line-height: 1.5;
}
.slider_layer_04 {
color:#363a47;
font-size: 25px;
font-family: "Roboto",Georgia,"Times New Roman",serif;
line-height: 1.5;
text-transform: uppercase;
}
.slider_layer_03 {
color:rgba(255,255,255,0.8);
font-size: 66px;
line-height: 1.5;
}
.tp-caption .btn {
font-size: 14px;
font-weight: bold;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
padding: 9px 30px !important;
}
/* ==================================================================
SECTIONS
================================================================== */
.teacher-skills p {
padding:0;
color:#363a47;
font-weight: 500;
margin-top: 10px;
}
.teacher-skills .progress {
height: 6px;
}
.teacher-list h4 {
font-size: 21px !important;
}
.nopaddingbottom {
padding-bottom: 0 !important;
}
.device-image img{margin:auto;width:100%;text-align:center}
.section {
padding:30px 0;
position: relative;
display: block;
}
.white {
background-color: #ffffff;
}
.grey {
background-color: #edecf0;
}
.dark {
background-color: #3f4451;
}
.why-us {
background-color: #fff;
margin-bottom: 0;
margin-top: 20px;
padding: 40px 20px 0;
}
.why-us h4 {
font-weight: 600;
margin-bottom: 0;
padding-bottom: 10px;
}
.why-us i {
margin-top: 15px;
display: inline-block;
}
.feature-list {
display: table;
}
.why-us i,
.feature-list i {
font-size: 34px;
display: block;
width: 60px;
border:1px solid #fff;
line-height: 58px;
height: 60px;
color:#ffffff;
text-align: center;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.funfactors .feature-list i {
width: auto;
max-width: 120px;
font-style: normal;
font-weight: 600;
border-radius: 0;
margin-bottom: 0;
}
.feature-list.border-radius i {
border-radius: 100px 100px 100px 100px;
-moz-border-radius: 100px 100px 100px 100px;
-webkit-border-radius: 100px 100px 100px 100px;
width: 80px;
height: 80px;
line-height: 76px;
}
.service-center .feature-list i {
margin: 0 auto 30px;
}
.service-center {
text-align: center;
}
.feature-list p {
padding-bottom: 0;
color:#a1a1a1;
}
.feature-list p strong {
font-size: 18px;
color:#363a47;
line-height: 1;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.invis {
border-color: transparent;
}
.invis1 {
border-color: transparent;
margin: 30px 0
}
.section-title {
margin-bottom: 40px;
display: block;
position: relative;
}
.section-title h4 {
font-size: 28px;
padding-bottom: 5px;
margin-bottom: 0;
font-weight: bold;
}
.button-wrapper p,
.section-title p {
font-style: italic;
font-size: 15px;
font-weight: 300;
color:#a1a1a1;
font-family: "Droid Serif",Georgia,"Times New Roman",serif;
}
.owl-custom .owl-controls {
position: relative;
right: 0;
top: auto;
width: 100%;
left: 0;
}
.owl-custom .owl-controls .owl-nav [class*="owl-"] {
background: #fff;
color: #363a47;
cursor: pointer;
display: inline-block;
font-size: 14px;
height: 25px;
line-height: 25px;
border-radius: 0;
margin: 5px 0;
padding: 0;
width: 50%;
}
.white .owl-theme .owl-controls .owl-nav [class*="owl-"] {
background: #edecf0;
}
.magnifier {
position:absolute;
top:0;
background-color: rgba(255,255,255,0.5);
left:0;
bottom:0;
right:0;
z-index: 0;
zoom: 1;
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition:all .3s ease-in-out;
-moz-transition:all .3s ease-in-out;
-ms-transition:all .3s ease-in-out;
-o-transition:all .3s ease-in-out;
transition:all .3s ease-in-out;
}
.entry:hover .magnifier {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
}
.shopmeta span {
display: block;
}
.owhidden {
overflow: hidden;
position: relative;
display: block;
width: 100%;
height: 100%;
}
.zoom {
display:inline-block;
position: relative;
}
.zoom img {
width: 100%;
display: block;
}
.zoom img::selection {
background-color: transparent;
}
.add-w {
width: 35px;
line-height:35px;
height: 35px;
right: 10px;
left: auto;
border-radius: 100%;
top:10px;
position: absolute;
text-align: center;
}
.add-w .fa-envelope-o,
.add-w i {
color:#fff;
font-size: 11px;
}
.visible-buttons span{
color:#fff !important;
}
.visible-buttons a {
border-bottom: 0 !important;
width: 30px;
height: 30px;
margin:3px 0 !important;
line-height: 30px;
display: block;
}
.visible-buttons{
visibility: hidden;
margin: 0 auto;
opacity: 0;
position: absolute;
text-align: center;
-webkit-transition: all 0.7s ease 0s;
-moz-transition: all 0.7s ease 0s;
-ms-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
bottom:0;
right:auto;
left: 0px;
position: absolute;
text-align: center;
}
.entry:hover .visible-buttons {
opacity: 1;
bottom:120px;
visibility: visible;
}
.rating i {
color:#eabe12;
}
.rating span {
display: block;
}
.entry .badge {
position: absolute;
top:0;
left: 0;
}
.entry:hover .badge {
opacity: 0;
}
.close {
opacity: 1;
color:#222222;
}
.addw {
font-size:13px;
padding:20px 0;
}
.shop-item-title {
background-color: #fff;
z-index: 1;
padding:0 20px;
position: relative;
display: block;
overflow: hidden;
border:1px solid #f5f5f5;
}
.shop-item-list {
display: block;
padding:0;
line-height: 1.9;
z-index: 1;
margin-bottom: 0;
position: relative;
text-align: left;
}
.course-list {
margin-bottom: 30px;
}
.shop-item-list img {
width: 100%;
}
.shop-item-list .rating {
margin:0 0 20px;
}
.shop-list-desc .shopmeta {
margin-bottom: 30px;
}
.achievement-wrapper h4,
.shop-list-desc h4,
.shop-item-list h4 {
font-size: 16px;
font-weight: 600;
margin: 20px 0 10px;
line-height: 1.3 !important;
text-transform: capitalize;
padding:0;
}
.shop-item-list h4 a,
.shop-item-list h4 {
color:#363a47;
}
.badge {
border-radius: 0;
font-size: 9px;
font-weight: 300;
margin-left: 0;
margin-top: 0 !important;
vertical-align: text-top;
}
.testimonial {
position: relative;
display: block;
padding: 0 20px;
}
.testimonial p {
padding-bottom: 0;
margin-bottom: 0;
}
.testimonial:after {
font-family: 'FontAwesome';
content: "\f10e";
padding-right:5px;
right:0;
position:absolute;
top:0px;
font-size:400%;
opacity: 0.1; -moz-opacity: 0.1; filter: alpha(opacity=10);
}
.testimonial h4 {
font-size:16px;
padding-right:5px;
font-weight: 600;
}
.first {clear:both}
.last{margin-right:0}
.button-wrapper {
margin-top: 40px;
}
.testimonial small {
font-size:11px;
font-style:italic;
color:#798184;
padding:0 10px;
font-family: 'Droid Serif', Georgia, "Times New Roman", serif !important;
font-weight:300;
}
.testimonial img {
margin-right:15px;
width:75px;
border:0 solid #ffffff !important;
height:75px;
margin-top:5px;
border: medium none;
display: inline-block;
image-rendering: optimizequality;
max-width: 100%;
}
.testimonial-meta {
overflow: hidden;
}
.button-wrapper .btn {
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
font-size: 14px;
font-weight: 600;
padding: 10px 30px;
}
.button-wrapper .btn i {
font-size: 16px;
margin-right: 10px;
}
.accordion-toggle-2 .panel-heading {
background-color: #edecf0 !important;
border-radius: 0 !important;
padding: 10px 15px;
}
.grey .accordion-toggle-2 .panel-heading {
background-color:#ffffff !important;
}
.accordion-toggle-2 .panel,
.accordion-toggle-2 .panel-heading {
background-color: #fff;
border-color: #dadadc;
border-bottom: 1px solid #dadadc;
}
.accordion-toggle-2 .panel-heading h3 i {
background-color: #202830 !important;
color: #ffffff;
height: 20px;
line-height: 20px;
font-size: 11px;
position: absolute;
right: -10px;
top:1px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin-right: 10px;
text-align: center;
width: 21px;
vertical-align: text-top;
}
.accordion-toggle-2 .panel-heading h3 {
display: inline-block;
font-size: 13px;
text-transform: uppercase;
font-weight: bold;
margin: 0;
width: 100%;
padding: 0;
}
.accordion-toggle-2 .panel-group .panel + .panel {
margin:-2px 0;
}
.accordion-toggle-2 .panel-title {
line-height: 16px;
}
.accordion-toggle-2 .panel {
margin-bottom: 10px !important;
border-color: #f5f5f5;
border-radius: 0 !important;
box-shadow: none;
}
.accordion-toggle-2 p {
padding-bottom: 0;
}
.team {
z-index: 1;
cursor: pointer;
position: relative;
}
.team-hover-content span {
margin:10px 0;
display: block;
font-style: italic;
}
.team-hover-content h5 {
font-size: 18px;
text-transform: uppercase;
font-weight: bold;
line-height: 1 !important;
margin-bottom: 0;
letter-spacing: 0;
padding-bottom: 0;
color:#363a47 !important;
}
.team-hover-content p {
font-size:13px;
margin-bottom: 0;
}
.team-hover-content {
position: absolute;
bottom: 0px;
width: 100%;
padding: 50px 30px 0;
border:2px solid #dedde1;
opacity: 0;
z-index: 1;
top:0%;
text-align: center;
text-decoration: none;
background-color: #ffffff;
background-color: rgba(255,255,255,1);
border-radius: 0;
}
.team img {
z-index: 1;
width: 100%;
}
.team:hover .team-hover-content {
opacity: 1;
position: absolute;
-webkit-transition:all 0.7s ease-in-out;
-moz-transition:all 0.7s ease-in-out;
-o-transition:all 0.7s ease-in-out;
transition:all 0.7s ease-in-out;
}
.tab-content {
border-bottom:1px solid #dedde1;
border-right:1px solid #dedde1;
border-left:1px solid #dedde1;
padding:30px;
}
.nav-tabs > li > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #edecf0;
border-color: #ddd #ddd transparent;
border-image: none;
border-radius: 0 !important;
font-size: 14px;
padding: 15px 30px;
border-style: solid;
border-width: 1px;
color: #363a47 !important;
cursor: default;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
background-color: #ffffff !important;
}
.notfound h3 {
font-size: 120px;
padding-bottom: 10px;
margin-bottom: 0;
line-height: 1 !important;
font-weight: bold;
}
.notfound p {
font-style: italic;
font-size: 18px;
line-height: 2
}
/* ==================================================================
FOOTER
================================================================== */
.copyright {
background-color: #363b48;
padding:20px 0 10px;
display: block;
position: relative;
text-transform: capitalize;
}
.copyright a,
.copyright p {
color:#ffffff;
padding:0 !important;
margin:0 !important;
}
.copyright a {
font-weight: 600 !important;
}
.widget-title {
display: block;
position: relative;
margin-bottom: 20px;
}
.widget-title h4 {
font-weight: 600;
font-size: 21px;
}
.footer .widget-title h4 {
color:#ffffff;
}
.content-widget .widget-title {
margin-bottom: 20px;
}
.content-widget .widget-title h4 {
padding-top: 0;
margin-top: 0;
font-size: 18px;
font-weight: 500;
}
.content-widget hr,
.footer hr {
border-color: #999eab;
margin:0;
border-width: 2px;
width: 45px;
}
.footer p {
padding-bottom: 10px;
color:#999eab;
}
.latest-tweets p:before {
content: "\f099";
font-family: "FontAwesome";
font-size: 16px;
left: 0;
color:#999eab;
padding-right:5px;
position: relative;
top: 2px;
}
.latest-tweets {
padding: 0;
list-style: none;
}
.latest-tweets li {
display: inline-table;
padding: 0;
margin-bottom: 10px;
width: 100%;
}
.latest-tweets li p a {
margin: 0 4px;
}
.latest-tweets li p {
padding-bottom: 0;
}
.latest-tweets li span{
display: block;
color:#ffffff;
margin:0;
margin-top: 0;
font-size: 12px;
}
.contact-details li a {
color:#999eab;
text-decoration: underline !important;
}
.contact-details li {
color:#999eab;
margin-bottom: 5px;
}
.contact-details li i {
padding-right: 7px;
}
.contact-details,
.popular-courses {
list-style: none;
padding:0;
}
.popular-courses li {
display: inline-block;
}
.popular-courses li img {
background: #616673 none repeat scroll 0 0;
border: 1px solid #424754;
margin: 0 2px 2px 0;
width: 83px;
}
.feedbacks .btn {
padding:10px;
}
/* ==================================================================
PAGE & BLOG
================================================================== */
.comment-reply {
margin-left: 75px;
}
.comment-wrapper .well {
background-color: #ffffff !important;
}
.comment-wrapper h3 {
padding:0;
margin:0;
}
.time-comment a {
margin-top: -15px !important;
padding: 3px 10px !important;
}
.time-comment {
display: block;
position: relative;
margin-bottom: 10px;
}
.tags a {
padding:4px 8px;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.single-blog-wrapper .blog-desc {
padding: 40px
}
.pagination > li > a,
.pagination > li > span {
width: 40px;
padding:0;
height: 40px;
margin:0 3px;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 40px;
}
.btn {
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
text-transform: none;
font-weight: 600;
}
.callout {
border:1px solid #dedde1;
background-color: #edecf0;
padding:30px;
}
.callout i {
margin-top: 0;
color:#d1d0d4;
}
.callout .btn {
padding: 15px;
text-transform: uppercase;
}
.callout h4 {
border-right: 1px solid #d1d0d4;
padding: 0;
margin: 0;
font-weight: 400;
}
.page-title {
position: relative;
display: block;
padding:35px 0;
border-top:1px solid #dedde1;
border-bottom:1px solid #dedde1;
}
.page-title h1 {
font-size: 18px;
font-weight: 500;
padding:0;
margin:0;
}
.breadcrumb {
background-color: transparent;
border-radius: 0;
font-size: 12px;
list-style: outside none none;
margin-bottom: 0;
padding: 0;
}
.well {
background-color: #edecf0;
border-radius: 0;
padding:30px;
border:1px solid #dedde1;
}
.media img {
width: 65px;
margin-right: 10px;
}
.media .rating {
margin-bottom: 5px;
}
.media-heading {
font-size: 16px;
padding-bottom: 0;
font-weight: 600;
}
/* ==================================================================
COURSE STYLES
================================================================== */
.quiz-wrapper .lead {
padding-bottom: 0;
color:#363a47;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.progress,
.panel-footer {
box-shadow: none;
background-color: #edecf0;
}
.panel-primary {
border-color: #edecf0;
}
.course-list .shop-item-list,
#course-left-sidebar {
margin-bottom: 30px;
}
.course-instructors img {
width: 20px;
margin: 0 8px;
}
.course-prize i {
font-size: 16px;
padding:3px 2px 0;
}
.course-description small {
font-weight: 600;
margin-right: 20px;
font-size: 13px;
}
.course-description small span {
font-weight: 400;
}
.course-description .course-title {
font-size: 24px;
}
.bbp-forum-info img {
max-width: 65px;
margin:0 20px 0 0;
}
.bbp-topic-freshness-author img {
max-width: 24px;
}
.achievement-wrapper {
margin-bottom: 40px;
display: block;
}
.achievement-wrapper img {
max-width: 120px;
border:2px solid #dedde1;
padding:3px;
}
.course-meta i {
padding-right: 3px;
}
.course-meta .label-primary {
width: 25px;
font-size: 12px;
font-weight: 400;
height: 20px;
line-height: 16px;
text-align: center;
}
.label-primary:hover a,
.label-primary a:hover {
color:#ffffff !important;
}
.course-meta p {
width: 100%;
display: block;
position: relative;
}
.course-meta small {
position: absolute;
right: 0;
top:0;
}
.course-image-widget img {
width: 100%;
}
.course-meta p,
.course-meta a {
line-height: 1;
color:#ffffff;
}
.course-meta {
padding: 15px 20px 10px;
background-color: #3f4451;
margin-top: 0;
}
.course-meta.forshop {
background-color: #fff;
}
.course-meta.forshop hr {
border-color: #fff;
background-color: #fff;
}
.course-meta.forshop p {
color:#777777;
font-size: 14px;
}
.course-meta.forshop a {
color:#363a47 !important;
}
.course-meta .rating {
margin-top: 0;
padding-top: 0;
}
.course-meta .rating i {
padding: 0;
}
.course-meta p {
display: inline-block;
padding-right: 4px;
padding-bottom:0;
font-size: 13px;
}
.course-meta hr {
background: #626774;
border-color: #121724;
height: 1px;
margin-bottom: 6px;
margin-top: 6px;
}
.course-button .btn {
border-radius: 0;
padding:10px 20px;
}
.course-table .fa-check {
background-color:#92CD00;
color:#ffffff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
}
.course-table .fa-close {
background-color:#FF0000;
color:#ffffff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
}
.other-courses img {
margin: 0;
width: auto;
max-width: 400px;
float:right;
}
.filters-dropdown{
margin-bottom: 30px;
display: block;
position: relative;
}
#filters ul {
padding:0 0 0 10px;
}
#filters li {
list-style: none;
display: inline-block;
font-weight: 500;
margin:0 10px 0 0;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
}
.portfolio .shop-item-list {
margin-bottom: 0 !important
}
.portfolio .item {
width:25%;
padding:10px;
margin:0 !important;
}
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
transition-property: transform, opacity;
}
.course-table i,
.course-table a {
color:#363a47;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
color:#363a47;
}
/* ==================================================================
LOGIN PAGE
================================================================== */
.login-wrapper {
padding-top: 100px;
}
.logo-center img {
margin: 20px auto;
display: block;
max-width: 240px;
text-align: center;
}
.panel-login {
border-radius: 0;
margin-top: 8%;
padding:20px;
display: block;
position: relative;
}
.panel-login>.panel-heading {
color: #00415d;
background-color: transparent;
border-color: #fff;
text-align:center;
}
.panel-login>.panel-heading a{
text-decoration: none;
color: #666;
font-weight: bold;
font-size: 15px;
-webkit-transition: all 0.1s linear;
-moz-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.panel-login>.panel-heading a.active{
color: #029f5b;
}
.panel-login>.panel-heading hr{
margin-top: 10px;
margin-bottom: 0px;
clear: both;
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
}
.edit-profile .form-control,
.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] {
height: 45px;
border: 1px solid #ddd;
background-color: #fff;
font-size: 16px;
-webkit-transition: all 0.1s linear;
-moz-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.edit-profile .form-control,
.panel-login .form-control {
border-radius: 0;
font-size: 14px !important;
box-shadow: none;
}
.panel-login input:hover,
.panel-login input:focus {
outline:none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-color: #ccc;
}
.panel-login .btn-default {
outline: none;
color: #fff;
font-size: 14px !important;
width: 100%;
display: block;
height: auto;
font-weight: 600;
padding: 14px 0;
text-transform: none;
}
.forgot-password {
text-decoration: underline !important;
color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
text-decoration: underline;
color: #666;
}
.edit-profile label {
font-weight:600;
margin-bottom: 10px;
display: block;
}
.edit-profile p {
padding-bottom: 0;
}
.edit-profile textarea {
height: 150px !important;
}
.question-answer p {
padding-left: 40px;
}
.question-answer h4 {
padding-left: 40px;
font-weight: 600;
}
.question-answer i {
margin-top: 4px;
font-size: 24px;
display: inline-block;
position: relative;
}
/* ==================================================================
BX SLIDER
================================================================== */
.myimg {
padding: 0;
top: 0;
left: 0;
bottom:0;
background:url(upload/about.jpg); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
position: absolute;
}
.myimg2 {
padding: 0;
top: 0;
left: 0;
bottom:0;
background:url(upload/about_03.png); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
position: absolute;
}
.bxslider h3 {
font-size:30px;
padding-bottom: 0;
margin-bottom:15px;
line-height: 1;
font-weight: 400;
text-transform: uppercase;
}
.bxslider h3 {
font-size:34px;
}
.bxslider .lead {
font-size:16px;
padding-bottom: 0;
margin-bottom: 0;
}
.bxslider .big-title {
margin-left: 0;
}
.bxslider li {
padding:0 0 40px;
}
.bxslider p,
.bxslider .lead {
color:#a1a1a1;
}
.bxslider h3 span,
.big-title h3 span {
font-weight: 900;
}
.textrotate {
padding:0 40px 40px;
}
.bx-wrapper .bx-controls-direction a {
display: none;
}
/* ==================================================================
PRICING TABLE
================================================================== */
.my_planHeader {
text-align: center;
color: white;
padding-top:2em;
padding-bottom:2em;
}
.my_planTitle {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 24px;
}
.my_planPrice {
font-size: 15px;
line-height: 1;
margin: 0 0 20px !important;
padding: 0 !important;
}
@media (max-width: 768px) {
.my_planTitle {
font-size:small;
}
}
@media (max-width: 768px) {
.my_feature {
text-align: center
}
}
.my_featureRow {
margin-top: 0.2em;
margin-bottom: 0.2em;
border: 0.1em solid rgb(200, 200, 200);
}
/* --- Plan 1 --------------------------- */
.my_planHeader.my_plan2,
.my_planHeader.my_plan1 {
background: #5ba5af !important;
border-bottom: thick solid #3a848e !important;
}
/* --- Plan 2 --------------------------- */
.my_planHeader.my_plan2 {
background: #5ba5af;
border-bottom: thick solid rgb(108, 131, 62);
}
/* --- Plan 3 --------------------------- */
.my_plan3 {
background: rgba(227,75,17, 0.05);
}
.my_planHeader.my_plan3 {
background: #e34b11;
border-bottom: thick solid #c32b00;
}
.my_planFeature {
padding:10px 0;
text-align: center;
}
.my_planFeature i.my_check {
color: #92cd00;
}
.my_planFeature i.no_check {
color: #ff0000;
}
.my_feature p {
padding:10px 0;
margin:0;
}
/* ==================================================================
CAROUSEL
================================================================== */
.carousel {
position: relative;
}
.carousel-inner {
overflow: hidden;
position: relative;
width: 100%;
}
.carousel-inner > .item {
display: none;
position: relative;
transition: left 0.6s ease-in-out 0s;
}
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
line-height: 1;
}
@media not all, not all {
.carousel-inner > .item {
backface-visibility: hidden;
transition: transform 0.6s ease-in-out 0s;
}
.carousel-inner > .item.next, .carousel-inner > .item.active.right {
left: 0;
transform: translate3d(100%, 0px, 0px);
}
.carousel-inner > .item.prev, .carousel-inner > .item.active.left {
left: 0;
transform: translate3d(-100%, 0px, 0px);
}
.carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
left: 0;
transform: translate3d(0px, 0px, 0px);
}
}
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next, .carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left, .carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
bottom: 0;
color: #ffffff;
font-size: 24px;
left: 0;
position: absolute;
text-align: center;
top: 0;
}
.carousel-control.right {
left: auto;
right: 0;
}
.carousel-control:hover, .carousel-control:focus {
color: #ffffff;
opacity: 0.9;
outline: 0 none;
text-decoration: none;
}
.carousel-control .fa {
background-color: rgba(0, 0, 0, 0.9);
font-size: 24px;
padding: 0.7em;
position: absolute;
top: 50%;
transition: all 0.35s ease-in-out 0s;
z-index: 5;
}
.carousel-control .fa:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.carousel-control .fa-angle-left {
left: 0;
}
.carousel-control .fa-angle-right {
right: 0;
}
.carousel-control .fa-angle-left, .carousel-control .fa-angle-right {
transform: translate(0px, -50%);
}
.carousel-indicators {
/* background-color: rgba(0, 0, 0, 0.4);
border-radius: 20em;
line-height: 1;
list-style: outside none none;
padding: 0.3em 0.6em;
position: absolute;
right: 20px;
text-align: center;
top: 20px;
z-index: 15;*/
}
.carousel-control.right,
.carousel-control.left {
background-image: none;
}
.carousel-indicators li {
background-color: rgba(0, 0, 0, 0);
border: 1px solid #ffffff;
border-radius: 50%;
cursor: pointer;
display: inline-block;
height: 9px;
text-indent: -999px;
width: 9px;
}
.carousel-indicators li + li {
margin-left: 3px;
}
.carousel-indicators .active {
background-color: #ffffff;
}
.carousel-caption {
background-color: rgba(0, 0, 0, 0.9);
bottom: 20px;
color: #ffffff;
display: none;
left: 20px;
max-width: 100%;
padding: 2em;
position: absolute;
right: 20px;
text-align: left;
z-index: 10;
}
@media screen and (min-width: 768px) {
.carousel-caption {
display: block;
}
}
/* ==================================================================
CONTACT PAGE
================================================================== */
#message {
display: block; position:relative; text-align:left; padding:0 20px;
}
#map{
height:450px;
width:100%
}
#map img{
max-width:inherit
}
.map{
position:relative
}
.map .row .col-lg-4{
float:right;
margin-top:-450px;
z-index:9
}
.contact-icon {
margin:20px 0;
overflow:hidden;
}
.map .row{
position:relative
}
.infobox img {
width:100% !important;
}
.map .searchmodule {
padding:18px 10px
}
.infobox {
display: inline-block;
padding: 5px;
position: relative;
width: 270px;
}
.infobox img {
width:80px !important;
padding-right:10px
}
.infobox .title {
font-size:13px;
font-weight:bold;
margin-top:0;
margin-bottom:0;
text-transform:uppercase;
padding-bottom:5px;
}
.infobox .title a {
font-weight:bold;
}
.darkskin strong,
.darkskin h4 {
color:#ffffff !important;
}
.overlay {
background-color: rgba(0, 0, 0, 0.7);
bottom: 0;
height: 100%;
left: 0;
padding: 60px 0;
position: absolute;
right: 0;
}
.overlay.green-overlay {
background-color: rgba(255,255,255,0.9);
}
.parallax {
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-repeat:no-repeat;
/* custom background-position */
background-position:50% 50%;
/* ie8- graceful degradation */
background-position:50% 50%\9 !important;
display: block;
width: 100%;
height: 100%;
min-height: 100%;
position: relative;
overflow-x: hidden;
overflow-y: hidden;
vertical-align: sub;
z-index: 99;
}
/* ==================================================================
BLOG
================================================================== */
.blog-widget .blog-title h2 a,
.blog-widget .blog-title h2 {
font-size: 18px;
line-height: 24px;
}
.blog-widget .blog-wrapper {
border-bottom: 1px solid #dedde1;
}
.blog-widget .blog-desc {
padding: 20px;
}
.blog-widget .blog-desc p {
padding-bottom: 10px;
}
.blog-widget .blog-desc, .blog-title {
padding:25px 20px;
}
.second-bread {
padding: 0 40px;
}
.second-bread .breadcrumb {
margin-top: 25px;
}
.second-bread h1 {
font-weight: 500;
font-size: 21px;
}
.comment-wrapper h3 {
padding: 20px;
font-weight: 21px;
font-weight: 600;
text-align: center;
}
.couponform .form-control,
.contact_form .form-control,
.commentform .form-control,
.searchform .form-control,
.newsletter .form-control {
box-shadow: none;
font-size: 13px;
font-style: italic;
border-radius: 0;
height: 45px;
margin-bottom: 10px;
}
.contact_form textarea {
height: 155px !important
}
.commentform textarea {
height: 130px !important
}
.searchform .form-control {
margin-bottom: 0;
}
.newsletter p {
padding-bottom: 0;
}
#sidebar .widget {
margin-bottom: 40px;
background-color: #fff;
padding:30px;
border-left: 1px solid #dedde1;
border-right: 1px solid #dedde1;
border-bottom: 5px solid #dedde1;
border-top: 1px solid #dedde1;
}
#sidebar .widget-title h4 {
font-size: 18px;
}
#sidebar .widget-title hr {
width: 45px;
border-width: 3px;
border-color: #111;
margin:0;
}
#sidebar .latest-tweets li span {
color:#363a47;
}
#sidebar .popular-courses li img {
background: #fff;
border: 1px solid #969ba8;
width: 94px;
}
#sidebar .widget-title {
margin-bottom: 30px;
}
.blog-desc div.post-date {
float: left;
margin-right: 20px;
margin-top: 8px;
text-align: center;
}
.blog-desc div.post-date span.month {
color: #ffffff;
font-size: 0.9em;
padding: 0 10px 2px;
}
.blog-desc div.post-date span.day {
display: block;
font-size: 16px;
font-weight: bold;
padding: 10px;
}
.blog-wrapper {
border-left: 1px solid #dedde1;
border-right: 1px solid #dedde1;
border-top: 1px solid #dedde1;
background-color: #ffffff;
position: relative;
}
.category_title {
margin-bottom: 10px;
display: block;
text-transform: uppercase;
}
.blog-desc p {
padding-bottom: 0;
}
.blog-desc,
.blog-title {
padding:30px 40px;
}
.readmore {
/*
color:#363a47;
margin-left: 61px;
font-size: 15px;
text-transform: uppercase;
font-weight: bold;
*/
}
.blog-title h2 a,
.blog-title h2 {
font-size: 30px;
padding-bottom: 0;
margin-bottom: 0;
margin-top: 0;
color:#363a47;
font-weight: 700;
line-height: 36px;
}
.post-meta i {
padding-right: 2px;
}
.post-meta span {
margin-right: 10px;
font-size: 13px;
}
.post-meta {
margin-top: 10px;
}
.post-meta a,
.post-meta span {
color:#bbbabe;
}
/* ==================================================================
SHOP
================================================================== */
.shop-listing p {
padding-bottom: 0;
font-size: 13px;
}
.shop-button .btn {
border-radius: 0 !important;
z-index: 1000;
position: relative;
}
.my_featureRow {
background-color:#ffffff;
}
.total-price p {
padding:0;
margin:0;
line-height: 1;
}
.shop-cart .table img {
max-width: 60px;
margin:0 10px;
}
.shop-cart .table > thead > tr > th,
.shop-cart .table > tbody > tr > th,
.shop-cart .table > tfoot > tr > th,
.shop-cart .table > thead > tr > td,
.shop-cart .table > tbody > tr > td,
.shop-cart .table > tfoot > tr > td {
border-top: 1px solid #edecf0;
line-height: 1.42857;
padding: 15px;
}
.shop-cart tbody tr a {
text-decoration: underline !important;
}
/* ==================================================================
SIDEBAR STYLE
================================================================== */
#sidebar-fix {
width: inherit;
min-width: 280px;
max-width: 280px;
background-color:#fff;
float: left;
height:100%;
bottom:0;
left: :0;
overflow-y:auto;
z-index: 9991;
overflow-x:hidden;
position: fixed;
top: 0;
padding-top: 4em;
height: 100%;
-webkit-overflow-scrolling:touch;
overflow:auto;
text-align: left;
}
#main {
height:100%;
overflow:auto;
margin-left:280px;
}
.side-copyright {
position: absolute;
bottom:0;
padding-left: 40px;
text-align: left;
}
.sidebar-nav li.active {
border-right: 4px solid #ddd;
}
.sidebar-nav {
margin: 15px 0 30px;
padding: 0;
list-style: none;
}
.sidebar-nav li {
margin:0;
padding:0 20px;
line-height: 40px;
}
.side-logo {
padding:1em 0 3em;
}
.side-logo img {
display: block;
margin:0 auto;
}
.sidebar-nav li a {
color:#363a47;
text-transform: uppercase;
font-family: "Roboto",sans-serif;
font-size: 15px;
letter-spacing: 0;
outline: 0 none;
text-transform: none;
}
.sidebar-nav li:first-child {
border-top: 1px solid #ecebef;
}
.sidebar-nav li {
padding:4px 40px;
border-bottom: 1px solid #ecebef;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.mobile-menu {
z-index: 9999;
display: block;
position: fixed;
top:0;
left: 0;
display: none;
line-height: 0;
background-color: #ffffff;
}
.mobile-menu .btn {
border-radius: 0 !important;
font-size: 12px !important;
}
@media (max-width: 992px) {
#sidebar-fix {
position: relative;
box-shadow: none;
}
.mobile-menu{
display: normal!important;
}
}
@media screen and (max-width: 1180px) {
.row-offcanvas {
position: relative;
-webkit-transition: all 0.25s ease-out;
-moz-transition: all 0.25s ease-out;
transition: all 0.25s ease-out;
width:calc(100% + 280px);
}
.row-offcanvas-left {
left: -280px;
}
.row-offcanvas-left.active {
left: 0;
}
.sidebar-offcanvas {
position: absolute;
top: 0;
}
}
/* ==================================================================
COLORS
================================================================== */
mark,
.comment-wrapper h3,
.blog-desc div.post-date span.month,
.pagination > li > a,
.pagination > li > span,
.btn-primary {
background-color:#5ba5af;
color:#ffffff !important;
border-color:#5ba5af;
}
.btn-primary.disabled, .btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary.focus[disabled],
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active,
.login,
.pagination > li > a:hover,
.pagination > li > span:hover,
.btn-primary:focus,
.btn-primary:hover {
background-color:#428992;
border-color:#5db9c5;
}
.blue,
.topbar {
background-color:#5ba5af !important;
}
.why-us i,
.tags a,
.btn-default {
border-color: #e34b11 !important;
background-color: #e34b11 !important;
color:#ffffff !important;
}
.blog-desc div.post-date span.day,
.visible-buttons a:hover,
.owl-custom .owl-controls .owl-nav [class*="owl-"]:hover,
.nav > li > a.btn {
border-color: #e34b11 !important;
background-color: #e34b11 !important;
color:#ffffff !important;
}
.progress-bar,
.orange,
.ttmenu .navbar-default .dropdown-menu {
background-color: #e34b11 !important;
}
.btn-default.disabled, .btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default.focus[disabled],
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default.active,
.nav > li > a.btn:hover,
.btn-default:focus,
.btn-default:hover {
background-color: #c42c00 !important;
border-color: #fd652b !important
}
.course-meta .label-primary,
.feature-list i {
background-color: #e34b11;
border-color: #fd652b;
}
.visible-buttons a,
.ttmenu .img-thumbnail {
background-color: #fd652b;
border-color: #c42c00;
}
.ttmenu hr {
background-color: #fd652b;
border-color: #c42c00;
height: 2px;
}
.sidebar-nav li.active {
border-right-color: #fd652b;
}
.form-control:focus {
border-color: #c42c00;
}
.shop-cart tbody .remove a,
.category_title,
.callout a,
.question-answer i,
.panel-login>.panel-heading a.active,
.course-description small a,
a:focus,
a:hover,
.sidebar-nav li:hover a,
.sidebar-nav li:focus a,
.sidebar-nav li.active a,
.course-description small span,
.slider_layer_01 i,
.slider_layer_05,
.latest-tweets p a,
.shop-item-list h4 a:hover,
.shop-item-list h4:hover {
color:#e34b11;
}
.nav > li > a.active,
.nav > li > a:hover {
background-color: #e34b11 !important;
opacity: 1 !important;
color:#ffffff !important;
}
/* ==================================================================
MENU BG
================================================================== */
.ttmenu .navbar-default .dropdown-menu.menu-bg {
background-image: url(upload/menu_bg.png) !important;
background-position: right bottom;
background-repeat: no-repeat;
background-size: auto auto;
}
.ttmenu .navbar-default .dropdown-menu.wbg {
background-color: #ffffff !important;
}
.ttmenu .navbar-default .dropdown-menu.wbg li a {
color:#363a47;
}
.ttmenu .navbar-default .dropdown-menu.wbg li {
border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}
.ttmenu .navbar-default .dropdown-menu.wbg li:last-child {
border-bottom: 0 solid rgba(0, 0, 0, 0.05)
}
/* ==================================================================
RESPONSIVENESS
================================================================== */
@media (max-width: 768px) {
.affix {
position: relative !important;
}
.slider_layer_05 {
background-color: transparent;
}
.bxslider li,
.textrotate {
padding:0 !important;
}
.callout h4 {
border-right: 0;
font-size: 14px;
}
.callout .btn {
margin-top: 10px;
}
.topbar .text-left,
.topbar .text-right {
text-align: center !important;
font-size: 12px;
}
.ttmenu .navbar-default .navbar-toggle {
margin-top: 0;
}
}
/* ----------------------------------------------------
OTHERS
------------------------------------------------------- */
#loader {
overflow-x: hidden;
overflow-y: hidden;
vertical-align: middle;
background-color: #ffffff;
position:fixed;
display: table;
width: 100%;
top:0;
height: 100%;
min-height: 100%;
z-index:99999;
}
.loader-container {
position: relative;
display: table-cell;
vertical-align: middle;
z-index: 12;
text-align:center;
}
.loader {
margin-top: 20px;
vertical-align: top;
}
/* ----------------------------------------------------
ADD YOUR CUSTOM STYLES HERE...
------------------------------------------------------- */ | public/templates/2/style1.css | display: none;
}
.navbar-default .navbar-nav > li {
border-right: none;
}
section.white{
padding-bottom: 5px;
padding-top: 40px;
}
.widget a{
color: #999eab;
}
/* ----------------------------------------------------
File Name: style.css
Template Name: Learn Plus
Created By: Template Visual
http://themeforest.net/user/templatevisual
1. IMPORT
2. SKELETON
3. HEADER & MENUS
4. SLIDER
5. SECTIONS & MODULES,
6. FOOTER & COPYRIGHTS,
7. PAGE STYLES
8. COURSE STYLES,
9. LOGIN PAGE
10. BX SLIDER
11. PRICING TABLE
12. CAROUSEL
13. CONTACT PAGE
14. BLOG
15. SHOP
16. SIDEBAR STYLES
17. COLORS
18. MENU BG
19. RESPONSIVENESS
------------------------------------------------------- */
/* ----------------------------------------------------
IMPORT
------------------------------------------------------- */
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);
/* ----------------------------------------------------
SKELETON
------------------------------------------------------- */
body {
background: #eeedef;
color: #777777;
font-size: 14px;
line-height: 1.9;
letter-spacing: 0;
font-weight: 400;
padding:0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6{
letter-spacing:0px;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:normal;
position: relative;
padding: 0 0 10px 0;
font-weight:normal;
line-height:1.6 !important;
color:#363a47;
}
h1{
font-size: 22px;
}
h2{
font-size: 20px;
}
h3{
font-size: 18px;
}
h4{
font-size: 16px;
}
h5{
font-size: 14px;
}
h6{
font-size: 14px;
}
a {
color:#696969;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
text-decoration:none !important;
}
img.aligncenter{
display:block;
text-align:center;
display: block;
margin:0 auto 20px auto;
padding:0px;
border:0px;
background:none;
}
.image-center img {
width: auto;
display: block;
margin: auto;
}
.alignleft,
img.alignleft{
float:left;
margin: 6px 20px 6px 0;
display: inline;
border:0px;
background:none;
padding:0;
display:block;
}
.alignright,
img.alignright{
padding:0;
float:right;
margin: 6px 0 6px 20px;
border:0px;
display:block;
background:none;
}
::selection {
background: #f84b4a; /* Safari */
color:#fff;
}
::-moz-selection {
background: #f84b4a; /* Firefox */
color:#fff;
}
blockquote {
font-size:16px;
line-height: 32px;
font-family: 'Droid Serif', Georgia, "Times New Roman", serif;
font-weight:normal;
font-style:italic;
position:relative;
width:auto;
}
blockquote small {
display: block;
margin-top: 20px;
}
pre {
line-height:18px;
margin-bottom:18px;
}
.btn,
a {
outline:0 !important;
text-decoration: none !important;
}
ins {
text-decoration:none;
}
sup {
bottom: 1ex;
}
sub {
top: .5ex;
}
p{
padding:0 0 20px 0;
}
.check li:before {
content: "\f105";
font-family: "FontAwesome";
font-size: 14px;
left: 0;
color:#363a47;
padding-right:8px;
position: relative;
}
.check li {
font-size:14px;
list-style:none;
margin-bottom:5px;
}
.check {
margin-left:0;
padding-left:0
}
/* ==================================================================
HEADER & MENUS
================================================================== */
.header.affix{
top:0;
left:0;
right:0;
width:100%;
padding:0;
z-index:9999;
position: fixed;
}
.header.affix .navbar-default {
padding: 18px 0 0px !important;
}
.topbar {
padding:10px 0;
display: block;
z-index: 1100;
position: relative;
text-transform: capitalize;
}
.contactwrap i {
font-size: 15px;
padding-right: 5px;
}
.contactwrap a {
color:#afb0b4;
}
.topbar .form-control {
margin-bottom: 10px;
text-transform: none;
font-size: 12px;
border-radius: 0;
box-shadow: none;
}
.topbar form .btn {
border-radius: 0;
font-size: 13px;
}
.topbar .dropdown-menu {
border: 1px solid #e8e8e8;
border-radius: 0;
box-shadow: none;
font-size: 14px;
left: -114px;
margin: 10px 0;
min-width: 240px;
padding: 20px;
position: absolute;
}
.topbar h4 a {
color:#383c4b !important;
text-decoration: underline !important;
}
.topbar h4 {
font-size: 14px;
line-height: 1 !important;
margin: 0 !important;
padding: 0 !important;
font-weight: 400;
text-align: center;
}
.topbar hr {
margin: 15px 0;
border-color:#d7d7d7;
}
.form-title h4 {
text-align: left;
}
.form-title hr {
width: 40px;
}
.topbar ul {
padding: 0;
margin: 0;
}
.box img {
width: 100%;
}
.topbar span {
padding:0 4px;
}
.topbar i {
padding-right: 3px;
}
.topbar a {
color:#fff;
}
.social i {
font-size: 16px;
}
.social {
margin-right: 3px;
}
.topbar p {
color:#ffffff;
padding:0;
margin:0;
}
.header {
background-color: #fff;
position: relative;
display: block;
}
.topbar.topbar-transparent {
position: absolute;
left: 0;
right: 0;
width: 100%;
background-color:rgba(0,0,0,0.7) !important;
}
.transparent-header {
position: absolute;
left: 0;
right: 0;
top:60px;
width: 100%;
background-color: transparent;
}
.transparent-header .navbar-default .navbar-nav > li {
border-right:2px solid rgba(255,255,255,0) !important;
}
.transparent-header.affix {
background-color: #ffffff !important;
}
.transparent-header .navbar-default {
background-color: transparent !important;
}
.ttmenu {
position: relative;
display: block;
z-index: 199;
}
.ttmenu .navbar-default .navbar-toggle {
background: #494949 none repeat scroll 0 0 !important;
border-color: #111;
color: #fff !important;
margin-top: 8px;
padding: 0 15px;
}
.navbar-toggle .fa {
background-color: transparent !important;
color:#4949494 !important;
}
.ttmenu .navbar-default {
border-radius: 0;
padding-top: 35px;
padding-bottom: 15px;
background:#ffffff;
}
.nav,
.navbar,
.navbar-nav {
margin-bottom: 0 !important;
}
.nav > li > a {
padding-left: 10px;
font-weight: 500;
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: -0.2px !important;
padding-right: 10px;
}
.ttmenu .navbar-default .dropdown-menu {
border:0 !important;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
font-size: 15px;
outline: 0;
letter-spacing: 0;
padding: 7px 15px;
text-transform: none;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.dropdown-menu > li > a,
.ttmenu-content .box li a {
font-size:13px;
}
.dropdown-menu > li > a:hover,
.ttmenu-content .box li a:hover {
opacity: 0.8
}
.ttmenu .navbar-default .dropdown-menu,
.ttmenu .navbar-default .dropdown-menu li a {
color:#fff;
}
.ttmenu .navbar-default .navbar-nav > li > .dropdown-menu {
margin-top: 0;
}
.navbar-default .dropdown-menu li,
.ttmenu-content .box li {
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.ttmenu-content .box li {
padding:6px 10px 6px 10px !important;
}
.navbar-default .navbar-nav > li > a:hover {
opacity: 0.8;
}
.navbar-default .navbar-nav > li > a {
background-color: transparent !important;
}
.navbar-default .navbar-nav > li {
border-right:2px solid rgba(255,255,255,0.2) !important;
}
.navbar-default .navbar-nav > li:last-child {
border-right:0 solid rgb(255,175,75) !important;
}
.dropme::after {
color:#494949;
font-size: 16px;
}
.ttmenu .navbar-brand {
float: left;
margin-right: 0px;
padding: 0 30px 0 0;
position: relative;
text-align: center;
top: 3px;
width: auto;
}
.ttmenu {
position: relative;
z-index: 1;
overflow: visible !important;
}
.navbar-default .navbar-nav > li > a {
color:#363a47 !important;
font-weight: 400;
}
.navbar-right {
text-transform: uppercase !important;
}
.navbar-right i {
font-size: 15px;
padding-right: 5px !important;
vertical-align: initial;
}
.nav > li > a.btn {
margin-top: -2px;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
padding:6px 20px;
text-transform: none !important;
font-size: 14px;
font-weight: 600;
color:#fff !important;
}
.ttmenu {
z-index: 1000;
}
/* ==================================================================
SLIDER
================================================================== */
.boxedcontainer {
max-width: 1170px;
margin:auto;
padding:0px 30px;
}
.tp-banner-container{
width:100%;
position:relative;
padding:0;
z-index: 0;
}
.tp-banner{
width:100%;
position:relative;
}
.tp-banner-fullscreen-container {
width:100%;
position:relative;
padding:0;
}
.tp-bannertimer {
display: none;
}
.lightcolor {
color:#ffffff !important;
}
.slider_layer_05 {
color:#363a47;
font-size: 31px;
padding:0;
width: 80px;
height: 80px;
line-height: 80px;
border-radius: 100%;
background-color: rgba(255,255,255,0.8);
}
.slider_layer_01 {
font-weight: 400;
color:#363a47;
font-size: 34px;
padding:7px 60px;
background-color: rgba(255,255,255,0.8);
}
.slider_layer_02 {
color:#363a47;
font-size: 16px;
font-family: "Droid Serif",Georgia,"Times New Roman",serif;
font-style: italic;
line-height: 1.5;
}
.slider_layer_04 {
color:#363a47;
font-size: 25px;
font-family: "Roboto",Georgia,"Times New Roman",serif;
line-height: 1.5;
text-transform: uppercase;
}
.slider_layer_03 {
color:rgba(255,255,255,0.8);
font-size: 66px;
line-height: 1.5;
}
.tp-caption .btn {
font-size: 14px;
font-weight: bold;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
padding: 9px 30px !important;
}
/* ==================================================================
SECTIONS
================================================================== */
.teacher-skills p {
padding:0;
color:#363a47;
font-weight: 500;
margin-top: 10px;
}
.teacher-skills .progress {
height: 6px;
}
.teacher-list h4 {
font-size: 21px !important;
}
.nopaddingbottom {
padding-bottom: 0 !important;
}
.device-image img{margin:auto;width:100%;text-align:center}
.section {
padding:30px 0;
position: relative;
display: block;
}
.white {
background-color: #ffffff;
}
.grey {
background-color: #edecf0;
}
.dark {
background-color: #3f4451;
}
.why-us {
background-color: #fff;
margin-bottom: 0;
margin-top: 20px;
padding: 40px 20px 0;
}
.why-us h4 {
font-weight: 600;
margin-bottom: 0;
padding-bottom: 10px;
}
.why-us i {
margin-top: 15px;
display: inline-block;
}
.feature-list {
display: table;
}
.why-us i,
.feature-list i {
font-size: 34px;
display: block;
width: 60px;
border:1px solid #fff;
line-height: 58px;
height: 60px;
color:#ffffff;
text-align: center;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.funfactors .feature-list i {
width: auto;
max-width: 120px;
font-style: normal;
font-weight: 600;
border-radius: 0;
margin-bottom: 0;
}
.feature-list.border-radius i {
border-radius: 100px 100px 100px 100px;
-moz-border-radius: 100px 100px 100px 100px;
-webkit-border-radius: 100px 100px 100px 100px;
width: 80px;
height: 80px;
line-height: 76px;
}
.service-center .feature-list i {
margin: 0 auto 30px;
}
.service-center {
text-align: center;
}
.feature-list p {
padding-bottom: 0;
color:#a1a1a1;
}
.feature-list p strong {
font-size: 18px;
color:#363a47;
line-height: 1;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.invis {
border-color: transparent;
}
.invis1 {
border-color: transparent;
margin: 30px 0
}
.section-title {
margin-bottom: 40px;
display: block;
position: relative;
}
.section-title h4 {
font-size: 28px;
padding-bottom: 5px;
margin-bottom: 0;
font-weight: bold;
}
.button-wrapper p,
.section-title p {
font-style: italic;
font-size: 15px;
font-weight: 300;
color:#a1a1a1;
font-family: "Droid Serif",Georgia,"Times New Roman",serif;
}
.owl-custom .owl-controls {
position: relative;
right: 0;
top: auto;
width: 100%;
left: 0;
}
.owl-custom .owl-controls .owl-nav [class*="owl-"] {
background: #fff;
color: #363a47;
cursor: pointer;
display: inline-block;
font-size: 14px;
height: 25px;
line-height: 25px;
border-radius: 0;
margin: 5px 0;
padding: 0;
width: 50%;
}
.white .owl-theme .owl-controls .owl-nav [class*="owl-"] {
background: #edecf0;
}
.magnifier {
position:absolute;
top:0;
background-color: rgba(255,255,255,0.5);
left:0;
bottom:0;
right:0;
z-index: 0;
zoom: 1;
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition:all .3s ease-in-out;
-moz-transition:all .3s ease-in-out;
-ms-transition:all .3s ease-in-out;
-o-transition:all .3s ease-in-out;
transition:all .3s ease-in-out;
}
.entry:hover .magnifier {
zoom: 1;
filter: alpha(opacity=100);
opacity: 1;
}
.shopmeta span {
display: block;
}
.owhidden {
overflow: hidden;
position: relative;
display: block;
width: 100%;
height: 100%;
}
.zoom {
display:inline-block;
position: relative;
}
.zoom img {
width: 100%;
display: block;
}
.zoom img::selection {
background-color: transparent;
}
.add-w {
width: 35px;
line-height:35px;
height: 35px;
right: 10px;
left: auto;
border-radius: 100%;
top:10px;
position: absolute;
text-align: center;
}
.add-w .fa-envelope-o,
.add-w i {
color:#fff;
font-size: 11px;
}
.visible-buttons span{
color:#fff !important;
}
.visible-buttons a {
border-bottom: 0 !important;
width: 30px;
height: 30px;
margin:3px 0 !important;
line-height: 30px;
display: block;
}
.visible-buttons{
visibility: hidden;
margin: 0 auto;
opacity: 0;
position: absolute;
text-align: center;
-webkit-transition: all 0.7s ease 0s;
-moz-transition: all 0.7s ease 0s;
-ms-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
bottom:0;
right:auto;
left: 0px;
position: absolute;
text-align: center;
}
.entry:hover .visible-buttons {
opacity: 1;
bottom:120px;
visibility: visible;
}
.rating i {
color:#eabe12;
}
.rating span {
display: block;
}
.entry .badge {
position: absolute;
top:0;
left: 0;
}
.entry:hover .badge {
opacity: 0;
}
.close {
opacity: 1;
color:#222222;
}
.addw {
font-size:13px;
padding:20px 0;
}
.shop-item-title {
background-color: #fff;
z-index: 1;
padding:0 20px;
position: relative;
display: block;
overflow: hidden;
border:1px solid #f5f5f5;
}
.shop-item-list {
display: block;
padding:0;
line-height: 1.9;
z-index: 1;
margin-bottom: 0;
position: relative;
text-align: left;
}
.course-list {
margin-bottom: 30px;
}
.shop-item-list img {
width: 100%;
}
.shop-item-list .rating {
margin:0 0 20px;
}
.shop-list-desc .shopmeta {
margin-bottom: 30px;
}
.achievement-wrapper h4,
.shop-list-desc h4,
.shop-item-list h4 {
font-size: 16px;
font-weight: 600;
margin: 20px 0 10px;
line-height: 1.3 !important;
text-transform: capitalize;
padding:0;
}
.shop-item-list h4 a,
.shop-item-list h4 {
color:#363a47;
}
.badge {
border-radius: 0;
font-size: 9px;
font-weight: 300;
margin-left: 0;
margin-top: 0 !important;
vertical-align: text-top;
}
.testimonial {
position: relative;
display: block;
padding: 0 20px;
}
.testimonial p {
padding-bottom: 0;
margin-bottom: 0;
}
.testimonial:after {
font-family: 'FontAwesome';
content: "\f10e";
padding-right:5px;
right:0;
position:absolute;
top:0px;
font-size:400%;
opacity: 0.1; -moz-opacity: 0.1; filter: alpha(opacity=10);
}
.testimonial h4 {
font-size:16px;
padding-right:5px;
font-weight: 600;
}
.first {clear:both}
.last{margin-right:0}
.button-wrapper {
margin-top: 40px;
}
.testimonial small {
font-size:11px;
font-style:italic;
color:#798184;
padding:0 10px;
font-family: 'Droid Serif', Georgia, "Times New Roman", serif !important;
font-weight:300;
}
.testimonial img {
margin-right:15px;
width:75px;
border:0 solid #ffffff !important;
height:75px;
margin-top:5px;
border: medium none;
display: inline-block;
image-rendering: optimizequality;
max-width: 100%;
}
.testimonial-meta {
overflow: hidden;
}
.button-wrapper .btn {
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
font-size: 14px;
font-weight: 600;
padding: 10px 30px;
}
.button-wrapper .btn i {
font-size: 16px;
margin-right: 10px;
}
.accordion-toggle-2 .panel-heading {
background-color: #edecf0 !important;
border-radius: 0 !important;
padding: 10px 15px;
}
.grey .accordion-toggle-2 .panel-heading {
background-color:#ffffff !important;
}
.accordion-toggle-2 .panel,
.accordion-toggle-2 .panel-heading {
background-color: #fff;
border-color: #dadadc;
border-bottom: 1px solid #dadadc;
}
.accordion-toggle-2 .panel-heading h3 i {
background-color: #202830 !important;
color: #ffffff;
height: 20px;
line-height: 20px;
font-size: 11px;
position: absolute;
right: -10px;
top:1px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin-right: 10px;
text-align: center;
width: 21px;
vertical-align: text-top;
}
.accordion-toggle-2 .panel-heading h3 {
display: inline-block;
font-size: 13px;
text-transform: uppercase;
font-weight: bold;
margin: 0;
width: 100%;
padding: 0;
}
.accordion-toggle-2 .panel-group .panel + .panel {
margin:-2px 0;
}
.accordion-toggle-2 .panel-title {
line-height: 16px;
}
.accordion-toggle-2 .panel {
margin-bottom: 10px !important;
border-color: #f5f5f5;
border-radius: 0 !important;
box-shadow: none;
}
.accordion-toggle-2 p {
padding-bottom: 0;
}
.team {
z-index: 1;
cursor: pointer;
position: relative;
}
.team-hover-content span {
margin:10px 0;
display: block;
font-style: italic;
}
.team-hover-content h5 {
font-size: 18px;
text-transform: uppercase;
font-weight: bold;
line-height: 1 !important;
margin-bottom: 0;
letter-spacing: 0;
padding-bottom: 0;
color:#363a47 !important;
}
.team-hover-content p {
font-size:13px;
margin-bottom: 0;
}
.team-hover-content {
position: absolute;
bottom: 0px;
width: 100%;
padding: 50px 30px 0;
border:2px solid #dedde1;
opacity: 0;
z-index: 1;
top:0%;
text-align: center;
text-decoration: none;
background-color: #ffffff;
background-color: rgba(255,255,255,1);
border-radius: 0;
}
.team img {
z-index: 1;
width: 100%;
}
.team:hover .team-hover-content {
opacity: 1;
position: absolute;
-webkit-transition:all 0.7s ease-in-out;
-moz-transition:all 0.7s ease-in-out;
-o-transition:all 0.7s ease-in-out;
transition:all 0.7s ease-in-out;
}
.tab-content {
border-bottom:1px solid #dedde1;
border-right:1px solid #dedde1;
border-left:1px solid #dedde1;
padding:30px;
}
.nav-tabs > li > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #edecf0;
border-color: #ddd #ddd transparent;
border-image: none;
border-radius: 0 !important;
font-size: 14px;
padding: 15px 30px;
border-style: solid;
border-width: 1px;
color: #363a47 !important;
cursor: default;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
background-color: #ffffff !important;
}
.notfound h3 {
font-size: 120px;
padding-bottom: 10px;
margin-bottom: 0;
line-height: 1 !important;
font-weight: bold;
}
.notfound p {
font-style: italic;
font-size: 18px;
line-height: 2
}
/* ==================================================================
FOOTER
================================================================== */
.copyright {
background-color: #363b48;
padding:20px 0 10px;
display: block;
position: relative;
text-transform: capitalize;
}
.copyright a,
.copyright p {
color:#ffffff;
padding:0 !important;
margin:0 !important;
}
.copyright a {
font-weight: 600 !important;
}
.widget-title {
display: block;
position: relative;
margin-bottom: 20px;
}
.widget-title h4 {
font-weight: 600;
font-size: 21px;
}
.footer .widget-title h4 {
color:#ffffff;
}
.content-widget .widget-title {
margin-bottom: 20px;
}
.content-widget .widget-title h4 {
padding-top: 0;
margin-top: 0;
font-size: 18px;
font-weight: 500;
}
.content-widget hr,
.footer hr {
border-color: #999eab;
margin:0;
border-width: 2px;
width: 45px;
}
.footer p {
padding-bottom: 10px;
color:#999eab;
}
.latest-tweets p:before {
content: "\f099";
font-family: "FontAwesome";
font-size: 16px;
left: 0;
color:#999eab;
padding-right:5px;
position: relative;
top: 2px;
}
.latest-tweets {
padding: 0;
list-style: none;
}
.latest-tweets li {
display: inline-table;
padding: 0;
margin-bottom: 10px;
width: 100%;
}
.latest-tweets li p a {
margin: 0 4px;
}
.latest-tweets li p {
padding-bottom: 0;
}
.latest-tweets li span{
display: block;
color:#ffffff;
margin:0;
margin-top: 0;
font-size: 12px;
}
.contact-details li a {
color:#999eab;
text-decoration: underline !important;
}
.contact-details li {
color:#999eab;
margin-bottom: 5px;
}
.contact-details li i {
padding-right: 7px;
}
.contact-details,
.popular-courses {
list-style: none;
padding:0;
}
.popular-courses li {
display: inline-block;
}
.popular-courses li img {
background: #616673 none repeat scroll 0 0;
border: 1px solid #424754;
margin: 0 2px 2px 0;
width: 83px;
}
.feedbacks .btn {
padding:10px;
}
/* ==================================================================
PAGE & BLOG
================================================================== */
.comment-reply {
margin-left: 75px;
}
.comment-wrapper .well {
background-color: #ffffff !important;
}
.comment-wrapper h3 {
padding:0;
margin:0;
}
.time-comment a {
margin-top: -15px !important;
padding: 3px 10px !important;
}
.time-comment {
display: block;
position: relative;
margin-bottom: 10px;
}
.tags a {
padding:4px 8px;
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
}
.single-blog-wrapper .blog-desc {
padding: 40px
}
.pagination > li > a,
.pagination > li > span {
width: 40px;
padding:0;
height: 40px;
margin:0 3px;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 40px;
}
.btn {
border-radius: 4px 4px 4px 4px;
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-radius: 4px 4px 4px 4px;
text-transform: none;
font-weight: 600;
}
.callout {
border:1px solid #dedde1;
background-color: #edecf0;
padding:30px;
}
.callout i {
margin-top: 0;
color:#d1d0d4;
}
.callout .btn {
padding: 15px;
text-transform: uppercase;
}
.callout h4 {
border-right: 1px solid #d1d0d4;
padding: 0;
margin: 0;
font-weight: 400;
}
.page-title {
position: relative;
display: block;
padding:35px 0;
border-top:1px solid #dedde1;
border-bottom:1px solid #dedde1;
}
.page-title h1 {
font-size: 18px;
font-weight: 500;
padding:0;
margin:0;
}
.breadcrumb {
background-color: transparent;
border-radius: 0;
font-size: 12px;
list-style: outside none none;
margin-bottom: 0;
padding: 0;
}
.well {
background-color: #edecf0;
border-radius: 0;
padding:30px;
border:1px solid #dedde1;
}
.media img {
width: 65px;
margin-right: 10px;
}
.media .rating {
margin-bottom: 5px;
}
.media-heading {
font-size: 16px;
padding-bottom: 0;
font-weight: 600;
}
/* ==================================================================
COURSE STYLES
================================================================== */
.quiz-wrapper .lead {
padding-bottom: 0;
color:#363a47;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.progress,
.panel-footer {
box-shadow: none;
background-color: #edecf0;
}
.panel-primary {
border-color: #edecf0;
}
.course-list .shop-item-list,
#course-left-sidebar {
margin-bottom: 30px;
}
.course-instructors img {
width: 20px;
margin: 0 8px;
}
.course-prize i {
font-size: 16px;
padding:3px 2px 0;
}
.course-description small {
font-weight: 600;
margin-right: 20px;
font-size: 13px;
}
.course-description small span {
font-weight: 400;
}
.course-description .course-title {
font-size: 24px;
}
.bbp-forum-info img {
max-width: 65px;
margin:0 20px 0 0;
}
.bbp-topic-freshness-author img {
max-width: 24px;
}
.achievement-wrapper {
margin-bottom: 40px;
display: block;
}
.achievement-wrapper img {
max-width: 120px;
border:2px solid #dedde1;
padding:3px;
}
.course-meta i {
padding-right: 3px;
}
.course-meta .label-primary {
width: 25px;
font-size: 12px;
font-weight: 400;
height: 20px;
line-height: 16px;
text-align: center;
}
.label-primary:hover a,
.label-primary a:hover {
color:#ffffff !important;
}
.course-meta p {
width: 100%;
display: block;
position: relative;
}
.course-meta small {
position: absolute;
right: 0;
top:0;
}
.course-image-widget img {
width: 100%;
}
.course-meta p,
.course-meta a {
line-height: 1;
color:#ffffff;
}
.course-meta {
padding: 15px 20px 10px;
background-color: #3f4451;
margin-top: 0;
}
.course-meta.forshop {
background-color: #fff;
}
.course-meta.forshop hr {
border-color: #fff;
background-color: #fff;
}
.course-meta.forshop p {
color:#777777;
font-size: 14px;
}
.course-meta.forshop a {
color:#363a47 !important;
}
.course-meta .rating {
margin-top: 0;
padding-top: 0;
}
.course-meta .rating i {
padding: 0;
}
.course-meta p {
display: inline-block;
padding-right: 4px;
padding-bottom:0;
font-size: 13px;
}
.course-meta hr {
background: #626774;
border-color: #121724;
height: 1px;
margin-bottom: 6px;
margin-top: 6px;
}
.course-button .btn {
border-radius: 0;
padding:10px 20px;
}
.course-table .fa-check {
background-color:#92CD00;
color:#ffffff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
}
.course-table .fa-close {
background-color:#FF0000;
color:#ffffff;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
}
.other-courses img {
margin: 0;
width: auto;
max-width: 400px;
float:right;
}
.filters-dropdown{
margin-bottom: 30px;
display: block;
position: relative;
}
#filters ul {
padding:0 0 0 10px;
}
#filters li {
list-style: none;
display: inline-block;
font-weight: 500;
margin:0 10px 0 0;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
}
.portfolio .shop-item-list {
margin-bottom: 0 !important
}
.portfolio .item {
width:25%;
padding:10px;
margin:0 !important;
}
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
transition-property: transform, opacity;
}
.course-table i,
.course-table a {
color:#363a47;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
color:#363a47;
}
/* ==================================================================
LOGIN PAGE
================================================================== */
.login-wrapper {
padding-top: 100px;
}
.logo-center img {
margin: 20px auto;
display: block;
max-width: 240px;
text-align: center;
}
.panel-login {
border-radius: 0;
margin-top: 8%;
padding:20px;
display: block;
position: relative;
}
.panel-login>.panel-heading {
color: #00415d;
background-color: transparent;
border-color: #fff;
text-align:center;
}
.panel-login>.panel-heading a{
text-decoration: none;
color: #666;
font-weight: bold;
font-size: 15px;
-webkit-transition: all 0.1s linear;
-moz-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.panel-login>.panel-heading a.active{
color: #029f5b;
}
.panel-login>.panel-heading hr{
margin-top: 10px;
margin-bottom: 0px;
clear: both;
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
}
.edit-profile .form-control,
.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] {
height: 45px;
border: 1px solid #ddd;
background-color: #fff;
font-size: 16px;
-webkit-transition: all 0.1s linear;
-moz-transition: all 0.1s linear;
transition: all 0.1s linear;
}
.edit-profile .form-control,
.panel-login .form-control {
border-radius: 0;
font-size: 14px !important;
box-shadow: none;
}
.panel-login input:hover,
.panel-login input:focus {
outline:none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-color: #ccc;
}
.panel-login .btn-default {
outline: none;
color: #fff;
font-size: 14px !important;
width: 100%;
display: block;
height: auto;
font-weight: 600;
padding: 14px 0;
text-transform: none;
}
.forgot-password {
text-decoration: underline !important;
color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
text-decoration: underline;
color: #666;
}
.edit-profile label {
font-weight:600;
margin-bottom: 10px;
display: block;
}
.edit-profile p {
padding-bottom: 0;
}
.edit-profile textarea {
height: 150px !important;
}
.question-answer p {
padding-left: 40px;
}
.question-answer h4 {
padding-left: 40px;
font-weight: 600;
}
.question-answer i {
margin-top: 4px;
font-size: 24px;
display: inline-block;
position: relative;
}
/* ==================================================================
BX SLIDER
================================================================== */
.myimg {
padding: 0;
top: 0;
left: 0;
bottom:0;
background:url(upload/about.jpg); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
position: absolute;
}
.myimg2 {
padding: 0;
top: 0;
left: 0;
bottom:0;
background:url(upload/about_03.png); no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
position: absolute;
}
.bxslider h3 {
font-size:30px;
padding-bottom: 0;
margin-bottom:15px;
line-height: 1;
font-weight: 400;
text-transform: uppercase;
}
.bxslider h3 {
font-size:34px;
}
.bxslider .lead {
font-size:16px;
padding-bottom: 0;
margin-bottom: 0;
}
.bxslider .big-title {
margin-left: 0;
}
.bxslider li {
padding:0 0 40px;
}
.bxslider p,
.bxslider .lead {
color:#a1a1a1;
}
.bxslider h3 span,
.big-title h3 span {
font-weight: 900;
}
.textrotate {
padding:0 40px 40px;
}
.bx-wrapper .bx-controls-direction a {
display: none;
}
/* ==================================================================
PRICING TABLE
================================================================== */
.my_planHeader {
text-align: center;
color: white;
padding-top:2em;
padding-bottom:2em;
}
.my_planTitle {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 24px;
}
.my_planPrice {
font-size: 15px;
line-height: 1;
margin: 0 0 20px !important;
padding: 0 !important;
}
@media (max-width: 768px) {
.my_planTitle {
font-size:small;
}
}
@media (max-width: 768px) {
.my_feature {
text-align: center
}
}
.my_featureRow {
margin-top: 0.2em;
margin-bottom: 0.2em;
border: 0.1em solid rgb(200, 200, 200);
}
/* --- Plan 1 --------------------------- */
.my_planHeader.my_plan2,
.my_planHeader.my_plan1 {
background: #5ba5af !important;
border-bottom: thick solid #3a848e !important;
}
/* --- Plan 2 --------------------------- */
.my_planHeader.my_plan2 {
background: #5ba5af;
border-bottom: thick solid rgb(108, 131, 62);
}
/* --- Plan 3 --------------------------- */
.my_plan3 {
background: rgba(227,75,17, 0.05);
}
.my_planHeader.my_plan3 {
background: #e34b11;
border-bottom: thick solid #c32b00;
}
.my_planFeature {
padding:10px 0;
text-align: center;
}
.my_planFeature i.my_check {
color: #92cd00;
}
.my_planFeature i.no_check {
color: #ff0000;
}
.my_feature p {
padding:10px 0;
margin:0;
}
/* ==================================================================
CAROUSEL
================================================================== */
.carousel {
position: relative;
}
.carousel-inner {
overflow: hidden;
position: relative;
width: 100%;
}
.carousel-inner > .item {
display: none;
position: relative;
transition: left 0.6s ease-in-out 0s;
}
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
line-height: 1;
}
@media not all, not all {
.carousel-inner > .item {
backface-visibility: hidden;
transition: transform 0.6s ease-in-out 0s;
}
.carousel-inner > .item.next, .carousel-inner > .item.active.right {
left: 0;
transform: translate3d(100%, 0px, 0px);
}
.carousel-inner > .item.prev, .carousel-inner > .item.active.left {
left: 0;
transform: translate3d(-100%, 0px, 0px);
}
.carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
left: 0;
transform: translate3d(0px, 0px, 0px);
}
}
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next, .carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left, .carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
bottom: 0;
color: #ffffff;
font-size: 24px;
left: 0;
position: absolute;
text-align: center;
top: 0;
}
.carousel-control.right {
left: auto;
right: 0;
}
.carousel-control:hover, .carousel-control:focus {
color: #ffffff;
opacity: 0.9;
outline: 0 none;
text-decoration: none;
}
.carousel-control .fa {
background-color: rgba(0, 0, 0, 0.9);
font-size: 24px;
padding: 0.7em;
position: absolute;
top: 50%;
transition: all 0.35s ease-in-out 0s;
z-index: 5;
}
.carousel-control .fa:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.carousel-control .fa-angle-left {
left: 0;
}
.carousel-control .fa-angle-right {
right: 0;
}
.carousel-control .fa-angle-left, .carousel-control .fa-angle-right {
transform: translate(0px, -50%);
}
.carousel-indicators {
/* background-color: rgba(0, 0, 0, 0.4);
border-radius: 20em;
line-height: 1;
list-style: outside none none;
padding: 0.3em 0.6em;
position: absolute;
right: 20px;
text-align: center;
top: 20px;
z-index: 15;*/
}
.carousel-control.right,
.carousel-control.left {
background-image: none;
}
.carousel-indicators li {
background-color: rgba(0, 0, 0, 0);
border: 1px solid #ffffff;
border-radius: 50%;
cursor: pointer;
display: inline-block;
height: 9px;
text-indent: -999px;
width: 9px;
}
.carousel-indicators li + li {
margin-left: 3px;
}
.carousel-indicators .active {
background-color: #ffffff;
}
.carousel-caption {
background-color: rgba(0, 0, 0, 0.9);
bottom: 20px;
color: #ffffff;
display: none;
left: 20px;
max-width: 100%;
padding: 2em;
position: absolute;
right: 20px;
text-align: left;
z-index: 10;
}
@media screen and (min-width: 768px) {
.carousel-caption {
display: block;
}
}
/* ==================================================================
CONTACT PAGE
================================================================== */
#message {
display: block; position:relative; text-align:left; padding:0 20px;
}
#map{
height:450px;
width:100%
}
#map img{
max-width:inherit
}
.map{
position:relative
}
.map .row .col-lg-4{
float:right;
margin-top:-450px;
z-index:9
}
.contact-icon {
margin:20px 0;
overflow:hidden;
}
.map .row{
position:relative
}
.infobox img {
width:100% !important;
}
.map .searchmodule {
padding:18px 10px
}
.infobox {
display: inline-block;
padding: 5px;
position: relative;
width: 270px;
}
.infobox img {
width:80px !important;
padding-right:10px
}
.infobox .title {
font-size:13px;
font-weight:bold;
margin-top:0;
margin-bottom:0;
text-transform:uppercase;
padding-bottom:5px;
}
.infobox .title a {
font-weight:bold;
}
.darkskin strong,
.darkskin h4 {
color:#ffffff !important;
}
.overlay {
background-color: rgba(0, 0, 0, 0.7);
bottom: 0;
height: 100%;
left: 0;
padding: 60px 0;
position: absolute;
right: 0;
}
.overlay.green-overlay {
background-color: rgba(255,255,255,0.9);
}
.parallax {
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-repeat:no-repeat;
/* custom background-position */
background-position:50% 50%;
/* ie8- graceful degradation */
background-position:50% 50%\9 !important;
display: block;
width: 100%;
height: 100%;
min-height: 100%;
position: relative;
overflow-x: hidden;
overflow-y: hidden;
vertical-align: sub;
z-index: 99;
}
/* ==================================================================
BLOG
================================================================== */
.blog-widget .blog-title h2 a,
.blog-widget .blog-title h2 {
font-size: 18px;
line-height: 24px;
}
.blog-widget .blog-wrapper {
border-bottom: 1px solid #dedde1;
}
.blog-widget .blog-desc {
padding: 20px;
}
.blog-widget .blog-desc p {
padding-bottom: 10px;
}
.blog-widget .blog-desc, .blog-title {
padding:25px 20px;
}
.second-bread {
padding: 0 40px;
}
.second-bread .breadcrumb {
margin-top: 25px;
}
.second-bread h1 {
font-weight: 500;
font-size: 21px;
}
.comment-wrapper h3 {
padding: 20px;
font-weight: 21px;
font-weight: 600;
text-align: center;
}
.couponform .form-control,
.contact_form .form-control,
.commentform .form-control,
.searchform .form-control,
.newsletter .form-control {
box-shadow: none;
font-size: 13px;
font-style: italic;
border-radius: 0;
height: 45px;
margin-bottom: 10px;
}
.contact_form textarea {
height: 155px !important
}
.commentform textarea {
height: 130px !important
}
.searchform .form-control {
margin-bottom: 0;
}
.newsletter p {
padding-bottom: 0;
}
#sidebar .widget {
margin-bottom: 40px;
background-color: #fff;
padding:30px;
border-left: 1px solid #dedde1;
border-right: 1px solid #dedde1;
border-bottom: 5px solid #dedde1;
border-top: 1px solid #dedde1;
}
#sidebar .widget-title h4 {
font-size: 18px;
}
#sidebar .widget-title hr {
width: 45px;
border-width: 3px;
border-color: #111;
margin:0;
}
#sidebar .latest-tweets li span {
color:#363a47;
}
#sidebar .popular-courses li img {
background: #fff;
border: 1px solid #969ba8;
width: 94px;
}
#sidebar .widget-title {
margin-bottom: 30px;
}
.blog-desc div.post-date {
float: left;
margin-right: 20px;
margin-top: 8px;
text-align: center;
}
.blog-desc div.post-date span.month {
color: #ffffff;
font-size: 0.9em;
padding: 0 10px 2px;
}
.blog-desc div.post-date span.day {
display: block;
font-size: 16px;
font-weight: bold;
padding: 10px;
}
.blog-wrapper {
border-left: 1px solid #dedde1;
border-right: 1px solid #dedde1;
border-top: 1px solid #dedde1;
background-color: #ffffff;
position: relative;
}
.category_title {
margin-bottom: 10px;
display: block;
text-transform: uppercase;
}
.blog-desc p {
padding-bottom: 0;
}
.blog-desc,
.blog-title {
padding:30px 40px;
}
.readmore {
/*
color:#363a47;
margin-left: 61px;
font-size: 15px;
text-transform: uppercase;
font-weight: bold;
*/
}
.blog-title h2 a,
.blog-title h2 {
font-size: 30px;
padding-bottom: 0;
margin-bottom: 0;
margin-top: 0;
color:#363a47;
font-weight: 700;
line-height: 36px;
}
.post-meta i {
padding-right: 2px;
}
.post-meta span {
margin-right: 10px;
font-size: 13px;
}
.post-meta {
margin-top: 10px;
}
.post-meta a,
.post-meta span {
color:#bbbabe;
}
/* ==================================================================
SHOP
================================================================== */
.shop-listing p {
padding-bottom: 0;
font-size: 13px;
}
.shop-button .btn {
border-radius: 0 !important;
z-index: 1000;
position: relative;
}
.my_featureRow {
background-color:#ffffff;
}
.total-price p {
padding:0;
margin:0;
line-height: 1;
}
.shop-cart .table img {
max-width: 60px;
margin:0 10px;
}
.shop-cart .table > thead > tr > th,
.shop-cart .table > tbody > tr > th,
.shop-cart .table > tfoot > tr > th,
.shop-cart .table > thead > tr > td,
.shop-cart .table > tbody > tr > td,
.shop-cart .table > tfoot > tr > td {
border-top: 1px solid #edecf0;
line-height: 1.42857;
padding: 15px;
}
.shop-cart tbody tr a {
text-decoration: underline !important;
}
/* ==================================================================
SIDEBAR STYLE
================================================================== */
#sidebar-fix {
width: inherit;
min-width: 280px;
max-width: 280px;
background-color:#fff;
float: left;
height:100%;
bottom:0;
left: :0;
overflow-y:auto;
z-index: 9991;
overflow-x:hidden;
position: fixed;
top: 0;
padding-top: 4em;
height: 100%;
-webkit-overflow-scrolling:touch;
overflow:auto;
text-align: left;
}
#main {
height:100%;
overflow:auto;
margin-left:280px;
}
.side-copyright {
position: absolute;
bottom:0;
padding-left: 40px;
text-align: left;
}
.sidebar-nav li.active {
border-right: 4px solid #ddd;
}
.sidebar-nav {
margin: 15px 0 30px;
padding: 0;
list-style: none;
}
.sidebar-nav li {
margin:0;
padding:0 20px;
line-height: 40px;
}
.side-logo {
padding:1em 0 3em;
}
.side-logo img {
display: block;
margin:0 auto;
}
.sidebar-nav li a {
color:#363a47;
text-transform: uppercase;
font-family: "Roboto",sans-serif;
font-size: 15px;
letter-spacing: 0;
outline: 0 none;
text-transform: none;
}
.sidebar-nav li:first-child {
border-top: 1px solid #ecebef;
}
.sidebar-nav li {
padding:4px 40px;
border-bottom: 1px solid #ecebef;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.mobile-menu {
z-index: 9999;
display: block;
position: fixed;
top:0;
left: 0;
display: none;
line-height: 0;
background-color: #ffffff;
}
.mobile-menu .btn {
border-radius: 0 !important;
font-size: 12px !important;
}
@media (max-width: 992px) {
#sidebar-fix {
position: relative;
box-shadow: none;
}
.mobile-menu{
display: normal!important;
}
}
@media screen and (max-width: 1180px) {
.row-offcanvas {
position: relative;
-webkit-transition: all 0.25s ease-out;
-moz-transition: all 0.25s ease-out;
transition: all 0.25s ease-out;
width:calc(100% + 280px);
}
.row-offcanvas-left {
left: -280px;
}
.row-offcanvas-left.active {
left: 0;
}
.sidebar-offcanvas {
position: absolute;
top: 0;
}
}
/* ==================================================================
COLORS
================================================================== */
mark,
.comment-wrapper h3,
.blog-desc div.post-date span.month,
.pagination > li > a,
.pagination > li > span,
.btn-primary {
background-color:#5ba5af;
color:#ffffff !important;
border-color:#5ba5af;
}
.btn-primary.disabled, .btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary.focus[disabled],
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active,
.login,
.pagination > li > a:hover,
.pagination > li > span:hover,
.btn-primary:focus,
.btn-primary:hover {
background-color:#428992;
border-color:#5db9c5;
}
.blue,
.topbar {
background-color:#5ba5af !important;
}
.why-us i,
.tags a,
.btn-default {
border-color: #e34b11 !important;
background-color: #e34b11 !important;
color:#ffffff !important;
}
.blog-desc div.post-date span.day,
.visible-buttons a:hover,
.owl-custom .owl-controls .owl-nav [class*="owl-"]:hover,
.nav > li > a.btn {
border-color: #e34b11 !important;
background-color: #e34b11 !important;
color:#ffffff !important;
}
.progress-bar,
.orange,
.ttmenu .navbar-default .dropdown-menu {
background-color: #e34b11 !important;
}
.btn-default.disabled, .btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default.focus[disabled],
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default.active,
.nav > li > a.btn:hover,
.btn-default:focus,
.btn-default:hover {
background-color: #c42c00 !important;
border-color: #fd652b !important
}
.course-meta .label-primary,
.feature-list i {
background-color: #e34b11;
border-color: #fd652b;
}
.visible-buttons a,
.ttmenu .img-thumbnail {
background-color: #fd652b;
border-color: #c42c00;
}
.ttmenu hr {
background-color: #fd652b;
border-color: #c42c00;
height: 2px;
}
.sidebar-nav li.active {
border-right-color: #fd652b;
}
.form-control:focus {
border-color: #c42c00;
}
.shop-cart tbody .remove a,
.category_title,
.callout a,
.question-answer i,
.panel-login>.panel-heading a.active,
.course-description small a,
a:focus,
a:hover,
.sidebar-nav li:hover a,
.sidebar-nav li:focus a,
.sidebar-nav li.active a,
.course-description small span,
.slider_layer_01 i,
.slider_layer_05,
.latest-tweets p a,
.shop-item-list h4 a:hover,
.shop-item-list h4:hover {
color:#e34b11;
}
.nav > li > a.active,
.nav > li > a:hover {
background-color: #e34b11 !important;
opacity: 1 !important;
color:#ffffff !important;
}
/* ==================================================================
MENU BG
================================================================== */
.ttmenu .navbar-default .dropdown-menu.menu-bg {
background-image: url(upload/menu_bg.png) !important;
background-position: right bottom;
background-repeat: no-repeat;
background-size: auto auto;
}
.ttmenu .navbar-default .dropdown-menu.wbg {
background-color: #ffffff !important;
}
.ttmenu .navbar-default .dropdown-menu.wbg li a {
color:#363a47;
}
.ttmenu .navbar-default .dropdown-menu.wbg li {
border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}
.ttmenu .navbar-default .dropdown-menu.wbg li:last-child {
border-bottom: 0 solid rgba(0, 0, 0, 0.05)
}
/* ==================================================================
RESPONSIVENESS
================================================================== */
@media (max-width: 768px) {
.affix {
position: relative !important;
}
.slider_layer_05 {
background-color: transparent;
}
.bxslider li,
.textrotate {
padding:0 !important;
}
.callout h4 {
border-right: 0;
font-size: 14px;
}
.callout .btn {
margin-top: 10px;
}
.topbar .text-left,
.topbar .text-right {
text-align: center !important;
font-size: 12px;
}
.ttmenu .navbar-default .navbar-toggle {
margin-top: 0;
}
}
/* ----------------------------------------------------
OTHERS
------------------------------------------------------- */
#loader {
overflow-x: hidden;
overflow-y: hidden;
vertical-align: middle;
background-color: #ffffff;
position:fixed;
display: table;
width: 100%;
top:0;
height: 100%;
min-height: 100%;
z-index:99999;
}
.loader-container {
position: relative;
display: table-cell;
vertical-align: middle;
z-index: 12;
text-align:center;
}
.loader {
margin-top: 20px;
vertical-align: top;
}
/* ----------------------------------------------------
ADD YOUR CUSTOM STYLES HERE...
------------------------------------------------------- */ | 0.266548 | 0.083928 |
body{
min-width: 1450px;
}
.cInfo_warp{
width: 1180px;
margin: 30px auto;
}
.cInfo_cell_title{
height: 60px;
line-height: 60px;
padding: 0 20px;
border-bottom: solid 1px #e5e5e5;
color: #333;
}
.cInfo_cell_title .showCon{
font-size: 12px;
float: right;
}
.cInfo_cell_title .showCon i.icon-xiajiantou{
display: inline-block;
font-size: 12px;
margin-left: 10px;
transition: transform .3s;
}
.cInfo_cell_title .open i.icon-xiajiantou{
transform: rotate(180deg);
}
.cInfo_cell_con{
padding: 20px;
max-height: 1000px;
border-bottom: solid 1px #e5e5e5;
transition: max-height .3s ease;
overflow: hidden;
}
.cInfo_cell_line{
height: 60px;
line-height: 60px;
}
.cInfo_cell_line label{
display: inline-block;
width: 200px;
color: #999;
text-align: right;
float: left;
}
.cInfo_cell_line .cInfo_cell_block{
width: 900px;
float: left;
}
.cInfo_cell_line .cInfo_cell_tips{
height: 20px;
line-height: 20px;
color: #999;
}
.cInfo_cell_line .cInfo_cell_tips i.icon-i{
display: inline-block;
width: 18px;
height: 18px;
line-height: 18px;
border-radius: 18px;
margin-right: 6px;
vertical-align: 2px;
background-color: #50B2F6;
font-size: 12px;
color: #fff;
text-align: center;
}
.cInfo_cell_line .logoUpload{
position: relative;
display: inline-block;
width: 100px;
height: 40px;
line-height: 40px;
margin-right: 6px;
border-radius: 4px;
background-color: #00B27E;
color: #fff;
text-align: center;
}
.cInfo_cell_line .logoUpload:hover{
background-color: #00A776;
color: #fff;
}
.logo_img .img_default{
position: relative;
width: 120px;
margin-right: 20px;
float: left;
background-color: #fff;
border: solid 1px #e5e5e5;
}
.logo_img .img_default img{
width: 120px;
height: 120px;
object-fit: scale-down;
}
.cInfo_cell_block textarea{
width: 800px;
height: 280px;
}
.cInfo_cell_line .textNumCon{
height: auto;
line-height: 1;
}
.cInfo_btn_clear,.cInfo_btn_save{
display: inline-block;
width: 100px;
height: 38px;
line-height: 38px;
margin-top: 30px;
margin-bottom: 80px;
border-radius: 4px;
font-size: 16px;
text-align: center;
float: right;
}
.cInfo_btn_clear{
margin-right: 10px;
border: solid 1px #ccc;
background-color: #fff;
}
.cInfo_btn_clear:hover{
border: solid 1px #FC6940;
}
.cInfo_btn_save{
border: solid 1px #FC6940;
background-color: #FC6940;
color: #fff;
}
.cInfo_btn_save:hover{
background-color: #F3623A;
border-color: #F3623A;
color: #fff;
} | client/purchase/pages/purchaseBack/seller-companyInfo/page.css | body{
min-width: 1450px;
}
.cInfo_warp{
width: 1180px;
margin: 30px auto;
}
.cInfo_cell_title{
height: 60px;
line-height: 60px;
padding: 0 20px;
border-bottom: solid 1px #e5e5e5;
color: #333;
}
.cInfo_cell_title .showCon{
font-size: 12px;
float: right;
}
.cInfo_cell_title .showCon i.icon-xiajiantou{
display: inline-block;
font-size: 12px;
margin-left: 10px;
transition: transform .3s;
}
.cInfo_cell_title .open i.icon-xiajiantou{
transform: rotate(180deg);
}
.cInfo_cell_con{
padding: 20px;
max-height: 1000px;
border-bottom: solid 1px #e5e5e5;
transition: max-height .3s ease;
overflow: hidden;
}
.cInfo_cell_line{
height: 60px;
line-height: 60px;
}
.cInfo_cell_line label{
display: inline-block;
width: 200px;
color: #999;
text-align: right;
float: left;
}
.cInfo_cell_line .cInfo_cell_block{
width: 900px;
float: left;
}
.cInfo_cell_line .cInfo_cell_tips{
height: 20px;
line-height: 20px;
color: #999;
}
.cInfo_cell_line .cInfo_cell_tips i.icon-i{
display: inline-block;
width: 18px;
height: 18px;
line-height: 18px;
border-radius: 18px;
margin-right: 6px;
vertical-align: 2px;
background-color: #50B2F6;
font-size: 12px;
color: #fff;
text-align: center;
}
.cInfo_cell_line .logoUpload{
position: relative;
display: inline-block;
width: 100px;
height: 40px;
line-height: 40px;
margin-right: 6px;
border-radius: 4px;
background-color: #00B27E;
color: #fff;
text-align: center;
}
.cInfo_cell_line .logoUpload:hover{
background-color: #00A776;
color: #fff;
}
.logo_img .img_default{
position: relative;
width: 120px;
margin-right: 20px;
float: left;
background-color: #fff;
border: solid 1px #e5e5e5;
}
.logo_img .img_default img{
width: 120px;
height: 120px;
object-fit: scale-down;
}
.cInfo_cell_block textarea{
width: 800px;
height: 280px;
}
.cInfo_cell_line .textNumCon{
height: auto;
line-height: 1;
}
.cInfo_btn_clear,.cInfo_btn_save{
display: inline-block;
width: 100px;
height: 38px;
line-height: 38px;
margin-top: 30px;
margin-bottom: 80px;
border-radius: 4px;
font-size: 16px;
text-align: center;
float: right;
}
.cInfo_btn_clear{
margin-right: 10px;
border: solid 1px #ccc;
background-color: #fff;
}
.cInfo_btn_clear:hover{
border: solid 1px #FC6940;
}
.cInfo_btn_save{
border: solid 1px #FC6940;
background-color: #FC6940;
color: #fff;
}
.cInfo_btn_save:hover{
background-color: #F3623A;
border-color: #F3623A;
color: #fff;
} | 0.415492 | 0.095392 |
html,
body {
height: 100%;
}
body {
margin: 0;
}
.centered {
top: 50%;
bottom: auto;
transform: translateY(-50%);
left: 15%;
position: absolute;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
@media screen and (min-width: 768px){
.centered {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
}
.carousel {
position: relative;
width: 100%;
height: 38vw;
overflow: hidden;
}
.carousel .item {
position: absolute;
width: 100%;
text-align: center;
}
/* animations */
.carousel .slide-in {
/* -webkit-transform: translate3d(-90%, 0px, 0px);
-moz-transform: translate3d(-90%, 0px, 0px);
-ms-transform: translate3d(-90%, 0px, 0px);
-o-transform: translate(-90%, 0px, 0px);
transform: translate3d(-90%, 0px, 0px); */
-webkit-transition: -webkit-transform 0.5s ease-out;
-moz-transition: -moz-transform 0.5s ease-out;
-ms-transition: -ms-transform 0.5s ease-out;
-o-transition: -o-transform 0.5s ease-out;
transition: transform 0.5s ease-out;
z-index: 1;
}
.carousel .slide-in:target,
.carousel .slide-in:focus {
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
z-index: 2;
}
/*
.carousel .slide-in:target ~ .slide-in {
-webkit-transform: translate3d(90%, 0px, 0px);
-moz-transform: translate3d(90%, 0px, 0px);
-ms-transform: translate3d(90%, 0px, 0px);
-o-transform: translate(90%, 0px, 0px);
transform: translate3d(90%, 0px, 0px);
} */
.carousel .controls1 {
position: absolute;
text-align: center;
z-index: 5;
width: 100%;
top: 33vw;
}
.carousel .controls1 .btn1 {
cursor: pointer;
height: 16px;
width: 16px;
margin: 0 2px;
background-color: rgba(182, 24, 24, 0);
border-radius: 50%;
border: 1px solid rgb(255, 255, 255);
display: inline-block;
transition: background-color 0.6s ease;
}
.carousel .controls1 .btn1:active {
background-color: rgb(255, 255, 255);
border: 0px solid rgb(255, 255, 255);
}
.carousel .controls1 .btn1:hover {
background-color: #4F963C;
border: 0px solid rgb(255, 255, 255);
}
.slide-title {
color: #fff;
font-family: "Dosis", sans-serif;
font-size: 4vw;
font-weight: bold;
text-transform: uppercase;
}
.slide-btn {
color : white;
text-decoration-line: none;
cursor: pointer;
}
.slide-btn:hover {
color : #c0c0c0;
}
@media (max-width: 480px){
.slide-title{
/* font-size: 16px; */
margin: 0;
}
}
.slide-subtitle{
text-transform: uppercase;
font-family: "Dosis", sans-serif;
font-size: 2.4vw;
}
@media (max-width:768px ){
.slide-btn{
display: none;
}
}
/* animation */
.anmup{
animation-name: bounceIn;
animation-duration: 950ms;
animation-fill-mode: forwards;
}
.anmdown{
animation-name: bounceInDown;
animation-duration: 950ms;
animation-fill-mode: forwards;
}
@keyframes bounceIn{
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
opacity: 1;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
opacity: 1;
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
} | public/css/slider.css | html,
body {
height: 100%;
}
body {
margin: 0;
}
.centered {
top: 50%;
bottom: auto;
transform: translateY(-50%);
left: 15%;
position: absolute;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
@media screen and (min-width: 768px){
.centered {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
}
.carousel {
position: relative;
width: 100%;
height: 38vw;
overflow: hidden;
}
.carousel .item {
position: absolute;
width: 100%;
text-align: center;
}
/* animations */
.carousel .slide-in {
/* -webkit-transform: translate3d(-90%, 0px, 0px);
-moz-transform: translate3d(-90%, 0px, 0px);
-ms-transform: translate3d(-90%, 0px, 0px);
-o-transform: translate(-90%, 0px, 0px);
transform: translate3d(-90%, 0px, 0px); */
-webkit-transition: -webkit-transform 0.5s ease-out;
-moz-transition: -moz-transform 0.5s ease-out;
-ms-transition: -ms-transform 0.5s ease-out;
-o-transition: -o-transform 0.5s ease-out;
transition: transform 0.5s ease-out;
z-index: 1;
}
.carousel .slide-in:target,
.carousel .slide-in:focus {
-webkit-transform: translate3d(0px, 0px, 0px);
-moz-transform: translate3d(0px, 0px, 0px);
-ms-transform: translate3d(0px, 0px, 0px);
-o-transform: translate(0px, 0px, 0px);
transform: translate3d(0px, 0px, 0px);
z-index: 2;
}
/*
.carousel .slide-in:target ~ .slide-in {
-webkit-transform: translate3d(90%, 0px, 0px);
-moz-transform: translate3d(90%, 0px, 0px);
-ms-transform: translate3d(90%, 0px, 0px);
-o-transform: translate(90%, 0px, 0px);
transform: translate3d(90%, 0px, 0px);
} */
.carousel .controls1 {
position: absolute;
text-align: center;
z-index: 5;
width: 100%;
top: 33vw;
}
.carousel .controls1 .btn1 {
cursor: pointer;
height: 16px;
width: 16px;
margin: 0 2px;
background-color: rgba(182, 24, 24, 0);
border-radius: 50%;
border: 1px solid rgb(255, 255, 255);
display: inline-block;
transition: background-color 0.6s ease;
}
.carousel .controls1 .btn1:active {
background-color: rgb(255, 255, 255);
border: 0px solid rgb(255, 255, 255);
}
.carousel .controls1 .btn1:hover {
background-color: #4F963C;
border: 0px solid rgb(255, 255, 255);
}
.slide-title {
color: #fff;
font-family: "Dosis", sans-serif;
font-size: 4vw;
font-weight: bold;
text-transform: uppercase;
}
.slide-btn {
color : white;
text-decoration-line: none;
cursor: pointer;
}
.slide-btn:hover {
color : #c0c0c0;
}
@media (max-width: 480px){
.slide-title{
/* font-size: 16px; */
margin: 0;
}
}
.slide-subtitle{
text-transform: uppercase;
font-family: "Dosis", sans-serif;
font-size: 2.4vw;
}
@media (max-width:768px ){
.slide-btn{
display: none;
}
}
/* animation */
.anmup{
animation-name: bounceIn;
animation-duration: 950ms;
animation-fill-mode: forwards;
}
.anmdown{
animation-name: bounceInDown;
animation-duration: 950ms;
animation-fill-mode: forwards;
}
@keyframes bounceIn{
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
opacity: 1;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
opacity: 1;
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
} | 0.332419 | 0.090655 |
*{
margin: 0;
padding: o;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
nav .logo a{
color: white !important;
font-family: 'Recursive', sans-serif;
font-style: 800;
font-size: 2rem;
}
nav .logo a span{
color: #FA00FF;
font-family: 'Recursive', sans-serif;
}
#list a{
font-family: 'Poppins', sans-serif;
font-size: 1.05rem;
}
#navbarText .bttn button{
color: #FA00FF !important;
border: 1px solid #FA00FF;
width: 8rem;
}
.btn-outline-success:hover{
background-color: rgba(250, 0, 255, 0.5);
}
button.navbar-toggler {
background-color: white;
}
.first{
background-image:url('./images/page-header.jpg');
height: 600px;
}
.first h2{
text-align: center;
color: white;
margin-top: 70px;
font-weight: bolder;
}
.first h3{
color: #FA00FF;
text-align: center; /* ask on this */
position: relative;
top: 50%;
font-weight: bolder;
}
.second{
background-color: whitesmoke;
}
.second img{
float: left;
margin-left: 20%;
filter: contrast(80%);
}
.second h2{
color: #FA00FF;
}
.second button {
padding: 20px;
width: 10%;
border: 2px solid #FA00FF;
margin-top: 10px;
color: #FA00FF;
}
#alone{
position:absolute;
margin-left: 45%;
}
#alone button{
background-color: black;
color: white;
padding: 30px;
width:280px;
margin-top: 20px;
}
.third{
background-color:#FECAFF;;
color:black;
margin-top: 90px;
}
.third1{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: row;
}
.third2{
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-around;
}
.third3{
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-around;
}
.third1 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.third2 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.third3 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.fourth{
background-color:whitesmoke;
text-align: center;
}
.fourth img{
border-radius: 50%;
border: 1px solid black;
margin-left: 30px;
}
.fifth{
background-image: url('./images/rodney-manu-44BZHA2wXUM-unsplash.jpg');
background-size:cover;
background-position: center;
height: 50vh;
background-repeat: no-repeat;
color: white;
text-align: center;
}
.fifth p{
position: relative;
top: 30%;
}
.lastie{
background-color:#261818;
color: white;
display: block;
}
/*.sixth{
background-color: #FECAFF;
display: flex;
justify-content: space-around;
flex-direction: row;
}
.sixth img{
border-radius: 50%;
padding: 10px;
}
.sixth div{
padding: 30px;
text-align: center;
color: white;
}
.col-md-3{
background-color: #261818;
border: 2px solid pink;
}
.col-md-3 img{
width: 100%;
}
footer{
background-color: black;
} | barber_style.css | *{
margin: 0;
padding: o;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
nav .logo a{
color: white !important;
font-family: 'Recursive', sans-serif;
font-style: 800;
font-size: 2rem;
}
nav .logo a span{
color: #FA00FF;
font-family: 'Recursive', sans-serif;
}
#list a{
font-family: 'Poppins', sans-serif;
font-size: 1.05rem;
}
#navbarText .bttn button{
color: #FA00FF !important;
border: 1px solid #FA00FF;
width: 8rem;
}
.btn-outline-success:hover{
background-color: rgba(250, 0, 255, 0.5);
}
button.navbar-toggler {
background-color: white;
}
.first{
background-image:url('./images/page-header.jpg');
height: 600px;
}
.first h2{
text-align: center;
color: white;
margin-top: 70px;
font-weight: bolder;
}
.first h3{
color: #FA00FF;
text-align: center; /* ask on this */
position: relative;
top: 50%;
font-weight: bolder;
}
.second{
background-color: whitesmoke;
}
.second img{
float: left;
margin-left: 20%;
filter: contrast(80%);
}
.second h2{
color: #FA00FF;
}
.second button {
padding: 20px;
width: 10%;
border: 2px solid #FA00FF;
margin-top: 10px;
color: #FA00FF;
}
#alone{
position:absolute;
margin-left: 45%;
}
#alone button{
background-color: black;
color: white;
padding: 30px;
width:280px;
margin-top: 20px;
}
.third{
background-color:#FECAFF;;
color:black;
margin-top: 90px;
}
.third1{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: row;
}
.third2{
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-around;
}
.third3{
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-around;
}
.third1 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.third2 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.third3 div{
text-align: center;
height: auto;
width: 190px;
padding: 20px;
}
.fourth{
background-color:whitesmoke;
text-align: center;
}
.fourth img{
border-radius: 50%;
border: 1px solid black;
margin-left: 30px;
}
.fifth{
background-image: url('./images/rodney-manu-44BZHA2wXUM-unsplash.jpg');
background-size:cover;
background-position: center;
height: 50vh;
background-repeat: no-repeat;
color: white;
text-align: center;
}
.fifth p{
position: relative;
top: 30%;
}
.lastie{
background-color:#261818;
color: white;
display: block;
}
/*.sixth{
background-color: #FECAFF;
display: flex;
justify-content: space-around;
flex-direction: row;
}
.sixth img{
border-radius: 50%;
padding: 10px;
}
.sixth div{
padding: 30px;
text-align: center;
color: white;
}
.col-md-3{
background-color: #261818;
border: 2px solid pink;
}
.col-md-3 img{
width: 100%;
}
footer{
background-color: black;
} | 0.397704 | 0.094594 |
:root{
--color-1: #011627;
--color-2: #FB4D3D;
--color-3: #547AA5;
--color-4: #C5C9A4;
--color-5: #627C85;
--color-font: #fff;
}
/*=========================
GENERAL STYLES
=========================*/
/*This set 1 rem to 10px instead of it being 16px so now 1.6 rem is now 16px*/
html{
font-size: 62.5%;
}
/*Setting up the h1 - h6 tags with the font-sizes*/
h1 {
font-size: 4rem;
font-family: 'Open Sans';
}
h2 {
font-size: 3.5rem;
font-family: 'Open Sans';
}
h3 {
font-size: 3rem;
font-family: 'Open Sans';
}
h4 {
font-size: 2.5rem;
font-family: 'Open Sans';
}
h5 {
font-size: 2rem;
font-family: 'Open Sans';
}
h6 {
font-size: 1.5rem;
font-family: 'Open Sans';
}
p {
font-size: 1.6rem;
margin-bottom: 1rem;
font-family: 'Open Sans';
font-weight: 300;
}
/*================
NAVIGATION
=================*/
nav{
background: var(--color-5) !important;
}
.navbar-nav{
margin-right: 4rem;
padding: 1.5rem;
}
.navbar-nav li{
padding: 0rem 1rem;
}
.navbar-nav li a{
font-size: 1.8rem;
text-transform: uppercase;
color: var(--color-font);
}
.navbar-nav li a:hover{
color: var(--color-4);
text-decoration: none;
}
.navbar-brand{
margin-left: 4rem;
font-size: 1.8rem;
font-weight: 500;
letter-spacing:1px;
text-transform: uppercase;
color: var(--color-font);
}
.navbar-brand:hover{
color: var(--color-4);
text-decoration: none;
}
@media screen and (max-width: 950px){
.navbar-toggler{
background: #000;
color: #fff;
}
}
/*================
HOMEPAGE
================*/
.homepage-header{
text-align: center;
margin-top: 10rem;
text-transform: uppercase;
font-weight: 500;
}
/*================
DASHBOARD
================*/
#post-button{
background-color: var(--color-2);
width: 30%;
position:fixed;
bottom: 100px;
color: var(--color-font);
font-size: 1.8rem;
text-transform: uppercase;
padding: 1rem;
text-align: center;
}
#post-button:hover{
background-color: var(--color-3);
text-decoration: none;
}
.post-container{
margin-top: 5rem;
border: 1px solid #000;
}
.post-container h4{
text-align: center;
background: var(--color-3);
padding: 1.5rem 0rem;
color: var(--color-font);
text-transform: uppercase;
}
.post-container p{
margin-top: 1rem;
padding: 2rem 4rem;
}
/*====================
POST FORM
====================*/
#new-post-form{
width: 100%;
margin-top: 5rem;
}
#new-post-form input{
width: 100%;
margin-left: auto;
margin-right: auto;
}
#new-post-form label{
font-size: 1.8rem;
}
#textTitle{
height: 30%;
}
#textContent{
height: 100%;
}
#textSubmit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#textSubmit:hover{
background-color: var(--color-2);
}
.post-view{
display: flex;
flex-direction: column;
width: 50%;
margin-left: auto;
margin-right: auto;
}
.post-view input{
margin-top: 1.5rem;
}
/*==================
SINGLE POST
==================*/
#single-post-header{
margin-top: 5rem;
}
#comment-message{
display: flex;
}
#comment-text{
padding-bottom: 0.5rem;
width: 30%;
}
#send-comment-btn{
padding-bottom: 0rem;
width: 10%;
border: none;
color: var(--color-font);
background: var(--color-3);
padding: 1rem;
border-radius: 0.4rem;
margin-left: 0.5rem;
}
#send-comment-btn:hover{
background: var(--color-4);
}
.comment-content{
margin-top: 2rem;
padding-bottom: 2rem;
}
#postId{
display: none;
}
#postId-url{
display: none;
}
.comment-container h3{
border-bottom: 1px solid #000;
margin-top: 5rem;
}
/*==================
SIGNIN FORM
===================*/
#signin-form{
width: 100%;
margin-top: 5rem;
}
#signin-form input{
width: 100%;
height: 20%;
margin-left: auto;
margin-right: auto;
}
#signin-form label{
font-size: 1.8rem;
}
#signin-submit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signin-submit:hover{
background-color: var(--color-2);
}
#signup-create{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signup-create:hover{
background-color: var(--color-2);
}
/*==================
SIGNUP FORM
===================*/
#signup-form{
width: 100%;
margin-top: 5rem;
}
#signup-form input{
width: 100%;
height: 20%;
margin-left: auto;
margin-right: auto;
}
#signup-form label{
font-size: 1.8rem;
}
#signup-submit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signup-submit:hover{
background-color: var(--color-2);
}
/*================
POST
================*/
.post-view{
margin-top: 2.5rem;
}
#post-title-2{
font-size: 4rem;
font-weight: bold;
}
#post-content-2{
font-size: 2rem;
}
#post-id{
display: none;
}
.post-buttons-2{
display: flex;
flex-direction: row;
}
.post-buttons-2 a{
padding: 1rem 2rem;
background: var(--color-4);
}
#edit-btn{
margin-right: 2rem;
}
#delete-btn{
margin-left: 2rem;
}
/*================
FOOTER
================*/
footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
padding: 2rem;
background-color: var(--color-5);
}
footer p{
color: var(--color-font);
font-size: 1.6rem;
letter-spacing: 1px;
text-transform: uppercase;
padding-top: 1rem;
} | public/css/style.css | :root{
--color-1: #011627;
--color-2: #FB4D3D;
--color-3: #547AA5;
--color-4: #C5C9A4;
--color-5: #627C85;
--color-font: #fff;
}
/*=========================
GENERAL STYLES
=========================*/
/*This set 1 rem to 10px instead of it being 16px so now 1.6 rem is now 16px*/
html{
font-size: 62.5%;
}
/*Setting up the h1 - h6 tags with the font-sizes*/
h1 {
font-size: 4rem;
font-family: 'Open Sans';
}
h2 {
font-size: 3.5rem;
font-family: 'Open Sans';
}
h3 {
font-size: 3rem;
font-family: 'Open Sans';
}
h4 {
font-size: 2.5rem;
font-family: 'Open Sans';
}
h5 {
font-size: 2rem;
font-family: 'Open Sans';
}
h6 {
font-size: 1.5rem;
font-family: 'Open Sans';
}
p {
font-size: 1.6rem;
margin-bottom: 1rem;
font-family: 'Open Sans';
font-weight: 300;
}
/*================
NAVIGATION
=================*/
nav{
background: var(--color-5) !important;
}
.navbar-nav{
margin-right: 4rem;
padding: 1.5rem;
}
.navbar-nav li{
padding: 0rem 1rem;
}
.navbar-nav li a{
font-size: 1.8rem;
text-transform: uppercase;
color: var(--color-font);
}
.navbar-nav li a:hover{
color: var(--color-4);
text-decoration: none;
}
.navbar-brand{
margin-left: 4rem;
font-size: 1.8rem;
font-weight: 500;
letter-spacing:1px;
text-transform: uppercase;
color: var(--color-font);
}
.navbar-brand:hover{
color: var(--color-4);
text-decoration: none;
}
@media screen and (max-width: 950px){
.navbar-toggler{
background: #000;
color: #fff;
}
}
/*================
HOMEPAGE
================*/
.homepage-header{
text-align: center;
margin-top: 10rem;
text-transform: uppercase;
font-weight: 500;
}
/*================
DASHBOARD
================*/
#post-button{
background-color: var(--color-2);
width: 30%;
position:fixed;
bottom: 100px;
color: var(--color-font);
font-size: 1.8rem;
text-transform: uppercase;
padding: 1rem;
text-align: center;
}
#post-button:hover{
background-color: var(--color-3);
text-decoration: none;
}
.post-container{
margin-top: 5rem;
border: 1px solid #000;
}
.post-container h4{
text-align: center;
background: var(--color-3);
padding: 1.5rem 0rem;
color: var(--color-font);
text-transform: uppercase;
}
.post-container p{
margin-top: 1rem;
padding: 2rem 4rem;
}
/*====================
POST FORM
====================*/
#new-post-form{
width: 100%;
margin-top: 5rem;
}
#new-post-form input{
width: 100%;
margin-left: auto;
margin-right: auto;
}
#new-post-form label{
font-size: 1.8rem;
}
#textTitle{
height: 30%;
}
#textContent{
height: 100%;
}
#textSubmit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#textSubmit:hover{
background-color: var(--color-2);
}
.post-view{
display: flex;
flex-direction: column;
width: 50%;
margin-left: auto;
margin-right: auto;
}
.post-view input{
margin-top: 1.5rem;
}
/*==================
SINGLE POST
==================*/
#single-post-header{
margin-top: 5rem;
}
#comment-message{
display: flex;
}
#comment-text{
padding-bottom: 0.5rem;
width: 30%;
}
#send-comment-btn{
padding-bottom: 0rem;
width: 10%;
border: none;
color: var(--color-font);
background: var(--color-3);
padding: 1rem;
border-radius: 0.4rem;
margin-left: 0.5rem;
}
#send-comment-btn:hover{
background: var(--color-4);
}
.comment-content{
margin-top: 2rem;
padding-bottom: 2rem;
}
#postId{
display: none;
}
#postId-url{
display: none;
}
.comment-container h3{
border-bottom: 1px solid #000;
margin-top: 5rem;
}
/*==================
SIGNIN FORM
===================*/
#signin-form{
width: 100%;
margin-top: 5rem;
}
#signin-form input{
width: 100%;
height: 20%;
margin-left: auto;
margin-right: auto;
}
#signin-form label{
font-size: 1.8rem;
}
#signin-submit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signin-submit:hover{
background-color: var(--color-2);
}
#signup-create{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signup-create:hover{
background-color: var(--color-2);
}
/*==================
SIGNUP FORM
===================*/
#signup-form{
width: 100%;
margin-top: 5rem;
}
#signup-form input{
width: 100%;
height: 20%;
margin-left: auto;
margin-right: auto;
}
#signup-form label{
font-size: 1.8rem;
}
#signup-submit{
font-size: 1.8rem;
text-transform: uppercase;
background-color: var(--color-4);
border: 0px solid var(--color-4);
color: var(--color-font);
margin-top: 2rem;
padding: 1.2rem 2rem;
border-radius: 4px;
}
#signup-submit:hover{
background-color: var(--color-2);
}
/*================
POST
================*/
.post-view{
margin-top: 2.5rem;
}
#post-title-2{
font-size: 4rem;
font-weight: bold;
}
#post-content-2{
font-size: 2rem;
}
#post-id{
display: none;
}
.post-buttons-2{
display: flex;
flex-direction: row;
}
.post-buttons-2 a{
padding: 1rem 2rem;
background: var(--color-4);
}
#edit-btn{
margin-right: 2rem;
}
#delete-btn{
margin-left: 2rem;
}
/*================
FOOTER
================*/
footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
padding: 2rem;
background-color: var(--color-5);
}
footer p{
color: var(--color-font);
font-size: 1.6rem;
letter-spacing: 1px;
text-transform: uppercase;
padding-top: 1rem;
} | 0.359139 | 0.120594 |
body {
font-family: 'Courier New', Courier, monospace;
font-size: 17px;;
background-image: url('/images/background.jpeg');
background-attachment: fixed;
}
#content {
background-color: #252a2e;
color: #f2f2f2;
margin-left: 15px;
margin-right: 15px;
padding-left: 15px;
top: 0px;
}
img #me {
width: 400;
height: 500;
}
/*
--- This is a template for an acutal website I am making
Keeping it commented for reference/colors ---
.topnav {
background-color: #18191c;
overflow: hidden;
}
.topnav a#topNews {
background-color: #78991b;
}
.topnav a#topNews:hover {
background-color: #568621;
color: white;
}
.topnav a#topContact {
background-color: #d58e40;
}
.topnav a#topContact:hover {
background-color: #be6525;
color: white;
}
.topnav a#topAbout {
background-color: #c7bf23;
}
.topnav a#topAbout:hover {
background-color: #b09713;
color: white;
}
.topnav a#topX {
background-color: #b02e2e;
width: 20px;
float: right;
}
.topnav a#topX:hover {
background-color: #9e0e0e;
color: white;
}
*/
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
width: 90px
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: #191a1c;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #3c6a94;
color: white;
}
/* Add more general stylings */
a {
color: #5494cf;
}
.info {
background-color: #18191c;
margin: 40px;
border-radius: 10px;
padding: 3px;
width: 680px;
padding-left: 30px;
}
#aboutMeStart {
align-items: center;
text-align: center;
}
#schedule {
background-color: #18191c;
margin: 40px;
border-radius: 10px;
padding: 3px;
width: 680px;
padding-left: 30px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
#footer {
padding: 5px;
width: 100%;
background-color: black;
} | CSS/styles.css | body {
font-family: 'Courier New', Courier, monospace;
font-size: 17px;;
background-image: url('/images/background.jpeg');
background-attachment: fixed;
}
#content {
background-color: #252a2e;
color: #f2f2f2;
margin-left: 15px;
margin-right: 15px;
padding-left: 15px;
top: 0px;
}
img #me {
width: 400;
height: 500;
}
/*
--- This is a template for an acutal website I am making
Keeping it commented for reference/colors ---
.topnav {
background-color: #18191c;
overflow: hidden;
}
.topnav a#topNews {
background-color: #78991b;
}
.topnav a#topNews:hover {
background-color: #568621;
color: white;
}
.topnav a#topContact {
background-color: #d58e40;
}
.topnav a#topContact:hover {
background-color: #be6525;
color: white;
}
.topnav a#topAbout {
background-color: #c7bf23;
}
.topnav a#topAbout:hover {
background-color: #b09713;
color: white;
}
.topnav a#topX {
background-color: #b02e2e;
width: 20px;
float: right;
}
.topnav a#topX:hover {
background-color: #9e0e0e;
color: white;
}
*/
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
width: 90px
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: #191a1c;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #3c6a94;
color: white;
}
/* Add more general stylings */
a {
color: #5494cf;
}
.info {
background-color: #18191c;
margin: 40px;
border-radius: 10px;
padding: 3px;
width: 680px;
padding-left: 30px;
}
#aboutMeStart {
align-items: center;
text-align: center;
}
#schedule {
background-color: #18191c;
margin: 40px;
border-radius: 10px;
padding: 3px;
width: 680px;
padding-left: 30px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
#footer {
padding: 5px;
width: 100%;
background-color: black;
} | 0.448668 | 0.134122 |
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url('/css/fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-300.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url('/css/fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url('/css/fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium'), url('/css/fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-500.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-italic - latin */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: local('Roboto Italic'), local('Roboto-Italic'), url('/css/fonts/roboto-v20-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-italic.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url('/css/fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-700.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-mono-regular - latin */
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: local('Roboto Mono'), local('RobotoMono-Regular'), url('/css/fonts/roboto-mono-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-mono-v7-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.md-logo img {
background-color: #fff;
border-radius: 50%;
width: 30px;
height: 30px
}
body,
input {
color: black;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.5;
font-size: 18px;
}
.codehilite>pre {
color: #5e72e4;
}
.md-nav {
font-size: 14px;
line-height: 1.4;
}
.md-typeset {
font-size: .70rem;
}
.md-typeset__table td code {
word-break: unset;
font-family: 'Roboto Mono';
}
code,
kbd,
pre {
font-family: 'Roboto Mono';
}
.md-typeset__table tr:nth-child(1) {
word-wrap: break-word;
}
h1 {
line-height: 1.7em;
font-weight: 700;
font-size: 34px;
}
.md-main__inner {
padding-top: 0;
}
strong {
font-weight: 500;
}
.md-typeset h2 {
font-weight: 500;
font-size: 26px;
margin-top: 1em;
}
.md-typeset h3 {
line-height: 1.5em;
font-size: 22px;
font-weight: 500;
}
.md-typeset h4 {
line-height: 1.5em;
font-weight: 500;
font-size: 18px;
}
.md-nav__link {
white-space: nowrap;
}
.md-nav__title {
display: none;
}
.codehilite .c1 {
color: #222
}
#intro {
max-width: 100%;
}
video {
max-width: 100%;
}
@media only screen and (max-width: 600px) {
.md-typeset {
font-size: .80rem;
line-height: 1.;
}
}
.homepage-nav {
display: flex;
margin-top: 1.4rem;
}
.homepage-nav div {
flex: 1;
}
.homepage-nav .nav-install {
margin-right: 1rem;
}
.homepage-nav .nav-configuration {
margin-left: 1rem;
}
.button {
background-color: blue;
/* Green */
border: none;
color: black;
text-align: center;
display: block;
font-size: 16px;
-webkit-transition-duration: 0.4s;
/* Safari */
transition-duration: 0.4s;
cursor: pointer;
font-weight: 700;
margin: 0 auto;
padding: 0.6rem 0;
border-radius: 4px;
}
.nav-button {
background-color: white;
border: 2px solid #000;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Hide the label at the top of the navigation menu. Does nothing.
Well, it does do something on mobile, and this media query makes
sure it's hidden only on screens wide enough to not use the mobile sidebar. */
@media only screen and (min-width:76.25em) {
.md-nav--primary .md-nav__title {
display: none;
}
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
overflow: visible;
word-break: break-all;
word-wrap: break-word;
border-radius: 4px;
}
pre,
pre tt {
padding: 0;
border: none;
white-space: pre-wrap;
font-size: inherit;
}
pre,
tt {
padding: 1px 3px;
border-radius: 2px;
white-space: pre-wrap;
}
pre {
padding: 0 2px 2px;
border-radius: 3px;
} | docs/css/extra.css |
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url('/css/fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-300.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url('/css/fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url('/css/fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium'), url('/css/fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-500.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-italic - latin */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: local('Roboto Italic'), local('Roboto-Italic'), url('/css/fonts/roboto-v20-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-italic.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url('/css/fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-v20-latin-700.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-mono-regular - latin */
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: local('Roboto Mono'), local('RobotoMono-Regular'), url('/css/fonts/roboto-mono-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('/css/fonts/roboto-mono-v7-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.md-logo img {
background-color: #fff;
border-radius: 50%;
width: 30px;
height: 30px
}
body,
input {
color: black;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.5;
font-size: 18px;
}
.codehilite>pre {
color: #5e72e4;
}
.md-nav {
font-size: 14px;
line-height: 1.4;
}
.md-typeset {
font-size: .70rem;
}
.md-typeset__table td code {
word-break: unset;
font-family: 'Roboto Mono';
}
code,
kbd,
pre {
font-family: 'Roboto Mono';
}
.md-typeset__table tr:nth-child(1) {
word-wrap: break-word;
}
h1 {
line-height: 1.7em;
font-weight: 700;
font-size: 34px;
}
.md-main__inner {
padding-top: 0;
}
strong {
font-weight: 500;
}
.md-typeset h2 {
font-weight: 500;
font-size: 26px;
margin-top: 1em;
}
.md-typeset h3 {
line-height: 1.5em;
font-size: 22px;
font-weight: 500;
}
.md-typeset h4 {
line-height: 1.5em;
font-weight: 500;
font-size: 18px;
}
.md-nav__link {
white-space: nowrap;
}
.md-nav__title {
display: none;
}
.codehilite .c1 {
color: #222
}
#intro {
max-width: 100%;
}
video {
max-width: 100%;
}
@media only screen and (max-width: 600px) {
.md-typeset {
font-size: .80rem;
line-height: 1.;
}
}
.homepage-nav {
display: flex;
margin-top: 1.4rem;
}
.homepage-nav div {
flex: 1;
}
.homepage-nav .nav-install {
margin-right: 1rem;
}
.homepage-nav .nav-configuration {
margin-left: 1rem;
}
.button {
background-color: blue;
/* Green */
border: none;
color: black;
text-align: center;
display: block;
font-size: 16px;
-webkit-transition-duration: 0.4s;
/* Safari */
transition-duration: 0.4s;
cursor: pointer;
font-weight: 700;
margin: 0 auto;
padding: 0.6rem 0;
border-radius: 4px;
}
.nav-button {
background-color: white;
border: 2px solid #000;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Hide the label at the top of the navigation menu. Does nothing.
Well, it does do something on mobile, and this media query makes
sure it's hidden only on screens wide enough to not use the mobile sidebar. */
@media only screen and (min-width:76.25em) {
.md-nav--primary .md-nav__title {
display: none;
}
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
overflow: visible;
word-break: break-all;
word-wrap: break-word;
border-radius: 4px;
}
pre,
pre tt {
padding: 0;
border: none;
white-space: pre-wrap;
font-size: inherit;
}
pre,
tt {
padding: 1px 3px;
border-radius: 2px;
white-space: pre-wrap;
}
pre {
padding: 0 2px 2px;
border-radius: 3px;
} | 0.378459 | 0.053453 |
@value selectionWidth: 1px;
@value selectionPadding: -6px;
@value selectionPadding2: -0.5em;
.main {
position: relative;
}
.main:before,
.main:after {
content: '';
position: absolute;
top: selectionPadding2;
left: selectionPadding2;
right: selectionPadding2;
bottom: selectionPadding2;
pointer-events: none;
opacity: 0.8
}
.draggable:not(.full):before {
top: 5px;
}
.full:before,
.full:after {
left: 0;
right: 0;
}
.selected:before {
border-left: solid 1px currentColor;
}
.selected:after {
border-right: solid 1px currentColor;
}
.toolbar {
position: absolute;
top: -40px;
right: -15px;
z-index: 1;
pointer-events: auto;
}
.insert {
display: none;
text-align: center;
position: absolute;
width: 100%;
opacity: 0.8;
pointer-events: none;
}
.insertHovered.insert {
opacity: 1;
}
.start .insert-before,
.end .insert-after {
display: block;
}
.insert::before,
.insert::after {
content: '';
position: absolute;
top: 0;
width: calc(50% - 5px);
height: 0;
border-bottom: solid 1px currentColor;
}
.insert::before {
left: selectionPadding2;
}
.insert::after {
right: selectionPadding2;
}
.draggable:not(.full) .insert-before::before {
left: 5px;
width: calc(50% - 10px - 0.5em);
}
.full .insert::before,
.full .insert::after {
width: calc(50% - 5px + selectionPadding2);
}
.full .insert::before {
left: 0;
}
.full .insert::after {
right: 0;
}
.insertButton {
pointer-events: auto;
border: 0;
background: none;
color: currentColor;
display: inline-block;
vertical-align: top;
position: relative;
top: -9px;
padding: 2px 10px;
}
.insert-before,
.insert-after {
composes: insert;
}
.insert-before {
top: -0.5em;
}
.insert-after {
top: calc(100% + 0.5em);
}
.dragHandle {
position: absolute;
top: -7px;
left: 10px;
transform: translate(-100%, -50%);
z-index: 1;
visibility: hidden;
padding: 10px;
cursor: move;
}
.selected .dragHandle {
visibility: visible;
}
.full .dragHandle {
left: 0;
top: 0;
transform: translate(0, 0);
background: radial-gradient(#000000b8, transparent 50%)
}
.dragHandle svg {
display: block;
color: currentColor;
width: 15px;
height: 15px;
opacity: 0.8;
}
.dragHandle:hover svg {
opacity: 1;
}
.full .dragHandle svg {
color: #fff;
} | entry_types/scrolled/package/src/frontend/inlineEditing/SelectionRect.module.css | @value selectionWidth: 1px;
@value selectionPadding: -6px;
@value selectionPadding2: -0.5em;
.main {
position: relative;
}
.main:before,
.main:after {
content: '';
position: absolute;
top: selectionPadding2;
left: selectionPadding2;
right: selectionPadding2;
bottom: selectionPadding2;
pointer-events: none;
opacity: 0.8
}
.draggable:not(.full):before {
top: 5px;
}
.full:before,
.full:after {
left: 0;
right: 0;
}
.selected:before {
border-left: solid 1px currentColor;
}
.selected:after {
border-right: solid 1px currentColor;
}
.toolbar {
position: absolute;
top: -40px;
right: -15px;
z-index: 1;
pointer-events: auto;
}
.insert {
display: none;
text-align: center;
position: absolute;
width: 100%;
opacity: 0.8;
pointer-events: none;
}
.insertHovered.insert {
opacity: 1;
}
.start .insert-before,
.end .insert-after {
display: block;
}
.insert::before,
.insert::after {
content: '';
position: absolute;
top: 0;
width: calc(50% - 5px);
height: 0;
border-bottom: solid 1px currentColor;
}
.insert::before {
left: selectionPadding2;
}
.insert::after {
right: selectionPadding2;
}
.draggable:not(.full) .insert-before::before {
left: 5px;
width: calc(50% - 10px - 0.5em);
}
.full .insert::before,
.full .insert::after {
width: calc(50% - 5px + selectionPadding2);
}
.full .insert::before {
left: 0;
}
.full .insert::after {
right: 0;
}
.insertButton {
pointer-events: auto;
border: 0;
background: none;
color: currentColor;
display: inline-block;
vertical-align: top;
position: relative;
top: -9px;
padding: 2px 10px;
}
.insert-before,
.insert-after {
composes: insert;
}
.insert-before {
top: -0.5em;
}
.insert-after {
top: calc(100% + 0.5em);
}
.dragHandle {
position: absolute;
top: -7px;
left: 10px;
transform: translate(-100%, -50%);
z-index: 1;
visibility: hidden;
padding: 10px;
cursor: move;
}
.selected .dragHandle {
visibility: visible;
}
.full .dragHandle {
left: 0;
top: 0;
transform: translate(0, 0);
background: radial-gradient(#000000b8, transparent 50%)
}
.dragHandle svg {
display: block;
color: currentColor;
width: 15px;
height: 15px;
opacity: 0.8;
}
.dragHandle:hover svg {
opacity: 1;
}
.full .dragHandle svg {
color: #fff;
} | 0.674158 | 0.225182 |
.index-category{text-align:center;padding:0 0 10px;background-color:#fff; border-top:1px #DDDDDD solid; border-bottom:1px #DDDDDD solid;}
.index-category .index_slider{overflow:hidden;position:relative;height:auto}
.index-category .index_slider-wrap{overflow:hidden;position:relative}
.index-category .page{float:left;padding:0;width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}
.index-category .item{width:25%;padding:13px 0 0;display:block;float:left;color:#333;position:relative;box-sizing:border-box;-webkit-box-sizing:border-box}
.index-category .item .icon img{border-radius:19px;-webkit-border-radius:19px;width:44px;height:44px;color:#333;position:relative}
.index-category .circles{line-height:10px}
.index-category .icon{background-size:auto auto}
.select_03 { border:1px solid #ff6633; margin:15px 15px 10px; border-radius:16px;}
.select_03 ul { display:table; width:100%;}
.select_03 li { display:table-cell; width:33.3%; text-align:center; height:30px; line-height:30px;}
.select_03 li a { display:block;}
.select_03 .current1{border-radius:15px 0 0 15px;}
.select_03 .current2{border-radius:0 0 0 0;}
.select_03 .current3{border-radius:0 15px 15px 0;}
.select_03 .current { background-color:#ff6633;}
.select_03 .current a { color:#fff;}
.select_03_blue { border:1px solid #3592E2;}
.select_03_blue .current { background-color:#3592E2;}
.select_03_green { border:1px solid #42B712;}
.select_03_green .current { background-color:#42B712;}
.select_03_red { border:1px solid #c40000;}
.select_03_red .current { background-color:#c40000;}
.select_03_tu { border:1px solid #f8b868;}
.select_03_tu .current { background-color:#f8b868;}
.select_03_tg { border:1px solid #7788f2;}
.select_03_tg .current { background-color:#7788f2;}
.newsct{ height:auto; background-color:#ffffff; padding: 10px 0 10px 0; border-bottom:1px #dedede solid;}
.list_normal {}
.list_normal li,.list_normal2 p { height:46px; line-height:46px; overflow:hidden; border-bottom:1px solid #f1f1f1; padding:0 25px 0 10px; position:relative; z-index:1; font-size:18px;}
.list_normal .jian { display:block; position:absolute; right:13px; top:50%; margin-top:-5px; width:6px; height:11px; background:url(../images/list_style_ico.gif) no-repeat 0 0; background-size:6px 11px;}
.list_normal .cat { color:#36c;}
.list_normal .img { width:36px; height:25px; margin-top:8px; margin-right:8px; float:left; border:1px #ddd solid; padding:1px;}
.list_normal .cat:hover { color:#d00;}
.list_normal .time,.list_normal .time:hover{color:#36c;}
.list_normal2 p { padding-right:80px;}
.list_normal2 p font { display:block; position:absolute; top:0; right:20px; font-size:14px;}
.first_bold li:first-child { font-weight:bold; font-size:20px; text-align:center;}
.first_bold li:first-child .img,.first_bold li:first-child .time,.first_bold li:first-child .cat,.first_bold li:first-child .jian { display:none;}
.inner_html { margin:15px;}
.btn_block { display:block; padding:6px 0; width:89%;}
.comn-submit { display:inline-block; padding:6px 15px; text-align:center; color:#fff; background-color:#f40; border:0 none; box-shadow:#ddd 0 1px 1px; border-radius:3px;}
.comn-submit.reg-submit { background-color:#3d8de2;}
.comn-submit:visited{ color:#fff;}
.comn-submit:hover { background-color:#f22d00; color:#fff; text-decoration:none;}
.comn-submit.gray { border:1px solid #d8d8d8; background-color:#f3f3f3; color:#333;}
.comn-submit.gray:hover { background-color:#eee; color:#d00;}
.comn-submit.white { border:1px solid #d8d8d8; background-color:#fff; color:#333;}
.comn-submit.white:hover { background-color:#fafafa; color:#d00;} | m/template/css/index.css | .index-category{text-align:center;padding:0 0 10px;background-color:#fff; border-top:1px #DDDDDD solid; border-bottom:1px #DDDDDD solid;}
.index-category .index_slider{overflow:hidden;position:relative;height:auto}
.index-category .index_slider-wrap{overflow:hidden;position:relative}
.index-category .page{float:left;padding:0;width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}
.index-category .item{width:25%;padding:13px 0 0;display:block;float:left;color:#333;position:relative;box-sizing:border-box;-webkit-box-sizing:border-box}
.index-category .item .icon img{border-radius:19px;-webkit-border-radius:19px;width:44px;height:44px;color:#333;position:relative}
.index-category .circles{line-height:10px}
.index-category .icon{background-size:auto auto}
.select_03 { border:1px solid #ff6633; margin:15px 15px 10px; border-radius:16px;}
.select_03 ul { display:table; width:100%;}
.select_03 li { display:table-cell; width:33.3%; text-align:center; height:30px; line-height:30px;}
.select_03 li a { display:block;}
.select_03 .current1{border-radius:15px 0 0 15px;}
.select_03 .current2{border-radius:0 0 0 0;}
.select_03 .current3{border-radius:0 15px 15px 0;}
.select_03 .current { background-color:#ff6633;}
.select_03 .current a { color:#fff;}
.select_03_blue { border:1px solid #3592E2;}
.select_03_blue .current { background-color:#3592E2;}
.select_03_green { border:1px solid #42B712;}
.select_03_green .current { background-color:#42B712;}
.select_03_red { border:1px solid #c40000;}
.select_03_red .current { background-color:#c40000;}
.select_03_tu { border:1px solid #f8b868;}
.select_03_tu .current { background-color:#f8b868;}
.select_03_tg { border:1px solid #7788f2;}
.select_03_tg .current { background-color:#7788f2;}
.newsct{ height:auto; background-color:#ffffff; padding: 10px 0 10px 0; border-bottom:1px #dedede solid;}
.list_normal {}
.list_normal li,.list_normal2 p { height:46px; line-height:46px; overflow:hidden; border-bottom:1px solid #f1f1f1; padding:0 25px 0 10px; position:relative; z-index:1; font-size:18px;}
.list_normal .jian { display:block; position:absolute; right:13px; top:50%; margin-top:-5px; width:6px; height:11px; background:url(../images/list_style_ico.gif) no-repeat 0 0; background-size:6px 11px;}
.list_normal .cat { color:#36c;}
.list_normal .img { width:36px; height:25px; margin-top:8px; margin-right:8px; float:left; border:1px #ddd solid; padding:1px;}
.list_normal .cat:hover { color:#d00;}
.list_normal .time,.list_normal .time:hover{color:#36c;}
.list_normal2 p { padding-right:80px;}
.list_normal2 p font { display:block; position:absolute; top:0; right:20px; font-size:14px;}
.first_bold li:first-child { font-weight:bold; font-size:20px; text-align:center;}
.first_bold li:first-child .img,.first_bold li:first-child .time,.first_bold li:first-child .cat,.first_bold li:first-child .jian { display:none;}
.inner_html { margin:15px;}
.btn_block { display:block; padding:6px 0; width:89%;}
.comn-submit { display:inline-block; padding:6px 15px; text-align:center; color:#fff; background-color:#f40; border:0 none; box-shadow:#ddd 0 1px 1px; border-radius:3px;}
.comn-submit.reg-submit { background-color:#3d8de2;}
.comn-submit:visited{ color:#fff;}
.comn-submit:hover { background-color:#f22d00; color:#fff; text-decoration:none;}
.comn-submit.gray { border:1px solid #d8d8d8; background-color:#f3f3f3; color:#333;}
.comn-submit.gray:hover { background-color:#eee; color:#d00;}
.comn-submit.white { border:1px solid #d8d8d8; background-color:#fff; color:#333;}
.comn-submit.white:hover { background-color:#fafafa; color:#d00;} | 0.223123 | 0.13489 |
@media (min-width: 1920px) {
}
/* Normal desktop :1170px. */
@media (min-width: 1170px) and (max-width: 1349px) {
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
.header-area.stick .main-menu ul.navbar-nav li a {
padding: 28px 0px;
}
.well-services {
padding: 30px 15px;
}
.number{
font-size: 150px;
}
.single-service {
padding: 20px 12px 5px;
}
.single-service h4 {
font-size: 19px;
}
.fun-content {
padding: 60px 20px;
}
.project-headline h3 {
font-size: 25px;
}
.single-awesome-project:hover .add-actions {
top: 10%;
}
.quote-contact {
padding: 0px 30px;
}
.single-contact {
padding-right: 10px;
}
.single-contact span {
font-size: 15px;
}
.blog-content {
padding: 30px 10px;
}
.blog-content a h4 {
font-size: 17px;
}
.blog-content p {
font-size: 14px;
}
span.share-link {
margin-left: 20%;
}
.intro-2 .layer-1 h1 {
max-width: 880px;
}
.about-content h3 {
font-size: 24px;
}
span.about-icon {
float: none;
display: block;
}
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
.header-area .main-menu ul.navbar-nav > li > a {
font-size: 12px;
margin: 0px 11px;
padding: 30px 0px;
}
.header-area.stick .header-right-link a.main-search {
padding: 17px 0px 18px 5px;
}
.header-area-2 .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area-2.stick .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area .header-right-link .slice-btn {
padding: 28px 0px;
}
.header-area.stick .header-right-link .slice-btn {
padding: 24px 0px;
}
.header-area.stick .main-menu ul.navbar-nav > li > a{
font-size: 12px;
margin: 0px 11px;
padding: 27px 0px;
}
.header-area.stick .logo a {
padding: 11px 0;
}
.logo a {
padding: 13px 0;
}
.header-right-link a.main-search {
padding: 20px 0px 20px 5px;
}
.layer-1 h1 {
font-size: 34px;
line-height: 44px;
margin: 10px 0px;
max-width: 630px;
}
.layer-2 p {
max-width: 550px;
font-size: 18px;
line-height: 26px;
}
.slider-content {
margin-top: -135px;
}
.about-content p{
display: none;
}
.about-content h3 {
line-height: 28px;
font-size: 20px;
margin-bottom: 0px;
}
.left-head h4 {
font-size: 20px;
}
.single-service {
padding: 20px 15px 5px;
}
.fun-content {
padding: 60px 10px;
}
.quote-contact {
padding: 0px 30px;
}
.project-headline h3 {
font-size: 20px;
line-height: 28px;
padding-right: 15px;
}
.project-headline p {
padding-left: 15px;
}
.project-single {
width: 50%;
}
.testi-img img{
max-width: 80px;
}
.brand-items {
padding: 0px 10px;
}
.banner-content h3 {
font-size: 24px;
padding: 0px 20px;
}
.blog-content a h4 {
font-size: 16px;
}
.footer-services-link ul.footer-list {
width: 100%;
float: none;
}
.footer-icons ul li a {
margin-right: 0px;
}
.header-area.header-area-2 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-2 .logo a {
padding: 8px 0;
}
.header-area.header-area-2 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.intro-2 .layer-1 h1 {
max-width: 580px;
}
.intro-2 .layer-2 p {
max-width: 560px;
}
.intro-2 .slider-content {
margin-top: -80px;
}
.about-2 .about-content {
padding: 80px 30px 80px 30px;
}
span.about-icon {
float: none;
margin-right: 0px;
display: block;
margin-bottom: 10px;
}
.blog-right-column .blog-image {
display: none;
}
.blog-right-column .blog-content {
width: 100%;
}
.header-area.header-area-3 .main-menu ul.navbar-nav > li > a {
padding: 20px 0px;
}
.header-area-3 .header-right-link .slice-btn,
.header-area-3.stick .header-right-link .slice-btn {
padding: 18px 0px;
}
.header-middle-area .header-info:first-child {
display: none;
}
.header-middle-area .header-info {
width: 50%;
float: left;
}
.about-3 .about-content {
padding: 0px;
}
.about-3 .about-content h3 {
line-height: 30px;
font-size: 22px;
}
span.sign {
width: 110px;
}
.header-area.header-area-4 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-4 .logo a {
padding: 8px 0;
}
.header-area.header-area-4 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.header-area-4 .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area-4.stick .header-right-link .slice-btn {
padding: 20px 0px;
}
.intro-4 .slider-content {
margin-top: -85px;
}
.intro-4 .layer-1 h1 {
max-width: 580px;
margin-bottom: 10px;
}
.welcome-3 .well-services,
.welcome-4 .well-services{
padding: 40px 15px 25px;
}
.welcome-3 .number,
.welcome-4 .number {
left: 55%;
}
.welcome-3 .well-icon,
.welcome-4 .well-icon{
display:block;
float: none;
margin-right: 0px;
margin-bottom: 20px;
}
.center-head h3 {
max-width: 590px;
font-size: 26px;
line-height: 36px;
}
.project-3 .awesome-img img {
width: 100%;
}
.project-3 .add-actions {
left: 10%;
top: 13%;
width: 80%;
}
.intro-4 .layer-1 h1{
max-width: inherit;
}
.intro-5 .layer-1 h1 {
line-height: 42px;
}
.intro-5 .layer-2 p {
max-width: 600px;
}
.intro-5 .slider-content {
margin-top: -120px;
}
.video-content {
margin-top: -50px;
}
.team-content {
min-height: 450px;
}
.header-area.header-area-6 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-6 .logo a {
padding: 8px 0;
}
.header-area.header-area-6 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.intro-6 .layer-1 h1 {
font-size: 32px;
line-height: 38px;
}
.intro-6 .slider-content {
margin-top: -70px;
}
.welcome-6 .well-services {
padding: 50px 15px 30px;
}
.intro-2 .intro-content, .intro-2 .slider-images img,
.intro-4 .intro-content, .intro-4 .slider-images img,
.intro-6 .intro-content, .intro-6 .slider-images img {
width: 100%;
height: 100%;
min-height: 430px;
}
span.share-link {
margin-left: 30%;
}
.topbar-left ul li:last-child{
display: none;
}
.footer-5 .footer-about-top {
padding: 60px 30px;
margin-bottom: -179px;
}
.main-menu ul.nav li ul.sub-menu {
left: -50px;
}
.header-area-3.stick .header-right-link a.main-search {
padding: 10px 0px 10px 10px;
}
.header-area-3 .main-menu ul.nav li ul.sub-menu {
left: 0px;
}
.project-headline p {
font-size: 14px;
margin-top: 0;
}
.feature-service h5 {
font-size: 16px;
}
.faq-full {
margin-top: 30px;
}
.fullwidth-service .faq-full {
margin-top: 0px;
}
.add-actions {
padding: 15px;
}
.project-page-4 .project-single {
width: 33.33%;
float: left;
}
.contact-head {
margin-top: 30px;
}
.recent-post .post-img {
display: none;
}
.recent-post .pst-content {
float: none;
width: 100%;
padding-left: 0px;
}
.blog-search-option input {
width: 75%;
}
.blog-details .blog-content h4 {
font-size: 20px;
line-height: 28px;
}
.comments-list-img {
width: 60px;
height: auto;
}
.header-area-6 .header-right-link .slice-btn,
.header-area-6.stick .header-right-link .slice-btn{
padding: 20px 0px;
}
}
/* small mobile :320px. */
@media (max-width: 767px) {
.container {width:300px}
.logo {
height: inherit;
left: 0;
padding: 0;
position: absolute;
top: 4px;
z-index: 999999;
max-width: 130px;
}
.logo a {
padding: 0px;
}
.slider-content {
margin-top: -90px;
}
.intro-3 .slider-content {
margin-top: -105px;
}
.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next,
.testimonial-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.testimonial-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next,
.services-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.services-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next{
display: none !important;
}
.layer-1 {
margin: 5px 0;
}
.layer-1 h1 {
font-size: 26px;
line-height: 34px;
margin-bottom: 20px;
letter-spacing: 0px;
}
.layer-2 p {
display: none;
}
.ready-btn.right-btn {
margin-left: 5px;
}
.ready-btn {
margin-top: 0px;
padding: 6px 0px;
width: 128px;
font-size: 12px;
}
.intro-area {
width: 100%;
height: auto;
min-height: 220px;
margin-top: 0px;
}
.intro-content,
.slider-images img{
width: 100%;
height: 100%;
min-height: 260px;
}
.about-content h3 {
line-height: 28px;
font-size: 20px;
margin-top: 20px;
}
.video-play.vid-zone {
font-size: 24px;
height: 70px;
line-height: 70px;
width: 70px;
}
.left-head {
margin-bottom: 40px;
}
.single-service {
padding: 20px 12px 5px;
}
.fun-content {
padding: 60px 20px;
}
.single-fun {
margin: 15px 0px;
}
.project-headline h3 {
width: 100%;
float: none;
padding-right: 0px;
margin-bottom: 20px;
}
.project-headline p {
width: 100%;
float: none;
padding-left: 0px;
margin-bottom: 40px;
}
.project-headline::after{
display: none;
}
.project-single,
.project-page-2 .project-single,
.project-page-3 .project-single,
.project-page-4 .project-single{
width: 100%;
float: none;
}
.project-menu {
margin: 0px 0px 30px;
}
.project-menu li {
width: 50%;
}
.quote-contact {
padding: 0px 30px;
}
.single-contact {
width: 100%;
float: none;
margin-bottom: 40px;
}
.testi-img {
margin-right: 10px;
}
.testi-img img {
max-width: 60px;
}
.single-testi {
padding: 30px 10px;
}
.testi-text {
padding-left: 75px;
}
.banner-content h3 {
font-size: 24px;
line-height: 32px;
padding: 0px 15px;
}
.single-brand-item {
float: none;
width: 100%;
}
.footer-content{
margin-top: 50px;
}
.footer-about-top {
background: transparent !important;
padding: 91px 0px;
margin-top: 0px;
}
.footer-5 .footer-about-top {
background: none;
}
.about-2 .about-content {
padding: 80px 15px 80px 15px;
}
.single-about {
width: 100%;
float: left;
margin-top: 15px;
}
.services-images {
margin-top: 30px;
}
.choose-content {
padding-left: 95px;
}
.choose-image {
margin-top: 30px;
}
.blog-right-column .blog-image {
display: none;
}
.blog-right-column .blog-content {
float: none;
width: 100%;
padding: 15px 15px;
}
.blog-content a h4 {
font-size: 18px;
}
.welcome-3 .well-icon {
margin-right: 15px;
}
.welcome-3 .number,
.welcome-4 .number{
left: 65%;
}
.counter-2 .single-fun {
margin: 20px 0px;
}
.about-3 .about-content h3 {
line-height: 32px;
font-size: 20px;
}
.about-3 .about-content {
padding: 20px 0px 0px 0px;
}
.sign-date span,
.sign-name{
font-size: 18px;
}
.project-3 .project-single{
width: 100%;
float:none;
}
.project-3 .awesome-img img{
width: 100%;
}
.project-3 .add-actions {
left: 5%;
width: 90%;
opacity: 0;
transition: all 0.5s ease 0s;
}
.project-3 .single-awesome-project:hover .add-actions{
transition: all 0.5s ease 0s;
opacity: 1;
}
.blog-3 .blog-content p{
opacity: 0;
}
.intro-4 .layer-1 h1 {
font-size: 22px;
}
.welcome-4 .well-icon {
margin-right: 15px;
}
.project-menu li a {
font-size: 17px;
}
.comments-content-wrap {
margin: 0 0 15px 85px;
}
.intro-5 .slider-content {
margin-top: -90px;
}
.intro-5 .layer-1 h1 {
line-height: 33px;
font-size: 22px;
}
.center-head h3 {
font-size: 24px;
line-height: 32px;
}
.services-5 .single-service h4 {
padding: 0px 0px;
}
.team-img {
width: 100%;
float: none;
}
.team-content {
width: 100%;
float: none;
min-height: 320px;
}
.intro-6 .layer-1 h1 {
font-size: 22px;
line-height: 34px;
}
.intro-2 .slider-content,
.intro-4 .slider-content,
.intro-6 .slider-content{
margin-top: -55px;
}
.intro-2 .intro-content, .intro-2 .slider-images img,
.intro-4 .intro-content, .intro-4 .slider-images img,
.intro-6 .intro-content, .intro-6 .slider-images img {
width: 100%;
height: 100%;
min-height: 300px;
object-fit: cover;
}
.breadcrumb-bg {
padding: 22px 10px;
}
.faq-page-area .faq-content {
margin-top: 30px;
}
.faq-page-area .faq-content h4 {
font-size: 20px;
}
.company-faq .left-headline h3{
font-size: 24px;
}
.high-text {
font-size: 100px;
line-height: 100px;
}
.high-text span,
.high-text span img{
width: 100px;
height: 100px;
}
.high-text span {
margin-left: -25px;
}
.error-easy-text {
font-size: 24px;
}
.error-bot {
font-size: 18px;
}
.breadcrumb ul li {
font-size: 14px;
}
.breadcrumb .section-headline h3 {
font-size: 32px;
}
.faq-full {
margin-top: 30px;
}
.faq-details h4.check-title {
font-size: 15px;
}
.single-well .marker-list {
margin-bottom: 30px;
}
.breadcrumb-bg {
max-width: 94%;
}
.project-history {
padding: 50px 15px;
margin-top: 30px;
}
.project-details h4 {
font-size: 22px;
line-height: 32px;
margin-top: 20px;
}
.blog-search-option input {
width: 75%;
}
.blog-pagination {
margin-bottom: 30px;
}
.blog-details .blog-content h4 {
font-size: 18px;
line-height: 28px;
}
li.threaded-comments {
margin-left: 10px;
}
.single-post-comments {
margin-bottom: 50px;
}
.contact-head {
padding: 40px 15px;
margin-top: 40px;
}
}
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
.layer-1-2 h1 {
font-size: 24px;
line-height: 32px;
}
.intro-area-4 .layer-1-2 h1 {
font-size: 24px;
line-height: 32px;
}
.service-content h4 {
font-size: 26px;
}
.breadcrumb .section-headline h3 {
font-size: 34px;
}
.container-full .section-headline p {
max-width: 360px;
}
.about-name .video-play.vid-zone {
margin-top: 0px;
}
.single-client {
float: left;
width: 50%;
}
.blog-content a h4 {
font-size: 20px;
}
.intro-content,
.slider-images img{
width: 100%;
height: 100%;
min-height: 300px;
}
.intro-2 .slider-content {
margin-top: -40px;
}
.breadcrumb-bg {
max-width: 80%;
}
.blog-search-option input {
width: 80%;
}
} | public/front_assets/css/responsive.css | @media (min-width: 1920px) {
}
/* Normal desktop :1170px. */
@media (min-width: 1170px) and (max-width: 1349px) {
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
.header-area.stick .main-menu ul.navbar-nav li a {
padding: 28px 0px;
}
.well-services {
padding: 30px 15px;
}
.number{
font-size: 150px;
}
.single-service {
padding: 20px 12px 5px;
}
.single-service h4 {
font-size: 19px;
}
.fun-content {
padding: 60px 20px;
}
.project-headline h3 {
font-size: 25px;
}
.single-awesome-project:hover .add-actions {
top: 10%;
}
.quote-contact {
padding: 0px 30px;
}
.single-contact {
padding-right: 10px;
}
.single-contact span {
font-size: 15px;
}
.blog-content {
padding: 30px 10px;
}
.blog-content a h4 {
font-size: 17px;
}
.blog-content p {
font-size: 14px;
}
span.share-link {
margin-left: 20%;
}
.intro-2 .layer-1 h1 {
max-width: 880px;
}
.about-content h3 {
font-size: 24px;
}
span.about-icon {
float: none;
display: block;
}
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
.header-area .main-menu ul.navbar-nav > li > a {
font-size: 12px;
margin: 0px 11px;
padding: 30px 0px;
}
.header-area.stick .header-right-link a.main-search {
padding: 17px 0px 18px 5px;
}
.header-area-2 .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area-2.stick .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area .header-right-link .slice-btn {
padding: 28px 0px;
}
.header-area.stick .header-right-link .slice-btn {
padding: 24px 0px;
}
.header-area.stick .main-menu ul.navbar-nav > li > a{
font-size: 12px;
margin: 0px 11px;
padding: 27px 0px;
}
.header-area.stick .logo a {
padding: 11px 0;
}
.logo a {
padding: 13px 0;
}
.header-right-link a.main-search {
padding: 20px 0px 20px 5px;
}
.layer-1 h1 {
font-size: 34px;
line-height: 44px;
margin: 10px 0px;
max-width: 630px;
}
.layer-2 p {
max-width: 550px;
font-size: 18px;
line-height: 26px;
}
.slider-content {
margin-top: -135px;
}
.about-content p{
display: none;
}
.about-content h3 {
line-height: 28px;
font-size: 20px;
margin-bottom: 0px;
}
.left-head h4 {
font-size: 20px;
}
.single-service {
padding: 20px 15px 5px;
}
.fun-content {
padding: 60px 10px;
}
.quote-contact {
padding: 0px 30px;
}
.project-headline h3 {
font-size: 20px;
line-height: 28px;
padding-right: 15px;
}
.project-headline p {
padding-left: 15px;
}
.project-single {
width: 50%;
}
.testi-img img{
max-width: 80px;
}
.brand-items {
padding: 0px 10px;
}
.banner-content h3 {
font-size: 24px;
padding: 0px 20px;
}
.blog-content a h4 {
font-size: 16px;
}
.footer-services-link ul.footer-list {
width: 100%;
float: none;
}
.footer-icons ul li a {
margin-right: 0px;
}
.header-area.header-area-2 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-2 .logo a {
padding: 8px 0;
}
.header-area.header-area-2 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.intro-2 .layer-1 h1 {
max-width: 580px;
}
.intro-2 .layer-2 p {
max-width: 560px;
}
.intro-2 .slider-content {
margin-top: -80px;
}
.about-2 .about-content {
padding: 80px 30px 80px 30px;
}
span.about-icon {
float: none;
margin-right: 0px;
display: block;
margin-bottom: 10px;
}
.blog-right-column .blog-image {
display: none;
}
.blog-right-column .blog-content {
width: 100%;
}
.header-area.header-area-3 .main-menu ul.navbar-nav > li > a {
padding: 20px 0px;
}
.header-area-3 .header-right-link .slice-btn,
.header-area-3.stick .header-right-link .slice-btn {
padding: 18px 0px;
}
.header-middle-area .header-info:first-child {
display: none;
}
.header-middle-area .header-info {
width: 50%;
float: left;
}
.about-3 .about-content {
padding: 0px;
}
.about-3 .about-content h3 {
line-height: 30px;
font-size: 22px;
}
span.sign {
width: 110px;
}
.header-area.header-area-4 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-4 .logo a {
padding: 8px 0;
}
.header-area.header-area-4 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.header-area-4 .header-right-link .slice-btn {
padding: 20px 0px;
}
.header-area-4.stick .header-right-link .slice-btn {
padding: 20px 0px;
}
.intro-4 .slider-content {
margin-top: -85px;
}
.intro-4 .layer-1 h1 {
max-width: 580px;
margin-bottom: 10px;
}
.welcome-3 .well-services,
.welcome-4 .well-services{
padding: 40px 15px 25px;
}
.welcome-3 .number,
.welcome-4 .number {
left: 55%;
}
.welcome-3 .well-icon,
.welcome-4 .well-icon{
display:block;
float: none;
margin-right: 0px;
margin-bottom: 20px;
}
.center-head h3 {
max-width: 590px;
font-size: 26px;
line-height: 36px;
}
.project-3 .awesome-img img {
width: 100%;
}
.project-3 .add-actions {
left: 10%;
top: 13%;
width: 80%;
}
.intro-4 .layer-1 h1{
max-width: inherit;
}
.intro-5 .layer-1 h1 {
line-height: 42px;
}
.intro-5 .layer-2 p {
max-width: 600px;
}
.intro-5 .slider-content {
margin-top: -120px;
}
.video-content {
margin-top: -50px;
}
.team-content {
min-height: 450px;
}
.header-area.header-area-6 .main-menu ul.navbar-nav > li > a {
padding: 22px 0px;
}
.header-area.header-area-6 .logo a {
padding: 8px 0;
}
.header-area.header-area-6 .header-right-link a.main-search {
padding: 12px 0px 12px 5px;
}
.intro-6 .layer-1 h1 {
font-size: 32px;
line-height: 38px;
}
.intro-6 .slider-content {
margin-top: -70px;
}
.welcome-6 .well-services {
padding: 50px 15px 30px;
}
.intro-2 .intro-content, .intro-2 .slider-images img,
.intro-4 .intro-content, .intro-4 .slider-images img,
.intro-6 .intro-content, .intro-6 .slider-images img {
width: 100%;
height: 100%;
min-height: 430px;
}
span.share-link {
margin-left: 30%;
}
.topbar-left ul li:last-child{
display: none;
}
.footer-5 .footer-about-top {
padding: 60px 30px;
margin-bottom: -179px;
}
.main-menu ul.nav li ul.sub-menu {
left: -50px;
}
.header-area-3.stick .header-right-link a.main-search {
padding: 10px 0px 10px 10px;
}
.header-area-3 .main-menu ul.nav li ul.sub-menu {
left: 0px;
}
.project-headline p {
font-size: 14px;
margin-top: 0;
}
.feature-service h5 {
font-size: 16px;
}
.faq-full {
margin-top: 30px;
}
.fullwidth-service .faq-full {
margin-top: 0px;
}
.add-actions {
padding: 15px;
}
.project-page-4 .project-single {
width: 33.33%;
float: left;
}
.contact-head {
margin-top: 30px;
}
.recent-post .post-img {
display: none;
}
.recent-post .pst-content {
float: none;
width: 100%;
padding-left: 0px;
}
.blog-search-option input {
width: 75%;
}
.blog-details .blog-content h4 {
font-size: 20px;
line-height: 28px;
}
.comments-list-img {
width: 60px;
height: auto;
}
.header-area-6 .header-right-link .slice-btn,
.header-area-6.stick .header-right-link .slice-btn{
padding: 20px 0px;
}
}
/* small mobile :320px. */
@media (max-width: 767px) {
.container {width:300px}
.logo {
height: inherit;
left: 0;
padding: 0;
position: absolute;
top: 4px;
z-index: 999999;
max-width: 130px;
}
.logo a {
padding: 0px;
}
.slider-content {
margin-top: -90px;
}
.intro-3 .slider-content {
margin-top: -105px;
}
.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.intro-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next,
.testimonial-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.testimonial-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next,
.services-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev,
.services-carousel.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next{
display: none !important;
}
.layer-1 {
margin: 5px 0;
}
.layer-1 h1 {
font-size: 26px;
line-height: 34px;
margin-bottom: 20px;
letter-spacing: 0px;
}
.layer-2 p {
display: none;
}
.ready-btn.right-btn {
margin-left: 5px;
}
.ready-btn {
margin-top: 0px;
padding: 6px 0px;
width: 128px;
font-size: 12px;
}
.intro-area {
width: 100%;
height: auto;
min-height: 220px;
margin-top: 0px;
}
.intro-content,
.slider-images img{
width: 100%;
height: 100%;
min-height: 260px;
}
.about-content h3 {
line-height: 28px;
font-size: 20px;
margin-top: 20px;
}
.video-play.vid-zone {
font-size: 24px;
height: 70px;
line-height: 70px;
width: 70px;
}
.left-head {
margin-bottom: 40px;
}
.single-service {
padding: 20px 12px 5px;
}
.fun-content {
padding: 60px 20px;
}
.single-fun {
margin: 15px 0px;
}
.project-headline h3 {
width: 100%;
float: none;
padding-right: 0px;
margin-bottom: 20px;
}
.project-headline p {
width: 100%;
float: none;
padding-left: 0px;
margin-bottom: 40px;
}
.project-headline::after{
display: none;
}
.project-single,
.project-page-2 .project-single,
.project-page-3 .project-single,
.project-page-4 .project-single{
width: 100%;
float: none;
}
.project-menu {
margin: 0px 0px 30px;
}
.project-menu li {
width: 50%;
}
.quote-contact {
padding: 0px 30px;
}
.single-contact {
width: 100%;
float: none;
margin-bottom: 40px;
}
.testi-img {
margin-right: 10px;
}
.testi-img img {
max-width: 60px;
}
.single-testi {
padding: 30px 10px;
}
.testi-text {
padding-left: 75px;
}
.banner-content h3 {
font-size: 24px;
line-height: 32px;
padding: 0px 15px;
}
.single-brand-item {
float: none;
width: 100%;
}
.footer-content{
margin-top: 50px;
}
.footer-about-top {
background: transparent !important;
padding: 91px 0px;
margin-top: 0px;
}
.footer-5 .footer-about-top {
background: none;
}
.about-2 .about-content {
padding: 80px 15px 80px 15px;
}
.single-about {
width: 100%;
float: left;
margin-top: 15px;
}
.services-images {
margin-top: 30px;
}
.choose-content {
padding-left: 95px;
}
.choose-image {
margin-top: 30px;
}
.blog-right-column .blog-image {
display: none;
}
.blog-right-column .blog-content {
float: none;
width: 100%;
padding: 15px 15px;
}
.blog-content a h4 {
font-size: 18px;
}
.welcome-3 .well-icon {
margin-right: 15px;
}
.welcome-3 .number,
.welcome-4 .number{
left: 65%;
}
.counter-2 .single-fun {
margin: 20px 0px;
}
.about-3 .about-content h3 {
line-height: 32px;
font-size: 20px;
}
.about-3 .about-content {
padding: 20px 0px 0px 0px;
}
.sign-date span,
.sign-name{
font-size: 18px;
}
.project-3 .project-single{
width: 100%;
float:none;
}
.project-3 .awesome-img img{
width: 100%;
}
.project-3 .add-actions {
left: 5%;
width: 90%;
opacity: 0;
transition: all 0.5s ease 0s;
}
.project-3 .single-awesome-project:hover .add-actions{
transition: all 0.5s ease 0s;
opacity: 1;
}
.blog-3 .blog-content p{
opacity: 0;
}
.intro-4 .layer-1 h1 {
font-size: 22px;
}
.welcome-4 .well-icon {
margin-right: 15px;
}
.project-menu li a {
font-size: 17px;
}
.comments-content-wrap {
margin: 0 0 15px 85px;
}
.intro-5 .slider-content {
margin-top: -90px;
}
.intro-5 .layer-1 h1 {
line-height: 33px;
font-size: 22px;
}
.center-head h3 {
font-size: 24px;
line-height: 32px;
}
.services-5 .single-service h4 {
padding: 0px 0px;
}
.team-img {
width: 100%;
float: none;
}
.team-content {
width: 100%;
float: none;
min-height: 320px;
}
.intro-6 .layer-1 h1 {
font-size: 22px;
line-height: 34px;
}
.intro-2 .slider-content,
.intro-4 .slider-content,
.intro-6 .slider-content{
margin-top: -55px;
}
.intro-2 .intro-content, .intro-2 .slider-images img,
.intro-4 .intro-content, .intro-4 .slider-images img,
.intro-6 .intro-content, .intro-6 .slider-images img {
width: 100%;
height: 100%;
min-height: 300px;
object-fit: cover;
}
.breadcrumb-bg {
padding: 22px 10px;
}
.faq-page-area .faq-content {
margin-top: 30px;
}
.faq-page-area .faq-content h4 {
font-size: 20px;
}
.company-faq .left-headline h3{
font-size: 24px;
}
.high-text {
font-size: 100px;
line-height: 100px;
}
.high-text span,
.high-text span img{
width: 100px;
height: 100px;
}
.high-text span {
margin-left: -25px;
}
.error-easy-text {
font-size: 24px;
}
.error-bot {
font-size: 18px;
}
.breadcrumb ul li {
font-size: 14px;
}
.breadcrumb .section-headline h3 {
font-size: 32px;
}
.faq-full {
margin-top: 30px;
}
.faq-details h4.check-title {
font-size: 15px;
}
.single-well .marker-list {
margin-bottom: 30px;
}
.breadcrumb-bg {
max-width: 94%;
}
.project-history {
padding: 50px 15px;
margin-top: 30px;
}
.project-details h4 {
font-size: 22px;
line-height: 32px;
margin-top: 20px;
}
.blog-search-option input {
width: 75%;
}
.blog-pagination {
margin-bottom: 30px;
}
.blog-details .blog-content h4 {
font-size: 18px;
line-height: 28px;
}
li.threaded-comments {
margin-left: 10px;
}
.single-post-comments {
margin-bottom: 50px;
}
.contact-head {
padding: 40px 15px;
margin-top: 40px;
}
}
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
.layer-1-2 h1 {
font-size: 24px;
line-height: 32px;
}
.intro-area-4 .layer-1-2 h1 {
font-size: 24px;
line-height: 32px;
}
.service-content h4 {
font-size: 26px;
}
.breadcrumb .section-headline h3 {
font-size: 34px;
}
.container-full .section-headline p {
max-width: 360px;
}
.about-name .video-play.vid-zone {
margin-top: 0px;
}
.single-client {
float: left;
width: 50%;
}
.blog-content a h4 {
font-size: 20px;
}
.intro-content,
.slider-images img{
width: 100%;
height: 100%;
min-height: 300px;
}
.intro-2 .slider-content {
margin-top: -40px;
}
.breadcrumb-bg {
max-width: 80%;
}
.blog-search-option input {
width: 80%;
}
} | 0.168823 | 0.111338 |
*{
margin: 0;
padding: 0;
font-family: 'poppins',sans-serif;
box-sizing: border-box;
}
a{
text-decoration: none;
color: #5a5a5a;
}
img{
cursor: pointer;
}
.flex-div{
display: flex;
align-items: center;
}
nav{
padding: 10px 2%;
justify-content: space-between;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
background: #fff;
position: sticky;
top: 0;
z-index: 10;
}
.nav-right img{
width: 25px;
margin-right: 25px;
}
.nav-right .user-icon{
width: 25px;
border-radius: 50%;
margin-right: 0;
}
.nav-left .menu-icon{
width: 22px;
margin-right: 25px;
}
.nav-left .logo{
width: 100px;
}
.nav-middle .mic-icon{
width: 16px;
}
.nav-middle .search-box{
border:1px solid #ccc;
margin-right: 15px;
padding: 8px 12px;
border-radius: 25px;
}
.nav-middle .search-box input{
width: 400px;
border: 0;
outline: 0;
background: transparent;
}
.nav-middle .search-box img{
width: 20px;
}
.sidebar{
background: #fff;
width: 15%;
height: 100vh;
position: fixed;
top: 0;
padding-left: 2%;
padding-top: 80px;
}
.shortcut-links a img{
width: 20px;
margin-right: 20px;
}
.shortcut-links a{
display: flex;
align-items: center;
margin-bottom: 20px;
width: fit-content;
flex-wrap: wrap;
}
.shortcut-links a:first-child{
color: #ed3833;
}
.sidebar hr{
border: 0;
height: 1px;
background: #ccc;
width: 85%;
}
.subscribed-list h3{
font-size: 13px;
margin: 20px 0;
color:#5a5a5a ;
}
.subscribed-list a{
display: flex;
align-items: center;
margin-bottom: 20px;
width: fit-content;
flex-wrap: wrap;
}
.subscribed-list a img{
width: 25px;
border-radius: 50%;
margin-right: 20px;
}
.small-sidebar{
width: 5%;
}
.small-sidebar a p{
display: none;
}
.small-sidebar h3{
display: none;
}
.small-sidebar hr{
width: 50%;
margin-bottom: 25px;
}
.container{
background: #f9f9f9;
padding-right: 2%;
padding-left: 17%;
padding-top: 20px;
padding-bottom: 20px;
}
.banner{
width: 100%;
}
.banner img{
width: 100%;
border-radius: 8px;
}
.list-container{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
grid-column-gap:16px ;
grid-row-gap: 30px;
margin-top: 15px;
}
.vid-list .thumbnail{
width: 100%;
border-radius: 5px;
}
.vid-list .flex-div{
align-items: flex-start;
margin-top: 7px;
}
.vid-list .flex-div img{
width: 35px;
margin-right: 10px;
border-radius: 50%;
} | style.css | *{
margin: 0;
padding: 0;
font-family: 'poppins',sans-serif;
box-sizing: border-box;
}
a{
text-decoration: none;
color: #5a5a5a;
}
img{
cursor: pointer;
}
.flex-div{
display: flex;
align-items: center;
}
nav{
padding: 10px 2%;
justify-content: space-between;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
background: #fff;
position: sticky;
top: 0;
z-index: 10;
}
.nav-right img{
width: 25px;
margin-right: 25px;
}
.nav-right .user-icon{
width: 25px;
border-radius: 50%;
margin-right: 0;
}
.nav-left .menu-icon{
width: 22px;
margin-right: 25px;
}
.nav-left .logo{
width: 100px;
}
.nav-middle .mic-icon{
width: 16px;
}
.nav-middle .search-box{
border:1px solid #ccc;
margin-right: 15px;
padding: 8px 12px;
border-radius: 25px;
}
.nav-middle .search-box input{
width: 400px;
border: 0;
outline: 0;
background: transparent;
}
.nav-middle .search-box img{
width: 20px;
}
.sidebar{
background: #fff;
width: 15%;
height: 100vh;
position: fixed;
top: 0;
padding-left: 2%;
padding-top: 80px;
}
.shortcut-links a img{
width: 20px;
margin-right: 20px;
}
.shortcut-links a{
display: flex;
align-items: center;
margin-bottom: 20px;
width: fit-content;
flex-wrap: wrap;
}
.shortcut-links a:first-child{
color: #ed3833;
}
.sidebar hr{
border: 0;
height: 1px;
background: #ccc;
width: 85%;
}
.subscribed-list h3{
font-size: 13px;
margin: 20px 0;
color:#5a5a5a ;
}
.subscribed-list a{
display: flex;
align-items: center;
margin-bottom: 20px;
width: fit-content;
flex-wrap: wrap;
}
.subscribed-list a img{
width: 25px;
border-radius: 50%;
margin-right: 20px;
}
.small-sidebar{
width: 5%;
}
.small-sidebar a p{
display: none;
}
.small-sidebar h3{
display: none;
}
.small-sidebar hr{
width: 50%;
margin-bottom: 25px;
}
.container{
background: #f9f9f9;
padding-right: 2%;
padding-left: 17%;
padding-top: 20px;
padding-bottom: 20px;
}
.banner{
width: 100%;
}
.banner img{
width: 100%;
border-radius: 8px;
}
.list-container{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
grid-column-gap:16px ;
grid-row-gap: 30px;
margin-top: 15px;
}
.vid-list .thumbnail{
width: 100%;
border-radius: 5px;
}
.vid-list .flex-div{
align-items: flex-start;
margin-top: 7px;
}
.vid-list .flex-div img{
width: 35px;
margin-right: 10px;
border-radius: 50%;
} | 0.366703 | 0.057705 |
body
{
font: normal medium 'Gill Sans', 'Gill Sans MT', 'Goudy Bookletter 1911', 'Linux Libertine O', 'Liberation Serif', Candara, serif;
line-height: 1.75;
word-spacing: 0.1em;
margin: 1em 0;
padding: 0;
}
nav
{
overflow: hidden;
}
nav ul
{
margin: 0;
padding: 0.5em 1em 0 0;
text-align: left;
border-bottom: 0.1em black solid;
list-style-type: none;
}
nav li
{
display: inline;
margin: 0 0 0 1em;
padding: 0.4em 1em 0.20em 1em;
border-top: 0.1em black solid;
border-left: 0.1em black solid;
border-right: 0.1em black solid;
border-radius: 0.5em 0.5em 0 0;
}
.selected
{
border-bottom: 0.3em white solid;
}
.unselected
{
padding-bottom: 0.5em;
color: #24B;
cursor: pointer;
text-decoration: underline;
}
.option-body
{
padding: 1em;
}
.changelog
{
margin: 0 0 1em 0.5em;
}
.changelog h1
{
font-size: smaller;
margin: 0;
padding: 0;
}
.changelog time
{
font-size: smaller;
}
.changelog ul
{
margin: 0 0 0 2em;
padding: 0 1em 0 0;
}
.changelog li
{
margin: 0 0 0 1em;
paddding: 0 0 0 1em;
}
.hidden
{
visibility: hidden;
display: none;
}
.visible
{
visibility: visible;
display: block;
}
.explanation
{
margin: 0.5em;
}
.explanation dl
{
display: inline;
margin: 0 0 0 1em;
}
.explanation dt
{
display: inline;
font-weight: bold;
}
.explanation dd
{
display: inline;
margin: 0 2em 0 0.5em;
}
dl#contextMenusFormat
{
border-style: dotted;
border-color: gray;
padding: 1em 2em 1em 1em;
margin: 1em;
}
#contextMenusFormat dt
{
display: inline;
font-weight: bold;
}
#contextMenusFormat dd
{
display: inline;
margin: 1em 0 1em 1em;
}
#context-menus-format
{
line-height: 100%;
}
#context-menus-format input.format
{
height: 1.1em;
line-height: inherit;
font: inherit;
}
dl#notificationsRadio
{
border-style: dotted;
border-color: gray;
padding: 1em 2em 1em 1em;
margin: 1em;
}
#notificationsRadio dt
{
font-weight: bold;
}
#notificationsRadio dd
{
margin: 0 2em 1em 2em;
}
#notification-time
{
margin-right: 1em;
}
input.notification-style
{
margin: 0 1em 0 0;
}
.button
{
display: inline;
padding: 0.2em;
color: #24B;
cursor: pointer;
text-decoration: underline;
}
.button-disabled
{
display: inline;
padding: 0.2em;
}
.icon-button
{
position: relative;
top: -20%;
width: 1em;
height: 1em;
cursor: pointer;
}
.icon-container
{
width: 1em;
height: 1em;
margin: auto;
vertical-align: middle;
}
.add-icon
{
position: relative;
top: -10%;
width: 1em;
height: 1em;
cursor: pointer;
}
.add-icon-container
{
display: inline;
width: 1em;
height: 1em;
margin: auto;
vertical-align: middle;
}
.status-success
{
color: #339966;
}
.status-noaccess
{
color: #000000;
}
.status-error
{
color: #cc0000;
}
ul.menu
{
display: inline;
list-style: none;
}
ul.menu li
{
display: inline;
margin: 0 2em 0 0;
}
table
{
border-style: dotted;
padding: 1em 1em 1em 1em;
margin: 1em;
border-spacing: 1em 0.1em;
}
tr {
text-align: left;
}
th {
margin-right: 1em;
}
#shortcutsTable
{
width: 97%;
}
#shortcutsTable th.move
{
text-align: center;
width: 6%;
}
#shortcutsTable td.move
{
text-align: center;
}
#shortcutsTable th.enable
{
width: 5%;
text-align: center;
}
#shortcutsTable td.enable
{
text-align: center;
}
#shortcutsTable th.format
{
width: 35%;
}
#shortcutsTable td.format
{
line-height: 100%;
}
#shortcutsTable input.format
{
height: 1.1em;
line-height: inherit;
font: inherit;
}
#shortcutsTable th.shortener
{
width: 12.5%;
}
#shortcutsTable th.key
{
width: 30%;
}
#shortcutsTable th.copy
{
text-align: center;
width: 5%;
}
#shortcutsTable th.delete
{
text-align: center;
width: 6.5%;
}
#shortenersTable
{
width: 97%;
}
#shortenersTable th.shortener
{
width: 10%;
text-align: center;
}
#shortenersTable td.shortener
{
text-align: center;
}
#shortenersTable th.status
{
width: 50%;
}
#shortenersTable th.grant
{
width: 20%;
}
#shortenersTable th.revoke
{
width: 20%;
} | stylesheets/options.css | body
{
font: normal medium 'Gill Sans', 'Gill Sans MT', 'Goudy Bookletter 1911', 'Linux Libertine O', 'Liberation Serif', Candara, serif;
line-height: 1.75;
word-spacing: 0.1em;
margin: 1em 0;
padding: 0;
}
nav
{
overflow: hidden;
}
nav ul
{
margin: 0;
padding: 0.5em 1em 0 0;
text-align: left;
border-bottom: 0.1em black solid;
list-style-type: none;
}
nav li
{
display: inline;
margin: 0 0 0 1em;
padding: 0.4em 1em 0.20em 1em;
border-top: 0.1em black solid;
border-left: 0.1em black solid;
border-right: 0.1em black solid;
border-radius: 0.5em 0.5em 0 0;
}
.selected
{
border-bottom: 0.3em white solid;
}
.unselected
{
padding-bottom: 0.5em;
color: #24B;
cursor: pointer;
text-decoration: underline;
}
.option-body
{
padding: 1em;
}
.changelog
{
margin: 0 0 1em 0.5em;
}
.changelog h1
{
font-size: smaller;
margin: 0;
padding: 0;
}
.changelog time
{
font-size: smaller;
}
.changelog ul
{
margin: 0 0 0 2em;
padding: 0 1em 0 0;
}
.changelog li
{
margin: 0 0 0 1em;
paddding: 0 0 0 1em;
}
.hidden
{
visibility: hidden;
display: none;
}
.visible
{
visibility: visible;
display: block;
}
.explanation
{
margin: 0.5em;
}
.explanation dl
{
display: inline;
margin: 0 0 0 1em;
}
.explanation dt
{
display: inline;
font-weight: bold;
}
.explanation dd
{
display: inline;
margin: 0 2em 0 0.5em;
}
dl#contextMenusFormat
{
border-style: dotted;
border-color: gray;
padding: 1em 2em 1em 1em;
margin: 1em;
}
#contextMenusFormat dt
{
display: inline;
font-weight: bold;
}
#contextMenusFormat dd
{
display: inline;
margin: 1em 0 1em 1em;
}
#context-menus-format
{
line-height: 100%;
}
#context-menus-format input.format
{
height: 1.1em;
line-height: inherit;
font: inherit;
}
dl#notificationsRadio
{
border-style: dotted;
border-color: gray;
padding: 1em 2em 1em 1em;
margin: 1em;
}
#notificationsRadio dt
{
font-weight: bold;
}
#notificationsRadio dd
{
margin: 0 2em 1em 2em;
}
#notification-time
{
margin-right: 1em;
}
input.notification-style
{
margin: 0 1em 0 0;
}
.button
{
display: inline;
padding: 0.2em;
color: #24B;
cursor: pointer;
text-decoration: underline;
}
.button-disabled
{
display: inline;
padding: 0.2em;
}
.icon-button
{
position: relative;
top: -20%;
width: 1em;
height: 1em;
cursor: pointer;
}
.icon-container
{
width: 1em;
height: 1em;
margin: auto;
vertical-align: middle;
}
.add-icon
{
position: relative;
top: -10%;
width: 1em;
height: 1em;
cursor: pointer;
}
.add-icon-container
{
display: inline;
width: 1em;
height: 1em;
margin: auto;
vertical-align: middle;
}
.status-success
{
color: #339966;
}
.status-noaccess
{
color: #000000;
}
.status-error
{
color: #cc0000;
}
ul.menu
{
display: inline;
list-style: none;
}
ul.menu li
{
display: inline;
margin: 0 2em 0 0;
}
table
{
border-style: dotted;
padding: 1em 1em 1em 1em;
margin: 1em;
border-spacing: 1em 0.1em;
}
tr {
text-align: left;
}
th {
margin-right: 1em;
}
#shortcutsTable
{
width: 97%;
}
#shortcutsTable th.move
{
text-align: center;
width: 6%;
}
#shortcutsTable td.move
{
text-align: center;
}
#shortcutsTable th.enable
{
width: 5%;
text-align: center;
}
#shortcutsTable td.enable
{
text-align: center;
}
#shortcutsTable th.format
{
width: 35%;
}
#shortcutsTable td.format
{
line-height: 100%;
}
#shortcutsTable input.format
{
height: 1.1em;
line-height: inherit;
font: inherit;
}
#shortcutsTable th.shortener
{
width: 12.5%;
}
#shortcutsTable th.key
{
width: 30%;
}
#shortcutsTable th.copy
{
text-align: center;
width: 5%;
}
#shortcutsTable th.delete
{
text-align: center;
width: 6.5%;
}
#shortenersTable
{
width: 97%;
}
#shortenersTable th.shortener
{
width: 10%;
text-align: center;
}
#shortenersTable td.shortener
{
text-align: center;
}
#shortenersTable th.status
{
width: 50%;
}
#shortenersTable th.grant
{
width: 20%;
}
#shortenersTable th.revoke
{
width: 20%;
} | 0.540681 | 0.167832 |
body {
background: #bfcacc;
}
div#header {
background: url('../img/home-bg.jpg') center center no-repeat;
background-size: cover;
margin-top: -72px;
padding: 120px;
}
#header h1 {
position: relative;
top: -20px;
left: -40px;
color: #5afcb9;
}
#header cite {
font-size: 16px;
color: #ccbcb7;
position: relative;
top: -20px;
left: -20px;
}
#logo {
background: #dce2e2;
padding: 0 20px 0 20px;
}
#userForm {
margin-bottom: 10px;
margin-left: 10px;
}
.navbar-brand {
position: relative;
right: -100px;
top: 10px;
box-shadow: 2px 4px 4px none;
text-shadow: 2px 3px 4px #aaa; font-weight: bold;
font-size: 20px;
}
.navbar-brand:hover {
text-decoration: underline;
/*background: #b2b0b0;*/
}
.navbar-brand:active {
transition: 0.5s;
top: 15px;
}
#navigation li a:hover {
color: #0a0909;
text-decoration: underline;
background: #7a4233;
font-size: 15px;
}
.loggedPost {
position: relative;
left: 400px;
}
.loggedPost a:hover {
font-size: 14px;
color: #fff;
}
.nav li {
margin: 0 20px;
color: #c9dbdb;
}
.nav li a {
/*font-size: 15px;*/
font-weight: bold;
}
#navigation li a {
color: #c9dbdb;
font-size: 14px;
}
#postCategory {
background: #7c7a7a;
border: solid 1px #9e9191;
box-shadow: 8px 9px 9px #474343;
padding: 5px;
/*margin-left: -10px;*/
text-align: center;
}
#postCategory h3 {
text-align: center;
border-bottom: solid 1px #edeaea;
color: #e27c96;
margin-top: 10px;
font-size: 22px;
}
#postCategory ul li {
list-style: none;
margin: 7px 0;
/*border: solid 1px #896565;*/
}
#postCategory ul li a {
color: #87dddd;
font-size: 14px;
border-bottom: solid 1px #aaa;
font-weight: bold;
margin-left: -50px;
}
#postType option {
color: blue;
}
#postCategory ul li a:hover {
color: #3baaaf;
text-decoration: none;
}
#postCategory ul li a:active {
color: #fcf9f9;
}
#postContent {
border: solid 1px #aab4b5;
box-sizing: border;
padding: 20px;
border-radius: 10px;
background: #edf2f2;
position: relative;
right: -10px;
}
#postContent h2 {
text-align: center;
margin-top: 0;
text-decoration: underline;
text-shadow: 1px 2px 5px #c5cbcc;
}
#contactForm {
background: #c0d0d3;
position: relative;
right: -150px;
padding: 20px;
border-radius: 10px;
}
#notice {
/*text-align: justify;*/
box-sizing: border;
padding: 20px;
border: solid 1px #829ea0;
box-shadow: 2px 4px 4px #74797a;
background: #f4c5b5;
border-radius: 10px;
position: relative;
left: 10px;
}
#notice h4 {
font-size: 18px;
font-weight: bold;
text-align: center;
margin: -5px 0 0 0;
/*margin: -5px 0 0;*/
border-bottom: solid 1px #3b4049;
}
.profile {
position: relative;
left: -10px;
}
#notice > .profile span {
font-size: 11px;
font-weight: bold;
}
#notice p {
font-weight: bold;
font-size: 12px;
}
#notice p span {
font-size: 12px;
color: #9b3e4c;
}
#notice label {
border: solid 1px #bbb;
padding: 2px;
position: relative;
right: -15px;
}
#notice button {
position: relative;
right: -60px;
font-size: 10px
}
#notice img {
position: relative;
left: 50px;
}
footer {
background: #222323;
color: #c0c3c6;
}
#foot-contact p {
color: #24c1bf;
}
#allcomment {
color: #59ace0;
text-decoration: underline;
font-weight: bold;
font-size: 20px;
position: relative;
left: 20px;
}
#totalComment {
font-weight: bold;
position: relative;
left: 18px;
}
#commentBox {
margin-top: 30px;
padding: 5px;
margin: 10px;
}
#commentBox h4 {
background: #98e0e0;
padding: 7px;
font-size: 14px;
font-weight: bold;
}
#commentBox h4 small {
font-weight: bold;
font-size: 12px;
color: #bf511e;
}
#commentBox p {
white-space: pre-wrap;
background: #dbdbdb;
padding: 5px;
margin-top: -10px;
text-align: justify;
font-size: 13px;
/*margin-left: 10px;*/
}
.replyForm {
font-size: 14px;
position: relative;
right: 18px;
}
.replyForm label {
font-size: 12px;
}
.replyForm button {
background: #c1baba;
position: relative;
top: -46px;
border: none;
color: #000;
}
.replyForm textarea[type=text] {
width: 115%;
}
#commentReplies {
margin-left: 70px;
position: relative;
top: -10px;
width: 88%;
margin-bottom: 10px;
}
#commentReplies h6 {
background: #91c2e0;
padding: 5px;
color: #9b2912;
font-size: 14px;
font-weight: bold;
}
#commentReplies h6 small {
font-weight: bold;
}
#commentReplies p {
background: #d8cca6;
font-size: 12px;
padding: 5px;
margin-top: -10px;
}
#posts {
border: solid 1px none;
background: #f2f2f2;
padding: 10px;
margin: 10px 0;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#posts1 {
/*border: solid 1px none;*/
background: #f2f2f2;
padding: 10px;
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#totalComments {
background: #e8eaea;
width: 100%;
padding: 6px;
position: relative;
bottom: 10px;
}
#totalComments a {
position: relative;
left: 730px;
font-size: 13px;
font-weight: bold;
}
.userEdit {
font-size: 8px;
text-decoration: underline; font-weight: bold;
/*margin: 0 5px;*/
position: relative; right: -10px;
}
.cmnt {
font-weight: bold;
font-size: 14px;
color: #a88888;
margin: 0 5px;
}
.profileHeader {
position: relative;
bottom: 20px;
text-align: center;
border: solid 1px #aaa;
padding: 5px;
}
.files {
font-size: 11px;
position: relative;
bottom: 15px;
width: 100%;
}
.proBtn {
font-size: 10px;
position: relative;
bottom: 13px;
}
.proTag {
position: relative;
bottom: 20px;
right: 10px;
font-size: 11px;
text-align: center;
}
.files2 {
width: 82%;
position: relative;
right: 10px;
top: 2px;
font-size: 10px;
}
.proBtn2 {
font-size: 10px;
position: relative;
left: 120px;
bottom: 25px;
border: none;
}
.pagination {
display: inline;
list-style: none;
margin: 0 10px;
border: solid 1px #aaa;
text-align: center;
padding: 5px;
box-shadow: 2px 4px 5px #757171;
background: #5cb9c9;
border-radius: 10px;
font-weight: bold;
font-size: 11px;
}
.pagination2 {
text-align: center;
}
/*=====================================================================================================================
Admin Panels Style
======================================================================================================================*/
#adminBody {
background: #c1c1c1;
}
.sidebar {
position: fixed;
top: 50px;
bottom: 0;
left: 0;
/*right: 0;*/
width: 200px;
/*z-index: 1000;*/
/*display: block;*/
padding: 20px;
overflow-x: hidden;
overflow-y: auto;
background-color: #2b2b2a;
border-right: 1px solid none;
}
.nav-sidebar > li { width: 130%; }
.nav-sidebar > li > a {
position: relative;
right: 40px;
font-size: 12px;
color: #545656;
font-weight: bold;
color: #d3d3cf;
}
.nav-sidebar a:hover,
.nav-sidebar > .active > a:focus {
font-weight: bold;
background-color: #428bca;
color: #545656;
width: 120%;
}
.nav-sidebar > .active > a {
color: black;
font-weight: bold;
background-color: #428bca;
}
#adminHome {
position: relative;
left: 140px;
top: 200px;
}
#adminHome > .boxs {
width: 214px;
height: 200px;
padding: 20px;
box-sizing: border;
border: solid 2px none;
border-radius: 10px;
margin: 20px 50px;
background: #ccab80;
box-shadow: 3px 5px 7px #424444;
}
#adminHome > .boxs > strong
{
display: block;
text-align: center;
position: relative;
top: 40px;
font-weight: bold;
}
#adminHome > .boxs > a {
display: block;
font-weight: bold;
text-align: center;
position: relative;
top: 10px;
left: 45px;
width: 80px;
border: solid 1px #000;
border-radius: 120px;
padding: 25px;
font-size: 18px;
background: #95b2a3;
}
#homeTable {
position: relative;
left: 140px;
width: 95%;
background: #dbd9d4;
/*font-size: 12px;*/
}
#blogMemberTable {
position: relative;
top: 75px;
left: 110px;
width: 97%;
background: #c9b57e;
border: border 1px #c9b57e;
}
#allPostbody {
position: relative;
top: 10px;
left: -78px;
padding: 40px;
}
#blogMemberTable thead {
background: #827f78;
text-align: center;
font-size: 20px;
}
#blogMemberTable thead th {
text-align: center;
font-size: 16px;
}
#blogMemberTable tbody td {
text-align: center;
font-size: 12px;
font-weight: bold;
}
#body h1 {
position: relative;
top: 50px;
left: 80px;
text-align: center;
}
#search {
position: relative;
top: 60px;
left: 80px;
}
#title h3 {
color: #3c896d;
text-align: center;
font-weight: bold;
}
#title > #title_link {
font-weight:bold;
font-size: 28px;
color: #3c896d;
}
#postContent2 {
border: solid 1px none;
box-sizing: border;
padding: 40px;
border-radius: 10px;
background: #edf2f2;
position: relative;
right: -201px;
width: 85%;
}
#postContent2 label {
position: relative;
left: -90px;
}
#postContent2 input, #postContent2 textarea, #postContent2 select {
position: relative;
left: -90px;
}
#commentBox1 {
margin-top: 30px;
padding: 5px;
margin: 10px;
width: 90%;
}
#commentBox1 h4 {
background: #98e0e0;
padding: 7px;
font-size: 14px;
font-weight: bold;
}
#commentBox1 h4 small {
font-weight: bold;
font-size: 12px;
color: #bf511e;
}
#commentBox1 p {
white-space: pre-wrap;
background: #dbdbdb;
padding: 5px;
margin-top: -10px;
text-align: justify;
font-size: 13px;
/*margin-left: 10px;*/
}
.replyForm2 {
font-size: 14px;
position: relative;
right: 100px;
}
.replyForm2 label {
font-size: 12px;
}
.replyForm2 button {
background: #c1baba;
position: relative;
top: -46px;
border: none;
color: #000;
}
.replyForm2 textarea[type=text] {
width: 115%;
}
#commentReplies2 {
margin-left: 70px;
position: relative;
top: -60px;
left: 70px;
width: 77%;
}
#commentReplies2 h6 {
background: #91c2e0;
padding: 5px;
color: #9b2912;
font-size: 14px;
font-weight: bold;
}
#commentReplies2 h6 small {
font-weight: bold;
}
#commentReplies2 p {
background: #d8cca6;
font-size: 12px;
padding: 5px;
margin-top: -10px;
}
#comment_delete {
position: relative;
left: 930px;
top: 62px;
font-size: 24px;
color: red;
}
#reply_delete {
position: relative;
left: 785px;
top: 47px;
font-size: 24px;
color: red;
}
#posts2 {
border: solid 1px none;
background: #f2f2f2;
padding: 20px;
margin: 10px 0;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#posts3 {
/*border: solid 1px none;*/
background: #f2f2f2;
padding: 10px;
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#post_tag {
background: #6d6d67;
width: 107.7%;
padding: 2px;
position: relative;
left: -41px;
}
#post_tag h1 {
text-align: center;
color: #7ad395;
font-weight: bold;
font-style: italic;
margin-left: 30px;
}
#pre_tag {
color: #493e3e;
text-align: center;
}
#post_image {
position: relative;
left: 100px;
}
.deleteUser {
font-weight: bold;
font-size: 12px;
border: solid 1px #aaa;
padding: 2px;
background: #c9c9c9;
}
#adminPic {
position: relative; right: -20px; top: -10px;
}
#postContent3 {
border: solid 1px none;
position: relative;
bottom: -140px;
right: -230px;
height: 280px;
width: 714px;
/*display: none;*/
box-shadow: 5px 6px 5px #2a2b2b;
background: none;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
border-bottom-left-radius: 30px;
}
.vl {
border-right: 1px solid none;
height: 280px;
position: relative;
left: -400px;
}
#pro_pic {
background: #c9b68f;
padding: 19.8px 167px;
border-bottom-left-radius: 30px;
border-top-left-radius: 30px;
}
#pro_pic img {
position: relative;
left: -113px;
}
#postContent3 > #pro_info {
background: #afd8d0;
/* position: relative;
right: -333px;
top: -280px;*/
height: 280.2px;
width: 380px;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
}
#postContent3 > #pro_info span {
font-size: 15px;
position: relative;
top: 45px;
font-weight: bold;
display: block;
font-style: italic;
margin-left: 10px;
margin-bottom: 17px;
}
#pro_info span a { color: #8254a8; font-size: 13px; display: }
#profile_body {
background: #996046;
/*background: rgba(80,30,50,0.9);*/
background-size: cover;
padding: 38px;
position: relative; right: -99.999px;
width: 1167px;
height: 637px;
} | my_assets/css/style.css | body {
background: #bfcacc;
}
div#header {
background: url('../img/home-bg.jpg') center center no-repeat;
background-size: cover;
margin-top: -72px;
padding: 120px;
}
#header h1 {
position: relative;
top: -20px;
left: -40px;
color: #5afcb9;
}
#header cite {
font-size: 16px;
color: #ccbcb7;
position: relative;
top: -20px;
left: -20px;
}
#logo {
background: #dce2e2;
padding: 0 20px 0 20px;
}
#userForm {
margin-bottom: 10px;
margin-left: 10px;
}
.navbar-brand {
position: relative;
right: -100px;
top: 10px;
box-shadow: 2px 4px 4px none;
text-shadow: 2px 3px 4px #aaa; font-weight: bold;
font-size: 20px;
}
.navbar-brand:hover {
text-decoration: underline;
/*background: #b2b0b0;*/
}
.navbar-brand:active {
transition: 0.5s;
top: 15px;
}
#navigation li a:hover {
color: #0a0909;
text-decoration: underline;
background: #7a4233;
font-size: 15px;
}
.loggedPost {
position: relative;
left: 400px;
}
.loggedPost a:hover {
font-size: 14px;
color: #fff;
}
.nav li {
margin: 0 20px;
color: #c9dbdb;
}
.nav li a {
/*font-size: 15px;*/
font-weight: bold;
}
#navigation li a {
color: #c9dbdb;
font-size: 14px;
}
#postCategory {
background: #7c7a7a;
border: solid 1px #9e9191;
box-shadow: 8px 9px 9px #474343;
padding: 5px;
/*margin-left: -10px;*/
text-align: center;
}
#postCategory h3 {
text-align: center;
border-bottom: solid 1px #edeaea;
color: #e27c96;
margin-top: 10px;
font-size: 22px;
}
#postCategory ul li {
list-style: none;
margin: 7px 0;
/*border: solid 1px #896565;*/
}
#postCategory ul li a {
color: #87dddd;
font-size: 14px;
border-bottom: solid 1px #aaa;
font-weight: bold;
margin-left: -50px;
}
#postType option {
color: blue;
}
#postCategory ul li a:hover {
color: #3baaaf;
text-decoration: none;
}
#postCategory ul li a:active {
color: #fcf9f9;
}
#postContent {
border: solid 1px #aab4b5;
box-sizing: border;
padding: 20px;
border-radius: 10px;
background: #edf2f2;
position: relative;
right: -10px;
}
#postContent h2 {
text-align: center;
margin-top: 0;
text-decoration: underline;
text-shadow: 1px 2px 5px #c5cbcc;
}
#contactForm {
background: #c0d0d3;
position: relative;
right: -150px;
padding: 20px;
border-radius: 10px;
}
#notice {
/*text-align: justify;*/
box-sizing: border;
padding: 20px;
border: solid 1px #829ea0;
box-shadow: 2px 4px 4px #74797a;
background: #f4c5b5;
border-radius: 10px;
position: relative;
left: 10px;
}
#notice h4 {
font-size: 18px;
font-weight: bold;
text-align: center;
margin: -5px 0 0 0;
/*margin: -5px 0 0;*/
border-bottom: solid 1px #3b4049;
}
.profile {
position: relative;
left: -10px;
}
#notice > .profile span {
font-size: 11px;
font-weight: bold;
}
#notice p {
font-weight: bold;
font-size: 12px;
}
#notice p span {
font-size: 12px;
color: #9b3e4c;
}
#notice label {
border: solid 1px #bbb;
padding: 2px;
position: relative;
right: -15px;
}
#notice button {
position: relative;
right: -60px;
font-size: 10px
}
#notice img {
position: relative;
left: 50px;
}
footer {
background: #222323;
color: #c0c3c6;
}
#foot-contact p {
color: #24c1bf;
}
#allcomment {
color: #59ace0;
text-decoration: underline;
font-weight: bold;
font-size: 20px;
position: relative;
left: 20px;
}
#totalComment {
font-weight: bold;
position: relative;
left: 18px;
}
#commentBox {
margin-top: 30px;
padding: 5px;
margin: 10px;
}
#commentBox h4 {
background: #98e0e0;
padding: 7px;
font-size: 14px;
font-weight: bold;
}
#commentBox h4 small {
font-weight: bold;
font-size: 12px;
color: #bf511e;
}
#commentBox p {
white-space: pre-wrap;
background: #dbdbdb;
padding: 5px;
margin-top: -10px;
text-align: justify;
font-size: 13px;
/*margin-left: 10px;*/
}
.replyForm {
font-size: 14px;
position: relative;
right: 18px;
}
.replyForm label {
font-size: 12px;
}
.replyForm button {
background: #c1baba;
position: relative;
top: -46px;
border: none;
color: #000;
}
.replyForm textarea[type=text] {
width: 115%;
}
#commentReplies {
margin-left: 70px;
position: relative;
top: -10px;
width: 88%;
margin-bottom: 10px;
}
#commentReplies h6 {
background: #91c2e0;
padding: 5px;
color: #9b2912;
font-size: 14px;
font-weight: bold;
}
#commentReplies h6 small {
font-weight: bold;
}
#commentReplies p {
background: #d8cca6;
font-size: 12px;
padding: 5px;
margin-top: -10px;
}
#posts {
border: solid 1px none;
background: #f2f2f2;
padding: 10px;
margin: 10px 0;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#posts1 {
/*border: solid 1px none;*/
background: #f2f2f2;
padding: 10px;
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#totalComments {
background: #e8eaea;
width: 100%;
padding: 6px;
position: relative;
bottom: 10px;
}
#totalComments a {
position: relative;
left: 730px;
font-size: 13px;
font-weight: bold;
}
.userEdit {
font-size: 8px;
text-decoration: underline; font-weight: bold;
/*margin: 0 5px;*/
position: relative; right: -10px;
}
.cmnt {
font-weight: bold;
font-size: 14px;
color: #a88888;
margin: 0 5px;
}
.profileHeader {
position: relative;
bottom: 20px;
text-align: center;
border: solid 1px #aaa;
padding: 5px;
}
.files {
font-size: 11px;
position: relative;
bottom: 15px;
width: 100%;
}
.proBtn {
font-size: 10px;
position: relative;
bottom: 13px;
}
.proTag {
position: relative;
bottom: 20px;
right: 10px;
font-size: 11px;
text-align: center;
}
.files2 {
width: 82%;
position: relative;
right: 10px;
top: 2px;
font-size: 10px;
}
.proBtn2 {
font-size: 10px;
position: relative;
left: 120px;
bottom: 25px;
border: none;
}
.pagination {
display: inline;
list-style: none;
margin: 0 10px;
border: solid 1px #aaa;
text-align: center;
padding: 5px;
box-shadow: 2px 4px 5px #757171;
background: #5cb9c9;
border-radius: 10px;
font-weight: bold;
font-size: 11px;
}
.pagination2 {
text-align: center;
}
/*=====================================================================================================================
Admin Panels Style
======================================================================================================================*/
#adminBody {
background: #c1c1c1;
}
.sidebar {
position: fixed;
top: 50px;
bottom: 0;
left: 0;
/*right: 0;*/
width: 200px;
/*z-index: 1000;*/
/*display: block;*/
padding: 20px;
overflow-x: hidden;
overflow-y: auto;
background-color: #2b2b2a;
border-right: 1px solid none;
}
.nav-sidebar > li { width: 130%; }
.nav-sidebar > li > a {
position: relative;
right: 40px;
font-size: 12px;
color: #545656;
font-weight: bold;
color: #d3d3cf;
}
.nav-sidebar a:hover,
.nav-sidebar > .active > a:focus {
font-weight: bold;
background-color: #428bca;
color: #545656;
width: 120%;
}
.nav-sidebar > .active > a {
color: black;
font-weight: bold;
background-color: #428bca;
}
#adminHome {
position: relative;
left: 140px;
top: 200px;
}
#adminHome > .boxs {
width: 214px;
height: 200px;
padding: 20px;
box-sizing: border;
border: solid 2px none;
border-radius: 10px;
margin: 20px 50px;
background: #ccab80;
box-shadow: 3px 5px 7px #424444;
}
#adminHome > .boxs > strong
{
display: block;
text-align: center;
position: relative;
top: 40px;
font-weight: bold;
}
#adminHome > .boxs > a {
display: block;
font-weight: bold;
text-align: center;
position: relative;
top: 10px;
left: 45px;
width: 80px;
border: solid 1px #000;
border-radius: 120px;
padding: 25px;
font-size: 18px;
background: #95b2a3;
}
#homeTable {
position: relative;
left: 140px;
width: 95%;
background: #dbd9d4;
/*font-size: 12px;*/
}
#blogMemberTable {
position: relative;
top: 75px;
left: 110px;
width: 97%;
background: #c9b57e;
border: border 1px #c9b57e;
}
#allPostbody {
position: relative;
top: 10px;
left: -78px;
padding: 40px;
}
#blogMemberTable thead {
background: #827f78;
text-align: center;
font-size: 20px;
}
#blogMemberTable thead th {
text-align: center;
font-size: 16px;
}
#blogMemberTable tbody td {
text-align: center;
font-size: 12px;
font-weight: bold;
}
#body h1 {
position: relative;
top: 50px;
left: 80px;
text-align: center;
}
#search {
position: relative;
top: 60px;
left: 80px;
}
#title h3 {
color: #3c896d;
text-align: center;
font-weight: bold;
}
#title > #title_link {
font-weight:bold;
font-size: 28px;
color: #3c896d;
}
#postContent2 {
border: solid 1px none;
box-sizing: border;
padding: 40px;
border-radius: 10px;
background: #edf2f2;
position: relative;
right: -201px;
width: 85%;
}
#postContent2 label {
position: relative;
left: -90px;
}
#postContent2 input, #postContent2 textarea, #postContent2 select {
position: relative;
left: -90px;
}
#commentBox1 {
margin-top: 30px;
padding: 5px;
margin: 10px;
width: 90%;
}
#commentBox1 h4 {
background: #98e0e0;
padding: 7px;
font-size: 14px;
font-weight: bold;
}
#commentBox1 h4 small {
font-weight: bold;
font-size: 12px;
color: #bf511e;
}
#commentBox1 p {
white-space: pre-wrap;
background: #dbdbdb;
padding: 5px;
margin-top: -10px;
text-align: justify;
font-size: 13px;
/*margin-left: 10px;*/
}
.replyForm2 {
font-size: 14px;
position: relative;
right: 100px;
}
.replyForm2 label {
font-size: 12px;
}
.replyForm2 button {
background: #c1baba;
position: relative;
top: -46px;
border: none;
color: #000;
}
.replyForm2 textarea[type=text] {
width: 115%;
}
#commentReplies2 {
margin-left: 70px;
position: relative;
top: -60px;
left: 70px;
width: 77%;
}
#commentReplies2 h6 {
background: #91c2e0;
padding: 5px;
color: #9b2912;
font-size: 14px;
font-weight: bold;
}
#commentReplies2 h6 small {
font-weight: bold;
}
#commentReplies2 p {
background: #d8cca6;
font-size: 12px;
padding: 5px;
margin-top: -10px;
}
#comment_delete {
position: relative;
left: 930px;
top: 62px;
font-size: 24px;
color: red;
}
#reply_delete {
position: relative;
left: 785px;
top: 47px;
font-size: 24px;
color: red;
}
#posts2 {
border: solid 1px none;
background: #f2f2f2;
padding: 20px;
margin: 10px 0;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#posts3 {
/*border: solid 1px none;*/
background: #f2f2f2;
padding: 10px;
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
#post_tag {
background: #6d6d67;
width: 107.7%;
padding: 2px;
position: relative;
left: -41px;
}
#post_tag h1 {
text-align: center;
color: #7ad395;
font-weight: bold;
font-style: italic;
margin-left: 30px;
}
#pre_tag {
color: #493e3e;
text-align: center;
}
#post_image {
position: relative;
left: 100px;
}
.deleteUser {
font-weight: bold;
font-size: 12px;
border: solid 1px #aaa;
padding: 2px;
background: #c9c9c9;
}
#adminPic {
position: relative; right: -20px; top: -10px;
}
#postContent3 {
border: solid 1px none;
position: relative;
bottom: -140px;
right: -230px;
height: 280px;
width: 714px;
/*display: none;*/
box-shadow: 5px 6px 5px #2a2b2b;
background: none;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
border-bottom-left-radius: 30px;
}
.vl {
border-right: 1px solid none;
height: 280px;
position: relative;
left: -400px;
}
#pro_pic {
background: #c9b68f;
padding: 19.8px 167px;
border-bottom-left-radius: 30px;
border-top-left-radius: 30px;
}
#pro_pic img {
position: relative;
left: -113px;
}
#postContent3 > #pro_info {
background: #afd8d0;
/* position: relative;
right: -333px;
top: -280px;*/
height: 280.2px;
width: 380px;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
}
#postContent3 > #pro_info span {
font-size: 15px;
position: relative;
top: 45px;
font-weight: bold;
display: block;
font-style: italic;
margin-left: 10px;
margin-bottom: 17px;
}
#pro_info span a { color: #8254a8; font-size: 13px; display: }
#profile_body {
background: #996046;
/*background: rgba(80,30,50,0.9);*/
background-size: cover;
padding: 38px;
position: relative; right: -99.999px;
width: 1167px;
height: 637px;
} | 0.191744 | 0.068694 |
* {
margin: 0;
padding: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* The Modal (background) */
.custom {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
padding-top: 20px;
/* Location of the box */
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 */
.modal-content-custom {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
right: 207px;
top: 28px;
font-size: 28px;
font-weight: bold;
position: fixed;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.main-content {
height: 800px;
width: 1300px;
margin: 0 auto;
}
.overlay-bg {
display: none;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
cursor: pointer;
z-index: 1000;
/* high z-index */
background: #000;
/* fallback */
background: rgba(0, 0, 0, 0.75);
}
.overlay-content {
display: none;
background: #fff;
padding: 1%;
width: 90%;
position: absolute;
top: 15%;
left: 25%;
margin: 0 0 0 -20%;
/* add negative left margin for half the width to center the div */
cursor: default;
z-index: 10001;
border-radius: 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
.close-btn {
cursor: pointer;
border: 1px solid #333;
padding: 2% 5%;
background: #a9e7f9;
/* fallback */
background: -moz-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a9e7f9), color-stop(4%, #77d3ef), color-stop(100%, #05abe0));
background: -webkit-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -o-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -ms-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: linear-gradient(to bottom, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
border-radius: 4px;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.close-btn:hover {
background: #05abe0;
}
/* media query for most mobile devices */
@media only screen and (min-width: 0px) and (max-width: 480px) {
.overlay-content {
width: 96%;
margin: 0 2%;
left: 0;
}
}
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
margin: 0;
padding: 0;
border: 0;
list-style: none;
font-weight: normal;
text-decoration: none;
line-height: 1;
font-family: 'Lato', sans-serif;
font-size: 14px;
position: relative;
}
#cssmenu a {
line-height: 0.3;
padding: 17px 15px;
}
#cssmenu table a {
padding: 0;
}
#cssmenu>ul>li:last-child {
border-bottom: 1px solid #3e3d3c;
}
#cssmenu>ul>li>a {
font-size: 15px;
display: block;
color: #ffffff;
text-shadow: 0 1px 1px #000;
background: #64676e;
background: -moz-linear-gradient(#64676e 0%, #4c4e53 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #64676e), color-stop(100%, #4c4e53));
background: -webkit-linear-gradient(#64676e 0%, #4c4e53 100%);
background: linear-gradient(#64676e 0%, #4c4e53 100%);
}
#cssmenu>ul>li>a:hover {
text-decoration: none;
}
#cssmenu>ul>li.active {
border-bottom: none;
}
#cssmenu>ul>li.has-sub>a:after {
content: "";
position: absolute;
top: 10px;
right: 10px;
border: 5px solid transparent;
}
#cssmenu>ul>li.has-sub.active>a:after {
right: 14px;
top: 12px;
border: 5px solid transparent;
border-top: 5px solid #4e5800;
}
.navbar-inverse .navbar-nav>.open>a {
background-color: #08080833 !important;
}
/* Sub menu */
#cssmenu ul ul {
padding: 0;
display: none;
height: 700px;
}
#cssmenu ul ul li {
border-bottom: 1px solid #c9c9c9;
}
#cssmenu ul ul li:last-child {
border: none;
}
.clearfix:after {
content: '';
display: table;
clear: both;
}
#main {
float: right;
height: 100%;
width: 75%;
cursor: col-resize;
position: relative;
}
#sidebar {
width: 25%;
float: left;
height: 916px;
overflow: auto;
position: relative;
}
#dragbar {
background-color: #000;
height: 916px;
width: 7px;
opacity: 0.5;
cursor: col-resize;
float: left;
z-index: 999999;
}
.last {
width: 100%;
overflow: auto;
}
#ghostbar {
width: 3px;
background-color: #000;
opacity: 0.5;
position: absolute;
cursor: col-resize;
z-index: 999;
}
.footer-menu {
bottom: 0;
height: 100px;
background: #767879;
width: 100%;
position: absolute;
}
.header-table {
background: #e7e7e7;
text-align: center;
}
.red-tooltip+.tooltip>.tooltip-inner {
background-color: #f00;
}
.blue-tooltip+.tooltip>.tooltip-inner {
background-color: blue;
}
.wraning-tooltip+.tooltip>.tooltip-inner {
background-color: #ffb400;
}
#seconds-counter {
left: 21px;
top: 13px;
padding: 3px;
font-size: 12px;
position: absolute;
color: #000;
width: 93px;
background: #f1f1f1;
}
.has-sub a p {
line-height: 0;
font-size: 12px;
margin-bottom: 0;
} | public/libs/map/styles.css | * {
margin: 0;
padding: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* The Modal (background) */
.custom {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
padding-top: 20px;
/* Location of the box */
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 */
.modal-content-custom {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
right: 207px;
top: 28px;
font-size: 28px;
font-weight: bold;
position: fixed;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.main-content {
height: 800px;
width: 1300px;
margin: 0 auto;
}
.overlay-bg {
display: none;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
cursor: pointer;
z-index: 1000;
/* high z-index */
background: #000;
/* fallback */
background: rgba(0, 0, 0, 0.75);
}
.overlay-content {
display: none;
background: #fff;
padding: 1%;
width: 90%;
position: absolute;
top: 15%;
left: 25%;
margin: 0 0 0 -20%;
/* add negative left margin for half the width to center the div */
cursor: default;
z-index: 10001;
border-radius: 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
.close-btn {
cursor: pointer;
border: 1px solid #333;
padding: 2% 5%;
background: #a9e7f9;
/* fallback */
background: -moz-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a9e7f9), color-stop(4%, #77d3ef), color-stop(100%, #05abe0));
background: -webkit-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -o-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: -ms-linear-gradient(top, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
background: linear-gradient(to bottom, #a9e7f9 0%, #77d3ef 4%, #05abe0 100%);
border-radius: 4px;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.close-btn:hover {
background: #05abe0;
}
/* media query for most mobile devices */
@media only screen and (min-width: 0px) and (max-width: 480px) {
.overlay-content {
width: 96%;
margin: 0 2%;
left: 0;
}
}
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
margin: 0;
padding: 0;
border: 0;
list-style: none;
font-weight: normal;
text-decoration: none;
line-height: 1;
font-family: 'Lato', sans-serif;
font-size: 14px;
position: relative;
}
#cssmenu a {
line-height: 0.3;
padding: 17px 15px;
}
#cssmenu table a {
padding: 0;
}
#cssmenu>ul>li:last-child {
border-bottom: 1px solid #3e3d3c;
}
#cssmenu>ul>li>a {
font-size: 15px;
display: block;
color: #ffffff;
text-shadow: 0 1px 1px #000;
background: #64676e;
background: -moz-linear-gradient(#64676e 0%, #4c4e53 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #64676e), color-stop(100%, #4c4e53));
background: -webkit-linear-gradient(#64676e 0%, #4c4e53 100%);
background: linear-gradient(#64676e 0%, #4c4e53 100%);
}
#cssmenu>ul>li>a:hover {
text-decoration: none;
}
#cssmenu>ul>li.active {
border-bottom: none;
}
#cssmenu>ul>li.has-sub>a:after {
content: "";
position: absolute;
top: 10px;
right: 10px;
border: 5px solid transparent;
}
#cssmenu>ul>li.has-sub.active>a:after {
right: 14px;
top: 12px;
border: 5px solid transparent;
border-top: 5px solid #4e5800;
}
.navbar-inverse .navbar-nav>.open>a {
background-color: #08080833 !important;
}
/* Sub menu */
#cssmenu ul ul {
padding: 0;
display: none;
height: 700px;
}
#cssmenu ul ul li {
border-bottom: 1px solid #c9c9c9;
}
#cssmenu ul ul li:last-child {
border: none;
}
.clearfix:after {
content: '';
display: table;
clear: both;
}
#main {
float: right;
height: 100%;
width: 75%;
cursor: col-resize;
position: relative;
}
#sidebar {
width: 25%;
float: left;
height: 916px;
overflow: auto;
position: relative;
}
#dragbar {
background-color: #000;
height: 916px;
width: 7px;
opacity: 0.5;
cursor: col-resize;
float: left;
z-index: 999999;
}
.last {
width: 100%;
overflow: auto;
}
#ghostbar {
width: 3px;
background-color: #000;
opacity: 0.5;
position: absolute;
cursor: col-resize;
z-index: 999;
}
.footer-menu {
bottom: 0;
height: 100px;
background: #767879;
width: 100%;
position: absolute;
}
.header-table {
background: #e7e7e7;
text-align: center;
}
.red-tooltip+.tooltip>.tooltip-inner {
background-color: #f00;
}
.blue-tooltip+.tooltip>.tooltip-inner {
background-color: blue;
}
.wraning-tooltip+.tooltip>.tooltip-inner {
background-color: #ffb400;
}
#seconds-counter {
left: 21px;
top: 13px;
padding: 3px;
font-size: 12px;
position: absolute;
color: #000;
width: 93px;
background: #f1f1f1;
}
.has-sub a p {
line-height: 0;
font-size: 12px;
margin-bottom: 0;
} | 0.380529 | 0.086131 |
@media (max-width: 600px) {
.tabNav {
font-size:10px;
}
}
input.updateRoomTextField {
font-size: 1.25em;
mix-blend-mode: multiply;
}
body {
background-color: rgb(249, 249, 249);
font-family: roboto;
color: rgba(0, 0, 0, 0.7);
line-height: 1;
}
.activator {
height: 250px;
width: auto;
object-fit: contain;
}
.materialboxed {
height:65px;
width:auto;
object-fit:contain;
}
.RoomListHeader {
height: 45px;
}
.RoomListHeader label, .RoomListHeader input {
margin: 15px 0;
}
.brand {
font-size: 2rem;
}
.ListItem {
background: rgba(0, 0, 0, 0.4);
}
.card-title {
font-size: 36px;
font-family: roboto;
color: rgba(0, 0, 0, 0.6);
}
.input .active {
background-color:#424242;
}
.card-control-panel {
display: inline-block;
}
div.icon-row{
padding: 0;
margin: 0;
display: inline-block;
}
#table-item {
padding: 0px 10px;
white-space: nowrap;
margin-top: 0;
margin-bottom: 0;
line-height: 0px;
}
.slimDown {
padding: 0px 10px;
margin-top: 0;
margin-bottom: 0;
white-space: nowrap;
height: 1.5rem;
}
input.slimDown {
margin: 0;
height: 1.5rem;
}
div.container {
width: 80%;
}
.card-control {
padding-right: 20px;
display:inline-block;
cursor:pointer;
}
.card-control:hover {
color:#4db6ac;
}
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
.material-icons.md-dark:hover { color: rgba(0, 0, 0, 1); }
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
.tabs .indicator {
background-color:#424242;
}
.tabItem .active {
color:#424242;
}
.nav-item.active {
background-color: #0b97c4;
}
.signin {
background: url(http://be-design.us/wp-content/uploads/2015/07/interior-designers-bedesign-houston.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #fff;
content: ' ';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background-repeat: no-repeat;
background-position: 50% 0;
}
/*.MediaBox {
display:inline-block;
}*/
table.furniture-detail {
margin-top: 20px;
border-collapse: collapse;
}
.furniture-detail td, .furniture-detail th {
padding: 0;
}
.furniture-detail td {
vertical-align: top;
padding-right: 5px;
}
.furniture-detail th {
vertical-align: bottom;
font-weight: normal;
color: #aaa;
padding-top: 20px;
}
th.budget-table {
padding: 7px 7px;
}
.furniture-detail .help-text {
height: 15px;
padding: 0;
margin: 0;
}
.furniture-detail .form-warning {
color: red;
}
.furniture-detail .hidden-field {
display: none;
}
div.table {
display: table;
}
form.tr, div.tr {
display:table-row;
}
span.td
{
display:table-cell;
}
.tr {
height: 40px;
}
.td, .th {
/*border: solid black 1px;*/
padding: 0 3px;
margin: 0;
}
.th {
font-weight: bold;
border-bottom: 1px solid black;
}
.tr .room {
width: 200px;
display: inline-block;
}
.tr .furniture {
width: 200px;
display: inline-block;
}
.tr .price {
width: 60px;
display: inline-block;
}
.tr .size {
width: 80px;
display: inline-block;
}
.tr .quantity {
width: 80px;
display: inline-block;
}
.tr .notes {
width: 200px;
display: inline-block;
}
.tr .color {
width: 80px;
display: inline-block;
}
.tr .deliveryDate {
width: 110px;
display: inline-block;
}
.tr .controls {
width: 100px;
display: inline-block;
}
.updateRoomForm {
display:inline-block;
} | src/app/App.css | @media (max-width: 600px) {
.tabNav {
font-size:10px;
}
}
input.updateRoomTextField {
font-size: 1.25em;
mix-blend-mode: multiply;
}
body {
background-color: rgb(249, 249, 249);
font-family: roboto;
color: rgba(0, 0, 0, 0.7);
line-height: 1;
}
.activator {
height: 250px;
width: auto;
object-fit: contain;
}
.materialboxed {
height:65px;
width:auto;
object-fit:contain;
}
.RoomListHeader {
height: 45px;
}
.RoomListHeader label, .RoomListHeader input {
margin: 15px 0;
}
.brand {
font-size: 2rem;
}
.ListItem {
background: rgba(0, 0, 0, 0.4);
}
.card-title {
font-size: 36px;
font-family: roboto;
color: rgba(0, 0, 0, 0.6);
}
.input .active {
background-color:#424242;
}
.card-control-panel {
display: inline-block;
}
div.icon-row{
padding: 0;
margin: 0;
display: inline-block;
}
#table-item {
padding: 0px 10px;
white-space: nowrap;
margin-top: 0;
margin-bottom: 0;
line-height: 0px;
}
.slimDown {
padding: 0px 10px;
margin-top: 0;
margin-bottom: 0;
white-space: nowrap;
height: 1.5rem;
}
input.slimDown {
margin: 0;
height: 1.5rem;
}
div.container {
width: 80%;
}
.card-control {
padding-right: 20px;
display:inline-block;
cursor:pointer;
}
.card-control:hover {
color:#4db6ac;
}
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
.material-icons.md-dark:hover { color: rgba(0, 0, 0, 1); }
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
.tabs .indicator {
background-color:#424242;
}
.tabItem .active {
color:#424242;
}
.nav-item.active {
background-color: #0b97c4;
}
.signin {
background: url(http://be-design.us/wp-content/uploads/2015/07/interior-designers-bedesign-houston.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #fff;
content: ' ';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background-repeat: no-repeat;
background-position: 50% 0;
}
/*.MediaBox {
display:inline-block;
}*/
table.furniture-detail {
margin-top: 20px;
border-collapse: collapse;
}
.furniture-detail td, .furniture-detail th {
padding: 0;
}
.furniture-detail td {
vertical-align: top;
padding-right: 5px;
}
.furniture-detail th {
vertical-align: bottom;
font-weight: normal;
color: #aaa;
padding-top: 20px;
}
th.budget-table {
padding: 7px 7px;
}
.furniture-detail .help-text {
height: 15px;
padding: 0;
margin: 0;
}
.furniture-detail .form-warning {
color: red;
}
.furniture-detail .hidden-field {
display: none;
}
div.table {
display: table;
}
form.tr, div.tr {
display:table-row;
}
span.td
{
display:table-cell;
}
.tr {
height: 40px;
}
.td, .th {
/*border: solid black 1px;*/
padding: 0 3px;
margin: 0;
}
.th {
font-weight: bold;
border-bottom: 1px solid black;
}
.tr .room {
width: 200px;
display: inline-block;
}
.tr .furniture {
width: 200px;
display: inline-block;
}
.tr .price {
width: 60px;
display: inline-block;
}
.tr .size {
width: 80px;
display: inline-block;
}
.tr .quantity {
width: 80px;
display: inline-block;
}
.tr .notes {
width: 200px;
display: inline-block;
}
.tr .color {
width: 80px;
display: inline-block;
}
.tr .deliveryDate {
width: 110px;
display: inline-block;
}
.tr .controls {
width: 100px;
display: inline-block;
}
.updateRoomForm {
display:inline-block;
} | 0.403332 | 0.09236 |
body{
font-family: 'Libre Caslon Text', serif;
margin: 0;
padding: 1rem;
}
h1 {
font-family: 'Libre Caslon Text', serif;
display: flex;
justify-content: center;
font-style: bold;
font-size: 25px;
}
h3{
font-family: 'Libre Caslon Text', serif;
display: flex;
justify-content: center;
font-size: 15px;
font-style: light;
}
.home{
overflow: visible;
}
.header{
text-align: center;
font-family: 'Libre Caslon Text', serif;
}
hr{
width: 50%;
display: flex;
justify-content: center;
border: 0.5px solid black;
}
.topnav{
background-color: white;
overflow: hidden;
position: relative;
}
.topnav a {
float: center;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 15px;
}
.sandwichmenu {
width: 30px;
height: 3px;
background-color:black;
margin: 6px 0;
}
.searchBar{
display:flex;
justify-content: flex-end;
align-self: start;
}
.dropbtn {
font-size: 17px;
border: none;
outline: none;
color:white;
padding: 10px 12px;
background-color: inherit;
font-family: inherit;
margin: auto;
cursor: pointer;
}
.dropdown {
width: 100%;
display: flex;
justify-content: center;
}
.dropdown-content {
display: none;
margin: auto;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.0);
position: absolute;
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: center;
}
.topnav a:hover .dropdown:hover .dropbtn {
background-color: lightgrey;
}
.dropdown-content a:hover {
background-color: lightgrey;
color: black;
}
.dropdown:hover .dropdown-content {
display: block;
}
.masonry-layout {
column-count: 3;
column-gap: 0;
width: 1450px;
margin: 0 auto;
}
@media screen and (min-width: 300px) {
.masonry-layout {
column-count: 1;
}
}
@media screen and (min-width: 700px) {
.masonry-layout {
column-count: 2;
}
}
@media screen and (min-width: 1100px) {
.masonry-layout {
column-count: 3;
}
}
.masonry-layout-panel{
break-inside: avoid;
padding: 1px;
}
.masonry-layout-panel-item {
padding: 1px;
border-radius: 10px;
overflow:hidden;
position: relative;
}
.image {
width: 100%;
}
.imageDesc{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 18px;
color: black;
}
.overlay{
opacity: 0;
background-color: lightgrey;
position: absolute;
z-index: 10;
top:-2px;
bottom: 1px;
left: 0;
right: 0;
margin: 16px;
}
.overlay:hover {
opacity: 0.5;
}
.overlay:hover .imageDesc{
opacity: 1;
}
footer {
font-family: 'Libre Caslon Text', serif;
padding: 10px;
display: block;
align-items: baseline;
text-align: center;
color: black;
} | recipes list.css | body{
font-family: 'Libre Caslon Text', serif;
margin: 0;
padding: 1rem;
}
h1 {
font-family: 'Libre Caslon Text', serif;
display: flex;
justify-content: center;
font-style: bold;
font-size: 25px;
}
h3{
font-family: 'Libre Caslon Text', serif;
display: flex;
justify-content: center;
font-size: 15px;
font-style: light;
}
.home{
overflow: visible;
}
.header{
text-align: center;
font-family: 'Libre Caslon Text', serif;
}
hr{
width: 50%;
display: flex;
justify-content: center;
border: 0.5px solid black;
}
.topnav{
background-color: white;
overflow: hidden;
position: relative;
}
.topnav a {
float: center;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 15px;
}
.sandwichmenu {
width: 30px;
height: 3px;
background-color:black;
margin: 6px 0;
}
.searchBar{
display:flex;
justify-content: flex-end;
align-self: start;
}
.dropbtn {
font-size: 17px;
border: none;
outline: none;
color:white;
padding: 10px 12px;
background-color: inherit;
font-family: inherit;
margin: auto;
cursor: pointer;
}
.dropdown {
width: 100%;
display: flex;
justify-content: center;
}
.dropdown-content {
display: none;
margin: auto;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.0);
position: absolute;
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: center;
}
.topnav a:hover .dropdown:hover .dropbtn {
background-color: lightgrey;
}
.dropdown-content a:hover {
background-color: lightgrey;
color: black;
}
.dropdown:hover .dropdown-content {
display: block;
}
.masonry-layout {
column-count: 3;
column-gap: 0;
width: 1450px;
margin: 0 auto;
}
@media screen and (min-width: 300px) {
.masonry-layout {
column-count: 1;
}
}
@media screen and (min-width: 700px) {
.masonry-layout {
column-count: 2;
}
}
@media screen and (min-width: 1100px) {
.masonry-layout {
column-count: 3;
}
}
.masonry-layout-panel{
break-inside: avoid;
padding: 1px;
}
.masonry-layout-panel-item {
padding: 1px;
border-radius: 10px;
overflow:hidden;
position: relative;
}
.image {
width: 100%;
}
.imageDesc{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 18px;
color: black;
}
.overlay{
opacity: 0;
background-color: lightgrey;
position: absolute;
z-index: 10;
top:-2px;
bottom: 1px;
left: 0;
right: 0;
margin: 16px;
}
.overlay:hover {
opacity: 0.5;
}
.overlay:hover .imageDesc{
opacity: 1;
}
footer {
font-family: 'Libre Caslon Text', serif;
padding: 10px;
display: block;
align-items: baseline;
text-align: center;
color: black;
} | 0.569972 | 0.075961 |
.banner{
width: 100%;
margin: 0;
height: 100px;
border: 1px solid rgb(236, 233, 233);
}
.logo{
margin-top:20px;
width:90px;
height:60px;
margin-left: 20px;
}
.icon{
margin-left:20px;
margin-top:30px;
font-size:22px;
color:#000033;
display:none;
}
.tree{
margin: 0;
}
.avata{
float: right;
margin-top:45px;
width:40px;
height:30px;
margin-left: -200px;
margin-right: 200px;
}
/*********Landing page **/
.landing{
width: 70%;
display: block;
margin-left: auto;
margin-right: auto;
}
.tip1{
font-size: 4.5rem;
/* font-family: Roboto; */
text-align: center;
letter-spacing: .1rem;
line-height: 1.1;
}
.tip2{
font-size: 1.3rem;
text-align: center;
width: 65%;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
letter-spacing: 0.1rem;
}
.tip3{
text-align: center;
margin-top: 30px;
font-size: 1.2rem;
}
/**login form**/
.log_form {
width: 500px;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 600px;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
padding-left: 25px;
min-width: 320px;
padding-right: 25px;
display:block;
}
h2 {
text-align: center;
margin-top:20px;
color: rgb(70, 70, 70);
margin-bottom: 20px;
}
.image_container img{
margin-left: auto;
margin-top: 40px;
margin-right: auto;
display: block;
}
.info {
width: 90%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: inline-block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
.info:hover{
border-bottom: 1px solid blue;
}
.info:focus{
width: 90%;
padding: 12px 20px;
margin: 35px 30px 30px 30px;
display: inline-block;
border:none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 18px;
color: #555555;
line-height: 1.2;
}
.logform_btn {
background-color: #000033;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
margin-left:65px;
margin-top:60px;
width:70%;
border-radius: 5px;
font-weight: bold;
text-decoration:none;
}
.logform_btn:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
.form_extra{
margin-top: 50px;
font-size: 18px;
display: block;
text-align: center;
}
.form_extra a{
text-decoration: none;
font-weight: bold;
}
@media only screen and (max-width: 600px) {
.log_form {
width: 60%;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 100%;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
display: block;
}
.info {
width: 80%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: inline-block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
}
/*signup*?
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/*basic reset*/
* {margin: 0; padding: 0;}
/************ sign up form */
#signup_form {
width: 700px;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 800px;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
}
@media only screen and (max-width: 600px) {
.signup_form {
width: 50%;
margin-left: 40%;
border: 1px solid rgb(230, 227, 227);
height: 100%;
margin-bottom: 40px;
margin-top: 50px;
margin-right: 40%;
padding-left: 25px;
padding-right: 25px;
display:block;
}
.form_extra{
margin-right:50px;
}
.info {
width: 80%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
}
/* dashboard */
.dashbody{
margin-top:100px;
height:auto;
width: 100%;
overflow: auto;
}
.sidebar {
height: 100%;
width: 15%;
position: absolute;
z-index: 1;
top: 0;
left: 0;
margin-left: 30px;
margin-top:120px;
overflow-x: hidden;
padding-top: 16px;
margin-right: 200px;
}
.new{
border-radius: 50px;
width: 200px;
height: 50px;
font-size: 18px;
background-color: white;
border: 1px solid rgb(241, 233, 233);
color: rgb(90, 90, 90);
margin-bottom: 20px;
margin-left: -200px;
margin-top: 50px;
cursor: pointer;
}
.new i{
color: rgb(6, 33, 124);
}
.side {
list-style: none;
margin-left: 55%;
float: right;
margin-top: -40px;
margin-right: 20px;
width: 100%;
}
.side li{
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 13px;
display: block;
font-family: "Lato", sans-serif;
font-weight: bold;
float: right;
border: none;
text-align: center;
}
.side a{
text-decoration: none;
color: rgb(90, 86, 86);
}
.hide a:hover{
background-color:grey;
background-size: 100px;
}
.hide{
font-size: 18px;
}
.active{
background-color:rgba(167, 102, 86, 0.616);
border-radius: 50px;
opacity: 0.8;
background-size: 150px;
text-align: center;
}
.active:hover{
background-color:rgba(167, 102, 86, 0.616);
}
.active a{
color: red;
}
.active a:hover {
color: red;
}
.main {
width:80%;
height:50%;
margin-left:270px;
}
.profile_btn{
background-color: #095b9e;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
float: right;
margin-right:65px;
border-radius: 5px;
font-weight: bold;
margin-bottom: 20px;
}
.table_main{
margin-left:10px;
margin-right:10px;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
margin-top: 10px;
}
td, th {
border: 1px solid #12063f;
text-align: left;
padding: 8px;
color:rgb(124, 20, 20);
}
tr:nth-child(even) {
background-color: #dddddd;
}
.signup{
text-decoration: none;
color: white;
font-size: 12px;
background-color: #000033;
width:80px;
border: none;
height: 40px;
cursor: pointer;
float:right;
margin-left:-40px;
margin-right: 50px;
margin-top: 40px;
border-radius: 3px;
}
.login{
text-decoration: none;
color: #000;
font-size: 12px;
background-color: #ffffff;
width:80px;
border: 2px solid #000000;
height: 40px;
cursor: pointer;
float:right;
margin-left:-40px;
margin-right: 50px;
margin-top: 40px;
border-radius: 3px;
}
/* ---- create report --*/
#regForm {
font-family: Raleway;
padding: 40px;
width: 70%;
margin-left:20%;
min-width: 300px;
margin-top:30px;
}
h1 {
text-align: center;
}
.report_btn {
background-color: #4CAF50;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
margin-top:100px;
}
.report_btn:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
legend{
margin-left:70px;
font-size: 30px;
margin-bottom: 50px;
}
.personal_details{
width:80%;
margin-left:auto;
margin-right: auto;
height: 500px;
margin-bottom:50px;
border:1px solid rgb(241, 235, 235);
}
.personal_details h4{
margin-top: 40px;
}
.personal_details p,h4{
margin-left:50px;
}
.profile_span{
float:right;
margin-right: 50px;
}
.report-summary{
width:80%;
margin-left:auto;
margin-right: auto;
height: auto;
margin-bottom:50px;
border:1px solid rgb(241, 235, 235);
}
.report_total
{
margin-bottom:40px;
}
.report-desc{
margin-left:auto;
margin-right: auto;
border: 1px solid grey;
}
/*********** CONTACT FORM **********************************/
.contact_info, .contact_textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
.contact_submit{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.contact-submit:hover {
background-color: #45a049;
}
.contact_container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
width:800px;
margin-left: auto;
margin-right: auto;
height: auto;
margin-top: 40px;
}
.contact_container h3{
text-align: center;
margin-bottom: 60px;
margin-top: 60px;
}
/************** create report form ************/
.report_container{
width:100%;
height: 70%;
background-color: blue;
}
.basics{
width: 48%;
float: left;
margin-left: 30px;
height:100%;
margin-top:21px;
}
.files{
width: 48%;
float: right;
margin-right: 30px;
height:100%;
}
.report_select{
width: 90%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
margin-left:40px;
margin-right: 40px;
}
.report_fieldset{
border: 1px solid rgb(240, 237, 237);
height: 800px;
}
.report_fieldset label{
text-align: center;
}
.report_text {
width: 90%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 16px;
resize: vertical;
height: 500px;
margin-left:40px;
margin-right: 40px;
}
.report_image{
width:70%;
margin-top: -20px;
}
.report_input {
padding: 10px;
font-size: 17px;
font-family: Raleway;
border: 1px solid #aaaaaa;
margin-left:65px;
}
#clock{
background-image:url('');
background-size:cover;
background-position: center;
height: 300px;
width: 600px;
border: 1px solid #bbb;
margin-left: 70px;
}
.report_label{
margin-left: 70px;
}
#getval{
border:none;
}
.report_submit{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
margin-right:20px;
margin-bottom:-15px;
}
.report_submit:hover {
background-color: #45a049;
}
.footer{
width:100%;
height:100px;
background-color:#000033;
margin-top:70%;
}
.footer p{
color:white;
text-align:center;
font-size: 15px;
}
@media only screen and (max-width: 6000px) {
.side{
width:20%;
display:inline-block;
position: relative;
margin-top:60px;
margin-right:80%;
background-color: blue;
height:100%;
}
.icon{
display:block;
margin-left:28%;
margin-top:-40px;
}
.side a{
display:block;
color:white;
}
.table_main{
margin-left:100px;
}
.contact_container{
width: 80%;
}
footer{
margin-top:100%;
overflow: hidden;
}
}
@media only screen and (max-width: 1400px) {
.basics{
width:70%
}
.report_text{
height:300px;
width:70%;
margin-left:40px;;
}
.report_select{
width:70%
}
.files{
width:70%;
}
}
/*** banner**/
.closebtn{
display: none;
}
.openbtn{
display:none;
}
.sidepanel{
width: 90%;
z-index: 1;
height: 50px;
top: 0;
left: 0;
overflow: hidden;
margin-top:-40px;
}
.sidepanel a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 15px;
color: rgb(90, 86, 86);
float:right;
}
/*********display banner **********/
@media only screen and (max-width: 600px) {
.sidepanel {
width: 0;
z-index: 1;
height: 100%;
top: 0;
left: 0;
background-color: rgb(8, 2, 44);
overflow-x: hidden;
transition: 0.5s;
overflow:hidden;
clear:both;
}
.sidepanel a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
text-align:right;
float:left;
}
.sidepanel a:hover {
color: #f1f1f1;
}
.sidepanel .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
display:none;
}
.openbtn {
font-size: 20px;
cursor: pointer;
color: #111;
padding: 10px 15px;
border: none;
display:block;
margin-top:-40px;
margin-left: 120px;
}
} | template/UI/css/style.css | .banner{
width: 100%;
margin: 0;
height: 100px;
border: 1px solid rgb(236, 233, 233);
}
.logo{
margin-top:20px;
width:90px;
height:60px;
margin-left: 20px;
}
.icon{
margin-left:20px;
margin-top:30px;
font-size:22px;
color:#000033;
display:none;
}
.tree{
margin: 0;
}
.avata{
float: right;
margin-top:45px;
width:40px;
height:30px;
margin-left: -200px;
margin-right: 200px;
}
/*********Landing page **/
.landing{
width: 70%;
display: block;
margin-left: auto;
margin-right: auto;
}
.tip1{
font-size: 4.5rem;
/* font-family: Roboto; */
text-align: center;
letter-spacing: .1rem;
line-height: 1.1;
}
.tip2{
font-size: 1.3rem;
text-align: center;
width: 65%;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
letter-spacing: 0.1rem;
}
.tip3{
text-align: center;
margin-top: 30px;
font-size: 1.2rem;
}
/**login form**/
.log_form {
width: 500px;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 600px;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
padding-left: 25px;
min-width: 320px;
padding-right: 25px;
display:block;
}
h2 {
text-align: center;
margin-top:20px;
color: rgb(70, 70, 70);
margin-bottom: 20px;
}
.image_container img{
margin-left: auto;
margin-top: 40px;
margin-right: auto;
display: block;
}
.info {
width: 90%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: inline-block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
.info:hover{
border-bottom: 1px solid blue;
}
.info:focus{
width: 90%;
padding: 12px 20px;
margin: 35px 30px 30px 30px;
display: inline-block;
border:none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 18px;
color: #555555;
line-height: 1.2;
}
.logform_btn {
background-color: #000033;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
margin-left:65px;
margin-top:60px;
width:70%;
border-radius: 5px;
font-weight: bold;
text-decoration:none;
}
.logform_btn:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
.form_extra{
margin-top: 50px;
font-size: 18px;
display: block;
text-align: center;
}
.form_extra a{
text-decoration: none;
font-weight: bold;
}
@media only screen and (max-width: 600px) {
.log_form {
width: 60%;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 100%;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
display: block;
}
.info {
width: 80%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: inline-block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
}
/*signup*?
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/*basic reset*/
* {margin: 0; padding: 0;}
/************ sign up form */
#signup_form {
width: 700px;
margin-left: auto;
border: 1px solid rgb(230, 227, 227);
height: 800px;
margin-bottom: 40px;
margin-top: 50px;
margin-right: auto;
}
@media only screen and (max-width: 600px) {
.signup_form {
width: 50%;
margin-left: 40%;
border: 1px solid rgb(230, 227, 227);
height: 100%;
margin-bottom: 40px;
margin-top: 50px;
margin-right: 40%;
padding-left: 25px;
padding-right: 25px;
display:block;
}
.form_extra{
margin-right:50px;
}
.info {
width: 80%;
padding: 12px 20px;
margin: 10px 30px 10px 30px;
display: block;
border: none;
border-bottom: 1px solid rgb(185, 181, 181);
box-sizing: border-box;
font-family: Poppins-SemiBold;
font-size: 15px;
color: #555555;
line-height: 1.2;
}
}
/* dashboard */
.dashbody{
margin-top:100px;
height:auto;
width: 100%;
overflow: auto;
}
.sidebar {
height: 100%;
width: 15%;
position: absolute;
z-index: 1;
top: 0;
left: 0;
margin-left: 30px;
margin-top:120px;
overflow-x: hidden;
padding-top: 16px;
margin-right: 200px;
}
.new{
border-radius: 50px;
width: 200px;
height: 50px;
font-size: 18px;
background-color: white;
border: 1px solid rgb(241, 233, 233);
color: rgb(90, 90, 90);
margin-bottom: 20px;
margin-left: -200px;
margin-top: 50px;
cursor: pointer;
}
.new i{
color: rgb(6, 33, 124);
}
.side {
list-style: none;
margin-left: 55%;
float: right;
margin-top: -40px;
margin-right: 20px;
width: 100%;
}
.side li{
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 13px;
display: block;
font-family: "Lato", sans-serif;
font-weight: bold;
float: right;
border: none;
text-align: center;
}
.side a{
text-decoration: none;
color: rgb(90, 86, 86);
}
.hide a:hover{
background-color:grey;
background-size: 100px;
}
.hide{
font-size: 18px;
}
.active{
background-color:rgba(167, 102, 86, 0.616);
border-radius: 50px;
opacity: 0.8;
background-size: 150px;
text-align: center;
}
.active:hover{
background-color:rgba(167, 102, 86, 0.616);
}
.active a{
color: red;
}
.active a:hover {
color: red;
}
.main {
width:80%;
height:50%;
margin-left:270px;
}
.profile_btn{
background-color: #095b9e;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
float: right;
margin-right:65px;
border-radius: 5px;
font-weight: bold;
margin-bottom: 20px;
}
.table_main{
margin-left:10px;
margin-right:10px;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
margin-top: 10px;
}
td, th {
border: 1px solid #12063f;
text-align: left;
padding: 8px;
color:rgb(124, 20, 20);
}
tr:nth-child(even) {
background-color: #dddddd;
}
.signup{
text-decoration: none;
color: white;
font-size: 12px;
background-color: #000033;
width:80px;
border: none;
height: 40px;
cursor: pointer;
float:right;
margin-left:-40px;
margin-right: 50px;
margin-top: 40px;
border-radius: 3px;
}
.login{
text-decoration: none;
color: #000;
font-size: 12px;
background-color: #ffffff;
width:80px;
border: 2px solid #000000;
height: 40px;
cursor: pointer;
float:right;
margin-left:-40px;
margin-right: 50px;
margin-top: 40px;
border-radius: 3px;
}
/* ---- create report --*/
#regForm {
font-family: Raleway;
padding: 40px;
width: 70%;
margin-left:20%;
min-width: 300px;
margin-top:30px;
}
h1 {
text-align: center;
}
.report_btn {
background-color: #4CAF50;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
margin-top:100px;
}
.report_btn:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
legend{
margin-left:70px;
font-size: 30px;
margin-bottom: 50px;
}
.personal_details{
width:80%;
margin-left:auto;
margin-right: auto;
height: 500px;
margin-bottom:50px;
border:1px solid rgb(241, 235, 235);
}
.personal_details h4{
margin-top: 40px;
}
.personal_details p,h4{
margin-left:50px;
}
.profile_span{
float:right;
margin-right: 50px;
}
.report-summary{
width:80%;
margin-left:auto;
margin-right: auto;
height: auto;
margin-bottom:50px;
border:1px solid rgb(241, 235, 235);
}
.report_total
{
margin-bottom:40px;
}
.report-desc{
margin-left:auto;
margin-right: auto;
border: 1px solid grey;
}
/*********** CONTACT FORM **********************************/
.contact_info, .contact_textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
.contact_submit{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.contact-submit:hover {
background-color: #45a049;
}
.contact_container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
width:800px;
margin-left: auto;
margin-right: auto;
height: auto;
margin-top: 40px;
}
.contact_container h3{
text-align: center;
margin-bottom: 60px;
margin-top: 60px;
}
/************** create report form ************/
.report_container{
width:100%;
height: 70%;
background-color: blue;
}
.basics{
width: 48%;
float: left;
margin-left: 30px;
height:100%;
margin-top:21px;
}
.files{
width: 48%;
float: right;
margin-right: 30px;
height:100%;
}
.report_select{
width: 90%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
margin-left:40px;
margin-right: 40px;
}
.report_fieldset{
border: 1px solid rgb(240, 237, 237);
height: 800px;
}
.report_fieldset label{
text-align: center;
}
.report_text {
width: 90%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-bottom: 16px;
resize: vertical;
height: 500px;
margin-left:40px;
margin-right: 40px;
}
.report_image{
width:70%;
margin-top: -20px;
}
.report_input {
padding: 10px;
font-size: 17px;
font-family: Raleway;
border: 1px solid #aaaaaa;
margin-left:65px;
}
#clock{
background-image:url('');
background-size:cover;
background-position: center;
height: 300px;
width: 600px;
border: 1px solid #bbb;
margin-left: 70px;
}
.report_label{
margin-left: 70px;
}
#getval{
border:none;
}
.report_submit{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
margin-right:20px;
margin-bottom:-15px;
}
.report_submit:hover {
background-color: #45a049;
}
.footer{
width:100%;
height:100px;
background-color:#000033;
margin-top:70%;
}
.footer p{
color:white;
text-align:center;
font-size: 15px;
}
@media only screen and (max-width: 6000px) {
.side{
width:20%;
display:inline-block;
position: relative;
margin-top:60px;
margin-right:80%;
background-color: blue;
height:100%;
}
.icon{
display:block;
margin-left:28%;
margin-top:-40px;
}
.side a{
display:block;
color:white;
}
.table_main{
margin-left:100px;
}
.contact_container{
width: 80%;
}
footer{
margin-top:100%;
overflow: hidden;
}
}
@media only screen and (max-width: 1400px) {
.basics{
width:70%
}
.report_text{
height:300px;
width:70%;
margin-left:40px;;
}
.report_select{
width:70%
}
.files{
width:70%;
}
}
/*** banner**/
.closebtn{
display: none;
}
.openbtn{
display:none;
}
.sidepanel{
width: 90%;
z-index: 1;
height: 50px;
top: 0;
left: 0;
overflow: hidden;
margin-top:-40px;
}
.sidepanel a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 15px;
color: rgb(90, 86, 86);
float:right;
}
/*********display banner **********/
@media only screen and (max-width: 600px) {
.sidepanel {
width: 0;
z-index: 1;
height: 100%;
top: 0;
left: 0;
background-color: rgb(8, 2, 44);
overflow-x: hidden;
transition: 0.5s;
overflow:hidden;
clear:both;
}
.sidepanel a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
text-align:right;
float:left;
}
.sidepanel a:hover {
color: #f1f1f1;
}
.sidepanel .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
display:none;
}
.openbtn {
font-size: 20px;
cursor: pointer;
color: #111;
padding: 10px 15px;
border: none;
display:block;
margin-top:-40px;
margin-left: 120px;
}
} | 0.365457 | 0.095983 |
.topBar{
width: 100%;
height: 100px;
margin-top: 15px;
}
.topBarLangue{
margin-top: 20px;
margin-left: 10px;
text-decoration: none;
width: 350px;
height: 23px;
padding-top: 10px;
padding-bottom: 13px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
font-size: 1.1em;
color: white;
background-color: red;
border-radius: 20px;
}
.topBarSpeak{
width: 50px;
height: 50px;
float: right;
}
.divCentral{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.imgAvatar{
width: 35%;
}
.imgDoubleArrow{
margin-top: 50px;
width: 10%;
}
.topBarOeuvre{
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.topBarOeuvreButton{
width: 20%;
text-decoration: none;
padding: 10px;
border-radius: 25px;
color: white;
background-color: red;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
font-size: 1.1em;
}
.bottomBarOeuvre{
position: absolute;
bottom: 0px;
width: 100%;
}
.bottomQrcode{
margin-left: 10px;
width: 50px;
float: left;
}
.bottomArrow{
margin-right: 10px;
width: 50px;
float: right;
}
.containerVisiteGuider{
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.imageSeparation{
width: 50px;
left: 50%;
transform: translate(-50%);
}
.imageCarte{
width: 60%;
position: absolute;
left: 50%;
transform: translate(-50%);
}
.containerOeuvre{
position: absolute;
left: 50%;
margin-top: 20px;
transform: translate(-50%);
}
.containeVisiteCat{
position: absolute;
left: 50%;
margin-top: 200px;
transform: translate(-50%);
}
.mapsDivers{
width: 50%;
position: absolute;
left: 50%;
margin-top: 100px;
transform: translate(-50%);
} | style.css | .topBar{
width: 100%;
height: 100px;
margin-top: 15px;
}
.topBarLangue{
margin-top: 20px;
margin-left: 10px;
text-decoration: none;
width: 350px;
height: 23px;
padding-top: 10px;
padding-bottom: 13px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
font-size: 1.1em;
color: white;
background-color: red;
border-radius: 20px;
}
.topBarSpeak{
width: 50px;
height: 50px;
float: right;
}
.divCentral{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.imgAvatar{
width: 35%;
}
.imgDoubleArrow{
margin-top: 50px;
width: 10%;
}
.topBarOeuvre{
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.topBarOeuvreButton{
width: 20%;
text-decoration: none;
padding: 10px;
border-radius: 25px;
color: white;
background-color: red;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
font-size: 1.1em;
}
.bottomBarOeuvre{
position: absolute;
bottom: 0px;
width: 100%;
}
.bottomQrcode{
margin-left: 10px;
width: 50px;
float: left;
}
.bottomArrow{
margin-right: 10px;
width: 50px;
float: right;
}
.containerVisiteGuider{
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.imageSeparation{
width: 50px;
left: 50%;
transform: translate(-50%);
}
.imageCarte{
width: 60%;
position: absolute;
left: 50%;
transform: translate(-50%);
}
.containerOeuvre{
position: absolute;
left: 50%;
margin-top: 20px;
transform: translate(-50%);
}
.containeVisiteCat{
position: absolute;
left: 50%;
margin-top: 200px;
transform: translate(-50%);
}
.mapsDivers{
width: 50%;
position: absolute;
left: 50%;
margin-top: 100px;
transform: translate(-50%);
} | 0.514888 | 0.062331 |
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Open+Sans&display=swap');
/* Navbar */
*{
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
nav {
background: #ffffff;
height: 80px;
width: 100%;
box-shadow: 0 0 25px 0 black;
position: relative;
}
label.navlogo {
line-height: 106px;
padding-left: 20px;
padding-right: 20px;
font-weight: bold;
}
nav ul {
float: right;
margin-right: 20px;
}
nav ul li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
nav ul li a {
color: #540606;
font-size: 20px;
text-transform: uppercase;
font-family: 'Lato', sans-serif;
font-weight: bold;
padding: 7px 13px;
border-radius: 3px;
text-transform: uppercase;
}
a.active,a:hover {
color: #BA5000;
}
.checkbtn {
font-size: 30px;
color: #540606;
float: right;
line-height: 80px;
margin-right: 40px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
@media (max-width: 952px){
label.navlogo{
width: 40px;
line-height: 105px;
height: 100%;
padding-left: 10px;
padding-right: 10px;
}
nav ul li a {
font-size: 16px;
}
}
@media (max-width: 858px){
.checkbtn {
display: block;
}
ul {
position: absolute;
width: 100%;
height: 100vh;
background: #ffffff;
top: 80px;
left: -100%;
text-align: center;
transition: all .5s;
z-index: 1;
}
nav ul li {
display: block;
margin: 50px 0;
line-height: 30px;
}
nav ul li a {
font-size: 20px;
}
a:hover,a.active {
background: none;
color:#BA5000;
}
#check:checked ~ ul {
left: 0;
}
}
/* Gallery */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: 'Open Sans', sans-serif;
font-size: 10px;
position: relative;
}
.gallery{
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
border: 1rem solid #ffffff;
}
.container {
width: 100%;
max-width: 120rem;
margin: auto;
padding: 0 1.5 rem;
}
.image-gallery {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: auto;
grid-gap: 1.0rem;
grid-template-areas:
}
.image-gallery a {
width: 100%;
height: 25rem;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
.image-gallery a i{
color: rgba(255, 255, 255, .6);
font-size: 3rem;
position: relative;
z-index: 100;
padding: 1rem 3rem;
border: 2px solid rgba(255,255,255, .6);
border-radius: .4rem;
opacity: 0;
transition: opacity .5s;
}
.image-gallery a::before{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0,0,0,.8);
opacity: 0;
transition: opacity .5s;
}
.image-gallery a:hover i,
.image-gallery a:hover::before{
opacity: 1;
}
@media screen and (max-width: 900px) {
.image-gallery {
grid-template-areas:
}
.image-gallery a{
height: 20rem;
}
}
@media screen and (max-width: 600px) {
.image-gallery {
grid-template-areas:
;
}
.image-gallery a,
{
min-height: 30rem;
height: 30rem;
}
}
/**** Pagination ****/
.page-container{
padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}
.pagination {
display: inline-block;
padding-bottom: 10px;
}
.pagination a {
font-family: 'Lato', sans-serif;
font-size: 15px;
color:#540606;;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color .3s;
}
.pagination a.active {
background-color: #BA5000;
color: white;
}
.pagination a:hover:not(.active) {color:#BA5000;}
@media screen and (max-width: 600px) {
.pagination a {
font-family: 'Lato', sans-serif;
font-size: 15px;
color:#540606;;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color .3s;
}
}
/**** Footer BEGINS ****/
.footer {
width: 100%;
display: block;
overflow: hidden;
padding: 60px 0;
box-sizing: border-box;
background-color: #18181a;
}
.inner_footer {
display: block;
margin: 0 auto;
width: 1200px;
height: 100%;
}
.inner_footer .logo_container {
width: 18%;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 175px;
height: auto;
}
.inner_footer .logo_container a {
font-family:'Open Sans', sans-serif;
font-size: 10px;
color: #BA5000;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .logo_container a:hover {
color: #540606;
}
/* Social */
.inner_footer .footer_third1 {
width: 230px;
margin-right: 20px;
float: left;
height:100%;
}
.inner_footer .footer_third1 last-child {
margin-right: 0;
}
.inner_footer .footer_third1 h1 {
font-family: 'Lato', sans-serif;
text-transform: uppercase;
font-size: 25px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third1 a {
font-family:'Open Sans', sans-serif;
font-size: 18px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third1 li {
display: inline-block;
padding: 0 5px;
font-size: 20px;
font-family: 'Open Sans', sans-serif;
}
/* Contact */
.inner_footer .footer_third2 {
width: 650px;
float: left;
height:100%;
text-align: center;
}
.inner_footer .footer_third2 last-child {
margin-right: 0;
}
.inner_footer .footer_third2 h1 {
font-family: 'Lato', sans-serif;
text-transform: uppercase;
font-size: 25px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third2 a {
font-family:'Open Sans', sans-serif;
font-size: 18px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third2 li {
display: inline-block;
padding: 0 5px;
font-size: 20px;
font-family: 'Open Sans', sans-serif;
}
/* Contact Me Form */
input[type=text], input[type=email], textarea{
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
label {
padding: 12px 20px 20px 12px;
display: inline-block;
color: #ffffff;
font-size: 15px;
font-family: 'Open Sans', sans-serif;
}
input[type=submit] {
background: #333;
color: #fff;
padding: 1em 2em;
border: 1px solid #666;
cursor: pointer;
text-decoration: none;
margin: 0.5em 0;
}
input[type=submit]:hover {
background: #eaeaea;
color: #333;
}
.rowbutton {
text-align: center;
}
.row:after {
content: "";
display: table;
clear: both;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 55%;
margin-top: 6px;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Media Queries */
/* Contact Me */
input[type=text], input[type=email], textarea{
width: 80%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.rowbutton {
text-align: center;
}
.inner_footer .footer_third1 {
padding-bottom: 20px;
}
@media(max-width: 800px) {
.footer .inner_footer {
width: 90%;
}
.inner_footer .logo_container,
.inner_footer .footer_third {
width: 100%;
margin-bottom: 45px;
}
}
/* PHONE */
@media(max-width: 600px) {
.footer .inner_footer {
width: 100%;
}
.inner_footer .logo_container,
.inner_footer .footer_third {
width: 100%;
margin-bottom: 30px;
}
.inner_footer .footer_third2 {
width: 400px;
float: left;
height:100%;
text-align: center;
}
.inner_footer .footer_third1 {
width: 400px;
margin-right: 20px;
padding-top: 50px;
text-align: center;
float: left;
height:100%;
}
.inner_footer .logo_container {
width: 18%;
padding-left: 120px;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 175px;
height: auto;
}
}
/* iPad 1024 x 768 */
.inner_footer {
display: block;
margin: 0 auto;
width: 1100px;
height: 100%;
}
@media only screen and (max-width: 1025px) and (orientation: landscape) {
.footer {
width: 100%;
display: block;
overflow: hidden;
padding: 50px 0;
box-sizing: border-box;
background-color: #18181a;
}
.inner_footer {
display: block;
margin: 0 auto;
width: 1100px;
height: 100%;
}
.inner_footer .logo_container {
padding-left: 90px;
width: 30%;
float: left;
height: 100%;
display: block;
}
.inner_footer .footer_third1 {
width: 1300px;
margin-right: 20px;
padding-top: 20px;
text-align: center;
float: left;
height:100%;
}
}
/* Mobile */
/* Galaxy S9/S9+ 360 x 740 */
/* iPhone 6/7/8 375 x 667 */
/* iPhone 6+/7+/8+ 414 x 736 */
/* iPhone X/XS 375 x 812 */
@media only screen and (max-width: 812px) and (min-width: 360px) and (orientation: landscape) {
.inner_footer .logo_container {
padding-left: 20px;
width: 30%;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 100px;
height: auto;
}
.inner_footer .footer_third {
width: calc(25% - 10px);
margin-right: 40px;
float: left;
height:100%;
padding-left: 20px;
}
.inner_footer .footer_third: last-child {
margin-right: 0;
}
.inner_footer .footer_third h1 {
font-family: sans-serif;
font-size: 18px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third a {
font-family: sans-serif;
font-size: 13px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third li {
display: inline-block;
padding: 0 5px;
font-size: 13px;;
font-family: sans-serif;
}
.inner_footer .footer_third span {
color: #ffffff;
font-family: sans-serif;
font-size: 13px;
font-weight: 200;
display: block;
width: 100%;
padding-top: 20px;
}
.inner_footer .footer_third1 {
width: 70px;
margin-right: 20px;
float: left;
height:100%;
}
.inner_footer .footer_third2 {
margin-left: 40px;
}
.inner_footer .footer_third1 {
width: 730px;
margin-right: 20px;
padding-top: 20px;
text-align: center;
float: left;
height:100%;
}
}
/**** Footer ENDS ****/
/**** Credits BEGIN ****/
.credits {
background-color: #18181a;
color: #BA5000;
font-family: 'Lato', sans-serif;
font-size: 10px;
text-align: center;
}
.credits a {
color: #BA5000;
}
.credits a:hover {
color: #540606;
}
/**** Credits END ****/ | styles/gallery-7.css | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Open+Sans&display=swap');
/* Navbar */
*{
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
nav {
background: #ffffff;
height: 80px;
width: 100%;
box-shadow: 0 0 25px 0 black;
position: relative;
}
label.navlogo {
line-height: 106px;
padding-left: 20px;
padding-right: 20px;
font-weight: bold;
}
nav ul {
float: right;
margin-right: 20px;
}
nav ul li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
nav ul li a {
color: #540606;
font-size: 20px;
text-transform: uppercase;
font-family: 'Lato', sans-serif;
font-weight: bold;
padding: 7px 13px;
border-radius: 3px;
text-transform: uppercase;
}
a.active,a:hover {
color: #BA5000;
}
.checkbtn {
font-size: 30px;
color: #540606;
float: right;
line-height: 80px;
margin-right: 40px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
@media (max-width: 952px){
label.navlogo{
width: 40px;
line-height: 105px;
height: 100%;
padding-left: 10px;
padding-right: 10px;
}
nav ul li a {
font-size: 16px;
}
}
@media (max-width: 858px){
.checkbtn {
display: block;
}
ul {
position: absolute;
width: 100%;
height: 100vh;
background: #ffffff;
top: 80px;
left: -100%;
text-align: center;
transition: all .5s;
z-index: 1;
}
nav ul li {
display: block;
margin: 50px 0;
line-height: 30px;
}
nav ul li a {
font-size: 20px;
}
a:hover,a.active {
background: none;
color:#BA5000;
}
#check:checked ~ ul {
left: 0;
}
}
/* Gallery */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: 'Open Sans', sans-serif;
font-size: 10px;
position: relative;
}
.gallery{
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
border: 1rem solid #ffffff;
}
.container {
width: 100%;
max-width: 120rem;
margin: auto;
padding: 0 1.5 rem;
}
.image-gallery {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: auto;
grid-gap: 1.0rem;
grid-template-areas:
}
.image-gallery a {
width: 100%;
height: 25rem;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
.image-gallery a i{
color: rgba(255, 255, 255, .6);
font-size: 3rem;
position: relative;
z-index: 100;
padding: 1rem 3rem;
border: 2px solid rgba(255,255,255, .6);
border-radius: .4rem;
opacity: 0;
transition: opacity .5s;
}
.image-gallery a::before{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0,0,0,.8);
opacity: 0;
transition: opacity .5s;
}
.image-gallery a:hover i,
.image-gallery a:hover::before{
opacity: 1;
}
@media screen and (max-width: 900px) {
.image-gallery {
grid-template-areas:
}
.image-gallery a{
height: 20rem;
}
}
@media screen and (max-width: 600px) {
.image-gallery {
grid-template-areas:
;
}
.image-gallery a,
{
min-height: 30rem;
height: 30rem;
}
}
/**** Pagination ****/
.page-container{
padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}
.pagination {
display: inline-block;
padding-bottom: 10px;
}
.pagination a {
font-family: 'Lato', sans-serif;
font-size: 15px;
color:#540606;;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color .3s;
}
.pagination a.active {
background-color: #BA5000;
color: white;
}
.pagination a:hover:not(.active) {color:#BA5000;}
@media screen and (max-width: 600px) {
.pagination a {
font-family: 'Lato', sans-serif;
font-size: 15px;
color:#540606;;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color .3s;
}
}
/**** Footer BEGINS ****/
.footer {
width: 100%;
display: block;
overflow: hidden;
padding: 60px 0;
box-sizing: border-box;
background-color: #18181a;
}
.inner_footer {
display: block;
margin: 0 auto;
width: 1200px;
height: 100%;
}
.inner_footer .logo_container {
width: 18%;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 175px;
height: auto;
}
.inner_footer .logo_container a {
font-family:'Open Sans', sans-serif;
font-size: 10px;
color: #BA5000;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .logo_container a:hover {
color: #540606;
}
/* Social */
.inner_footer .footer_third1 {
width: 230px;
margin-right: 20px;
float: left;
height:100%;
}
.inner_footer .footer_third1 last-child {
margin-right: 0;
}
.inner_footer .footer_third1 h1 {
font-family: 'Lato', sans-serif;
text-transform: uppercase;
font-size: 25px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third1 a {
font-family:'Open Sans', sans-serif;
font-size: 18px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third1 li {
display: inline-block;
padding: 0 5px;
font-size: 20px;
font-family: 'Open Sans', sans-serif;
}
/* Contact */
.inner_footer .footer_third2 {
width: 650px;
float: left;
height:100%;
text-align: center;
}
.inner_footer .footer_third2 last-child {
margin-right: 0;
}
.inner_footer .footer_third2 h1 {
font-family: 'Lato', sans-serif;
text-transform: uppercase;
font-size: 25px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third2 a {
font-family:'Open Sans', sans-serif;
font-size: 18px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third2 li {
display: inline-block;
padding: 0 5px;
font-size: 20px;
font-family: 'Open Sans', sans-serif;
}
/* Contact Me Form */
input[type=text], input[type=email], textarea{
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
label {
padding: 12px 20px 20px 12px;
display: inline-block;
color: #ffffff;
font-size: 15px;
font-family: 'Open Sans', sans-serif;
}
input[type=submit] {
background: #333;
color: #fff;
padding: 1em 2em;
border: 1px solid #666;
cursor: pointer;
text-decoration: none;
margin: 0.5em 0;
}
input[type=submit]:hover {
background: #eaeaea;
color: #333;
}
.rowbutton {
text-align: center;
}
.row:after {
content: "";
display: table;
clear: both;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 55%;
margin-top: 6px;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Media Queries */
/* Contact Me */
input[type=text], input[type=email], textarea{
width: 80%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.rowbutton {
text-align: center;
}
.inner_footer .footer_third1 {
padding-bottom: 20px;
}
@media(max-width: 800px) {
.footer .inner_footer {
width: 90%;
}
.inner_footer .logo_container,
.inner_footer .footer_third {
width: 100%;
margin-bottom: 45px;
}
}
/* PHONE */
@media(max-width: 600px) {
.footer .inner_footer {
width: 100%;
}
.inner_footer .logo_container,
.inner_footer .footer_third {
width: 100%;
margin-bottom: 30px;
}
.inner_footer .footer_third2 {
width: 400px;
float: left;
height:100%;
text-align: center;
}
.inner_footer .footer_third1 {
width: 400px;
margin-right: 20px;
padding-top: 50px;
text-align: center;
float: left;
height:100%;
}
.inner_footer .logo_container {
width: 18%;
padding-left: 120px;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 175px;
height: auto;
}
}
/* iPad 1024 x 768 */
.inner_footer {
display: block;
margin: 0 auto;
width: 1100px;
height: 100%;
}
@media only screen and (max-width: 1025px) and (orientation: landscape) {
.footer {
width: 100%;
display: block;
overflow: hidden;
padding: 50px 0;
box-sizing: border-box;
background-color: #18181a;
}
.inner_footer {
display: block;
margin: 0 auto;
width: 1100px;
height: 100%;
}
.inner_footer .logo_container {
padding-left: 90px;
width: 30%;
float: left;
height: 100%;
display: block;
}
.inner_footer .footer_third1 {
width: 1300px;
margin-right: 20px;
padding-top: 20px;
text-align: center;
float: left;
height:100%;
}
}
/* Mobile */
/* Galaxy S9/S9+ 360 x 740 */
/* iPhone 6/7/8 375 x 667 */
/* iPhone 6+/7+/8+ 414 x 736 */
/* iPhone X/XS 375 x 812 */
@media only screen and (max-width: 812px) and (min-width: 360px) and (orientation: landscape) {
.inner_footer .logo_container {
padding-left: 20px;
width: 30%;
float: left;
height: 100%;
display: block;
}
.inner_footer .logo_container img {
width: 100px;
height: auto;
}
.inner_footer .footer_third {
width: calc(25% - 10px);
margin-right: 40px;
float: left;
height:100%;
padding-left: 20px;
}
.inner_footer .footer_third: last-child {
margin-right: 0;
}
.inner_footer .footer_third h1 {
font-family: sans-serif;
font-size: 18px;
color:#ffffff;
display: block;
width: 100%;
margin-bottom: 20px;
}
.inner_footer .footer_third a {
font-family: sans-serif;
font-size: 13px;
color: #ffffff;
display: block;
font-weight: 200;
width: 100%;
padding-bottom: 5px;
}
.inner_footer .footer_third li {
display: inline-block;
padding: 0 5px;
font-size: 13px;;
font-family: sans-serif;
}
.inner_footer .footer_third span {
color: #ffffff;
font-family: sans-serif;
font-size: 13px;
font-weight: 200;
display: block;
width: 100%;
padding-top: 20px;
}
.inner_footer .footer_third1 {
width: 70px;
margin-right: 20px;
float: left;
height:100%;
}
.inner_footer .footer_third2 {
margin-left: 40px;
}
.inner_footer .footer_third1 {
width: 730px;
margin-right: 20px;
padding-top: 20px;
text-align: center;
float: left;
height:100%;
}
}
/**** Footer ENDS ****/
/**** Credits BEGIN ****/
.credits {
background-color: #18181a;
color: #BA5000;
font-family: 'Lato', sans-serif;
font-size: 10px;
text-align: center;
}
.credits a {
color: #BA5000;
}
.credits a:hover {
color: #540606;
}
/**** Credits END ****/ | 0.311636 | 0.083479 |
body {
font-family: "Lato", Helvetica, Arial, Verdana, sans-serif;
letter-spacing: 0.5px;
}
a {
text-decoration: none !important;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
/*
******** Header custom style *********
*/
header .navbar {
padding-bottom: 0.75rem;
padding-top: 0.75rem;
-webkit-box-shadow: 0 8px 6px -6px #999;
-moz-box-shadow: 0 8px 6px -6px #999;
box-shadow: 0 8px 6px -6px #999;
}
.navbar-brand strong {
color: royalblue;
}
.nav-item {
margin-right: 0.75rem;
}
.nav-item a:hover {
color: royalblue !important;
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.nav-item.active {
border-bottom: 4px solid royalblue;
margin-bottom: -12px;
}
.container {
max-width: 960px;
}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.container {
max-width: 1150px;
}
}
@media (min-width: 1500px) {
.container {
max-width: 1400px;
}
}
/********** End of Header Section ***********/
/*
******** Footer custom style *********
*/
footer {
padding: 0.5rem 0 0.5rem 0;
color: white;
}
footer .site-info {
text-align: center;
padding: 0.5rem 0 0.5rem 0;
}
footer .site-info p {
margin: 0;
}
footer .social-media-menu {
text-align: center;
padding: 0.5rem 0 0.5rem 0;
}
footer .social-media-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
footer .social-media-menu ul li {
display: inline;
}
footer .social-media-menu ul li a {
margin-left: 10px;
margin-right: 10px;
transition: all 0.2s ease-in-out;
color: white;
display: inline;
padding: 0;
}
footer .social-media-menu .fab:hover {
transform: scale(1.5);
}
.footer-bottom {
padding: 0.5rem 0 0.5rem 0;
}
/********** End of Footer Section ***********/
/**
******** Card grid styles *******************
*/
.drogon-card .card-title a {
color: black;
transition: 0.2s;
}
.drogon-card .card-title a:visited {
color: black;
}
.drogon-card .card-title a:hover {
color: royalblue;
}
.drogon-card .card-body {
background-color: #fcfcfc;
}
.drogon-card .card-body p {
margin-bottom: 0;
}
.drogon-card .card-footer a {
color: #6c757d;
transition: 0.2s;
}
.drogon-card .card-footer a:hover {
color: royalblue;
}
/* Extra small devices (portrait phones, 575px and below */
.drogon-card .card-img-top {
width: 100%;
height: 45vw;
object-fit: cover;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
.drogon-card .card-img-top {
width: 100%;
height: 30vw;
object-fit: cover;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
.drogon-card .card-img-top {
width: 100%;
height: 20vw;
object-fit: cover;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.drogon-card .card-img-top {
width: 100%;
height: 13vw;
object-fit: cover;
}
}
/********** End of Card Grid Style Section ***********/
/********** Pagination Section ***********************/
.blog-pagination .page-item.active .page-link {
background-color: royalblue;
color: white;
}
.blog-pagination .page-link {
background-color: white;
color: royalblue;
}
/********** End of Pagination Section ****************/
/********** Breadcrumb Styles ************************/
.breadcrumb {
background-color: white;
padding-left: 0;
}
.breadcrumb a {
color: black !important;
}
.breadcrumb a:hover {
color: royalblue !important;
}
/********** End of Breadcrumb Styles ******************/
/********** Post Style ********************************/
.post-title {
margin-bottom: 1rem;
color: royalblue;
}
.post-meta-data {
margin-bottom: 2rem;
}
.post-meta-data a {
color: #6c757d;
}
.post-meta-data a:hover {
color: royalblue;
}
.post-fimage {
margin-bottom: 2rem;
}
.post-content blockquote {
quotes: "" "";
margin: 1em 1em;
border-left: 5px solid;
padding: 10px;
position: relative;
font-style: italic;
font-size: 105%;
font-weight: 500;
}
.post-content h2 {
border-bottom: 1px solid rgb(214, 219, 219);
margin: 30px 0 16px 0;
padding-bottom: 8px;
}
/********** End of Post Style **************************/
/********** Widget Styles *****************************/
.widget-area .widget {
margin-bottom: 20px;
background: #fff;
padding: 15px;
border: 1px solid #e8e8e8;
}
.widget-heading {
font-size: 19px;
border-bottom: 1px solid #e8e8e8;
padding-bottom: 10px;
}
.widget-post-item {
margin-top: 15px;
}
.widget-post-content {
display: block;
}
.widget-post-thumbnail img {
display: block;
float: left;
background-size: cover;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: 50% 50%;
width: 85px;
height: 55px;
background-color: #f4f4f4;
}
.widget-post-info {
display: block;
float: left;
width: calc(100% - 85px);
font-size: 14px;
padding-left: 10px;
cursor: pointer;
color: #212529;
line-height: 1.6;
max-height: 50px;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
}
.widget-post-info:hover {
color: royalblue
}
/********** End of Widget Styles **********************/
/********** Jumbotron Style ***************************/
.jumbotron-bg-cover {
background-image: url("/images/jumbotron-bg.png");
}
/********** End of Jumbotron Style ********************/
.author-card {
border: none;
}
.author-card .card-img-top {
width: 250px;
height: 250px;
}
.author-card .card-footer {
background-color: white;
border: none;
padding-top: 0;
}
.author-card .card-footer ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.author-card .card-footer ul li {
display: inline;
}
.author-card .card-footer ul li a {
margin-left: 10px;
margin-right: 10px;
display: inline;
padding: 0;
}
.powered-by ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.powered-by ul li {
display: inline;
}
.powered-by ul li a {
margin-left: 10px;
margin-right: 10px;
display: inline;
padding: 0;
} | static/css/style.css | body {
font-family: "Lato", Helvetica, Arial, Verdana, sans-serif;
letter-spacing: 0.5px;
}
a {
text-decoration: none !important;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
/*
******** Header custom style *********
*/
header .navbar {
padding-bottom: 0.75rem;
padding-top: 0.75rem;
-webkit-box-shadow: 0 8px 6px -6px #999;
-moz-box-shadow: 0 8px 6px -6px #999;
box-shadow: 0 8px 6px -6px #999;
}
.navbar-brand strong {
color: royalblue;
}
.nav-item {
margin-right: 0.75rem;
}
.nav-item a:hover {
color: royalblue !important;
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.nav-item.active {
border-bottom: 4px solid royalblue;
margin-bottom: -12px;
}
.container {
max-width: 960px;
}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.container {
max-width: 1150px;
}
}
@media (min-width: 1500px) {
.container {
max-width: 1400px;
}
}
/********** End of Header Section ***********/
/*
******** Footer custom style *********
*/
footer {
padding: 0.5rem 0 0.5rem 0;
color: white;
}
footer .site-info {
text-align: center;
padding: 0.5rem 0 0.5rem 0;
}
footer .site-info p {
margin: 0;
}
footer .social-media-menu {
text-align: center;
padding: 0.5rem 0 0.5rem 0;
}
footer .social-media-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
footer .social-media-menu ul li {
display: inline;
}
footer .social-media-menu ul li a {
margin-left: 10px;
margin-right: 10px;
transition: all 0.2s ease-in-out;
color: white;
display: inline;
padding: 0;
}
footer .social-media-menu .fab:hover {
transform: scale(1.5);
}
.footer-bottom {
padding: 0.5rem 0 0.5rem 0;
}
/********** End of Footer Section ***********/
/**
******** Card grid styles *******************
*/
.drogon-card .card-title a {
color: black;
transition: 0.2s;
}
.drogon-card .card-title a:visited {
color: black;
}
.drogon-card .card-title a:hover {
color: royalblue;
}
.drogon-card .card-body {
background-color: #fcfcfc;
}
.drogon-card .card-body p {
margin-bottom: 0;
}
.drogon-card .card-footer a {
color: #6c757d;
transition: 0.2s;
}
.drogon-card .card-footer a:hover {
color: royalblue;
}
/* Extra small devices (portrait phones, 575px and below */
.drogon-card .card-img-top {
width: 100%;
height: 45vw;
object-fit: cover;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
.drogon-card .card-img-top {
width: 100%;
height: 30vw;
object-fit: cover;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
.drogon-card .card-img-top {
width: 100%;
height: 20vw;
object-fit: cover;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.drogon-card .card-img-top {
width: 100%;
height: 13vw;
object-fit: cover;
}
}
/********** End of Card Grid Style Section ***********/
/********** Pagination Section ***********************/
.blog-pagination .page-item.active .page-link {
background-color: royalblue;
color: white;
}
.blog-pagination .page-link {
background-color: white;
color: royalblue;
}
/********** End of Pagination Section ****************/
/********** Breadcrumb Styles ************************/
.breadcrumb {
background-color: white;
padding-left: 0;
}
.breadcrumb a {
color: black !important;
}
.breadcrumb a:hover {
color: royalblue !important;
}
/********** End of Breadcrumb Styles ******************/
/********** Post Style ********************************/
.post-title {
margin-bottom: 1rem;
color: royalblue;
}
.post-meta-data {
margin-bottom: 2rem;
}
.post-meta-data a {
color: #6c757d;
}
.post-meta-data a:hover {
color: royalblue;
}
.post-fimage {
margin-bottom: 2rem;
}
.post-content blockquote {
quotes: "" "";
margin: 1em 1em;
border-left: 5px solid;
padding: 10px;
position: relative;
font-style: italic;
font-size: 105%;
font-weight: 500;
}
.post-content h2 {
border-bottom: 1px solid rgb(214, 219, 219);
margin: 30px 0 16px 0;
padding-bottom: 8px;
}
/********** End of Post Style **************************/
/********** Widget Styles *****************************/
.widget-area .widget {
margin-bottom: 20px;
background: #fff;
padding: 15px;
border: 1px solid #e8e8e8;
}
.widget-heading {
font-size: 19px;
border-bottom: 1px solid #e8e8e8;
padding-bottom: 10px;
}
.widget-post-item {
margin-top: 15px;
}
.widget-post-content {
display: block;
}
.widget-post-thumbnail img {
display: block;
float: left;
background-size: cover;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: 50% 50%;
width: 85px;
height: 55px;
background-color: #f4f4f4;
}
.widget-post-info {
display: block;
float: left;
width: calc(100% - 85px);
font-size: 14px;
padding-left: 10px;
cursor: pointer;
color: #212529;
line-height: 1.6;
max-height: 50px;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
}
.widget-post-info:hover {
color: royalblue
}
/********** End of Widget Styles **********************/
/********** Jumbotron Style ***************************/
.jumbotron-bg-cover {
background-image: url("/images/jumbotron-bg.png");
}
/********** End of Jumbotron Style ********************/
.author-card {
border: none;
}
.author-card .card-img-top {
width: 250px;
height: 250px;
}
.author-card .card-footer {
background-color: white;
border: none;
padding-top: 0;
}
.author-card .card-footer ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.author-card .card-footer ul li {
display: inline;
}
.author-card .card-footer ul li a {
margin-left: 10px;
margin-right: 10px;
display: inline;
padding: 0;
}
.powered-by ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.powered-by ul li {
display: inline;
}
.powered-by ul li a {
margin-left: 10px;
margin-right: 10px;
display: inline;
padding: 0;
} | 0.346652 | 0.062217 |
body {
font-family: 'Roboto', sans-serif;
margin: 0;
font-size: 20px;
}
.box {
width: 100vw;
height: 100vh;
overflow: hidden;
}
.wrapper {
clear: both;
width: 200vw;
height: 100vh;
}
.box--recognition .reception,
.box--recognition .recognition {
left: -100vw;
}
.reception, .recognition {
float: left;
left: 0;
position: relative;
width: 100vw;
height: 100vh;
}
.reception {
background-image: url("images/revregistration.png");
background-repeat: no-repeat;
background-size: 30%;
background-position: center;
}
.box--loading .reception {
background-image: none;
}
.reception_loading {
width: 100%;
height: 100%;
display: none;
align-items: center;
justify-content: center;
}
.box--loading .reception_loading {
display: flex;
}
.reception_loading_text {
padding: 20px;
font-size: 1.1em;
}
.recognition {
box-sizing: border-box;
padding-top: calc((100vh - 120px) / 2);
padding-left: 40px;
}
.recognition_fingerprint {
float: left;
width: 120px;
height: 120px;
}
.recognition_fingerprint_match {
cursor: pointer;
margin-left: 50%;
margin-top: 50%;
transform: translate3d(-50%, -50%, 0);
}
.recognition--unknown .recognition_fingerprint_match { display: none; }
.recognition_fingerprint_line {
fill: none;
stroke: #3871c2;
stroke-dashoffset: 0;
stroke-width: 1;
transition: all 300ms ease;
}
.recognition_fingerprint_line.active { animation: drawFingerprint 6s forwards; }
.recognition_fingerprint_line--a { stroke-dasharray: 12.15426; }
.recognition_fingerprint_line--b { stroke-dasharray: 19.79116; }
.recognition_fingerprint_line--c { stroke-dasharray: 53.00725; }
.recognition_fingerprint_line--d { stroke-dasharray: 23.70178; }
.recognition_fingerprint_line--e { stroke-dasharray: 8.83748; }
@keyframes drawFingerprint {
20% { stroke-dashoffset: 40; }
40% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: 0; }
}
.recognition_fingerprint_unknown { width: 120px; display: none; }
.recognition--unknown .recognition_fingerprint_unknown { display: block; }
.recognition_person {
height: 100px;
width: calc(100vw - 120px - 70px - 40px);
float: left;
margin: 0;
padding-left: 30px;
padding-top: 10px;
font-size: 36px;
line-height: 50px;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.recognition_person span {
display: block;
padding-right: 10px;
}
.loading {
display: block;
position: relative;
width: 64px;
height: 64px;
}
.loading::after, .loading::before {
display: block;
content: '';
position: absolute;
border: 4px solid #fff;
opacity: 1;
border-radius: 50%;
background-color: #0061ff;
animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading::before {
animation-delay: -0.5s;
}
@keyframes loading {
0% {
top: 28px;
left: 28px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: -1px;
left: -1px;
width: 58px;
height: 58px;
opacity: 0;
}
} | src/renderer/style.css | body {
font-family: 'Roboto', sans-serif;
margin: 0;
font-size: 20px;
}
.box {
width: 100vw;
height: 100vh;
overflow: hidden;
}
.wrapper {
clear: both;
width: 200vw;
height: 100vh;
}
.box--recognition .reception,
.box--recognition .recognition {
left: -100vw;
}
.reception, .recognition {
float: left;
left: 0;
position: relative;
width: 100vw;
height: 100vh;
}
.reception {
background-image: url("images/revregistration.png");
background-repeat: no-repeat;
background-size: 30%;
background-position: center;
}
.box--loading .reception {
background-image: none;
}
.reception_loading {
width: 100%;
height: 100%;
display: none;
align-items: center;
justify-content: center;
}
.box--loading .reception_loading {
display: flex;
}
.reception_loading_text {
padding: 20px;
font-size: 1.1em;
}
.recognition {
box-sizing: border-box;
padding-top: calc((100vh - 120px) / 2);
padding-left: 40px;
}
.recognition_fingerprint {
float: left;
width: 120px;
height: 120px;
}
.recognition_fingerprint_match {
cursor: pointer;
margin-left: 50%;
margin-top: 50%;
transform: translate3d(-50%, -50%, 0);
}
.recognition--unknown .recognition_fingerprint_match { display: none; }
.recognition_fingerprint_line {
fill: none;
stroke: #3871c2;
stroke-dashoffset: 0;
stroke-width: 1;
transition: all 300ms ease;
}
.recognition_fingerprint_line.active { animation: drawFingerprint 6s forwards; }
.recognition_fingerprint_line--a { stroke-dasharray: 12.15426; }
.recognition_fingerprint_line--b { stroke-dasharray: 19.79116; }
.recognition_fingerprint_line--c { stroke-dasharray: 53.00725; }
.recognition_fingerprint_line--d { stroke-dasharray: 23.70178; }
.recognition_fingerprint_line--e { stroke-dasharray: 8.83748; }
@keyframes drawFingerprint {
20% { stroke-dashoffset: 40; }
40% { stroke-dashoffset: 0; }
100% { stroke-dashoffset: 0; }
}
.recognition_fingerprint_unknown { width: 120px; display: none; }
.recognition--unknown .recognition_fingerprint_unknown { display: block; }
.recognition_person {
height: 100px;
width: calc(100vw - 120px - 70px - 40px);
float: left;
margin: 0;
padding-left: 30px;
padding-top: 10px;
font-size: 36px;
line-height: 50px;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.recognition_person span {
display: block;
padding-right: 10px;
}
.loading {
display: block;
position: relative;
width: 64px;
height: 64px;
}
.loading::after, .loading::before {
display: block;
content: '';
position: absolute;
border: 4px solid #fff;
opacity: 1;
border-radius: 50%;
background-color: #0061ff;
animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading::before {
animation-delay: -0.5s;
}
@keyframes loading {
0% {
top: 28px;
left: 28px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: -1px;
left: -1px;
width: 58px;
height: 58px;
opacity: 0;
}
} | 0.592313 | 0.111773 |
@font-face {
font-family: 'robotoregular';
src: url(../../fonts/roboto-regular-webfont.eot);
src: url(../../fonts/roboto-regular-webfont.eot?#iefix) format("embedded-opentype"), url(../../fonts/roboto-regular-webfont.woff2) format("woff2"), url(../../fonts/roboto-regular-webfont.woff) format("woff"), url(../../fonts/roboto-regular-webfont.ttf) format("truetype"), url(../../fonts/roboto-regular-webfont.svg#robotoregular) format("svg");
font-weight: 400;
font-style: normal
}
@font-face {
font-family: 'robotobold';
src: url('../../fonts/roboto-bold-webfont.eot');
src: url('../../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/roboto-bold-webfont.woff2') format('woff2'),
url('../../fonts/roboto-bold-webfont.woff') format('woff'),
url('../../fonts/roboto-bold-webfont.ttf') format('truetype'),
url('../../fonts/roboto-bold-webfont.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}
html{
background-color: #f0f0f0;
}
body {
font-family: robotoregular;
background: #fff;
}
body ul {
list-style: none
}
body a {
transition: all .5s ease
}
body a:focus,
body a:hover {
text-decoration: none;
color: #fff
}
.modal {
overflow: auto !important;
}
.lowercase{
text-transform:lowercase;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #F0F0F0 inset !important;
}
.modal-body input:-webkit-autofill,
.billing-form-content input:-webkit-autofill,
.card-form-content input:-webkit-autofill{
-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
.top-header {
background: #2e4e9e
}
.top-header-address p {
color: #ababab;
padding: 8px 2px;
font-size: 14px;
line-height: 16px
}
.social-links {
float: right
}
.social-links ul {
list-style: none
}
.social-links ul li {
display: inline-block;
vertical-align: middle;
border-left: 1px solid #365ab4
}
.social-links ul li:last-child {
border-right: 1px solid #365ab4
}
.social-links ul li a {
padding: 6px 10px;
display: inline-block;
vertical-align: middle
}
.social-links ul li a i {
font-size: 14px;
line-height: 16px;
color: #ababab
}
.social-links ul li a:hover i {
color: #fff
}
.social-links ul li a.twitter-icon:hover i{
color: #00aced;
}
.social-links ul li a.facebook-icon:hover i{
/* color: #3b5998;*/
color: #fff;
}.social-links ul li a.instagram-icon:hover i{
color: #bc2a8d;
}.social-links ul li a.googleplus-icon:hover i{
color: #dd4b39;
}
.mid-header {
background: #1b2d5a;
padding: 5px
}
.mid-header .logo {
padding: 12px 0
}
.mid-header .contact-details {
padding: 12px 0;
display: inline-block;
vertical-align: middle;
float: right
}
.mid-header .contact-details .contact {
color: #ababab;
float: left
}
.mid-header .contact-details .contact:first-child {
padding-right: 22px
}
.mid-header .contact-details .contact:last-child {
padding-right: 0px
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
color: #7ba0ff;
font-size: 14px;
line-height: 12px;
text-align: right;
}
.mid-header .contact-details .contact .contact-mail-heading i.fa,
.mid-header .contact-details .contact .contact-phone-heading i.fa {
font-size: 18px;
padding: 5px
}
.main-nav {
background: 0 0;
position: relative;
z-index: 888;
display: flex
}
.main-nav .navbar {
margin-bottom: 0;
background: #0c1427;
border: 0;
border-radius: 0
}
.main-nav .navbar .navbar-collapse {
padding-left: 0
}
.main-nav .navbar .navbar-collapse .active a {
background: rgba(240, 243, 244, 0);
color: #ababab
}
.main-nav .navbar .navbar-collapse .active a:focus,
.main-nav .navbar .navbar-collapse .active a:hover {
background: #e7e7e7;
color: #ababab
}
.make-om-fixed {
position: fixed!important;
top: -50px;
z-index: 99999;
width: 100%;
background: #0c1427;
transition: all .5s cubic-bezier(.4, 0, .2, 1);
transform: translateY(50px)
}
// .dropdown {
// position: static!important
// }
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
color: #0c1427;
background: #e7e7e7
}
.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
color: #0c1427;
background: #e7e7e7
}
.mega-dropdown {
position: static!important
}
.mega-dropdown-menu {
padding: 20px 0;
width: 100%;
box-shadow: none;
-webkit-box-shadow: none;
border: 0;
background: #e7e7e7;
height: 330px
}
.mega-dropdown-menu>li>ul {
padding: 0;
margin: 0
}
.mega-dropdown-menu>li>ul>li {
list-style: none
}
.mega-dropdown-menu>li>ul>li>a {
display: block;
color: #222;
padding: 3px 5px
}
.mega-dropdown-menu>li ul>li>a:focus,
.mega-dropdown-menu>li ul>li>a:hover {
text-decoration: none
}
.mega-dropdown-menu .dropdown-header {
font-size: 18px;
color: #0c1427;
padding: 5px 60px 5px 5px;
line-height: 30px
}
.dropdown-menu.search-panel {
height: 63px;
padding: 0;
border-radius: 0;
margin-top: 0
}
.inner-popular-course {
width: 100%;
background: #f0f0f0;
position: relative;
}
.nav-popular-course h2 {
font-size: 14px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 2px 10px;
position: absolute;
bottom: 0;
background: rgba(240, 240, 240, 0.9);
width: 100%;
}
.nav-popular-course span{
width: 54px;
display: block;
position: absolute;
top: 0px;
right: 0;
background: rgba(26, 45, 90, 0.8);
height: 25px;
line-height: 25px;
text-align: center;
padding: 2px 2px;
color: #fff;
}
.carousel-control {
width: 30px;
height: 30px;
top: -35px
}
.left.carousel-control {
right: 30px;
left: inherit
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
font-size: 12px;
background-color: #fff;
line-height: 30px;
text-shadow: none;
color: #333;
border: 1px solid #ddd
}
a.carousel-control {
background: #0c1427;
color: #fff;
opacity: 1
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
color: #0c1427
}
.main {
background: #fff
}
.slider {
margin-top: -50px
}
.slider #owl-slider-olive {
position: relative
}
.slider #owl-slider-olive .item {
height: 400px
}
.slider #owl-slider-olive .item img {
display: block;
width: 100%;
height: auto
}
.slider #owl-slider-olive .owl-controls .owl-pagination {
display: none
}
.slider #owl-slider-olive .owl-buttons div {
position: absolute;
top: 38%;
width: 72px;
height: 72px;
padding: 21px 3px;
border-radius: 50%;
background: #000;
font-size: 20px;
transition: all 0.3s ease;
}
.slider #owl-slider-olive .owl-buttons div:hover {
background: #2e4e9e;
opacity: .5
}
.slider #owl-slider-olive .owl-buttons .owl-prev {
left: 5%
}
.slider #owl-slider-olive .owl-buttons .owl-next {
right: 5%
}
.carousel-caption {
position: absolute;
top: 14%;
left: 18%
}
.carousel-caption h1 {
font-size: 38px;
color: #fff;
margin: 22px 0;
animation-delay: 1s
}
.carousel-caption p {
font-size: 18px;
padding: 0 60px;
margin: 0 0 23px;
animation-delay: 2s;
overflow: hidden;
height: 54px;
}
.carousel-caption p~p {
animation-delay: 3s
}
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=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
background: rgba(0, 0, 0, .05);
position: relative;
border: none;
padding: 0;
border: 1px solid rgba(0, 0, 0, .06);
height: 50px;
max-width: 100%;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease-in-out 0s;
-moz-transition: all .2s ease-in-out 0s;
-ms-transition: all .2s ease-in-out 0s;
-o-transition: all .2s ease-in-out 0s;
transition: all .2s ease-in-out 0s;
width: 48%;
margin: 0 0 0 6px;
font-size: 16px;
}
.slider-search-field {
background: #fff!important;
color: #001d60!important;
height: 43px!important;
margin: 0!important;
font-size: 14px;
width: 64.2% !important;
}
.slider-search-btn {
color: #fff!important;
padding: 10px 40px!important;
background: #1b2d5a!important;
margin: 0 0 2px!important;
height: 43px!important;
border-radius: 0
}
.slider-search-btn:hover {
background: #32426a!important;
border-color: #32426a!important
}
.btn-theme {
color: #fff;
border-width: 3px;
background-color: #1b2d5a;
border-color: #1b2d5a;
padding: 12px 20px;
font-size: 14px;
font-family: robotobold;
line-height: 1;
text-transform: uppercase;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
.banner-send-btn {
background: #1b2d5a;
border: none;
margin: 0 0 0 8px;
padding-left: 80px;
padding-right: 80px;
border-radius: 0;
color: #fff
}
.banner-send-btn:hover {
background: #32426a!important
}
.mega-dropdown-menu>li>ul {
padding: 0;
margin: 0
}
.mega-dropdown-menu>li>ul>li {
list-style: none
}
.mega-dropdown-menu>li>ul>li>a {
display: block;
clear: both;
font-weight: 400;
line-height: 1.428571429;
color: #999;
white-space: normal;
margin: 3px 0 3px 20px;
padding: 6px 12px
}
.mega-dropdown-menu>li ul>li>a:focus,
.mega-dropdown-menu>li ul>li>a:hover {
text-decoration: none;
color: #0c1427;
background-color: #f5f5f5;
border-left: 2px solid #0c1427;
transition: none;
-webkit-transition: none
}
.mega-dropdown-menu .dropdown-header {
color: #0c1427;
font-size: 18px;
font-weight: 700;
padding: 0 15px 5px
}
.mega-dropdown-menu form {
margin: 3px 20px 0 0;
padding: 0;
width: 100%
}
.mega-dropdown-menu form .form-group {
width: 99%
}
.mega-dropdown-menu form .form-group input[type=text] {
border-width: 0 0 2px 0;
border-color: #1b2d5a;
border-radius: 0;
border-style: solid;
background: 0 0;
box-shadow: none;
width: 100%
}
.submenu-header:hover .submenu {
display: block;
margin: 0 0 0 13px
}
.submenu-header .submenu {
list-style: none;
display: none;
max-height: 140px;
overflow: auto
}
.submenu-header .submenu li {
display: block;
margin: 0 0 0 13px
}
.submenu-header .submenu li a {
display: block;
padding: 5px 10px;
color: #1b2d5a
}
.navbar-default .navbar-nav>li>a {
color: #ababab;
text-transform: uppercase;
font-size: 12px
}
.navbar-nav .search-btn {
padding: 14px 23px;
color: #ababab
}
.banner-tabs {
margin-top: -86px
}
.banner-tabs .nav-pills {
display: table;
width: 100%;
table-layout: fixed
}
.banner-tabs #exTab3 .nav-pills li {
float: none;
display: table-cell;
width: 100%;
border-right: 1px solid #aaabb3;
}
.banner-tabs #exTab3 .nav-pills li a {
border-radius: 0;
background: #ced1de;
color: #1b2d5a;
text-align: center;
text-transform: uppercase;
font-size: 18px;
padding: 3px 14px 14px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden
}
.banner-tabs #exTab3 .nav-pills li a i {
font-size: 32px;
position: relative;
top: 5px;
padding: 0 12px
}
.banner-tabs li:last-child {
border-right: 0!important
}
.banner-tabs #exTab3 .tab-content {
color: #fff;
background-color: #08185c;
padding: 25px 40px;
position: relative;
z-index: 1
}
.banner-tabs #exTab3 .tab-content .course-date-field label,
.banner-tabs #exTab3 .tab-content .course-field label,
.banner-tabs #exTab3 .tab-content .course-seat-field label {
font-size: 18px
}
.banner-tabs #exTab3 .tab-content .course-date-field input,
.banner-tabs #exTab3 .tab-content .course-field input,
.banner-tabs #exTab3 .tab-content .course-seat-field input {
background: #fff;
border: 0;
border-radius: 0;
height: 42px;
margin: 0;
width: 100%;
border-right: 1px solid #c2c2c2
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select,
.banner-tabs #exTab3 .tab-content .course-field .rail-select,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select {
position: relative
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select select,
.banner-tabs #exTab3 .tab-content .course-field .rail-select select,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select select {
border: 0;
border-radius: 0;
font-size: 16px;
color: #555;
height: 42px;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select select:focus,
.banner-tabs #exTab3 .tab-content .course-field .rail-select select:focus,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select select:focus {
outline: 0;
box-shadow: none;
border: solid 1px #c2c2c2
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 40px;
position: absolute;
top: 0;
background-color: #fff;
height: 100%;
right: 0;
border-radius: 0;
border-right: 0;
border-top: 0;
border-bottom: 0;
pointer-events: none
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side:before,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side:before,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side:before {
border-left: solid 1px #c2c2c2;
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 1px
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side i,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side i,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side i {
left: 26%;
top: 4px;
font-size: 31px;
position: absolute;
color: #2e4e9e
}
.banner-tabs #exTab3 .tab-content .course-button button {
margin: 29px 0 0;
background: #1b2d5a;
border-radius: 0;
height: 42px;
border: 1px solid #c2c2c2;
color: #fff;
text-transform: uppercase;
font-size: 16px
}
.banner-tabs #exTab3 .tab-content .course-button button:hover {
opacity: .9
}
.banner-tabs #exTab3 .tab-content .course-button button:active,
.banner-tabs #exTab3 .tab-content .course-button button:focus,
.banner-tabs #exTab3 .tab-content .course-button button:visited {
box-shadow: none
}
.banner-tabs .nav-pills li.active a:focus,
.banner-tabs .nav-pills li.active a:hover,
.banner-tabs .nav-pills li.active>a {
background: #08185c!important;
color: #fff!important
}
.course-date-field .form_date {
width: 100%
}
.input-group-addon {
padding: 6px 12px;
font-size: 18px;
font-weight: 400;
line-height: 1;
color: #2e4e9e;
text-align: center;
background-color: #fff;
border-radius: 4px;
border-width: 0 0 0 1px;
border-radius: 0;
border-color: #000;
border-style: solid
}
.input-group-addon i {
color: #2e4e9e
}
.company-details {
margin-top: 80px;
margin-bottom: 80px
}
.company-details .row {
display: flex;
display: -webkit-flex;
}
.company-details .row .col-md-4 {
padding: 0;
flex: 1;
}
.company-details .row .col-md-4:first-child {
margin-left: 15px;
padding-right: 0;
flex: 1;
}
.company-details .row .col-md-4:last-child {
margin-right: 15px;
padding-left: 0;
flex: 1;
}
.company-details .row .col-md-4 .company-info {
text-align: center
}
.company-details .row .col-md-4 .company-info .company-info-heading {
padding: 40px 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-heading .icon-sec {
position: relative;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-heading .icon-sec img {
margin: 0 auto
}
.company-details .row .col-md-4 .company-info .company-info-content {
display: inline-block;
vertical-align: middle;
color: #fff;
padding: 0 27px 25px
}
.company-details .row .col-md-4 .company-info .company-info-content h4 {
font-size: 18px;
padding: 40px 0 20px;
position: relative;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-content p {
font-size: 14px;
padding: 10px;
position: relative;
z-index: 1
}
.company-details .row .first-content {
background: #38c071
}
.company-details .row .first-content .company-info-content:after {
background: #36bb6e;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.company-details .row .second-content {
background: #edbf47
}
.company-details .row .second-content .company-info-content:after {
background: #e7ba45;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.company-details .row .third-content {
background: #8a7bd1
}
.company-details .row .third-content .company-info-content:after {
background: #8678cb;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.safety-details-sec .safety-content {
text-align: center;
color: #1b2d5a
}
.safety-details-sec .safety-content h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px
}
.safety-details-sec .safety-content hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
border: none;
margin: 0 auto 30px
}
.safety-details-sec .safety-content hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #fff;
border-right: 5px solid #fff
}
.safety-details-sec .safety-content .description p {
font-size: 14px;
line-height: 24px;
width: 61%;
margin: 0 auto
}
.news-sec {
margin-bottom: 80px;
background-image: url(../images/slider/slider2.png);
}
.parallax{
background-attachment: fixed;
background-position: 0 0;
background-repeat: no-repeat;
background-size: cover;
}
.news-sec .container {
padding: 50px 22px 66px
}
.news-sec .container .news-details {
color: #fff
}
.news-sec .container .news-details p.news-date {
padding: 0 0 3px
}
.news-sec .container .news-details h3.news-heading {
font-size: 24px;
line-height: 26px;
padding: 0 0 8px
}
.news-sec .container .news-details p.news-content {
font-size: 14px;
line-height: 18px
}
.news-sec .container .news-button {
margin-top: 30px
}
.news-sec .container .news-button .read-more {
padding: 10px 33px;
background: #1b2d5a;
color: #fff;
border: 0;
border-radius: 0;
font-size: 12px
}
.news-sec .container .news-button .read-more:hover {
opacity: 0.9;
}
.course-listing {
margin-bottom: 80px
}
.course-listing .course-heading {
text-align: center;
color: #1b2d5a
}
.course-listing .course-heading h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px
}
.course-listing .course-heading hr {
background: #ababab;
width: 180px;
position: absolute;
left: 42.3%;
height: 1px;
border: none
}
.course-listing .course-heading hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #fff;
border-right: 5px solid #fff
}
.h-w-c hr:after{
border-left: 5px solid #f0f0f0 !important;
border-right: 5px solid #f0f0f0 !important;
}
.course-listing .course-heading p {
font-size: 14px;
line-height: 24px;
padding: 30px 10px 0;
width: 61%;
margin: 0 auto 80px
}
.course-listing .courses-row {
margin: 0 0 20px
}
.course-listing .courses-row .col-xs-12 {
margin-bottom: 20px
}
.course-listing .courses-row .col-xs-12:last-child {
margin-bottom: 0
}
.rating {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 14px;
text-align: left
}
.rating span.star {
font-family: FontAwesome;
font-weight: 400;
font-style: normal;
display: inline-block
}
.rating span.star:hover {
cursor: pointer
}
.rating span.star:before {
content: "\f006";
padding-right: 5px;
color: #d3d3d3
}
.rating span.star.active:before,
.rating span.star:hover:before,
.rating span.star:hover~span.star:before {
content: "\f005";
color: #3c3c3c
}
.tabs {
margin-bottom: 25px;
font-size: 24px;
font-weight: 300;
line-height: 20px;
text-transform: uppercase;
text-align: center;
overflow: hidden;
position: relative
}
.tabs ul {
display: inline-block;
position: relative;
margin-top: -10px
}
.tabs ul:after,
.tabs ul:before {
content: "";
position: absolute;
height: 1px;
width: 2000px;
background-color: #a5abb7;
top: 20px
}
.tabs ul:before {
right: 100%;
margin-right: 15px
}
.tabs ul:after {
left: 100%;
margin-left: 15px
}
@media (max-width:767px) {
.tabs ul {
padding-bottom: 15px;
border-bottom: solid 1px #a5abb7
}
}
.tabs li {
display: inline-block;
margin-top: 10px
}
.tabs li a {
padding: 0;
color: #232323
}
.tabs li a,
.tabs li a:hover {
background-color: transparent
}
.tabs li a:hover {
color: #a5abb7
}
.tabs li.active {
font-weight: 900
}
.tabs li.active a {
color: #232323;
background-color: transparent
}
@media (min-width:768px) {
.tabs li+li {
position: relative;
margin-left: 20px
}
.tabs li+li:before {
content: '';
display: block;
width: 6px;
height: 1px;
position: absolute;
left: -14px;
top: 10px;
background-color: #232323
}
}
@media (max-width:767px) {
.tabs li {
display: block
}
}
.thumbnail {
margin: 0 auto;
border-radius: 0;
background-color: transparent;
position: relative
}
@media (max-width:991px) {
.thumbnail {
max-width: 450px
}
}
.thumbnail.hover,
.thumbnail:hover {
border: solid 1px #1b2d5a
}
.thumbnail.no-border,
.thumbnail.no-border.hover,
.thumbnail.no-border:hover {
border: none
}
.thumbnail.no-padding {
padding: 0
}
.row.thumbnails {
margin-top: -30px
}
.row.thumbnails .thumbnail {
margin-top: 30px
}
.row.thumbnails.no-padding {
margin-top: 0;
margin-left: 0;
margin-right: 0
}
.row.thumbnails.no-padding [class*=col-] {
padding: 0
}
.row.thumbnails.no-padding .thumbnail {
margin-top: 0
}
.thumbnail .media {
overflow: hidden;
position: relative
}
.thumbnail .media img {
max-width: 100%;
width: 100%
}
.thumbnail .caption {
padding: 15px 0 0 0;
overflow: hidden
}
.thumbnail .caption+.caption {
padding-top: 10px
}
.thumbnail .caption.no-padding-top {
padding-top: 0
}
.thumbnail .caption.no-padding-bottom {
padding-bottom: 0
}
.thumbnail .caption.hovered {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
text-align: center;
overflow: hidden;
padding: 15px;
color: #fff;
opacity: 0;
z-index: 10
}
.thumbnail.hover .caption.hovered,
.thumbnail:hover .caption.hovered {
opacity: 1
}
.caption-wrapper {
width: 100%
}
.caption-title {
font-size: 18px;
font-weight: 300;
line-height: 20px;
margin: 0 0 5px 0;
color: #232323
}
.caption-title a {
color: #1b2d5a;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: block
}
.caption-title a:hover,
.caption-title a:focus,
.caption-title a:visited{
color: #232323
}
.icon-view {
width: 80px;
height: 80px;
padding: 5px;
border: solid 1px rgba(0, 0, 0, .6);
border-radius: 50%;
display: inline-block
}
.icon-view strong {
display: block;
width: 68px;
height: 68px;
border-radius: 50%;
text-align: center;
background-color: rgba(0, 0, 0, .6);
color: #fff
}
.icon-view .fa,
.icon-view .glyphicon {
font-size: 24px;
line-height: 68px
}
.thumbnail .media-link {
padding: 0;
display: block;
position: relative;
overflow: hidden;
text-align: center;
height: 215px
}
.thumbnail .media-link img {
width: 100%;
height: 100%;
object-fit: cover;
}
.thumbnail .media-link .icon-view {
position: absolute;
top: 50%;
left: 50%;
margin-left: -40px;
margin-top: -40px;
opacity: 0;
-webkit-animation: fadeOut .4s;
animation: fadeOut .4s
}
.caption-title a:hover .icon-view,
.thumbnail:hover .media-link .icon-view {
opacity: 1;
-webkit-animation: bounceIn .4s;
animation: bounceIn .4s
}
.thumbnail .caption,
.thumbnail .caption-category,
.thumbnail .caption-link,
.thumbnail .caption-price,
.thumbnail .caption-title,
.thumbnail .caption-wrapper,
.thumbnail .caption-zoom,
.thumbnail .icon-view,
.thumbnail .icon-view .fa,
.thumbnail .icon-view .glyphicon,
.thumbnail .media,
.thumbnail .media img,
.thumbnail .media-link:after,
.thumbnail span,
.thumbnail.hover .caption,
.thumbnail.hover .caption-category,
.thumbnail.hover .caption-link,
.thumbnail.hover .caption-price,
.thumbnail.hover .caption-title,
.thumbnail.hover .caption-wrapper,
.thumbnail.hover .caption-zoom,
.thumbnail.hover .icon-view,
.thumbnail.hover .icon-view .fa,
.thumbnail.hover .icon-view .glyphicon,
.thumbnail.hover .media,
.thumbnail.hover .media img,
.thumbnail.hover .media-link:after,
.thumbnail.hover span,
.thumbnail:hover .caption,
.thumbnail:hover .caption-category,
.thumbnail:hover .caption-link,
.thumbnail:hover .caption-price,
.thumbnail:hover .caption-title,
.thumbnail:hover .caption-wrapper,
.thumbnail:hover .caption-zoom,
.thumbnail:hover .icon-view,
.thumbnail:hover .icon-view .fa,
.thumbnail:hover .icon-view .glyphicon,
.thumbnail:hover .media,
.thumbnail:hover .media img,
.thumbnail:hover .media-link:after,
.thumbnail:hover span {
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
.thumbnail-team {
text-align: center
}
.thumbnail-team .media {
padding-left: 20px;
padding-right: 20px
}
.thumbnail-team .media img {
max-width: 200px
}
.thumbnail-team .caption-title {
text-transform: uppercase;
padding-bottom: 10px;
margin-bottom: 15px;
position: relative
}
.thumbnail-team .caption-title:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 50%;
width: 50px;
height: 1px;
margin-left: -25px;
background-color: #e9e9e9
}
.thumbnail-team .caption-title small {
display: block;
color: #7f7f7f
}
.thumbnail-team .social-icons {
display: inline-block;
margin-bottom: 10px
}
.thumbnail-team .social-icons a {
border-radius: 15px
}
.thumbnail-team .caption-text {
font-size: 15px
}
.thumbnail.thumbnail-banner .media,
.thumbnail.thumbnail-banner .media .caption,
.thumbnail.thumbnail-banner .media .media-link {
height: 100%
}
@media (max-width:991px) {
.thumbnail.thumbnail-banner {
max-width: 555px
}
}
.thumbnail.thumbnail-banner+.thumbnail.thumbnail-banner {
margin-top: 30px
}
.thumbnail.thumbnail-banner .media-link {
text-align: left
}
.thumbnail.thumbnail-banner .caption {
padding: 0
}
.thumbnail.thumbnail-banner .caption-wrapper {
padding: 15px
}
.thumbnail.thumbnail-banner .caption-inner {
border: solid 1px #fff;
padding: 15px
}
.col-md-3 .thumbnail.thumbnail-banner .caption-inner {
padding: 15px 2px
}
.thumbnail.thumbnail-banner .caption-sub-title,
.thumbnail.thumbnail-banner .caption-title {
font-size: 14px;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
margin: 0 0 1px 0;
color: #232323
}
.thumbnail.thumbnail-banner .caption-sub-title span,
.thumbnail.thumbnail-banner .caption-title span {
display: inline-block;
padding: 8px 12px;
background-color: rgba(255, 255, 255, .8)
}
.col-md-3 .thumbnail.thumbnail-banner .caption-sub-title span {
padding: 8px 7px
}
.thumbnail.thumbnail-banner .btn {
margin-top: 10px
}
.thumbnail.thumbnail-banner .btn-theme {
border-color: #232323;
background-color: #232323
}
.thumbnail.thumbnail-banner .btn-theme:hover {
background-color: #1b2d5a;
border-color: #1b2d5a
}
.thumbnail.thumbnail-banner.size-1x1 {
height: 170px
}
@media (min-width:992px) and (max-width:1999px) {
.thumbnail.thumbnail-banner.size-1x1 {
height: 190px
}
}
@media (min-width:480px) and (max-width:991px) {
.thumbnail.thumbnail-banner.size-1x1 {
max-width: 280px
}
}
@media (min-width:320px) and (max-width:479px) {
.thumbnail.thumbnail-banner.size-1x1 {
height: 190px
}
}
.thumbnail.thumbnail-banner.size-1x3 {
height: 170px
}
@media (min-width:992px) and (max-width:1999px) {
.thumbnail.thumbnail-banner.size-1x3 {
height: 190px
}
}
@media (min-width:320px) and (max-width:479px) {
.thumbnail.thumbnail-banner.size-1x3 {
height: 190px
}
}
.thumbnail.thumbnail-banner.size-2x3 {
height: 270px
}
.thumbnail.thumbnail-banner.size-3x3 {
height: 570px
}
.thumbnail.thumbnail-banner.size-1x1-b {
height: 270px
}
.thumbnail.thumbnail-banner.size-1x3-b {
height: 270px
}
.thumbnail-banner .media img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition-duration: .4s;
transition-duration: .4s;
position: relative
}
.thumbnail-banner .media-link .img-bg {
position: absolute;
height: 100%;
width: 100%;
z-index: -1;
background-image: url("");
background-position: 50% 50%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1)
}
.thumbnail-banner .media-link:hover .img-bg {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2)
}
.thumbnail-banner .caption {
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
background-color: rgba(86, 135, 191, 0)
}
.thumbnail-banner.alt-font .caption-title {
font-family: Vidaloka, serif;
font-style: italic;
font-weight: 400;
font-size: 24px
}
.thumbnail-banner.alt-font .caption-title span {
padding-top: 5px;
padding-bottom: 5px;
background-color: rgba(255, 255, 255, .3)
}
.thumbnail-banner.alt-font .caption-sub-title {
font-family: Vidaloka, serif;
font-weight: 400;
font-size: 18px
}
.thumbnail-banner.alt-font .caption-sub-title span {
padding-top: 5px;
padding-bottom: 5px;
background-color: rgba(255, 255, 255, .3)
}
.thumbnail-banner.alt-font .btn-theme-sm {
font-size: 11px
}
.thumbnail-banner.alt-font.big-text .caption-title {
font-size: 48px
}
@media (max-width:640px) {
.thumbnail-banner.alt-font.big-text .caption-title {
font-size: 28px
}
}
.thumbnail-banner.alt-font.big-text .caption-sub-title {
font-size: 44px
}
@media (max-width:640px) {
.thumbnail-banner.alt-font.big-text .caption-sub-title {
font-size: 24px
}
}
.thumbnail-banner.hover .media img,
.thumbnail-banner:hover .media img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.thumbnail-banner.hover .btn-theme,
.thumbnail-banner:hover .btn-theme {
-webkit-animation: pulse .4s;
animation: pulse .4s
}
.thumbnail-banner.hover .caption,
.thumbnail-banner:hover .caption {
background-color: rgba(86, 135, 191, .3)
}
.thumbnail .rating {
display: inline-block;
font-size: 13px;
float: left
}
.thumbnail .rating span.star:before {
padding-right: 3px
}
.thumbnail .price {
font-size: 16px;
line-height: 1.3;
/*margin-bottom: 15px;*/
float: left;
font-family: robotobold;
}
.thumbnail .price del {
font-weight: 400;
font-size: 14px;
color: #232323
}
.thumbnail .price ins {
/*padding-right: 5px;*/
text-decoration: none;
color: #1b2d5a
}
.thumbnail .buttons .btn {
padding: 10px 22px;
font-size: 12px;
line-height: 18px
}
.thumbnail .buttons .btn .fa,
.thumbnail .buttons .btn .glyphicon {
font-size: 16px!important
}
.thumbnail .buttons .btn-wish-list {
margin-right: 10px
}
.thumbnail .buttons .btn-compare {
margin-left: 10px
}
.thumbnail .btn-wish-list {
opacity: 0
}
.thumbnail .btn-compare {
opacity: 0
}
.thumbnail.hover .btn-wish-list,
.thumbnail:hover .btn-wish-list {
opacity: 1
}
.thumbnail.hover .btn-compare,
.thumbnail:hover .btn-compare {
opacity: 1
}
.thumbnail.category .media-link:after {
content: '';
display: block;
z-index: 1;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0
}
.thumbnail.category .caption {
position: absolute;
z-index: 2;
width: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0
}
.thumbnail.category .caption-wrapper {
padding: 5px
}
.thumbnail.category .caption-inner {
padding: 0
}
.thumbnail.category .sale {
font-size: 36px;
font-weight: 900;
line-height: 40px;
margin-bottom: 8px;
text-transform: uppercase;
color: #fff
}
.thumbnail.category .caption-title {
font-size: 24px;
font-weight: 300;
line-height: 30px;
margin-bottom: 5px;
text-transform: uppercase;
color: #fff
}
.thumbnail.category .items {
font-size: 24px;
font-weight: 300;
line-height: 30px;
margin-bottom: 10px;
text-transform: uppercase;
font-style: italic;
color: #fff
}
.thumbnail.category .media img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition-duration: .4s;
transition-duration: .4s;
position: relative
}
.thumbnail.category span {
padding: 0 8px;
background-color: transparent
}
.thumbnail.category .btn-theme {
border-width: 1px;
border-color: #fff;
color: #fff
}
.thumbnail.category .media-link:after {
background-color: rgba(0, 0, 0, .25)
}
.thumbnail.category.hover .media img,
.thumbnail.category:hover .media img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.thumbnail.category.hover span,
.thumbnail.category:hover span {
color: #fff;
background-color: rgba(0, 0, 0, .5)
}
.thumbnail.category.hover .btn-theme,
.thumbnail.category:hover .btn-theme {
border-color: #fff;
background-color: #fff;
color: #232323
}
.thumbnail.category.hover .media-link:after,
.thumbnail.category:hover .media-link:after {
background-color: transparent
}
.caption-details {
display: inline-block;
background: #fff;
width: 100%;
padding: 0 15px 15px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc
}
.caption-details:after {
content: '';
width: 100%;
height: 2px;
background: #1b2d5a;
position: absolute;
bottom: 5px;
right: 0;
z-index: 0;
overflow: hidden
}
.caption-details .caption-title {
padding: 15px 0;
border-bottom: 1px solid rgba(0, 0, 0, .08);
margin-left: 15px;
margin-right: 15px;
font-family: robotobold;
}
.buttonandinclude,
.rateandprice {
font-family: robotobold;
padding: 15px 0;
border-bottom: 1px solid rgba(0, 0, 0, .08);
margin-left: 15px;
margin-right: 15px
}
.buttonandinclude {
border-bottom: 0
}
.buttonandinclude .buttons {
/*display: inline-block;
vertical-align: middle;*/
display: block;
}
.buttonandinclude strong {
float: right;
padding-top: 7px;
}
.thumbnail .buttons .btn {
padding: 10px 22px;
font-size: 12px;
line-height: 18px;
width: 100%;
}
.buttonandinclude .btn-theme {
color: #fff;
border-width: 3px;
background-color: #1b2d5a;
border-color: #1b2d5a;
padding: 12px 20px;
font-size: 14px;
line-height: 1;
text-transform: uppercase;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
font-family: robotobold;
}
.buttonandinclude .btn,
.buttonandinclude .btn.active,
.buttonandinclude .btn:active,
.buttonandinclude .btn:hover {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0
}
.buttonandinclude .btn-theme-transparent {
background-color: transparent;
border-width: 3px;
border-color: #e9e9e9;
color: #1b2d5a
}
.btn-theme-transparent:hover,
.buttonandinclude .btn-theme-transparent:active,
.buttonandinclude .btn-theme-transparent:focus {
background-color: #1b2d5a;
border-color: #1b2d5a;
color: #fff
}
.course-viewmore-sec {
text-align: center
}
.course-viewmore-sec .course-viewmore {
background: #1b2d5a;
border: 0;
padding: 17px 56px;
border-radius: 0;
color: #fff;
text-align: center
}
.course-viewmore-sec .course-viewmore:hover {
box-shadow: none;
opacity: .9
}
.fact-sec {
margin-top: 60px
}
#about-section {
background-image: url(../images/slider/slider3.png);
}
.about-section-text {
display: table-cell;
vertical-align: middle;
padding: 65px 8px;
padding-left: 140px;
float: right
}
.about-section-text h2 {
margin-top: 10px;
color: #fff;
text-align: left;
font-size: 40px;
padding: 0 0 35px;
position: relative;
font-family: robotobold;
}
.about-main-heading h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 76px
}
.about-main-heading h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 78px;
z-index: 1;
left: 60px
}
.about-section-text p {
color: #fff;
font-size: 14px
}
.about-main-heading {
padding: 0 0 35px
}
.about-main-heading p {
padding: 35px 0 0
}
.about-section-content {
text-align: left;
color: #fff;
margin-left: -15px;
padding: 0 0 55px
}
.about-section-content p {
font-size: 40px
}
.about-section-content h3 {
font-size: 20px
}
.about-section-text-o {
float: left;
margin-left: 10px
}
.about-section-right {
float: left;
padding: 0;
background: rgba(46, 78, 158, .8)
}
.about-section-i p {
margin-top: 10px;
margin-left: 95px;
color: #999
}
.about-section-text-i {
float: left;
color: #fff;
font-size: 15px;
padding: 5px;
width: 80%;
margin-left: 5px;
margin-bottom: 10px
}
.about-section-b i.fa {
margin-right: 15px;
color: #fff;
font-size: 24px;
margin-right: 35px;
padding: 4px
}
.about-section-c {
float: left;
color: #fff;
font-size: 24px;
padding: 10px;
border: 1px solid #00a5df;
width: 55px;
height: 55px;
margin-right: 31px;
margin-left: 15px
}
.about-c i.fa {
margin-right: 15px;
color: #00a5df;
font-size: 24px;
margin-right: 35px;
padding: 4px
}
.about-section-d {
float: left;
color: #fff;
font-size: 24px;
width: 55px;
height: 55px;
margin-right: 31px;
margin-left: 15px
}
.about-bus p {
margin-top: 25px;
margin-bottom: 25px
}
.about-deg {
float: left;
color: #999;
font-size: 24px;
padding: 10px;
border: 2px solid #00a5df;
width: 55px;
height: 55px;
margin-right: 31px;
transform: rotate(-45deg);
margin-left: 15px;
margin-top: 20px
}
.about-section-deg i.fa {
margin-right: 15px;
color: #999;
font-size: 20px;
margin-right: 35px;
padding: 4px;
transform: rotate(45deg)
}
.about-section-heading h3 {
font-size: 18px;
font-weight: 500;
margin-top: 10px;
color: #ccc
}
main-bane {
width: 100%
}
@media (max-width:1366px) {
.about-section-text-i {
width: 80%
}
}
.about-section-text-i {
color: #fff;
font-size: 15px;
padding: 5px;
width: 80%;
margin-left: 5px;
margin-bottom: 10px
}
.about-section-heading h3 {
font-size: 18px;
font-weight: 500;
margin-top: 10px;
color: #ccc
}
@media (max-width:1366px) {
p.para {
line-height: 25px;
font-size: 15px
}
}
p.para {
font-size: 16px;
margin: 65px 0 65px 0;
line-height: 28px;
color: #130f0f;
padding: 5px
}
.footer {
background: #103157;
position: relative;
z-index: 999;
}
.footer-column {
padding: 60px 0
}
.f-column-widget h4 {
font-size: 18px;
position: relative;
color: #fff;
display: inline-block;
padding: 0 10px 0 0;
margin: 0 0 40px
}
.f-column-widget h4:before {
content: '';
position: absolute;
left: 100%;
font-weight: 700
}
.f-column-widget>i {
position: absolute;
top: -13px;
left: -5px;
font-size: 44px;
color: rgba(171, 171, 171, .16);
z-index: 0
}
.address-widget {
color: #ababab;
font-size: 14px
}
.address-widget p {
margin: 0 0 20px;
color: #ababab
}
.address-list {
list-style-type: none
}
.address-list li {
margin: 0 0 10px
}
.address-list li i {
margin: 0 10px 0 0
}
.address-widget .social-icons {
margin: 30px 0 0
}
.f-column-widget .courses-list-link {
list-style-type: disc;
color: #ababab;
margin: 0 0 0 20px
}
.f-column-widget .courses-list-link li {
font-size: 14px;
margin: 0 0 10px
}
.newslatter p {
font-size: 14px;
color: #ababab;
padding: 0 0 10px
}
.newslatter input {
height: 30px;
line-height: 18px;
padding: 0 15px;
width: 100%;
height: 42px
}
.newslatter .form-control {
background: rgba(255, 255, 255, .1);
color: #ababab;
border: 1px solid #ababab;
border-radius: 0;
padding: 8px;
margin: 0
}
.newslatter button.newsletter-btn {
background: #00558f;
color: #fff;
text-transform: uppercase;
padding: 9px 30px;
border-radius: 0;
}
.courses-gallery ul {
margin: 0 0 0 -10px
}
.courses-gallery ul li {
float: left;
margin: 0 0 10px 10px
}
.courses-gallery ul li:hover a img {
transform: scale(1.1)
}
.courses-gallery>a {
font-size: 12px;
color: #ababab
}
.courses-gallery>a i {
margin: 0 5px 0 0
}
.sub-footer {
padding: 30px 0;
background: #002147
}
.sub-footer p {
float: left;
margin: 0;
font-size: 12px;
color: #ababab
}
.sub-footer-nav {
float: right
}
.sub-footer-nav li {
float: left
}
.sub-footer-nav li::before {
content: "|";
margin: -3px 10px;
float: left;
color: #c2c2c2
}
.sub-footer-nav li:first-child::before {
display: none
}
.sub-footer-nav li a {
float: left;
color: #c2c2c2;
font-size: 12px;
text-transform: uppercase
}
.sub-footer-nav li a:hover {
color: #fff
}
.social-icons {
overflow: hidden;
list-style-type: none
}
.social-icons li {
float: left;
margin: 0 0 0 10px
}
.social-icons li:first-child {
margin: 0
}
.social-icons li a {
height: 40px;
line-height: 40px;
text-align: center;
width: 40px;
border-radius: 100%;
border-radius: 100%;
border: 1px solid rgba(255, 255, 255, .2);
color: rgba(255, 255, 255, .2);
text-decoration: none
}
.social-icons li a:hover {
color:#fff;
}
.social-icons li a.fa-facebook:hover{
background: #3b5998;
border-color: #3b5998;
}
.social-icons li a.fa-twitter:hover{
background: #00aced;
border-color: #00aced;
}
.social-icons li a.fa-instagram:hover{
background: #bc2a8d;
border-color: #bc2a8d;
}
.social-icons li a.fa-google-plus:hover{
background: #dd4b39;
border-color: #dd4b39;
}
.social-icons li a.fa-dribbble:hover{
background: #ea4c89;
border-color: #ea4c89;
}
.tc-padding-top {
padding-top: 120px
}
.tc-padding-bottom {
padding-bottom: 120px
}
.tc-padding {
padding: 80px 0;
background: #f0f0f0
}
.osafety-contact-form h2 {
padding: 0 0 35px;
position: relative
}
.osafety-contact-form h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 59px
}
.osafety-contact-form h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 61px;
z-index: 1;
left: 49px
}
.osafety-contact-form hr {
background: #ababab;
width: 107px;
position: absolute;
left: 11.7%;
height: 1px;
border: none
}
.osafety-contact-form hr:after {
content: '';
background: #ababab;
width: 36px;
height: 6px;
position: absolute;
top: -3px;
z-index: 1;
left: -53px
}
.osafety-contact-form p {
padding: 35px 0 0
}
#contact-form .btn {
margin: 80px 0 0;
}
#contact-form .btn:hover {
color: #252525;
border-color: #252525
}
#contact-form label {
color: #7f7f7f;
display: block;
font-weight: 400;
margin: 0;
}
#contact-form textarea {
border-radius: 0!important;
resize: none;
position: relative;
top: 5px;
}
#contact-form .form-control,
#contact-form input,
#contact-form input[type=color],
#contact-form input[type=date],
#contact-form input[type=datetime-local],
#contact-form input[type=datetime],
#contact-form input[type=email],
#contact-form input[type=month],
#contact-form input[type=number],
#contact-form input[type=password],
#contact-form input[type=search],
#contact-form input[type=tel],
#contact-form input[type=text],
#contact-form input[type=time],
#contact-form input[type=url],
#contact-form input[type=week],
#contact-form textarea {
border: 0;
height: 50px;
width: 100%;
border-radius: 0;
color: #252525;
font-weight: 400;
background: 0 0;
padding: 10px 0 0;
font-size: 16px;
line-height: 1.9;
box-shadow: none;
-webkit-transition: all .28s ease;
transition: all .28s ease;
margin: 0;
}
#contact-form .checkbox input[type="checkbox"]{
height: auto !important;
margin-left: 0 !important;
}
#contact-form .user-login-checkbox label{
padding-left: 0;
}
#contact-form .form-group {
position: relative;
margin: 0 0 30px
}
#contact-form .form-group .control-label {
position: absolute;
top: 10px;
pointer-events: none;
font-size: 16px;
-webkit-transition: all .28s ease;
transition: all .28s ease
}
#contact-form .form-group .bar {
position: relative;
border-bottom: 1px solid #ccc;
display: block
}
#contact-form .form-group .bar::before {
content: '';
height: 2px;
width: 0;
left: 50%;
bottom: -1px;
position: absolute;
z-index: 2;
-webkit-transition: left .28s ease, width .28s ease;
transition: left .28s ease, width .28s ease
}
#contact-form select {
border-bottom: 1px solid #ccc!important
}
#contact-form select:focus {
box-shadow: none!important
}
#contact-form .form-group input:focus,
#contact-form .form-group select:focus,
#contact-form .form-group textarea:focus {
outline: 0
}
#contact-form .form-group input[type=file] {
line-height: 1
}
#contact-form .form-group input[type=file]~.bar {
display: none
}
#contact-form .form-group input.form-file,
#contact-form .form-group input.has-value,
#contact-form .form-group input:focus,
#contact-form .form-group input::invalid:not(:focus):not(:required),
#contact-form .form-group select,
#contact-form .form-group textarea.form-file,
#contact-form .form-group textarea.has-value,
#contact-form .form-group textarea:focus,
#contact-form .form-group textarea:optional {
color: #333
}
#contact-form .form-group input.form-file~.control-label,
#contact-form .form-group input.has-value~.control-label,
#contact-form .form-group input:focus~.control-label,
#contact-form .form-group input::invalid:not(:focus):not(:required)~.control-label,
#contact-form .form-group select~.control-label,
#contact-form .form-group textarea.form-file~.control-label,
#contact-form .form-group textarea.has-value~.control-label,
#contact-form .form-group textarea:focus~.control-label,
#contact-form .form-group textarea::invalid:not(:focus):not(:required)~.control-label {
top: -1rem;
left: 0
}
#contact-form .form-group input:focus,
#contact-form .form-group select:focus,
#contact-form .form-group textarea:focus {
outline: 0
}
#contact-form .form-group input:focus~.bar::before,
#contact-form .form-group select:focus~.bar::before,
#contact-form .form-group textarea:focus~.bar::before {
width: 100%;
left: 0
}
#contact-form .btn {
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
border-radius: 3px;
text-transform: uppercase;
position: relative;
overflow: hidden
}
#contact-form .btn.full-width {
width: 100%
}
#contact-form .btn i {
margin: 0 0 0 10px
}
#contact-form .btn.blue {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0
}
#contact-form .btn.blue:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
color: #fff!important;
opacity: .9
}
#contact-form .btn.blank {
background: 0 0;
color: #fff;
border: 1px solid #fff
}
#contact-form .btn.blank:hover {
color: #fff
}
#contact-form .btn.blank.dark {
border-color: #252525;
color: #252525
}
#contact-form .btn.blank.dark:hover {
color: #fff
}
#contact-form .btn.sm {
height: 40px;
line-height: 40px;
padding: 0 20px;
min-width: 100px
}
#contact-form .circle-btn {
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 100%;
font-size: 20px;
color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}
#contact-form .circle-btn:hover {
color: #fff
}
#contact-form .btn.white {
background: #fff
}
#contact-form .ripple {
position: absolute;
background: rgba(0, 0, 0, .25);
border-radius: 100%;
transform: scale(.2);
opacity: 0;
pointer-events: none;
-webkit-animation: ripple .75s ease-out;
-moz-animation: ripple .75s ease-out;
animation: ripple .75s ease-out
}
.os-global-form .btn {
margin: 80px 0 0
}
.os-global-form .btn:hover {
color: #252525;
border-color: #252525
}
.os-global-form label {
color: #7f7f7f;
display: block;
font-weight: 400;
margin: 0
}
.os-global-form textarea {
border-radius: 0!important;
resize: none;
position: relative;
top: 5px;
}
.os-global-form .form-control,
.os-global-form input,
.os-global-form input[type=color],
.os-global-form input[type=date],
.os-global-form input[type=datetime-local],
.os-global-form input[type=datetime],
.os-global-form input[type=email],
.os-global-form input[type=month],
.os-global-form input[type=number],
.os-global-form input[type=password],
.os-global-form input[type=search],
.os-global-form input[type=tel],
.os-global-form input[type=text],
.os-global-form input[type=time],
.os-global-form input[type=url],
.os-global-form input[type=week],
.os-global-form textarea {
border: 0;
height: 50px;
width: 100%;
border-radius: 0;
color: #252525;
font-weight: 400;
background: 0 0;
padding: 10px 0;
font-size: 16px;
line-height: 1.9;
box-shadow: none;
-webkit-transition: all .28s ease;
transition: all .28s ease;
margin: 0;
}
.os-global-form .checkbox input[type="checkbox"]{
height: auto !important;
margin-left: 0 !important;
}
.os-global-form .user-login-checkbox label{
padding-left: 0;
}
.os-global-form .form-group {
position: relative;
margin: 0 0 30px
}
.os-global-form .form-group .control-label {
position: absolute;
top: 10px;
pointer-events: none;
font-size: 16px;
-webkit-transition: all .28s ease;
transition: all .28s ease
}
.os-global-form .form-group .bar {
position: relative;
border-bottom: 1px solid #ccc;
display: block
}
.os-global-form .form-group .bar::before {
content: '';
height: 2px;
width: 0;
left: 50%;
bottom: -1px;
position: absolute;
z-index: 2;
-webkit-transition: left .28s ease, width .28s ease;
transition: left .28s ease, width .28s ease
}
.os-global-form select {
border-bottom: 1px solid #ccc!important
}
.os-global-form select:focus {
box-shadow: none!important
}
.os-global-form .form-group input:focus,
.os-global-form .form-group select:focus,
.os-global-form .form-group textarea:focus {
outline: 0
}
.os-global-form .form-group input[type=file] {
line-height: 1
}
.os-global-form .form-group input[type=file]~.bar {
display: none
}
.os-global-form .form-group input.form-file,
.os-global-form .form-group input.has-value,
.os-global-form .form-group input:focus,
.os-global-form .form-group input::invalid:not(:focus):not(:required),
.os-global-form .form-group select,
.os-global-form .form-group textarea.form-file,
.os-global-form .form-group textarea.has-value,
.os-global-form .form-group textarea:focus,
.os-global-form .form-group textarea::invalid:not(:focus):not(:required) {
color: #333
}
.os-global-form .form-group input.form-file~.control-label,
.os-global-form .form-group input.has-value~.control-label,
.os-global-form .form-group input:focus~.control-label,
.os-global-form .form-group input::invalid:not(:focus):not(:required)~.control-label,
.os-global-form .form-group select~.control-label,
.os-global-form .form-group textarea.form-file~.control-label,
.os-global-form .form-group textarea.has-value~.control-label,
.os-global-form .form-group textarea:focus~.control-label,
.os-global-form .form-group textarea::invalid:not(:focus):not(:required)~.control-label {
top: -1rem;
left: 0
}
.os-global-form .form-group input:focus,
.os-global-form .form-group select:focus,
.os-global-form .form-group textarea:focus {
outline: 0
}
.os-global-form .form-group input:focus~.bar::before,
.os-global-form .form-group select:focus~.bar::before,
.os-global-form .form-group textarea:focus~.bar::before {
width: 100%;
left: 0
}
.os-global-form .btn {
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
border-radius: 3px;
text-transform: uppercase;
position: relative;
overflow: hidden
}
.os-global-form .btn.full-width {
width: 100%
}
.os-global-form .btn i {
margin: 0 0 0 10px
}
.os-global-form .btn.blue {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0
}
.os-global-form .btn.blue:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
color: .fff!important;
opacity: .9
}
.os-global-form .btn.blank {
background: 0 0;
color: #fff;
border: 1px solid #fff
}
.os-global-form .btn.blank:hover {
color: #fff
}
.os-global-form .btn.blank.dark {
border-color: #252525;
color: #252525
}
.os-global-form .btn.blank.dark:hover {
color: #fff
}
.os-global-form .btn.sm {
height: 40px;
line-height: 40px;
padding: 0 20px;
min-width: 100px
}
.os-global-form .circle-btn {
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 100%;
font-size: 20px;
color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}
.os-global-form .circle-btn:hover {
color: #fff
}
.os-global-form .btn.white {
background: #fff
}
.os-global-form label.error,
#contact-form label.error{
color: #d43b3b !important;
position: absolute;
bottom: -21px;
}
.os-global-form input.error,
#contact-form input.error,
.os-global-form textarea.error,
#contact-form textarea.error,
.os-global-form .form-group .bar.error,
#contact-form .form-group .bar.error{
border-bottom: 1px solid #d43b3b !important;
}
.os-global-form .ripple {
position: absolute;
background: rgba(0, 0, 0, .25);
border-radius: 100%;
transform: scale(.2);
opacity: 0;
pointer-events: none;
-webkit-animation: ripple .75s ease-out;
-moz-animation: ripple .75s ease-out;
animation: ripple .75s ease-out
}
@-webkit-keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
@-moz-keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
@keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
.form-banner {
padding: 160px 0
}
.learning-online-form h2 {
font-size: 60px;
margin: 0 0 20px;
text-transform: capitalize;
font-weight: 300;
color: #fff
}
.learning-online-form p {
color: #fff;
font-size: 20px;
font-weight: 300;
margin: 0 0 30px
}
.learning-online-form form .form-group .control-label {
color: #fff
}
.learning-online-form form .btn {
background: #fff;
margin: 60px 0 0
}
.learning-online-form form input {
color: #fff!important
}
.learning-online-form form .bar::before {
background: #fff!important
}
.main-nav .navbar-fixed-top {
margin: 0 auto;
width: 1140px
}
.slider .top-banner {
/*background: url(../images/slider/slider3.png) no-repeat 0 -78px;*/
/*padding: 125px 0 70px;*/
padding: 87px 0 38px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-position-x: 0;
background-position-y: -78px;
}
/*.height {
height: 229px;
}*/
.slider .top-banner .inner-wrapper {
padding: 8px 35px;
display: inline-block;
vertical-align: middle
}
.slider .top-banner .inner-wrapper .breadcrumb {
padding: 8px 0;
background-color: transparent;
color: #fff;
font-size: 17px;
text-transform: uppercase;
margin-bottom: 2px
}
.slider .top-banner .inner-wrapper h2 {
font-size: 41px;
color: #fff;
text-transform: uppercase;
font-family: robotobold;
}
.courses-main {
background: #f0f0f0
}
.main-courses-section nav#PageNavigation {
text-align: center;
}
.course-listing-tab {
margin-top: 80px
}
.course-listing-tab .course-heading hr:after {
border-left: 5px solid #e2e3df;
border-right: 5px solid #e2e3df
}
.right-sidebar {
margin-top: 8px
}
.course_products h2,
.courses-search-button h2,
.popular_courses h2,
.right-sidebar h2 {
color: #1b2d5a;
font-size: 18px;
font-weight: 700;
margin: 0 auto 30px;
text-align: center;
position: relative;
z-index: 3
}
button.btn.btn-link.filter-button {
color: #5a5a5a;
text-decoration: none;
font-weight: 700;
font-size: 18px;
padding: 6px 2px
}
button.btn.btn-link.filter-button.active {
color: #1b2d5a
}
.courses-selection-tab {
margin-bottom: 21px;
text-align: center
}
.courses-selection-tab hr {
height: 2px;
background: rgba(171, 171, 171, .3);
border: 0;
position: absolute;
top: 24px;
width: 93.2%;
left: 30px
}
.courses-selection-tab .tab-wrapper {
display: inline-block;
vertical-align: middle;
background: #f0f0f0;
position: relative;
z-index: 1;
font-size: 20px;
font-weight: 700;
padding: 0 20px
}
.courses-search-field {
margin: 0 0 30px
}
.courses-search-field input:active,
.courses-search-field input:focus,
.courses-search-field input:hover,
.courses-search-field input:visited {
box-shadow: none;
border: 2px solid #c2c2c2;
border-right: 0
}
.courses-search-btn {
border-radius: 0;
height: 45px;
border-width: 2px;
border-left: 0;
border-color: #c2c2c2;
background: 0 0
}
.courses-search-field input {
background: 0 0;
border: 2px solid #c2c2c2;
border-radius: 0;
height: 45px;
box-shadow: none;
border-right: 0;
padding: 4px 19px
}
.courses-search-btn i {
font-size: 17px
}
button.courses-search-btn:focus,
button.courses-search-btn:hover,
button.courses-search-btn:visited {
background: 0 0!important;
box-shadow: none!important;
border: 2px solid #c2c2c2!important;
color: #1b2d5a!important;
border-left: 0!important
}
.right-sidebar h2:before {
content: " ";
position: absolute;
background: #f0f0f0;
bottom: -6px;
width: 148px;
height: 30px;
z-index: -1;
left: 46%;
margin-left: -65px
}
.right-sidebar h2:after,
h2.title:after {
content: " ";
position: absolute;
border: 1px solid rgba(171, 171, 171, .3);
bottom: 8px;
left: 0;
width: 100%;
height: 0;
z-index: -2
}
.filter .thumbnail .media-link {
height: 166px
}
.courses-category {
border: 1px solid rgba(171, 171, 171, .3);
margin-bottom: 35px;
padding-bottom: 20px;
padding-top: 15px
}
.courses-category .panel {
background-color: #f0f0f0;
border: 0;
border-radius: 0;
box-shadow: none;
margin-bottom: 0
}
.courses-category .panel-default .panel-heading {
background-color: #f0f0f0;
border: 0 none;
color: #fff;
padding: 5px 20px
}
.panel-body {
padding: 15px 30px
}
.panel-body li {
padding: 5px 0;
border-bottom: solid 1px #ddd;
transition: all 0.5s ease;
}
.panel-boyd li:hover{
transform: translateX(3px);
}
.panel-body li:last-child {
border: none;
}
.panel-body li:before {
content: '\f105 ';
margin-right: -5px;
position: relative;
left: -13px;
font-family: 'fontAwesome';
}
.panel-body ul li a:hover {
color: #1b2d5a
}
.courses-category .panel-default .panel-heading .panel-title a {
color: #333;
font-size: 13px;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
display: block;
}
.courses-category .badge {
background: 0 0!important;
border-radius: 10px;
color: #333!important;
display: inline-block;
font-size: 12px;
font-weight: 700;
line-height: 1;
min-width: 10px;
padding: 3px 7px;
text-align: center;
vertical-align: baseline;
white-space: nowrap
}
.course_products .course-name {
padding: 15px 20px 20px;
border: 1px solid rgba(171, 171, 171, .3);
margin-bottom: 35px
}
.control-group {
display: inline-block;
vertical-align: top;
background: #fff;
text-align: left;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
padding: 30px;
width: 200px;
height: 210px;
margin: 10px
}
.control {
display: block;
position: relative;
padding-left: 0;
margin-bottom: 8px;
cursor: pointer;
font-size: 14px;
text-transform: uppercase;
color: #333;
font-weight: 700
}
.control input {
position: absolute;
z-index: -1;
opacity: 0
}
.control__indicator {
position: absolute;
top: 2px;
right: 0;
height: 17px;
width: 17px;
background: #e6e6e6;
border: 1px solid #333
}
.control--radio .control__indicator {
border-radius: 50%
}
.control input:focus~.control__indicator,
.control:hover input~.control__indicator {
background: #ccc;
border: 1px solid #333
}
.control input:checked~.control__indicator {
background: #333
}
.control input:checked:focus~.control__indicator,
.control:hover input:not([disabled]):checked~.control__indicator {
background: #0c1427
}
.control__indicator:after {
content: '';
position: absolute;
display: none
}
.control input:checked~.control__indicator:after {
display: block
}
.control--checkbox .control__indicator:after {
left: 5px;
top: 0;
width: 7px;
height: 12px;
border: solid #fff;
border-width: 0 3px 3px 0;
transform: rotate(45deg)
}
.btn-filter {
background: 0 0;
border: 2px solid rgba(171, 171, 171, .5);
color: #1b2d5a;
border-radius: 0;
margin: 12px 0;
width: 100%
}
.popular-courses .media {
clear: both
}
.popular-courses .media-link {
padding: 0;
margin-right: 20px;
display: block;
position: relative;
overflow: hidden;
text-align: center;
width: 50px;
overflow: hidden;
border: 2px solid rgba(27, 45, 90, 0.4);
height: 50px;
}
.popular-courses .media-link:hover .fa {
bottom: 50%;
opacity: 1
}
.popular-courses .media-link:hover:after {
background-color: rgba(86, 135, 191, .7)
}
.popular-courses .media-link .fa {
position: absolute;
bottom: 50%;
left: 50%;
font-size: 18px;
width: 30px;
height: 30px;
line-height: 30px;
margin-left: -15px;
margin-bottom: -15px;
color: #fff;
z-index: 11;
opacity: 0;
text-align: center
}
.popular-courses .media-link:after {
background-color: rgba(86, 135, 191, 0)
}
.popular-courses .media-link:after {
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(86, 135, 191, 0);
z-index: 10
}
.popular-courses .media-body {
min-height: 80px
}
.popular-courses .media-heading {
font-size: 14px;
font-weight: 700;
color: #1b2d5a;
padding: 2px 0;
margin-top: 0;
margin-left: 0;
margin-bottom: 0;
}
.popular-courses .media-heading a {
color: #1b2d5a
}
.popular-courses .rating {
font-size: 14px
}
.rating span.star {
font-family: FontAwesome;
font-weight: 400;
font-style: normal;
display: inline-block
}
.popular-courses .enrollment {
font-size: 14px;
font-weight: 700;
line-height: 1.3;
color: #333
}
.popular-courses .enrollment ins {
color: #1b2d5a;
text-decoration: none
}
.filter-button {
background: 0 0;
border: 0;
box-shadow: none;
font-size: 18px
}
.filter-button.active,
.filter-button:focus,
.filter-button:hover {
font-weight: 700;
box-shadow: none;
background: 0 0
}
.global-pagination ul.pagination,
.main-courses-section ul.pagination {
margin: 0
}
.global-pagination .pagination>li,
.main-courses-section .pagination>li {
display: inline-block;
vertical-align: middle;
margin: 0 2px
}
.global-pagination .pagination>li>a,
.main-courses-section .pagination>li>a {
border-radius: 0!important;
padding: 7px 16px;
border: 2px solid #1b2d5a;
background: #f0f0f0;
color: #1b2d5a;
margin: 0;
font-size: 16px
}
.global-pagination .pagination>li.active>a,
.main-courses-section .pagination>li.active>a{
background: #1b2d5a;
color: #f0f0f0;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 16px
}
.globalpagination .pagination a i,
.main-courses-section.pagination a i {
font-size: 20px;
color: #1b2d5a
}
.top-rated-courses .courses-selection-tab {
margin-bottom: 22px;
text-align: center
}
.top-rated-courses .courses-selection-tab h2 {
color: #1b2d5a;
font-size: 18px;
font-weight: 700;
margin: 8px 0;
text-align: center;
position: relative;
z-index: 3
}
.top-rated-courses .caption-details .caption-title{
padding: 0 0 10px;
}
#top-rated-owl .item {
background: 0 0;
padding: 10px 0;
margin: 10px 15px
}
/*#top-rated-owl .rateandprice{
padding: 7px 0 !important;
}*/
#top-rated-owl .rateandprice .price{
font-size: 13px;
}
.owl-controls .owl-pagination {
display: none
}
.related-courses .thumbnail .buttons .btn{
width: 100%;
margin: 0 0 15px;
}
.related-courses .buttonandinclude strong{
padding: 0;
}
.related-courses .thumbnail .media-link{
height: 140px;
}
.customNavigation {
text-align: center
}
/*.customNavigation a {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
border: 2px solid #c2c2c2;
border-radius: 0;
padding: 8px 15px;
color: #c2c2c2;
background: 0 0;
position: absolute;
top: 38%
}*/
.customNavigation a {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
border: 2px solid #1b2d5a;
border-radius: 0;
padding: 5px 14px;
color: #1b2d5a;
background: 0 0;
position: absolute;
top: -5%;
background: rgba(255, 255, 255, 0.8);
}
.customNavigation a.prev {
right: 8.2%
}
.customNavigation a.next {
right: 3.2%
}
.customNavigation a:hover {
color: #1b2d5a;
border-color: #1b2d5a
}
.global-pagination .pagination>li>a.active,
.global-pagination .pagination>li>a:focus,
.global-pagination .pagination>li>a:hover,
.main-courses-section .pagination>li>a.active,
.main-courses-section .pagination>li>a:focus,
.main-courses-section .pagination>li>a:hover {
border-radius: 0!important;
border: 2px solid #1b2d5a;
background: #1b2d5a;
color: #fff
}
.top-rated-courses.owl-controls.clickable {
display: none
}
.main-courses-section {
margin-bottom: 50px
}
.slider .course-details-top-banner {
padding: 87px 0 38px
}
.course-details-thumbnail {
float: left;
position: relative;
}
.course-details-thumbnail:before {
content: "";
position: absolute;
border-top: 4px solid #f0f0f0;
border-left: 4px solid #f0f0f0;
top: 0;
left: 0;
width: 50px;
height: 50px;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.course-details-thumbnail:after {
content: "";
position: absolute;
border-bottom: 4px solid #f0f0f0;
border-right: 4px solid #f0f0f0;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.slider .top-banner .inner-wrapper:hover .course-details-thumbnail:before {
top: 7px;
left: 7px;
}
.slider .top-banner .inner-wrapper:hover .course-details-thumbnail:after {
bottom: 7px;
right: 7px;
}
.course-details-thumbnail img {
max-width: 237px;
padding: 12px;
}
.course-details-top-banner .course-details-content {
float: left;
margin: 33px 20px
}
.course-details-content h2.course-details-heading {
font-size: 25px!important
}
.course-details-content .course-details-enrollment {
font-size: 20px;
font-weight: 700;
color: #fff;
text-transform: uppercase
}
.course-details-content-heading h1 {
text-transform: uppercase;
font-size: 26px;
color: #1b2d5a;
font-weight: 700;
padding: 0 0 35px
}
.course-details-content-heading h1:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.course-details-content-heading h1:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.course-details-content-heading p {
padding: 48px 0;
color: #333;
font-size: 14px
}
.course-details-purchase {
background: #fff;
border: 1px solid #e1e1e1;
padding: 25px 18px 20px;
font-size: 17px;
margin: 113px 0 30px
}
.course-details-purchase p {
padding: 0 0 10px;
color: #1b2d5a
}
.course-details-purchase p i.fa.fa-clock-o {
padding: 0 8px 0 0
}
.course-details-purchase p i.fa.fa-users {
padding: 0 5px 0 0
}
.course-details-purchase p span {
float: right
}
.course-details-purchase .buttons {
padding: 10px 0 6px
}
.course-details-purchase .buttons a {
/*background-color: transparent;
border-width: 3px;
border-color: #e9e9e9;
color: #1b2d5a;*/
width: 100%;
border-radius: 0;
text-transform: uppercase;
background-color: #1b2d5a;
border-color: #1b2d5a;
color: #fff;
box-shadow: none;
padding: 9px;
}
.course-details-purchase .buttons a:active,
.course-details-purchase .buttons a:focus,
.course-details-purchase .buttons a:hover {
opacity: 0.9;
color: #fff;
box-shadow: none
}
.row.course-details-tabs.courses-row {
background: #fff;
padding: 25px 0
}
.course-tab-head:before {
position: absolute;
content: '';
background: #1b2d5a;
height: 1px;
width: 100%;
top: 5px;
left: 100%
}
.course-details-tab-content {
padding: 0
}
.course-details-tab-content .tabs-common-btn{
padding: 0 26px;
}
ul#nav-tabs li a i {
padding: 0 0 13px;
font-size: 26px;
color: #c2c2c2
}
ul#nav-tabs li.active a i {
color: #1b2d5a
}
.nav.nav-justified>li>a {
position: relative
}
.nav.nav-justified>li>a:focus,
.nav.nav-justified>li>a:hover {
background-color: transparent
}
.nav.nav-justified>li>a>.quote {
opacity: 1;
width: 9px;
height: 9px;
background-color: #c2c2c2;
border-radius: 50%;
color: #1b2d5a;
text-align: center;
display: block;
margin: 0 auto 13px
}
.nav.nav-justified>li.active>a>.quote {
background: #1b2d5a
}
.nav.nav-justified>li>a>p,
ul#nav-tabs>li>a>i {
max-width: 100%;
-webkit-transform: scale(.9, .9);
transform: scale(.9, .9);
-webkit-transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
color: #c2c2c2
}
.nav.nav-justified>li.active>a>p,
.nav.nav-justified>li:focus>a>p,
.nav.nav-justified>li:hover>a>p,
ul#nav-tabs>li>a:hover>i {
-webkit-transform: none;
transform: none;
-webkit-transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
color: #1b2d5a
}
.tab-pane .tab-inner {
padding: 30px 0 20px
}
@media (min-width:768px) {
.nav.nav-justified>li>a>.quote {
left: 70px;
top: 48px;
bottom: 0
}
}
.course-details-tab-content a {
color: #1b2d5a
}
.course-details-tab-content a:hover {
color: #0c1427
}
ul#nav-tabs:before {
background: #1b2d5a;
content: '';
position: absolute;
width: 100%;
height: 1px;
top: 53px;
z-index: 0;
left: 0
}
.tab-inner .row {
/*display: flex;*/
margin-bottom: 70px
}
.tab-inner .row:last-child {
margin-bottom: 0
}
.tab-inner-bg {
background: #f7f7f7 none repeat scroll 0 0;
cursor: default;
/*height: 290px;*/
height: 313px;
margin: 0 0 80px;
}
.course-details-tab-inner-content {
padding: 0 15px;
margin: 16px 0 0;
}
.course-module-content {
text-align: center;
padding: 10px;
}
.course-module-content .module-heading {
position: relative
}
.course-module-content .module-heading h3 {
text-transform: uppercase;
color: #222;
padding: 56px 0 20px;
border-bottom: 1px solid #c2c2c2;
font-size: 12px;
font-weight: 700;
line-height: 18px
}
.course-module-content .module-content{
max-height: 175px;
overflow-y: auto;
overflow-x: hidden;
}
.course-module-content .module-content p {
color: #777;
font-size: 14px;
padding: 20px 15px 10px;
}
.course-module-content .module-heading span {
background: #f7f7f7 none repeat scroll 0 0;
border: 3px solid #1b2d5a;
border-radius: 50%;
color: #222;
display: block;
font-weight: 700;
height: 84px;
left: 0;
margin: auto;
padding: 28px 0;
position: absolute;
right: 0;
top: -52px;
width: 84px;
z-index: 99999;
}
.tab-inner-bg:hover .course-module-content .module-heading span {
background: #fff
}
.course-module-wrapper,
.course-attendable-wrapper,
.course-certification-wrapper,
.course-objectives-wrapper,
.course-prerequisites-wrapper{
margin-bottom: 0!important;
padding: 0 0 30px!important;
}
.course-objectives-module p,
.course-attendable-content p,
.course-certification-content p,
.course-objectives-content p,
.course-prerequisites-content p{
margin: 0 0 15px;
}
.course-objectives-module ul,
.course-attendable-content ul,
.course-certification-content ul,
.course-objectives-content ul,
.course-prerequisites-content ul {
padding: 0 30px
}
.course-objectives-module ul li,
.course-attendable-content ul li,
.course-certification-content ul li,
.course-objectives-content ul li,
.course-prerequisites-content ul li {
margin: 0 0 20px;
padding: 0 0 0 30px;
color: #222;
position: relative
}
.course-objectives-module ul li:before,
.course-attendable-content ul li:before,
.course-certification-content ul li:before,
.course-objectives-content ul li:before,
.course-prerequisites-content ul li:before {
position: absolute;
content: '';
width: 13px;
height: 13px;
background: #fff;
top: 0;
margin: 4px 0;
border-radius: 50%;
border: 2px solid #1b2d5a;
left: 0
}
.course-objectives-module ul li:after,
.course-attendable-content ul li:after,
.course-certification-content ul li:after,
.course-objectives-content ul li:after,
.course-prerequisites-content ul li:after {
position: absolute;
width: 15px;
height: 3px;
background: #fff;
top: 0;
left: 0;
content: '';
margin: 9px 0 0
}
.tabs-course-booking-btn {
display: inline-block;
vertical-align: middle;
float: left;
}
.tabs-course-booking-btn a {
padding: 10px 70px;
border-radius: 0;
background: #1b2d5a;
color: #fff;
border: 0;
text-transform: uppercase
}
.tabs-course-booking-btn a:focus,
.tabs-course-booking-btn a:hover {
/*background: #ccc;
color: #1b2d5a*/
opacity: 0.9;
color: #fff;
}
.course-select-date {
margin: 80px 0 0
}
.course-select-date>.course-booking-content {
margin: 30px 0 0
}
.course-booking-content {
margin-bottom: 60px
}
.course-select-title>h2 {
text-transform: uppercase;
font-size: 22px;
color: #1b2d5a;
font-weight: 700;
padding: 0 0 80px;
position: relative;
}
.course-select-title>h2:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.course-select-title>h2:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.other-available-date > h2 {
text-transform: uppercase !important;
font-size: 22px !important;
color: #1b2d5a !important;
padding: 0 0 35px !important;
text-align: center !important;
font-family: 700;
}
.course-unavailable .icon-sec {
float: left;
vertical-align: middle;
display: inline-block;
padding: 8px 15px 0 0;
}
.course-unavailable .icon-sec i {
font-size: 26px;
color: #e44225;
}
.course-unavailable .unavailable-content {
text-align: left;
}
/*.other-available-date hr {
background: #ababab;
width: 180px;
position: absolute;
left: 42.3%;
height: 1px;
border: none
}
.other-available-date hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0
}*/
.course-seat-number {
position: relative
}
.course-seat-number select {
border: 0;
border-radius: 0;
font-size: 16px;
color: #555;
height: 42px;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none
}
.course-seat-number select:focus {
outline: 0;
box-shadow: none;
border: solid 1px #c2c2c2
}
.course-seat-number .course-select-side {
width: 40px;
position: absolute;
top: 0;
background-color: #fff;
height: 100%;
right: 0;
border-radius: 0;
border-right: 0;
border-top: 0;
border-bottom: 0;
pointer-events: none
}
.course-seat-number .course-select-side:before {
border-left: solid 1px #c2c2c2;
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 1px
}
.course-seat-number .course-select-side i {
left: 26%;
top: 4px;
font-size: 31px;
position: absolute;
color: #2e4e9e
}
.course-select-button button {
margin: 29px 0 0;
background: #1b2d5a;
border-radius: 0;
height: 42px;
border: 1px solid #c2c2c2;
color: #fff;
text-transform: uppercase;
font-size: 16px
}
.course-select-button button:hover {
opacity: .9
}
.course-select-button button:active,
.course-select-button button:focus,
.course-select-button button:visited {
box-shadow: none
}
.course-select-content {
padding: 0;
color: #333;
border: 1px solid #1b2d5a
}
.course-select-content h2 {
padding: 8px 26px;
background: #1b2d5a;
color: #fff;
/*margin: 0 0 15px;*/
margin: 0 0 23px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.date-plus-seats{
margin: 0 0 10px;
}
.date-plus-seats,
.seat-number-section{
padding-left: 26px;
padding-right: 26px;
}
.date-plus-seats .event-date .date-and-time {
display: inline-block;
vertical-align: middle
}
.date-plus-seats p {
padding: 0 0 5px;
font-size: 15px
}
.date-plus-seats .event-date .date-and-time p,
.duration .date-and-time p {
float: left;
padding: 0 18px 8px 0;
font-size: 13px;
}
.date-plus-seats .event-date p i,
.duration .date-and-time p {
padding: 0 10px 0 0
}
.available-seats p i {
padding: 0 9px 0 0
}
.date-plus-seats .available-seats {
padding: 0 0 5px
}
.seat-number-section .form-group.course-seat-field label {
font-size: 16px;
font-weight: 700;
text-transform: uppercase
}
.available-course-content {
padding: 40px 0 0;
margin: 0 0 80px
}
.available-course-content .available-course-content-col {
margin-bottom: 20px
}
.available-course-date {
display: flex;
background: #fff
}
.available-course-date .date-head {
display: inline-block;
background: #fff;
padding: 18.2px 2px;
font-size: 15px;
font-weight: 700;
float: left;
width: 17.5%;
text-align: center;
color: #1b2d5a;
height: 80px;
}
.available-course-date .date-head span{
display: block;
}
.available-course-date-content {
display: inline-block;
padding: 15px 20px;
background: rgba(27, 45, 90, .8);
width: 82.5%;
float: left;
color: #fff
}
.available-course-date-content h2 {
padding: 0 0 10px;
text-align: left;
color: #fff;
font-size: 16px;
}
.available-course-date-content a:hover {
color: #ababab
}
.event-date p a:hover {
color: #1b2d5a!important
}
.main-calendar-content inline-list {
margin: 0
}
.datepicker-inline .datepicker {
width: 100%;
border-radius: 0;
height: 349px
}
.datepicker--cell {
height: 45px!important
}
.datepicker--nav {
background: #1b2d5a
}
.datepicker--day-name {
color: #1b2d5a!important
}
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
color: #fff!important;
background: #1b2d5a!important
}
.datepicker--cell.-current- {
color: #275fec!important
}
.datepicker--nav-action:hover,
.datepicker--nav-title:hover {
background: rgba(225, 225, 225, .5)!important
}
.datepicker--nav-title,
.datepicker--nav-title i {
color: #fff!important
}
.dp-note {
position: absolute;
width: 5px;
height: 5px;
right: 9px;
bottom: 7px;
border-radius: 50%;
border: 1px solid #000;
background: #1b2d5a
}
.scrollToTop {
width: 43px;
height: 43px;
padding: 0 5px;
text-align: center;
background: #0c1427;
color: #ccc;
text-decoration: none;
position: fixed;
bottom: 80px;
right: 24px;
font-size: 18px;
border-radius: 50%;
line-height: 39px;
z-index: 99999;
display: none
}
.global-heading {
text-align: center;
color: #1b2d5a
}
.global-heading > h2 {
font-size: 34px;
padding: 0 0 30px;
font-family: robotobold;
}
.global-heading hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
border: none;
margin: 0 auto 30px
}
.global-heading hr::after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0;
}
.global-heading .description p {
font-size: 14px;
line-height: 24px;
width: 61%;
margin: 0 auto 80px;
color: #333;
}
.psdp-section .global-heading hr::after,
.common-section-one .global-heading hr::after{
border-left-color: #fff;
border-right-color: #fff;
}
.global-inner-heading h1 {
text-transform: uppercase;
font-size: 26px;
color: #1b2d5a;
padding: 0 0 80px;
font-family: robotobold;
}
.global-inner-heading h1:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.global-inner-heading h1:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.global-inner-heading p{
margin: 0 0 20px;
}
.global-inner-heading p:last-child{
margin: 0 0 48px;
}
.aboutus-content {
margin: 80px 0
}
.left-single-us {
margin: 0 0 45px
}
.single_us {
padding-right: 18px
}
.fix:after,
.fix:before {
content: "";
display: table
}
.single_us .single_us_img {
float: left;
position: relative;
z-index: 0
}
.single_us .single_us_img img {
border: 1px solid #fff;
max-width: 98px;
height: auto
}
.single_us .single_us_img:after {
left: 5px;
top: 5px;
z-index: -1;
position: absolute;
content: "";
width: 100%;
height: 100%;
background: rgba(27, 45, 90, 0.7);
}
.single_us .single_us_text {
display: block;
margin-bottom: 67px;
margin-top: 11px;
padding-left: 125px
}
.single_us .single_us_text h3 {
border-bottom: 1px dashed #1b2d5a;
margin-bottom: 16px;
padding-bottom: 16px;
font-size: 23px;
color: #1b2d5a;
font-family: robotobold;
}
.news-wrapper {
margin: 80px 0
}
.theme-large-sidebar.R-P-fix {
padding-right: 40px;
margin-bottom: 30px;
}
.theme-large-sidebar {
width: 100%
}
.float-left {
float: left
}
.single-news-item {
position: relative;
margin-bottom: 50px;
padding-top: 38px
}
.single-news-item .date {
width: 70px;
height: 78px;
text-align: center;
color: #fff;
position: absolute;
left: 1%;
top: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 99;
padding-top: 2px;
background: #1b2d5a
}
.single-news-item .img {
overflow: hidden;
position: relative;
max-height: 300px
}
.single-news-item:hover .img img {
-webkit-transform: scale3D(1.1, 1.1, 1);
transform: scale3D(1.1, 1.1, 1)
}
.single-news-item .img img {
-webkit-transition: all .8s ease-in-out;
transition: all .8s ease-in-out;
width: 100%
}
.single-news-item .post {
background: #fff;
padding: 34px 20px 40px 30px
}
.single-news-item .post h4 {
text-transform: none;
margin-bottom: 15px;
color: #333;
font-size: 23px;
font-weight: 600
}
.single-news-item .post h4 a:hover {
color: #1b2d5a
}
.single-news-item .post ul li {
display: inline-block;
line-height: 18px;
margin: 10px 6px 0 0;
padding-right: 10px;
border-right: 1px solid #7f7f7f
}
.single-news-item .post ul li:nth-child(4) {
float: right
}
.single-news-item .post ul li:nth-child(3),
.single-news-item .post ul li:nth-child(4) {
border: none
}
.single-news-item .post ul li:nth-child(4) i {
margin-right: 8px
}
.single-news-page .single-news-item .post .read-more {
width: 190px;
line-height: 45px;
text-align: center;
color: #fff;
border-width: 1px;
font-size: 14px;
text-transform: uppercase;
margin-top: 40px;
background: #1b2d5a;
display: inline-block;
vertical-align: middle;
height: 45px
}
.single-news-page .single-news-item .post .read-more:hover {
opacity: .9
}
.single-news-item .date b {
font-size: 35px;
font-weight: 700
}
.single-news-item .date span {
font-weight: 600;
font-size: 14px;
display: block;
margin-top: -5px
}
.post a:hover {
color: #000
}
.widget_recent_entries {
padding: 20px 20px 15px
}
.ft-widget-margin-left-28 {
margin-left: 28px
}
.ft-widget-margin-right-12 {
margin-right: 12px
}
.ft-widget-margin-right-10 {
margin-right: 10px
}
.widget ul li {
border-color: rgba(255, 255, 255, .1);
margin: 0 0 15px
}
.widget.widget_recent_entries a {
color: #1b2d5a;
font-weight: 600;
margin: 0 0 3px;
display: block
}
.widget.widget_recent_entries a:hover {
color: #000
}
.post-image img {
width: 100%;
height: auto
}
.post-details h4 {
font-size: 16px;
font-weight: 600;
color: #1b2d5a;
margin: 12px 0
}
.post-content p img{
float: right;
margin: 0 0 20px 10px;
width: 25%;
margin: 0 0 20px 10px;
height: auto;
}
.post-content p {
margin: 0 0 20px
}
.post-controller {
margin: 25px 0
}
.post-controller a:hover {
color: #000
}
.post-controller a i {
padding: 5px 8px;
border-radius: 5px;
color: #000;
font-size: 15px
}
.olivesafety_comments_area {
margin-top: 60px
}
.olivesafety_service_detail_area .olivesafety_service_detail_top h2 {
margin-top: 48px;
margin-bottom: 32px
}
.olivesafety_comments_area .olivesafety_comments {
/*border: 1px solid #e8e8e8;
box-shadow: 0 2px 3px rgba(34, 34, 34, .1);*/
padding: 16px 27px 15px
}
.olivesafety_comments_area .single_comment {
border-bottom: 1px solid #d1d1d1;
padding-bottom: 8px;
padding-top: 30px;
position: relative
}
.olivesafety_comments_area .comment_img {
display: block;
float: left
}
.olivesafety_comments_area img {
border: 1px solid #1b2d5a;
width: 90px;
height: auto
}
.olivesafety_comments_area .comment_text {
padding-left: 116px
}
.olivesafety_comments_area h3 {
font-size: 15px;
font-weight: 500;
margin-bottom: 8px
}
.olivesafety_comments_area h4 {
font-size: 13px;
color: #666;
font-weight: 400;
margin-bottom: 14px
}
.olivesafety_service_detail_area .olivesafety_service_detail_top p {
margin-bottom: 15px
}
.olivesafety_comments_area .share_icon {
position: absolute;
right: 0;
top: 22px
}
.olivesafety_comments_area .single_comment:nth-child(even) {
padding-left: 40px
}
.olivesafety_comments_area .single_comment:last-child {
border-bottom: 0 solid #d1d1d1
}
.olivesafety_comments_area h2 {
margin: 27px 0
}
.common_input input,
.common_input select,
.common_input textarea {
background: #f7f7f7;
border: 1px solid #d1d1d1;
color: #666;
height: 50px;
margin-bottom: 20px;
padding: 10px 20px;
width: 100%;
font-size: 15px
}
.olivesafety_comments_area input {
width: 100%
}
.ml17 {
margin-left: 17px
}
.olivesafety_comments_area textarea {
height: 200px;
width: 100%
}
.common_input textarea {
width: 100%;
height: 120px;
color: #666;
padding-top: 14px;
resize: none
}
.common_input input[type=submit] {
width: 160px;
height: 50px;
border: none;
line-height: 32px;
margin-top: 16px;
transition: .5s
}
.common_btn,
.common_input input[type=submit] {
display: inline-block;
width: 180px;
height: 42px;
text-align: center;
line-height: 22px;
border-radius: 0;
font-weight: 600;
color: #fff;
font-size: 15px;
background: #1b2d5a;
overflow: hidden;
text-transform: uppercase;
margin: 0 0 0 7px
}
.common_input input[type=submit]:hover {
opacity: .9
}
.loader-image {
position: absolute;
left: 0;
right: 0;
margin: auto;
width: 150px;
height: 80px
}
.loader-image span {
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #1b2d5a;
border-bottom: 5px solid #1b2d5a;
width: 40px;
height: 40px;
-webkit-animation: spin 1.2s linear infinite;
animation: spin 1.2s linear infinite;
position: absolute;
top: -40px;
left: 0;
right: 0;
margin: auto
}
.loader-image h2 {
font-size: 14px;
text-align: center;
margin: 20px 0;
font-weight: 700;
color: #1b2d5a
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg)
}
}
@keyframes spin {
0% {
transform: rotate(0)
}
100% {
transform: rotate(360deg)
}
}
.all-events-listing {
margin: 80px 0
}
.event-listing-content {
display: inline-block;
padding: 15px 20px;
background: rgba(27, 45, 90, .8);
width: 80%;
float: left;
color: #fff
}
.available-course-date-content a {
white-space: nowrap;
overflow: hidden;
display: block;
text-overflow: ellipsis
}
.event-listing-date .date-head {
display: inline-block;
background: #fff;
padding: 14px 2px;
font-size: 18px;
font-weight: 700;
float: left;
width: 20%;
text-align: center;
color: #1b2d5a;
height: 105px
}
.event-listing-date .date-head span.day-list {
font-size: 28px;
display: block
}
.event-listing-date .date-head span.month-list {
text-transform: capitalize
}
.event-listing-date {
position: relative;
height: 105px
}
.event-listing-title {
display: inline-block;
padding: 12px 20px;
background: rgba(27, 45, 90, .8);
width: 60%;
float: left;
color: #fff
}
.event-listing-title h2 {
margin: 0;
text-align: left;
color: #fff;
font-size: 18px;
padding: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.event-listing-title .duration {
display: inline-block;
vertical-align: middle;
margin: 0 0 9px
}
.event-listing-date .course-event-price:before {
width: 88px;
height: 83px;
border-radius: 50%;
border: 2px solid #fff;
content: '';
position: absolute;
top: 0;
right: 0;
left: 0;
margin: auto;
bottom: 0;
}
.course-event-price {
position: relative;
width: 20%;
display: block;
background: #48577b;
z-index: 1
}
.course-event-price p {
font-size: 25px;
color: #fff;
padding: 32px 0;
text-align: center;
position: relative;
z-index: 1;
transition: all .5 ease
}
.available-course-date.event-listing-date:hover .course-event-price:before {
background: #fff;
-webkit-transition: all .5s;
-o-transition: all .5s;
transition: all .5s
}
.available-course-date.event-listing-date:hover .course-event-price p {
color: #48577b;
-webkit-transition: all .4s;
-o-transition: all .4s;
transition: all .4s
}
.event-read-more a{
font-size: 15px;
}
.global-pagination.center {
text-align: center
}
.buy-success-wrapper {
margin: -50px 0 0
}
.buy-success-wrapper .form-wrapper {
margin: 120px 0 70px;
display: block
}
.success-image {
text-align: center;
margin: 0 0 25px
}
.success-image i.fa {
font-size: 120px;
color: #3c763d
}
.form-wrapper .alert {
text-align: center
}
.main-success-content {
text-align: center
}
.main-success-content .success-description p {
margin: 0 0 5px;
font-size: 14px;
text-align: center
}
.success-description {
margin: 10px 0 40px
}
.success-description p a:focus,
.success-description p a:hover,
.success-description p a:visited {
color: #1b2d5a
}
.main-success-content .btn-academyhq {
background: #1b2d5a;
color: #fff;
border-radius: 0;
padding: 12px 50px;
text-transform: uppercase
}
.main-success-content .go-back-home {
background: 0 0;
color: #1b2d5a;
border-radius: 0;
padding: 12px 50px;
text-transform: uppercase;
display: block;
margin: 13px 0 0
}
#owl-news-shortcut .owl-controls .owl-pagination {
position: absolute;
bottom: -56px;
right: -4%;
display: block;
padding: 3px 17px;
border-radius: 4px
}
#owl-news-shortcut .owl-controls .owl-buttons {
display: none
}
#owl-news-shortcut .owl-controls .owl-page span {
background: #fff;
width: 35px;
height: 3px;
border-radius: 0
}
#shorting-cat .single-course {
margin: 0 0 36px
}
.quick-search-wrapper {
display: block;
height: 372px;
overflow: auto;
}
.quick-search-autocomplete {
background: rgba(12, 20, 39, .9);
border-bottom: 1px solid #fff;
}
.quick-search-autocomplete .inner-wrapper {
padding: 18px 35px;
display: inline-block;
vertical-align: middle;
width: 100%;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 18px !important;
font-weight: bolder;
color: #fff;
text-transform: uppercase;
}
.quick-search-autocomplete .inner-wrapper .breadcrumb {
padding: 8px 0;
background-color: transparent;
color: #fff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 2px;
}
.quick-search-autocomplete .course-details-content .course-details-enrollment,
.quick-search-autocomplete .inner-wrapper .course-details-heading {
margin: 0 0 8px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 20px 15px !important;
width: 76%;
}
.quick-search-autocomplete .inner-wrapper .course-details-content p {
overflow: hidden;
max-height: 35px;
color: #fff;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 100px;
}
.quick-search-autocomplete .course-details-thumbnail:after,
.quick-search-autocomplete .course-details-thumbnail:before{
content: none;
}
#om-search.move-up-fixed {
top: 50px;
}
.modal-header .close {
margin-top: -10px;
}
.modal-header .close i {
text-shadow: none;
color: #fff;
font-weight: normal;
font-size: 20px;
}
.modal-header .close i.fa.fa-times:hover {
color: #e74c3c;
}
.modal-header a {
float: left;
display: inline-block;
vertical-align: middle;
}
.modal-login-heading {
display: inline-block;
vertical-align: middle;
}
.modal-login-heading h2 {
/* float: left;
color: rgba(255, 255, 255, 0.7);
padding: 13px 10px;
width: 340px;
text-align: center;
font-size: 20px;
text-transform: uppercase;*/
float: left;
color: rgba(255, 255, 255, 0.7);
width: 100%;
text-transform: uppercase;
}
.modal-body{
padding: 5px 15px;
}
.modal-body a:hover{
color: #1b2d5a;
}
#at-reset-pswd .modal-body p{
margin: 12px 0;
}
.cart {
color: #ababab;
display: inline-block;
vertical-align: middle;
width: 110px;
text-align: center;
float: right;
border-left: 1px solid rgba(255, 255, 255, 0.07);
}
/*.cart > a {
padding: 28px 15px 28px;
display: block;
font-size: 15px;
background: rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.07);
}*/
.cart > a{
padding: 9px 15px;
display: block;
font-size: 14px;
background: rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.cart_block {
background-color: #fff;
border: 1px solid #d4d4d4;
height: auto;
margin-top: 25px;
opacity: 0;
position: absolute;
right: 0;
text-align: left;
top: 100%;
visibility: hidden;
/*width: 250px;*/
width: 350px;
z-index: 8888;
padding: 0 15px;
}
.cart_block.active {
margin-top: 0;
opacity: 1;
transition: all 0.35s ease 0s;
-webkit-transition: all 0.35s ease 0s;
visibility: visible;
}
.client_info.active {
margin-top: 0;
opacity: 1;
transition: all 0.35s ease 0s;
-webkit-transition: all 0.35s ease 0s;
visibility: visible;
}
.client_info {
background-color: #2a3b65;
border-top: 1px solid rgba(255, 255, 255, 0.07);
height: auto;
margin-top: 25px;
opacity: 0;
position: absolute;
right: 0;
text-align: left;
top: 100%;
visibility: hidden;
width: 110px;
z-index: 555;
padding: 0;
}
.client_info a{
width: 100% !important;
padding: 9px 6px !important;
font-size: 12px;
}
.cart_block dt.first_item {
background: none;
}
.cart.view_more_768 a.change-password-btn {
padding: 11px 6px 10px;
font-size: 12px;
/*border-bottom: 1px solid rgba(255, 255, 255, 0.07);*/
}
.cart_block dt {
border-bottom: 1px solid #d4d4d4;
font-weight: normal;
overflow: hidden;
padding: 10px 0;
position: relative;
}
.cart_block .cart-images {
float: left;
margin-right: 10px;
max-width: 60px;
}
.cart_block .cart-images img {
max-width: 100%;
vertical-align: middle;
}
.cart_block .cart-info {
overflow: hidden;
position: relative;
padding-right: 15px;
}
.cart_block .cart-info .product-name {
display: flex;
margin-top: -4px;
padding-bottom: 0;
text-align: left;
}
.product-name {
color: #222222;
font-weight: normal;
line-height: 20px;
margin-bottom: 0;
text-align: center;
text-transform: none;
}
.cart_block .cart-info .quantity-formated {
color: #888;
display: inline-block;
float: left;
font-size: 13px;
line-height: 24px;
padding-right: 5px;
text-transform: uppercase;
}
.cart-info .product-name a {
color: #666666;
display: inline-block;
font-family: 'Heebo', sans-serif;
font-size: 13px;
line-height: 24px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shopping_cart .cart-info .price {
font-weight: bold;
}
.cart_block .cart_block_list .remove_link {
position: absolute;
right: 5px;
top: 50%;
transform: translate3d(0px, -50%, 0px);
-webkit-transform: translate3d(0px, -50%, 0px);
}
.cart_block .cart_block_list .remove_link a,
.cart_block .cart_block_list .ajax_cart_block_remove_link {
outline: none;
text-decoration: none;
}
.cart_block .cart_block_list .remove_link a,
.cart_block .cart_block_list .ajax_cart_block_remove_link {
color: #797979;
display: block;
width: 100%;
height: 100%;
}
.cart_block .cart_block_list .remove_link {
position: absolute;
right: 5px;
top: 50%;
transform: translate3d(0px, -50%, 0px);
-webkit-transform: translate3d(0px, -50%, 0px);
}
.cart_block dt.first_item {
background: none;
}
.cart_block dt {
border-bottom: 1px solid #d4d4d4;
font-weight: normal;
overflow: hidden;
padding: 10px 0;
position: relative;
}
.cart_block dd {
position: relative;
}
.unvisible {
display: none;
}
.cart_block .cart-prices {
font-weight: bold;
padding: 10px 0px;
}
.cart_block .cart-prices .cart-prices-line {
font-weight: normal;
overflow: hidden;
padding: 7px 0;
text-transform: uppercase;
}
.cart_block .cart-prices .cart-prices-line.last-line {
border: none;
}
.cart_block .cart-prices .cart-prices-line {
font-weight: normal;
overflow: hidden;
padding: 7px 0;
text-transform: uppercase;
}
.cart_block .cart_block_shipping_cost,
.cart_block .cart_block_tax_cost,
.cart_block .cart_block_total,
.cart_block .cart_block_wrapping_cost {
float: right;
}
.cart_block .cart-buttons {
margin: 0;
overflow: hidden;
padding: 0 0px 10px;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
border-radius: 0;
font-size: 13px;
font-weight: normal;
margin-bottom: 5px;
padding: 2px 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
margin-bottom: 5px;
margin-right: 14px;
}
.cart_block .cart-buttons a {
border: medium none;
float: left;
line-height: 33px;
margin-bottom: 10px;
text-align: center;
text-transform: uppercase;
/*width: 100%;*/
background: #1b2d5a;
color: #fff;
float: left;
width: 47.8%;
}
.cart_block .cart-buttons a:last-child{
margin-right: 0 !important;
}
a.ajax_cart_block_remove_link i:hover {
color: #e74c3c;
}
.mid-header-left-section {
float: right;
display: inline-block;
vertical-align: middle;
}
.signup-login .navbar {
position: relative;
min-height: 50px;
margin-bottom: 0px;
border: 1px solid transparent;
}
.signup-login .navbar-default {
background-color: #1DB9EC;
border-color: transparent!important;
}
.signup-login .bdr li:nth-child(odd) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
/*.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.44);
}*/
.signup-login .bdr li {
padding: 0;
background: rgba(255, 255, 255, 0.07);
position: relative;
}
.signup-login .bdr li > a {
color: #ababab;
padding: 9px 15px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 110px;
}
.signup-login .bdr li > a:hover {
color: #fff;
}
.signup-login .pddr {
padding-top: 5px;
}
.signup-login .navbar-right {
float: right !important;
margin-right: 30px;
}
.signup-login .nav > li {
position: relative;
display: inline-block;
}
.btn-blu {
display: inline-block;
padding: 10px 35px;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 0px;
background-color: #0D4459;
border-color: #0D4459;
color: #fff;
}
.mrgn-top {
margin-top: 15px;
margin-right: 15px;
}
.signup-login {
margin: 0 0 0 22px;
display: inline-block;
float: left;
}
.signup-login ul.bdr {
float: right;
}
.mid-header .contact-details {
float: left;
}
.at-login-form .btn-fb {
display: inline-block;
padding: 14px 20px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 0px;
background-color: #4568B2;
margin-top: 10px;
color: #fff;
float: left;
width: 49%;
margin: 0 6px 0 0;
}
.at-login-form .btn-gp {
display: inline-block;
padding: 14px 20px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #eee;
border-radius: 0px;
background-color: #FFFFFF;
color: #000;
float: left;
width: 49%;
margin: 0;
}
.btn-gp i,
.btn-fb i {
margin: 3px 0 0;
}
.at-login-form .btn-lgin {
display: inline-block;
padding: 12px 20px;
margin-bottom: 0;
font-size: 18px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #eee;
border-radius: 0px;
background-color: #1b2d5a;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
color: #fff;
text-transform: uppercase;
}
.at-login-form .btn-lgin:hover {
opacity: 0.9;
}
.at-login-form .signup-or-separator {
background: none;
height: 34px;
position: relative;
text-align: center;
margin: 10px 0;
}
.at-login-form .signup-or-separator--text {
background-color: #fff;
display: inline-block;
padding: 8px;
}
.at-login-form .h6 {
font-size: 14px;
font-weight: bold;
color: #757575;
line-height: 1.1;
text-rendering: optimizelegibility;
}
.at-login-form .signup-or-separator hr {
margin: -15px auto 10px;
width: 100%;
}
.at-login-form .form-control-form {
display: block;
width: 100%;
height: 48px;
padding: 15px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
margin: 0;
}
.at-login-form .frgt-pswd {
margin: 10px 0;
color: #383838;
text-align: left;
cursor: pointer;
}
.at-login-form .btn-gst {
display: inline-block;
padding: 6px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 0 solid #1b2d5a;
border-radius: 0px;
background-color: transparent;
/*width: 100%;*/
color: #1b2d5a;
}
.at-login-form .btn-gst:hover{
text-decoration: none;
color: #000;
}
.modal-footer {
margin-top: 30px;
padding: 12px 0;
margin: 5px 16px 0;
}
.at-login-form .ta-l {
text-align: right;
margin: 4px 0;
}
.at-login-form .sign-up-center{
text-align: center;
}
.at-login-form .modal-dialog {
width: 500px;
margin: 78px auto;
}
.at-login-form .modal-content {
padding: 0;
border-radius: 0;
border: 1px solid rgb(146, 149, 156);
}
.at-login-form .modal-header {
padding: 22px 10px;
border-bottom: 0px solid #e5e5e5;
background: #0d162d;
}
div#at-login .modal-body,
div#at-signup-filling .modal-body,
div#at-forgot-pwd .modal-body{
margin: 20px 0 0;
}
.mid-header {
background: #1b2d5a;
padding: 0 5px;
}
.blue-bg-nav {
background-color: #1DB9EC;
}
/*************************
17. Scroll Settings
*************************/
/*.scrollable {
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}*/
/*************************
17.01 Scroll themes style if necessary
*************************/
/*
body::-webkit-scrollbar-track,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar-track{
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar{
width: 10px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar-thumb{
background-color: #F90;
background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}*/
/***********************
***** Client Info ******
************************/
.update-gap {
margin: 0 18px 0 0;
}
.update-gap button {
border-radius: 0;
padding: 9px 60px;
background: #1b2d5a;
border: 1px solid #1b2d5a;
}
.update-gap button:hover {
opacity: 0.9;
background: #1b2d5a;
border: 1px solid #1b2d5a;
}
.olive-safety-delete-btn a {
background: #d9534f;
color: #fff;
}
.main-card-contents .bill-address-details{
border: 1px solid #ddd;
}
.main-card-contents .bill-address-details tr:last-child{
border-bottom: 1px solid #ddd;
}
/*.main-card-contents ul li span.billing-title {
width: 28%;
}
.main-card-contents ul li span {
font-size: 15px;
font-weight: 700;
}
.main-card-contents ul li {
width: 60%;
margin: 0 0 13px;
display: inline-block;
vertical-align: middle;
}*/
.dashboard {
padding: 120px 8px 0px;
}
.dashboard-tabs {
background-color: #ecf0f1;
padding: 0;
border: 0 solid #ecf0f1;
border-radius: 5px;
}
.dashboard-tabs:after {
content: '';
display: block;
clear: both;
}
.dashboard-tabs > li {
list-style: none;
display: inline-block;
width: 25%;
float: left;
padding: 0;
}
.dashboard-tabs > li:first-of-type {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.dashboard-tabs > li:last-of-type {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.dashboard-tabs > li > a {
vertical-align: middle;
text-align: center;
background-color: #f9f9f9;
width: 100%;
text-decoration: none;
color: #333;
border: 0 solid #1b2d5a;
border-radius: 0;
padding: 9px 0 17px 0;
transition: none;
}
.dashboard-tabs > li.active > a {
color: #1b2d5a;
border-width: 6px 0 3px 0;
padding: 0 0 18px;
margin: -4px 0;
}
.dashboard-tabs > li:first-of-type > a {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.dashboard-tabs > li:last-of-type > a {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.dashboard-tabs > li.active > a:before {
content: '';
position: relative;
border-style: solid;
border-width: 6px 6px 0;
border-color: #1b2d5a transparent;
display: block;
width: 0;
z-index: 1;
margin-left: -6px;
top: 0;
left: 50%;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 16px;
font-size: 32px;
}
.dashboard .tab-content {
margin: 40px 0;
}
.dashboard .jumbotron {
margin-top: 0px;
background: #1b2d5a;
color: #fff;
border-radius: 5px 5px 0 0;
}
.dashboard .jumbotron small {
color: #fff;
}
.dashboard .jumbotron-sm {
padding-top: 24px;
padding-bottom: 24px;
}
.help-pane {
background: #ecf0f1;
border-radius: 5px;
}
.profile-pane {
width: 100%;
display: table;
border-spacing: 10px;
}
.profile-pane > div {
display: table-row;
}
.profile-pane > div > div {
width: 50%;
display: table-cell;
}
.profile-pane .header {
background: #1b2d5a;
color: #fff;
padding: 5px 15px;
border-radius: 10px 10px 0 0;
}
.profile-pane .content {
background: #ecf0f1;
border-radius: 0 0 10px 10px;
padding: 5px 15px;
}
.profile-pane h4.col {
text-align: center;
margin-bottom: 40px;
}
.profile-pane button.col {
text-align: center;
padding: 0;
}
.profile-pane .title {
margin-top: 0;
padding: 10px;
border-bottom: 1px solid #aaa;
}
#supportedCauses {
padding: 0;
}
.cause-info {
margin-bottom: 5px;
padding: 5px;
background: #fff;
border-radius: 5px;
display: inline-block;
}
.cause-info a:hover {
cursor: pointer;
}
.cause-info > div:nth-of-type(3) {
width: 16.66666666%;
float: left;
}
.cause-info > div:nth-of-type(3) > * {
padding: 0 15px;
float: right;
}
.cause-info > div:nth-of-type(3) a > .glyphicon {
transition: transform .5s;
}
.cause-info:not(.expanded) > div:nth-of-type(1) {
width: 83.33333333%;
float: left;
display: inline-block;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > img {
width: 20%;
float: left;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > div {
width: 40%;
float: left;
padding: 0 15px;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > div:nth-of-type(2):before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.cause-info:not(.expanded) > div:nth-of-type(2) {
display: none;
}
.cause-info.expanded > div:nth-of-type(1) {
width: 25%;
float: left;
}
.cause-info.expanded > div:nth-of-type(1) > img {
width: 66.66666667%;
}
.cause-info.expanded > div:nth-of-type(2) {
width: 58.33333333%;
float: left;
}
.cause-info.expanded > div:nth-of-type(3) a > .glyphicon {
transform: rotate(180deg);
}
.profile-pane article {
background: #fff;
border-radius: 5px;
padding: 5px;
margin-bottom: 40px;
}
.search-bar {
position: relative;
display: table;
border-collapse: collapse;
}
.search-bar > input {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.search-select {
border-radius: 4px;
border-color: #ccc;
height: 34px;
font-size: 14px;
color: #555;
background: #fff;
padding-right: 0;
}
.reciept-infos {
border: 1px solid #000;
padding: 0;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 5px;
background: #fff;
}
.reciept-infos > div:last-of-type {
border-bottom: none;
}
.reciept-infos > div {
display: inline-block;
border-bottom: 1px solid #000;
}
.reciept-infos > div > * {
float: left;
}
.reciept-infos > div > img {
width: 18%;
margin: 1%;
}
.reciept-infos > div > div {
width: 80%;
padding: 0 15px;
}
.payment-history .action {
width: 16%;
}
.action a {
font-size: 14px;
font-weight: normal;
padding: 0 9px;
}
.action a.action-exit {
color: #2980b9 !important;
}
.action a.action-remove {
color: #e74c3c !important;
}
.payment-history table#course-table,
#my_booking #booking-table
{
margin: 0 0 40px;
}
/*.payment-history .table>tbody>tr>td,
.payment-history .table>tbody>tr>th,
.payment-history .table>tfoot>tr>td,
.payment-history .table>tfoot>tr>th,
.payment-history .table>thead>tr>td,
.payment-history .table>thead>tr>th {
width: 200px;
}*/
.payment-history td.image {
padding-left: 10px !important;
}
.main-card-contents button {
border-radius: 0;
background: none;
color: #383838;
border: 1px solid #383838;
padding: 6px 50px 6px;
}
.main-card-contents button:hover {
background: #1b2d5a;
border: 1px solid #1b2d5a;
color: #fff;
}
.client-info-modal {
z-index: 99999;
}
.client-info-modal .modal-content {
border-radius: 0;
}
.client-info-modal-header {
background: #1b2d5a;
padding: 20px;
color: #fff;
}
.client-info-modal-header h4 {
font-size: 20px;
}
.card-details-title h5 {
font-size: 20px;
}
.card-details-edit .form-control,
.billing-details-edit .form-control {
-webkit-box-shadow: none;
box-shadow: none;
height: 40px;
border-radius: 0;
border: 1px solid #ccc;
color: #737475;
background: #fff;
width: 100%;
}
.client-info-save button {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0;
padding: 10px;
width: 250px;
margin: 0 0 0 21px;
}
/*.billing-update-btn {
margin: 0 0 0 6px !important;
}*/
.client-info-save button:hover {
box-shadow: none;
color: #fff!important;
opacity: .9;
background: #1b2d5a;
}
.card-details-edit .card-expiry-year {
padding-left: 9px;
padding-right: 9px;
}
.ibox-footer.client-info-save button {
margin: 22px 0px 22px 16px !important;
}
.ibox-footer.client-info-save .billing-details-edit-btn {
margin: 22px 0 !important;
}
.r-full-width .selectpicker {
margin: 0 0 20px;
}
.client-info-modal .gap-maintain .course-select-title>h2 {
padding: 0 0 50px;
}
.tab-content .save-update-btn-sec {
margin-bottom: 50px;
}
.card-form-content,
.billing-form-content {
background: #fff;
padding: 30px;
}
table.booking-data-list td a:hover{
color: #1b2d5a;
}
#cancel-billing-details-btn,
#cancel-card-details{
background: #e74c3c !important;
}
#cancel-billing-details-btn:hover,
#cancel-card-details:hover{
background: #e74c3c !important;
opacity: 0.9;
}
#update-billing-details-btn,
#save-update-btn-sec a.btn{
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
text-transform: uppercase;
position: relative;
overflow: hidden;
border-radius: 0;
padding: 18px 0px;
}
#save-update-btn-sec a.btn:hover{
opacity: 0.9;
background:#e74c3c;
}
.carousel-autocomplete {
width: 460px;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
background: #fbfbfb;
position: absolute;
top: 149px;
left: 0;
right: 0;
max-height: 113px;
overflow: auto;
}
.carousel-autocomplete .inner-wrapper{
padding: 8px 5px;
border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}
.carousel-autocomplete a{
display: inline-block;
vertical-align: middle;
}
span.autocomplete-thumbnail {
width: 52px;
display: inline-block;
vertical-align: middle;
float: left;
margin: 1px 10px 0 7px;
}
span.autocomplete-heading {
display: inline-block;
vertical-align: middle;
float: left;
margin: 6px 3px;
/*width: 373px;*/
width: 355px;
}
.autocomplete-heading h2 {
font-size: 17px;
color: #232323;
text-shadow: none;
text-align: left;
float: left;
padding: 4px 0px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 257px;
}
.autocomplete-heading .price {
float: right;
padding: 6px 10px;
width: 93px;
text-align: center;
background: rgba(27, 45, 90, 0.9);
font-size: 14px;
font-weight: normal;
}
/******* BICKEY CSS **********/
.common-section-one,
.common-section-two,
.psdp-section {
background: #fff;
text-align: center;
}
.common-section-one {padding: 80px 0 60px;}
.common-section-one .description p {margin-bottom: 30px;}
.common-section-one .description a {color: #001d60;}
.common-section-two {padding-bottom: 60px;}
.common-section-two .description {
margin-top: 70px;
margin-bottom: 30px;
padding: 30px 15px;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.common-section-two .circle{
width: 90px;
height: 90px;
margin: -75px auto 20px;
background: #fff;
border: 5px solid #1b2d5a;
border-radius: 100%;
text-align: center;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.common-section-two .description .circle .fa {
width: 80px;
height: 80px;
display: table-cell;
vertical-align: middle;
font-size: 28px;
color: #1b2d5a;
text-align: center;
}
.common-section-two .description h3,
.psdp-section .description h3 {
margin-bottom: 20px;
color: #1b2d5a;
font-weight: bold;
}
.common-section-three {padding: 80px 0;}
.common-section-three .progress {
height: 35px;
border-radius: 0;
}
.common-section-three .progress .skill {
font-size: 12px;
font-style: normal;
line-height: 35px;
padding: 0;
margin: 0 0 0 20px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
}
.common-section-three .progress .skill a {color: #fff;}
.common-section-three .progress .skill .val {
float: right;
font-style: normal;
margin: 0 20px 0 0;
}
.common-section-three .progress-bar {
text-align: left;
transition-duration: 3s;
color: #0c1427;
}
.common-section-three .progress-bar-health {background: rgb(4, 114, 13);}
.common-section-three .progress-bar-safety {background: rgb(242, 217, 31);}
.common-section-three .progress-bar-psdp {background: rgb(16, 0, 255);}
.psdp-section {padding: 80px 0 60px;}
.psdp-section p {margin-bottom: 30px;}
.psdp-section .description {
margin-top: 40px;
margin-bottom: 30px;
padding: 30px 15px;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.psdp-section .description p {margin-bottom: 0;}
.psdp-section .description img {
margin-bottom: 20px;
opacity: 0.8;
}
.pscs {padding-top: 0;}
.contact-detail {
padding: 80px 0;
background: #fff;
}
.map-wrapper iframe {
width: 100%;
height: 300px;
pointer-events: none;
}
.upskill-section,
.audits-section {
background: #fff;
padding-bottom: 60px;
}
.upskill-section .description,
.audits-section .description {
margin-bottom: 30px;
padding: 30px 15px;
text-align: center;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.upskill-section .description img,
.audits-section .description img {
margin: 0 auto 20px;
display: block;
}
.upskill-section .description h3,
.audits-section .description h3 {
display: inline-block;
vertical-align: middle;
margin-bottom: 20px;
color: #1b2d5a;
font-weight: bold;
}
.upskill-section .description .fa,
.audits-section .description .fa {
margin-left: 15px;
font-size: 20px;
color: #1b2d5a;
display: inline-block;
vertical-align: top;
text-align: center;
}
.separater {
position: relative;
margin-bottom: 3rem !important;
}
.separater:before {
position: absolute;
content: '';
top: 40px;
width: 40px;
height: 5px;
background: #ababab;
border: none;
text-indent: -9999px;
}
.separater:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 42px;
z-index: 1;
left: 49px;
}
.cd-horizontal-timeline .events-content h2 {
font-size: 20px;
font-family: robotoregular;
color: #383838;
font-weight: 100;
position: relative;
padding: 0 0 60px;
overflow: hidden;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
}
.cd-horizontal-timeline .events-content h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 70px;
}
.cd-horizontal-timeline .events-content h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 72px;
z-index: 1;
left: 49px;
}
.pdf {width: 100%;}
.footer-info {
background: #f0f0f0;
padding-top: 60px;
padding-bottom: 30px;
}
.footer-info h2 {
font-size: 20px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #ccc;
}
.footer-info h3 {
margin-bottom: 15px;
}
.footer-info p {margin-bottom: 30px;}
.footer-info ul {
margin-left: 20px;
margin-bottom: 20px;
}
.footer-info ul li {margin-bottom: 5px;}
.footer-info ul li a {
color: #1570a6;
font-size: 12px;
}
.footer-info ul li a:hover {
color: #083047;
text-decoration: underline;
}
@media only screen and (min-width: 768px) {
.cd-horizontal-timeline .events-content em {
font-size: 1.5rem;
}
}
.cd-horizontal-timeline .events-wrapper::before {
left: 0;
background-image:none;
background-image: none;
}
.cd-horizontal-timeline .events-wrapper::after {
right: 0;
background-image:none;
background-image: none;
}
.cd-horizontal-timeline .events-content p {
font-size: 1.3rem;
margin-bottom: 15px;
}
/*schedule page**/
.schedule-wrapper{
margin: 80px 0;
}
.schedule-wrapper .alert-warning,
.course-unavailable .alert-warning{
color: rgba(27, 45, 90, 0.8);
background-color: #f0f0f0;
border-color: rgba(27, 45, 90, 0.3);
}
.schedule-wrapper .alert,
.course-unavailable .alert
{
border-radius: 0;
}
.schedule-content h2{
margin: 0 0 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 86%;
}
.schedule-content p{
margin: 0 0 10px;
}
.schedule-wrapper .schedule-calender{
margin: 0 0 20px;
}
.schedule-content-slide a.carousel-control{
background: transparent;
top: -6px;
}
.schedule-content-slide a.carousel-control span{
padding: 1px;
width: 35px;
height: 35px;
border: 1px solid #1b2d5a;
}
.schedule-content-slide a.carousel-control.left{
right: 51px;
}
.schedule-content-slide a.carousel-control.right{
right: -6px;
}
/*********** PEMA CSS *************/
.e-learning-section, .academy-section, .course-snippets {
padding: 80px 0;
color: #1b2d5a;
}
.academy-section {
text-align: center;
}
.e-learning-content h2,
.e-learning-bottom h2, .academy-content h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px;
text-align: center;
}
.e-learning-content hr, .academy-content hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
margin: 0 auto;
border: none;
}
.e-learning-content hr:after, .academy-content hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0;
}
.e-learning-details p, .academy-details p {
font-size: 14px;
line-height: 24px;
padding: 30px 10px 0;
width: 61%;
margin: 0 auto;
color: #333;
}
.academy-details p {
width: 80%;
}
.e-learning-details {
text-align: center;
margin-bottom: 80px;
}
.academy-access {
margin: 70px 0 0;
}
.online-course-access {
padding: 49px 0;
background: #fff;
background: #ccc url(../images/slider/slider2.png) no-repeat fixed 0 0/cover;
}
.online-course-access h3 {
font-size: 24px !important;
color: #fff;
line-height: 2;
}
.online-course-access h3 i {
/*color: #1b2d5a;*/
}
.access-btn {
padding: 15px 33px;
background: #1b2d5a;
color: #fff;
border: 0;
border-radius: 0;
font-size: 14px;
}
.access-btn:hover {
background: #fff;
color: #1b2d5a;
}
.e-learning-bottom {
padding: 80px 0 0;
text-align: center;
}
.e-learning-bottom h5 {
font-size: 16px;
margin: 30px 0;
}
.e-learning-bottom-content {
padding: 40px 0 0;
}
.bottom-content {
border: solid 1px #ccc;
/* padding: 15px;*/
/*height: 350px;*/
position: relative;
background: #eee;
}
.bottom-content i {
font-size: 70px;
position: absolute;
left: 42%;
background: #e2e3df;
top: -37px;
border-radius: 50%;
}
.bottom-content h3 {
font-size: 24px;
padding: 40px 0;
color: #333;
background: #e8e8e8;
}
.bottom-content p {
padding: 20px;
color: #333;
height: 230px;
overflow: hidden;
}
/*course snippets*/
.course-snippets img {
width: 100%;
height: 100%;
object-fit: cover;
}
.course-video {
/*border: solid 1px #ccc;
box-shadow: 0 0 5px #ccc;*/
margin-bottom: 20px;
position: relative;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
/*.course-video a:hover{
opacity: .9;
}*/
.course-video h3 {
padding: 19px 20px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
text-transform: uppercase;
font-size: 18px;
}
.course-video h3 a {
color: #1b2d5a;
}
.course-video h3 a:hover {
color: #979caa;
}
.play-btn {
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
color: #333;
opacity: .8;
}
.course-video a:hover {
opacity: .9;
}
.snippet-video {
display: block;
height: 159px;
overflow: hidden;
background: #ccc;
}
.snippets-search form {
margin-bottom: 40px;
width: 100%;
position: relative;
border: solid 1px #ccc;
color: #333;
font-size: 30px;
display: none;
}
.snippets-search form input {
width: 90%;
border: none;
background: transparent;
}
.snippets-search form button {
font-size: 33px;
position: absolute;
color: #ccc;
border: none;
background: transparent;
right: 15px;
}
.pagination-space{
margin: 25px 0 0;
}
/*buy button*/
#courses .btn-theme-transparent {
background-color: rgba(151, 156, 170, 0.48);
border-width: 1px;
border-color: rgba(0, 0, 0, .3);
background: #1b2d5a !important;
color: #fff !important;
border: none;
width: 100%;
}
#courses .btn-theme-transparent i {
padding: 0 0 0 10px;
}
#courses .btn-theme-transparent:hover {
opacity: .9;
box-shadow: 0 1px 3px #777;
}
/*buy button*/
/*courses listng*/
.rateandprice {
border: none !important;
padding: 0 !important;
display: inline-block !important;
vertical-align: middle;
margin:5px 0 !important;
/*position: relative;
top: 20px;
left: 2px;*/
}
.buttonandinclude strong {
/*padding-top: 20px !important;*/
font-size: 16px;
font-weight: 400;
}
.buttonandinclude .f-btn-sec{
padding-right: 10px;
}
.buttonandinclude .f-price-sec{
padding: 3px;
}
.buttonandinclude .f-enroll-sec{
padding: 0 15px 0 0;
}
.caption-details .desc {
padding: 10px 15px 0px !important;
display: inline-block;
vertical-align: middle;
height: 90px;
overflow: hidden;
}
.caption-details .desc a {
color: #1b2d5a;
float: right;
margin: 4px 0 0;
}
.caption-details .desc a:hover {
color: rgba(27, 45, 90, 0.9);
}
/*courses listng*/
/*main course page*/
.main-courses-section .rateandprice {
position: static;
}
.main-courses-section .buttonandinclude strong {
padding-top: 0px !important;
}
/*main course page*/
/*loader button*/
#ajax-grid-load-more {
text-align: center !important;
}
a.btn-load-more {
background: #1b2d5a;
border: 0;
padding: 17px 56px;
border-radius: 0;
color: #fff;
text-align: center;
}
a.btn-load-more:hover {
background: rgba(27, 45, 90, 0.9);
}
/*loader button*/
@media only screen and (max-width: 991px) {
.bottom-content {
margin: 0 0 50px;
}
.e-learning-content .access-btn {
float: left !important;
padding: 10px 20px;
}
.e-learning-details p, .academy-details p {
width: 100%;
}
}
@media only screen and (max-width: 767px) {
.bottom-content p {
height: auto;
}
}
@media only screen and (max-width: 500px) {
.snippet-video {
height: auto;
}
}
/*checkout page*/
#payment-wizard img.thumbnail {
width: 64px;
padding: 2px;
}
#payment-wizard .media-left, .media > .pull-left {
padding-right: 5px;
background: #fff;
}
.btn-remove {
border: none;
border-radius: 0;
padding: 0;
font-size: 25px;
background: transparent;
}
.btn-remove:hover {
color: indianred;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
vertical-align: middle;
}
.table > thead:first-child > tr:first-child > th {
background: #ddd;
}
.table tfoot h3 {
font-size: 20px;
}
.media-heading {
margin-top: 8px;
margin-left: 10px;
font-size: initial;
}
.media-heading a:hover {
color: #1b2d5a;
text-decoration: underline;
}
#voucher input {
border: solid 1px #ccc !important;
width: 98% !important;
position: relative;
padding: 0 20px 0 20px !important;
transition: all .6s ease !important;
height: 40px !important;
margin-left: 0px ;
}
#voucher {
/*margin-top: 40px!important;*/
}
.btn-remove-cart{
background:#d43b3b;
color: #fff;
padding: 2px 5px;
font-size: 12px;
}
.btn-remove-cart:hover{
background: indianred;
}
/*
#voucher input:focus{
width:100% !important;
}
*/
/*#voucher:before{
content: '\f02b ';
font-family: 'FontAwesome';
position: absolute;
top: 10px;
font-size: 18px;
left: 28%;
color: #888;
}*/
#voucher .shopping-cart-coupon {
margin: 0 !important;
height: 40px !important;
border-radius: 0px;
border-color: #ccc;
}
#voucher .shopping-cart-coupon:hover {
margin: 0 !important;
height: 40px !important;
border-radius: 0px;
border-color: #ccc;
color: #1b2d5a!important;
}
.continue-shopping a.btn {
background: #1b2d5a;
color: #eee;
margin: 0 !important;
line-height: 3.7;
border-radius: 0px !important;
}
.continue-shopping button:hover {
opacity: .9;
}
.os-global-form .btn:hover {
color: #fff !important;
border-color: #1b2d5a !important;
opacity: .9 !important;
}
.btn-default:hover {
color: #fff !important;
background-color: #1b2d5a !important;
}
#payment-wizard select {
color: #888 !important;
}
/*checkout-page*/
/*Wizard*/
.wizard, .tabcontrol {
display: block;
width: 100%;
overflow: hidden;
}
.wizard a, .tabcontrol a {
outline: 0;
}
.wizard ul, .tabcontrol ul {
list-style: none !important;
padding: 0;
margin: 0;
}
.wizard ul > li, .tabcontrol ul > li {
display: block;
padding: 0;
}
.wizard > .steps .current-info, .tabcontrol > .steps .current-info {
position: absolute;
left: -999em;
}
.wizard > .content > .title, .tabcontrol > .content > .title {
position: absolute;
left: -999em;
}
.wizard > .steps {
position: relative;
display: block;
width: 100%;
}
.wizard.vertical > .steps {
display: inline;
float: left;
width: 30%;
}
.wizard > .steps .number {
font-size: 1.429em;
}
.wizard > .steps > ul > li {
width: 25%;
}
.wizard > .steps > ul > li, .wizard > .actions > ul > li {
float: left;
text-align: center;
}
.wizard.vertical > .steps > ul > li {
float: none;
width: 100%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
display: block;
width: auto;
margin: 0;
padding: 1em 1em;
text-decoration: none;
}
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
background: #eee;
color: #aaa;
cursor: default;
}
.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
background: #526CAD;
color: #fff;
cursor: default;
}
.wizard > .steps > ul > li.current{
position: relative;
z-index: 1;
}
.wizard > .steps > ul > li.current:after {
position: absolute;
content: '';
border:solid 24px;
border-color: transparent transparent transparent #526cad;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li:first-child.current::before{
position: absolute;
content: '';
border:solid 24px;
border-color: transparent transparent transparent transparent;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li:last-child.current::before{
position: absolute;
content: '';
border:solid 24px;
border-color: #526cad #526cad #526cad #9aa7c7;
top: 0;
}
.wizard > .steps > ul > li.current:before{
position: absolute;
content: '';
border:solid 24px;
border-color: #526cad #526cad #526cad #9aa7c7;
top: 0;
left: 0px;
}
.wizard > .steps > ul > li.done{
position: relative;
z-index: 0;
}
.wizard > .steps > ul > li.done:after {
position: absolute;
content: '';
border: solid 24px;
border-color: transparent transparent transparent #9AA7C7;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li.current.done:after{
position: absolute;
content: '';
border: solid 24px;
border-color: transparent transparent transparent #526CAD;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li.current.done a{
background:#526CAD;
}
#example-basic-t-0:before {
content: '\f07a';
font-family: 'FontAwesome';
margin-right: 5px;
}
#example-basic-t-1:before {
content: '\f041';
font-family: 'FontAwesome';
margin-right: 5px;
}
#example-basic-t-2:before {
content: '\f09d';
font-family: 'FontAwesome';
margin-right: 5px;
}
.current-info, .number {
display: none;
}
.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
background:#9AA7C7;
color: #fff;
}
/*validation error*/
.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
background: #d43b3b !important;
color: #fff;
}
.wizard > .steps > ul > li.error:after {
border-color: transparent transparent transparent #d43b3b !important;
}
.wizard > .steps > ul > li.error:before {
border-color: #d43b3b #d43b3b #d43b3b #9aa7c7 !important;
}
/*.wizard > .content > .body label.error {
color: #d43b3b !important;
display: inline-block !important;
background: transparent !important;
position: relative !important;
top: 80px !important;
}
.wizard > .content > .body input.error {
border-bottom: solid 1px #d43b3b !important;
}*/
/*validation error*/
.wizard > .content {
display: block;
margin: 12px 0;
/*min-height: 35em;*/
overflow: hidden;
position: relative;
width: auto;
}
.wizard.vertical > .content {
display: inline;
float: left;
margin: 0 2.5% .5em 2.5%;
width: 65%;
}
.wizard > .content > .body {
/*float: left;*/
/*position: absolute;*/
/*width: 95%;*/
/*height: 95%;*/
/*padding: 0 !important;*/
margin: 10px 0 0;
}
.wizard > .content > .body ul {
list-style: disc !important;
}
.wizard > .content > .body ul > li {
display: list-item;
}
.wizard > .content > .body > iframe {
border: 0 none;
width: 100%;
height: 100%;
}
.wizard > .content > .body input {
display: block;
margin: 0 !important;
}
.wizard > .content > .body input[type="checkbox"] {
display: inline-block;
}
/*
.wizard > .content > .body label {
display: inline-block;
margin-bottom: .5em;
}
*/
.wizard > .actions {
position: relative;
display: block;
text-align: right;
width: 100%;
}
.wizard.vertical > .actions {
display: inline;
float: right;
margin: 0 2.5%;
width: 95%;
}
.wizard > .actions > ul {
display: inline-block;
text-align: right;
/*margin-right: 50px;*/
}
.wizard > .actions > ul > li {
margin: 0 .5em;
}
.wizard.vertical > .actions > ul > li {
margin: 0 0 0 1em;
}
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
background: #103157;
color: #fff;
display: block;
padding: 0.6em 3em;
text-decoration: none;
}
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
background: #ccc;
color: #aaa;
}
.wizard > .loading {
}
.wizard > .loading .spinner {
}
.tabcontrol > .steps {
position: relative;
display: block;
width: 100%;
}
.tabcontrol > .steps > ul {
position: relative;
margin: 6px 0 0 0;
top: 1px;
z-index: 1;
}
.tabcontrol > .steps > ul > li {
float: left;
margin: 5px 2px 0 0;
padding: 1px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.tabcontrol > .steps > ul > li:hover {
background: #edecec;
border: 1px solid #bbb;
padding: 0;
}
.tabcontrol > .steps > ul > li.current {
background: #fff;
border: 1px solid #bbb;
border-bottom: 0 none;
padding: 0 0 1px 0;
margin-top: 0;
}
.tabcontrol > .steps > ul > li > a {
color: #5f5f5f;
display: inline-block;
border: 0 none;
margin: 0;
padding: 10px 30px;
text-decoration: none;
}
.tabcontrol > .steps > ul > li > a:hover {
text-decoration: none;
}
.tabcontrol > .steps > ul > li.current > a {
padding: 15px 30px 10px 30px;
}
.tabcontrol > .content {
position: relative;
display: inline-block;
width: 100%;
height: 35em;
overflow: hidden;
border-top: 1px solid #bbb;
padding-top: 20px;
}
.tabcontrol > .content > .body {
float: left;
position: absolute;
width: 95%;
height: 95%;
padding: 2.5%;
}
.tabcontrol > .content > .body ul {
list-style: disc !important;
}
.tabcontrol > .content > .body ul > li {
display: list-item;
}
@media (max-width: 600px) {
.wizard > .steps > ul > li {
width: 50%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
margin-top: .5em;
}
.wizard.vertical > .steps, .wizard.vertical > .actions {
display: block;
float: none;
width: 100%;
}
.wizard.vertical > .content {
display: block;
float: none;
margin: 0 .5em .5em;
width: auto;
}
}
@media (max-width: 480px) {
.wizard > .steps > ul > li {
width: 100%;
}
}
.cart-empty-section {
margin-bottom: 10px;
}
.empty-cart-content {
padding: 50px 0;
}
.cart-empty-section .cart-icon img {
width: 200px;
}
.cart-empty-section p {
font-size: 30px;
margin-bottom: 20px;
}
.cart-empty-section a {
background-color: rgba(151, 156, 170, 0.48);
border-width: 1px;
border-color: rgba(0, 0, 0, .3);
background: #1b2d5a !important;
color: #fff !important;
border: none;
padding: 10px 22px;
font-size: 14px;
line-height: 18px;
}
.cart-empty-section a:hover {
opacity: .9;
box-shadow: 0 1px 3px #777;
}
@media screen and (max-width: 769px) {
.cart-empty-section .cart-icon img {
display: block;
margin: 0 auto;
width: 120px;
}
.cart-empty-section {
text-align: center;
}
.empty-cart-content {
padding: 20px 0;
}
.cart-empty-section p {
font-size: 20px;
}
}
/** Google Map */
#google-container {
position: relative;
width: 100%;
height: 200px;
background-color: #e7eaf0;
}
@media only screen and (min-width: 768px) {
#google-container {
height: 300px;
}
}
@media only screen and (min-width: 1170px) {
#google-container {
height: 450px;
}
}
#osafety-google-map {
position: relative;
pointer-events: none;
}
#osafety-google-map address {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
padding: 1em 1em;
background-color: rgba(27, 45, 90, 0.6);
color: white;
font-size: 13px;
font-size: 0.8125rem;
margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
#osafety-google-map address {
font-size: 1.3375rem;
text-align: center;
}
}
#osafety-zoom-in, #osafety-zoom-out {
height: 32px;
width: 32px;
cursor: pointer;
margin-left: 10px;
background-color: rgba(27, 45, 90, 0.6);
background-repeat: no-repeat;
background-size: 32px 64px;
background-image: url("../images/custom-map/osafety-icon-controller.svg");
}
.no-touch #osafety-zoom-in:hover, .no-touch #osafety-zoom-out:hover {
background-color: rgba(27, 45, 90, 0.9);
}
@media only screen and (min-width: 768px) {
#osafety-zoom-in, #osafety-zoom-out {
margin-left: 40px;
}
}
#osafety-zoom-in {
background-position: 50% 0;
margin-top: 10px;
margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
#osafety-zoom-in {
margin-top: 40px;
}
}
#osafety-zoom-out {
background-position: 50% -32px;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
color: rgba(0, 0, 0, 0.3);
}
/** Frequently Asked Questions **/
.faqs-content{
margin-top: 80px;
margin-bottom: 80px;
}
.faqs-content .panel-group .panel {
border-radius: 0;
box-shadow: none;
border-color: #EEEEEE;
}
.faqs-content .panel-default > .panel-heading {
padding: 0;
border-radius: 0;
color: inherit;
background-color: #1b2d5a;
border-color: #1b2d5a;
}
.faqs-content .panel-title {
font-size: 14px;
}
.faqs-content .panel-title > a {
display: block;
padding: 22px 15px;
text-decoration: none;
color: #fff;
}
.more-less {
float: right;
color: #fff;
}
.faqs-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #EEEEEE;
}
.faqs-content .panel-title a:hover,
.faqs-content .panel-title a:focus{
color: #ccc;
}
/** Forgot password **/
.row.reset-password-section {
position: relative;
margin: 80px 0;
}
.reset-password-section .os-global-form .btn {
background: #1b2d5a none repeat scroll 0 0;
border: 0 none;
border-radius: 0;
color: #fff;
margin: 17px 0 0 15px;
padding: 10px;
width: 250px;
}
.body-fixed{
position: fixed;
}
.datetimepicker table tr td.today, .datetimepicker table tr td.today.disabled, .datetimepicker table tr td.today.disabled:hover, .datetimepicker table tr td.today:hover {
background-color: rgb(206, 209, 222);
background-image: -moz-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -ms-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -webkit-gradient(linear,0 0,0 100%,from(rgb(206, 209, 222)),to(rgb(206, 209, 222)));
background-image: -webkit-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -o-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: linear-gradient(to bottom,rgb(206, 209, 222),rgb(206, 209, 222));
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(8, 24, 92, 0.5)', endColorstr='rgba(8, 24, 92, 0.5)', GradientType=0);
border-color: #ffffff #ffffff #ffffff;
border-color: rgb(206, 209, 222) rgb(206, 209, 222) rgb(206, 209, 222);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
color: #fff;
}
.datetimepicker table tr td.active, .datetimepicker table tr td.active.disabled, .datetimepicker table tr td.active.disabled:hover, .datetimepicker table tr td.active:hover {
background-color: #08185c;
background-image: -moz-linear-gradient(top,#08185c,#08185c);
background-image: -ms-linear-gradient(top,#08185c,#08185c);
background-image: -webkit-gradient(linear,0 0,0 100%,from(#08185c),to(#08185c));
background-image: -webkit-linear-gradient(top,#08185c,#08185c);
background-image: -o-linear-gradient(top,#08185c,#08185c);
background-image: linear-gradient(to bottom,#08185c,#08185c);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08185c', endColorstr='#08185c', GradientType=0);
border-color: #08185c #08185c #08185c;
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}
.carousel-available-course a.carousel-control{
background: transparent;
top: -10px;
}
.carousel-available-course a.carousel-control span{
padding: 1px;
width: 35px;
height: 35px;
border: 1px solid #1b2d5a;
}
.carousel-available-course a.carousel-control.left{
right: 68px;
}
.carousel-available-course a.carousel-control.right{
right: 10px;
}
/** Main Media Queries **/
@media only screen and (max-width:320px) {
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
/*.scrollToTop{
bottom: 109px;
right: 7px;
background: none;
border: 2px solid #0c1427;
color: #0c1427;
line-height: 28px;
width: 35px;
height: 35px;
display: none;
}*/
.om-header-buttons{
right: 31% !important;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none;
display: none;
}
.social-links ul {
text-align: center
}
.social-links ul li a {
padding: 6px 28px
}
.logo img {
width: 100%
}
.mid-header .contact-details {
padding: 2px 0;
width: 50%;
}
.mid-header .contact-details .contact {
text-align: center
}
.mid-header .contact-details .contact:first-child {
padding-right: 46px;
text-align: center;
margin: 0 0 10px;
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
text-align: left;
}
.mid-header-contacts{
margin: 0 0 5px;
display: none;
}
.signup-login{
float: right;
}
.signup-login ul.bdr {
float: none;
}
.cart {
width: 110px;
margin: 0;
}
.cart > a{
padding: 9px 14px;
display: block;
background: rgba(255, 255, 255, 0.07);
border-left: 0;
width: 110px;
text-align: center;
}
.view_more_768{
display: none;
}
.signup-login .bdr li:nth-child(even) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li a{
text-align: center;
}
.main-nav {
position: absolute;
top: 86px;
right: 0
}
.main-nav .navbar {
background: 0 0
}
.navbar-menu-items {
background: #ababab;
color: #1b2d5a
}
.main-nav .navbar .navbar-collapse .active a {
color: #1b2d5a
}
.navbar-default .navbar-nav>li>a {
color: #1b2d5a
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 10%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 10px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 10px;
overflow: hidden;
height: 29px;
}
.carousel-caption p.carousel-search-para{
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px*/
height: 200px;
}
.slider #owl-slider-olive .item img {
width: 160%;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -64px
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
.banner-tabs #exTab3 .nav-pills li a i {
display: none
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 9.6px
}
.sub-footer-nav li::before {
margin: -3px 1px;
}
.quick-search-wrapper {
height: 190px;
}
.quick-search-autocomplete .inner-wrapper {
padding: 12px 35px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 5px 15px 15px !important;
width: 65%;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 65px;
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 12px !important;
font-weight: normal;
}
.at-login-form .modal-dialog {
width: 94%;
margin: 78px auto;
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
/*.height{
height: 165px;
}*/
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 45px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 48px;
}
.single_us .single_us_img{
float: none;
}
.single_us .single_us_img img{
margin: 0 auto;
display: block;
}
.single_us .single_us_img:after {
left: 34%;
width: 35%;
}
.single_us .single_us_text{
text-align: center;
padding: 0;
margin-top: 25px;
}
.single_us{
padding-right: 0;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 88px;
height: 88px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 12px 3px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
.single-news-item .post ul{
text-align: center;
}
.single-news-item .post ul li{
margin: 10px 0 0 0;
}
/***** Course Details *****/
.course-details-thumbnail{
display: none;
}
.course-details-top-banner .course-details-content{
margin: 0;
}
.course-details-thumbnail img {
max-width: 100%;
padding: 12px;
}
ul.course-details-tab-content li a{
padding: 10px 0;
}
ul.course-details-tab-content li.active{
border: 1px solid #1b2d5a;
}
.nav.nav-justified>li>a>.quote{
display: none;
}
ul#nav-tabs:before{
content: none;
}
ul.course-details-tab-content li a p{
overflow-wrap: break-word;
padding: 0 3px;
}
.main-courses-section .tabs-course-booking-btn a.btn{
padding: 10px 21px;
}
.customNavigation a.next {
right: 9.2%;
}
.customNavigation a.prev {
right: 23.2%;
}
/**** Courses ****/
button.btn.btn-link.filter-button{
font-size: 13px;
}
.course-listing-tab{
margin-top: 55px;
}
.courses-selection-tab hr{
display: none;
}
#courses .btn-theme-transparent{
width: 100%;
display: block;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 4px
}
/** Client Info **/
.dashboard{
padding: 58px 4px 0;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 12px;
font-size: 18px;
}
.dashboard-tabs li h4{
font-size: 11px;
display: block;
white-space: normal;
width: 45px;
text-align: center;
margin: 0 auto;
}
.card-form-content, .billing-form-content{
padding: 16px 9px;
}
.ibox-footer.client-info-save button,
.ibox-footer.client-info-save .billing-details-edit-btn{
margin: 17px 0px 0px !important;
width: 94%;
}
.ibox-footer.client-info-save .btn-cancel,
.ibox-footer.client-info-save .btn-save{
text-align: center !important;
float: none !important;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course selection page **/
.course-select-details{
margin: 0 0 40px;
}
.available-course-date{
display: table;
width: 100%;
}
.available-course-date-content a{
text-align: center;
}
.available-course-date .date-head{
font-size: 11px;
}
.available-course-date .date-head {
padding: 22px 6px;
font-size: 15px;
float: left;
width: 100%;
}
.available-course-date-content{
width: 100%;
}
.date-plus-seats .event-date .date-and-time p, .duration .date-and-time p{
font-size: 11px;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** om header buttons search/ham-burger/cart **/
.om-header-buttons .cart{
width: 60px;
}
.om-header-buttons .cart > a{
background: none;
width: 58px;
padding: 14.5px 3px;
}
.om-header-buttons .cart_block.block.exclusive {
width: 290px;
right: 5px;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.thumbnail .price ins{
font-size: 11px;
}
.rateandprice{
margin: 7px 0 !important
}
#top-rated-owl .thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 13px;
}
.mui-textfield--float-label > label.new-label{
position: relative;
top: -62px;
}
/** Schedule **/
.schedule-content-slide .carousel-inner .item{
margin: 36px 0 0;
}
.schedule-content h2{
white-space: normal;
width: 100%;
}
/** All Events Listing **/
.all-events-listing {
margin: 40px 0;
}
.all-events-listing .global-inner-heading h1{
padding: 0;
}
.all-events-listing .global-inner-heading h1:before,
.all-events-listing .global-inner-heading h1:after{
content: none;
}
.all-events-listing .available-course-date .date-head{
float: none;
display: inline-table;
width: 100%;
padding: 10px 6px;
height: 75px;
}
.all-events-listing .available-course-date {
display: table;
width: 100%;
}
.all-events-listing .event-listing-title{
width: 70%;
float: none;
}
.all-events-listing .course-event-price{
width: 30%;
float: right;
height: 116px;
}
.all-events-listing .event-listing-title h2{
width: 142px;
}
.all-events-listing .course-event-price p{
padding: 45px 0;
font-size: 18px;
}
.all-events-listing .event-listing-date .course-event-price:before{
right: 0;
left: 0;
margin: auto;
top: 0;
bottom: 0;
width: 65px;
height: 65px;
}
}
@media only screen and (min-width:321px) and (max-width:480px) {
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none;
display: none;
}
.social-links ul {
text-align: center
}
.social-links ul li a {
padding: 6px 28px
}
.logo img {
width: 100%
}
.mid-header .contact-details {
padding: 2px 0;
width: 50%;
}
.mid-header .contact-details .contact {
text-align: center
}
.mid-header .contact-details .contact:first-child {
padding-right: 46px;
text-align: center;
margin: 0 0 10px;
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
text-align: left;
}
.mid-header-contacts{
margin: 0 0 5px;
display: none;
}
.signup-login{
float: right;
}
.signup-login ul.bdr {
float: none;
}
.cart {
width: 110px;
margin: 0;
float: right;
}
.cart > a{
padding: 9px 14px;
display: block;
background: rgba(255, 255, 255, 0.07);
border-left: 0;
width: 110px;
text-align: center;
}
.view_more_768{
display: none;
}
.signup-login .bdr li a{
text-align: center;
}
.om-header-buttons {
position: absolute !important;
display: inline-block !important;
/*top: -12px !important;*/
top: -45px !important;
right: 12% !important;
}
.main-nav {
position: absolute;
top: 86px;
right: 0
}
.main-nav .navbar {
background: 0 0
}
.navbar-menu-items {
background: #ababab;
color: #1b2d5a
}
.main-nav .navbar .navbar-collapse .active a {
color: #1b2d5a
}
.mobileview-center {
text-align: center
}
.navbar-default .navbar-nav>li>a {
color: #1b2d5a
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 9%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 10px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 10px;
overflow: hidden;
height: 29px;
}
.carousel-caption p.carousel-search-para{
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px*/
height: 214px;
}
.slider #owl-slider-olive .item img{
width: 146%;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -80px;
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
.banner-tabs #exTab3 .nav-pills li a i {
display: none
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px
}
.sub-footer {
text-align: center
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 10px
}
.sub-footer-nav li::before {
margin: -3px 4px
}
.sub-footer-nav {
float: none;
text-align: center;
display: inline-block;
vertical-align: middle
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
.signup-login .bdr li a {
text-align: center;
}
.signup-login .bdr li:nth-child(even) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.quick-search-wrapper {
height: 190px;
}
.quick-search-autocomplete .inner-wrapper {
padding: 12px 35px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 5px 15px 15px !important;
width: 65%;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 65px;
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 12px !important;
font-weight: normal;
}
.at-login-form .modal-dialog {
width: 94%;
margin: 78px auto;
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
.om-header-buttons{
right: 31% !important;
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
.height{
height: auto;
}
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 70px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 40px;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 71px;
height: 71px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 4px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
/***** Course Details *****/
.course-details-thumbnail{
display: none;
}
.course-details-thumbnail img {
max-width: 100%;
padding: 12px;
}
.course-details-top-banner .course-details-content{
margin: 0;
}
ul.course-details-tab-content li a{
padding: 10px 0;
}
ul.course-details-tab-content li.active{
border: 1px solid #1b2d5a;
}
.nav.nav-justified>li>a>.quote{
display: none;
}
ul#nav-tabs:before{
content: none;
}
ul.course-details-tab-content li a p{
overflow-wrap: break-word;
padding: 0 3px;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 6px;
}
.rateandprice{
margin: 8px 0 !important;
}
.customNavigation a.next {
right: 29px;
}
.customNavigation a.prev {
right: 73px;
}
/**** Courses ****/
button.btn.btn-link.filter-button{
font-size: 13px;
}
.course-listing-tab{
margin-top: 55px;
}
.courses-selection-tab hr{
display: none;
}
/** Client Info **/
.dashboard{
padding: 58px 4px 0;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 12px;
font-size: 18px;
}
.dashboard-tabs li h4{
font-size: 11px;
display: block;
white-space: normal;
width: 45px;
text-align: center;
margin: 0 auto;
}
.card-form-content, .billing-form-content{
padding: 16px 9px;
}
.client-info-save{
text-align: center;
}
.client-info-save .btn-save,
.client-info-save .btn-cancel{
float: none !important;
}
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course Selection **/
.course-select-details{
margin: 0 0 40px;
}
.available-course-date{
display: table;
width: 100%;
}
.available-course-date-content a{
text-align: center;
}
.available-course-date .date-head{
font-size: 11px;
}
.available-course-date .date-head {
padding: 22px 6px;
font-size: 15px;
float: left;
width: 100%;
}
.available-course-date-content{
width: 100%;
}
.date-plus-seats .event-date .date-and-time p, .duration .date-and-time p{
font-size: 11px;
float: none;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** om header buttons search/ham-burger/cart **/
.om-header-buttons .cart{
width: 60px;
}
.om-header-buttons .cart > a{
background: none;
width: 58px;
padding: 14.5px 3px;
}
.om-header-buttons .cart_block.block.exclusive {
width: 290px;
right: 5px;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.thumbnail .price ins{
font-size: 14px;
}
#top-rated-owl .thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 16px;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
/** Schedule **/
.schedule-content-slide .carousel-inner .item{
margin: 36px 0 0;
}
.schedule-content h2{
white-space: normal;
width: 100%;
}
/** All Events Listing **/
.all-events-listing {
margin: 40px 0;
}
.all-events-listing .global-inner-heading h1{
padding: 0;
}
.all-events-listing .global-inner-heading h1:before,
.all-events-listing .global-inner-heading h1:after{
content: none;
}
.all-events-listing .available-course-date .date-head{
float: none;
display: inline-table;
width: 100%;
padding: 10px 6px;
height: 75px;
}
.all-events-listing .available-course-date {
display: table;
width: 100%;
}
.all-events-listing .event-listing-title{
width: 70%;
float: none;
}
.all-events-listing .course-event-price{
width: 30%;
float: right;
height: 116px;
}
.all-events-listing .event-listing-title h2{
width: 199px;
}
.all-events-listing .course-event-price p{
padding: 45px 0;
font-size: 18px;
}
.all-events-listing .event-listing-date .course-event-price:before{
right: 0;
left: 0;
margin: auto;
top: 0;
bottom: 0;
width: 65px;
height: 65px;
}
}
@media only screen and (min-width:481px) and (max-width:768px) {
.view_less_768{
display: none !important;
}
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none
}
.social-links ul {
text-align: center
}
.social-links ul li a {
/*padding: 6px 28px*/
padding: 5px 18px;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 15px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -99px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 9%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 9px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 3px;
overflow: hidden;
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px;*/
height: 230px;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -80px
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
/*.banner-tabs #exTab3 .nav-pills li a i {
display: none
}*/
.banner-tabs #exTab3 .nav-pills li a i {
font-size: 15px;
top: 0;
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
/*.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}*/
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px;
min-height: 255px;
}
.sub-footer {
text-align: center
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 10px
}
.sub-footer-nav li::before {
margin: -3px 4px
}
.sub-footer-nav {
float: none;
text-align: center;
display: inline-block;
vertical-align: middle
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
.height{
height: auto;
}
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 70px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 48px;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 71px;
height: 71px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 4px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
/*.single-news-item .post ul{
text-align: center;
}
.single-news-item .post ul li{
margin: 10px 0 0 0;
}*/
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
/** Course Selection **/
.course-select-details{
margin: 0 0 40px;
}
.datePicker table{
min-height: 309px;
}
/** Client Info **/
.client-info-save{
text-align: center;
}
/*.client-info-save .btn-save,
.client-info-save .btn-cancel{
float: none !important;
}*/
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins{
font-size: 13px;
}
#courses .thumbnail .price ins{
font-size:13px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 80%;
}
.btn-remove-cart{
font-size: 8px;
padding: 5px;
}
}
@media only screen
and (min-width: 481px)
and (max-width: 768px)
and (orientation: landscape) {
.top-address-sec,
.top-socio-sec{
width: 50%;
}
.top-address-sec .top-header-address p{
text-align: left;
/*font-size: 11px;*/
font-size: 10px;
}
.main-nav{
display: block;
}
.mid-header{
padding: 5px;
}
.logo_sec{
width: 25%;
float: left;
}
.mid-header-contacts{
width: 75%;
}
.mid-header .logo {
padding: 29px 0;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 15px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -103px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Client Info **/
.client-info-save{
text-align: center;
}
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
min-width: 212px;
width: auto;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 14px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 80%;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
}
@media only screen and (min-width: 769px) and (max-width: 1024px){
.logo img {
width: auto;
}
.slider{
margin: 0;
}
.view_less_768{
display: none !important;
}
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
padding-right: 5px;
padding-left: 5px;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 10px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -99px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .bdr li{
float: left;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
.footer-column .col-sm-6 {
min-height: 325px;
}
.footer-column .col-sm-6:nth-child(3),
.footer-column .col-sm-6:nth-child(4)
{
min-height: auto;
}
.social-icons li a {
height: 33px;
line-height: 33px;
text-align: center;
width: 33px;
border-radius: 100%;
border-radius: 100%;
border: 1px solid rgba(255, 255, 255, .2);
color: rgba(255, 255, 255, .2);
text-decoration: none;
}
.slider #owl-slider-olive .item{
height: 345px;
}
#owl-slider-olive .carousel-caption{
top: 2%;
}
.slider #owl-slider-olive .item img{
width: 120%;
}
.banner-tabs #exTab3 .tab-content .course-button button{
font-size: 13px;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** Courses details **/
.slider .course-details-top-banner{
padding: 38px 0;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins{
font-size: 13px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1199px){
.slider{
margin: 0;
}
.slider #owl-slider-olive .owl-buttons div{
top: 28%;
}
.logo img {
width: 100%;
}
.view_less_768{
display: none !important;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 8px;
}
.om-header-buttons {
top: -97px !important;
right: 1.2% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.footer-column .col-sm-6 {
min-height: 325px;
}
.footer-column .col-sm-6:nth-child(3),
.footer-column .col-sm-6:nth-child(4)
{
min-height: auto;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
}
@media only screen and (min-width: 1200px){
.view_less_768{
display: none !important;
}
} | public/frontend/dist/css/styles.min.css | @font-face {
font-family: 'robotoregular';
src: url(../../fonts/roboto-regular-webfont.eot);
src: url(../../fonts/roboto-regular-webfont.eot?#iefix) format("embedded-opentype"), url(../../fonts/roboto-regular-webfont.woff2) format("woff2"), url(../../fonts/roboto-regular-webfont.woff) format("woff"), url(../../fonts/roboto-regular-webfont.ttf) format("truetype"), url(../../fonts/roboto-regular-webfont.svg#robotoregular) format("svg");
font-weight: 400;
font-style: normal
}
@font-face {
font-family: 'robotobold';
src: url('../../fonts/roboto-bold-webfont.eot');
src: url('../../fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/roboto-bold-webfont.woff2') format('woff2'),
url('../../fonts/roboto-bold-webfont.woff') format('woff'),
url('../../fonts/roboto-bold-webfont.ttf') format('truetype'),
url('../../fonts/roboto-bold-webfont.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}
html{
background-color: #f0f0f0;
}
body {
font-family: robotoregular;
background: #fff;
}
body ul {
list-style: none
}
body a {
transition: all .5s ease
}
body a:focus,
body a:hover {
text-decoration: none;
color: #fff
}
.modal {
overflow: auto !important;
}
.lowercase{
text-transform:lowercase;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px #F0F0F0 inset !important;
}
.modal-body input:-webkit-autofill,
.billing-form-content input:-webkit-autofill,
.card-form-content input:-webkit-autofill{
-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
.top-header {
background: #2e4e9e
}
.top-header-address p {
color: #ababab;
padding: 8px 2px;
font-size: 14px;
line-height: 16px
}
.social-links {
float: right
}
.social-links ul {
list-style: none
}
.social-links ul li {
display: inline-block;
vertical-align: middle;
border-left: 1px solid #365ab4
}
.social-links ul li:last-child {
border-right: 1px solid #365ab4
}
.social-links ul li a {
padding: 6px 10px;
display: inline-block;
vertical-align: middle
}
.social-links ul li a i {
font-size: 14px;
line-height: 16px;
color: #ababab
}
.social-links ul li a:hover i {
color: #fff
}
.social-links ul li a.twitter-icon:hover i{
color: #00aced;
}
.social-links ul li a.facebook-icon:hover i{
/* color: #3b5998;*/
color: #fff;
}.social-links ul li a.instagram-icon:hover i{
color: #bc2a8d;
}.social-links ul li a.googleplus-icon:hover i{
color: #dd4b39;
}
.mid-header {
background: #1b2d5a;
padding: 5px
}
.mid-header .logo {
padding: 12px 0
}
.mid-header .contact-details {
padding: 12px 0;
display: inline-block;
vertical-align: middle;
float: right
}
.mid-header .contact-details .contact {
color: #ababab;
float: left
}
.mid-header .contact-details .contact:first-child {
padding-right: 22px
}
.mid-header .contact-details .contact:last-child {
padding-right: 0px
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
color: #7ba0ff;
font-size: 14px;
line-height: 12px;
text-align: right;
}
.mid-header .contact-details .contact .contact-mail-heading i.fa,
.mid-header .contact-details .contact .contact-phone-heading i.fa {
font-size: 18px;
padding: 5px
}
.main-nav {
background: 0 0;
position: relative;
z-index: 888;
display: flex
}
.main-nav .navbar {
margin-bottom: 0;
background: #0c1427;
border: 0;
border-radius: 0
}
.main-nav .navbar .navbar-collapse {
padding-left: 0
}
.main-nav .navbar .navbar-collapse .active a {
background: rgba(240, 243, 244, 0);
color: #ababab
}
.main-nav .navbar .navbar-collapse .active a:focus,
.main-nav .navbar .navbar-collapse .active a:hover {
background: #e7e7e7;
color: #ababab
}
.make-om-fixed {
position: fixed!important;
top: -50px;
z-index: 99999;
width: 100%;
background: #0c1427;
transition: all .5s cubic-bezier(.4, 0, .2, 1);
transform: translateY(50px)
}
// .dropdown {
// position: static!important
// }
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
color: #0c1427;
background: #e7e7e7
}
.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
color: #0c1427;
background: #e7e7e7
}
.mega-dropdown {
position: static!important
}
.mega-dropdown-menu {
padding: 20px 0;
width: 100%;
box-shadow: none;
-webkit-box-shadow: none;
border: 0;
background: #e7e7e7;
height: 330px
}
.mega-dropdown-menu>li>ul {
padding: 0;
margin: 0
}
.mega-dropdown-menu>li>ul>li {
list-style: none
}
.mega-dropdown-menu>li>ul>li>a {
display: block;
color: #222;
padding: 3px 5px
}
.mega-dropdown-menu>li ul>li>a:focus,
.mega-dropdown-menu>li ul>li>a:hover {
text-decoration: none
}
.mega-dropdown-menu .dropdown-header {
font-size: 18px;
color: #0c1427;
padding: 5px 60px 5px 5px;
line-height: 30px
}
.dropdown-menu.search-panel {
height: 63px;
padding: 0;
border-radius: 0;
margin-top: 0
}
.inner-popular-course {
width: 100%;
background: #f0f0f0;
position: relative;
}
.nav-popular-course h2 {
font-size: 14px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 2px 10px;
position: absolute;
bottom: 0;
background: rgba(240, 240, 240, 0.9);
width: 100%;
}
.nav-popular-course span{
width: 54px;
display: block;
position: absolute;
top: 0px;
right: 0;
background: rgba(26, 45, 90, 0.8);
height: 25px;
line-height: 25px;
text-align: center;
padding: 2px 2px;
color: #fff;
}
.carousel-control {
width: 30px;
height: 30px;
top: -35px
}
.left.carousel-control {
right: 30px;
left: inherit
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
font-size: 12px;
background-color: #fff;
line-height: 30px;
text-shadow: none;
color: #333;
border: 1px solid #ddd
}
a.carousel-control {
background: #0c1427;
color: #fff;
opacity: 1
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
color: #0c1427
}
.main {
background: #fff
}
.slider {
margin-top: -50px
}
.slider #owl-slider-olive {
position: relative
}
.slider #owl-slider-olive .item {
height: 400px
}
.slider #owl-slider-olive .item img {
display: block;
width: 100%;
height: auto
}
.slider #owl-slider-olive .owl-controls .owl-pagination {
display: none
}
.slider #owl-slider-olive .owl-buttons div {
position: absolute;
top: 38%;
width: 72px;
height: 72px;
padding: 21px 3px;
border-radius: 50%;
background: #000;
font-size: 20px;
transition: all 0.3s ease;
}
.slider #owl-slider-olive .owl-buttons div:hover {
background: #2e4e9e;
opacity: .5
}
.slider #owl-slider-olive .owl-buttons .owl-prev {
left: 5%
}
.slider #owl-slider-olive .owl-buttons .owl-next {
right: 5%
}
.carousel-caption {
position: absolute;
top: 14%;
left: 18%
}
.carousel-caption h1 {
font-size: 38px;
color: #fff;
margin: 22px 0;
animation-delay: 1s
}
.carousel-caption p {
font-size: 18px;
padding: 0 60px;
margin: 0 0 23px;
animation-delay: 2s;
overflow: hidden;
height: 54px;
}
.carousel-caption p~p {
animation-delay: 3s
}
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=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
background: rgba(0, 0, 0, .05);
position: relative;
border: none;
padding: 0;
border: 1px solid rgba(0, 0, 0, .06);
height: 50px;
max-width: 100%;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .2s ease-in-out 0s;
-moz-transition: all .2s ease-in-out 0s;
-ms-transition: all .2s ease-in-out 0s;
-o-transition: all .2s ease-in-out 0s;
transition: all .2s ease-in-out 0s;
width: 48%;
margin: 0 0 0 6px;
font-size: 16px;
}
.slider-search-field {
background: #fff!important;
color: #001d60!important;
height: 43px!important;
margin: 0!important;
font-size: 14px;
width: 64.2% !important;
}
.slider-search-btn {
color: #fff!important;
padding: 10px 40px!important;
background: #1b2d5a!important;
margin: 0 0 2px!important;
height: 43px!important;
border-radius: 0
}
.slider-search-btn:hover {
background: #32426a!important;
border-color: #32426a!important
}
.btn-theme {
color: #fff;
border-width: 3px;
background-color: #1b2d5a;
border-color: #1b2d5a;
padding: 12px 20px;
font-size: 14px;
font-family: robotobold;
line-height: 1;
text-transform: uppercase;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
.banner-send-btn {
background: #1b2d5a;
border: none;
margin: 0 0 0 8px;
padding-left: 80px;
padding-right: 80px;
border-radius: 0;
color: #fff
}
.banner-send-btn:hover {
background: #32426a!important
}
.mega-dropdown-menu>li>ul {
padding: 0;
margin: 0
}
.mega-dropdown-menu>li>ul>li {
list-style: none
}
.mega-dropdown-menu>li>ul>li>a {
display: block;
clear: both;
font-weight: 400;
line-height: 1.428571429;
color: #999;
white-space: normal;
margin: 3px 0 3px 20px;
padding: 6px 12px
}
.mega-dropdown-menu>li ul>li>a:focus,
.mega-dropdown-menu>li ul>li>a:hover {
text-decoration: none;
color: #0c1427;
background-color: #f5f5f5;
border-left: 2px solid #0c1427;
transition: none;
-webkit-transition: none
}
.mega-dropdown-menu .dropdown-header {
color: #0c1427;
font-size: 18px;
font-weight: 700;
padding: 0 15px 5px
}
.mega-dropdown-menu form {
margin: 3px 20px 0 0;
padding: 0;
width: 100%
}
.mega-dropdown-menu form .form-group {
width: 99%
}
.mega-dropdown-menu form .form-group input[type=text] {
border-width: 0 0 2px 0;
border-color: #1b2d5a;
border-radius: 0;
border-style: solid;
background: 0 0;
box-shadow: none;
width: 100%
}
.submenu-header:hover .submenu {
display: block;
margin: 0 0 0 13px
}
.submenu-header .submenu {
list-style: none;
display: none;
max-height: 140px;
overflow: auto
}
.submenu-header .submenu li {
display: block;
margin: 0 0 0 13px
}
.submenu-header .submenu li a {
display: block;
padding: 5px 10px;
color: #1b2d5a
}
.navbar-default .navbar-nav>li>a {
color: #ababab;
text-transform: uppercase;
font-size: 12px
}
.navbar-nav .search-btn {
padding: 14px 23px;
color: #ababab
}
.banner-tabs {
margin-top: -86px
}
.banner-tabs .nav-pills {
display: table;
width: 100%;
table-layout: fixed
}
.banner-tabs #exTab3 .nav-pills li {
float: none;
display: table-cell;
width: 100%;
border-right: 1px solid #aaabb3;
}
.banner-tabs #exTab3 .nav-pills li a {
border-radius: 0;
background: #ced1de;
color: #1b2d5a;
text-align: center;
text-transform: uppercase;
font-size: 18px;
padding: 3px 14px 14px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden
}
.banner-tabs #exTab3 .nav-pills li a i {
font-size: 32px;
position: relative;
top: 5px;
padding: 0 12px
}
.banner-tabs li:last-child {
border-right: 0!important
}
.banner-tabs #exTab3 .tab-content {
color: #fff;
background-color: #08185c;
padding: 25px 40px;
position: relative;
z-index: 1
}
.banner-tabs #exTab3 .tab-content .course-date-field label,
.banner-tabs #exTab3 .tab-content .course-field label,
.banner-tabs #exTab3 .tab-content .course-seat-field label {
font-size: 18px
}
.banner-tabs #exTab3 .tab-content .course-date-field input,
.banner-tabs #exTab3 .tab-content .course-field input,
.banner-tabs #exTab3 .tab-content .course-seat-field input {
background: #fff;
border: 0;
border-radius: 0;
height: 42px;
margin: 0;
width: 100%;
border-right: 1px solid #c2c2c2
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select,
.banner-tabs #exTab3 .tab-content .course-field .rail-select,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select {
position: relative
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select select,
.banner-tabs #exTab3 .tab-content .course-field .rail-select select,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select select {
border: 0;
border-radius: 0;
font-size: 16px;
color: #555;
height: 42px;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select select:focus,
.banner-tabs #exTab3 .tab-content .course-field .rail-select select:focus,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select select:focus {
outline: 0;
box-shadow: none;
border: solid 1px #c2c2c2
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 40px;
position: absolute;
top: 0;
background-color: #fff;
height: 100%;
right: 0;
border-radius: 0;
border-right: 0;
border-top: 0;
border-bottom: 0;
pointer-events: none
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side:before,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side:before,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side:before {
border-left: solid 1px #c2c2c2;
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 1px
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side i,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side i,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side i {
left: 26%;
top: 4px;
font-size: 31px;
position: absolute;
color: #2e4e9e
}
.banner-tabs #exTab3 .tab-content .course-button button {
margin: 29px 0 0;
background: #1b2d5a;
border-radius: 0;
height: 42px;
border: 1px solid #c2c2c2;
color: #fff;
text-transform: uppercase;
font-size: 16px
}
.banner-tabs #exTab3 .tab-content .course-button button:hover {
opacity: .9
}
.banner-tabs #exTab3 .tab-content .course-button button:active,
.banner-tabs #exTab3 .tab-content .course-button button:focus,
.banner-tabs #exTab3 .tab-content .course-button button:visited {
box-shadow: none
}
.banner-tabs .nav-pills li.active a:focus,
.banner-tabs .nav-pills li.active a:hover,
.banner-tabs .nav-pills li.active>a {
background: #08185c!important;
color: #fff!important
}
.course-date-field .form_date {
width: 100%
}
.input-group-addon {
padding: 6px 12px;
font-size: 18px;
font-weight: 400;
line-height: 1;
color: #2e4e9e;
text-align: center;
background-color: #fff;
border-radius: 4px;
border-width: 0 0 0 1px;
border-radius: 0;
border-color: #000;
border-style: solid
}
.input-group-addon i {
color: #2e4e9e
}
.company-details {
margin-top: 80px;
margin-bottom: 80px
}
.company-details .row {
display: flex;
display: -webkit-flex;
}
.company-details .row .col-md-4 {
padding: 0;
flex: 1;
}
.company-details .row .col-md-4:first-child {
margin-left: 15px;
padding-right: 0;
flex: 1;
}
.company-details .row .col-md-4:last-child {
margin-right: 15px;
padding-left: 0;
flex: 1;
}
.company-details .row .col-md-4 .company-info {
text-align: center
}
.company-details .row .col-md-4 .company-info .company-info-heading {
padding: 40px 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-heading .icon-sec {
position: relative;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-heading .icon-sec img {
margin: 0 auto
}
.company-details .row .col-md-4 .company-info .company-info-content {
display: inline-block;
vertical-align: middle;
color: #fff;
padding: 0 27px 25px
}
.company-details .row .col-md-4 .company-info .company-info-content h4 {
font-size: 18px;
padding: 40px 0 20px;
position: relative;
z-index: 1
}
.company-details .row .col-md-4 .company-info .company-info-content p {
font-size: 14px;
padding: 10px;
position: relative;
z-index: 1
}
.company-details .row .first-content {
background: #38c071
}
.company-details .row .first-content .company-info-content:after {
background: #36bb6e;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.company-details .row .second-content {
background: #edbf47
}
.company-details .row .second-content .company-info-content:after {
background: #e7ba45;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.company-details .row .third-content {
background: #8a7bd1
}
.company-details .row .third-content .company-info-content:after {
background: #8678cb;
content: '';
width: 100%;
height: 38%;
position: absolute;
top: 0;
left: 0;
z-index: 0
}
.safety-details-sec .safety-content {
text-align: center;
color: #1b2d5a
}
.safety-details-sec .safety-content h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px
}
.safety-details-sec .safety-content hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
border: none;
margin: 0 auto 30px
}
.safety-details-sec .safety-content hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #fff;
border-right: 5px solid #fff
}
.safety-details-sec .safety-content .description p {
font-size: 14px;
line-height: 24px;
width: 61%;
margin: 0 auto
}
.news-sec {
margin-bottom: 80px;
background-image: url(../images/slider/slider2.png);
}
.parallax{
background-attachment: fixed;
background-position: 0 0;
background-repeat: no-repeat;
background-size: cover;
}
.news-sec .container {
padding: 50px 22px 66px
}
.news-sec .container .news-details {
color: #fff
}
.news-sec .container .news-details p.news-date {
padding: 0 0 3px
}
.news-sec .container .news-details h3.news-heading {
font-size: 24px;
line-height: 26px;
padding: 0 0 8px
}
.news-sec .container .news-details p.news-content {
font-size: 14px;
line-height: 18px
}
.news-sec .container .news-button {
margin-top: 30px
}
.news-sec .container .news-button .read-more {
padding: 10px 33px;
background: #1b2d5a;
color: #fff;
border: 0;
border-radius: 0;
font-size: 12px
}
.news-sec .container .news-button .read-more:hover {
opacity: 0.9;
}
.course-listing {
margin-bottom: 80px
}
.course-listing .course-heading {
text-align: center;
color: #1b2d5a
}
.course-listing .course-heading h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px
}
.course-listing .course-heading hr {
background: #ababab;
width: 180px;
position: absolute;
left: 42.3%;
height: 1px;
border: none
}
.course-listing .course-heading hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #fff;
border-right: 5px solid #fff
}
.h-w-c hr:after{
border-left: 5px solid #f0f0f0 !important;
border-right: 5px solid #f0f0f0 !important;
}
.course-listing .course-heading p {
font-size: 14px;
line-height: 24px;
padding: 30px 10px 0;
width: 61%;
margin: 0 auto 80px
}
.course-listing .courses-row {
margin: 0 0 20px
}
.course-listing .courses-row .col-xs-12 {
margin-bottom: 20px
}
.course-listing .courses-row .col-xs-12:last-child {
margin-bottom: 0
}
.rating {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 14px;
text-align: left
}
.rating span.star {
font-family: FontAwesome;
font-weight: 400;
font-style: normal;
display: inline-block
}
.rating span.star:hover {
cursor: pointer
}
.rating span.star:before {
content: "\f006";
padding-right: 5px;
color: #d3d3d3
}
.rating span.star.active:before,
.rating span.star:hover:before,
.rating span.star:hover~span.star:before {
content: "\f005";
color: #3c3c3c
}
.tabs {
margin-bottom: 25px;
font-size: 24px;
font-weight: 300;
line-height: 20px;
text-transform: uppercase;
text-align: center;
overflow: hidden;
position: relative
}
.tabs ul {
display: inline-block;
position: relative;
margin-top: -10px
}
.tabs ul:after,
.tabs ul:before {
content: "";
position: absolute;
height: 1px;
width: 2000px;
background-color: #a5abb7;
top: 20px
}
.tabs ul:before {
right: 100%;
margin-right: 15px
}
.tabs ul:after {
left: 100%;
margin-left: 15px
}
@media (max-width:767px) {
.tabs ul {
padding-bottom: 15px;
border-bottom: solid 1px #a5abb7
}
}
.tabs li {
display: inline-block;
margin-top: 10px
}
.tabs li a {
padding: 0;
color: #232323
}
.tabs li a,
.tabs li a:hover {
background-color: transparent
}
.tabs li a:hover {
color: #a5abb7
}
.tabs li.active {
font-weight: 900
}
.tabs li.active a {
color: #232323;
background-color: transparent
}
@media (min-width:768px) {
.tabs li+li {
position: relative;
margin-left: 20px
}
.tabs li+li:before {
content: '';
display: block;
width: 6px;
height: 1px;
position: absolute;
left: -14px;
top: 10px;
background-color: #232323
}
}
@media (max-width:767px) {
.tabs li {
display: block
}
}
.thumbnail {
margin: 0 auto;
border-radius: 0;
background-color: transparent;
position: relative
}
@media (max-width:991px) {
.thumbnail {
max-width: 450px
}
}
.thumbnail.hover,
.thumbnail:hover {
border: solid 1px #1b2d5a
}
.thumbnail.no-border,
.thumbnail.no-border.hover,
.thumbnail.no-border:hover {
border: none
}
.thumbnail.no-padding {
padding: 0
}
.row.thumbnails {
margin-top: -30px
}
.row.thumbnails .thumbnail {
margin-top: 30px
}
.row.thumbnails.no-padding {
margin-top: 0;
margin-left: 0;
margin-right: 0
}
.row.thumbnails.no-padding [class*=col-] {
padding: 0
}
.row.thumbnails.no-padding .thumbnail {
margin-top: 0
}
.thumbnail .media {
overflow: hidden;
position: relative
}
.thumbnail .media img {
max-width: 100%;
width: 100%
}
.thumbnail .caption {
padding: 15px 0 0 0;
overflow: hidden
}
.thumbnail .caption+.caption {
padding-top: 10px
}
.thumbnail .caption.no-padding-top {
padding-top: 0
}
.thumbnail .caption.no-padding-bottom {
padding-bottom: 0
}
.thumbnail .caption.hovered {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
text-align: center;
overflow: hidden;
padding: 15px;
color: #fff;
opacity: 0;
z-index: 10
}
.thumbnail.hover .caption.hovered,
.thumbnail:hover .caption.hovered {
opacity: 1
}
.caption-wrapper {
width: 100%
}
.caption-title {
font-size: 18px;
font-weight: 300;
line-height: 20px;
margin: 0 0 5px 0;
color: #232323
}
.caption-title a {
color: #1b2d5a;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: block
}
.caption-title a:hover,
.caption-title a:focus,
.caption-title a:visited{
color: #232323
}
.icon-view {
width: 80px;
height: 80px;
padding: 5px;
border: solid 1px rgba(0, 0, 0, .6);
border-radius: 50%;
display: inline-block
}
.icon-view strong {
display: block;
width: 68px;
height: 68px;
border-radius: 50%;
text-align: center;
background-color: rgba(0, 0, 0, .6);
color: #fff
}
.icon-view .fa,
.icon-view .glyphicon {
font-size: 24px;
line-height: 68px
}
.thumbnail .media-link {
padding: 0;
display: block;
position: relative;
overflow: hidden;
text-align: center;
height: 215px
}
.thumbnail .media-link img {
width: 100%;
height: 100%;
object-fit: cover;
}
.thumbnail .media-link .icon-view {
position: absolute;
top: 50%;
left: 50%;
margin-left: -40px;
margin-top: -40px;
opacity: 0;
-webkit-animation: fadeOut .4s;
animation: fadeOut .4s
}
.caption-title a:hover .icon-view,
.thumbnail:hover .media-link .icon-view {
opacity: 1;
-webkit-animation: bounceIn .4s;
animation: bounceIn .4s
}
.thumbnail .caption,
.thumbnail .caption-category,
.thumbnail .caption-link,
.thumbnail .caption-price,
.thumbnail .caption-title,
.thumbnail .caption-wrapper,
.thumbnail .caption-zoom,
.thumbnail .icon-view,
.thumbnail .icon-view .fa,
.thumbnail .icon-view .glyphicon,
.thumbnail .media,
.thumbnail .media img,
.thumbnail .media-link:after,
.thumbnail span,
.thumbnail.hover .caption,
.thumbnail.hover .caption-category,
.thumbnail.hover .caption-link,
.thumbnail.hover .caption-price,
.thumbnail.hover .caption-title,
.thumbnail.hover .caption-wrapper,
.thumbnail.hover .caption-zoom,
.thumbnail.hover .icon-view,
.thumbnail.hover .icon-view .fa,
.thumbnail.hover .icon-view .glyphicon,
.thumbnail.hover .media,
.thumbnail.hover .media img,
.thumbnail.hover .media-link:after,
.thumbnail.hover span,
.thumbnail:hover .caption,
.thumbnail:hover .caption-category,
.thumbnail:hover .caption-link,
.thumbnail:hover .caption-price,
.thumbnail:hover .caption-title,
.thumbnail:hover .caption-wrapper,
.thumbnail:hover .caption-zoom,
.thumbnail:hover .icon-view,
.thumbnail:hover .icon-view .fa,
.thumbnail:hover .icon-view .glyphicon,
.thumbnail:hover .media,
.thumbnail:hover .media img,
.thumbnail:hover .media-link:after,
.thumbnail:hover span {
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
.thumbnail-team {
text-align: center
}
.thumbnail-team .media {
padding-left: 20px;
padding-right: 20px
}
.thumbnail-team .media img {
max-width: 200px
}
.thumbnail-team .caption-title {
text-transform: uppercase;
padding-bottom: 10px;
margin-bottom: 15px;
position: relative
}
.thumbnail-team .caption-title:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 50%;
width: 50px;
height: 1px;
margin-left: -25px;
background-color: #e9e9e9
}
.thumbnail-team .caption-title small {
display: block;
color: #7f7f7f
}
.thumbnail-team .social-icons {
display: inline-block;
margin-bottom: 10px
}
.thumbnail-team .social-icons a {
border-radius: 15px
}
.thumbnail-team .caption-text {
font-size: 15px
}
.thumbnail.thumbnail-banner .media,
.thumbnail.thumbnail-banner .media .caption,
.thumbnail.thumbnail-banner .media .media-link {
height: 100%
}
@media (max-width:991px) {
.thumbnail.thumbnail-banner {
max-width: 555px
}
}
.thumbnail.thumbnail-banner+.thumbnail.thumbnail-banner {
margin-top: 30px
}
.thumbnail.thumbnail-banner .media-link {
text-align: left
}
.thumbnail.thumbnail-banner .caption {
padding: 0
}
.thumbnail.thumbnail-banner .caption-wrapper {
padding: 15px
}
.thumbnail.thumbnail-banner .caption-inner {
border: solid 1px #fff;
padding: 15px
}
.col-md-3 .thumbnail.thumbnail-banner .caption-inner {
padding: 15px 2px
}
.thumbnail.thumbnail-banner .caption-sub-title,
.thumbnail.thumbnail-banner .caption-title {
font-size: 14px;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
margin: 0 0 1px 0;
color: #232323
}
.thumbnail.thumbnail-banner .caption-sub-title span,
.thumbnail.thumbnail-banner .caption-title span {
display: inline-block;
padding: 8px 12px;
background-color: rgba(255, 255, 255, .8)
}
.col-md-3 .thumbnail.thumbnail-banner .caption-sub-title span {
padding: 8px 7px
}
.thumbnail.thumbnail-banner .btn {
margin-top: 10px
}
.thumbnail.thumbnail-banner .btn-theme {
border-color: #232323;
background-color: #232323
}
.thumbnail.thumbnail-banner .btn-theme:hover {
background-color: #1b2d5a;
border-color: #1b2d5a
}
.thumbnail.thumbnail-banner.size-1x1 {
height: 170px
}
@media (min-width:992px) and (max-width:1999px) {
.thumbnail.thumbnail-banner.size-1x1 {
height: 190px
}
}
@media (min-width:480px) and (max-width:991px) {
.thumbnail.thumbnail-banner.size-1x1 {
max-width: 280px
}
}
@media (min-width:320px) and (max-width:479px) {
.thumbnail.thumbnail-banner.size-1x1 {
height: 190px
}
}
.thumbnail.thumbnail-banner.size-1x3 {
height: 170px
}
@media (min-width:992px) and (max-width:1999px) {
.thumbnail.thumbnail-banner.size-1x3 {
height: 190px
}
}
@media (min-width:320px) and (max-width:479px) {
.thumbnail.thumbnail-banner.size-1x3 {
height: 190px
}
}
.thumbnail.thumbnail-banner.size-2x3 {
height: 270px
}
.thumbnail.thumbnail-banner.size-3x3 {
height: 570px
}
.thumbnail.thumbnail-banner.size-1x1-b {
height: 270px
}
.thumbnail.thumbnail-banner.size-1x3-b {
height: 270px
}
.thumbnail-banner .media img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition-duration: .4s;
transition-duration: .4s;
position: relative
}
.thumbnail-banner .media-link .img-bg {
position: absolute;
height: 100%;
width: 100%;
z-index: -1;
background-image: url("");
background-position: 50% 50%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1)
}
.thumbnail-banner .media-link:hover .img-bg {
-webkit-transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2)
}
.thumbnail-banner .caption {
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
background-color: rgba(86, 135, 191, 0)
}
.thumbnail-banner.alt-font .caption-title {
font-family: Vidaloka, serif;
font-style: italic;
font-weight: 400;
font-size: 24px
}
.thumbnail-banner.alt-font .caption-title span {
padding-top: 5px;
padding-bottom: 5px;
background-color: rgba(255, 255, 255, .3)
}
.thumbnail-banner.alt-font .caption-sub-title {
font-family: Vidaloka, serif;
font-weight: 400;
font-size: 18px
}
.thumbnail-banner.alt-font .caption-sub-title span {
padding-top: 5px;
padding-bottom: 5px;
background-color: rgba(255, 255, 255, .3)
}
.thumbnail-banner.alt-font .btn-theme-sm {
font-size: 11px
}
.thumbnail-banner.alt-font.big-text .caption-title {
font-size: 48px
}
@media (max-width:640px) {
.thumbnail-banner.alt-font.big-text .caption-title {
font-size: 28px
}
}
.thumbnail-banner.alt-font.big-text .caption-sub-title {
font-size: 44px
}
@media (max-width:640px) {
.thumbnail-banner.alt-font.big-text .caption-sub-title {
font-size: 24px
}
}
.thumbnail-banner.hover .media img,
.thumbnail-banner:hover .media img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.thumbnail-banner.hover .btn-theme,
.thumbnail-banner:hover .btn-theme {
-webkit-animation: pulse .4s;
animation: pulse .4s
}
.thumbnail-banner.hover .caption,
.thumbnail-banner:hover .caption {
background-color: rgba(86, 135, 191, .3)
}
.thumbnail .rating {
display: inline-block;
font-size: 13px;
float: left
}
.thumbnail .rating span.star:before {
padding-right: 3px
}
.thumbnail .price {
font-size: 16px;
line-height: 1.3;
/*margin-bottom: 15px;*/
float: left;
font-family: robotobold;
}
.thumbnail .price del {
font-weight: 400;
font-size: 14px;
color: #232323
}
.thumbnail .price ins {
/*padding-right: 5px;*/
text-decoration: none;
color: #1b2d5a
}
.thumbnail .buttons .btn {
padding: 10px 22px;
font-size: 12px;
line-height: 18px
}
.thumbnail .buttons .btn .fa,
.thumbnail .buttons .btn .glyphicon {
font-size: 16px!important
}
.thumbnail .buttons .btn-wish-list {
margin-right: 10px
}
.thumbnail .buttons .btn-compare {
margin-left: 10px
}
.thumbnail .btn-wish-list {
opacity: 0
}
.thumbnail .btn-compare {
opacity: 0
}
.thumbnail.hover .btn-wish-list,
.thumbnail:hover .btn-wish-list {
opacity: 1
}
.thumbnail.hover .btn-compare,
.thumbnail:hover .btn-compare {
opacity: 1
}
.thumbnail.category .media-link:after {
content: '';
display: block;
z-index: 1;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0
}
.thumbnail.category .caption {
position: absolute;
z-index: 2;
width: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0
}
.thumbnail.category .caption-wrapper {
padding: 5px
}
.thumbnail.category .caption-inner {
padding: 0
}
.thumbnail.category .sale {
font-size: 36px;
font-weight: 900;
line-height: 40px;
margin-bottom: 8px;
text-transform: uppercase;
color: #fff
}
.thumbnail.category .caption-title {
font-size: 24px;
font-weight: 300;
line-height: 30px;
margin-bottom: 5px;
text-transform: uppercase;
color: #fff
}
.thumbnail.category .items {
font-size: 24px;
font-weight: 300;
line-height: 30px;
margin-bottom: 10px;
text-transform: uppercase;
font-style: italic;
color: #fff
}
.thumbnail.category .media img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition-duration: .4s;
transition-duration: .4s;
position: relative
}
.thumbnail.category span {
padding: 0 8px;
background-color: transparent
}
.thumbnail.category .btn-theme {
border-width: 1px;
border-color: #fff;
color: #fff
}
.thumbnail.category .media-link:after {
background-color: rgba(0, 0, 0, .25)
}
.thumbnail.category.hover .media img,
.thumbnail.category:hover .media img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1)
}
.thumbnail.category.hover span,
.thumbnail.category:hover span {
color: #fff;
background-color: rgba(0, 0, 0, .5)
}
.thumbnail.category.hover .btn-theme,
.thumbnail.category:hover .btn-theme {
border-color: #fff;
background-color: #fff;
color: #232323
}
.thumbnail.category.hover .media-link:after,
.thumbnail.category:hover .media-link:after {
background-color: transparent
}
.caption-details {
display: inline-block;
background: #fff;
width: 100%;
padding: 0 15px 15px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc
}
.caption-details:after {
content: '';
width: 100%;
height: 2px;
background: #1b2d5a;
position: absolute;
bottom: 5px;
right: 0;
z-index: 0;
overflow: hidden
}
.caption-details .caption-title {
padding: 15px 0;
border-bottom: 1px solid rgba(0, 0, 0, .08);
margin-left: 15px;
margin-right: 15px;
font-family: robotobold;
}
.buttonandinclude,
.rateandprice {
font-family: robotobold;
padding: 15px 0;
border-bottom: 1px solid rgba(0, 0, 0, .08);
margin-left: 15px;
margin-right: 15px
}
.buttonandinclude {
border-bottom: 0
}
.buttonandinclude .buttons {
/*display: inline-block;
vertical-align: middle;*/
display: block;
}
.buttonandinclude strong {
float: right;
padding-top: 7px;
}
.thumbnail .buttons .btn {
padding: 10px 22px;
font-size: 12px;
line-height: 18px;
width: 100%;
}
.buttonandinclude .btn-theme {
color: #fff;
border-width: 3px;
background-color: #1b2d5a;
border-color: #1b2d5a;
padding: 12px 20px;
font-size: 14px;
line-height: 1;
text-transform: uppercase;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
font-family: robotobold;
}
.buttonandinclude .btn,
.buttonandinclude .btn.active,
.buttonandinclude .btn:active,
.buttonandinclude .btn:hover {
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0
}
.buttonandinclude .btn-theme-transparent {
background-color: transparent;
border-width: 3px;
border-color: #e9e9e9;
color: #1b2d5a
}
.btn-theme-transparent:hover,
.buttonandinclude .btn-theme-transparent:active,
.buttonandinclude .btn-theme-transparent:focus {
background-color: #1b2d5a;
border-color: #1b2d5a;
color: #fff
}
.course-viewmore-sec {
text-align: center
}
.course-viewmore-sec .course-viewmore {
background: #1b2d5a;
border: 0;
padding: 17px 56px;
border-radius: 0;
color: #fff;
text-align: center
}
.course-viewmore-sec .course-viewmore:hover {
box-shadow: none;
opacity: .9
}
.fact-sec {
margin-top: 60px
}
#about-section {
background-image: url(../images/slider/slider3.png);
}
.about-section-text {
display: table-cell;
vertical-align: middle;
padding: 65px 8px;
padding-left: 140px;
float: right
}
.about-section-text h2 {
margin-top: 10px;
color: #fff;
text-align: left;
font-size: 40px;
padding: 0 0 35px;
position: relative;
font-family: robotobold;
}
.about-main-heading h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 76px
}
.about-main-heading h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 78px;
z-index: 1;
left: 60px
}
.about-section-text p {
color: #fff;
font-size: 14px
}
.about-main-heading {
padding: 0 0 35px
}
.about-main-heading p {
padding: 35px 0 0
}
.about-section-content {
text-align: left;
color: #fff;
margin-left: -15px;
padding: 0 0 55px
}
.about-section-content p {
font-size: 40px
}
.about-section-content h3 {
font-size: 20px
}
.about-section-text-o {
float: left;
margin-left: 10px
}
.about-section-right {
float: left;
padding: 0;
background: rgba(46, 78, 158, .8)
}
.about-section-i p {
margin-top: 10px;
margin-left: 95px;
color: #999
}
.about-section-text-i {
float: left;
color: #fff;
font-size: 15px;
padding: 5px;
width: 80%;
margin-left: 5px;
margin-bottom: 10px
}
.about-section-b i.fa {
margin-right: 15px;
color: #fff;
font-size: 24px;
margin-right: 35px;
padding: 4px
}
.about-section-c {
float: left;
color: #fff;
font-size: 24px;
padding: 10px;
border: 1px solid #00a5df;
width: 55px;
height: 55px;
margin-right: 31px;
margin-left: 15px
}
.about-c i.fa {
margin-right: 15px;
color: #00a5df;
font-size: 24px;
margin-right: 35px;
padding: 4px
}
.about-section-d {
float: left;
color: #fff;
font-size: 24px;
width: 55px;
height: 55px;
margin-right: 31px;
margin-left: 15px
}
.about-bus p {
margin-top: 25px;
margin-bottom: 25px
}
.about-deg {
float: left;
color: #999;
font-size: 24px;
padding: 10px;
border: 2px solid #00a5df;
width: 55px;
height: 55px;
margin-right: 31px;
transform: rotate(-45deg);
margin-left: 15px;
margin-top: 20px
}
.about-section-deg i.fa {
margin-right: 15px;
color: #999;
font-size: 20px;
margin-right: 35px;
padding: 4px;
transform: rotate(45deg)
}
.about-section-heading h3 {
font-size: 18px;
font-weight: 500;
margin-top: 10px;
color: #ccc
}
main-bane {
width: 100%
}
@media (max-width:1366px) {
.about-section-text-i {
width: 80%
}
}
.about-section-text-i {
color: #fff;
font-size: 15px;
padding: 5px;
width: 80%;
margin-left: 5px;
margin-bottom: 10px
}
.about-section-heading h3 {
font-size: 18px;
font-weight: 500;
margin-top: 10px;
color: #ccc
}
@media (max-width:1366px) {
p.para {
line-height: 25px;
font-size: 15px
}
}
p.para {
font-size: 16px;
margin: 65px 0 65px 0;
line-height: 28px;
color: #130f0f;
padding: 5px
}
.footer {
background: #103157;
position: relative;
z-index: 999;
}
.footer-column {
padding: 60px 0
}
.f-column-widget h4 {
font-size: 18px;
position: relative;
color: #fff;
display: inline-block;
padding: 0 10px 0 0;
margin: 0 0 40px
}
.f-column-widget h4:before {
content: '';
position: absolute;
left: 100%;
font-weight: 700
}
.f-column-widget>i {
position: absolute;
top: -13px;
left: -5px;
font-size: 44px;
color: rgba(171, 171, 171, .16);
z-index: 0
}
.address-widget {
color: #ababab;
font-size: 14px
}
.address-widget p {
margin: 0 0 20px;
color: #ababab
}
.address-list {
list-style-type: none
}
.address-list li {
margin: 0 0 10px
}
.address-list li i {
margin: 0 10px 0 0
}
.address-widget .social-icons {
margin: 30px 0 0
}
.f-column-widget .courses-list-link {
list-style-type: disc;
color: #ababab;
margin: 0 0 0 20px
}
.f-column-widget .courses-list-link li {
font-size: 14px;
margin: 0 0 10px
}
.newslatter p {
font-size: 14px;
color: #ababab;
padding: 0 0 10px
}
.newslatter input {
height: 30px;
line-height: 18px;
padding: 0 15px;
width: 100%;
height: 42px
}
.newslatter .form-control {
background: rgba(255, 255, 255, .1);
color: #ababab;
border: 1px solid #ababab;
border-radius: 0;
padding: 8px;
margin: 0
}
.newslatter button.newsletter-btn {
background: #00558f;
color: #fff;
text-transform: uppercase;
padding: 9px 30px;
border-radius: 0;
}
.courses-gallery ul {
margin: 0 0 0 -10px
}
.courses-gallery ul li {
float: left;
margin: 0 0 10px 10px
}
.courses-gallery ul li:hover a img {
transform: scale(1.1)
}
.courses-gallery>a {
font-size: 12px;
color: #ababab
}
.courses-gallery>a i {
margin: 0 5px 0 0
}
.sub-footer {
padding: 30px 0;
background: #002147
}
.sub-footer p {
float: left;
margin: 0;
font-size: 12px;
color: #ababab
}
.sub-footer-nav {
float: right
}
.sub-footer-nav li {
float: left
}
.sub-footer-nav li::before {
content: "|";
margin: -3px 10px;
float: left;
color: #c2c2c2
}
.sub-footer-nav li:first-child::before {
display: none
}
.sub-footer-nav li a {
float: left;
color: #c2c2c2;
font-size: 12px;
text-transform: uppercase
}
.sub-footer-nav li a:hover {
color: #fff
}
.social-icons {
overflow: hidden;
list-style-type: none
}
.social-icons li {
float: left;
margin: 0 0 0 10px
}
.social-icons li:first-child {
margin: 0
}
.social-icons li a {
height: 40px;
line-height: 40px;
text-align: center;
width: 40px;
border-radius: 100%;
border-radius: 100%;
border: 1px solid rgba(255, 255, 255, .2);
color: rgba(255, 255, 255, .2);
text-decoration: none
}
.social-icons li a:hover {
color:#fff;
}
.social-icons li a.fa-facebook:hover{
background: #3b5998;
border-color: #3b5998;
}
.social-icons li a.fa-twitter:hover{
background: #00aced;
border-color: #00aced;
}
.social-icons li a.fa-instagram:hover{
background: #bc2a8d;
border-color: #bc2a8d;
}
.social-icons li a.fa-google-plus:hover{
background: #dd4b39;
border-color: #dd4b39;
}
.social-icons li a.fa-dribbble:hover{
background: #ea4c89;
border-color: #ea4c89;
}
.tc-padding-top {
padding-top: 120px
}
.tc-padding-bottom {
padding-bottom: 120px
}
.tc-padding {
padding: 80px 0;
background: #f0f0f0
}
.osafety-contact-form h2 {
padding: 0 0 35px;
position: relative
}
.osafety-contact-form h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 59px
}
.osafety-contact-form h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 61px;
z-index: 1;
left: 49px
}
.osafety-contact-form hr {
background: #ababab;
width: 107px;
position: absolute;
left: 11.7%;
height: 1px;
border: none
}
.osafety-contact-form hr:after {
content: '';
background: #ababab;
width: 36px;
height: 6px;
position: absolute;
top: -3px;
z-index: 1;
left: -53px
}
.osafety-contact-form p {
padding: 35px 0 0
}
#contact-form .btn {
margin: 80px 0 0;
}
#contact-form .btn:hover {
color: #252525;
border-color: #252525
}
#contact-form label {
color: #7f7f7f;
display: block;
font-weight: 400;
margin: 0;
}
#contact-form textarea {
border-radius: 0!important;
resize: none;
position: relative;
top: 5px;
}
#contact-form .form-control,
#contact-form input,
#contact-form input[type=color],
#contact-form input[type=date],
#contact-form input[type=datetime-local],
#contact-form input[type=datetime],
#contact-form input[type=email],
#contact-form input[type=month],
#contact-form input[type=number],
#contact-form input[type=password],
#contact-form input[type=search],
#contact-form input[type=tel],
#contact-form input[type=text],
#contact-form input[type=time],
#contact-form input[type=url],
#contact-form input[type=week],
#contact-form textarea {
border: 0;
height: 50px;
width: 100%;
border-radius: 0;
color: #252525;
font-weight: 400;
background: 0 0;
padding: 10px 0 0;
font-size: 16px;
line-height: 1.9;
box-shadow: none;
-webkit-transition: all .28s ease;
transition: all .28s ease;
margin: 0;
}
#contact-form .checkbox input[type="checkbox"]{
height: auto !important;
margin-left: 0 !important;
}
#contact-form .user-login-checkbox label{
padding-left: 0;
}
#contact-form .form-group {
position: relative;
margin: 0 0 30px
}
#contact-form .form-group .control-label {
position: absolute;
top: 10px;
pointer-events: none;
font-size: 16px;
-webkit-transition: all .28s ease;
transition: all .28s ease
}
#contact-form .form-group .bar {
position: relative;
border-bottom: 1px solid #ccc;
display: block
}
#contact-form .form-group .bar::before {
content: '';
height: 2px;
width: 0;
left: 50%;
bottom: -1px;
position: absolute;
z-index: 2;
-webkit-transition: left .28s ease, width .28s ease;
transition: left .28s ease, width .28s ease
}
#contact-form select {
border-bottom: 1px solid #ccc!important
}
#contact-form select:focus {
box-shadow: none!important
}
#contact-form .form-group input:focus,
#contact-form .form-group select:focus,
#contact-form .form-group textarea:focus {
outline: 0
}
#contact-form .form-group input[type=file] {
line-height: 1
}
#contact-form .form-group input[type=file]~.bar {
display: none
}
#contact-form .form-group input.form-file,
#contact-form .form-group input.has-value,
#contact-form .form-group input:focus,
#contact-form .form-group input::invalid:not(:focus):not(:required),
#contact-form .form-group select,
#contact-form .form-group textarea.form-file,
#contact-form .form-group textarea.has-value,
#contact-form .form-group textarea:focus,
#contact-form .form-group textarea:optional {
color: #333
}
#contact-form .form-group input.form-file~.control-label,
#contact-form .form-group input.has-value~.control-label,
#contact-form .form-group input:focus~.control-label,
#contact-form .form-group input::invalid:not(:focus):not(:required)~.control-label,
#contact-form .form-group select~.control-label,
#contact-form .form-group textarea.form-file~.control-label,
#contact-form .form-group textarea.has-value~.control-label,
#contact-form .form-group textarea:focus~.control-label,
#contact-form .form-group textarea::invalid:not(:focus):not(:required)~.control-label {
top: -1rem;
left: 0
}
#contact-form .form-group input:focus,
#contact-form .form-group select:focus,
#contact-form .form-group textarea:focus {
outline: 0
}
#contact-form .form-group input:focus~.bar::before,
#contact-form .form-group select:focus~.bar::before,
#contact-form .form-group textarea:focus~.bar::before {
width: 100%;
left: 0
}
#contact-form .btn {
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
border-radius: 3px;
text-transform: uppercase;
position: relative;
overflow: hidden
}
#contact-form .btn.full-width {
width: 100%
}
#contact-form .btn i {
margin: 0 0 0 10px
}
#contact-form .btn.blue {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0
}
#contact-form .btn.blue:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
color: #fff!important;
opacity: .9
}
#contact-form .btn.blank {
background: 0 0;
color: #fff;
border: 1px solid #fff
}
#contact-form .btn.blank:hover {
color: #fff
}
#contact-form .btn.blank.dark {
border-color: #252525;
color: #252525
}
#contact-form .btn.blank.dark:hover {
color: #fff
}
#contact-form .btn.sm {
height: 40px;
line-height: 40px;
padding: 0 20px;
min-width: 100px
}
#contact-form .circle-btn {
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 100%;
font-size: 20px;
color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}
#contact-form .circle-btn:hover {
color: #fff
}
#contact-form .btn.white {
background: #fff
}
#contact-form .ripple {
position: absolute;
background: rgba(0, 0, 0, .25);
border-radius: 100%;
transform: scale(.2);
opacity: 0;
pointer-events: none;
-webkit-animation: ripple .75s ease-out;
-moz-animation: ripple .75s ease-out;
animation: ripple .75s ease-out
}
.os-global-form .btn {
margin: 80px 0 0
}
.os-global-form .btn:hover {
color: #252525;
border-color: #252525
}
.os-global-form label {
color: #7f7f7f;
display: block;
font-weight: 400;
margin: 0
}
.os-global-form textarea {
border-radius: 0!important;
resize: none;
position: relative;
top: 5px;
}
.os-global-form .form-control,
.os-global-form input,
.os-global-form input[type=color],
.os-global-form input[type=date],
.os-global-form input[type=datetime-local],
.os-global-form input[type=datetime],
.os-global-form input[type=email],
.os-global-form input[type=month],
.os-global-form input[type=number],
.os-global-form input[type=password],
.os-global-form input[type=search],
.os-global-form input[type=tel],
.os-global-form input[type=text],
.os-global-form input[type=time],
.os-global-form input[type=url],
.os-global-form input[type=week],
.os-global-form textarea {
border: 0;
height: 50px;
width: 100%;
border-radius: 0;
color: #252525;
font-weight: 400;
background: 0 0;
padding: 10px 0;
font-size: 16px;
line-height: 1.9;
box-shadow: none;
-webkit-transition: all .28s ease;
transition: all .28s ease;
margin: 0;
}
.os-global-form .checkbox input[type="checkbox"]{
height: auto !important;
margin-left: 0 !important;
}
.os-global-form .user-login-checkbox label{
padding-left: 0;
}
.os-global-form .form-group {
position: relative;
margin: 0 0 30px
}
.os-global-form .form-group .control-label {
position: absolute;
top: 10px;
pointer-events: none;
font-size: 16px;
-webkit-transition: all .28s ease;
transition: all .28s ease
}
.os-global-form .form-group .bar {
position: relative;
border-bottom: 1px solid #ccc;
display: block
}
.os-global-form .form-group .bar::before {
content: '';
height: 2px;
width: 0;
left: 50%;
bottom: -1px;
position: absolute;
z-index: 2;
-webkit-transition: left .28s ease, width .28s ease;
transition: left .28s ease, width .28s ease
}
.os-global-form select {
border-bottom: 1px solid #ccc!important
}
.os-global-form select:focus {
box-shadow: none!important
}
.os-global-form .form-group input:focus,
.os-global-form .form-group select:focus,
.os-global-form .form-group textarea:focus {
outline: 0
}
.os-global-form .form-group input[type=file] {
line-height: 1
}
.os-global-form .form-group input[type=file]~.bar {
display: none
}
.os-global-form .form-group input.form-file,
.os-global-form .form-group input.has-value,
.os-global-form .form-group input:focus,
.os-global-form .form-group input::invalid:not(:focus):not(:required),
.os-global-form .form-group select,
.os-global-form .form-group textarea.form-file,
.os-global-form .form-group textarea.has-value,
.os-global-form .form-group textarea:focus,
.os-global-form .form-group textarea::invalid:not(:focus):not(:required) {
color: #333
}
.os-global-form .form-group input.form-file~.control-label,
.os-global-form .form-group input.has-value~.control-label,
.os-global-form .form-group input:focus~.control-label,
.os-global-form .form-group input::invalid:not(:focus):not(:required)~.control-label,
.os-global-form .form-group select~.control-label,
.os-global-form .form-group textarea.form-file~.control-label,
.os-global-form .form-group textarea.has-value~.control-label,
.os-global-form .form-group textarea:focus~.control-label,
.os-global-form .form-group textarea::invalid:not(:focus):not(:required)~.control-label {
top: -1rem;
left: 0
}
.os-global-form .form-group input:focus,
.os-global-form .form-group select:focus,
.os-global-form .form-group textarea:focus {
outline: 0
}
.os-global-form .form-group input:focus~.bar::before,
.os-global-form .form-group select:focus~.bar::before,
.os-global-form .form-group textarea:focus~.bar::before {
width: 100%;
left: 0
}
.os-global-form .btn {
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
border-radius: 3px;
text-transform: uppercase;
position: relative;
overflow: hidden
}
.os-global-form .btn.full-width {
width: 100%
}
.os-global-form .btn i {
margin: 0 0 0 10px
}
.os-global-form .btn.blue {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0
}
.os-global-form .btn.blue:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
color: .fff!important;
opacity: .9
}
.os-global-form .btn.blank {
background: 0 0;
color: #fff;
border: 1px solid #fff
}
.os-global-form .btn.blank:hover {
color: #fff
}
.os-global-form .btn.blank.dark {
border-color: #252525;
color: #252525
}
.os-global-form .btn.blank.dark:hover {
color: #fff
}
.os-global-form .btn.sm {
height: 40px;
line-height: 40px;
padding: 0 20px;
min-width: 100px
}
.os-global-form .circle-btn {
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 100%;
font-size: 20px;
color: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}
.os-global-form .circle-btn:hover {
color: #fff
}
.os-global-form .btn.white {
background: #fff
}
.os-global-form label.error,
#contact-form label.error{
color: #d43b3b !important;
position: absolute;
bottom: -21px;
}
.os-global-form input.error,
#contact-form input.error,
.os-global-form textarea.error,
#contact-form textarea.error,
.os-global-form .form-group .bar.error,
#contact-form .form-group .bar.error{
border-bottom: 1px solid #d43b3b !important;
}
.os-global-form .ripple {
position: absolute;
background: rgba(0, 0, 0, .25);
border-radius: 100%;
transform: scale(.2);
opacity: 0;
pointer-events: none;
-webkit-animation: ripple .75s ease-out;
-moz-animation: ripple .75s ease-out;
animation: ripple .75s ease-out
}
@-webkit-keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
@-moz-keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
@keyframes ripple {
from {
opacity: 1
}
to {
transform: scale(2);
opacity: 0
}
}
.form-banner {
padding: 160px 0
}
.learning-online-form h2 {
font-size: 60px;
margin: 0 0 20px;
text-transform: capitalize;
font-weight: 300;
color: #fff
}
.learning-online-form p {
color: #fff;
font-size: 20px;
font-weight: 300;
margin: 0 0 30px
}
.learning-online-form form .form-group .control-label {
color: #fff
}
.learning-online-form form .btn {
background: #fff;
margin: 60px 0 0
}
.learning-online-form form input {
color: #fff!important
}
.learning-online-form form .bar::before {
background: #fff!important
}
.main-nav .navbar-fixed-top {
margin: 0 auto;
width: 1140px
}
.slider .top-banner {
/*background: url(../images/slider/slider3.png) no-repeat 0 -78px;*/
/*padding: 125px 0 70px;*/
padding: 87px 0 38px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-position-x: 0;
background-position-y: -78px;
}
/*.height {
height: 229px;
}*/
.slider .top-banner .inner-wrapper {
padding: 8px 35px;
display: inline-block;
vertical-align: middle
}
.slider .top-banner .inner-wrapper .breadcrumb {
padding: 8px 0;
background-color: transparent;
color: #fff;
font-size: 17px;
text-transform: uppercase;
margin-bottom: 2px
}
.slider .top-banner .inner-wrapper h2 {
font-size: 41px;
color: #fff;
text-transform: uppercase;
font-family: robotobold;
}
.courses-main {
background: #f0f0f0
}
.main-courses-section nav#PageNavigation {
text-align: center;
}
.course-listing-tab {
margin-top: 80px
}
.course-listing-tab .course-heading hr:after {
border-left: 5px solid #e2e3df;
border-right: 5px solid #e2e3df
}
.right-sidebar {
margin-top: 8px
}
.course_products h2,
.courses-search-button h2,
.popular_courses h2,
.right-sidebar h2 {
color: #1b2d5a;
font-size: 18px;
font-weight: 700;
margin: 0 auto 30px;
text-align: center;
position: relative;
z-index: 3
}
button.btn.btn-link.filter-button {
color: #5a5a5a;
text-decoration: none;
font-weight: 700;
font-size: 18px;
padding: 6px 2px
}
button.btn.btn-link.filter-button.active {
color: #1b2d5a
}
.courses-selection-tab {
margin-bottom: 21px;
text-align: center
}
.courses-selection-tab hr {
height: 2px;
background: rgba(171, 171, 171, .3);
border: 0;
position: absolute;
top: 24px;
width: 93.2%;
left: 30px
}
.courses-selection-tab .tab-wrapper {
display: inline-block;
vertical-align: middle;
background: #f0f0f0;
position: relative;
z-index: 1;
font-size: 20px;
font-weight: 700;
padding: 0 20px
}
.courses-search-field {
margin: 0 0 30px
}
.courses-search-field input:active,
.courses-search-field input:focus,
.courses-search-field input:hover,
.courses-search-field input:visited {
box-shadow: none;
border: 2px solid #c2c2c2;
border-right: 0
}
.courses-search-btn {
border-radius: 0;
height: 45px;
border-width: 2px;
border-left: 0;
border-color: #c2c2c2;
background: 0 0
}
.courses-search-field input {
background: 0 0;
border: 2px solid #c2c2c2;
border-radius: 0;
height: 45px;
box-shadow: none;
border-right: 0;
padding: 4px 19px
}
.courses-search-btn i {
font-size: 17px
}
button.courses-search-btn:focus,
button.courses-search-btn:hover,
button.courses-search-btn:visited {
background: 0 0!important;
box-shadow: none!important;
border: 2px solid #c2c2c2!important;
color: #1b2d5a!important;
border-left: 0!important
}
.right-sidebar h2:before {
content: " ";
position: absolute;
background: #f0f0f0;
bottom: -6px;
width: 148px;
height: 30px;
z-index: -1;
left: 46%;
margin-left: -65px
}
.right-sidebar h2:after,
h2.title:after {
content: " ";
position: absolute;
border: 1px solid rgba(171, 171, 171, .3);
bottom: 8px;
left: 0;
width: 100%;
height: 0;
z-index: -2
}
.filter .thumbnail .media-link {
height: 166px
}
.courses-category {
border: 1px solid rgba(171, 171, 171, .3);
margin-bottom: 35px;
padding-bottom: 20px;
padding-top: 15px
}
.courses-category .panel {
background-color: #f0f0f0;
border: 0;
border-radius: 0;
box-shadow: none;
margin-bottom: 0
}
.courses-category .panel-default .panel-heading {
background-color: #f0f0f0;
border: 0 none;
color: #fff;
padding: 5px 20px
}
.panel-body {
padding: 15px 30px
}
.panel-body li {
padding: 5px 0;
border-bottom: solid 1px #ddd;
transition: all 0.5s ease;
}
.panel-boyd li:hover{
transform: translateX(3px);
}
.panel-body li:last-child {
border: none;
}
.panel-body li:before {
content: '\f105 ';
margin-right: -5px;
position: relative;
left: -13px;
font-family: 'fontAwesome';
}
.panel-body ul li a:hover {
color: #1b2d5a
}
.courses-category .panel-default .panel-heading .panel-title a {
color: #333;
font-size: 13px;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
display: block;
}
.courses-category .badge {
background: 0 0!important;
border-radius: 10px;
color: #333!important;
display: inline-block;
font-size: 12px;
font-weight: 700;
line-height: 1;
min-width: 10px;
padding: 3px 7px;
text-align: center;
vertical-align: baseline;
white-space: nowrap
}
.course_products .course-name {
padding: 15px 20px 20px;
border: 1px solid rgba(171, 171, 171, .3);
margin-bottom: 35px
}
.control-group {
display: inline-block;
vertical-align: top;
background: #fff;
text-align: left;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
padding: 30px;
width: 200px;
height: 210px;
margin: 10px
}
.control {
display: block;
position: relative;
padding-left: 0;
margin-bottom: 8px;
cursor: pointer;
font-size: 14px;
text-transform: uppercase;
color: #333;
font-weight: 700
}
.control input {
position: absolute;
z-index: -1;
opacity: 0
}
.control__indicator {
position: absolute;
top: 2px;
right: 0;
height: 17px;
width: 17px;
background: #e6e6e6;
border: 1px solid #333
}
.control--radio .control__indicator {
border-radius: 50%
}
.control input:focus~.control__indicator,
.control:hover input~.control__indicator {
background: #ccc;
border: 1px solid #333
}
.control input:checked~.control__indicator {
background: #333
}
.control input:checked:focus~.control__indicator,
.control:hover input:not([disabled]):checked~.control__indicator {
background: #0c1427
}
.control__indicator:after {
content: '';
position: absolute;
display: none
}
.control input:checked~.control__indicator:after {
display: block
}
.control--checkbox .control__indicator:after {
left: 5px;
top: 0;
width: 7px;
height: 12px;
border: solid #fff;
border-width: 0 3px 3px 0;
transform: rotate(45deg)
}
.btn-filter {
background: 0 0;
border: 2px solid rgba(171, 171, 171, .5);
color: #1b2d5a;
border-radius: 0;
margin: 12px 0;
width: 100%
}
.popular-courses .media {
clear: both
}
.popular-courses .media-link {
padding: 0;
margin-right: 20px;
display: block;
position: relative;
overflow: hidden;
text-align: center;
width: 50px;
overflow: hidden;
border: 2px solid rgba(27, 45, 90, 0.4);
height: 50px;
}
.popular-courses .media-link:hover .fa {
bottom: 50%;
opacity: 1
}
.popular-courses .media-link:hover:after {
background-color: rgba(86, 135, 191, .7)
}
.popular-courses .media-link .fa {
position: absolute;
bottom: 50%;
left: 50%;
font-size: 18px;
width: 30px;
height: 30px;
line-height: 30px;
margin-left: -15px;
margin-bottom: -15px;
color: #fff;
z-index: 11;
opacity: 0;
text-align: center
}
.popular-courses .media-link:after {
background-color: rgba(86, 135, 191, 0)
}
.popular-courses .media-link:after {
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(86, 135, 191, 0);
z-index: 10
}
.popular-courses .media-body {
min-height: 80px
}
.popular-courses .media-heading {
font-size: 14px;
font-weight: 700;
color: #1b2d5a;
padding: 2px 0;
margin-top: 0;
margin-left: 0;
margin-bottom: 0;
}
.popular-courses .media-heading a {
color: #1b2d5a
}
.popular-courses .rating {
font-size: 14px
}
.rating span.star {
font-family: FontAwesome;
font-weight: 400;
font-style: normal;
display: inline-block
}
.popular-courses .enrollment {
font-size: 14px;
font-weight: 700;
line-height: 1.3;
color: #333
}
.popular-courses .enrollment ins {
color: #1b2d5a;
text-decoration: none
}
.filter-button {
background: 0 0;
border: 0;
box-shadow: none;
font-size: 18px
}
.filter-button.active,
.filter-button:focus,
.filter-button:hover {
font-weight: 700;
box-shadow: none;
background: 0 0
}
.global-pagination ul.pagination,
.main-courses-section ul.pagination {
margin: 0
}
.global-pagination .pagination>li,
.main-courses-section .pagination>li {
display: inline-block;
vertical-align: middle;
margin: 0 2px
}
.global-pagination .pagination>li>a,
.main-courses-section .pagination>li>a {
border-radius: 0!important;
padding: 7px 16px;
border: 2px solid #1b2d5a;
background: #f0f0f0;
color: #1b2d5a;
margin: 0;
font-size: 16px
}
.global-pagination .pagination>li.active>a,
.main-courses-section .pagination>li.active>a{
background: #1b2d5a;
color: #f0f0f0;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 16px
}
.globalpagination .pagination a i,
.main-courses-section.pagination a i {
font-size: 20px;
color: #1b2d5a
}
.top-rated-courses .courses-selection-tab {
margin-bottom: 22px;
text-align: center
}
.top-rated-courses .courses-selection-tab h2 {
color: #1b2d5a;
font-size: 18px;
font-weight: 700;
margin: 8px 0;
text-align: center;
position: relative;
z-index: 3
}
.top-rated-courses .caption-details .caption-title{
padding: 0 0 10px;
}
#top-rated-owl .item {
background: 0 0;
padding: 10px 0;
margin: 10px 15px
}
/*#top-rated-owl .rateandprice{
padding: 7px 0 !important;
}*/
#top-rated-owl .rateandprice .price{
font-size: 13px;
}
.owl-controls .owl-pagination {
display: none
}
.related-courses .thumbnail .buttons .btn{
width: 100%;
margin: 0 0 15px;
}
.related-courses .buttonandinclude strong{
padding: 0;
}
.related-courses .thumbnail .media-link{
height: 140px;
}
.customNavigation {
text-align: center
}
/*.customNavigation a {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
border: 2px solid #c2c2c2;
border-radius: 0;
padding: 8px 15px;
color: #c2c2c2;
background: 0 0;
position: absolute;
top: 38%
}*/
.customNavigation a {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
border: 2px solid #1b2d5a;
border-radius: 0;
padding: 5px 14px;
color: #1b2d5a;
background: 0 0;
position: absolute;
top: -5%;
background: rgba(255, 255, 255, 0.8);
}
.customNavigation a.prev {
right: 8.2%
}
.customNavigation a.next {
right: 3.2%
}
.customNavigation a:hover {
color: #1b2d5a;
border-color: #1b2d5a
}
.global-pagination .pagination>li>a.active,
.global-pagination .pagination>li>a:focus,
.global-pagination .pagination>li>a:hover,
.main-courses-section .pagination>li>a.active,
.main-courses-section .pagination>li>a:focus,
.main-courses-section .pagination>li>a:hover {
border-radius: 0!important;
border: 2px solid #1b2d5a;
background: #1b2d5a;
color: #fff
}
.top-rated-courses.owl-controls.clickable {
display: none
}
.main-courses-section {
margin-bottom: 50px
}
.slider .course-details-top-banner {
padding: 87px 0 38px
}
.course-details-thumbnail {
float: left;
position: relative;
}
.course-details-thumbnail:before {
content: "";
position: absolute;
border-top: 4px solid #f0f0f0;
border-left: 4px solid #f0f0f0;
top: 0;
left: 0;
width: 50px;
height: 50px;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.course-details-thumbnail:after {
content: "";
position: absolute;
border-bottom: 4px solid #f0f0f0;
border-right: 4px solid #f0f0f0;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.slider .top-banner .inner-wrapper:hover .course-details-thumbnail:before {
top: 7px;
left: 7px;
}
.slider .top-banner .inner-wrapper:hover .course-details-thumbnail:after {
bottom: 7px;
right: 7px;
}
.course-details-thumbnail img {
max-width: 237px;
padding: 12px;
}
.course-details-top-banner .course-details-content {
float: left;
margin: 33px 20px
}
.course-details-content h2.course-details-heading {
font-size: 25px!important
}
.course-details-content .course-details-enrollment {
font-size: 20px;
font-weight: 700;
color: #fff;
text-transform: uppercase
}
.course-details-content-heading h1 {
text-transform: uppercase;
font-size: 26px;
color: #1b2d5a;
font-weight: 700;
padding: 0 0 35px
}
.course-details-content-heading h1:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.course-details-content-heading h1:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.course-details-content-heading p {
padding: 48px 0;
color: #333;
font-size: 14px
}
.course-details-purchase {
background: #fff;
border: 1px solid #e1e1e1;
padding: 25px 18px 20px;
font-size: 17px;
margin: 113px 0 30px
}
.course-details-purchase p {
padding: 0 0 10px;
color: #1b2d5a
}
.course-details-purchase p i.fa.fa-clock-o {
padding: 0 8px 0 0
}
.course-details-purchase p i.fa.fa-users {
padding: 0 5px 0 0
}
.course-details-purchase p span {
float: right
}
.course-details-purchase .buttons {
padding: 10px 0 6px
}
.course-details-purchase .buttons a {
/*background-color: transparent;
border-width: 3px;
border-color: #e9e9e9;
color: #1b2d5a;*/
width: 100%;
border-radius: 0;
text-transform: uppercase;
background-color: #1b2d5a;
border-color: #1b2d5a;
color: #fff;
box-shadow: none;
padding: 9px;
}
.course-details-purchase .buttons a:active,
.course-details-purchase .buttons a:focus,
.course-details-purchase .buttons a:hover {
opacity: 0.9;
color: #fff;
box-shadow: none
}
.row.course-details-tabs.courses-row {
background: #fff;
padding: 25px 0
}
.course-tab-head:before {
position: absolute;
content: '';
background: #1b2d5a;
height: 1px;
width: 100%;
top: 5px;
left: 100%
}
.course-details-tab-content {
padding: 0
}
.course-details-tab-content .tabs-common-btn{
padding: 0 26px;
}
ul#nav-tabs li a i {
padding: 0 0 13px;
font-size: 26px;
color: #c2c2c2
}
ul#nav-tabs li.active a i {
color: #1b2d5a
}
.nav.nav-justified>li>a {
position: relative
}
.nav.nav-justified>li>a:focus,
.nav.nav-justified>li>a:hover {
background-color: transparent
}
.nav.nav-justified>li>a>.quote {
opacity: 1;
width: 9px;
height: 9px;
background-color: #c2c2c2;
border-radius: 50%;
color: #1b2d5a;
text-align: center;
display: block;
margin: 0 auto 13px
}
.nav.nav-justified>li.active>a>.quote {
background: #1b2d5a
}
.nav.nav-justified>li>a>p,
ul#nav-tabs>li>a>i {
max-width: 100%;
-webkit-transform: scale(.9, .9);
transform: scale(.9, .9);
-webkit-transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
color: #c2c2c2
}
.nav.nav-justified>li.active>a>p,
.nav.nav-justified>li:focus>a>p,
.nav.nav-justified>li:hover>a>p,
ul#nav-tabs>li>a:hover>i {
-webkit-transform: none;
transform: none;
-webkit-transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
transition: all .3s 0s cubic-bezier(.175, .885, .32, 1.275);
color: #1b2d5a
}
.tab-pane .tab-inner {
padding: 30px 0 20px
}
@media (min-width:768px) {
.nav.nav-justified>li>a>.quote {
left: 70px;
top: 48px;
bottom: 0
}
}
.course-details-tab-content a {
color: #1b2d5a
}
.course-details-tab-content a:hover {
color: #0c1427
}
ul#nav-tabs:before {
background: #1b2d5a;
content: '';
position: absolute;
width: 100%;
height: 1px;
top: 53px;
z-index: 0;
left: 0
}
.tab-inner .row {
/*display: flex;*/
margin-bottom: 70px
}
.tab-inner .row:last-child {
margin-bottom: 0
}
.tab-inner-bg {
background: #f7f7f7 none repeat scroll 0 0;
cursor: default;
/*height: 290px;*/
height: 313px;
margin: 0 0 80px;
}
.course-details-tab-inner-content {
padding: 0 15px;
margin: 16px 0 0;
}
.course-module-content {
text-align: center;
padding: 10px;
}
.course-module-content .module-heading {
position: relative
}
.course-module-content .module-heading h3 {
text-transform: uppercase;
color: #222;
padding: 56px 0 20px;
border-bottom: 1px solid #c2c2c2;
font-size: 12px;
font-weight: 700;
line-height: 18px
}
.course-module-content .module-content{
max-height: 175px;
overflow-y: auto;
overflow-x: hidden;
}
.course-module-content .module-content p {
color: #777;
font-size: 14px;
padding: 20px 15px 10px;
}
.course-module-content .module-heading span {
background: #f7f7f7 none repeat scroll 0 0;
border: 3px solid #1b2d5a;
border-radius: 50%;
color: #222;
display: block;
font-weight: 700;
height: 84px;
left: 0;
margin: auto;
padding: 28px 0;
position: absolute;
right: 0;
top: -52px;
width: 84px;
z-index: 99999;
}
.tab-inner-bg:hover .course-module-content .module-heading span {
background: #fff
}
.course-module-wrapper,
.course-attendable-wrapper,
.course-certification-wrapper,
.course-objectives-wrapper,
.course-prerequisites-wrapper{
margin-bottom: 0!important;
padding: 0 0 30px!important;
}
.course-objectives-module p,
.course-attendable-content p,
.course-certification-content p,
.course-objectives-content p,
.course-prerequisites-content p{
margin: 0 0 15px;
}
.course-objectives-module ul,
.course-attendable-content ul,
.course-certification-content ul,
.course-objectives-content ul,
.course-prerequisites-content ul {
padding: 0 30px
}
.course-objectives-module ul li,
.course-attendable-content ul li,
.course-certification-content ul li,
.course-objectives-content ul li,
.course-prerequisites-content ul li {
margin: 0 0 20px;
padding: 0 0 0 30px;
color: #222;
position: relative
}
.course-objectives-module ul li:before,
.course-attendable-content ul li:before,
.course-certification-content ul li:before,
.course-objectives-content ul li:before,
.course-prerequisites-content ul li:before {
position: absolute;
content: '';
width: 13px;
height: 13px;
background: #fff;
top: 0;
margin: 4px 0;
border-radius: 50%;
border: 2px solid #1b2d5a;
left: 0
}
.course-objectives-module ul li:after,
.course-attendable-content ul li:after,
.course-certification-content ul li:after,
.course-objectives-content ul li:after,
.course-prerequisites-content ul li:after {
position: absolute;
width: 15px;
height: 3px;
background: #fff;
top: 0;
left: 0;
content: '';
margin: 9px 0 0
}
.tabs-course-booking-btn {
display: inline-block;
vertical-align: middle;
float: left;
}
.tabs-course-booking-btn a {
padding: 10px 70px;
border-radius: 0;
background: #1b2d5a;
color: #fff;
border: 0;
text-transform: uppercase
}
.tabs-course-booking-btn a:focus,
.tabs-course-booking-btn a:hover {
/*background: #ccc;
color: #1b2d5a*/
opacity: 0.9;
color: #fff;
}
.course-select-date {
margin: 80px 0 0
}
.course-select-date>.course-booking-content {
margin: 30px 0 0
}
.course-booking-content {
margin-bottom: 60px
}
.course-select-title>h2 {
text-transform: uppercase;
font-size: 22px;
color: #1b2d5a;
font-weight: 700;
padding: 0 0 80px;
position: relative;
}
.course-select-title>h2:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.course-select-title>h2:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.other-available-date > h2 {
text-transform: uppercase !important;
font-size: 22px !important;
color: #1b2d5a !important;
padding: 0 0 35px !important;
text-align: center !important;
font-family: 700;
}
.course-unavailable .icon-sec {
float: left;
vertical-align: middle;
display: inline-block;
padding: 8px 15px 0 0;
}
.course-unavailable .icon-sec i {
font-size: 26px;
color: #e44225;
}
.course-unavailable .unavailable-content {
text-align: left;
}
/*.other-available-date hr {
background: #ababab;
width: 180px;
position: absolute;
left: 42.3%;
height: 1px;
border: none
}
.other-available-date hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0
}*/
.course-seat-number {
position: relative
}
.course-seat-number select {
border: 0;
border-radius: 0;
font-size: 16px;
color: #555;
height: 42px;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none
}
.course-seat-number select:focus {
outline: 0;
box-shadow: none;
border: solid 1px #c2c2c2
}
.course-seat-number .course-select-side {
width: 40px;
position: absolute;
top: 0;
background-color: #fff;
height: 100%;
right: 0;
border-radius: 0;
border-right: 0;
border-top: 0;
border-bottom: 0;
pointer-events: none
}
.course-seat-number .course-select-side:before {
border-left: solid 1px #c2c2c2;
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 1px
}
.course-seat-number .course-select-side i {
left: 26%;
top: 4px;
font-size: 31px;
position: absolute;
color: #2e4e9e
}
.course-select-button button {
margin: 29px 0 0;
background: #1b2d5a;
border-radius: 0;
height: 42px;
border: 1px solid #c2c2c2;
color: #fff;
text-transform: uppercase;
font-size: 16px
}
.course-select-button button:hover {
opacity: .9
}
.course-select-button button:active,
.course-select-button button:focus,
.course-select-button button:visited {
box-shadow: none
}
.course-select-content {
padding: 0;
color: #333;
border: 1px solid #1b2d5a
}
.course-select-content h2 {
padding: 8px 26px;
background: #1b2d5a;
color: #fff;
/*margin: 0 0 15px;*/
margin: 0 0 23px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.date-plus-seats{
margin: 0 0 10px;
}
.date-plus-seats,
.seat-number-section{
padding-left: 26px;
padding-right: 26px;
}
.date-plus-seats .event-date .date-and-time {
display: inline-block;
vertical-align: middle
}
.date-plus-seats p {
padding: 0 0 5px;
font-size: 15px
}
.date-plus-seats .event-date .date-and-time p,
.duration .date-and-time p {
float: left;
padding: 0 18px 8px 0;
font-size: 13px;
}
.date-plus-seats .event-date p i,
.duration .date-and-time p {
padding: 0 10px 0 0
}
.available-seats p i {
padding: 0 9px 0 0
}
.date-plus-seats .available-seats {
padding: 0 0 5px
}
.seat-number-section .form-group.course-seat-field label {
font-size: 16px;
font-weight: 700;
text-transform: uppercase
}
.available-course-content {
padding: 40px 0 0;
margin: 0 0 80px
}
.available-course-content .available-course-content-col {
margin-bottom: 20px
}
.available-course-date {
display: flex;
background: #fff
}
.available-course-date .date-head {
display: inline-block;
background: #fff;
padding: 18.2px 2px;
font-size: 15px;
font-weight: 700;
float: left;
width: 17.5%;
text-align: center;
color: #1b2d5a;
height: 80px;
}
.available-course-date .date-head span{
display: block;
}
.available-course-date-content {
display: inline-block;
padding: 15px 20px;
background: rgba(27, 45, 90, .8);
width: 82.5%;
float: left;
color: #fff
}
.available-course-date-content h2 {
padding: 0 0 10px;
text-align: left;
color: #fff;
font-size: 16px;
}
.available-course-date-content a:hover {
color: #ababab
}
.event-date p a:hover {
color: #1b2d5a!important
}
.main-calendar-content inline-list {
margin: 0
}
.datepicker-inline .datepicker {
width: 100%;
border-radius: 0;
height: 349px
}
.datepicker--cell {
height: 45px!important
}
.datepicker--nav {
background: #1b2d5a
}
.datepicker--day-name {
color: #1b2d5a!important
}
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
color: #fff!important;
background: #1b2d5a!important
}
.datepicker--cell.-current- {
color: #275fec!important
}
.datepicker--nav-action:hover,
.datepicker--nav-title:hover {
background: rgba(225, 225, 225, .5)!important
}
.datepicker--nav-title,
.datepicker--nav-title i {
color: #fff!important
}
.dp-note {
position: absolute;
width: 5px;
height: 5px;
right: 9px;
bottom: 7px;
border-radius: 50%;
border: 1px solid #000;
background: #1b2d5a
}
.scrollToTop {
width: 43px;
height: 43px;
padding: 0 5px;
text-align: center;
background: #0c1427;
color: #ccc;
text-decoration: none;
position: fixed;
bottom: 80px;
right: 24px;
font-size: 18px;
border-radius: 50%;
line-height: 39px;
z-index: 99999;
display: none
}
.global-heading {
text-align: center;
color: #1b2d5a
}
.global-heading > h2 {
font-size: 34px;
padding: 0 0 30px;
font-family: robotobold;
}
.global-heading hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
border: none;
margin: 0 auto 30px
}
.global-heading hr::after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0;
}
.global-heading .description p {
font-size: 14px;
line-height: 24px;
width: 61%;
margin: 0 auto 80px;
color: #333;
}
.psdp-section .global-heading hr::after,
.common-section-one .global-heading hr::after{
border-left-color: #fff;
border-right-color: #fff;
}
.global-inner-heading h1 {
text-transform: uppercase;
font-size: 26px;
color: #1b2d5a;
padding: 0 0 80px;
font-family: robotobold;
}
.global-inner-heading h1:before {
background: #1b2d5a;
width: 48px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 60px
}
.global-inner-heading h1:after {
content: '';
background: #ababab;
width: 100px;
height: 1px;
position: absolute;
top: 62px;
z-index: 1;
left: 82px
}
.global-inner-heading p{
margin: 0 0 20px;
}
.global-inner-heading p:last-child{
margin: 0 0 48px;
}
.aboutus-content {
margin: 80px 0
}
.left-single-us {
margin: 0 0 45px
}
.single_us {
padding-right: 18px
}
.fix:after,
.fix:before {
content: "";
display: table
}
.single_us .single_us_img {
float: left;
position: relative;
z-index: 0
}
.single_us .single_us_img img {
border: 1px solid #fff;
max-width: 98px;
height: auto
}
.single_us .single_us_img:after {
left: 5px;
top: 5px;
z-index: -1;
position: absolute;
content: "";
width: 100%;
height: 100%;
background: rgba(27, 45, 90, 0.7);
}
.single_us .single_us_text {
display: block;
margin-bottom: 67px;
margin-top: 11px;
padding-left: 125px
}
.single_us .single_us_text h3 {
border-bottom: 1px dashed #1b2d5a;
margin-bottom: 16px;
padding-bottom: 16px;
font-size: 23px;
color: #1b2d5a;
font-family: robotobold;
}
.news-wrapper {
margin: 80px 0
}
.theme-large-sidebar.R-P-fix {
padding-right: 40px;
margin-bottom: 30px;
}
.theme-large-sidebar {
width: 100%
}
.float-left {
float: left
}
.single-news-item {
position: relative;
margin-bottom: 50px;
padding-top: 38px
}
.single-news-item .date {
width: 70px;
height: 78px;
text-align: center;
color: #fff;
position: absolute;
left: 1%;
top: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 99;
padding-top: 2px;
background: #1b2d5a
}
.single-news-item .img {
overflow: hidden;
position: relative;
max-height: 300px
}
.single-news-item:hover .img img {
-webkit-transform: scale3D(1.1, 1.1, 1);
transform: scale3D(1.1, 1.1, 1)
}
.single-news-item .img img {
-webkit-transition: all .8s ease-in-out;
transition: all .8s ease-in-out;
width: 100%
}
.single-news-item .post {
background: #fff;
padding: 34px 20px 40px 30px
}
.single-news-item .post h4 {
text-transform: none;
margin-bottom: 15px;
color: #333;
font-size: 23px;
font-weight: 600
}
.single-news-item .post h4 a:hover {
color: #1b2d5a
}
.single-news-item .post ul li {
display: inline-block;
line-height: 18px;
margin: 10px 6px 0 0;
padding-right: 10px;
border-right: 1px solid #7f7f7f
}
.single-news-item .post ul li:nth-child(4) {
float: right
}
.single-news-item .post ul li:nth-child(3),
.single-news-item .post ul li:nth-child(4) {
border: none
}
.single-news-item .post ul li:nth-child(4) i {
margin-right: 8px
}
.single-news-page .single-news-item .post .read-more {
width: 190px;
line-height: 45px;
text-align: center;
color: #fff;
border-width: 1px;
font-size: 14px;
text-transform: uppercase;
margin-top: 40px;
background: #1b2d5a;
display: inline-block;
vertical-align: middle;
height: 45px
}
.single-news-page .single-news-item .post .read-more:hover {
opacity: .9
}
.single-news-item .date b {
font-size: 35px;
font-weight: 700
}
.single-news-item .date span {
font-weight: 600;
font-size: 14px;
display: block;
margin-top: -5px
}
.post a:hover {
color: #000
}
.widget_recent_entries {
padding: 20px 20px 15px
}
.ft-widget-margin-left-28 {
margin-left: 28px
}
.ft-widget-margin-right-12 {
margin-right: 12px
}
.ft-widget-margin-right-10 {
margin-right: 10px
}
.widget ul li {
border-color: rgba(255, 255, 255, .1);
margin: 0 0 15px
}
.widget.widget_recent_entries a {
color: #1b2d5a;
font-weight: 600;
margin: 0 0 3px;
display: block
}
.widget.widget_recent_entries a:hover {
color: #000
}
.post-image img {
width: 100%;
height: auto
}
.post-details h4 {
font-size: 16px;
font-weight: 600;
color: #1b2d5a;
margin: 12px 0
}
.post-content p img{
float: right;
margin: 0 0 20px 10px;
width: 25%;
margin: 0 0 20px 10px;
height: auto;
}
.post-content p {
margin: 0 0 20px
}
.post-controller {
margin: 25px 0
}
.post-controller a:hover {
color: #000
}
.post-controller a i {
padding: 5px 8px;
border-radius: 5px;
color: #000;
font-size: 15px
}
.olivesafety_comments_area {
margin-top: 60px
}
.olivesafety_service_detail_area .olivesafety_service_detail_top h2 {
margin-top: 48px;
margin-bottom: 32px
}
.olivesafety_comments_area .olivesafety_comments {
/*border: 1px solid #e8e8e8;
box-shadow: 0 2px 3px rgba(34, 34, 34, .1);*/
padding: 16px 27px 15px
}
.olivesafety_comments_area .single_comment {
border-bottom: 1px solid #d1d1d1;
padding-bottom: 8px;
padding-top: 30px;
position: relative
}
.olivesafety_comments_area .comment_img {
display: block;
float: left
}
.olivesafety_comments_area img {
border: 1px solid #1b2d5a;
width: 90px;
height: auto
}
.olivesafety_comments_area .comment_text {
padding-left: 116px
}
.olivesafety_comments_area h3 {
font-size: 15px;
font-weight: 500;
margin-bottom: 8px
}
.olivesafety_comments_area h4 {
font-size: 13px;
color: #666;
font-weight: 400;
margin-bottom: 14px
}
.olivesafety_service_detail_area .olivesafety_service_detail_top p {
margin-bottom: 15px
}
.olivesafety_comments_area .share_icon {
position: absolute;
right: 0;
top: 22px
}
.olivesafety_comments_area .single_comment:nth-child(even) {
padding-left: 40px
}
.olivesafety_comments_area .single_comment:last-child {
border-bottom: 0 solid #d1d1d1
}
.olivesafety_comments_area h2 {
margin: 27px 0
}
.common_input input,
.common_input select,
.common_input textarea {
background: #f7f7f7;
border: 1px solid #d1d1d1;
color: #666;
height: 50px;
margin-bottom: 20px;
padding: 10px 20px;
width: 100%;
font-size: 15px
}
.olivesafety_comments_area input {
width: 100%
}
.ml17 {
margin-left: 17px
}
.olivesafety_comments_area textarea {
height: 200px;
width: 100%
}
.common_input textarea {
width: 100%;
height: 120px;
color: #666;
padding-top: 14px;
resize: none
}
.common_input input[type=submit] {
width: 160px;
height: 50px;
border: none;
line-height: 32px;
margin-top: 16px;
transition: .5s
}
.common_btn,
.common_input input[type=submit] {
display: inline-block;
width: 180px;
height: 42px;
text-align: center;
line-height: 22px;
border-radius: 0;
font-weight: 600;
color: #fff;
font-size: 15px;
background: #1b2d5a;
overflow: hidden;
text-transform: uppercase;
margin: 0 0 0 7px
}
.common_input input[type=submit]:hover {
opacity: .9
}
.loader-image {
position: absolute;
left: 0;
right: 0;
margin: auto;
width: 150px;
height: 80px
}
.loader-image span {
border: 5px solid #f3f3f3;
border-radius: 50%;
border-top: 5px solid #1b2d5a;
border-bottom: 5px solid #1b2d5a;
width: 40px;
height: 40px;
-webkit-animation: spin 1.2s linear infinite;
animation: spin 1.2s linear infinite;
position: absolute;
top: -40px;
left: 0;
right: 0;
margin: auto
}
.loader-image h2 {
font-size: 14px;
text-align: center;
margin: 20px 0;
font-weight: 700;
color: #1b2d5a
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg)
}
}
@keyframes spin {
0% {
transform: rotate(0)
}
100% {
transform: rotate(360deg)
}
}
.all-events-listing {
margin: 80px 0
}
.event-listing-content {
display: inline-block;
padding: 15px 20px;
background: rgba(27, 45, 90, .8);
width: 80%;
float: left;
color: #fff
}
.available-course-date-content a {
white-space: nowrap;
overflow: hidden;
display: block;
text-overflow: ellipsis
}
.event-listing-date .date-head {
display: inline-block;
background: #fff;
padding: 14px 2px;
font-size: 18px;
font-weight: 700;
float: left;
width: 20%;
text-align: center;
color: #1b2d5a;
height: 105px
}
.event-listing-date .date-head span.day-list {
font-size: 28px;
display: block
}
.event-listing-date .date-head span.month-list {
text-transform: capitalize
}
.event-listing-date {
position: relative;
height: 105px
}
.event-listing-title {
display: inline-block;
padding: 12px 20px;
background: rgba(27, 45, 90, .8);
width: 60%;
float: left;
color: #fff
}
.event-listing-title h2 {
margin: 0;
text-align: left;
color: #fff;
font-size: 18px;
padding: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.event-listing-title .duration {
display: inline-block;
vertical-align: middle;
margin: 0 0 9px
}
.event-listing-date .course-event-price:before {
width: 88px;
height: 83px;
border-radius: 50%;
border: 2px solid #fff;
content: '';
position: absolute;
top: 0;
right: 0;
left: 0;
margin: auto;
bottom: 0;
}
.course-event-price {
position: relative;
width: 20%;
display: block;
background: #48577b;
z-index: 1
}
.course-event-price p {
font-size: 25px;
color: #fff;
padding: 32px 0;
text-align: center;
position: relative;
z-index: 1;
transition: all .5 ease
}
.available-course-date.event-listing-date:hover .course-event-price:before {
background: #fff;
-webkit-transition: all .5s;
-o-transition: all .5s;
transition: all .5s
}
.available-course-date.event-listing-date:hover .course-event-price p {
color: #48577b;
-webkit-transition: all .4s;
-o-transition: all .4s;
transition: all .4s
}
.event-read-more a{
font-size: 15px;
}
.global-pagination.center {
text-align: center
}
.buy-success-wrapper {
margin: -50px 0 0
}
.buy-success-wrapper .form-wrapper {
margin: 120px 0 70px;
display: block
}
.success-image {
text-align: center;
margin: 0 0 25px
}
.success-image i.fa {
font-size: 120px;
color: #3c763d
}
.form-wrapper .alert {
text-align: center
}
.main-success-content {
text-align: center
}
.main-success-content .success-description p {
margin: 0 0 5px;
font-size: 14px;
text-align: center
}
.success-description {
margin: 10px 0 40px
}
.success-description p a:focus,
.success-description p a:hover,
.success-description p a:visited {
color: #1b2d5a
}
.main-success-content .btn-academyhq {
background: #1b2d5a;
color: #fff;
border-radius: 0;
padding: 12px 50px;
text-transform: uppercase
}
.main-success-content .go-back-home {
background: 0 0;
color: #1b2d5a;
border-radius: 0;
padding: 12px 50px;
text-transform: uppercase;
display: block;
margin: 13px 0 0
}
#owl-news-shortcut .owl-controls .owl-pagination {
position: absolute;
bottom: -56px;
right: -4%;
display: block;
padding: 3px 17px;
border-radius: 4px
}
#owl-news-shortcut .owl-controls .owl-buttons {
display: none
}
#owl-news-shortcut .owl-controls .owl-page span {
background: #fff;
width: 35px;
height: 3px;
border-radius: 0
}
#shorting-cat .single-course {
margin: 0 0 36px
}
.quick-search-wrapper {
display: block;
height: 372px;
overflow: auto;
}
.quick-search-autocomplete {
background: rgba(12, 20, 39, .9);
border-bottom: 1px solid #fff;
}
.quick-search-autocomplete .inner-wrapper {
padding: 18px 35px;
display: inline-block;
vertical-align: middle;
width: 100%;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 18px !important;
font-weight: bolder;
color: #fff;
text-transform: uppercase;
}
.quick-search-autocomplete .inner-wrapper .breadcrumb {
padding: 8px 0;
background-color: transparent;
color: #fff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 2px;
}
.quick-search-autocomplete .course-details-content .course-details-enrollment,
.quick-search-autocomplete .inner-wrapper .course-details-heading {
margin: 0 0 8px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 20px 15px !important;
width: 76%;
}
.quick-search-autocomplete .inner-wrapper .course-details-content p {
overflow: hidden;
max-height: 35px;
color: #fff;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 100px;
}
.quick-search-autocomplete .course-details-thumbnail:after,
.quick-search-autocomplete .course-details-thumbnail:before{
content: none;
}
#om-search.move-up-fixed {
top: 50px;
}
.modal-header .close {
margin-top: -10px;
}
.modal-header .close i {
text-shadow: none;
color: #fff;
font-weight: normal;
font-size: 20px;
}
.modal-header .close i.fa.fa-times:hover {
color: #e74c3c;
}
.modal-header a {
float: left;
display: inline-block;
vertical-align: middle;
}
.modal-login-heading {
display: inline-block;
vertical-align: middle;
}
.modal-login-heading h2 {
/* float: left;
color: rgba(255, 255, 255, 0.7);
padding: 13px 10px;
width: 340px;
text-align: center;
font-size: 20px;
text-transform: uppercase;*/
float: left;
color: rgba(255, 255, 255, 0.7);
width: 100%;
text-transform: uppercase;
}
.modal-body{
padding: 5px 15px;
}
.modal-body a:hover{
color: #1b2d5a;
}
#at-reset-pswd .modal-body p{
margin: 12px 0;
}
.cart {
color: #ababab;
display: inline-block;
vertical-align: middle;
width: 110px;
text-align: center;
float: right;
border-left: 1px solid rgba(255, 255, 255, 0.07);
}
/*.cart > a {
padding: 28px 15px 28px;
display: block;
font-size: 15px;
background: rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.07);
}*/
.cart > a{
padding: 9px 15px;
display: block;
font-size: 14px;
background: rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.cart_block {
background-color: #fff;
border: 1px solid #d4d4d4;
height: auto;
margin-top: 25px;
opacity: 0;
position: absolute;
right: 0;
text-align: left;
top: 100%;
visibility: hidden;
/*width: 250px;*/
width: 350px;
z-index: 8888;
padding: 0 15px;
}
.cart_block.active {
margin-top: 0;
opacity: 1;
transition: all 0.35s ease 0s;
-webkit-transition: all 0.35s ease 0s;
visibility: visible;
}
.client_info.active {
margin-top: 0;
opacity: 1;
transition: all 0.35s ease 0s;
-webkit-transition: all 0.35s ease 0s;
visibility: visible;
}
.client_info {
background-color: #2a3b65;
border-top: 1px solid rgba(255, 255, 255, 0.07);
height: auto;
margin-top: 25px;
opacity: 0;
position: absolute;
right: 0;
text-align: left;
top: 100%;
visibility: hidden;
width: 110px;
z-index: 555;
padding: 0;
}
.client_info a{
width: 100% !important;
padding: 9px 6px !important;
font-size: 12px;
}
.cart_block dt.first_item {
background: none;
}
.cart.view_more_768 a.change-password-btn {
padding: 11px 6px 10px;
font-size: 12px;
/*border-bottom: 1px solid rgba(255, 255, 255, 0.07);*/
}
.cart_block dt {
border-bottom: 1px solid #d4d4d4;
font-weight: normal;
overflow: hidden;
padding: 10px 0;
position: relative;
}
.cart_block .cart-images {
float: left;
margin-right: 10px;
max-width: 60px;
}
.cart_block .cart-images img {
max-width: 100%;
vertical-align: middle;
}
.cart_block .cart-info {
overflow: hidden;
position: relative;
padding-right: 15px;
}
.cart_block .cart-info .product-name {
display: flex;
margin-top: -4px;
padding-bottom: 0;
text-align: left;
}
.product-name {
color: #222222;
font-weight: normal;
line-height: 20px;
margin-bottom: 0;
text-align: center;
text-transform: none;
}
.cart_block .cart-info .quantity-formated {
color: #888;
display: inline-block;
float: left;
font-size: 13px;
line-height: 24px;
padding-right: 5px;
text-transform: uppercase;
}
.cart-info .product-name a {
color: #666666;
display: inline-block;
font-family: 'Heebo', sans-serif;
font-size: 13px;
line-height: 24px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shopping_cart .cart-info .price {
font-weight: bold;
}
.cart_block .cart_block_list .remove_link {
position: absolute;
right: 5px;
top: 50%;
transform: translate3d(0px, -50%, 0px);
-webkit-transform: translate3d(0px, -50%, 0px);
}
.cart_block .cart_block_list .remove_link a,
.cart_block .cart_block_list .ajax_cart_block_remove_link {
outline: none;
text-decoration: none;
}
.cart_block .cart_block_list .remove_link a,
.cart_block .cart_block_list .ajax_cart_block_remove_link {
color: #797979;
display: block;
width: 100%;
height: 100%;
}
.cart_block .cart_block_list .remove_link {
position: absolute;
right: 5px;
top: 50%;
transform: translate3d(0px, -50%, 0px);
-webkit-transform: translate3d(0px, -50%, 0px);
}
.cart_block dt.first_item {
background: none;
}
.cart_block dt {
border-bottom: 1px solid #d4d4d4;
font-weight: normal;
overflow: hidden;
padding: 10px 0;
position: relative;
}
.cart_block dd {
position: relative;
}
.unvisible {
display: none;
}
.cart_block .cart-prices {
font-weight: bold;
padding: 10px 0px;
}
.cart_block .cart-prices .cart-prices-line {
font-weight: normal;
overflow: hidden;
padding: 7px 0;
text-transform: uppercase;
}
.cart_block .cart-prices .cart-prices-line.last-line {
border: none;
}
.cart_block .cart-prices .cart-prices-line {
font-weight: normal;
overflow: hidden;
padding: 7px 0;
text-transform: uppercase;
}
.cart_block .cart_block_shipping_cost,
.cart_block .cart_block_tax_cost,
.cart_block .cart_block_total,
.cart_block .cart_block_wrapping_cost {
float: right;
}
.cart_block .cart-buttons {
margin: 0;
overflow: hidden;
padding: 0 0px 10px;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
border-radius: 0;
font-size: 13px;
font-weight: normal;
margin-bottom: 5px;
padding: 2px 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
margin-bottom: 5px;
margin-right: 14px;
}
.cart_block .cart-buttons a {
border: medium none;
float: left;
line-height: 33px;
margin-bottom: 10px;
text-align: center;
text-transform: uppercase;
/*width: 100%;*/
background: #1b2d5a;
color: #fff;
float: left;
width: 47.8%;
}
.cart_block .cart-buttons a:last-child{
margin-right: 0 !important;
}
a.ajax_cart_block_remove_link i:hover {
color: #e74c3c;
}
.mid-header-left-section {
float: right;
display: inline-block;
vertical-align: middle;
}
.signup-login .navbar {
position: relative;
min-height: 50px;
margin-bottom: 0px;
border: 1px solid transparent;
}
.signup-login .navbar-default {
background-color: #1DB9EC;
border-color: transparent!important;
}
.signup-login .bdr li:nth-child(odd) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
/*.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
border-left: 1px solid rgba(255, 255, 255, 0.44);
}*/
.signup-login .bdr li {
padding: 0;
background: rgba(255, 255, 255, 0.07);
position: relative;
}
.signup-login .bdr li > a {
color: #ababab;
padding: 9px 15px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 110px;
}
.signup-login .bdr li > a:hover {
color: #fff;
}
.signup-login .pddr {
padding-top: 5px;
}
.signup-login .navbar-right {
float: right !important;
margin-right: 30px;
}
.signup-login .nav > li {
position: relative;
display: inline-block;
}
.btn-blu {
display: inline-block;
padding: 10px 35px;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 0px;
background-color: #0D4459;
border-color: #0D4459;
color: #fff;
}
.mrgn-top {
margin-top: 15px;
margin-right: 15px;
}
.signup-login {
margin: 0 0 0 22px;
display: inline-block;
float: left;
}
.signup-login ul.bdr {
float: right;
}
.mid-header .contact-details {
float: left;
}
.at-login-form .btn-fb {
display: inline-block;
padding: 14px 20px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 0px;
background-color: #4568B2;
margin-top: 10px;
color: #fff;
float: left;
width: 49%;
margin: 0 6px 0 0;
}
.at-login-form .btn-gp {
display: inline-block;
padding: 14px 20px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #eee;
border-radius: 0px;
background-color: #FFFFFF;
color: #000;
float: left;
width: 49%;
margin: 0;
}
.btn-gp i,
.btn-fb i {
margin: 3px 0 0;
}
.at-login-form .btn-lgin {
display: inline-block;
padding: 12px 20px;
margin-bottom: 0;
font-size: 18px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #eee;
border-radius: 0px;
background-color: #1b2d5a;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
color: #fff;
text-transform: uppercase;
}
.at-login-form .btn-lgin:hover {
opacity: 0.9;
}
.at-login-form .signup-or-separator {
background: none;
height: 34px;
position: relative;
text-align: center;
margin: 10px 0;
}
.at-login-form .signup-or-separator--text {
background-color: #fff;
display: inline-block;
padding: 8px;
}
.at-login-form .h6 {
font-size: 14px;
font-weight: bold;
color: #757575;
line-height: 1.1;
text-rendering: optimizelegibility;
}
.at-login-form .signup-or-separator hr {
margin: -15px auto 10px;
width: 100%;
}
.at-login-form .form-control-form {
display: block;
width: 100%;
height: 48px;
padding: 15px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
margin: 0;
}
.at-login-form .frgt-pswd {
margin: 10px 0;
color: #383838;
text-align: left;
cursor: pointer;
}
.at-login-form .btn-gst {
display: inline-block;
padding: 6px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 0 solid #1b2d5a;
border-radius: 0px;
background-color: transparent;
/*width: 100%;*/
color: #1b2d5a;
}
.at-login-form .btn-gst:hover{
text-decoration: none;
color: #000;
}
.modal-footer {
margin-top: 30px;
padding: 12px 0;
margin: 5px 16px 0;
}
.at-login-form .ta-l {
text-align: right;
margin: 4px 0;
}
.at-login-form .sign-up-center{
text-align: center;
}
.at-login-form .modal-dialog {
width: 500px;
margin: 78px auto;
}
.at-login-form .modal-content {
padding: 0;
border-radius: 0;
border: 1px solid rgb(146, 149, 156);
}
.at-login-form .modal-header {
padding: 22px 10px;
border-bottom: 0px solid #e5e5e5;
background: #0d162d;
}
div#at-login .modal-body,
div#at-signup-filling .modal-body,
div#at-forgot-pwd .modal-body{
margin: 20px 0 0;
}
.mid-header {
background: #1b2d5a;
padding: 0 5px;
}
.blue-bg-nav {
background-color: #1DB9EC;
}
/*************************
17. Scroll Settings
*************************/
/*.scrollable {
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}*/
/*************************
17.01 Scroll themes style if necessary
*************************/
/*
body::-webkit-scrollbar-track,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar-track{
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar{
width: 10px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb,
.om-primary-nav .om-secondary-nav>li::-webkit-scrollbar-thumb{
background-color: #F90;
background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}*/
/***********************
***** Client Info ******
************************/
.update-gap {
margin: 0 18px 0 0;
}
.update-gap button {
border-radius: 0;
padding: 9px 60px;
background: #1b2d5a;
border: 1px solid #1b2d5a;
}
.update-gap button:hover {
opacity: 0.9;
background: #1b2d5a;
border: 1px solid #1b2d5a;
}
.olive-safety-delete-btn a {
background: #d9534f;
color: #fff;
}
.main-card-contents .bill-address-details{
border: 1px solid #ddd;
}
.main-card-contents .bill-address-details tr:last-child{
border-bottom: 1px solid #ddd;
}
/*.main-card-contents ul li span.billing-title {
width: 28%;
}
.main-card-contents ul li span {
font-size: 15px;
font-weight: 700;
}
.main-card-contents ul li {
width: 60%;
margin: 0 0 13px;
display: inline-block;
vertical-align: middle;
}*/
.dashboard {
padding: 120px 8px 0px;
}
.dashboard-tabs {
background-color: #ecf0f1;
padding: 0;
border: 0 solid #ecf0f1;
border-radius: 5px;
}
.dashboard-tabs:after {
content: '';
display: block;
clear: both;
}
.dashboard-tabs > li {
list-style: none;
display: inline-block;
width: 25%;
float: left;
padding: 0;
}
.dashboard-tabs > li:first-of-type {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.dashboard-tabs > li:last-of-type {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.dashboard-tabs > li > a {
vertical-align: middle;
text-align: center;
background-color: #f9f9f9;
width: 100%;
text-decoration: none;
color: #333;
border: 0 solid #1b2d5a;
border-radius: 0;
padding: 9px 0 17px 0;
transition: none;
}
.dashboard-tabs > li.active > a {
color: #1b2d5a;
border-width: 6px 0 3px 0;
padding: 0 0 18px;
margin: -4px 0;
}
.dashboard-tabs > li:first-of-type > a {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.dashboard-tabs > li:last-of-type > a {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.dashboard-tabs > li.active > a:before {
content: '';
position: relative;
border-style: solid;
border-width: 6px 6px 0;
border-color: #1b2d5a transparent;
display: block;
width: 0;
z-index: 1;
margin-left: -6px;
top: 0;
left: 50%;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 16px;
font-size: 32px;
}
.dashboard .tab-content {
margin: 40px 0;
}
.dashboard .jumbotron {
margin-top: 0px;
background: #1b2d5a;
color: #fff;
border-radius: 5px 5px 0 0;
}
.dashboard .jumbotron small {
color: #fff;
}
.dashboard .jumbotron-sm {
padding-top: 24px;
padding-bottom: 24px;
}
.help-pane {
background: #ecf0f1;
border-radius: 5px;
}
.profile-pane {
width: 100%;
display: table;
border-spacing: 10px;
}
.profile-pane > div {
display: table-row;
}
.profile-pane > div > div {
width: 50%;
display: table-cell;
}
.profile-pane .header {
background: #1b2d5a;
color: #fff;
padding: 5px 15px;
border-radius: 10px 10px 0 0;
}
.profile-pane .content {
background: #ecf0f1;
border-radius: 0 0 10px 10px;
padding: 5px 15px;
}
.profile-pane h4.col {
text-align: center;
margin-bottom: 40px;
}
.profile-pane button.col {
text-align: center;
padding: 0;
}
.profile-pane .title {
margin-top: 0;
padding: 10px;
border-bottom: 1px solid #aaa;
}
#supportedCauses {
padding: 0;
}
.cause-info {
margin-bottom: 5px;
padding: 5px;
background: #fff;
border-radius: 5px;
display: inline-block;
}
.cause-info a:hover {
cursor: pointer;
}
.cause-info > div:nth-of-type(3) {
width: 16.66666666%;
float: left;
}
.cause-info > div:nth-of-type(3) > * {
padding: 0 15px;
float: right;
}
.cause-info > div:nth-of-type(3) a > .glyphicon {
transition: transform .5s;
}
.cause-info:not(.expanded) > div:nth-of-type(1) {
width: 83.33333333%;
float: left;
display: inline-block;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > img {
width: 20%;
float: left;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > div {
width: 40%;
float: left;
padding: 0 15px;
}
.cause-info:not(.expanded) > div:nth-of-type(1) > div:nth-of-type(2):before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.cause-info:not(.expanded) > div:nth-of-type(2) {
display: none;
}
.cause-info.expanded > div:nth-of-type(1) {
width: 25%;
float: left;
}
.cause-info.expanded > div:nth-of-type(1) > img {
width: 66.66666667%;
}
.cause-info.expanded > div:nth-of-type(2) {
width: 58.33333333%;
float: left;
}
.cause-info.expanded > div:nth-of-type(3) a > .glyphicon {
transform: rotate(180deg);
}
.profile-pane article {
background: #fff;
border-radius: 5px;
padding: 5px;
margin-bottom: 40px;
}
.search-bar {
position: relative;
display: table;
border-collapse: collapse;
}
.search-bar > input {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.search-select {
border-radius: 4px;
border-color: #ccc;
height: 34px;
font-size: 14px;
color: #555;
background: #fff;
padding-right: 0;
}
.reciept-infos {
border: 1px solid #000;
padding: 0;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 5px;
background: #fff;
}
.reciept-infos > div:last-of-type {
border-bottom: none;
}
.reciept-infos > div {
display: inline-block;
border-bottom: 1px solid #000;
}
.reciept-infos > div > * {
float: left;
}
.reciept-infos > div > img {
width: 18%;
margin: 1%;
}
.reciept-infos > div > div {
width: 80%;
padding: 0 15px;
}
.payment-history .action {
width: 16%;
}
.action a {
font-size: 14px;
font-weight: normal;
padding: 0 9px;
}
.action a.action-exit {
color: #2980b9 !important;
}
.action a.action-remove {
color: #e74c3c !important;
}
.payment-history table#course-table,
#my_booking #booking-table
{
margin: 0 0 40px;
}
/*.payment-history .table>tbody>tr>td,
.payment-history .table>tbody>tr>th,
.payment-history .table>tfoot>tr>td,
.payment-history .table>tfoot>tr>th,
.payment-history .table>thead>tr>td,
.payment-history .table>thead>tr>th {
width: 200px;
}*/
.payment-history td.image {
padding-left: 10px !important;
}
.main-card-contents button {
border-radius: 0;
background: none;
color: #383838;
border: 1px solid #383838;
padding: 6px 50px 6px;
}
.main-card-contents button:hover {
background: #1b2d5a;
border: 1px solid #1b2d5a;
color: #fff;
}
.client-info-modal {
z-index: 99999;
}
.client-info-modal .modal-content {
border-radius: 0;
}
.client-info-modal-header {
background: #1b2d5a;
padding: 20px;
color: #fff;
}
.client-info-modal-header h4 {
font-size: 20px;
}
.card-details-title h5 {
font-size: 20px;
}
.card-details-edit .form-control,
.billing-details-edit .form-control {
-webkit-box-shadow: none;
box-shadow: none;
height: 40px;
border-radius: 0;
border: 1px solid #ccc;
color: #737475;
background: #fff;
width: 100%;
}
.client-info-save button {
color: #fff;
border: 0;
background: #1b2d5a;
border-radius: 0;
padding: 10px;
width: 250px;
margin: 0 0 0 21px;
}
/*.billing-update-btn {
margin: 0 0 0 6px !important;
}*/
.client-info-save button:hover {
box-shadow: none;
color: #fff!important;
opacity: .9;
background: #1b2d5a;
}
.card-details-edit .card-expiry-year {
padding-left: 9px;
padding-right: 9px;
}
.ibox-footer.client-info-save button {
margin: 22px 0px 22px 16px !important;
}
.ibox-footer.client-info-save .billing-details-edit-btn {
margin: 22px 0 !important;
}
.r-full-width .selectpicker {
margin: 0 0 20px;
}
.client-info-modal .gap-maintain .course-select-title>h2 {
padding: 0 0 50px;
}
.tab-content .save-update-btn-sec {
margin-bottom: 50px;
}
.card-form-content,
.billing-form-content {
background: #fff;
padding: 30px;
}
table.booking-data-list td a:hover{
color: #1b2d5a;
}
#cancel-billing-details-btn,
#cancel-card-details{
background: #e74c3c !important;
}
#cancel-billing-details-btn:hover,
#cancel-card-details:hover{
background: #e74c3c !important;
opacity: 0.9;
}
#update-billing-details-btn,
#save-update-btn-sec a.btn{
min-width: 220px;
height: 54px;
line-height: 16px;
font-size: 14px;
padding: 0 40px;
text-transform: uppercase;
position: relative;
overflow: hidden;
border-radius: 0;
padding: 18px 0px;
}
#save-update-btn-sec a.btn:hover{
opacity: 0.9;
background:#e74c3c;
}
.carousel-autocomplete {
width: 460px;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
background: #fbfbfb;
position: absolute;
top: 149px;
left: 0;
right: 0;
max-height: 113px;
overflow: auto;
}
.carousel-autocomplete .inner-wrapper{
padding: 8px 5px;
border-bottom: 1px solid rgba(32, 32, 32, 0.1);
}
.carousel-autocomplete a{
display: inline-block;
vertical-align: middle;
}
span.autocomplete-thumbnail {
width: 52px;
display: inline-block;
vertical-align: middle;
float: left;
margin: 1px 10px 0 7px;
}
span.autocomplete-heading {
display: inline-block;
vertical-align: middle;
float: left;
margin: 6px 3px;
/*width: 373px;*/
width: 355px;
}
.autocomplete-heading h2 {
font-size: 17px;
color: #232323;
text-shadow: none;
text-align: left;
float: left;
padding: 4px 0px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 257px;
}
.autocomplete-heading .price {
float: right;
padding: 6px 10px;
width: 93px;
text-align: center;
background: rgba(27, 45, 90, 0.9);
font-size: 14px;
font-weight: normal;
}
/******* BICKEY CSS **********/
.common-section-one,
.common-section-two,
.psdp-section {
background: #fff;
text-align: center;
}
.common-section-one {padding: 80px 0 60px;}
.common-section-one .description p {margin-bottom: 30px;}
.common-section-one .description a {color: #001d60;}
.common-section-two {padding-bottom: 60px;}
.common-section-two .description {
margin-top: 70px;
margin-bottom: 30px;
padding: 30px 15px;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.common-section-two .circle{
width: 90px;
height: 90px;
margin: -75px auto 20px;
background: #fff;
border: 5px solid #1b2d5a;
border-radius: 100%;
text-align: center;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.common-section-two .description .circle .fa {
width: 80px;
height: 80px;
display: table-cell;
vertical-align: middle;
font-size: 28px;
color: #1b2d5a;
text-align: center;
}
.common-section-two .description h3,
.psdp-section .description h3 {
margin-bottom: 20px;
color: #1b2d5a;
font-weight: bold;
}
.common-section-three {padding: 80px 0;}
.common-section-three .progress {
height: 35px;
border-radius: 0;
}
.common-section-three .progress .skill {
font-size: 12px;
font-style: normal;
line-height: 35px;
padding: 0;
margin: 0 0 0 20px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
}
.common-section-three .progress .skill a {color: #fff;}
.common-section-three .progress .skill .val {
float: right;
font-style: normal;
margin: 0 20px 0 0;
}
.common-section-three .progress-bar {
text-align: left;
transition-duration: 3s;
color: #0c1427;
}
.common-section-three .progress-bar-health {background: rgb(4, 114, 13);}
.common-section-three .progress-bar-safety {background: rgb(242, 217, 31);}
.common-section-three .progress-bar-psdp {background: rgb(16, 0, 255);}
.psdp-section {padding: 80px 0 60px;}
.psdp-section p {margin-bottom: 30px;}
.psdp-section .description {
margin-top: 40px;
margin-bottom: 30px;
padding: 30px 15px;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.psdp-section .description p {margin-bottom: 0;}
.psdp-section .description img {
margin-bottom: 20px;
opacity: 0.8;
}
.pscs {padding-top: 0;}
.contact-detail {
padding: 80px 0;
background: #fff;
}
.map-wrapper iframe {
width: 100%;
height: 300px;
pointer-events: none;
}
.upskill-section,
.audits-section {
background: #fff;
padding-bottom: 60px;
}
.upskill-section .description,
.audits-section .description {
margin-bottom: 30px;
padding: 30px 15px;
text-align: center;
border: 1px solid rgba(204, 204, 204, 0.5);
}
.upskill-section .description img,
.audits-section .description img {
margin: 0 auto 20px;
display: block;
}
.upskill-section .description h3,
.audits-section .description h3 {
display: inline-block;
vertical-align: middle;
margin-bottom: 20px;
color: #1b2d5a;
font-weight: bold;
}
.upskill-section .description .fa,
.audits-section .description .fa {
margin-left: 15px;
font-size: 20px;
color: #1b2d5a;
display: inline-block;
vertical-align: top;
text-align: center;
}
.separater {
position: relative;
margin-bottom: 3rem !important;
}
.separater:before {
position: absolute;
content: '';
top: 40px;
width: 40px;
height: 5px;
background: #ababab;
border: none;
text-indent: -9999px;
}
.separater:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 42px;
z-index: 1;
left: 49px;
}
.cd-horizontal-timeline .events-content h2 {
font-size: 20px;
font-family: robotoregular;
color: #383838;
font-weight: 100;
position: relative;
padding: 0 0 60px;
overflow: hidden;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
}
.cd-horizontal-timeline .events-content h2:before {
background: #ababab;
width: 40px;
position: absolute;
height: 5px;
border: none;
content: '';
top: 70px;
}
.cd-horizontal-timeline .events-content h2:after {
content: '';
background: #ababab;
width: 80px;
height: 1px;
position: absolute;
top: 72px;
z-index: 1;
left: 49px;
}
.pdf {width: 100%;}
.footer-info {
background: #f0f0f0;
padding-top: 60px;
padding-bottom: 30px;
}
.footer-info h2 {
font-size: 20px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #ccc;
}
.footer-info h3 {
margin-bottom: 15px;
}
.footer-info p {margin-bottom: 30px;}
.footer-info ul {
margin-left: 20px;
margin-bottom: 20px;
}
.footer-info ul li {margin-bottom: 5px;}
.footer-info ul li a {
color: #1570a6;
font-size: 12px;
}
.footer-info ul li a:hover {
color: #083047;
text-decoration: underline;
}
@media only screen and (min-width: 768px) {
.cd-horizontal-timeline .events-content em {
font-size: 1.5rem;
}
}
.cd-horizontal-timeline .events-wrapper::before {
left: 0;
background-image:none;
background-image: none;
}
.cd-horizontal-timeline .events-wrapper::after {
right: 0;
background-image:none;
background-image: none;
}
.cd-horizontal-timeline .events-content p {
font-size: 1.3rem;
margin-bottom: 15px;
}
/*schedule page**/
.schedule-wrapper{
margin: 80px 0;
}
.schedule-wrapper .alert-warning,
.course-unavailable .alert-warning{
color: rgba(27, 45, 90, 0.8);
background-color: #f0f0f0;
border-color: rgba(27, 45, 90, 0.3);
}
.schedule-wrapper .alert,
.course-unavailable .alert
{
border-radius: 0;
}
.schedule-content h2{
margin: 0 0 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 86%;
}
.schedule-content p{
margin: 0 0 10px;
}
.schedule-wrapper .schedule-calender{
margin: 0 0 20px;
}
.schedule-content-slide a.carousel-control{
background: transparent;
top: -6px;
}
.schedule-content-slide a.carousel-control span{
padding: 1px;
width: 35px;
height: 35px;
border: 1px solid #1b2d5a;
}
.schedule-content-slide a.carousel-control.left{
right: 51px;
}
.schedule-content-slide a.carousel-control.right{
right: -6px;
}
/*********** PEMA CSS *************/
.e-learning-section, .academy-section, .course-snippets {
padding: 80px 0;
color: #1b2d5a;
}
.academy-section {
text-align: center;
}
.e-learning-content h2,
.e-learning-bottom h2, .academy-content h2 {
font-size: 34px;
font-weight: 700;
padding: 0 0 30px;
text-align: center;
}
.e-learning-content hr, .academy-content hr {
background: #ababab;
width: 180px;
position: relative;
height: 1px;
margin: 0 auto;
border: none;
}
.e-learning-content hr:after, .academy-content hr:after {
content: '';
background: #1b2d5a;
width: 50px;
height: 6px;
position: absolute;
top: -7px;
z-index: 1;
left: 36%;
margin: 4px;
border-left: 5px solid #f0f0f0;
border-right: 5px solid #f0f0f0;
}
.e-learning-details p, .academy-details p {
font-size: 14px;
line-height: 24px;
padding: 30px 10px 0;
width: 61%;
margin: 0 auto;
color: #333;
}
.academy-details p {
width: 80%;
}
.e-learning-details {
text-align: center;
margin-bottom: 80px;
}
.academy-access {
margin: 70px 0 0;
}
.online-course-access {
padding: 49px 0;
background: #fff;
background: #ccc url(../images/slider/slider2.png) no-repeat fixed 0 0/cover;
}
.online-course-access h3 {
font-size: 24px !important;
color: #fff;
line-height: 2;
}
.online-course-access h3 i {
/*color: #1b2d5a;*/
}
.access-btn {
padding: 15px 33px;
background: #1b2d5a;
color: #fff;
border: 0;
border-radius: 0;
font-size: 14px;
}
.access-btn:hover {
background: #fff;
color: #1b2d5a;
}
.e-learning-bottom {
padding: 80px 0 0;
text-align: center;
}
.e-learning-bottom h5 {
font-size: 16px;
margin: 30px 0;
}
.e-learning-bottom-content {
padding: 40px 0 0;
}
.bottom-content {
border: solid 1px #ccc;
/* padding: 15px;*/
/*height: 350px;*/
position: relative;
background: #eee;
}
.bottom-content i {
font-size: 70px;
position: absolute;
left: 42%;
background: #e2e3df;
top: -37px;
border-radius: 50%;
}
.bottom-content h3 {
font-size: 24px;
padding: 40px 0;
color: #333;
background: #e8e8e8;
}
.bottom-content p {
padding: 20px;
color: #333;
height: 230px;
overflow: hidden;
}
/*course snippets*/
.course-snippets img {
width: 100%;
height: 100%;
object-fit: cover;
}
.course-video {
/*border: solid 1px #ccc;
box-shadow: 0 0 5px #ccc;*/
margin-bottom: 20px;
position: relative;
background: #fff;
box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
/*.course-video a:hover{
opacity: .9;
}*/
.course-video h3 {
padding: 19px 20px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
text-transform: uppercase;
font-size: 18px;
}
.course-video h3 a {
color: #1b2d5a;
}
.course-video h3 a:hover {
color: #979caa;
}
.play-btn {
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
color: #333;
opacity: .8;
}
.course-video a:hover {
opacity: .9;
}
.snippet-video {
display: block;
height: 159px;
overflow: hidden;
background: #ccc;
}
.snippets-search form {
margin-bottom: 40px;
width: 100%;
position: relative;
border: solid 1px #ccc;
color: #333;
font-size: 30px;
display: none;
}
.snippets-search form input {
width: 90%;
border: none;
background: transparent;
}
.snippets-search form button {
font-size: 33px;
position: absolute;
color: #ccc;
border: none;
background: transparent;
right: 15px;
}
.pagination-space{
margin: 25px 0 0;
}
/*buy button*/
#courses .btn-theme-transparent {
background-color: rgba(151, 156, 170, 0.48);
border-width: 1px;
border-color: rgba(0, 0, 0, .3);
background: #1b2d5a !important;
color: #fff !important;
border: none;
width: 100%;
}
#courses .btn-theme-transparent i {
padding: 0 0 0 10px;
}
#courses .btn-theme-transparent:hover {
opacity: .9;
box-shadow: 0 1px 3px #777;
}
/*buy button*/
/*courses listng*/
.rateandprice {
border: none !important;
padding: 0 !important;
display: inline-block !important;
vertical-align: middle;
margin:5px 0 !important;
/*position: relative;
top: 20px;
left: 2px;*/
}
.buttonandinclude strong {
/*padding-top: 20px !important;*/
font-size: 16px;
font-weight: 400;
}
.buttonandinclude .f-btn-sec{
padding-right: 10px;
}
.buttonandinclude .f-price-sec{
padding: 3px;
}
.buttonandinclude .f-enroll-sec{
padding: 0 15px 0 0;
}
.caption-details .desc {
padding: 10px 15px 0px !important;
display: inline-block;
vertical-align: middle;
height: 90px;
overflow: hidden;
}
.caption-details .desc a {
color: #1b2d5a;
float: right;
margin: 4px 0 0;
}
.caption-details .desc a:hover {
color: rgba(27, 45, 90, 0.9);
}
/*courses listng*/
/*main course page*/
.main-courses-section .rateandprice {
position: static;
}
.main-courses-section .buttonandinclude strong {
padding-top: 0px !important;
}
/*main course page*/
/*loader button*/
#ajax-grid-load-more {
text-align: center !important;
}
a.btn-load-more {
background: #1b2d5a;
border: 0;
padding: 17px 56px;
border-radius: 0;
color: #fff;
text-align: center;
}
a.btn-load-more:hover {
background: rgba(27, 45, 90, 0.9);
}
/*loader button*/
@media only screen and (max-width: 991px) {
.bottom-content {
margin: 0 0 50px;
}
.e-learning-content .access-btn {
float: left !important;
padding: 10px 20px;
}
.e-learning-details p, .academy-details p {
width: 100%;
}
}
@media only screen and (max-width: 767px) {
.bottom-content p {
height: auto;
}
}
@media only screen and (max-width: 500px) {
.snippet-video {
height: auto;
}
}
/*checkout page*/
#payment-wizard img.thumbnail {
width: 64px;
padding: 2px;
}
#payment-wizard .media-left, .media > .pull-left {
padding-right: 5px;
background: #fff;
}
.btn-remove {
border: none;
border-radius: 0;
padding: 0;
font-size: 25px;
background: transparent;
}
.btn-remove:hover {
color: indianred;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
vertical-align: middle;
}
.table > thead:first-child > tr:first-child > th {
background: #ddd;
}
.table tfoot h3 {
font-size: 20px;
}
.media-heading {
margin-top: 8px;
margin-left: 10px;
font-size: initial;
}
.media-heading a:hover {
color: #1b2d5a;
text-decoration: underline;
}
#voucher input {
border: solid 1px #ccc !important;
width: 98% !important;
position: relative;
padding: 0 20px 0 20px !important;
transition: all .6s ease !important;
height: 40px !important;
margin-left: 0px ;
}
#voucher {
/*margin-top: 40px!important;*/
}
.btn-remove-cart{
background:#d43b3b;
color: #fff;
padding: 2px 5px;
font-size: 12px;
}
.btn-remove-cart:hover{
background: indianred;
}
/*
#voucher input:focus{
width:100% !important;
}
*/
/*#voucher:before{
content: '\f02b ';
font-family: 'FontAwesome';
position: absolute;
top: 10px;
font-size: 18px;
left: 28%;
color: #888;
}*/
#voucher .shopping-cart-coupon {
margin: 0 !important;
height: 40px !important;
border-radius: 0px;
border-color: #ccc;
}
#voucher .shopping-cart-coupon:hover {
margin: 0 !important;
height: 40px !important;
border-radius: 0px;
border-color: #ccc;
color: #1b2d5a!important;
}
.continue-shopping a.btn {
background: #1b2d5a;
color: #eee;
margin: 0 !important;
line-height: 3.7;
border-radius: 0px !important;
}
.continue-shopping button:hover {
opacity: .9;
}
.os-global-form .btn:hover {
color: #fff !important;
border-color: #1b2d5a !important;
opacity: .9 !important;
}
.btn-default:hover {
color: #fff !important;
background-color: #1b2d5a !important;
}
#payment-wizard select {
color: #888 !important;
}
/*checkout-page*/
/*Wizard*/
.wizard, .tabcontrol {
display: block;
width: 100%;
overflow: hidden;
}
.wizard a, .tabcontrol a {
outline: 0;
}
.wizard ul, .tabcontrol ul {
list-style: none !important;
padding: 0;
margin: 0;
}
.wizard ul > li, .tabcontrol ul > li {
display: block;
padding: 0;
}
.wizard > .steps .current-info, .tabcontrol > .steps .current-info {
position: absolute;
left: -999em;
}
.wizard > .content > .title, .tabcontrol > .content > .title {
position: absolute;
left: -999em;
}
.wizard > .steps {
position: relative;
display: block;
width: 100%;
}
.wizard.vertical > .steps {
display: inline;
float: left;
width: 30%;
}
.wizard > .steps .number {
font-size: 1.429em;
}
.wizard > .steps > ul > li {
width: 25%;
}
.wizard > .steps > ul > li, .wizard > .actions > ul > li {
float: left;
text-align: center;
}
.wizard.vertical > .steps > ul > li {
float: none;
width: 100%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
display: block;
width: auto;
margin: 0;
padding: 1em 1em;
text-decoration: none;
}
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
background: #eee;
color: #aaa;
cursor: default;
}
.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
background: #526CAD;
color: #fff;
cursor: default;
}
.wizard > .steps > ul > li.current{
position: relative;
z-index: 1;
}
.wizard > .steps > ul > li.current:after {
position: absolute;
content: '';
border:solid 24px;
border-color: transparent transparent transparent #526cad;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li:first-child.current::before{
position: absolute;
content: '';
border:solid 24px;
border-color: transparent transparent transparent transparent;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li:last-child.current::before{
position: absolute;
content: '';
border:solid 24px;
border-color: #526cad #526cad #526cad #9aa7c7;
top: 0;
}
.wizard > .steps > ul > li.current:before{
position: absolute;
content: '';
border:solid 24px;
border-color: #526cad #526cad #526cad #9aa7c7;
top: 0;
left: 0px;
}
.wizard > .steps > ul > li.done{
position: relative;
z-index: 0;
}
.wizard > .steps > ul > li.done:after {
position: absolute;
content: '';
border: solid 24px;
border-color: transparent transparent transparent #9AA7C7;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li.current.done:after{
position: absolute;
content: '';
border: solid 24px;
border-color: transparent transparent transparent #526CAD;
top: 0;
right: -48px;
}
.wizard > .steps > ul > li.current.done a{
background:#526CAD;
}
#example-basic-t-0:before {
content: '\f07a';
font-family: 'FontAwesome';
margin-right: 5px;
}
#example-basic-t-1:before {
content: '\f041';
font-family: 'FontAwesome';
margin-right: 5px;
}
#example-basic-t-2:before {
content: '\f09d';
font-family: 'FontAwesome';
margin-right: 5px;
}
.current-info, .number {
display: none;
}
.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
background:#9AA7C7;
color: #fff;
}
/*validation error*/
.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
background: #d43b3b !important;
color: #fff;
}
.wizard > .steps > ul > li.error:after {
border-color: transparent transparent transparent #d43b3b !important;
}
.wizard > .steps > ul > li.error:before {
border-color: #d43b3b #d43b3b #d43b3b #9aa7c7 !important;
}
/*.wizard > .content > .body label.error {
color: #d43b3b !important;
display: inline-block !important;
background: transparent !important;
position: relative !important;
top: 80px !important;
}
.wizard > .content > .body input.error {
border-bottom: solid 1px #d43b3b !important;
}*/
/*validation error*/
.wizard > .content {
display: block;
margin: 12px 0;
/*min-height: 35em;*/
overflow: hidden;
position: relative;
width: auto;
}
.wizard.vertical > .content {
display: inline;
float: left;
margin: 0 2.5% .5em 2.5%;
width: 65%;
}
.wizard > .content > .body {
/*float: left;*/
/*position: absolute;*/
/*width: 95%;*/
/*height: 95%;*/
/*padding: 0 !important;*/
margin: 10px 0 0;
}
.wizard > .content > .body ul {
list-style: disc !important;
}
.wizard > .content > .body ul > li {
display: list-item;
}
.wizard > .content > .body > iframe {
border: 0 none;
width: 100%;
height: 100%;
}
.wizard > .content > .body input {
display: block;
margin: 0 !important;
}
.wizard > .content > .body input[type="checkbox"] {
display: inline-block;
}
/*
.wizard > .content > .body label {
display: inline-block;
margin-bottom: .5em;
}
*/
.wizard > .actions {
position: relative;
display: block;
text-align: right;
width: 100%;
}
.wizard.vertical > .actions {
display: inline;
float: right;
margin: 0 2.5%;
width: 95%;
}
.wizard > .actions > ul {
display: inline-block;
text-align: right;
/*margin-right: 50px;*/
}
.wizard > .actions > ul > li {
margin: 0 .5em;
}
.wizard.vertical > .actions > ul > li {
margin: 0 0 0 1em;
}
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
background: #103157;
color: #fff;
display: block;
padding: 0.6em 3em;
text-decoration: none;
}
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
background: #ccc;
color: #aaa;
}
.wizard > .loading {
}
.wizard > .loading .spinner {
}
.tabcontrol > .steps {
position: relative;
display: block;
width: 100%;
}
.tabcontrol > .steps > ul {
position: relative;
margin: 6px 0 0 0;
top: 1px;
z-index: 1;
}
.tabcontrol > .steps > ul > li {
float: left;
margin: 5px 2px 0 0;
padding: 1px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.tabcontrol > .steps > ul > li:hover {
background: #edecec;
border: 1px solid #bbb;
padding: 0;
}
.tabcontrol > .steps > ul > li.current {
background: #fff;
border: 1px solid #bbb;
border-bottom: 0 none;
padding: 0 0 1px 0;
margin-top: 0;
}
.tabcontrol > .steps > ul > li > a {
color: #5f5f5f;
display: inline-block;
border: 0 none;
margin: 0;
padding: 10px 30px;
text-decoration: none;
}
.tabcontrol > .steps > ul > li > a:hover {
text-decoration: none;
}
.tabcontrol > .steps > ul > li.current > a {
padding: 15px 30px 10px 30px;
}
.tabcontrol > .content {
position: relative;
display: inline-block;
width: 100%;
height: 35em;
overflow: hidden;
border-top: 1px solid #bbb;
padding-top: 20px;
}
.tabcontrol > .content > .body {
float: left;
position: absolute;
width: 95%;
height: 95%;
padding: 2.5%;
}
.tabcontrol > .content > .body ul {
list-style: disc !important;
}
.tabcontrol > .content > .body ul > li {
display: list-item;
}
@media (max-width: 600px) {
.wizard > .steps > ul > li {
width: 50%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
margin-top: .5em;
}
.wizard.vertical > .steps, .wizard.vertical > .actions {
display: block;
float: none;
width: 100%;
}
.wizard.vertical > .content {
display: block;
float: none;
margin: 0 .5em .5em;
width: auto;
}
}
@media (max-width: 480px) {
.wizard > .steps > ul > li {
width: 100%;
}
}
.cart-empty-section {
margin-bottom: 10px;
}
.empty-cart-content {
padding: 50px 0;
}
.cart-empty-section .cart-icon img {
width: 200px;
}
.cart-empty-section p {
font-size: 30px;
margin-bottom: 20px;
}
.cart-empty-section a {
background-color: rgba(151, 156, 170, 0.48);
border-width: 1px;
border-color: rgba(0, 0, 0, .3);
background: #1b2d5a !important;
color: #fff !important;
border: none;
padding: 10px 22px;
font-size: 14px;
line-height: 18px;
}
.cart-empty-section a:hover {
opacity: .9;
box-shadow: 0 1px 3px #777;
}
@media screen and (max-width: 769px) {
.cart-empty-section .cart-icon img {
display: block;
margin: 0 auto;
width: 120px;
}
.cart-empty-section {
text-align: center;
}
.empty-cart-content {
padding: 20px 0;
}
.cart-empty-section p {
font-size: 20px;
}
}
/** Google Map */
#google-container {
position: relative;
width: 100%;
height: 200px;
background-color: #e7eaf0;
}
@media only screen and (min-width: 768px) {
#google-container {
height: 300px;
}
}
@media only screen and (min-width: 1170px) {
#google-container {
height: 450px;
}
}
#osafety-google-map {
position: relative;
pointer-events: none;
}
#osafety-google-map address {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
padding: 1em 1em;
background-color: rgba(27, 45, 90, 0.6);
color: white;
font-size: 13px;
font-size: 0.8125rem;
margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
#osafety-google-map address {
font-size: 1.3375rem;
text-align: center;
}
}
#osafety-zoom-in, #osafety-zoom-out {
height: 32px;
width: 32px;
cursor: pointer;
margin-left: 10px;
background-color: rgba(27, 45, 90, 0.6);
background-repeat: no-repeat;
background-size: 32px 64px;
background-image: url("../images/custom-map/osafety-icon-controller.svg");
}
.no-touch #osafety-zoom-in:hover, .no-touch #osafety-zoom-out:hover {
background-color: rgba(27, 45, 90, 0.9);
}
@media only screen and (min-width: 768px) {
#osafety-zoom-in, #osafety-zoom-out {
margin-left: 40px;
}
}
#osafety-zoom-in {
background-position: 50% 0;
margin-top: 10px;
margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
#osafety-zoom-in {
margin-top: 40px;
}
}
#osafety-zoom-out {
background-position: 50% -32px;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
color: rgba(0, 0, 0, 0.3);
}
/** Frequently Asked Questions **/
.faqs-content{
margin-top: 80px;
margin-bottom: 80px;
}
.faqs-content .panel-group .panel {
border-radius: 0;
box-shadow: none;
border-color: #EEEEEE;
}
.faqs-content .panel-default > .panel-heading {
padding: 0;
border-radius: 0;
color: inherit;
background-color: #1b2d5a;
border-color: #1b2d5a;
}
.faqs-content .panel-title {
font-size: 14px;
}
.faqs-content .panel-title > a {
display: block;
padding: 22px 15px;
text-decoration: none;
color: #fff;
}
.more-less {
float: right;
color: #fff;
}
.faqs-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #EEEEEE;
}
.faqs-content .panel-title a:hover,
.faqs-content .panel-title a:focus{
color: #ccc;
}
/** Forgot password **/
.row.reset-password-section {
position: relative;
margin: 80px 0;
}
.reset-password-section .os-global-form .btn {
background: #1b2d5a none repeat scroll 0 0;
border: 0 none;
border-radius: 0;
color: #fff;
margin: 17px 0 0 15px;
padding: 10px;
width: 250px;
}
.body-fixed{
position: fixed;
}
.datetimepicker table tr td.today, .datetimepicker table tr td.today.disabled, .datetimepicker table tr td.today.disabled:hover, .datetimepicker table tr td.today:hover {
background-color: rgb(206, 209, 222);
background-image: -moz-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -ms-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -webkit-gradient(linear,0 0,0 100%,from(rgb(206, 209, 222)),to(rgb(206, 209, 222)));
background-image: -webkit-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: -o-linear-gradient(top,rgb(206, 209, 222),rgb(206, 209, 222));
background-image: linear-gradient(to bottom,rgb(206, 209, 222),rgb(206, 209, 222));
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(8, 24, 92, 0.5)', endColorstr='rgba(8, 24, 92, 0.5)', GradientType=0);
border-color: #ffffff #ffffff #ffffff;
border-color: rgb(206, 209, 222) rgb(206, 209, 222) rgb(206, 209, 222);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
color: #fff;
}
.datetimepicker table tr td.active, .datetimepicker table tr td.active.disabled, .datetimepicker table tr td.active.disabled:hover, .datetimepicker table tr td.active:hover {
background-color: #08185c;
background-image: -moz-linear-gradient(top,#08185c,#08185c);
background-image: -ms-linear-gradient(top,#08185c,#08185c);
background-image: -webkit-gradient(linear,0 0,0 100%,from(#08185c),to(#08185c));
background-image: -webkit-linear-gradient(top,#08185c,#08185c);
background-image: -o-linear-gradient(top,#08185c,#08185c);
background-image: linear-gradient(to bottom,#08185c,#08185c);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08185c', endColorstr='#08185c', GradientType=0);
border-color: #08185c #08185c #08185c;
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}
.carousel-available-course a.carousel-control{
background: transparent;
top: -10px;
}
.carousel-available-course a.carousel-control span{
padding: 1px;
width: 35px;
height: 35px;
border: 1px solid #1b2d5a;
}
.carousel-available-course a.carousel-control.left{
right: 68px;
}
.carousel-available-course a.carousel-control.right{
right: 10px;
}
/** Main Media Queries **/
@media only screen and (max-width:320px) {
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
/*.scrollToTop{
bottom: 109px;
right: 7px;
background: none;
border: 2px solid #0c1427;
color: #0c1427;
line-height: 28px;
width: 35px;
height: 35px;
display: none;
}*/
.om-header-buttons{
right: 31% !important;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none;
display: none;
}
.social-links ul {
text-align: center
}
.social-links ul li a {
padding: 6px 28px
}
.logo img {
width: 100%
}
.mid-header .contact-details {
padding: 2px 0;
width: 50%;
}
.mid-header .contact-details .contact {
text-align: center
}
.mid-header .contact-details .contact:first-child {
padding-right: 46px;
text-align: center;
margin: 0 0 10px;
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
text-align: left;
}
.mid-header-contacts{
margin: 0 0 5px;
display: none;
}
.signup-login{
float: right;
}
.signup-login ul.bdr {
float: none;
}
.cart {
width: 110px;
margin: 0;
}
.cart > a{
padding: 9px 14px;
display: block;
background: rgba(255, 255, 255, 0.07);
border-left: 0;
width: 110px;
text-align: center;
}
.view_more_768{
display: none;
}
.signup-login .bdr li:nth-child(even) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li a{
text-align: center;
}
.main-nav {
position: absolute;
top: 86px;
right: 0
}
.main-nav .navbar {
background: 0 0
}
.navbar-menu-items {
background: #ababab;
color: #1b2d5a
}
.main-nav .navbar .navbar-collapse .active a {
color: #1b2d5a
}
.navbar-default .navbar-nav>li>a {
color: #1b2d5a
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 10%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 10px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 10px;
overflow: hidden;
height: 29px;
}
.carousel-caption p.carousel-search-para{
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px*/
height: 200px;
}
.slider #owl-slider-olive .item img {
width: 160%;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -64px
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
.banner-tabs #exTab3 .nav-pills li a i {
display: none
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 9.6px
}
.sub-footer-nav li::before {
margin: -3px 1px;
}
.quick-search-wrapper {
height: 190px;
}
.quick-search-autocomplete .inner-wrapper {
padding: 12px 35px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 5px 15px 15px !important;
width: 65%;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 65px;
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 12px !important;
font-weight: normal;
}
.at-login-form .modal-dialog {
width: 94%;
margin: 78px auto;
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
/*.height{
height: 165px;
}*/
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 45px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 48px;
}
.single_us .single_us_img{
float: none;
}
.single_us .single_us_img img{
margin: 0 auto;
display: block;
}
.single_us .single_us_img:after {
left: 34%;
width: 35%;
}
.single_us .single_us_text{
text-align: center;
padding: 0;
margin-top: 25px;
}
.single_us{
padding-right: 0;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 88px;
height: 88px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 12px 3px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
.single-news-item .post ul{
text-align: center;
}
.single-news-item .post ul li{
margin: 10px 0 0 0;
}
/***** Course Details *****/
.course-details-thumbnail{
display: none;
}
.course-details-top-banner .course-details-content{
margin: 0;
}
.course-details-thumbnail img {
max-width: 100%;
padding: 12px;
}
ul.course-details-tab-content li a{
padding: 10px 0;
}
ul.course-details-tab-content li.active{
border: 1px solid #1b2d5a;
}
.nav.nav-justified>li>a>.quote{
display: none;
}
ul#nav-tabs:before{
content: none;
}
ul.course-details-tab-content li a p{
overflow-wrap: break-word;
padding: 0 3px;
}
.main-courses-section .tabs-course-booking-btn a.btn{
padding: 10px 21px;
}
.customNavigation a.next {
right: 9.2%;
}
.customNavigation a.prev {
right: 23.2%;
}
/**** Courses ****/
button.btn.btn-link.filter-button{
font-size: 13px;
}
.course-listing-tab{
margin-top: 55px;
}
.courses-selection-tab hr{
display: none;
}
#courses .btn-theme-transparent{
width: 100%;
display: block;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 4px
}
/** Client Info **/
.dashboard{
padding: 58px 4px 0;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 12px;
font-size: 18px;
}
.dashboard-tabs li h4{
font-size: 11px;
display: block;
white-space: normal;
width: 45px;
text-align: center;
margin: 0 auto;
}
.card-form-content, .billing-form-content{
padding: 16px 9px;
}
.ibox-footer.client-info-save button,
.ibox-footer.client-info-save .billing-details-edit-btn{
margin: 17px 0px 0px !important;
width: 94%;
}
.ibox-footer.client-info-save .btn-cancel,
.ibox-footer.client-info-save .btn-save{
text-align: center !important;
float: none !important;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course selection page **/
.course-select-details{
margin: 0 0 40px;
}
.available-course-date{
display: table;
width: 100%;
}
.available-course-date-content a{
text-align: center;
}
.available-course-date .date-head{
font-size: 11px;
}
.available-course-date .date-head {
padding: 22px 6px;
font-size: 15px;
float: left;
width: 100%;
}
.available-course-date-content{
width: 100%;
}
.date-plus-seats .event-date .date-and-time p, .duration .date-and-time p{
font-size: 11px;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** om header buttons search/ham-burger/cart **/
.om-header-buttons .cart{
width: 60px;
}
.om-header-buttons .cart > a{
background: none;
width: 58px;
padding: 14.5px 3px;
}
.om-header-buttons .cart_block.block.exclusive {
width: 290px;
right: 5px;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.thumbnail .price ins{
font-size: 11px;
}
.rateandprice{
margin: 7px 0 !important
}
#top-rated-owl .thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 13px;
}
.mui-textfield--float-label > label.new-label{
position: relative;
top: -62px;
}
/** Schedule **/
.schedule-content-slide .carousel-inner .item{
margin: 36px 0 0;
}
.schedule-content h2{
white-space: normal;
width: 100%;
}
/** All Events Listing **/
.all-events-listing {
margin: 40px 0;
}
.all-events-listing .global-inner-heading h1{
padding: 0;
}
.all-events-listing .global-inner-heading h1:before,
.all-events-listing .global-inner-heading h1:after{
content: none;
}
.all-events-listing .available-course-date .date-head{
float: none;
display: inline-table;
width: 100%;
padding: 10px 6px;
height: 75px;
}
.all-events-listing .available-course-date {
display: table;
width: 100%;
}
.all-events-listing .event-listing-title{
width: 70%;
float: none;
}
.all-events-listing .course-event-price{
width: 30%;
float: right;
height: 116px;
}
.all-events-listing .event-listing-title h2{
width: 142px;
}
.all-events-listing .course-event-price p{
padding: 45px 0;
font-size: 18px;
}
.all-events-listing .event-listing-date .course-event-price:before{
right: 0;
left: 0;
margin: auto;
top: 0;
bottom: 0;
width: 65px;
height: 65px;
}
}
@media only screen and (min-width:321px) and (max-width:480px) {
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none;
display: none;
}
.social-links ul {
text-align: center
}
.social-links ul li a {
padding: 6px 28px
}
.logo img {
width: 100%
}
.mid-header .contact-details {
padding: 2px 0;
width: 50%;
}
.mid-header .contact-details .contact {
text-align: center
}
.mid-header .contact-details .contact:first-child {
padding-right: 46px;
text-align: center;
margin: 0 0 10px;
}
.mid-header .contact-details .contact .contact-mail-heading,
.mid-header .contact-details .contact .contact-phone-heading {
text-align: left;
}
.mid-header-contacts{
margin: 0 0 5px;
display: none;
}
.signup-login{
float: right;
}
.signup-login ul.bdr {
float: none;
}
.cart {
width: 110px;
margin: 0;
float: right;
}
.cart > a{
padding: 9px 14px;
display: block;
background: rgba(255, 255, 255, 0.07);
border-left: 0;
width: 110px;
text-align: center;
}
.view_more_768{
display: none;
}
.signup-login .bdr li a{
text-align: center;
}
.om-header-buttons {
position: absolute !important;
display: inline-block !important;
/*top: -12px !important;*/
top: -45px !important;
right: 12% !important;
}
.main-nav {
position: absolute;
top: 86px;
right: 0
}
.main-nav .navbar {
background: 0 0
}
.navbar-menu-items {
background: #ababab;
color: #1b2d5a
}
.main-nav .navbar .navbar-collapse .active a {
color: #1b2d5a
}
.mobileview-center {
text-align: center
}
.navbar-default .navbar-nav>li>a {
color: #1b2d5a
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 9%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 10px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 10px;
overflow: hidden;
height: 29px;
}
.carousel-caption p.carousel-search-para{
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px*/
height: 214px;
}
.slider #owl-slider-olive .item img{
width: 146%;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -80px;
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
.banner-tabs #exTab3 .nav-pills li a i {
display: none
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px
}
.sub-footer {
text-align: center
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 10px
}
.sub-footer-nav li::before {
margin: -3px 4px
}
.sub-footer-nav {
float: none;
text-align: center;
display: inline-block;
vertical-align: middle
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
.signup-login .bdr li a {
text-align: center;
}
.signup-login .bdr li:nth-child(even) {
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.quick-search-wrapper {
height: 190px;
}
.quick-search-autocomplete .inner-wrapper {
padding: 12px 35px;
}
.quick-search-autocomplete .inner-wrapper .course-details-content {
margin: 13px 5px 15px 15px !important;
width: 65%;
}
.quick-search-autocomplete .course-details-thumbnail img {
max-width: 65px;
}
.quick-search-autocomplete .inner-wrapper h2.course-details-heading {
font-size: 12px !important;
font-weight: normal;
}
.at-login-form .modal-dialog {
width: 94%;
margin: 78px auto;
}
.cart_block.block.exclusive {
width: 90%;
}
.cart_block .cart-buttons a {
width: 46.8%;
line-height: 30px;
border: 1px solid rgba(255, 255, 255, 0.13);
}
.cart_block .cart-prices .cart-prices-line{
padding: 0;
}
.cart_block .cart-buttons a#button_order_cart,
.cart_block .cart-buttons a.button_order_cart{
padding: 0;
font-size: 11px;
}
.om-header-buttons{
right: 31% !important;
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
.height{
height: auto;
}
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 70px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 40px;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 71px;
height: 71px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 4px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
/***** Course Details *****/
.course-details-thumbnail{
display: none;
}
.course-details-thumbnail img {
max-width: 100%;
padding: 12px;
}
.course-details-top-banner .course-details-content{
margin: 0;
}
ul.course-details-tab-content li a{
padding: 10px 0;
}
ul.course-details-tab-content li.active{
border: 1px solid #1b2d5a;
}
.nav.nav-justified>li>a>.quote{
display: none;
}
ul#nav-tabs:before{
content: none;
}
ul.course-details-tab-content li a p{
overflow-wrap: break-word;
padding: 0 3px;
}
.globalpagination .pagination>li:first-child>a,
.globalpagination .pagination>li:last-child>a,
.main-courses-section .pagination>li:first-child>a,
.main-courses-section .pagination>li:last-child>a {
padding: 7px 6px;
}
.rateandprice{
margin: 8px 0 !important;
}
.customNavigation a.next {
right: 29px;
}
.customNavigation a.prev {
right: 73px;
}
/**** Courses ****/
button.btn.btn-link.filter-button{
font-size: 13px;
}
.course-listing-tab{
margin-top: 55px;
}
.courses-selection-tab hr{
display: none;
}
/** Client Info **/
.dashboard{
padding: 58px 4px 0;
}
.dashboard-tabs > li > a .glyphicon {
color: #1b2d5a;
padding-top: 12px;
font-size: 18px;
}
.dashboard-tabs li h4{
font-size: 11px;
display: block;
white-space: normal;
width: 45px;
text-align: center;
margin: 0 auto;
}
.card-form-content, .billing-form-content{
padding: 16px 9px;
}
.client-info-save{
text-align: center;
}
.client-info-save .btn-save,
.client-info-save .btn-cancel{
float: none !important;
}
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course Selection **/
.course-select-details{
margin: 0 0 40px;
}
.available-course-date{
display: table;
width: 100%;
}
.available-course-date-content a{
text-align: center;
}
.available-course-date .date-head{
font-size: 11px;
}
.available-course-date .date-head {
padding: 22px 6px;
font-size: 15px;
float: left;
width: 100%;
}
.available-course-date-content{
width: 100%;
}
.date-plus-seats .event-date .date-and-time p, .duration .date-and-time p{
font-size: 11px;
float: none;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** om header buttons search/ham-burger/cart **/
.om-header-buttons .cart{
width: 60px;
}
.om-header-buttons .cart > a{
background: none;
width: 58px;
padding: 14.5px 3px;
}
.om-header-buttons .cart_block.block.exclusive {
width: 290px;
right: 5px;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.thumbnail .price ins{
font-size: 14px;
}
#top-rated-owl .thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 16px;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
/** Schedule **/
.schedule-content-slide .carousel-inner .item{
margin: 36px 0 0;
}
.schedule-content h2{
white-space: normal;
width: 100%;
}
/** All Events Listing **/
.all-events-listing {
margin: 40px 0;
}
.all-events-listing .global-inner-heading h1{
padding: 0;
}
.all-events-listing .global-inner-heading h1:before,
.all-events-listing .global-inner-heading h1:after{
content: none;
}
.all-events-listing .available-course-date .date-head{
float: none;
display: inline-table;
width: 100%;
padding: 10px 6px;
height: 75px;
}
.all-events-listing .available-course-date {
display: table;
width: 100%;
}
.all-events-listing .event-listing-title{
width: 70%;
float: none;
}
.all-events-listing .course-event-price{
width: 30%;
float: right;
height: 116px;
}
.all-events-listing .event-listing-title h2{
width: 199px;
}
.all-events-listing .course-event-price p{
padding: 45px 0;
font-size: 18px;
}
.all-events-listing .event-listing-date .course-event-price:before{
right: 0;
left: 0;
margin: auto;
top: 0;
bottom: 0;
width: 65px;
height: 65px;
}
}
@media only screen and (min-width:481px) and (max-width:768px) {
.view_less_768{
display: none !important;
}
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.top-header-address p {
text-align: center;
font-size: 12px
}
.social-links {
float: none
}
.social-links ul {
text-align: center
}
.social-links ul li a {
/*padding: 6px 28px*/
padding: 5px 18px;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 15px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -99px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
.slider {
margin-top: 0
}
.carousel-caption {
padding-top: 0;
/*top: 5%;*/
top: 9%;
left: 0;
right: 0
}
.carousel-caption h1 {
font-size: 20px;
/*margin: 0 0 5px*/
margin: 0 0 9px;
}
.carousel-caption p {
font-size: 10px;
padding: 0 19px;
/*margin: 0 0 5px;*/
margin: 0 0 3px;
overflow: hidden;
height: 40px;
}
.banner-send-btn {
padding: 6px 30px
}
.slider #owl-slider-olive .owl-buttons div {
display: none
}
.slider #owl-slider-olive .item {
/*height: 201px;*/
height: 230px;
}
.slider-search-field {
height: 37px!important;
font-size: 10px
}
.slider-search-btn {
padding: 9px 24px!important;
height: 37px!important
}
.banner-tabs {
margin-top: -80px
}
.banner-tabs #exTab3 .tab-content {
padding: 15px 16px
}
.banner-tabs #exTab3 .nav-pills li a {
font-size: 12px;
padding: 8px 5px;
}
/*.banner-tabs #exTab3 .nav-pills li a i {
display: none
}*/
.banner-tabs #exTab3 .nav-pills li a i {
font-size: 15px;
top: 0;
}
.banner-tabs #exTab3 .nav-pills li {
background: #ced1de
}
.banner-tabs #exTab3 .nav-pills li.active {
background: #08185c
}
.banner-tabs #exTab3 .tab-content .course-date-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-field .rail-select .select-side,
.banner-tabs #exTab3 .tab-content .course-seat-field .rail-select .select-side {
width: 42px
}
.company-details {
margin-top: 40px;
margin-bottom: 40px
}
.company-details .row {
display: block
}
.company-details .row .col-md-4 {
margin-left: 15px;
padding-right: 0;
margin-right: 15px
}
.company-details .row .col-md-4 .company-info .company-info-heading:after {
content: '';
position: absolute;
background: #fff;
width: 110px;
height: 3px;
top: 37.1%;
left: 0;
right: 0;
margin: auto;
z-index: 1
}
.course-listing .course-heading h2,
.safety-details-sec .safety-content h2,
.global-heading > h2 {
font-size: 20px
}
/*.course-listing .course-heading hr,
.safety-details-sec .safety-content hr {
left: 21.3%
}*/
.course-listing .course-heading p,
.safety-details-sec .safety-content p {
width: 100%
}
.course-listing,
.news-sec,
.safety-details-sec {
margin-bottom: 40px
}
.global-heading .description p {
width: 90%;
margin: 0 auto 20px;
}
.news-details h3.news-heading {
font-size: 18px
}
/*.news-sec .container {
padding: 27px 20px 27px
}*/
.news-sec .container .news-button {
margin-top: 12px
}
.course-listing .course-heading p {
margin-bottom: 40px
}
.about-section-text {
padding-left: 20px
}
.about-section-text h2 {
font-size: 20px;
padding: 20px 0 25px
}
.about-section-text p {
padding: 25px 0 0
}
.about-main-heading {
padding: 0
}
.about-section-content {
padding: 0 0 6px
}
.about-section-content h3 {
font-size: 14px
}
.about-main-heading hr {
left: 22.5%
}
.tc-padding {
padding: 40px 0
}
.osafety-contact-form h2 {
padding: 0 0 25px
}
.osafety-contact-form p {
padding: 25px 0 0
}
.osafety-contact-form hr {
left: 21.7%
}
#contact-form .btn {
margin: 10px 0 0
}
.footer-column {
padding: 60px 15px
}
.f-column-widget {
margin-bottom: 50px;
min-height: 255px;
}
.sub-footer {
text-align: center
}
.sub-footer p {
float: none;
text-align: center;
padding: 0 0 12px
}
.sub-footer-nav li a {
font-size: 10px
}
.sub-footer-nav li::before {
margin: -3px 4px
}
.sub-footer-nav {
float: none;
text-align: center;
display: inline-block;
vertical-align: middle
}
/**** ABOUT US *****/
.slider .top-banner {
padding: 32px 0 16px;
background-position: 0 0;
}
.height{
height: auto;
}
.slider .top-banner .inner-wrapper {
padding: 8px;
}
.slider .top-banner .inner-wrapper .breadcrumb{
font-size: 15px;
margin-bottom: 0;
}
.slider .top-banner .inner-wrapper h2{
font-size: 30px;
}
.aboutus-content{
margin: 55px 0;
}
.global-inner-heading h1{
padding: 0 0 70px;
}
.left-single-us{
margin: 0;
}
.tabs-course-booking-btn{
margin: 0 0 40px;
}
.tabs-course-booking-btn a{
padding: 10px 48px;
}
/***** News *******/
.news-wrapper {
margin: 55px 0;
}
.theme-large-sidebar.R-P-fix{
padding: 0;
}
.single-news-item .date {
width: 71px;
height: 71px;
text-align: center;
color: #1b2d5a;
-webkit-transform: translateX(0);
transform: translateX(0);
background: #f0f0f0;
left: 0;
right: 0;
margin: 0 auto;
border-radius: 50%;
padding: 4px;
border: 2px solid #1b2d5a;
}
.single-news-item .date b{
font-size: 26px;
}
.single-news-page .news-listing-main-content{
margin: 0 0 30px;
}
.news-listing-main-content #ajax-grid-next-button{
margin: 0 !important;
}
/*.single-news-item .post ul{
text-align: center;
}
.single-news-item .post ul li{
margin: 10px 0 0 0;
}*/
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
/** Course Selection **/
.course-select-details{
margin: 0 0 40px;
}
.datePicker table{
min-height: 309px;
}
/** Client Info **/
.client-info-save{
text-align: center;
}
/*.client-info-save .btn-save,
.client-info-save .btn-cancel{
float: none !important;
}*/
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins{
font-size: 13px;
}
#courses .thumbnail .price ins{
font-size:13px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 80%;
}
.btn-remove-cart{
font-size: 8px;
padding: 5px;
}
}
@media only screen
and (min-width: 481px)
and (max-width: 768px)
and (orientation: landscape) {
.top-address-sec,
.top-socio-sec{
width: 50%;
}
.top-address-sec .top-header-address p{
text-align: left;
/*font-size: 11px;*/
font-size: 10px;
}
.main-nav{
display: block;
}
.mid-header{
padding: 5px;
}
.logo_sec{
width: 25%;
float: left;
}
.mid-header-contacts{
width: 75%;
}
.mid-header .logo {
padding: 29px 0;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 15px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -103px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
/** Shopping cart **/
#voucher .input-group{
display: table-caption;
}
#voucher input{
width: 100% !important;
margin: 0 0 10px !important;
}
.wizard > .steps > ul > li.current:before{
content: none;
}
.wizard > .steps > ul > li:last-child.current::before{
content: none;
}
/** Client Info **/
.client-info-save{
text-align: center;
}
.client-info-save .btn-save button,
.client-info-save .btn-cancel button{
margin-top: 8px !important;
margin-bottom: 8px !important;
min-width: 212px;
width: auto;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** Sign up / sign in **/
.at-login-form .frgt-pswd,
.at-login-form .ta-l{
text-align: center;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins,
#courses .thumbnail .price ins{
font-size: 14px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 80%;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
}
@media only screen and (min-width: 769px) and (max-width: 1024px){
.logo img {
width: auto;
}
.slider{
margin: 0;
}
.view_less_768{
display: none !important;
}
.buttonandinclude .buttons {
width: 100%;
}
#courses .btn-theme-transparent {
display: block;
padding-right: 5px;
padding-left: 5px;
}
.buttonandinclude .f-price-sec {
padding: 0 15px;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 10px;
}
.om-header-buttons {
/*top: -45px !important;
right: 2.5% !important;*/
top: -99px !important;
right: 1.5% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px !important;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.signup-login .bdr li{
float: left;
}
.signup-login .cart_block{
/*right: 63px;*/
right: 0;
}
.footer-column .col-sm-6 {
min-height: 325px;
}
.footer-column .col-sm-6:nth-child(3),
.footer-column .col-sm-6:nth-child(4)
{
min-height: auto;
}
.social-icons li a {
height: 33px;
line-height: 33px;
text-align: center;
width: 33px;
border-radius: 100%;
border-radius: 100%;
border: 1px solid rgba(255, 255, 255, .2);
color: rgba(255, 255, 255, .2);
text-decoration: none;
}
.slider #owl-slider-olive .item{
height: 345px;
}
#owl-slider-olive .carousel-caption{
top: 2%;
}
.slider #owl-slider-olive .item img{
width: 120%;
}
.banner-tabs #exTab3 .tab-content .course-button button{
font-size: 13px;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
/** Courses details **/
.slider .course-details-top-banner{
padding: 38px 0;
}
.rateandprice{
margin: 8px 0 !important;
}
.thumbnail .price ins{
font-size: 13px;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
/** Course details **/
.customNavigation a.prev {
right: 75px;
}
.customNavigation a.next {
right: 30px;
}
}
@media only screen and (min-width: 1025px) and (max-width: 1199px){
.slider{
margin: 0;
}
.slider #owl-slider-olive .owl-buttons div{
top: 28%;
}
.logo img {
width: 100%;
}
.view_less_768{
display: none !important;
}
.mid-header{
padding: 5px;
}
.mid-header-left-section{
margin: 0 47px 0 0;
}
.social-links {
float: right;
}
.mid-header .contact-details {
float: right;
}
.om-header-buttons li{
display: block !important;
margin: 0 0 8px;
}
.om-header-buttons {
top: -97px !important;
right: 1.2% !important;
}
.cart{
width: auto;
}
.cart > a{
padding: 9px 15px 8px;
}
.signup-login{
float: right;
}
.signup-login .bdr li:nth-child(odd){
border: none;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-login .bdr li:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.07);
/*border-left: 1px solid rgba(255, 255, 255, 0.44);*/
}
.signup-login .bdr li{
float: left;
}
.signup-login .bdr li.cart-li-sec{
border: 0;
}
.footer-column .col-sm-6 {
min-height: 325px;
}
.footer-column .col-sm-6:nth-child(3),
.footer-column .col-sm-6:nth-child(4)
{
min-height: auto;
}
/** Purchase Success **/
.buy-success-wrapper{
margin: 0;
}
.hide-sign-inup{
display: none;
}
.show-cp-1199{
display: block;
}
.mui-textfield--float-label > label.new-label{
width: 60%;
}
.cart.view_more_768 a.change-password-btn{
display: none;
}
}
@media only screen and (min-width: 1200px){
.view_less_768{
display: none !important;
}
} | 0.382026 | 0.063628 |
html {
font-family: 'Nunito', sans-serif;
font-size: 16px;
scroll-behavior: smooth;
}
body {
background-color: #fff;
margin: 0;
min-height: 100vh;
padding-bottom: 20rem;
position: relative;
}
.container {
margin: 0 1rem;
}
hr {
margin: 2rem 0;
}
br {
clear: both;
}
a {
color: #78a1bb;
text-decoration: underline;
}
span {
background-color: #eee;
}
h1 {
font-size: 1.5rem;
}
button {
box-shadow: none;
border: solid 2px;
border-radius: 0.5rem;
padding: 0.5rem 1.5rem;
margin: 0.6rem 0;
font-family: inherit;
font-size: 1.2rem;
font-weight: 100;
transition-duration: 0.2s;
}
nav {
background-color: #32292f;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4rem;
padding: 0 2rem;
z-index: 2;
}
nav img {
border-radius: 25%;
height: 2.5rem;
margin: 0.75rem 0;
}
nav button {
background-color: #32292f;
border-color: #f4f4f4;
color: #f4f4f4;
float: right;
}
nav button:hover {
border-color: #78a1bb;
color: #78a1bb;
}
.block-header {
background-image: url("../img/contra_back.png");
background-size: cover;
padding-top: 4rem;
width: 100%;
height: 8rem;
overflow: hidden;
}
.block-header h1 {
color: #fff;
font-size: 3rem;
font-weight: 200;
line-height: 8rem;
text-align: center;
margin: auto;
}
.g-left {
background-image: linear-gradient(45deg, #FC5C7D, #6A82FB);
}
.g-mid {
background-image: linear-gradient(45deg, #4e54c8, #8f94fb);
}
.g-right {
background-image: linear-gradient(45deg, #6A82FB, #FC5C7D);
}
section {
display: flex;
flex-direction: column;
}
.card {
border-radius: 5px;
color: #fff;
flex: 1 1;
margin: 1rem 0;
padding: 2rem;
}
.card h2 {
display: inline-block;
margin: 0;
margin-bottom: 0.5rem;
}
.card a {
color: #fff;
float: right;
line-height: 1.5rem;
}
.card p {
font-size: 1.2rem;
margin: 0.2rem 0;
}
.sidebar {
width: 250px;
margin: auto;
}
.sidebar a {
font-size: 1.2rem;
}
.docs {
flex: 1 1;
}
.docs .card {
color: #333;
}
.docs .card a {
color: #333;
float: none;
}
footer {
background-color: #32292f;
min-height: 10rem;
margin-top: 5rem;
padding: 2rem;
color: #f4f4f4;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
footer > p {
color: #93a3b1;
}
@media screen and (min-width: 512px) {
.container {
width: 30rem;
margin: auto;
}
.block-header {
height: 15rem;
}
.block-header h1 {
line-height: 15rem;
}
nav {
padding: 0 3rem;
}
footer {
padding: 2rem 3rem;
}
}
@media screen and (min-width: 768px) {
nav {
padding: 0 6rem;
}
}
@media screen and (min-width: 1000px) {
.container {
width: 90%;
}
nav {
padding: 0 8rem;
}
section {
flex-direction: row;
}
.card {
margin: 0.5rem;
}
.sidebar {
border-right: 1px solid #555;
margin: 0;
}
.docs .card {
margin-left: 4rem;
}
footer {
padding: 2rem 15%;
}
footer hr {
margin: 0 15%;
}
}
@media screen and (min-width: 1600px) {
.container {
width: 80rem;
}
} | docs/css/site.css | html {
font-family: 'Nunito', sans-serif;
font-size: 16px;
scroll-behavior: smooth;
}
body {
background-color: #fff;
margin: 0;
min-height: 100vh;
padding-bottom: 20rem;
position: relative;
}
.container {
margin: 0 1rem;
}
hr {
margin: 2rem 0;
}
br {
clear: both;
}
a {
color: #78a1bb;
text-decoration: underline;
}
span {
background-color: #eee;
}
h1 {
font-size: 1.5rem;
}
button {
box-shadow: none;
border: solid 2px;
border-radius: 0.5rem;
padding: 0.5rem 1.5rem;
margin: 0.6rem 0;
font-family: inherit;
font-size: 1.2rem;
font-weight: 100;
transition-duration: 0.2s;
}
nav {
background-color: #32292f;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4rem;
padding: 0 2rem;
z-index: 2;
}
nav img {
border-radius: 25%;
height: 2.5rem;
margin: 0.75rem 0;
}
nav button {
background-color: #32292f;
border-color: #f4f4f4;
color: #f4f4f4;
float: right;
}
nav button:hover {
border-color: #78a1bb;
color: #78a1bb;
}
.block-header {
background-image: url("../img/contra_back.png");
background-size: cover;
padding-top: 4rem;
width: 100%;
height: 8rem;
overflow: hidden;
}
.block-header h1 {
color: #fff;
font-size: 3rem;
font-weight: 200;
line-height: 8rem;
text-align: center;
margin: auto;
}
.g-left {
background-image: linear-gradient(45deg, #FC5C7D, #6A82FB);
}
.g-mid {
background-image: linear-gradient(45deg, #4e54c8, #8f94fb);
}
.g-right {
background-image: linear-gradient(45deg, #6A82FB, #FC5C7D);
}
section {
display: flex;
flex-direction: column;
}
.card {
border-radius: 5px;
color: #fff;
flex: 1 1;
margin: 1rem 0;
padding: 2rem;
}
.card h2 {
display: inline-block;
margin: 0;
margin-bottom: 0.5rem;
}
.card a {
color: #fff;
float: right;
line-height: 1.5rem;
}
.card p {
font-size: 1.2rem;
margin: 0.2rem 0;
}
.sidebar {
width: 250px;
margin: auto;
}
.sidebar a {
font-size: 1.2rem;
}
.docs {
flex: 1 1;
}
.docs .card {
color: #333;
}
.docs .card a {
color: #333;
float: none;
}
footer {
background-color: #32292f;
min-height: 10rem;
margin-top: 5rem;
padding: 2rem;
color: #f4f4f4;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
footer > p {
color: #93a3b1;
}
@media screen and (min-width: 512px) {
.container {
width: 30rem;
margin: auto;
}
.block-header {
height: 15rem;
}
.block-header h1 {
line-height: 15rem;
}
nav {
padding: 0 3rem;
}
footer {
padding: 2rem 3rem;
}
}
@media screen and (min-width: 768px) {
nav {
padding: 0 6rem;
}
}
@media screen and (min-width: 1000px) {
.container {
width: 90%;
}
nav {
padding: 0 8rem;
}
section {
flex-direction: row;
}
.card {
margin: 0.5rem;
}
.sidebar {
border-right: 1px solid #555;
margin: 0;
}
.docs .card {
margin-left: 4rem;
}
footer {
padding: 2rem 15%;
}
footer hr {
margin: 0 15%;
}
}
@media screen and (min-width: 1600px) {
.container {
width: 80rem;
}
} | 0.562657 | 0.096535 |
@import url(http://fonts.googleapis.com/css?family=Questrial|Pacifico|Sanchez|Roboto:400,100,700);/*font-family: 'Questrial', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Muli', sans-serif;
font-family: 'Archivo Narrow', sans-serif;
font-family: 'Maven Pro', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Sanchez', serif;*/
/* TYPOGRAPHY */
body {
font-size: 1em;
}
.mateo-header {
font-family: 'Pacifico', cursive;
}
.masthead-title {
margin: .3em 0;
}
.masthead-title a {
font-family: 'Sanchez', serif;
}
h1 {
font-family: 'Questrial', sans-serif;
font-family: 'Sanchez', serif;
}
h2, h3 {
font-family: 'Questrial', sans-serif;
}
p, li, time {
font-family: 'Roboto', sans-serif;
}
a.nav-link {
font-family: 'Sanchez', serif;
color: #C03B4A;
}
.about-page h1 {
font-family: 'Pacifico', cursive;
}
/* CONTAINER */
.container {
max-width: 50rem;
}
/* NAV */
.masthead {
margin-bottom: 2rem;
}
.masthead-title {
float: left;
}
.navbar.nav {
float: right;
list-style: none;
}
ul.navbar.nav {
font-size: 20px;
}
.navbar.nav li {
display: inline-block;
margin: 0 1rem;
}
/* LAYOUTS */
article.page {
margin-top: 1rem;
}
@media only screen and (min-width: 60em) {
.work-teaser {
display: inline-block;
vertical-align: top;
width: 48.5%;
}
.work-teaser:nth-of-type(odd) {
margin-right: 2%;
}
}
/* BUTTONS */
.btn {
font-family: 'Pacifico', cursive;
font-size: 1.6em;
}
/* HERO */
.hero {
width: 100%;
height: 320px;
background-size: cover;
}
.hero-main {
background-image: url('/public/images/rivera-science-bg.jpg');
/*background-color: rgba(120, 14, 8, 1);*/
height: 320px;
background-size: cover;
background-position: 0% 48%;
}
.hero-main h2 {
font-size: 2rem;
color: #ffffff;
padding: 4.5rem 0 0;
}
.hero-about {
background-position: 0px -64px;
}
.hero.hero-work {
background-position: 0 525px;
}
.hero-blog {
background-position: 0% 84%;
}
.parallax {
background-attachment: fixed !important;
}
/* IMAGES */
.about-portrait {
float: right;
border-radius: 50%;
width: 33%;
}
.emoji {
display: inline;
}
/* FRONT PAGE */
.feature {
float: left;
width: 200px;
height: 200px;
border-radius: 50%;
text-align: center;
}
.feature:hover {
background: #C03B4A;
}
.feature h3 {
margin-top: 70px;
color: #000;
text-transform: uppercase;
}
.feature:hover h3 {
color: #fff;
}
.first-feature {
margin: 0 20px 20px 0;
}
.portfolio-feature {
background-image: url( /public/images/rivera-northwall.jpg );
background-size: 212%;
background-position: -121% 0%;
}
.mks-feature {
background-image: url( /public/images/mks-logo.jpg );
background-size: 139%;
background-position: 47% 18%;
}
.mks-feature h3 {
margin-top: 60px;
}
.featured-section {
margin-right: 2%;
}
@media only screen and (max-width: 60em) {
.featured-section, .resources-section {
float: left;
width: 100%;
}
}
@media only screen and (min-width: 60em) {
.featured-section, .resources-section {
float: left;
width: 49%;
}
}
/* WORK PAGE */
.work-teaser figure {
width: 100%;
margin: 0;
clear: both;
}
h3.work-type {
margin-top: 0;
float: left;
}
a.work-link {
float: right;
}
.work-link span {
font-family: 'Pacifico', cursive;
}
.work-status {
text-align: center;
margin: 0 0 20px;
}
/* FOOTER */
footer {
text-align: center;
}
.icons-row svg {
margin: .5rem;
} | public/css/styles.css | @import url(http://fonts.googleapis.com/css?family=Questrial|Pacifico|Sanchez|Roboto:400,100,700);/*font-family: 'Questrial', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Muli', sans-serif;
font-family: 'Archivo Narrow', sans-serif;
font-family: 'Maven Pro', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Sanchez', serif;*/
/* TYPOGRAPHY */
body {
font-size: 1em;
}
.mateo-header {
font-family: 'Pacifico', cursive;
}
.masthead-title {
margin: .3em 0;
}
.masthead-title a {
font-family: 'Sanchez', serif;
}
h1 {
font-family: 'Questrial', sans-serif;
font-family: 'Sanchez', serif;
}
h2, h3 {
font-family: 'Questrial', sans-serif;
}
p, li, time {
font-family: 'Roboto', sans-serif;
}
a.nav-link {
font-family: 'Sanchez', serif;
color: #C03B4A;
}
.about-page h1 {
font-family: 'Pacifico', cursive;
}
/* CONTAINER */
.container {
max-width: 50rem;
}
/* NAV */
.masthead {
margin-bottom: 2rem;
}
.masthead-title {
float: left;
}
.navbar.nav {
float: right;
list-style: none;
}
ul.navbar.nav {
font-size: 20px;
}
.navbar.nav li {
display: inline-block;
margin: 0 1rem;
}
/* LAYOUTS */
article.page {
margin-top: 1rem;
}
@media only screen and (min-width: 60em) {
.work-teaser {
display: inline-block;
vertical-align: top;
width: 48.5%;
}
.work-teaser:nth-of-type(odd) {
margin-right: 2%;
}
}
/* BUTTONS */
.btn {
font-family: 'Pacifico', cursive;
font-size: 1.6em;
}
/* HERO */
.hero {
width: 100%;
height: 320px;
background-size: cover;
}
.hero-main {
background-image: url('/public/images/rivera-science-bg.jpg');
/*background-color: rgba(120, 14, 8, 1);*/
height: 320px;
background-size: cover;
background-position: 0% 48%;
}
.hero-main h2 {
font-size: 2rem;
color: #ffffff;
padding: 4.5rem 0 0;
}
.hero-about {
background-position: 0px -64px;
}
.hero.hero-work {
background-position: 0 525px;
}
.hero-blog {
background-position: 0% 84%;
}
.parallax {
background-attachment: fixed !important;
}
/* IMAGES */
.about-portrait {
float: right;
border-radius: 50%;
width: 33%;
}
.emoji {
display: inline;
}
/* FRONT PAGE */
.feature {
float: left;
width: 200px;
height: 200px;
border-radius: 50%;
text-align: center;
}
.feature:hover {
background: #C03B4A;
}
.feature h3 {
margin-top: 70px;
color: #000;
text-transform: uppercase;
}
.feature:hover h3 {
color: #fff;
}
.first-feature {
margin: 0 20px 20px 0;
}
.portfolio-feature {
background-image: url( /public/images/rivera-northwall.jpg );
background-size: 212%;
background-position: -121% 0%;
}
.mks-feature {
background-image: url( /public/images/mks-logo.jpg );
background-size: 139%;
background-position: 47% 18%;
}
.mks-feature h3 {
margin-top: 60px;
}
.featured-section {
margin-right: 2%;
}
@media only screen and (max-width: 60em) {
.featured-section, .resources-section {
float: left;
width: 100%;
}
}
@media only screen and (min-width: 60em) {
.featured-section, .resources-section {
float: left;
width: 49%;
}
}
/* WORK PAGE */
.work-teaser figure {
width: 100%;
margin: 0;
clear: both;
}
h3.work-type {
margin-top: 0;
float: left;
}
a.work-link {
float: right;
}
.work-link span {
font-family: 'Pacifico', cursive;
}
.work-status {
text-align: center;
margin: 0 0 20px;
}
/* FOOTER */
footer {
text-align: center;
}
.icons-row svg {
margin: .5rem;
} | 0.271348 | 0.061452 |
.navigation {
height: 73px;
position: fixed;
width: 100%;
background: #f86f2d;
margin: 0 auto;
top: 0;
left: 0;
z-index: 999;
font-size: 16px;
font-weight: bold;
font-family: 'Times New Roman', Times, serif;
}
section.black{
background-color: #f86f2d;
height: 18% ;
padding: 10px 50px;
}
button {
cursor: pointer;
outline: none;}
.outline {
position: relative;
background: transparent;
color: #28a745;
border:1px solid #28a745;
transition: all 0.2s linear;
text-align: center;
vertical-align: middle;
background-color: transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
}
button .outline a {
text-decoration: none;
}
button .outline .white-blue {
font-weight: 700;
color: #00aeef;
border-color: white;
background: white;
}
.navbar-brand{
padding-bottom: 0px ;
}
.navbar-brand img {
position: relative;
margin-top: 10px;
margin-left: 15px;
width: 100px;
height: 100px;
}
nav {
float: right;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
float: left;
position: relative;
}
nav ul li a,
nav ul li a:visited {
display: block;
padding: 0 20px;
line-height: 70px;
/*background: #262626;*/
color: #ffffff;
text-decoration: none;
}
nav ul li a:hover {
color:#442211;
text-decoration: none;
}
nav ul li a:not(:only-child):after {
padding-left: 4px;
content: ' ▾';
}
nav ul li a {
padding: 15px;
padding-top: 25px;
line-height: 30px;
}
nav ul li ul{
background-color: #f86f2d;
opacity: 0.9;
border-radius: 5%;
margin-top: -10px;
}
nav ul li ul li {
width: 230px;
display: flex;
justify-content: center;
font-size: 16px;
margin-top: 5%;
}
nav ul li ul li a{
padding-top: 2px;
}
nav ul li ul li:hover{
background-color: #faaa3a;
}
.nav-dropdown {
position: absolute;
display: none;
z-index: 1;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
.nav-dropdown ul{
margin-top: 5;
}
/* Mobile navigation */
.nav-mobile {
display: none;
position: absolute;
top: 0;
right: 0;
background: #f86f2d;
/* height: 70px;*/
width: 70px;
}
@media only screen and (max-width: 1200px) {
.nav-mobile {
display: block;
}
.navbar-brand img {
margin-top: -2px;
width: 70px !important ;
height: 100%;
}
nav {
width: 100%;
padding: 0 0 15px;
}
nav ul {
display: none;
background-color: #f86f2d;
}
nav ul li {
float: none;
}
nav ul li a {
padding: 12px;
line-height: 20px;
text-align: center;
}
nav ul li ul li {
width: auto;
margin-top: 0;
}
nav ul li ul li a {
padding-left: 30px;
padding-top: 15px;
}
.nav-dropdown {
position: static;
}
}
@media screen and (min-width: 1200px) {
.nav-list {
display: block !important;
}
}
#nav-toggle {
position: absolute;
left: 18px;
top: 22px;
cursor: pointer;
padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
cursor: pointer;
border-radius: 1px;
height: 5px;
width: 35px;
background: #ffffff;
position: absolute;
display: block;
content: '';
transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
top: -10px;
}
#nav-toggle span:after {
bottom: -10px;
}
#nav-toggle.active span {
background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
top: 0;
}
#nav-toggle.active span:before {
transform: rotate(45deg);
}
#nav-toggle.active span:after {
transform: rotate(-45deg);
}
article {
max-width: 1000px;
margin: 20 auto;
padding: 50px;
} | resilient 2.0/public/styles/othernewnav.css | .navigation {
height: 73px;
position: fixed;
width: 100%;
background: #f86f2d;
margin: 0 auto;
top: 0;
left: 0;
z-index: 999;
font-size: 16px;
font-weight: bold;
font-family: 'Times New Roman', Times, serif;
}
section.black{
background-color: #f86f2d;
height: 18% ;
padding: 10px 50px;
}
button {
cursor: pointer;
outline: none;}
.outline {
position: relative;
background: transparent;
color: #28a745;
border:1px solid #28a745;
transition: all 0.2s linear;
text-align: center;
vertical-align: middle;
background-color: transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
}
button .outline a {
text-decoration: none;
}
button .outline .white-blue {
font-weight: 700;
color: #00aeef;
border-color: white;
background: white;
}
.navbar-brand{
padding-bottom: 0px ;
}
.navbar-brand img {
position: relative;
margin-top: 10px;
margin-left: 15px;
width: 100px;
height: 100px;
}
nav {
float: right;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
float: left;
position: relative;
}
nav ul li a,
nav ul li a:visited {
display: block;
padding: 0 20px;
line-height: 70px;
/*background: #262626;*/
color: #ffffff;
text-decoration: none;
}
nav ul li a:hover {
color:#442211;
text-decoration: none;
}
nav ul li a:not(:only-child):after {
padding-left: 4px;
content: ' ▾';
}
nav ul li a {
padding: 15px;
padding-top: 25px;
line-height: 30px;
}
nav ul li ul{
background-color: #f86f2d;
opacity: 0.9;
border-radius: 5%;
margin-top: -10px;
}
nav ul li ul li {
width: 230px;
display: flex;
justify-content: center;
font-size: 16px;
margin-top: 5%;
}
nav ul li ul li a{
padding-top: 2px;
}
nav ul li ul li:hover{
background-color: #faaa3a;
}
.nav-dropdown {
position: absolute;
display: none;
z-index: 1;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
.nav-dropdown ul{
margin-top: 5;
}
/* Mobile navigation */
.nav-mobile {
display: none;
position: absolute;
top: 0;
right: 0;
background: #f86f2d;
/* height: 70px;*/
width: 70px;
}
@media only screen and (max-width: 1200px) {
.nav-mobile {
display: block;
}
.navbar-brand img {
margin-top: -2px;
width: 70px !important ;
height: 100%;
}
nav {
width: 100%;
padding: 0 0 15px;
}
nav ul {
display: none;
background-color: #f86f2d;
}
nav ul li {
float: none;
}
nav ul li a {
padding: 12px;
line-height: 20px;
text-align: center;
}
nav ul li ul li {
width: auto;
margin-top: 0;
}
nav ul li ul li a {
padding-left: 30px;
padding-top: 15px;
}
.nav-dropdown {
position: static;
}
}
@media screen and (min-width: 1200px) {
.nav-list {
display: block !important;
}
}
#nav-toggle {
position: absolute;
left: 18px;
top: 22px;
cursor: pointer;
padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
cursor: pointer;
border-radius: 1px;
height: 5px;
width: 35px;
background: #ffffff;
position: absolute;
display: block;
content: '';
transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
top: -10px;
}
#nav-toggle span:after {
bottom: -10px;
}
#nav-toggle.active span {
background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
top: 0;
}
#nav-toggle.active span:before {
transform: rotate(45deg);
}
#nav-toggle.active span:after {
transform: rotate(-45deg);
}
article {
max-width: 1000px;
margin: 20 auto;
padding: 50px;
} | 0.50415 | 0.059647 |
input[type=text] {
width: 130px;
box-sizing: border-box;
border: none;
font-size: 15pt;
background-color: white;
padding: 13px 15px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
right: 3px;
}
input[type=text]:focus {
width: 400px;
}
td {
width: 14.28%;
}
section {
margin-top: 5%;
margin-right: 80px;
margin-bottom: 25%;
margin-left: 25%;
z-index: -1;
font-family: Calibri;
font-size: 15pt;
}
/*
#Socrates {
text-align: center;
font-weight: bold;
font-size: 16pt;
margin-left: 10px;
width: 23%;
text-decoration: none;
}
*/
.vertical-menu {
width: 23%;
position: fixed;
font-family: Calibri;
font-size: 15pt;
left: 0px;
box-shadow: 1px 1px 2px black;
}
.vertical-menu a {
background-color: #DA413D;
color: white;
display: block;
padding: 12px;
text-decoration: none;
text-align:center;
}
.vertical-menu a:hover {
background-color: white;
color: #DA413D;
}
/* Social media sidebar */
#sticky-social {
right: 0;
position: fixed;
top: 10%;
margin: 0;
padding: 0;
box-shadow: -1px 1px 2px black;
}
#sticky-social img {
width: 60px;
height: 60p;
margin: 0;
padding: 0;
}
#sticky-social img:hover {
opacity: 0.7;
}
#sticky-social ul {
list-style:none;
margin: 0;
padding: 0;
}
#sticky-social a {
display:block;
line-height: 0;
}
/* Automatic slideshow in main page: */
*{box-sizing: border-box;}
.mySlides {display:none}
.mySlides img {
width: 1097px;
height: 602px;
}
.slideshow-container {
max-width: 1097px;
max-height: 641px;
margin: auto;
position: relative;
z-index: -1;
}
.text {
width: 1097px;
height: 39px;
bottom: 0;
color: white;
font-size: 20px;
padding: 8px;
text-align: center;
position: absolute;
font-family: Calibri;
background: black;
opacity: 0.8;
}
.numbertext {
color: #f2f2f2;
font-size: 13px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.dot {
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #DA413D;
display: inline-block;
transition: background-color 0.6s ease;
position: relative;
}
.active {
background-color: #800000;
}
.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}
}
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}
/* Button down */
.button {
appearance: button;
font-family: Calibri;
font-size: 20px;
color: white;
background: black;
padding: 8px;
text-decoration: none;
text-align: center;
}
.button:hover: {
opacity: 0.7;
text-decoration: underline;
}
/* Description: */
.rTable {
display: table;
width: 100%;
position: relative;
background-color: white;
box-shadow: 1px 1px 2px black;
z-index: -1;
padding: 30px;
margin-top: 1px;
}
.rTableRow {
display: table-row;
margin-top: 30px;
height: 210px;
}
.rTableCell {
display: table-cell;
width: 50%;
margin-left: 15px;
padding: 15px;
}
.rTableCell:hover,
.rTableCell:focus {
box-shadow: 1px 1px 2px black;
z-index: 1;
cursor: pointer;
background-color: whitesmoke;
}
.rTable img {
width: 200px;
height: 200px;
float:left;
margin-right: 8px;
}
.rTableHeading img {
width: 500px;
height: 400px;
}
.rTableHeading {
display: table-caption;
padding: 30px;
margin-bottom: 1px;
background-color: white;
color: black;
box-shadow: 1px 1px 2px black;
margin-bottom: 40px;
}
.head {
background-color: #DA413D;
color: white;
font-size: 20pt;
width: 100%;
height: 50px;
padding: 10px;
text-align:center;
margin-top: 60px;
z-index: -1;
box-shadow: 0px 1px 2px black;
position: relative;
}
.around img {
width: 300px;
height: 300px;
float: left;
}
.around {
float:left;
margin-top: 35px;
position: relative;
box-shadow: 1px 1px 2px black;
background-color: white;
height: auto;
width: 100%;
padding: 30px;
z-index: 0;
}
.around p {
float: left;
width: 150px;
margin-left: 30px;
margin-top: 30px;
}
/* Dropdown list (Country) for around-section: */
.dropdown2 {
height: auto;
margin-right: 150px;
margin-top: 30px;
position: relative;
overflow: hidden;
z-index: 15;
box-shadow: 1px 1px 2px black;
float: right;
}
.dropdown2 .dropbtn2 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: #DA413D;
font-family: Calibri;
width: 180px;
}
.dropdown-content2 {
display: none;
background-color: white;
width: 180px;
box-shadow: 1px 1px 2px black;
height: 462px;
overflow: auto;
z-index: 50;
}
.dropdown-content2 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content2 a:hover {
background-color: #DA413D;
color: white;
}
.show2 {
display: block;
}
/* Dropdown language in around-section */
.dropdown3 {
height: auto;
margin-right: 150px;
margin-top: 20px;
position: relative;
overflow: hidden;
z-index: 2;
box-shadow: 1px 1px 2px black;
float: right;
}
.dropdown3 .dropbtn3 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: #DA413D;
font-family: Calibri;
width: 180px;
}
.dropdown-content3 {
display: none;
background-color: white;
width: 180px;
box-shadow: 1px 1px 2px black;
height: 462px;
overflow: auto;
}
.dropdown-content3 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content3 a:hover {
background-color: #DA413D;
color: white;
}
.show3 {
display: block;
}
/* Up and Down Arrow for buttons */
i {
position: relative;
border: solid white;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 5px;
vertical-align: middle;
float: right;
margin-top: 7px;
color: white;
}
.fa-arrow-down {
transform: rotate(-135deg);
transition: transform 0.3s linear;
}
.fa-arrow-down.open {
transform: rotate(45deg);
transition: transform 0.3s linear;
}
.Devices {
float:left;
margin-top:35px;
margin-bottom: 235px;
position: relative;
width: 100%;
box-shadow: 1px 1px 2px black;
z-index: -1;
padding-top: 20px;
}
.Device {
width: 300px;
float: left;
margin-left: 65.33px;
text-align: center;
padding: 15px;
}
.Device img {
width: 300px;
height: 300px;
float: left;
}
.Device p {
padding-top: 20px;
clear: left;
text-align: center;
}
.footer {
display: block;
background-color: #DA413D;
color: white;
width: 100%;
clear: left;
right: 0;
left: 0;
bottom:0;
height: 100px;
float: none;
z-index: -1;
position: relative;
margin: 0;
}
/* New Header */
.topnav {
background-color: #DA413D;
overflow: hidden;
box-shadow: 0px 1px 2px black;
position: fixed;
top: 0;
left: 0;
width: 100%;
font-family: Calibri;
font-size: 15pt;
z-index: 100;
}
.topnav a {
float: left;
color: white;
text-align: center;
padding: 12px 13px;
text-decoration: none;
font-size: 15pt;
font-family: Calibri;
}
.topnav a:hover, .dropdown:hover .dropbtn, .dropdown1:hover .dropbtn1{
background-color: white;
color: #DA413D;
}
.dropdown:hover i, .dropdown1:hover i {
border-color: #DA413D;
}
.topnav form {
float: left;
display: block;
}
/* Vertical dropdown menu */
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: inherit;
font-family: Calibri;
}
.dropdown-content {
display: none;
position: fixed;
background-color: white;
min-width: 180px;
box-shadow: 0px 8px 16px 0px black;
z-index: 10;
height: 462px;
overflow: auto;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #DA413D;
color: white;
}
.show {
display: block;
}
/* Dropdown language menu */
.dropdown1 {
float: left;
overflow: hidden;
}
.dropdown1 .dropbtn1 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: inherit;
font-family: Calibri;
}
.dropdown-content1 {
display: none;
position: fixed;
background-color: white;
min-width: 180px;
box-shadow: 0px 8px 16px 0px black;
z-index: 2;
height: 462px;
overflow: auto;
}
.dropdown-content1 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content1 a:hover {
background-color: #DA413D;
color: white;
}
.show1 {
display: block;
}
/* Login form */
#username , #password {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal input[type=text] {
color: white;
font-size: 15pt;
}
.modal button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal button:hover {
background-color: #e6b800;
}
.modal .cancelbtn {
width: auto;
padding: 10px 18px;
}
.modal .Signup {
width: auto;
padding: 10px 18px;
}
.modal .Send1 {
width: auto;
padding: 10px 18px;
float:right;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
position: relative;
}
.avatar {
margin: 24px 0 12px 0;
position: relative;
}
.container {
padding: 16px;
color: white;
font-size: 15pt;
font-family: Calibri;
}
span.psw {
float: right;
}
.modal {
display: none;
position: fixed;
z-index: 2;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.close {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 35px;
}
.close:hover , .close:focus {
color: #ffcc00;
cursor: pointer;
}
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s;
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
@media screen and (max-width: 300px) {
span.psw {
display:block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
span.Login {
float: right;
}
#Socrates:hover {
background-color: #DA413D;
color: white;
}
/* Scroll to top button */
#TopBut {
display: none;
position: fixed;
right: 144px;
bottom: 62px;
z-index: 99;
border: none;
outline: none;
background-color: #DA413D;
color: white;
cursor: pointer;
padding: 10pt;
box-shadow: 1px 1px 2px black;
font-size: 12pt;
font-family: Calibri;
}
#TopBut:hover {
background-color: white;
color: red;
}
/* Sign up form */
#email, #pass, #pass-repeat {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal2 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal2 .cancelbtn2 {
background-color: #990000;
color: #ffcc00;
}
.modal2 .cancelbtn2:hover {
background-color: #800000;
}
.modal2 .signup {
float: left;
width: 50%;
}
.modal2 .signup:hover {
background-color: #e6b800;
}
.modal2 .cancelbtn2 {
float: left;
width: 50%;
}
.container2 {
padding: 16px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal2 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content2 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close {
margin: 24px 0px 12px 0px;
position: relative;
}
.close2 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close2:hover,
.close2:focus {
color: #ffcc00;
cursor: pointer;
}
.container2 a {
text-decoration: none;
color: #ffcc00;
}
.container2 a:hover {
text-decoration: underline;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 300px) {
.signup, .cancelbtn2 {
width: 100%;
}
}
/* Password Recovery Form */
#username2, #email2 {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal3 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal3 .cancelbtn3 {
background-color: #990000;
color: #ffcc00;
float: left;
width: 50%;
}
.modal3 .cancelbtn3:hover {
background-color: #800000;
}
.modal3 .Send {
float: left;
width: 50%;
}
.modal3 .Send:hover {
background-color: #e6b800;
}
.container3 {
padding: 16px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal3 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content3 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close2 {
margin: 24px 0px 12px 0px;
position: relative;
margin-bottom: 10px;
}
.close3 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close3:hover,
.close3:focus {
color: #ffcc00;
cursor: pointer;
}
.clearfix2::after {
content: "";
clear: both;
display: table;
}
.descr {
padding: 10px;
margin-top: 30px;
margin-bottom: 20px;
}
@media screen and (max-width: 300px) {
.Send, .cancelbtn3 {
width: 100%;
}
}
/* Sign In Form */
.modal4 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal4 .cancelbtn4 {
background-color: #990000;
color: #ffcc00;
float: left;
width: 100%;
}
.modal4 .cancelbtn4:hover {
background-color: #800000;
}
.container4 {
padding: 16px;
padding-top: 40px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal4 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content4 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close4 {
margin: 24px 0px 12px 0px;
position: relative;
margin-bottom: 10px;
}
.close4 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close4:hover,
.close4:focus {
color: #ffcc00;
cursor: pointer;
}
.clearfix3::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 300px) {
.Send, .cancelbtn3 {
width: 100%;
}
}
#signGoogle , #signFacebook, #signTwitter, #signVK {
width: 100%;
height: auto;
padding: 14px 20px;
margin: 8px 0px;
border: double 2px white;
float: left;
cursor: pointer;
font-size: 15pt;
text-align: center;
background-color: transparent;
}
#signGoogle:hover, #signFacebook:hover, #signTwitter:hover, #signVK:hover {
border-color: #ffcc00;
background-color: #ffcc00;
color: black;
}
a {
text-decoration: none;
} | index.css | input[type=text] {
width: 130px;
box-sizing: border-box;
border: none;
font-size: 15pt;
background-color: white;
padding: 13px 15px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
right: 3px;
}
input[type=text]:focus {
width: 400px;
}
td {
width: 14.28%;
}
section {
margin-top: 5%;
margin-right: 80px;
margin-bottom: 25%;
margin-left: 25%;
z-index: -1;
font-family: Calibri;
font-size: 15pt;
}
/*
#Socrates {
text-align: center;
font-weight: bold;
font-size: 16pt;
margin-left: 10px;
width: 23%;
text-decoration: none;
}
*/
.vertical-menu {
width: 23%;
position: fixed;
font-family: Calibri;
font-size: 15pt;
left: 0px;
box-shadow: 1px 1px 2px black;
}
.vertical-menu a {
background-color: #DA413D;
color: white;
display: block;
padding: 12px;
text-decoration: none;
text-align:center;
}
.vertical-menu a:hover {
background-color: white;
color: #DA413D;
}
/* Social media sidebar */
#sticky-social {
right: 0;
position: fixed;
top: 10%;
margin: 0;
padding: 0;
box-shadow: -1px 1px 2px black;
}
#sticky-social img {
width: 60px;
height: 60p;
margin: 0;
padding: 0;
}
#sticky-social img:hover {
opacity: 0.7;
}
#sticky-social ul {
list-style:none;
margin: 0;
padding: 0;
}
#sticky-social a {
display:block;
line-height: 0;
}
/* Automatic slideshow in main page: */
*{box-sizing: border-box;}
.mySlides {display:none}
.mySlides img {
width: 1097px;
height: 602px;
}
.slideshow-container {
max-width: 1097px;
max-height: 641px;
margin: auto;
position: relative;
z-index: -1;
}
.text {
width: 1097px;
height: 39px;
bottom: 0;
color: white;
font-size: 20px;
padding: 8px;
text-align: center;
position: absolute;
font-family: Calibri;
background: black;
opacity: 0.8;
}
.numbertext {
color: #f2f2f2;
font-size: 13px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.dot {
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #DA413D;
display: inline-block;
transition: background-color 0.6s ease;
position: relative;
}
.active {
background-color: #800000;
}
.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}
}
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}
/* Button down */
.button {
appearance: button;
font-family: Calibri;
font-size: 20px;
color: white;
background: black;
padding: 8px;
text-decoration: none;
text-align: center;
}
.button:hover: {
opacity: 0.7;
text-decoration: underline;
}
/* Description: */
.rTable {
display: table;
width: 100%;
position: relative;
background-color: white;
box-shadow: 1px 1px 2px black;
z-index: -1;
padding: 30px;
margin-top: 1px;
}
.rTableRow {
display: table-row;
margin-top: 30px;
height: 210px;
}
.rTableCell {
display: table-cell;
width: 50%;
margin-left: 15px;
padding: 15px;
}
.rTableCell:hover,
.rTableCell:focus {
box-shadow: 1px 1px 2px black;
z-index: 1;
cursor: pointer;
background-color: whitesmoke;
}
.rTable img {
width: 200px;
height: 200px;
float:left;
margin-right: 8px;
}
.rTableHeading img {
width: 500px;
height: 400px;
}
.rTableHeading {
display: table-caption;
padding: 30px;
margin-bottom: 1px;
background-color: white;
color: black;
box-shadow: 1px 1px 2px black;
margin-bottom: 40px;
}
.head {
background-color: #DA413D;
color: white;
font-size: 20pt;
width: 100%;
height: 50px;
padding: 10px;
text-align:center;
margin-top: 60px;
z-index: -1;
box-shadow: 0px 1px 2px black;
position: relative;
}
.around img {
width: 300px;
height: 300px;
float: left;
}
.around {
float:left;
margin-top: 35px;
position: relative;
box-shadow: 1px 1px 2px black;
background-color: white;
height: auto;
width: 100%;
padding: 30px;
z-index: 0;
}
.around p {
float: left;
width: 150px;
margin-left: 30px;
margin-top: 30px;
}
/* Dropdown list (Country) for around-section: */
.dropdown2 {
height: auto;
margin-right: 150px;
margin-top: 30px;
position: relative;
overflow: hidden;
z-index: 15;
box-shadow: 1px 1px 2px black;
float: right;
}
.dropdown2 .dropbtn2 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: #DA413D;
font-family: Calibri;
width: 180px;
}
.dropdown-content2 {
display: none;
background-color: white;
width: 180px;
box-shadow: 1px 1px 2px black;
height: 462px;
overflow: auto;
z-index: 50;
}
.dropdown-content2 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content2 a:hover {
background-color: #DA413D;
color: white;
}
.show2 {
display: block;
}
/* Dropdown language in around-section */
.dropdown3 {
height: auto;
margin-right: 150px;
margin-top: 20px;
position: relative;
overflow: hidden;
z-index: 2;
box-shadow: 1px 1px 2px black;
float: right;
}
.dropdown3 .dropbtn3 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: #DA413D;
font-family: Calibri;
width: 180px;
}
.dropdown-content3 {
display: none;
background-color: white;
width: 180px;
box-shadow: 1px 1px 2px black;
height: 462px;
overflow: auto;
}
.dropdown-content3 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content3 a:hover {
background-color: #DA413D;
color: white;
}
.show3 {
display: block;
}
/* Up and Down Arrow for buttons */
i {
position: relative;
border: solid white;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 5px;
vertical-align: middle;
float: right;
margin-top: 7px;
color: white;
}
.fa-arrow-down {
transform: rotate(-135deg);
transition: transform 0.3s linear;
}
.fa-arrow-down.open {
transform: rotate(45deg);
transition: transform 0.3s linear;
}
.Devices {
float:left;
margin-top:35px;
margin-bottom: 235px;
position: relative;
width: 100%;
box-shadow: 1px 1px 2px black;
z-index: -1;
padding-top: 20px;
}
.Device {
width: 300px;
float: left;
margin-left: 65.33px;
text-align: center;
padding: 15px;
}
.Device img {
width: 300px;
height: 300px;
float: left;
}
.Device p {
padding-top: 20px;
clear: left;
text-align: center;
}
.footer {
display: block;
background-color: #DA413D;
color: white;
width: 100%;
clear: left;
right: 0;
left: 0;
bottom:0;
height: 100px;
float: none;
z-index: -1;
position: relative;
margin: 0;
}
/* New Header */
.topnav {
background-color: #DA413D;
overflow: hidden;
box-shadow: 0px 1px 2px black;
position: fixed;
top: 0;
left: 0;
width: 100%;
font-family: Calibri;
font-size: 15pt;
z-index: 100;
}
.topnav a {
float: left;
color: white;
text-align: center;
padding: 12px 13px;
text-decoration: none;
font-size: 15pt;
font-family: Calibri;
}
.topnav a:hover, .dropdown:hover .dropbtn, .dropdown1:hover .dropbtn1{
background-color: white;
color: #DA413D;
}
.dropdown:hover i, .dropdown1:hover i {
border-color: #DA413D;
}
.topnav form {
float: left;
display: block;
}
/* Vertical dropdown menu */
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: inherit;
font-family: Calibri;
}
.dropdown-content {
display: none;
position: fixed;
background-color: white;
min-width: 180px;
box-shadow: 0px 8px 16px 0px black;
z-index: 10;
height: 462px;
overflow: auto;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #DA413D;
color: white;
}
.show {
display: block;
}
/* Dropdown language menu */
.dropdown1 {
float: left;
overflow: hidden;
}
.dropdown1 .dropbtn1 {
cursor: pointer;
font-size: 15pt;
border: none;
outline: none;
color: white;
padding: 12px 13px;
background-color: inherit;
font-family: Calibri;
}
.dropdown-content1 {
display: none;
position: fixed;
background-color: white;
min-width: 180px;
box-shadow: 0px 8px 16px 0px black;
z-index: 2;
height: 462px;
overflow: auto;
}
.dropdown-content1 a {
float: none;
color: black;
padding: 12px 13px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content1 a:hover {
background-color: #DA413D;
color: white;
}
.show1 {
display: block;
}
/* Login form */
#username , #password {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal input[type=text] {
color: white;
font-size: 15pt;
}
.modal button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal button:hover {
background-color: #e6b800;
}
.modal .cancelbtn {
width: auto;
padding: 10px 18px;
}
.modal .Signup {
width: auto;
padding: 10px 18px;
}
.modal .Send1 {
width: auto;
padding: 10px 18px;
float:right;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
position: relative;
}
.avatar {
margin: 24px 0 12px 0;
position: relative;
}
.container {
padding: 16px;
color: white;
font-size: 15pt;
font-family: Calibri;
}
span.psw {
float: right;
}
.modal {
display: none;
position: fixed;
z-index: 2;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.close {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 35px;
}
.close:hover , .close:focus {
color: #ffcc00;
cursor: pointer;
}
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s;
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
@media screen and (max-width: 300px) {
span.psw {
display:block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
span.Login {
float: right;
}
#Socrates:hover {
background-color: #DA413D;
color: white;
}
/* Scroll to top button */
#TopBut {
display: none;
position: fixed;
right: 144px;
bottom: 62px;
z-index: 99;
border: none;
outline: none;
background-color: #DA413D;
color: white;
cursor: pointer;
padding: 10pt;
box-shadow: 1px 1px 2px black;
font-size: 12pt;
font-family: Calibri;
}
#TopBut:hover {
background-color: white;
color: red;
}
/* Sign up form */
#email, #pass, #pass-repeat {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal2 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal2 .cancelbtn2 {
background-color: #990000;
color: #ffcc00;
}
.modal2 .cancelbtn2:hover {
background-color: #800000;
}
.modal2 .signup {
float: left;
width: 50%;
}
.modal2 .signup:hover {
background-color: #e6b800;
}
.modal2 .cancelbtn2 {
float: left;
width: 50%;
}
.container2 {
padding: 16px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal2 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content2 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close {
margin: 24px 0px 12px 0px;
position: relative;
}
.close2 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close2:hover,
.close2:focus {
color: #ffcc00;
cursor: pointer;
}
.container2 a {
text-decoration: none;
color: #ffcc00;
}
.container2 a:hover {
text-decoration: underline;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 300px) {
.signup, .cancelbtn2 {
width: 100%;
}
}
/* Password Recovery Form */
#username2, #email2 {
width: 100%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: none;
box-sizing: border-box;
background-color: #990000;
color: white;
font-size: 15pt;
}
.modal3 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal3 .cancelbtn3 {
background-color: #990000;
color: #ffcc00;
float: left;
width: 50%;
}
.modal3 .cancelbtn3:hover {
background-color: #800000;
}
.modal3 .Send {
float: left;
width: 50%;
}
.modal3 .Send:hover {
background-color: #e6b800;
}
.container3 {
padding: 16px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal3 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content3 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close2 {
margin: 24px 0px 12px 0px;
position: relative;
margin-bottom: 10px;
}
.close3 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close3:hover,
.close3:focus {
color: #ffcc00;
cursor: pointer;
}
.clearfix2::after {
content: "";
clear: both;
display: table;
}
.descr {
padding: 10px;
margin-top: 30px;
margin-bottom: 20px;
}
@media screen and (max-width: 300px) {
.Send, .cancelbtn3 {
width: 100%;
}
}
/* Sign In Form */
.modal4 button {
background-color: #ffcc00;
color: black;
padding: 14px 20px;
margin: 8px 0px;
border: none;
cursor: pointer;
width: 100%;
font-size: 15pt;
}
.modal4 .cancelbtn4 {
background-color: #990000;
color: #ffcc00;
float: left;
width: 100%;
}
.modal4 .cancelbtn4:hover {
background-color: #800000;
}
.container4 {
padding: 16px;
padding-top: 40px;
font-size: 15pt;
font-family: Calibri;
color: white;
}
.modal4 {
display: none;
position: fixed;
z-index: 4;
left: 0;
top: 0;
width: 99%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.3);
padding-top: 60px;
box-shadow: 1px 1px 2px black;
}
.modal-content4 {
background-color: #DA413D;
margin: 2% auto 10% auto;
border: none;
width: 50%
}
.container-close4 {
margin: 24px 0px 12px 0px;
position: relative;
margin-bottom: 10px;
}
.close4 {
position: absolute;
right: 25px;
top: 5px;
color: white;
font-size: 30px;
}
.close4:hover,
.close4:focus {
color: #ffcc00;
cursor: pointer;
}
.clearfix3::after {
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 300px) {
.Send, .cancelbtn3 {
width: 100%;
}
}
#signGoogle , #signFacebook, #signTwitter, #signVK {
width: 100%;
height: auto;
padding: 14px 20px;
margin: 8px 0px;
border: double 2px white;
float: left;
cursor: pointer;
font-size: 15pt;
text-align: center;
background-color: transparent;
}
#signGoogle:hover, #signFacebook:hover, #signTwitter:hover, #signVK:hover {
border-color: #ffcc00;
background-color: #ffcc00;
color: black;
}
a {
text-decoration: none;
} | 0.331228 | 0.071754 |
/* BEGIN Ubuntu Light */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-light-webfont.eot');
src: url('fonts/ubuntu-light-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-light-webfont.woff2') format('woff2'),
url('fonts/ubuntu-light-webfont.woff') format('woff'),
url('fonts/ubuntu-light-webfont.ttf') format('truetype'),
url('fonts/ubuntu-light-webfont.svg#ubuntulight') format('svg');
font-weight: 300;
font-style: normal;
}
/* END Ubuntu Light */
/* BEGIN Ubuntu Light Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-light-italic-webfont.eot');
src: url('fonts/ubuntu-light-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-light-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-light-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-light-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-light-italic-webfont.svg#ubuntulight_italic') format('svg');
font-weight: 300;
font-style: italic;
}
/* END Ubuntu Light Italic */
/* BEGIN Ubuntu Regular */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-regular-webfont.eot');
src: url('fonts/ubuntu-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-regular-webfont.woff2') format('woff2'),
url('fonts/ubuntu-regular-webfont.woff') format('woff'),
url('fonts/ubuntu-regular-webfont.ttf') format('truetype'),
url('fonts/ubuntu-regular-webfont.svg#ubunturegular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Regular */
/* BEGIN Ubuntu Regular Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-regular-italic-webfont.eot');
src: url('fonts/ubuntu-regular-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-regular-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-regular-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-regular-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-regular-italic-webfont.svg#ubuntuitalic') format('svg');
font-weight: normal;
font-style: italic;
}
/* END Ubuntu Regular Italic */
/* BEGIN Ubuntu Medium */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-medium-webfont.eot');
src: url('fonts/ubuntu-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-medium-webfont.woff2') format('woff2'),
url('fonts/ubuntu-medium-webfont.woff') format('woff'),
url('fonts/ubuntu-medium-webfont.ttf') format('truetype'),
url('fonts/ubuntu-medium-webfont.svg#ubuntumedium') format('svg');
font-weight: 500;
font-style: normal;
}
/* END Ubuntu Medium */
/* BEGIN Ubuntu Medium Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-medium-italic-webfont.eot');
src: url('fonts/ubuntu-medium-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-medium-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-medium-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-medium-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-medium-italic-webfont.svg#ubuntumedium_italic') format('svg');
font-weight: 500;
font-style: italic;
}
/* END Ubuntu Medium Italic */
/* BEGIN Ubuntu Bold */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-bold-webfont.eot');
src: url('fonts/ubuntu-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-bold-webfont.woff2') format('woff2'),
url('fonts/ubuntu-bold-webfont.woff') format('woff'),
url('fonts/ubuntu-bold-webfont.ttf') format('truetype'),
url('fonts/ubuntu-bold-webfont.svg#ubuntubold') format('svg');
font-weight: bold;
font-style: normal;
}
/* END Ubuntu Bold */
/* BEGIN Ubuntu Bold Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-bold-italic-webfont.eot');
src: url('fonts/ubuntu-bold-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-bold-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-bold-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-bold-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-bold-italic-webfont.svg#ubuntubold_italic') format('svg');
font-weight: bold;
font-style: italic;
}
/* END Ubuntu Bold Italic */
/* BEGIN Ubuntu Condensed */
@font-face {
font-family: 'Ubuntu Condensed';
src: url('fonts/ubuntu-condensed-webfont.eot');
src: url('fonts/ubuntu-condensed-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-condensed-webfont.woff2') format('woff2'),
url('fonts/ubuntu-condensed-webfont.woff') format('woff'),
url('fonts/ubuntu-condensed-webfont.ttf') format('truetype'),
url('fonts/ubuntu-condensed-webfont.svg#ubuntu_condensedregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Condensed */
/* BEGIN Ubuntu Mono Regular */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-regular-webfont.eot');
src: url('fonts/ubuntumono-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-regular-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-regular-webfont.woff') format('woff'),
url('fonts/ubuntumono-regular-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-regular-webfont.svg#ubuntu_monoregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Mono Regular */
/* BEGIN Ubuntu Mono Italic */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-regular-italic-webfont.eot');
src: url('fonts/ubuntumono-regular-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-regular-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-regular-italic-webfont.woff') format('woff'),
url('fonts/ubuntumono-regular-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-regular-italic-webfont.svg#ubuntu_monoitalic') format('svg');
font-weight: normal;
font-style: italic;
}
/* END Ubuntu Mono Italic */
/* BEGIN Ubuntu Mono Bold */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-bold-webfont.eot');
src: url('fonts/ubuntumono-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-bold-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-bold-webfont.woff') format('woff'),
url('fonts/ubuntumono-bold-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-bold-webfont.svg#ubuntu_monobold') format('svg');
font-weight: bold;
font-style: normal;
}
/* END Ubuntu Mono Bold */
/* BEGIN Ubuntu Mono Bold Italic */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-bold-italic-webfont.eot');
src: url('fonts/ubuntumono-bold-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-bold-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-bold-italic-webfont.woff') format('woff'),
url('fonts/ubuntumono-bold-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-bold-italic-webfont.svg#ubuntu_monobold_italic') format('svg');
font-weight: bold;
font-style: italic;
}
/* END Ubuntu Mono Bold Italic */ | ubuntu.css |
/* BEGIN Ubuntu Light */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-light-webfont.eot');
src: url('fonts/ubuntu-light-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-light-webfont.woff2') format('woff2'),
url('fonts/ubuntu-light-webfont.woff') format('woff'),
url('fonts/ubuntu-light-webfont.ttf') format('truetype'),
url('fonts/ubuntu-light-webfont.svg#ubuntulight') format('svg');
font-weight: 300;
font-style: normal;
}
/* END Ubuntu Light */
/* BEGIN Ubuntu Light Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-light-italic-webfont.eot');
src: url('fonts/ubuntu-light-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-light-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-light-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-light-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-light-italic-webfont.svg#ubuntulight_italic') format('svg');
font-weight: 300;
font-style: italic;
}
/* END Ubuntu Light Italic */
/* BEGIN Ubuntu Regular */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-regular-webfont.eot');
src: url('fonts/ubuntu-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-regular-webfont.woff2') format('woff2'),
url('fonts/ubuntu-regular-webfont.woff') format('woff'),
url('fonts/ubuntu-regular-webfont.ttf') format('truetype'),
url('fonts/ubuntu-regular-webfont.svg#ubunturegular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Regular */
/* BEGIN Ubuntu Regular Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-regular-italic-webfont.eot');
src: url('fonts/ubuntu-regular-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-regular-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-regular-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-regular-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-regular-italic-webfont.svg#ubuntuitalic') format('svg');
font-weight: normal;
font-style: italic;
}
/* END Ubuntu Regular Italic */
/* BEGIN Ubuntu Medium */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-medium-webfont.eot');
src: url('fonts/ubuntu-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-medium-webfont.woff2') format('woff2'),
url('fonts/ubuntu-medium-webfont.woff') format('woff'),
url('fonts/ubuntu-medium-webfont.ttf') format('truetype'),
url('fonts/ubuntu-medium-webfont.svg#ubuntumedium') format('svg');
font-weight: 500;
font-style: normal;
}
/* END Ubuntu Medium */
/* BEGIN Ubuntu Medium Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-medium-italic-webfont.eot');
src: url('fonts/ubuntu-medium-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-medium-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-medium-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-medium-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-medium-italic-webfont.svg#ubuntumedium_italic') format('svg');
font-weight: 500;
font-style: italic;
}
/* END Ubuntu Medium Italic */
/* BEGIN Ubuntu Bold */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-bold-webfont.eot');
src: url('fonts/ubuntu-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-bold-webfont.woff2') format('woff2'),
url('fonts/ubuntu-bold-webfont.woff') format('woff'),
url('fonts/ubuntu-bold-webfont.ttf') format('truetype'),
url('fonts/ubuntu-bold-webfont.svg#ubuntubold') format('svg');
font-weight: bold;
font-style: normal;
}
/* END Ubuntu Bold */
/* BEGIN Ubuntu Bold Italic */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/ubuntu-bold-italic-webfont.eot');
src: url('fonts/ubuntu-bold-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-bold-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntu-bold-italic-webfont.woff') format('woff'),
url('fonts/ubuntu-bold-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntu-bold-italic-webfont.svg#ubuntubold_italic') format('svg');
font-weight: bold;
font-style: italic;
}
/* END Ubuntu Bold Italic */
/* BEGIN Ubuntu Condensed */
@font-face {
font-family: 'Ubuntu Condensed';
src: url('fonts/ubuntu-condensed-webfont.eot');
src: url('fonts/ubuntu-condensed-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntu-condensed-webfont.woff2') format('woff2'),
url('fonts/ubuntu-condensed-webfont.woff') format('woff'),
url('fonts/ubuntu-condensed-webfont.ttf') format('truetype'),
url('fonts/ubuntu-condensed-webfont.svg#ubuntu_condensedregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Condensed */
/* BEGIN Ubuntu Mono Regular */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-regular-webfont.eot');
src: url('fonts/ubuntumono-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-regular-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-regular-webfont.woff') format('woff'),
url('fonts/ubuntumono-regular-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-regular-webfont.svg#ubuntu_monoregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* END Ubuntu Mono Regular */
/* BEGIN Ubuntu Mono Italic */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-regular-italic-webfont.eot');
src: url('fonts/ubuntumono-regular-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-regular-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-regular-italic-webfont.woff') format('woff'),
url('fonts/ubuntumono-regular-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-regular-italic-webfont.svg#ubuntu_monoitalic') format('svg');
font-weight: normal;
font-style: italic;
}
/* END Ubuntu Mono Italic */
/* BEGIN Ubuntu Mono Bold */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-bold-webfont.eot');
src: url('fonts/ubuntumono-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-bold-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-bold-webfont.woff') format('woff'),
url('fonts/ubuntumono-bold-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-bold-webfont.svg#ubuntu_monobold') format('svg');
font-weight: bold;
font-style: normal;
}
/* END Ubuntu Mono Bold */
/* BEGIN Ubuntu Mono Bold Italic */
@font-face {
font-family: 'Ubuntu Monospace';
src: url('fonts/ubuntumono-bold-italic-webfont.eot');
src: url('fonts/ubuntumono-bold-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/ubuntumono-bold-italic-webfont.woff2') format('woff2'),
url('fonts/ubuntumono-bold-italic-webfont.woff') format('woff'),
url('fonts/ubuntumono-bold-italic-webfont.ttf') format('truetype'),
url('fonts/ubuntumono-bold-italic-webfont.svg#ubuntu_monobold_italic') format('svg');
font-weight: bold;
font-style: italic;
}
/* END Ubuntu Mono Bold Italic */ | 0.107356 | 0.034262 |
@media (max-width: 800px) {
#sidebar {
display: none;
}
#main {
/*max-width: 800px;*/
/*padding: 0px 20px;*/
margin: auto;
}
}
.page-margins {
vertical-align: top;
}
.sidebar {
overflow-x: hidden;
overflow-y: scroll;
width: 190px;
height: 100%;
position: fixed;
}
.sidebar-content {
padding: 20px;
}
.sidebar-category {
padding-top: 12px;
font-weight: 700;
}
.sidebar-item {
cursor: pointer;
}
.sidebar-module {
font-weight: 500;
font-size: 14px;
color: var(--vscode-foreground);
}
.sidebar-bmx {
font-weight: 400;
font-size: 13px;
padding-bottom: 12px;
color: var(--vscode-foreground);
}
.error {
color: var(--vscode-inputValidation-errorForeground);
background: var(--vscode-inputValidation-errorBackground);
border: solid 1px var(--vscode-inputValidation-errorBorder);
white-space: pre-wrap;
display: none;
/*padding: 1px 4px 4px 4px;*/
}
.headerBtn, .headerBtn:hover, .headerBtn:active {
cursor: pointer;
color: var(--vscode-foreground);
background: var(--vscode-background);
border: 0px;
/*padding: 0px;*/
outline: none;
}
.headerBtn:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: 3px;
}
.expand:after {
font-weight: bold;
float: right;
margin-right: 6px;
margin-top: -4px;
content: '\276E';
transform: rotate(270deg);
text-decoration: none;
}
.main {
/* max-width: 800px; */
margin-left: 220px;
padding: 0px 20px;
color: var(--vscode-foreground);
}
.main-content {
padding-top: 20px;
}
.main-title {
font-weight: 500;
font-size: 22px;
padding-bottom: 8px;
color: var(--vscode-foreground);
}
.main-info>pre {
padding-bottom: 30px;
font-family: inherit;
font-weight: 400;
color: var(--vscode-foreground);
white-space: pre-wrap;
}
.section {
padding-bottom: 30px;
/*padding-top: 15px;*/
}
.section-name {
font-weight: 500;
font-size: 20px;
width: 100%;
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border-style: none;
border-width: 0px;
padding: 6px;
cursor: pointer;
text-align: left;
outline: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.section-name:before {
color: var(--vscode-button-foreground);
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 8px;
float: right;
padding: 6px;
text-decoration: none;
}
.active:before {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.section-alts {
color: var(--vscode-foreground);
padding: 6px 0px;
}
.section-link {
font: inherit;
cursor: pointer;
}
.section-information>pre {
font-size: 14px;
font-weight: 500;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-about>pre {
font-size: 14px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-returns>pre {
font-size: 14px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-source>pre {
font-size: 12px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
/*transition: max-height 0.2s ease-out;*/
color: var(--vscode-settings-dropdownForeground);
background-color: var(--vscode-settings-dropdownBackground);
margin-bottom: 6px;
border-radius: 0px 0px 3px 3px;
}
.example-link {
padding-top: 8px;
padding-bottom: 6px;
}
.example {
padding: 0px;
}
.example>pre {
padding: 6px;
white-space: pre-wrap;
}
.codeblock {
vertical-align: middle;
/*padding: 2px 8px;*/
margin-top: 8px;
display: inline-block;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
}
#scrollToTop {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
font-size: 18px;
border: none;
outline: none;
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
cursor: pointer;
padding: 6px 8px 9px 9px;
border-radius: 50%;
height: 45px;
width: 45px;
text-decoration: none;
}
#scrollToTop:hover {
background-color: var(--vscode-button-hoverBackground);
}
pre {
margin: 0px;
}
body {
line-height: 19px
}
body:not(.tabbing) button:focus {
outline: none;
}
a {
text-decoration: none
}
checkbox {
color: var(--vscode-settings-checkboxForeground);
background: var(--vscode-settings-checkboxForeground);
border: var(--vscode-settings-checkboxBorder);
}
a:focus, input:focus, select:focus, textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px
}
hr {
border: 0;
height: 1px;
border-bottom: 1px solid;
}
h1 {
/*padding-bottom: .3em;*/
}
h1, h2, h3 {
font-weight: 400
}
a:hover {
text-decoration: underline
}
::placeholder {
color: var(--vscode-input-placeholderForeground);
}
input {
height: 17px;
/*padding: 6px;*/
border: solid 1px;
font-size: 13px;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
border: 1px solid var(--vscode-settings-textInputBorder);
}
textarea {
white-space: nowrap;
/*padding: 4px, 4px;*/
font-size: 13px;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
border: 1px solid var(--vscode-settings-textInputBorder);
}
button {
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border: solid 1px var(--vscode-contrastBorder);
/*padding: 6px 14px;*/
}
button:hover {
background-color: var(--vscode-button-hoverBackground);
}
button:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: 2px
}
button:active {
outline: none;
}
table {
margin: 6px;
width: 50%;
color: var(--vscode-settings-dropdownForeground);
background-color: var(--vscode-settings-dropdownBackground);
border-width: 0px;
border-style: solid;
margin: 0px 0px 0px 8px;
}
.select-default {
width: 300px;
height: 27px;
font-size: 13px;
font-family: sans-serif;
color: var(--vscode-settings-dropdownForeground);
background: var(--vscode-settings-dropdownBackground);
border: 1px solid var(--vscode-settings-dropdownBorder);
}
.select-editable {
position: relative;
background-color: var(--vscode-settings-textInputBackground);
width: 800px;
height: 31px;
}
.select-editable select {
position: absolute;
font-size: 13px;
font-family: sans-serif;
border: 1px solid var(--vscode-settings-textInputBorder);
height: 31px;
margin: auto;
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
}
.select-editable input {
position: absolute;
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
height: 17px;
font-size: 13px;
border: none;
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
}
.select-editable input:focus {
outline-offset: 0px;
}
blockquote {
margin: 0 7px 0 5px;
/*padding: 0 16px 0 10px;*/
border-left: 5px solid;
}
code {
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
line-height: 19px
}
.mac code {
line-height: 18px
}
code>div {
padding: 16px;
border-radius: 3px;
overflow: auto;
font-family: monospace;
display: block;
white-space: pre-line;
}
.monaco-tokenized-source {
white-space: pre
}
/** Theming */
.vscode-light {
color: #1e1e1e
}
.vscode-dark {
color: #ddd
}
.vscode-high-contrast {
color: #fff
}
.vscode-light code {
color: #a31515
}
.vscode-dark code {
color: #d7ba7d
}
.vscode-light code>div {
background-color: rgba(220, 220, 220, .4)
}
.vscode-dark code>div {
background-color: rgba(10, 10, 10, .4)
}
.vscode-light .input-disabled {
background-color: rgba(255, 255, 255, 0.4);
color: rgb(138, 138, 138);
border: solid 1px rgb(201, 198, 198);
}
.vscode-dark .input-disabled {
background-color: rgba(255, 255, 255, 0.1);
color: rgb(167, 167, 167);
}
.vscode-high-contrast .input-disabled {
background-color: transparent;
color: #fff;
border: solid 1px rgb(255, 255, 255);
}
.vscode-high-contrast code>div {
background-color: #000
}
.vscode-high-contrast h1 {
border-color: #000
}
.vscode-light table>thead>tr>th {
border-color: rgba(0, 0, 0, .69)
}
.vscode-dark table>thead>tr>th {
border-color: rgba(255, 255, 255, .69)
}
.vscode-light h1, .vscode-light hr, .vscode-light table>tbody>tr+tr>td {
border-color: rgba(0, 0, 0, .18)
}
.vscode-dark h1, .vscode-dark hr, .vscode-dark table>tbody>tr+tr>td {
border-color: rgba(255, 255, 255, 0.18)
}
.vscode-light blockquote, .vscode-dark blockquote {
background: rgba(127, 127, 127, .1);
border-color: rgba(0, 122, 204, .5)
}
.vscode-high-contrast blockquote {
background: transparent;
border-color: #fff
}
.vscode-light div.codeblock {
background-color: rgba(0, 0, 0, 0.048)
}
.vscode-dark div.codeblock {
background-color: rgba(255, 255, 255, 0.1)
}
.vscode-high-contrast div.codeblock {
background-color: rgba(255, 255, 255, 0.15)
}
.footer {
/*padding: 25px;*/
text-align: center
}
.vscode-light a {
color: #4080D0
}
.vscode-dark a {
color: #a2c1e8
} | media/style.css | @media (max-width: 800px) {
#sidebar {
display: none;
}
#main {
/*max-width: 800px;*/
/*padding: 0px 20px;*/
margin: auto;
}
}
.page-margins {
vertical-align: top;
}
.sidebar {
overflow-x: hidden;
overflow-y: scroll;
width: 190px;
height: 100%;
position: fixed;
}
.sidebar-content {
padding: 20px;
}
.sidebar-category {
padding-top: 12px;
font-weight: 700;
}
.sidebar-item {
cursor: pointer;
}
.sidebar-module {
font-weight: 500;
font-size: 14px;
color: var(--vscode-foreground);
}
.sidebar-bmx {
font-weight: 400;
font-size: 13px;
padding-bottom: 12px;
color: var(--vscode-foreground);
}
.error {
color: var(--vscode-inputValidation-errorForeground);
background: var(--vscode-inputValidation-errorBackground);
border: solid 1px var(--vscode-inputValidation-errorBorder);
white-space: pre-wrap;
display: none;
/*padding: 1px 4px 4px 4px;*/
}
.headerBtn, .headerBtn:hover, .headerBtn:active {
cursor: pointer;
color: var(--vscode-foreground);
background: var(--vscode-background);
border: 0px;
/*padding: 0px;*/
outline: none;
}
.headerBtn:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: 3px;
}
.expand:after {
font-weight: bold;
float: right;
margin-right: 6px;
margin-top: -4px;
content: '\276E';
transform: rotate(270deg);
text-decoration: none;
}
.main {
/* max-width: 800px; */
margin-left: 220px;
padding: 0px 20px;
color: var(--vscode-foreground);
}
.main-content {
padding-top: 20px;
}
.main-title {
font-weight: 500;
font-size: 22px;
padding-bottom: 8px;
color: var(--vscode-foreground);
}
.main-info>pre {
padding-bottom: 30px;
font-family: inherit;
font-weight: 400;
color: var(--vscode-foreground);
white-space: pre-wrap;
}
.section {
padding-bottom: 30px;
/*padding-top: 15px;*/
}
.section-name {
font-weight: 500;
font-size: 20px;
width: 100%;
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border-style: none;
border-width: 0px;
padding: 6px;
cursor: pointer;
text-align: left;
outline: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.section-name:before {
color: var(--vscode-button-foreground);
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 8px;
float: right;
padding: 6px;
text-decoration: none;
}
.active:before {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.section-alts {
color: var(--vscode-foreground);
padding: 6px 0px;
}
.section-link {
font: inherit;
cursor: pointer;
}
.section-information>pre {
font-size: 14px;
font-weight: 500;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-about>pre {
font-size: 14px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-returns>pre {
font-size: 14px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.section-source>pre {
font-size: 12px;
font-style: italic;
font: inherit;
color: var(--vscode-foreground);
padding: 6px 0px;
white-space: pre-line;
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
/*transition: max-height 0.2s ease-out;*/
color: var(--vscode-settings-dropdownForeground);
background-color: var(--vscode-settings-dropdownBackground);
margin-bottom: 6px;
border-radius: 0px 0px 3px 3px;
}
.example-link {
padding-top: 8px;
padding-bottom: 6px;
}
.example {
padding: 0px;
}
.example>pre {
padding: 6px;
white-space: pre-wrap;
}
.codeblock {
vertical-align: middle;
/*padding: 2px 8px;*/
margin-top: 8px;
display: inline-block;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
}
#scrollToTop {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
font-size: 18px;
border: none;
outline: none;
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
cursor: pointer;
padding: 6px 8px 9px 9px;
border-radius: 50%;
height: 45px;
width: 45px;
text-decoration: none;
}
#scrollToTop:hover {
background-color: var(--vscode-button-hoverBackground);
}
pre {
margin: 0px;
}
body {
line-height: 19px
}
body:not(.tabbing) button:focus {
outline: none;
}
a {
text-decoration: none
}
checkbox {
color: var(--vscode-settings-checkboxForeground);
background: var(--vscode-settings-checkboxForeground);
border: var(--vscode-settings-checkboxBorder);
}
a:focus, input:focus, select:focus, textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px
}
hr {
border: 0;
height: 1px;
border-bottom: 1px solid;
}
h1 {
/*padding-bottom: .3em;*/
}
h1, h2, h3 {
font-weight: 400
}
a:hover {
text-decoration: underline
}
::placeholder {
color: var(--vscode-input-placeholderForeground);
}
input {
height: 17px;
/*padding: 6px;*/
border: solid 1px;
font-size: 13px;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
border: 1px solid var(--vscode-settings-textInputBorder);
}
textarea {
white-space: nowrap;
/*padding: 4px, 4px;*/
font-size: 13px;
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
border: 1px solid var(--vscode-settings-textInputBorder);
}
button {
color: var(--vscode-button-foreground);
background-color: var(--vscode-button-background);
border: solid 1px var(--vscode-contrastBorder);
/*padding: 6px 14px;*/
}
button:hover {
background-color: var(--vscode-button-hoverBackground);
}
button:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: 2px
}
button:active {
outline: none;
}
table {
margin: 6px;
width: 50%;
color: var(--vscode-settings-dropdownForeground);
background-color: var(--vscode-settings-dropdownBackground);
border-width: 0px;
border-style: solid;
margin: 0px 0px 0px 8px;
}
.select-default {
width: 300px;
height: 27px;
font-size: 13px;
font-family: sans-serif;
color: var(--vscode-settings-dropdownForeground);
background: var(--vscode-settings-dropdownBackground);
border: 1px solid var(--vscode-settings-dropdownBorder);
}
.select-editable {
position: relative;
background-color: var(--vscode-settings-textInputBackground);
width: 800px;
height: 31px;
}
.select-editable select {
position: absolute;
font-size: 13px;
font-family: sans-serif;
border: 1px solid var(--vscode-settings-textInputBorder);
height: 31px;
margin: auto;
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
}
.select-editable input {
position: absolute;
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
height: 17px;
font-size: 13px;
border: none;
color: var(--vscode-settings-textInputForeground);
background: var(--vscode-settings-textInputBackground);
}
.select-editable input:focus {
outline-offset: 0px;
}
blockquote {
margin: 0 7px 0 5px;
/*padding: 0 16px 0 10px;*/
border-left: 5px solid;
}
code {
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
line-height: 19px
}
.mac code {
line-height: 18px
}
code>div {
padding: 16px;
border-radius: 3px;
overflow: auto;
font-family: monospace;
display: block;
white-space: pre-line;
}
.monaco-tokenized-source {
white-space: pre
}
/** Theming */
.vscode-light {
color: #1e1e1e
}
.vscode-dark {
color: #ddd
}
.vscode-high-contrast {
color: #fff
}
.vscode-light code {
color: #a31515
}
.vscode-dark code {
color: #d7ba7d
}
.vscode-light code>div {
background-color: rgba(220, 220, 220, .4)
}
.vscode-dark code>div {
background-color: rgba(10, 10, 10, .4)
}
.vscode-light .input-disabled {
background-color: rgba(255, 255, 255, 0.4);
color: rgb(138, 138, 138);
border: solid 1px rgb(201, 198, 198);
}
.vscode-dark .input-disabled {
background-color: rgba(255, 255, 255, 0.1);
color: rgb(167, 167, 167);
}
.vscode-high-contrast .input-disabled {
background-color: transparent;
color: #fff;
border: solid 1px rgb(255, 255, 255);
}
.vscode-high-contrast code>div {
background-color: #000
}
.vscode-high-contrast h1 {
border-color: #000
}
.vscode-light table>thead>tr>th {
border-color: rgba(0, 0, 0, .69)
}
.vscode-dark table>thead>tr>th {
border-color: rgba(255, 255, 255, .69)
}
.vscode-light h1, .vscode-light hr, .vscode-light table>tbody>tr+tr>td {
border-color: rgba(0, 0, 0, .18)
}
.vscode-dark h1, .vscode-dark hr, .vscode-dark table>tbody>tr+tr>td {
border-color: rgba(255, 255, 255, 0.18)
}
.vscode-light blockquote, .vscode-dark blockquote {
background: rgba(127, 127, 127, .1);
border-color: rgba(0, 122, 204, .5)
}
.vscode-high-contrast blockquote {
background: transparent;
border-color: #fff
}
.vscode-light div.codeblock {
background-color: rgba(0, 0, 0, 0.048)
}
.vscode-dark div.codeblock {
background-color: rgba(255, 255, 255, 0.1)
}
.vscode-high-contrast div.codeblock {
background-color: rgba(255, 255, 255, 0.15)
}
.footer {
/*padding: 25px;*/
text-align: center
}
.vscode-light a {
color: #4080D0
}
.vscode-dark a {
color: #a2c1e8
} | 0.257298 | 0.062103 |
html {
height: 100%;
}
body {
background-attachment: fixed;
background-size: cover;
background-position: center;
margin: 0;
height: 100%;
animation: fadeInAnimation ease-in 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
ul {
list-style-type: none;
font-size: 20px;
margin: 0px 0px;
line-height: 1;
}
.container {
font-family: Georgia, Arial, sans-serif;
text-align: center;
max-width: 1000px;
margin: 0 auto;
line-height: 125%;
background-image: url("http://inspirationhut.net/wp-content/uploads/2012/11/Worn-Paper-Texture.jpg");
border-style: none;
min-height: 100%;
}
.bottom_buttons {
float: left;
}
#char-gen-body {
background-image: url("https://wallpaperaccess.com/full/2077767.jpg");
}
.child {
display: flex;
text-align: center;
margin: auto;
flex-direction: column;
height: 350px;
width: 25%;
border-radius: 10px;
box-sizing: border-box;
float: left;
opacity: 50%;
border: solid;
background-color: antiquewhite;
font-family: "Shippori Antique B1", sans-serif;
position: relative;
animation-name: example;
animation-duration: 4s;
}
.box {
opacity: 75%;
}
@keyframes example {
0% {
background-color: antiquewhite;
left: 0px;
top: 0px;
}
25% {
background-color: antiquewhite;
left: 200px;
top: 0px;
}
50% {
background-color: antiquewhite;
left: 200px;
top: 200px;
}
75% {
background-color: antiquewhite;
left: 0px;
top: 200px;
}
100% {
background-color: antiquewhite;
left: 0px;
top: 0px;
}
}
.header {
font-family: "Permanent Marker", cursive;
animation: 1s ease-in-out 0s 1 slideInLeft;
}
@keyframes slideInLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}
.btn {
border: none;
background-color: rgb(0, 255, 213);
border-radius: 25px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px
0px;
color: #141414;
display: flex;
justify-content: center;
font-size: 22px;
line-height: 22px;
margin: 40px auto;
padding: 14px 34px;
align-items: center;
text-align: center;
}
.btn:hover {
opacity: 75%;
}
/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
.box {
width: 50%;
}
}
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.box {
width: 100%;
}
}
@media screen and (max-width: 900px) {
.col {
width: 50%;
}
}
@media screen and (max-width: 600px) {
.col {
width: 100%;
}
} | assets/style2.css | html {
height: 100%;
}
body {
background-attachment: fixed;
background-size: cover;
background-position: center;
margin: 0;
height: 100%;
animation: fadeInAnimation ease-in 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
ul {
list-style-type: none;
font-size: 20px;
margin: 0px 0px;
line-height: 1;
}
.container {
font-family: Georgia, Arial, sans-serif;
text-align: center;
max-width: 1000px;
margin: 0 auto;
line-height: 125%;
background-image: url("http://inspirationhut.net/wp-content/uploads/2012/11/Worn-Paper-Texture.jpg");
border-style: none;
min-height: 100%;
}
.bottom_buttons {
float: left;
}
#char-gen-body {
background-image: url("https://wallpaperaccess.com/full/2077767.jpg");
}
.child {
display: flex;
text-align: center;
margin: auto;
flex-direction: column;
height: 350px;
width: 25%;
border-radius: 10px;
box-sizing: border-box;
float: left;
opacity: 50%;
border: solid;
background-color: antiquewhite;
font-family: "Shippori Antique B1", sans-serif;
position: relative;
animation-name: example;
animation-duration: 4s;
}
.box {
opacity: 75%;
}
@keyframes example {
0% {
background-color: antiquewhite;
left: 0px;
top: 0px;
}
25% {
background-color: antiquewhite;
left: 200px;
top: 0px;
}
50% {
background-color: antiquewhite;
left: 200px;
top: 200px;
}
75% {
background-color: antiquewhite;
left: 0px;
top: 200px;
}
100% {
background-color: antiquewhite;
left: 0px;
top: 0px;
}
}
.header {
font-family: "Permanent Marker", cursive;
animation: 1s ease-in-out 0s 1 slideInLeft;
}
@keyframes slideInLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}
.btn {
border: none;
background-color: rgb(0, 255, 213);
border-radius: 25px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px
0px;
color: #141414;
display: flex;
justify-content: center;
font-size: 22px;
line-height: 22px;
margin: 40px auto;
padding: 14px 34px;
align-items: center;
text-align: center;
}
.btn:hover {
opacity: 75%;
}
/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
.box {
width: 50%;
}
}
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.box {
width: 100%;
}
}
@media screen and (max-width: 900px) {
.col {
width: 50%;
}
}
@media screen and (max-width: 600px) {
.col {
width: 100%;
}
} | 0.636692 | 0.104935 |
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
/* * {
outline: 1px solid red;
} */
body {
font-family: "Playfair Display", "Arial", sans-serif;
color: #626262;
background-color: #ffffff;
font-size: 14px;
line-height: 24px;
}
img {
display: block;
max-width: 100%;
height: auto;
margin-bottom: 30px;
}
.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}
/*WRAPPER*/
.container {
width: 901px;
margin: 0 auto;
font-size: 0;
}
/*SITE NAVIGATION*/
.site-navigation {
display: inline-block;
vertical-align: middle;
width: 901px;
list-style: none;
margin: 0;
padding-top: 72px;
padding-bottom: 98px;
text-align: center;
line-height: 0;
padding-inline-start: 0px;
}
.site-navigation-items {
display: inline-block;
font-size: 14px;
}
.site-navigation-items:not(:last-child) {
margin-right: 60px;
}
.site-navigation-links {
color: #626262;
text-transform: uppercase;
text-decoration: none;
line-height: 14px;
display: block;
}
.site-navigation-links:hover,
.site-navigation-links:focus {
color: #03a9f4;
}
/*SECTIONS*/
.page-news {
margin: 0;
padding: 0;
font-size: 0;
padding-bottom: 52px;
}
.news-list-items {
display: inline-block;
width: 420px;
margin-right: 60px;
margin-bottom: 130px;
font-size: 14px;
}
.news-list-items:nth-child(2n) {
margin-right: 0px;
}
.news-list-items:nth-last-child(-n + 3) {
margin-bottom: 0px;
padding-bottom: 52px;
}
.news-type {
font-family: "Ubuntu", "sans-serif";
text-transform: uppercase;
line-height: 17px;
color: #b4ad9e;
margin-top: 0;
margin-bottom: 32px;
}
.news-name {
margin: 0;
margin-bottom: 36px;
font-size: 30px;
font-weight: 400;
}
.news-text {
margin-top: 0;
margin-bottom: 0;
}
.load-button {
display: block;
border: 1px;
margin: 0 auto;
padding: 0;
width: 164px;
height: 60px;
background: #ffffff;
color: #626262;
line-height: 24px;
font-size: 20px;
cursor: pointer;
outline: 1px solid rgb(98, 98, 98);
} | html-css/module-03/css/style.css | html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
/* * {
outline: 1px solid red;
} */
body {
font-family: "Playfair Display", "Arial", sans-serif;
color: #626262;
background-color: #ffffff;
font-size: 14px;
line-height: 24px;
}
img {
display: block;
max-width: 100%;
height: auto;
margin-bottom: 30px;
}
.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}
/*WRAPPER*/
.container {
width: 901px;
margin: 0 auto;
font-size: 0;
}
/*SITE NAVIGATION*/
.site-navigation {
display: inline-block;
vertical-align: middle;
width: 901px;
list-style: none;
margin: 0;
padding-top: 72px;
padding-bottom: 98px;
text-align: center;
line-height: 0;
padding-inline-start: 0px;
}
.site-navigation-items {
display: inline-block;
font-size: 14px;
}
.site-navigation-items:not(:last-child) {
margin-right: 60px;
}
.site-navigation-links {
color: #626262;
text-transform: uppercase;
text-decoration: none;
line-height: 14px;
display: block;
}
.site-navigation-links:hover,
.site-navigation-links:focus {
color: #03a9f4;
}
/*SECTIONS*/
.page-news {
margin: 0;
padding: 0;
font-size: 0;
padding-bottom: 52px;
}
.news-list-items {
display: inline-block;
width: 420px;
margin-right: 60px;
margin-bottom: 130px;
font-size: 14px;
}
.news-list-items:nth-child(2n) {
margin-right: 0px;
}
.news-list-items:nth-last-child(-n + 3) {
margin-bottom: 0px;
padding-bottom: 52px;
}
.news-type {
font-family: "Ubuntu", "sans-serif";
text-transform: uppercase;
line-height: 17px;
color: #b4ad9e;
margin-top: 0;
margin-bottom: 32px;
}
.news-name {
margin: 0;
margin-bottom: 36px;
font-size: 30px;
font-weight: 400;
}
.news-text {
margin-top: 0;
margin-bottom: 0;
}
.load-button {
display: block;
border: 1px;
margin: 0 auto;
padding: 0;
width: 164px;
height: 60px;
background: #ffffff;
color: #626262;
line-height: 24px;
font-size: 20px;
cursor: pointer;
outline: 1px solid rgb(98, 98, 98);
} | 0.4856 | 0.073198 |
@charset "utf-8";
/* CSS Document */
body{
background-color: #f2f0f0;
}.content_gr {
background-image: url(images/yonghu_bg.gif);
background-repeat: no-repeat;
background-size:100% 231px;
}
.content_gr .main_info .left .tt_kf {
background-color: #F15703;
height: 30px;
color: #FFF;
text-align: center;
font-size: 18px;
font-family: "微软雅黑";
line-height: 30px;
}
.content_gr .main_info .left .tel{
font-family:"微软雅黑"; font-size:14px; color:#333;
background-image: url(images/tel.png);
background-repeat: no-repeat;
background-position: left;
padding-left: 30px;
margin-top:20px;
}
.content_gr .main_info .left .qq{
font-family:"微软雅黑"; font-size:14px; color:#333;
background-image: url(images/qq.png);
background-repeat: no-repeat;
background-position: left;
padding-left: 30px;
height:50px;
line-height:50px;
}
.content_gr .top {
width: 757px;
font-family: "微软雅黑";
font-size: 18px;
color: #FFF;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
padding-top: 20px;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
height: 100px;
}
.content_gr .top img {
margin-right: 50px;
float: left;
}
.content_gr .top span {
font-size: 12px;
float: right;
margin-top: 45px;
}
.content_gr .top h6 {
font-size: 18px;
font-weight: normal;
float: left;
margin:30px 0 0 0 ;
}
.content_gr .top span strong {
color: #111010;
font-weight: normal;
}
.content_gr .top span a {
color: #FFF;
text-decoration: none;
}
.content_gr .top span a:hover{ text-decoration:underline;}
.content_gr .top span p {
font-family: "微软雅黑";
font-size: 15px;
color: #FFF;
line-height: 40px;
}
.content_gr .top span p a {
color: #FFF;
text-decoration: none;
}
.content_gr .main_info {
width: 757px;
margin: 10px auto 0 auto;
background-color: #FFF;
}
.content_gr .main_info .left {
width: 150px;
height: 544px;
background-color: #dadada;
float: left;
}
.content_gr .main_info .left p {
line-height: 60px;
color: #000;
font-family: "微软雅黑";
font-size: 14px;
text-align: center;
}
.content_gr .main_info .left p a{
text-decoration: none;
color: #4f4b4b;
padding:10px 46px 10px 48px;
}
.content_gr .main_info .left p a:hover{ background-color:#f15703; color:#FFF;}
.content_gr .main_info .right {
float: left;
}
.content_gr .main_info .right p {
font-family: "微软雅黑";
font-size: 14px;
color: #5f5b5b;
margin-top: 30px;
margin-left: 40px;
}
.content_gr .main_info .right p img:hover{ opacity:0.5; filter:alpha(opacity=50); }
.content_gr .main_info .right p strong {
font-size: 18px;
color: #ff0000;
letter-spacing:10px;
}
.content_gr .main_info .right .zhanghu ul li {
float: left;
margin-left: 30px;
margin-top: 30px;
}
.content_gr .main_info .right .zhanghu ul li:first-child {
color: #07a1a7;
}
.content_gr .main_info .right .zhanghu ul li:first-child a{ color: #07a1a7;}
.content_gr .main_info .right .zhanghu ul li a {
color: #03a9ee;
text-decoration: none;
}
.content_gr .main_info .right .zhanghu ul li a:hover{ text-decoration:underline;}
.content_gr .main_info .right .zhanghu ul li strong {
font-weight: normal;
color: #f15804;
}
.content_gr .main_info .right h3 {
height:50px;
text-align: center;
font-family: "微软雅黑";
font-size: 14px;
color: #f15703;
line-height: 50px;
font-weight: normal;
}
.content_gr .main_info .right table tr td strong {
font-family: "微软雅黑";
font-size: 14px;
font-weight: normal;
color: #f15804;
}
.content_gr .main_info .right table tr .td1 {
height: 40px;
width:200px;
text-overflow:ellipsis;
}
.content_gr .main_info .right table tr .td3 a{ color:4267f0; text-decoration:none;}
.content_gr .main_info .right table tr .td3 a:hover{ text-decoration:underline;}
table
{
border-collapse: collapse;
border: none;
width: 580px;
margin: 0 auto;
font-family: "微软雅黑";
}
td
{
border: solid #e4e0e0 1px;
}
.buttom {
background-color: #eaeaea;
}
.buttom div ul {
list-style-type: none;
float: left;
margin-right: 100px;
margin-left: 45px;
margin-top: 30px;
line-height: 25px;
color: #7e7b7b;
font-family: "宋体";
font-size: 12px;
display: inline;
text-align: center;
}
.buttom div ul li a{ color: #7e7b7b; text-decoration:none;}
.buttom div ul li a:hover{ text-decoration:underline; color:#f15703;}
.buttom div ul li:first-child{
font-size: 18px;
color: #4b4949;
}
.buttom div img {
margin-left: 200px;
margin-top: 20px;
}
.buttom div p {
font-size: 12px;
color: #7e7b7b;
margin-top: 15px;
text-align: center;
} | themes/ecmoban_meilishuo/zhanghu.css | @charset "utf-8";
/* CSS Document */
body{
background-color: #f2f0f0;
}.content_gr {
background-image: url(images/yonghu_bg.gif);
background-repeat: no-repeat;
background-size:100% 231px;
}
.content_gr .main_info .left .tt_kf {
background-color: #F15703;
height: 30px;
color: #FFF;
text-align: center;
font-size: 18px;
font-family: "微软雅黑";
line-height: 30px;
}
.content_gr .main_info .left .tel{
font-family:"微软雅黑"; font-size:14px; color:#333;
background-image: url(images/tel.png);
background-repeat: no-repeat;
background-position: left;
padding-left: 30px;
margin-top:20px;
}
.content_gr .main_info .left .qq{
font-family:"微软雅黑"; font-size:14px; color:#333;
background-image: url(images/qq.png);
background-repeat: no-repeat;
background-position: left;
padding-left: 30px;
height:50px;
line-height:50px;
}
.content_gr .top {
width: 757px;
font-family: "微软雅黑";
font-size: 18px;
color: #FFF;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
padding-top: 20px;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
height: 100px;
}
.content_gr .top img {
margin-right: 50px;
float: left;
}
.content_gr .top span {
font-size: 12px;
float: right;
margin-top: 45px;
}
.content_gr .top h6 {
font-size: 18px;
font-weight: normal;
float: left;
margin:30px 0 0 0 ;
}
.content_gr .top span strong {
color: #111010;
font-weight: normal;
}
.content_gr .top span a {
color: #FFF;
text-decoration: none;
}
.content_gr .top span a:hover{ text-decoration:underline;}
.content_gr .top span p {
font-family: "微软雅黑";
font-size: 15px;
color: #FFF;
line-height: 40px;
}
.content_gr .top span p a {
color: #FFF;
text-decoration: none;
}
.content_gr .main_info {
width: 757px;
margin: 10px auto 0 auto;
background-color: #FFF;
}
.content_gr .main_info .left {
width: 150px;
height: 544px;
background-color: #dadada;
float: left;
}
.content_gr .main_info .left p {
line-height: 60px;
color: #000;
font-family: "微软雅黑";
font-size: 14px;
text-align: center;
}
.content_gr .main_info .left p a{
text-decoration: none;
color: #4f4b4b;
padding:10px 46px 10px 48px;
}
.content_gr .main_info .left p a:hover{ background-color:#f15703; color:#FFF;}
.content_gr .main_info .right {
float: left;
}
.content_gr .main_info .right p {
font-family: "微软雅黑";
font-size: 14px;
color: #5f5b5b;
margin-top: 30px;
margin-left: 40px;
}
.content_gr .main_info .right p img:hover{ opacity:0.5; filter:alpha(opacity=50); }
.content_gr .main_info .right p strong {
font-size: 18px;
color: #ff0000;
letter-spacing:10px;
}
.content_gr .main_info .right .zhanghu ul li {
float: left;
margin-left: 30px;
margin-top: 30px;
}
.content_gr .main_info .right .zhanghu ul li:first-child {
color: #07a1a7;
}
.content_gr .main_info .right .zhanghu ul li:first-child a{ color: #07a1a7;}
.content_gr .main_info .right .zhanghu ul li a {
color: #03a9ee;
text-decoration: none;
}
.content_gr .main_info .right .zhanghu ul li a:hover{ text-decoration:underline;}
.content_gr .main_info .right .zhanghu ul li strong {
font-weight: normal;
color: #f15804;
}
.content_gr .main_info .right h3 {
height:50px;
text-align: center;
font-family: "微软雅黑";
font-size: 14px;
color: #f15703;
line-height: 50px;
font-weight: normal;
}
.content_gr .main_info .right table tr td strong {
font-family: "微软雅黑";
font-size: 14px;
font-weight: normal;
color: #f15804;
}
.content_gr .main_info .right table tr .td1 {
height: 40px;
width:200px;
text-overflow:ellipsis;
}
.content_gr .main_info .right table tr .td3 a{ color:4267f0; text-decoration:none;}
.content_gr .main_info .right table tr .td3 a:hover{ text-decoration:underline;}
table
{
border-collapse: collapse;
border: none;
width: 580px;
margin: 0 auto;
font-family: "微软雅黑";
}
td
{
border: solid #e4e0e0 1px;
}
.buttom {
background-color: #eaeaea;
}
.buttom div ul {
list-style-type: none;
float: left;
margin-right: 100px;
margin-left: 45px;
margin-top: 30px;
line-height: 25px;
color: #7e7b7b;
font-family: "宋体";
font-size: 12px;
display: inline;
text-align: center;
}
.buttom div ul li a{ color: #7e7b7b; text-decoration:none;}
.buttom div ul li a:hover{ text-decoration:underline; color:#f15703;}
.buttom div ul li:first-child{
font-size: 18px;
color: #4b4949;
}
.buttom div img {
margin-left: 200px;
margin-top: 20px;
}
.buttom div p {
font-size: 12px;
color: #7e7b7b;
margin-top: 15px;
text-align: center;
} | 0.233532 | 0.053675 |
@font-face {
font-family: gothamrounded;
src: url('../fonts/gothamrnd-light.ttf');
}
@font-face {
font-family: gothamroundedregular;
src: url('../fonts/gothamrnd-medium.ttf');
}
@font-face {
font-family: proximaregular;
src: url('../fonts/MarkSimonson-ProximaNovaRegular.otf');
}
@font-face {
font-family: proximalight;
src: url('../fonts/<NAME> - Proxima Nova Light.otf');
}
/*.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 100%;
margin: auto;
}
.left{
background: none !important;
}
.right{
background: none !important;
}*/
#myCarousel .item{
/*padding-bottom for responsive height*/
padding-bottom: 50%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 250px;
}
#myCarousel .first-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image5.jpg);
}
#myCarousel .second-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image1.jpg);
}
#myCarousel .third-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image5.jpg);
}
#myCarousel .carousel-heading{font-size: 40px;}
.head2{
padding-top: 15%;
color: white;
width: 80%;
margin: -39% auto;
font-family: gothamrounded;
}
.btn{
border:none;
color: #FF6666;
font-size: 24px;
font-style: bold;
background: none;
padding-top: 2%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 2%;
vertical-align: text-top;
}
.uplp{
padding-top: 12%;
}
.btn:hover{
background: none;
color: #FF6666;
}
.allpostnav{
padding-top: 1%;
min-width: 100%;
font-size: 18px;
}
.nav-tabs>li.active{
background: none ;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus{
background: none ;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
}
.nav-tabs>li.active>a:hover{
background: none;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
border-style: bold;
}
.allpostnav li{
margin-left: 2%;
}
.allpostnav li a{
color: #888888;
}
.headerImage{
min-height: 500px;
width: 100%;
}
.laptop{
margin-top: 0%;
color: #ef5b5b;
font-size: 140px;
}
.marker{
margin-top: 6%;
}
.gift{
margin-top: 2%;
}
#navbar{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
color: white;
border: none;
height: 97px;
}
.map{
height: 210px;
width:220px;
}
.mapdiv{
margin-left: 2%;
}
.karachi{
margin-top: 0px;
color: #252525;
}
.blogheading{
font-family: gothamroundedregular;
font-size: 32px;
color: #FFFFFF;
float: left;
margin-left: 9%;
}
.blogheadingbox{
margin-top: 9%;
}
.blogheading1{
font-family: gothamroundedregular;
font-size: 32px;
color: #FFFFFF;
margin-left: 5%;
}
.blogheadingbox1{
margin-top: 5%;
}
#navbar2{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 2.5%;
padding-top: 1%;
}
.navindex{
margin-top: -1% !important;
}
#upnavbar2{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 0px;
padding-top: 1%;
}
#cbody{
background: #F6F6F6;
}
.img-headerindex{
width: 200px;
height: 50px;
}
.img1{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(img/image5.jpg);
background-size: 100% 100%;
min-height: 320px;
width: 100%;
}
.navbar-brand{
padding: 4px 15px;
}
.navbar-nav li a{
padding-top: 0px;
}
.carousel-inner{
max-height: 500px;
}
#logoindex{
width: 120px;
padding-left: 10%;
}
#logo2{
width: 12%;
}
#logo2up{
width: 15%;
}
#mynavbarindex{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
}
#headText{
color: white;
}
#headText2{
color: #336699;
font-size: 16px;
font-family: proximalight;
}
#take{
background-color: #FF6666;
border:none;
border-radius: 8px;
font-size: 20px;
color: white;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 3%;
}
#text1{
text-align: center;
}
.line{
height: 200px;
background-color: white;
width: 3px;
}
#cimage{
border:3px solid black;
border-color:#EF5B5B;
}
#band{
min-height: 400px;
padding-top: 9%;
}
#tour{
}
.testimonialheading{
font-family: gothamroundedregular;
text-align: center;
color: #EF5B5B;
font-size: 50px;
padding-top: 180px;
font-weight: bold;
padding-bottom: 110px;
}
.testimonialnames{
color: #252525;
}
#second{
min-height: 300px;
text-align: center;
}
#box2{
padding-top: 50px;
}
#num{
font-size: 20px;
color: #EF5B5B;
}
#thirdindex{
min-height: 900px;
background-color: #F6F6F6;
background-image: url(../img/lpbackground.png);
background-repeat: no-repeat;
background-position: 75% 70%;
}
#ut{
text-align: center;
color: #EF5B5B;
font-size: 40px;
padding-top: 150px;
font-weight: bold;
}
#fourthindex{
height: 1050px;
}
#p1{
color: #EF5B5B;
font-size: 50px;
padding-top: 8%;
padding-left: 6%;
font-weight: bold;
font-family: gothamroundedregular;
}
#left{
height: 420px;
background: url(img/image1.jpg);
}
#right{
height: 200px;
background: url(img/image1.jpg);
}
#empty{
background-color: #F6F6F6;
min-height: 350px;
box-shadow: 0px 0px 10px #888888;
background-image: url(../img/qoutationmarks.png);
background-repeat: no-repeat;
background-position: 100% -37%;
}
#raised{
min-height: 400px;
padding-top: 5%;
}
#charity{
font-size: 80px;
color: #EF5B5B;
margin-bottom: 0px;
font-weight: bold;
}
#charityText{
font-size: 20px;
margin-top: -8px;
}
#lm{
font-size: 18px;
color: #EF5B5B;
margin-top: -10%;
}
#logos{
min-height: 500px;
background-color: #F6F6F6;
box-shadow: 0px 0px 10px #888888;
}
#logos p{
font-size: 40px;
color: #EF5B5B;
padding-top: 20%;
font-weight: bold;
}
.footerindex{
min-height: 500px;
background-color: #252525;
background-image: url(../img/redmap600.png);
background-repeat: no-repeat;
background-size: 600px 320px;
background-position: 49% 55%;
}
#bottom{
padding-top: 4%;
}
#bottom label{
color: white;
font-size: 16px;
}
#bottom input{
border: 0px solid #000000;
border-bottom-width: 2px;
min-width: 30%;
border-bottom-color: grey;
background-color: transparent;
font-size: 16px;
}
#bottom button{
background-color: #FF6666;
border:none;
border-radius: 10px;
color: white;
padding: 8px;
margin-left: 2%;
width: 110px;
}
#countries{
color: white;
padding-top: 3%;
font-size: 18px;
}
#address{
padding-top: 2%;
text-align: center;
font-size: 16px;
color: white;
}
#hiwbody{
background-color: #F6F6F6;
}
#indexbody{
font-family: gothamrounded;
}
.carousel-inner.testinner{
min-height: 200px;
width: 51%;
}
#main{
margin-top: 7.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
}
.spostnav{
margin-top: 1%;
width: 85%;
}
.spostheader{
background: url(img/image1.jpg);
min-height:350px;
background-size: 100%;
background-repeat: no-repeat;
margin-bottom: 0px;
}
.priceContainer{
background: url(img/image1.jpg);
min-height:700px;
top: none;
}
#footer2{
min-height: 50px !important;
}
#footertext{
color: #FF6666;
font-size: 13px;
padding-left: 4px;
}
#text-box{
padding-top: 1%;
padding-bottom: 1%;
text-align: center;
background-color: #252525;
}
#btn{
border-radius: 3px;
background-color: #FF6666;
border:none;
min-width: 13%;
padding: 1%;
margin-left: 3%;
color: white;
font-size: 17px;
}
#formText{
min-width: 15%;
margin-left: -0.5%;
padding: 1%;
padding-left: 0.5%;
box-shadow: 0 0 1px #888888;
}
#formdate{
margin-left: -0.5%;
width: 12%;
padding: 0.8%;
box-shadow: 0 0 1px #888888;
}
#formprice{
margin-left: -1%;
width: 12%;
padding: 0.8%;
box-shadow: 0 0 1px #888888;
}
#formhead{
color: #FF6666;
padding-top: 40px;
padding-left: 40px;
}
#formlabel{
color: #FF6666;
padding-left: 60px;
padding-top: 20px;
}
.if{
margin-left: 60px;
width: 300px;
}
#from{
margin-left: 60px;
width: 150px;
}
#to{
width: 150px;
}
#dash{
color: #FF6666;
padding-left: 5px;
padding-right: 5px;
}
#myModal .modal-dialog {
min-width: 75%;
background-color: #F6F6F6;
border-radius: 1%;
}
#myModal .modal-content {
background-color: #F6F6F6;
/*background: url(img/Dots2.png);
background-repeat: no-repeat;
background-position: 0% 70%;*/
}
#category{
min-width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
-webkit-appearance: none;
-moz-appearance: none;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
#weight{
min-width: 20%;
height: 40px;
padding: 10px;
margin-bottom: 5%;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
.modal-header{
border:none;
}
#title{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
}
#description{
min-width: 41%;
height: 150px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
#myModalLabel{
font-size:38px;
color: #FF6666;
padding-bottom: 3%;
}
#to{
min-width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#from{
min-width: 20%;
height: 40px;
padding: 10px;
margin-left: 5px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#flightNumber{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
.fa-times-circle-o{
border: none;
background: none;
}
#flightDes{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
/*.glyphicon-chevron-right{
margin-left: 90%;
}*/
.img2index{
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
.pd1{
max-height: 73%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/gifts-for-strangers.jpg);
background-size: 200% 100%;
background-position: 29%;
background-repeat: no-repeat;
}
.pd1 h1{
color: white;padding-top: 5%;padding-bottom:0px; padding-left: 5%;padding-right: 5%;
}
.pd2{
min-height:50%;
padding-left: 0px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/meeting_you_partners_family.jpg);
background-size: 650px 450px;
background-repeat: no-repeat;
}
.pd2 h1{
color: white;padding-top: 1%;padding-left: 5%;padding-right: 5%;
}
#p3{
font-size: 20px; color: white;padding-top: 1%;padding-bottom: 5%; padding-left: 5%;padding-right: 5%;
}
#p4{
font-size: 20px; color: white;padding-top: 1%;padding-bottom: 5%; padding-left: 5%;padding-right: 5%;
}
#p2{
font-size: 20px;
color: white;
padding-top: 23%;
padding-bottom: 5%;
padding-left: 1%;
padding-right: 5%;
width: 78%;
}
.pd3{
min-height:50%;margin-bottom: 0px;
padding-top: 2%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/parcel-collect-header-large.jpg);
background-size: 645px 323px;
background-repeat: no-repeat;
}
.pd3 h1{
color: white;padding-top: 1%;padding-left: 5%;padding-right: 5%;
}
.allpostpanel{
padding-left: 5%;
padding-right: 5%;
}
#allposttext{
color: #FF6666;
margin-top: 0px;
margin-bottom: 0px;
}
#allpostbody{
background:#F6F6F6;
font-family: gothamrounded;
}
.rightpanel{
border: none;
padding:0px;
}
.panelfooter{
background:#252525;
}
.panelbody{
padding:0px;
}
.panelfootertext{
font-size: 22px;
color: white;
}
.allpostpanelcontent{
margin-top: 5%;
margin-bottom: 3.5%;
}
fieldset, label { margin: 0; padding: 0; }
/****** Style Star Rating Widget *****/
.rating {
border: none;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
#upbody{
background-color: #F6F6F6;
font-family: proximalight;
}
#upmain{
border:none;
padding-top: 7.5%;
}
.uppanelfooter{
background: none;
border-top: none;
}
.uplpanelfooter{
background: none;
color:#FF6666;
border-top: none;
padding-top: 0px;
}
.emailbox{
margin-top:10%;
margin-bottom: 10%;
}
.not{
margin-top: 7%;
margin-bottom:0px;
}
.tnumber{
margin-top: 0px;
margin-bottom: 12%;
color:#FF6666;
}
.footerline{
width:90%;
height: 2px;
background-color: #D0D0D0;
}
.abouttag{
color: #FF6666;
margin-bottom: 0px;
margin-left: 3%;
}
.bodyline1{
width:95%;
height: 2px;
background-color: #ADADAD;
}
.body1{
margin-left: 3%;
margin-bottom: 5%;
margin-top: 2%;
width: 90%;
}
.triptag{
color:#FF6666;
margin-left: 3%;
}
.tripnumber{
color:#FF6666;
margin-right: 3%;
}
.panelbody1{
width:95%;
}
.bodyline2{
margin-bottom: 0px;
width: 95%;
background-color:#D0D0D0;
height: 2px;
}
.reviewtag{
color: #FF6666;
margin-bottom: 0px;
margin-left: 3%;
}
.reviewname{
margin-bottom: 0px;
}
.reviewbox{
padding:0px;
}
.reviewimg{
padding-right: 0px;
padding-top: 1.5%;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#sidebarmain {
transition: margin-left .5s;
padding: 16px;
}
body{
transition:background-color .5s;
}
.cpbox{
padding-top: 8%;
padding-bottom: 7%;
}
.cplbox{
padding-left: 4%;
}
.cprbox{
padding-left: 0px;
border-left: solid #D0D0D0;
}
.cprboxtext{
color:#FF6666;padding-left: 34%;
padding-bottom: 5%;
}
.cpaddress{
font-size: 16px;
padding-left: 9%;
padding-top: 18%;
}
.pno{
font-size: 16px;
padding-left: 9%;
padding-top: 2%;
padding-bottom: 5%;
}
.cptext1{
color: #FF6666;
font-size: 20px;
padding-top: 4%;
padding-bottom: 3%;
}
.cptext2{
color: #FF6666;
font-size: 24px;
padding-top: 1%;
padding-bottom: 3%;
text-align: center;
}
.cpemail{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
}
.cpsubject{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
}
.cpmsg{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
resize: none;
height: 150px;
}
/*///////////////////////////////SING IN////////////////////*/
#signheadText2{
font-size: 16px;
font-family: gothamrounded;
font-weight: bold;
font-size: 20px;
margin-top: 6%;
margin-left: 0%;
color: #3c6d9e;
}
.signheading{
color: #ef5b5b;
font-family: gothamrounded;
font-weight: bold;
font-size: 36px;
}
.signbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 500px;
width: 40%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
}
.signwelcome{
color: #ef5b5b;
font-size: 33px;
font-weight: bold;
}
#signinform{
min-width: 60%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
.signforgot{
color: #ef5b5b;
font-size: 16px;
margin-left: 29%;
}
.signcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
font-family: gothamrounded;
}
a.signcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
a.signforgot:hover{
color: #ef5b5b;
text-decoration:none;
}
.signendtext{
color: #ef5b5b;
font-size: 20px;
}
.signendlink{
color: #ef5b5b;
font-size: 20px;
}
a.signendlink:hover{
color: #ef5b5b;
text-decoration:none;
}
/*///////////////////////////////SING UP////////////////////*/
.createbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 700px;
width: 85%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
}
.uptext{
color: #ef5b5b;
font-size: 30px;
font-family: gothamrounded;
font-weight: bold;
width: 42%;
margin-top: 20%;
}
.upsubtext{
color: #353535;
font-size: 17px;
font-weight: bold;
width: 41%;
}
.formtag{
color: #ef5b5b;
font-size: 16px;
margin-left: 16%;
}
#nametag{
width: 35%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
margin-right: 1%;
}
#signupform{
width: 73%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#birthtag{
width: 15%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
margin-right: 1%;
text-align: center;
}
.radio label {
display: inline-block;
vertical-align: middle;
position: relative;
padding-left: 5px;
}
.radio.radio-danger input[type="radio"] + label::after {
background-color: #ef5b5b; }
.radio.radio-danger input[type="radio"]:checked + label::before {
border-color: #ef5b5b; }
.radio.radio-danger input[type="radio"]:checked + label::after {
background-color: #ef5b5b; }
.radio.radio-danger{
margin-left: 35%;
}
.upbutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 10px 20px;
width: 30%;
font-family: gothamrounded;
margin-left: 40%;
}
a.upbutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
/*///////////////////////////////SING UP////////////////////*/
.setupbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 700px;
width: 95%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
margin-left: 32px;
}
.setupheading{
color: #ef5b5b;
font-size: 33px;
font-weight: bold;
}
.setupsubheading{
color: #353535;
font-size: 17px;
font-weight: bold;
width: 41%;
padding-left: 80px;
}
.address{
color: #ef5b5b;
font-size: 16px;
margin-left: 80px;
font-weight: bold;
}
.address1{
color: #ef5b5b;
font-size: 16px;
margin-left: 60px;
font-weight: bold;
}
#createform{
width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
.upterms{
color: #959595;
font-size: 16px;
font-weight: bold;
}
.uplinks{
color: #ef5b5b;
font-size: 16px;
font-weight: bold;
}
a.uplinks:hover{
color: #ef5b5b;
text-decoration:none;
}
.upcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 106%;
font-family: gothamrounded;
margin-top: -10%;
margin-left: -25%;
}
a.upcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.addcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 106%;
font-family: gothamrounded;
margin-top: 11%;
margin-left: -45%;
margin-bottom: 23%;
}
a.addcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
#createinform{
width: 49%;
height: 30px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/*/////////////////////////////////////////////////////////////////SPDAQYA FILE////////////////////////////////////////////////////////////*/
.btn{
border:none;
color: #FF6666;
font-size: 20px;
font-style: bold;
background: none;
padding-top: 2%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 2%;
}
.headerImage{
min-height: 500px;
width: 100%;
}
.nav{
margin-top: -2%;
}
}
#navbar{
background: none;
color: white;
border: none;
}
#navbar2{
background-color: white ;
box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 2px 20px 0 rgba(0, 0, 0, 0.19);
padding-bottom: 0.5%;
height: 97px;
}
#navbar3{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 2.0%;
}
#navbar4{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: -1.5% !important;
}
.img-header{
width: 200px;
height: 50px;
}
.img-header1{
width: 125px;
padding-top: 20px;
padding-left: 10px;
}
.img-header1tl{
width: 16%;
height: 120%;
margin-left: 2%;
margin-top: 1%;
}
.img-header1email{
width: 35%;
height: 120%;
margin-left: 0%;
margin-top: 4%;
}
#tlbody{
font-family: proximaregular;
}
.img-header2{
width: 13%;
height: 180%;
margin-top: -4%;
margin-left: 8%
}
.img1{
background: url(img/image1.jpg);
background-size: 100% 100%;
min-height: 500px;
width: 100%;
}
.imgallpost{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.28)),url(../img/parcel-collect-header-large1.jpg);
background-size: 100% 100%;
min-height: 350px;
width: 100%;
}
.navbar-brandsp{
padding-top: 0px;
}
.carousel-inner{
min-height: 500px;
}
#logo{
min-height: 210%;
padding-left: 20%;
padding-top: 10%;
}
#logo3{
width: 12%;
margin-left: 5%;
margin-top: 2%;
}
#mynavbar{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
}
#mynavbari{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
height: 97px;
}
.navbar-toggle{
background-color: #93aec9;
}
.icon-bar{
background-color: #ffb8b8;
}
/* fahad /////////////////////////////////////////////////////////*/
.pagerow{
font-family: proximalight;
}
#imageid{
margin-left: 50%;
margin-top: 50%;
}
#maniconsp{
margin-left: 10%;
margin-top: -48%;
}
.dropdown {
display: inline-block;
float: right;
position: relative;
}
.dropdown-content {
border-radius: 15px;
right: 0;
display: none;
padding: 0px 5px;
clear: both;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
white-space: nowrap;
list-style-type: none;
}
.dropdown-content a {
float: none;
color: black;
font-family: gothamrounded;
padding: 4px 16px;
text-decoration: none;
display: block;
text-align: left;
margin-bottom: 4%;
}
.dropdown-content a:hover {
background-color: #ddd;
}
#drophr{
margin-top: 2%;
margin-bottom: 6%;
color: black;
background-color: black;
border-color: black;
}
.show {
display: block;
}
.dropdown:hover .dropdown-content {
display: block;
}
.fahad{
width: 40%;
}
div.stars {
/*width: 270px; */
display: inline-block;
padding-left: 48%;
padding-top: 8%;
}
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;
}
#itemname{
padding-left: 30%;
padding-top: 10%;
}
#itemdescription{
padding-left: 30%;
margin-bottom: 0px;
}
#phonenumber{
padding-left: 30%;
}
#travellingfrom{
padding-left: 66%;
}
#travellingto{
margin-left: 8%;
}
#departure{
color: #FF6666;
padding-left: 64%;
margin-bottom: 1px;
font-family: proximaregular;
}
#arrival{
color: #FF6666;
margin-left: 4%;
font-family: proximaregular;
}
.datespan{
margin-left: -14%;
}
#bighr{
width: 68%;
color: #cccccc;
background-color: #cccccc;
border: none;
margin-right: 27%;
height: 1px;
}
#descriptionn{
padding-left: 17%;
font-family: proximaregular;
}
.icancarryrow{
border: 2px groove;
border-color: #f5f5f5;
width: 73%;
margin-left: 3%;
}
#icancarry{
padding-left: 0%;
font-family: proximaregular;
}
#detailsdescription{
padding-top: 3%;
}
.addreviewrow{
border: 2px groove;
border-color: #f5f5f5;
width: 58%;
margin-left: 3%;
min-height: 100px;
}
#locationdescription{
border-bottom: 1px solid rgba(128, 128, 128, 0.21);
color: red;
margin-left: 17%;
margin-top: -5%;
width: 19%;
}
.addreviewform{
border: none;
width: 80%;
display: inline;
}
.form-control.addreviewform:focus{
border-color: white;
outline: none;
box-shadow: none;
}
#headText{
color: white;
}
#headText2sp{
color: #336699;
font-size: 16px;
font-family: gothamrounded;
margin-left: -42%;
width: 100%;
margin-top: -6%;
}
#take{
background-color: #FF6666;
border:none;
border-radius: 8px;
font-size: 20px;
color: white;
}
#text1{
text-align: center;
}
.line{
height: 200px;
background-color: white;
width: 3px;
}
#cimage{
border:3px solid black;
border-color:#EF5B5B;
}
#band{
min-height: 400px;
padding-top: 9%;
}
#tour{
}
#testimonial{
background-color: #F6F6F6;
height: 800px;
box-shadow: 0px 2px 5px #888888;
background-image: url(../img/qoutationmarks.png);
background-repeat: no-repeat;
background-position: 100% -6%;
}
#second{
min-height: 300px;
text-align: center;
}
#box2{
padding-top: 50px;
}
#num{
font-size: 20px;
color: #EF5B5B;
}
#third{
min-height: 800px;
background-color: #F6F6F6;
}
#third p{
text-align: center;
color: #EF5B5B;
font-size: 40px;
padding-top: 150px;
}
#fourth{
min-height: 800px;
}
#p1{
color: #EF5B5B;
font-size: 50px;
padding-top: 8%;
padding-left: 6%;
}
#left{
height: 420px;
background: url(img/image1.jpg);
}
#right{
height: 200px;
background: url(img/image1.jpg);
}
#empty{
background-color: #F6F6F6;
min-height: 350px;
/*box-shadow: 0px 2px 5px #888888; */
}
#raised{
min-height: 400px;
padding-top: 5%;
}
#charity{
font-size: 80px;
color: #EF5B5B;
margin-bottom: 0px;
}
#charityText{
font-size: 20px;
margin-top: 0px;
}
#lm{
font-size: 18px;
color: #EF5B5B;
}
#logos{
min-height: 500px;
background-color: #F6F6F6;
}
#logos p{
font-size: 40px;
color: #EF5B5B;
padding-top: 20%;
}
#bottom{
padding-top: 4%;
}
#bottom label{
color: white;
font-size: 16px;
}
#bottom input{
border: 0px solid #000000;
border-bottom-width: 2px;
min-width: 350px;
border-bottom-color: grey;
background-color: transparent;
}
#countries{
color: white;
padding-top: 3%;
font-size: 18px;
}
#address{
padding-top: 2%;
text-align: center;
font-size: 16px;
color: white;
}
#hiwbody{
background-color: #F6F6F6;
}
/*.wholebody{
background-color: #FFFFFF;
}*/
#main{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
}
/*#emailmain {
padding: 0px;
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
}
#mailnavbar{
width: inherit;
left: 50%;
transform: translateX(-50%);
}*/
#main1{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
background-repeat: no-repeat;
background-position: 100% 100%;
background-image: url(img/planetaxlaws.png);
}
#main2{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
}
#main3{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
background-position: 100% 100%;
background-image: url(../img/messenger_background.jpg);
}
#messengerbody{
font-family: proximalight;
}
.nav-tabs{
margin-top: 1%;
width: 85%;
font-family: proximaregular;
font-size: 23px;
}
.spostheader{
height:350px;
background-size: 100%;
width: 100%;
background-repeat: no-repeat;
margin-bottom: 0px;
}
.priceContainer{
min-height:700px;
top: none;
border: 2px groove;
margin-top: -25%;
margin-left: -18%;
margin-right: 14%;
font-family: proximalight;
}
.pheading{
color: #FFFFFF;
background-color: #464646;
min-height: 210px;
font-family: proximalight;
}
#reportuser{
margin-left: -14%;
margin-top: 2%;
color: #ef5b5b;
}
#reviews{
padding-left: 5%;
font-family: proximaregular;
}
.reviewname{
margin-bottom: 0px;
font-family: gothamrounded;
font-size:24px;
}
.reviewbox{
padding:0px;
}
.reviewimg{
padding-right: 0px;
padding-top: 1.5%;
}
/****** Style Star Rating Widget *****/
.rating {
border: none;
float: right;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
.reviewrow{
margin-bottom: 5%;
}
#reviewdescription{
margin-left: 17%;
margin-top: 0%;
margin-bottom: 3%;
}
.pfooter{
border: none;
background-color: #FFFFFF;
}
#hrid{
width: 80%;
color: #cccccc;
border: solid 1.5px #cccccc;
}
.flagicon{
color: #ef5b5b;
margin-left: 73%;
}
.mobileicon{
color: #ef5b5b;
margin-left: 57%;
}
#mobileicon{
color: #ef5b5b;
}
.mobileicon1{
color: #ef5b5b;
margin-top: 10%;
}
#filledshirt{
color: #ef5b5b;
margin-left: 30%;
}
#shirtid{
margin-left: 1%;
margin-bottom: 0%;
margin-top: 17%;
}
.panelleftside{
}
.panelrightside{
margin-top: 2%;
}
#clothescarry{
margin-top: 6%;
margin-left: 1%;
margin-bottom: 1%;
}
#pricetag{
color: #FFFFFF;
margin-top: 0%;
margin-left: 2%;
}
#electronics{
color: #ef5b5b;
margin-bottom: 0%;
margin-top: inherit
}
.buttontravel{
margin-top: 24%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
}
#taxlaws{
color: #FF6666;
}
.safetyrow{
margin-top: 22%;
}
.listitem{
font-size: 17px;
}
#footer2{
min-height: 60px !important;
margin-bottom: 0%;
}
#footer3{
min-height: 60px !important;
margin-bottom: -1.05%;
margin-left: -3.09%;
font-family: gothamrounded;
min-height: 500px;
background-color: #252525;
}
#footertext{
color: #FF6666;
font-size: 13px;
padding-left: 4px;
padding-top: 4px;
}
#text-boxtl{
padding-top: 1%;
padding-bottom: 1%;
text-align: center;
background-color: #252525;
height: 60px;
}
#btn{
border-radius: 3px;
background-color: #FF6666;
border:none;
min-width: 18%;
padding: 1%;
margin-left: 3%;
color: white;
font-size: 20px;
}
#formText{
min-width: 18%;
margin-left: -0.5%;
padding: 10px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#formdate{
margin-left: -3px;
width: 12%;
padding: 9px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#formprice{
margin-left: -3px;
width: 12%;
padding: 9px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#addpostbody{
font-family: gothamrounded;
}
#formhead{
color: #FF6666;
padding-top: 40px;
padding-left: 60px;
font-weight: bold;
}
#formlabel{
color: #FF6666;
padding-left: 60px;
padding-top: 0px;
}
.if{
margin-left: 60px;
width: 300px;
}
#from{
margin-left: 60px;
width: 150px;
}
#to{
width: 150px;
}
#dash{
color: #FF6666;
padding-left: 5px;
padding-right: 5px;
}
#myModal .modal-dialog {
min-width: 75%;
}
#myModal .modal-content {
background: url(img/wizard.png);
background-repeat: no-repeat;
}
#category{
min-width: 20%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-webkit-appearance: none;
-moz-appearance: none;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
#weight{
min-width: 20%;
height: 40px;
padding: 10px;
margin-bottom: 5%;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
.modal-header{
border:none;
}
#title{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
}
#description{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
#myModalLabel{
font-size:38px;
color: #FF6666;
padding-bottom: 3%;
}
#to{
min-width: 20%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#from{
min-width: 20%;
height: 40px;
padding: 10px;
margin-left: 5px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#flightNumber{
min-width: 41%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
.fa-times-circle-o{
border: none;
background: none;
}
#flightDes{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
/*.glyphicon-chevron-right{
margin-left: 90%;
}*/
.img2{
background: url(img/image1.jpg);
background-size: 100% 100%;
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
/*//////////////////////FAQ//////////////////////////////*/
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.barsnav {
margin-left: 0%;
margin-top: 0%;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
#logoLink1{
margin-bottom: -10%;
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#imgabout{
border: 4px solid #ef5b5b;
}
.detailsofjohn{
margin-left: -3%;
margin-top: -2%;
}
/*/////////////////////////userprofile//////////////////////////////*/
.userprofileleftpanel{
padding-top: 12%;
margin-top: 7%;
}
.userprofilerightpanel{
margin-top: 2%;
}
/*/////////////////////////MESSENGER//////////////////////////////*/
.convobutton{
margin-top: 0%;
border-radius: none;
font-size: 10px;
color: #252525;
background-color: #FFFFFF;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 6px 20px;
min-width: 100%;
}
.convobutton:hover {
background-color: #e1e1e1;
}
.convopanelheader{
color: #ef5b5b;
background-color: #FFFFFF;
min-height: 10px;
}
.conversations{
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
#convoimageid{
margin-left: 40%;
margin-top: 0%;
}
.convoimagecol{
margin-left: 0%;
margin-top: 0%;
}
.convonamecol{
margin-left: -13%;
margin-top: 2%;
}
.rightconvobox{
margin-left: 4%;
margin-top: 8%;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
border-radius: 8px;
background-color: white;
}
.lefttext{
color: #ef5b5b;
}
.righttext{
margin-left: 0%;
color: #252525;
}
#convoname{
margin-left: 0%;
margin-top: 4%;
font-size: 18px;
color: #ef5b5b;
}
.accept{
margin-top: 3%;
margin-left: 60%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
}
.decline{
margin-top: 3%;
margin-left: -5%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
}
#respond{
margin-top: 15%;
margin-left: 42%;
color: #ef5b5b;
font-family: proximaregular;
font-size: 24px;
}
.pheadrow{
margin-left: 0%;
margin-top: 0%;
}
.pheadrow1{
margin-left: 0%;
}
a.buttontravel:link{
color: #FFFFFF;
text-decoration:none;
}
a.buttontravel:visited{
color: #FFFFFF;
text-decoration:none;
}
a.buttontravel:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
/*////////////////////////////////////////////////////email////////////////////////////*/
.second-span{
font-family: gothamrounded;
font-size: 50px;
color: #FFFFFF;
font-weight: bold;
}
#secondsec{
background-repeat: no-repeat;
background-position: 100% 100%;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.61)),url(../img/image5.jpg);
height: 400px;
}
.secondsecp{
margin-top: 7%;
}
.buttongetstarted {
margin-top: 3%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 17%;
font-family: gothamrounded;
}
a.buttongetstarted:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.emailheader{
font-family: gothamrounded;
font-weight: bold;
font-size: 20px;
margin-top: 6%;
margin-left: 50%;
color: #3c6d9e;
}
.emailbody{
margin-top: -5%;
}
.iconspara{
font-family: gothamrounded;
font-weight: bold;
font-size: 18px;
color: #3c6d9e;
}
#thirdemail{
background-color: #f3f3f3;
height: 335px;
}
.thirdpara{
float: left;
font-family: gothamrounded;
font-weight: bold;
font-size: 26px;
color: #252525;
width: 80%;
margin-top: 4%;
margin-left: 10%;
}
.howitworksemail{
width: 87%;
height: 1500px;
}
#fifthemail{
background-color: #f3f3f3;
height: 335px;
}
.buttonsubscribe {
margin-top: 3%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 12%;
font-family: gothamrounded;
}
a.buttonsubscribe:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.fifthpara{
font-family: gothamrounded;
font-weight: bold;
font-size: 36px;
color: #252525;
width: 32%;
margin-top: 4%;
}
#sixthemail{
height: 100px;
}
.emailfooter{
background-color: #08477c;
height: 150px;
}
.fbicon{
margin-top: 4%;
margin-right: 4%;
width: 25%;
}
.twittericon{
margin-top: 4%;
margin-right: 4%;
width: 25%;
}
.instaicon{
margin-top: 4%;
margin-left: 1%;
width: 25%;
}
#addressemail{
margin-left: 10%;
margin-top: 8%;
font-family: gothamrounded;
font-weight: bold;
font-size: 18px;
color: #FFFFFF;
}
#bellsp{
margin-left: -400%;
margin-top: -42%;
}
.dropdown-header{
margin-top: 10%;
padding: 3px 10px;
font-family: proximaregular;
color: #FF6666;
}
.droprow1{
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
background-color: #FFFFFF;
width: 97%;
margin-left: 2%;
}
.droprow{
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
background-color: #FFFFFF;
width: 97%;
margin-left: 2%;
margin-top: 3%;
}
.droprow a:hover{
background-color: #F6F6F6;
}
#dropimage{
margin-left: -33%;
margin-top: -2%;
}
.droptext{
font-family: proximaregular;
color: #FF6666;
font-size: 14px;
}
.droptime{
margin-left: 100%;
color: rgba(70, 70, 70, 0.58);
font-family: proximaregular;
font-size: 12px;
}
.droptextrow{
margin-top: 3%;
}
.seeall{
margin-left: 43%;
font-family: proximaregular;
color: #FF6666;
}
.dropdown1 {
display: inline-block;
float: right;
position: relative;
}
.dropdown-content1 {
border-radius: 15px;
right: 0;
display: none;
padding: 0px 5px;
clear: both;
position: absolute;
background-color: #ffffff;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
white-space: nowrap;
list-style-type: none;
}
.dropdown-content1 a {
float: none;
color: black;
font-family: gothamrounded;
padding: 4px 16px;
text-decoration: none;
display: block;
text-align: left;
margin-bottom: 0%;
}
.drophref{
height: 79px;
}
.dropdown-content1 a:hover {
background-color: rgba(221, 221, 221, 0.23);;
}
#firstsec{
height: 100px;
}
@media(min-width:0px) and (max-width: 991px)
{
.line{
visibility: hidden;
height: 10px;
}
.img1{
padding-bottom: 10%;
padding-top: 10%;
}
.text1{
padding-top: 15%;
}
.font1{
font-size: 18px !important;
}
.btn{
font-size: 14px !important;
}
.btn:hover{
background: none;
color: #FF6666;
}
.headText{
background-color: black;
width: 100%;
}
.mynavbar{
padding-right: 0px;
}
.carousel-inner{
height: 400px !important;
}
.first-item{
height: 400px !important;
}
.second-item{
height: 400px !important;
}
.third-item{
height: 400px !important;
}
.user{
text-align: center;
}
.apmap{
width: 100%;
}
.aptext{
text-align: center;
}
.reviewname{
text-align: center;
}
.fa-bars{
padding-left: 2%;
}
.logo2sp{
width: 25% !important;
padding-left: 2% !important;
margin-top: -16% !important;
}
.modal-dialog{
border-radius: 3%;
}
.modal-header{
display: none;
}
.navbar{
height: 62px;
}
.main{
margin-top: 20.5% !important;
}
.cplbox{
text-align: center;
}
.cprbox{
text-align: center;
border:none;
}
.cprboxtext{
padding-left: 0px;
}
.cpaddress{
padding-left: 0px;
}
.pno{
padding-left: 0px;
}
.uplp{
margin-top: 13%;
}
} | public/old/css/daqyaStyle.css | @font-face {
font-family: gothamrounded;
src: url('../fonts/gothamrnd-light.ttf');
}
@font-face {
font-family: gothamroundedregular;
src: url('../fonts/gothamrnd-medium.ttf');
}
@font-face {
font-family: proximaregular;
src: url('../fonts/MarkSimonson-ProximaNovaRegular.otf');
}
@font-face {
font-family: proximalight;
src: url('../fonts/<NAME> - Proxima Nova Light.otf');
}
/*.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 100%;
margin: auto;
}
.left{
background: none !important;
}
.right{
background: none !important;
}*/
#myCarousel .item{
/*padding-bottom for responsive height*/
padding-bottom: 50%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 250px;
}
#myCarousel .first-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image5.jpg);
}
#myCarousel .second-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image1.jpg);
}
#myCarousel .third-item{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(../img/image5.jpg);
}
#myCarousel .carousel-heading{font-size: 40px;}
.head2{
padding-top: 15%;
color: white;
width: 80%;
margin: -39% auto;
font-family: gothamrounded;
}
.btn{
border:none;
color: #FF6666;
font-size: 24px;
font-style: bold;
background: none;
padding-top: 2%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 2%;
vertical-align: text-top;
}
.uplp{
padding-top: 12%;
}
.btn:hover{
background: none;
color: #FF6666;
}
.allpostnav{
padding-top: 1%;
min-width: 100%;
font-size: 18px;
}
.nav-tabs>li.active{
background: none ;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus{
background: none ;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
}
.nav-tabs>li.active>a:hover{
background: none;
border-right: none;
border-left: none;
border-top: none;
border-bottom-color: #FF6666;
border-style: bold;
}
.allpostnav li{
margin-left: 2%;
}
.allpostnav li a{
color: #888888;
}
.headerImage{
min-height: 500px;
width: 100%;
}
.laptop{
margin-top: 0%;
color: #ef5b5b;
font-size: 140px;
}
.marker{
margin-top: 6%;
}
.gift{
margin-top: 2%;
}
#navbar{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
color: white;
border: none;
height: 97px;
}
.map{
height: 210px;
width:220px;
}
.mapdiv{
margin-left: 2%;
}
.karachi{
margin-top: 0px;
color: #252525;
}
.blogheading{
font-family: gothamroundedregular;
font-size: 32px;
color: #FFFFFF;
float: left;
margin-left: 9%;
}
.blogheadingbox{
margin-top: 9%;
}
.blogheading1{
font-family: gothamroundedregular;
font-size: 32px;
color: #FFFFFF;
margin-left: 5%;
}
.blogheadingbox1{
margin-top: 5%;
}
#navbar2{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 2.5%;
padding-top: 1%;
}
.navindex{
margin-top: -1% !important;
}
#upnavbar2{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 0px;
padding-top: 1%;
}
#cbody{
background: #F6F6F6;
}
.img-headerindex{
width: 200px;
height: 50px;
}
.img1{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(img/image5.jpg);
background-size: 100% 100%;
min-height: 320px;
width: 100%;
}
.navbar-brand{
padding: 4px 15px;
}
.navbar-nav li a{
padding-top: 0px;
}
.carousel-inner{
max-height: 500px;
}
#logoindex{
width: 120px;
padding-left: 10%;
}
#logo2{
width: 12%;
}
#logo2up{
width: 15%;
}
#mynavbarindex{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
}
#headText{
color: white;
}
#headText2{
color: #336699;
font-size: 16px;
font-family: proximalight;
}
#take{
background-color: #FF6666;
border:none;
border-radius: 8px;
font-size: 20px;
color: white;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 3%;
}
#text1{
text-align: center;
}
.line{
height: 200px;
background-color: white;
width: 3px;
}
#cimage{
border:3px solid black;
border-color:#EF5B5B;
}
#band{
min-height: 400px;
padding-top: 9%;
}
#tour{
}
.testimonialheading{
font-family: gothamroundedregular;
text-align: center;
color: #EF5B5B;
font-size: 50px;
padding-top: 180px;
font-weight: bold;
padding-bottom: 110px;
}
.testimonialnames{
color: #252525;
}
#second{
min-height: 300px;
text-align: center;
}
#box2{
padding-top: 50px;
}
#num{
font-size: 20px;
color: #EF5B5B;
}
#thirdindex{
min-height: 900px;
background-color: #F6F6F6;
background-image: url(../img/lpbackground.png);
background-repeat: no-repeat;
background-position: 75% 70%;
}
#ut{
text-align: center;
color: #EF5B5B;
font-size: 40px;
padding-top: 150px;
font-weight: bold;
}
#fourthindex{
height: 1050px;
}
#p1{
color: #EF5B5B;
font-size: 50px;
padding-top: 8%;
padding-left: 6%;
font-weight: bold;
font-family: gothamroundedregular;
}
#left{
height: 420px;
background: url(img/image1.jpg);
}
#right{
height: 200px;
background: url(img/image1.jpg);
}
#empty{
background-color: #F6F6F6;
min-height: 350px;
box-shadow: 0px 0px 10px #888888;
background-image: url(../img/qoutationmarks.png);
background-repeat: no-repeat;
background-position: 100% -37%;
}
#raised{
min-height: 400px;
padding-top: 5%;
}
#charity{
font-size: 80px;
color: #EF5B5B;
margin-bottom: 0px;
font-weight: bold;
}
#charityText{
font-size: 20px;
margin-top: -8px;
}
#lm{
font-size: 18px;
color: #EF5B5B;
margin-top: -10%;
}
#logos{
min-height: 500px;
background-color: #F6F6F6;
box-shadow: 0px 0px 10px #888888;
}
#logos p{
font-size: 40px;
color: #EF5B5B;
padding-top: 20%;
font-weight: bold;
}
.footerindex{
min-height: 500px;
background-color: #252525;
background-image: url(../img/redmap600.png);
background-repeat: no-repeat;
background-size: 600px 320px;
background-position: 49% 55%;
}
#bottom{
padding-top: 4%;
}
#bottom label{
color: white;
font-size: 16px;
}
#bottom input{
border: 0px solid #000000;
border-bottom-width: 2px;
min-width: 30%;
border-bottom-color: grey;
background-color: transparent;
font-size: 16px;
}
#bottom button{
background-color: #FF6666;
border:none;
border-radius: 10px;
color: white;
padding: 8px;
margin-left: 2%;
width: 110px;
}
#countries{
color: white;
padding-top: 3%;
font-size: 18px;
}
#address{
padding-top: 2%;
text-align: center;
font-size: 16px;
color: white;
}
#hiwbody{
background-color: #F6F6F6;
}
#indexbody{
font-family: gothamrounded;
}
.carousel-inner.testinner{
min-height: 200px;
width: 51%;
}
#main{
margin-top: 7.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
}
.spostnav{
margin-top: 1%;
width: 85%;
}
.spostheader{
background: url(img/image1.jpg);
min-height:350px;
background-size: 100%;
background-repeat: no-repeat;
margin-bottom: 0px;
}
.priceContainer{
background: url(img/image1.jpg);
min-height:700px;
top: none;
}
#footer2{
min-height: 50px !important;
}
#footertext{
color: #FF6666;
font-size: 13px;
padding-left: 4px;
}
#text-box{
padding-top: 1%;
padding-bottom: 1%;
text-align: center;
background-color: #252525;
}
#btn{
border-radius: 3px;
background-color: #FF6666;
border:none;
min-width: 13%;
padding: 1%;
margin-left: 3%;
color: white;
font-size: 17px;
}
#formText{
min-width: 15%;
margin-left: -0.5%;
padding: 1%;
padding-left: 0.5%;
box-shadow: 0 0 1px #888888;
}
#formdate{
margin-left: -0.5%;
width: 12%;
padding: 0.8%;
box-shadow: 0 0 1px #888888;
}
#formprice{
margin-left: -1%;
width: 12%;
padding: 0.8%;
box-shadow: 0 0 1px #888888;
}
#formhead{
color: #FF6666;
padding-top: 40px;
padding-left: 40px;
}
#formlabel{
color: #FF6666;
padding-left: 60px;
padding-top: 20px;
}
.if{
margin-left: 60px;
width: 300px;
}
#from{
margin-left: 60px;
width: 150px;
}
#to{
width: 150px;
}
#dash{
color: #FF6666;
padding-left: 5px;
padding-right: 5px;
}
#myModal .modal-dialog {
min-width: 75%;
background-color: #F6F6F6;
border-radius: 1%;
}
#myModal .modal-content {
background-color: #F6F6F6;
/*background: url(img/Dots2.png);
background-repeat: no-repeat;
background-position: 0% 70%;*/
}
#category{
min-width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
-webkit-appearance: none;
-moz-appearance: none;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
#weight{
min-width: 20%;
height: 40px;
padding: 10px;
margin-bottom: 5%;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
.modal-header{
border:none;
}
#title{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
}
#description{
min-width: 41%;
height: 150px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
#myModalLabel{
font-size:38px;
color: #FF6666;
padding-bottom: 3%;
}
#to{
min-width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#from{
min-width: 20%;
height: 40px;
padding: 10px;
margin-left: 5px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#flightNumber{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
.fa-times-circle-o{
border: none;
background: none;
}
#flightDes{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
/*.glyphicon-chevron-right{
margin-left: 90%;
}*/
.img2index{
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
.pd1{
max-height: 73%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/gifts-for-strangers.jpg);
background-size: 200% 100%;
background-position: 29%;
background-repeat: no-repeat;
}
.pd1 h1{
color: white;padding-top: 5%;padding-bottom:0px; padding-left: 5%;padding-right: 5%;
}
.pd2{
min-height:50%;
padding-left: 0px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/meeting_you_partners_family.jpg);
background-size: 650px 450px;
background-repeat: no-repeat;
}
.pd2 h1{
color: white;padding-top: 1%;padding-left: 5%;padding-right: 5%;
}
#p3{
font-size: 20px; color: white;padding-top: 1%;padding-bottom: 5%; padding-left: 5%;padding-right: 5%;
}
#p4{
font-size: 20px; color: white;padding-top: 1%;padding-bottom: 5%; padding-left: 5%;padding-right: 5%;
}
#p2{
font-size: 20px;
color: white;
padding-top: 23%;
padding-bottom: 5%;
padding-left: 1%;
padding-right: 5%;
width: 78%;
}
.pd3{
min-height:50%;margin-bottom: 0px;
padding-top: 2%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/parcel-collect-header-large.jpg);
background-size: 645px 323px;
background-repeat: no-repeat;
}
.pd3 h1{
color: white;padding-top: 1%;padding-left: 5%;padding-right: 5%;
}
.allpostpanel{
padding-left: 5%;
padding-right: 5%;
}
#allposttext{
color: #FF6666;
margin-top: 0px;
margin-bottom: 0px;
}
#allpostbody{
background:#F6F6F6;
font-family: gothamrounded;
}
.rightpanel{
border: none;
padding:0px;
}
.panelfooter{
background:#252525;
}
.panelbody{
padding:0px;
}
.panelfootertext{
font-size: 22px;
color: white;
}
.allpostpanelcontent{
margin-top: 5%;
margin-bottom: 3.5%;
}
fieldset, label { margin: 0; padding: 0; }
/****** Style Star Rating Widget *****/
.rating {
border: none;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
#upbody{
background-color: #F6F6F6;
font-family: proximalight;
}
#upmain{
border:none;
padding-top: 7.5%;
}
.uppanelfooter{
background: none;
border-top: none;
}
.uplpanelfooter{
background: none;
color:#FF6666;
border-top: none;
padding-top: 0px;
}
.emailbox{
margin-top:10%;
margin-bottom: 10%;
}
.not{
margin-top: 7%;
margin-bottom:0px;
}
.tnumber{
margin-top: 0px;
margin-bottom: 12%;
color:#FF6666;
}
.footerline{
width:90%;
height: 2px;
background-color: #D0D0D0;
}
.abouttag{
color: #FF6666;
margin-bottom: 0px;
margin-left: 3%;
}
.bodyline1{
width:95%;
height: 2px;
background-color: #ADADAD;
}
.body1{
margin-left: 3%;
margin-bottom: 5%;
margin-top: 2%;
width: 90%;
}
.triptag{
color:#FF6666;
margin-left: 3%;
}
.tripnumber{
color:#FF6666;
margin-right: 3%;
}
.panelbody1{
width:95%;
}
.bodyline2{
margin-bottom: 0px;
width: 95%;
background-color:#D0D0D0;
height: 2px;
}
.reviewtag{
color: #FF6666;
margin-bottom: 0px;
margin-left: 3%;
}
.reviewname{
margin-bottom: 0px;
}
.reviewbox{
padding:0px;
}
.reviewimg{
padding-right: 0px;
padding-top: 1.5%;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#sidebarmain {
transition: margin-left .5s;
padding: 16px;
}
body{
transition:background-color .5s;
}
.cpbox{
padding-top: 8%;
padding-bottom: 7%;
}
.cplbox{
padding-left: 4%;
}
.cprbox{
padding-left: 0px;
border-left: solid #D0D0D0;
}
.cprboxtext{
color:#FF6666;padding-left: 34%;
padding-bottom: 5%;
}
.cpaddress{
font-size: 16px;
padding-left: 9%;
padding-top: 18%;
}
.pno{
font-size: 16px;
padding-left: 9%;
padding-top: 2%;
padding-bottom: 5%;
}
.cptext1{
color: #FF6666;
font-size: 20px;
padding-top: 4%;
padding-bottom: 3%;
}
.cptext2{
color: #FF6666;
font-size: 24px;
padding-top: 1%;
padding-bottom: 3%;
text-align: center;
}
.cpemail{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
}
.cpsubject{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
}
.cpmsg{
width: 36%;
margin-bottom: 2.75%;
padding: .5%;
padding-left: 1.5%;
font-size: 16px;
resize: none;
height: 150px;
}
/*///////////////////////////////SING IN////////////////////*/
#signheadText2{
font-size: 16px;
font-family: gothamrounded;
font-weight: bold;
font-size: 20px;
margin-top: 6%;
margin-left: 0%;
color: #3c6d9e;
}
.signheading{
color: #ef5b5b;
font-family: gothamrounded;
font-weight: bold;
font-size: 36px;
}
.signbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 500px;
width: 40%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
}
.signwelcome{
color: #ef5b5b;
font-size: 33px;
font-weight: bold;
}
#signinform{
min-width: 60%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
.signforgot{
color: #ef5b5b;
font-size: 16px;
margin-left: 29%;
}
.signcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
font-family: gothamrounded;
}
a.signcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
a.signforgot:hover{
color: #ef5b5b;
text-decoration:none;
}
.signendtext{
color: #ef5b5b;
font-size: 20px;
}
.signendlink{
color: #ef5b5b;
font-size: 20px;
}
a.signendlink:hover{
color: #ef5b5b;
text-decoration:none;
}
/*///////////////////////////////SING UP////////////////////*/
.createbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 700px;
width: 85%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
}
.uptext{
color: #ef5b5b;
font-size: 30px;
font-family: gothamrounded;
font-weight: bold;
width: 42%;
margin-top: 20%;
}
.upsubtext{
color: #353535;
font-size: 17px;
font-weight: bold;
width: 41%;
}
.formtag{
color: #ef5b5b;
font-size: 16px;
margin-left: 16%;
}
#nametag{
width: 35%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
margin-right: 1%;
}
#signupform{
width: 73%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#birthtag{
width: 15%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
margin-right: 1%;
text-align: center;
}
.radio label {
display: inline-block;
vertical-align: middle;
position: relative;
padding-left: 5px;
}
.radio.radio-danger input[type="radio"] + label::after {
background-color: #ef5b5b; }
.radio.radio-danger input[type="radio"]:checked + label::before {
border-color: #ef5b5b; }
.radio.radio-danger input[type="radio"]:checked + label::after {
background-color: #ef5b5b; }
.radio.radio-danger{
margin-left: 35%;
}
.upbutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 10px 20px;
width: 30%;
font-family: gothamrounded;
margin-left: 40%;
}
a.upbutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
/*///////////////////////////////SING UP////////////////////*/
.setupbox{
font-family: gothamrounded;
background-color: #ffffff;
height: 700px;
width: 95%;
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
margin-left: 32px;
}
.setupheading{
color: #ef5b5b;
font-size: 33px;
font-weight: bold;
}
.setupsubheading{
color: #353535;
font-size: 17px;
font-weight: bold;
width: 41%;
padding-left: 80px;
}
.address{
color: #ef5b5b;
font-size: 16px;
margin-left: 80px;
font-weight: bold;
}
.address1{
color: #ef5b5b;
font-size: 16px;
margin-left: 60px;
font-weight: bold;
}
#createform{
width: 20%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
.upterms{
color: #959595;
font-size: 16px;
font-weight: bold;
}
.uplinks{
color: #ef5b5b;
font-size: 16px;
font-weight: bold;
}
a.uplinks:hover{
color: #ef5b5b;
text-decoration:none;
}
.upcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 106%;
font-family: gothamrounded;
margin-top: -10%;
margin-left: -25%;
}
a.upcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.addcreatebutton{
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 106%;
font-family: gothamrounded;
margin-top: 11%;
margin-left: -45%;
margin-bottom: 23%;
}
a.addcreatebutton:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
#createinform{
width: 49%;
height: 30px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
border: 2px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/*/////////////////////////////////////////////////////////////////SPDAQYA FILE////////////////////////////////////////////////////////////*/
.btn{
border:none;
color: #FF6666;
font-size: 20px;
font-style: bold;
background: none;
padding-top: 2%;
padding-left: 3%;
padding-right: 3%;
padding-bottom: 2%;
}
.headerImage{
min-height: 500px;
width: 100%;
}
.nav{
margin-top: -2%;
}
}
#navbar{
background: none;
color: white;
border: none;
}
#navbar2{
background-color: white ;
box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 2px 20px 0 rgba(0, 0, 0, 0.19);
padding-bottom: 0.5%;
height: 97px;
}
#navbar3{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: 2.0%;
}
#navbar4{
background-color: white ;
box-shadow: 0px 2px 5px #888888;
padding-bottom: -1.5% !important;
}
.img-header{
width: 200px;
height: 50px;
}
.img-header1{
width: 125px;
padding-top: 20px;
padding-left: 10px;
}
.img-header1tl{
width: 16%;
height: 120%;
margin-left: 2%;
margin-top: 1%;
}
.img-header1email{
width: 35%;
height: 120%;
margin-left: 0%;
margin-top: 4%;
}
#tlbody{
font-family: proximaregular;
}
.img-header2{
width: 13%;
height: 180%;
margin-top: -4%;
margin-left: 8%
}
.img1{
background: url(img/image1.jpg);
background-size: 100% 100%;
min-height: 500px;
width: 100%;
}
.imgallpost{
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.28)),url(../img/parcel-collect-header-large1.jpg);
background-size: 100% 100%;
min-height: 350px;
width: 100%;
}
.navbar-brandsp{
padding-top: 0px;
}
.carousel-inner{
min-height: 500px;
}
#logo{
min-height: 210%;
padding-left: 20%;
padding-top: 10%;
}
#logo3{
width: 12%;
margin-left: 5%;
margin-top: 2%;
}
#mynavbar{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
}
#mynavbari{
padding-right: 50px;
padding-top: 20px;
padding-bottom: 10px;
height: 97px;
}
.navbar-toggle{
background-color: #93aec9;
}
.icon-bar{
background-color: #ffb8b8;
}
/* fahad /////////////////////////////////////////////////////////*/
.pagerow{
font-family: proximalight;
}
#imageid{
margin-left: 50%;
margin-top: 50%;
}
#maniconsp{
margin-left: 10%;
margin-top: -48%;
}
.dropdown {
display: inline-block;
float: right;
position: relative;
}
.dropdown-content {
border-radius: 15px;
right: 0;
display: none;
padding: 0px 5px;
clear: both;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
white-space: nowrap;
list-style-type: none;
}
.dropdown-content a {
float: none;
color: black;
font-family: gothamrounded;
padding: 4px 16px;
text-decoration: none;
display: block;
text-align: left;
margin-bottom: 4%;
}
.dropdown-content a:hover {
background-color: #ddd;
}
#drophr{
margin-top: 2%;
margin-bottom: 6%;
color: black;
background-color: black;
border-color: black;
}
.show {
display: block;
}
.dropdown:hover .dropdown-content {
display: block;
}
.fahad{
width: 40%;
}
div.stars {
/*width: 270px; */
display: inline-block;
padding-left: 48%;
padding-top: 8%;
}
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;
}
#itemname{
padding-left: 30%;
padding-top: 10%;
}
#itemdescription{
padding-left: 30%;
margin-bottom: 0px;
}
#phonenumber{
padding-left: 30%;
}
#travellingfrom{
padding-left: 66%;
}
#travellingto{
margin-left: 8%;
}
#departure{
color: #FF6666;
padding-left: 64%;
margin-bottom: 1px;
font-family: proximaregular;
}
#arrival{
color: #FF6666;
margin-left: 4%;
font-family: proximaregular;
}
.datespan{
margin-left: -14%;
}
#bighr{
width: 68%;
color: #cccccc;
background-color: #cccccc;
border: none;
margin-right: 27%;
height: 1px;
}
#descriptionn{
padding-left: 17%;
font-family: proximaregular;
}
.icancarryrow{
border: 2px groove;
border-color: #f5f5f5;
width: 73%;
margin-left: 3%;
}
#icancarry{
padding-left: 0%;
font-family: proximaregular;
}
#detailsdescription{
padding-top: 3%;
}
.addreviewrow{
border: 2px groove;
border-color: #f5f5f5;
width: 58%;
margin-left: 3%;
min-height: 100px;
}
#locationdescription{
border-bottom: 1px solid rgba(128, 128, 128, 0.21);
color: red;
margin-left: 17%;
margin-top: -5%;
width: 19%;
}
.addreviewform{
border: none;
width: 80%;
display: inline;
}
.form-control.addreviewform:focus{
border-color: white;
outline: none;
box-shadow: none;
}
#headText{
color: white;
}
#headText2sp{
color: #336699;
font-size: 16px;
font-family: gothamrounded;
margin-left: -42%;
width: 100%;
margin-top: -6%;
}
#take{
background-color: #FF6666;
border:none;
border-radius: 8px;
font-size: 20px;
color: white;
}
#text1{
text-align: center;
}
.line{
height: 200px;
background-color: white;
width: 3px;
}
#cimage{
border:3px solid black;
border-color:#EF5B5B;
}
#band{
min-height: 400px;
padding-top: 9%;
}
#tour{
}
#testimonial{
background-color: #F6F6F6;
height: 800px;
box-shadow: 0px 2px 5px #888888;
background-image: url(../img/qoutationmarks.png);
background-repeat: no-repeat;
background-position: 100% -6%;
}
#second{
min-height: 300px;
text-align: center;
}
#box2{
padding-top: 50px;
}
#num{
font-size: 20px;
color: #EF5B5B;
}
#third{
min-height: 800px;
background-color: #F6F6F6;
}
#third p{
text-align: center;
color: #EF5B5B;
font-size: 40px;
padding-top: 150px;
}
#fourth{
min-height: 800px;
}
#p1{
color: #EF5B5B;
font-size: 50px;
padding-top: 8%;
padding-left: 6%;
}
#left{
height: 420px;
background: url(img/image1.jpg);
}
#right{
height: 200px;
background: url(img/image1.jpg);
}
#empty{
background-color: #F6F6F6;
min-height: 350px;
/*box-shadow: 0px 2px 5px #888888; */
}
#raised{
min-height: 400px;
padding-top: 5%;
}
#charity{
font-size: 80px;
color: #EF5B5B;
margin-bottom: 0px;
}
#charityText{
font-size: 20px;
margin-top: 0px;
}
#lm{
font-size: 18px;
color: #EF5B5B;
}
#logos{
min-height: 500px;
background-color: #F6F6F6;
}
#logos p{
font-size: 40px;
color: #EF5B5B;
padding-top: 20%;
}
#bottom{
padding-top: 4%;
}
#bottom label{
color: white;
font-size: 16px;
}
#bottom input{
border: 0px solid #000000;
border-bottom-width: 2px;
min-width: 350px;
border-bottom-color: grey;
background-color: transparent;
}
#countries{
color: white;
padding-top: 3%;
font-size: 18px;
}
#address{
padding-top: 2%;
text-align: center;
font-size: 16px;
color: white;
}
#hiwbody{
background-color: #F6F6F6;
}
/*.wholebody{
background-color: #FFFFFF;
}*/
#main{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
}
/*#emailmain {
padding: 0px;
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
}
#mailnavbar{
width: inherit;
left: 50%;
transform: translateX(-50%);
}*/
#main1{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 5px #888888;
background-repeat: no-repeat;
background-position: 100% 100%;
background-image: url(img/planetaxlaws.png);
}
#main2{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
}
#main3{
margin-top: 8.5%;
margin-bottom: 1.5%;
padding-left: 0px;
padding-right:0px;
margin-left: 15px !important;
margin-right: 15px !important;
background-color: white;
box-shadow: 0 0 10px #888888;
background-position: 100% 100%;
background-image: url(../img/messenger_background.jpg);
}
#messengerbody{
font-family: proximalight;
}
.nav-tabs{
margin-top: 1%;
width: 85%;
font-family: proximaregular;
font-size: 23px;
}
.spostheader{
height:350px;
background-size: 100%;
width: 100%;
background-repeat: no-repeat;
margin-bottom: 0px;
}
.priceContainer{
min-height:700px;
top: none;
border: 2px groove;
margin-top: -25%;
margin-left: -18%;
margin-right: 14%;
font-family: proximalight;
}
.pheading{
color: #FFFFFF;
background-color: #464646;
min-height: 210px;
font-family: proximalight;
}
#reportuser{
margin-left: -14%;
margin-top: 2%;
color: #ef5b5b;
}
#reviews{
padding-left: 5%;
font-family: proximaregular;
}
.reviewname{
margin-bottom: 0px;
font-family: gothamrounded;
font-size:24px;
}
.reviewbox{
padding:0px;
}
.reviewimg{
padding-right: 0px;
padding-top: 1.5%;
}
/****** Style Star Rating Widget *****/
.rating {
border: none;
float: right;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
float: right;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
.reviewrow{
margin-bottom: 5%;
}
#reviewdescription{
margin-left: 17%;
margin-top: 0%;
margin-bottom: 3%;
}
.pfooter{
border: none;
background-color: #FFFFFF;
}
#hrid{
width: 80%;
color: #cccccc;
border: solid 1.5px #cccccc;
}
.flagicon{
color: #ef5b5b;
margin-left: 73%;
}
.mobileicon{
color: #ef5b5b;
margin-left: 57%;
}
#mobileicon{
color: #ef5b5b;
}
.mobileicon1{
color: #ef5b5b;
margin-top: 10%;
}
#filledshirt{
color: #ef5b5b;
margin-left: 30%;
}
#shirtid{
margin-left: 1%;
margin-bottom: 0%;
margin-top: 17%;
}
.panelleftside{
}
.panelrightside{
margin-top: 2%;
}
#clothescarry{
margin-top: 6%;
margin-left: 1%;
margin-bottom: 1%;
}
#pricetag{
color: #FFFFFF;
margin-top: 0%;
margin-left: 2%;
}
#electronics{
color: #ef5b5b;
margin-bottom: 0%;
margin-top: inherit
}
.buttontravel{
margin-top: 24%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
}
#taxlaws{
color: #FF6666;
}
.safetyrow{
margin-top: 22%;
}
.listitem{
font-size: 17px;
}
#footer2{
min-height: 60px !important;
margin-bottom: 0%;
}
#footer3{
min-height: 60px !important;
margin-bottom: -1.05%;
margin-left: -3.09%;
font-family: gothamrounded;
min-height: 500px;
background-color: #252525;
}
#footertext{
color: #FF6666;
font-size: 13px;
padding-left: 4px;
padding-top: 4px;
}
#text-boxtl{
padding-top: 1%;
padding-bottom: 1%;
text-align: center;
background-color: #252525;
height: 60px;
}
#btn{
border-radius: 3px;
background-color: #FF6666;
border:none;
min-width: 18%;
padding: 1%;
margin-left: 3%;
color: white;
font-size: 20px;
}
#formText{
min-width: 18%;
margin-left: -0.5%;
padding: 10px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#formdate{
margin-left: -3px;
width: 12%;
padding: 9px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#formprice{
margin-left: -3px;
width: 12%;
padding: 9px;
font-size: 19px;
color: #252525;
box-shadow: 0 0 1px #888888;
border: 2px;
}
#addpostbody{
font-family: gothamrounded;
}
#formhead{
color: #FF6666;
padding-top: 40px;
padding-left: 60px;
font-weight: bold;
}
#formlabel{
color: #FF6666;
padding-left: 60px;
padding-top: 0px;
}
.if{
margin-left: 60px;
width: 300px;
}
#from{
margin-left: 60px;
width: 150px;
}
#to{
width: 150px;
}
#dash{
color: #FF6666;
padding-left: 5px;
padding-right: 5px;
}
#myModal .modal-dialog {
min-width: 75%;
}
#myModal .modal-content {
background: url(img/wizard.png);
background-repeat: no-repeat;
}
#category{
min-width: 20%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-webkit-appearance: none;
-moz-appearance: none;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
#weight{
min-width: 20%;
height: 40px;
padding: 10px;
margin-bottom: 5%;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: outset 0 0 1px #000000;
}
.modal-header{
border:none;
}
#title{
min-width: 41%;
height: 40px;
padding: 10px;
font-style: italic;
box-shadow: 0 0 1px #888888;
}
#description{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
#myModalLabel{
font-size:38px;
color: #FF6666;
padding-bottom: 3%;
}
#to{
min-width: 20%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#from{
min-width: 20%;
height: 40px;
padding: 10px;
margin-left: 5px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
#flightNumber{
min-width: 41%;
height: 40px;
padding: 10px;
/*font-style: italic;*/
-moz-box-shadow: inset 0 0 1px 1px #000000;
-webkit-box-shadow: inset 0 0 1px 1px #000000;
box-shadow: inset 0 0 1px #888888;
}
.fa-times-circle-o{
border: none;
background: none;
}
#flightDes{
min-width: 41%;
height: 100px;
padding: 10px;
margin-bottom: 5%;
resize: none;
font-style: italic;
-moz-box-shadow: inset 0 0 1px #000000;
-webkit-box-shadow: inset 0 0 1px #000000;
box-shadow: inset 0 0 1px #000000;
}
/*.glyphicon-chevron-right{
margin-left: 90%;
}*/
.img2{
background: url(img/image1.jpg);
background-size: 100% 100%;
/*-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);*/
}
/*//////////////////////FAQ//////////////////////////////*/
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.barsnav {
margin-left: 0%;
margin-top: 0%;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
#logoLink1{
margin-bottom: -10%;
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#imgabout{
border: 4px solid #ef5b5b;
}
.detailsofjohn{
margin-left: -3%;
margin-top: -2%;
}
/*/////////////////////////userprofile//////////////////////////////*/
.userprofileleftpanel{
padding-top: 12%;
margin-top: 7%;
}
.userprofilerightpanel{
margin-top: 2%;
}
/*/////////////////////////MESSENGER//////////////////////////////*/
.convobutton{
margin-top: 0%;
border-radius: none;
font-size: 10px;
color: #252525;
background-color: #FFFFFF;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 6px 20px;
min-width: 100%;
}
.convobutton:hover {
background-color: #e1e1e1;
}
.convopanelheader{
color: #ef5b5b;
background-color: #FFFFFF;
min-height: 10px;
}
.conversations{
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
#convoimageid{
margin-left: 40%;
margin-top: 0%;
}
.convoimagecol{
margin-left: 0%;
margin-top: 0%;
}
.convonamecol{
margin-left: -13%;
margin-top: 2%;
}
.rightconvobox{
margin-left: 4%;
margin-top: 8%;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
border-radius: 8px;
background-color: white;
}
.lefttext{
color: #ef5b5b;
}
.righttext{
margin-left: 0%;
color: #252525;
}
#convoname{
margin-left: 0%;
margin-top: 4%;
font-size: 18px;
color: #ef5b5b;
}
.accept{
margin-top: 3%;
margin-left: 60%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
}
.decline{
margin-top: 3%;
margin-left: -5%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 30%;
}
#respond{
margin-top: 15%;
margin-left: 42%;
color: #ef5b5b;
font-family: proximaregular;
font-size: 24px;
}
.pheadrow{
margin-left: 0%;
margin-top: 0%;
}
.pheadrow1{
margin-left: 0%;
}
a.buttontravel:link{
color: #FFFFFF;
text-decoration:none;
}
a.buttontravel:visited{
color: #FFFFFF;
text-decoration:none;
}
a.buttontravel:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
/*////////////////////////////////////////////////////email////////////////////////////*/
.second-span{
font-family: gothamrounded;
font-size: 50px;
color: #FFFFFF;
font-weight: bold;
}
#secondsec{
background-repeat: no-repeat;
background-position: 100% 100%;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.61)),url(../img/image5.jpg);
height: 400px;
}
.secondsecp{
margin-top: 7%;
}
.buttongetstarted {
margin-top: 3%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 17%;
font-family: gothamrounded;
}
a.buttongetstarted:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.emailheader{
font-family: gothamrounded;
font-weight: bold;
font-size: 20px;
margin-top: 6%;
margin-left: 50%;
color: #3c6d9e;
}
.emailbody{
margin-top: -5%;
}
.iconspara{
font-family: gothamrounded;
font-weight: bold;
font-size: 18px;
color: #3c6d9e;
}
#thirdemail{
background-color: #f3f3f3;
height: 335px;
}
.thirdpara{
float: left;
font-family: gothamrounded;
font-weight: bold;
font-size: 26px;
color: #252525;
width: 80%;
margin-top: 4%;
margin-left: 10%;
}
.howitworksemail{
width: 87%;
height: 1500px;
}
#fifthemail{
background-color: #f3f3f3;
height: 335px;
}
.buttonsubscribe {
margin-top: 3%;
border-radius: 8px;
font-size: 20px;
color: #FFFFFF;
background-color: #ef5b5b;
text-align: center;
text-decoration: none !important;
display: inline-block;
padding: 14px 20px;
width: 12%;
font-family: gothamrounded;
}
a.buttonsubscribe:hover{
background-color: #a94442;
color: #FFFFFF;
text-decoration:none;
}
.fifthpara{
font-family: gothamrounded;
font-weight: bold;
font-size: 36px;
color: #252525;
width: 32%;
margin-top: 4%;
}
#sixthemail{
height: 100px;
}
.emailfooter{
background-color: #08477c;
height: 150px;
}
.fbicon{
margin-top: 4%;
margin-right: 4%;
width: 25%;
}
.twittericon{
margin-top: 4%;
margin-right: 4%;
width: 25%;
}
.instaicon{
margin-top: 4%;
margin-left: 1%;
width: 25%;
}
#addressemail{
margin-left: 10%;
margin-top: 8%;
font-family: gothamrounded;
font-weight: bold;
font-size: 18px;
color: #FFFFFF;
}
#bellsp{
margin-left: -400%;
margin-top: -42%;
}
.dropdown-header{
margin-top: 10%;
padding: 3px 10px;
font-family: proximaregular;
color: #FF6666;
}
.droprow1{
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
background-color: #FFFFFF;
width: 97%;
margin-left: 2%;
}
.droprow{
border: 2px groove;
border-color: rgba(245, 245, 245, 0.31);
background-color: #FFFFFF;
width: 97%;
margin-left: 2%;
margin-top: 3%;
}
.droprow a:hover{
background-color: #F6F6F6;
}
#dropimage{
margin-left: -33%;
margin-top: -2%;
}
.droptext{
font-family: proximaregular;
color: #FF6666;
font-size: 14px;
}
.droptime{
margin-left: 100%;
color: rgba(70, 70, 70, 0.58);
font-family: proximaregular;
font-size: 12px;
}
.droptextrow{
margin-top: 3%;
}
.seeall{
margin-left: 43%;
font-family: proximaregular;
color: #FF6666;
}
.dropdown1 {
display: inline-block;
float: right;
position: relative;
}
.dropdown-content1 {
border-radius: 15px;
right: 0;
display: none;
padding: 0px 5px;
clear: both;
position: absolute;
background-color: #ffffff;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
white-space: nowrap;
list-style-type: none;
}
.dropdown-content1 a {
float: none;
color: black;
font-family: gothamrounded;
padding: 4px 16px;
text-decoration: none;
display: block;
text-align: left;
margin-bottom: 0%;
}
.drophref{
height: 79px;
}
.dropdown-content1 a:hover {
background-color: rgba(221, 221, 221, 0.23);;
}
#firstsec{
height: 100px;
}
@media(min-width:0px) and (max-width: 991px)
{
.line{
visibility: hidden;
height: 10px;
}
.img1{
padding-bottom: 10%;
padding-top: 10%;
}
.text1{
padding-top: 15%;
}
.font1{
font-size: 18px !important;
}
.btn{
font-size: 14px !important;
}
.btn:hover{
background: none;
color: #FF6666;
}
.headText{
background-color: black;
width: 100%;
}
.mynavbar{
padding-right: 0px;
}
.carousel-inner{
height: 400px !important;
}
.first-item{
height: 400px !important;
}
.second-item{
height: 400px !important;
}
.third-item{
height: 400px !important;
}
.user{
text-align: center;
}
.apmap{
width: 100%;
}
.aptext{
text-align: center;
}
.reviewname{
text-align: center;
}
.fa-bars{
padding-left: 2%;
}
.logo2sp{
width: 25% !important;
padding-left: 2% !important;
margin-top: -16% !important;
}
.modal-dialog{
border-radius: 3%;
}
.modal-header{
display: none;
}
.navbar{
height: 62px;
}
.main{
margin-top: 20.5% !important;
}
.cplbox{
text-align: center;
}
.cprbox{
text-align: center;
border:none;
}
.cprboxtext{
padding-left: 0px;
}
.cpaddress{
padding-left: 0px;
}
.pno{
padding-left: 0px;
}
.uplp{
margin-top: 13%;
}
} | 0.360377 | 0.076304 |
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
}
body {
box-sizing: border-box;
height: 100vh;
overflow: hidden;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 1.6rem;
line-height: 1.8;
color: #dedede;
background-color: #59253a;
}
a:link,
a:visited,
a:active {
color: #dedede;
font-weight: 700;
text-decoration: underline;
}
a:link:hover,
a:visited:hover,
a:active:hover {
color: #cba7b2;
}
p {
margin-top: 1rem;
}
.u-margin-top {
margin-top: 2rem !important;
}
.u-center-text {
text-align: center !important;
}
.u-with-scrollbar {
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.u-with-scrollbar::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.u-with-scrollbar::-webkit-scrollbar-thumb {
background: #230f17;
}
.u-with-scrollbar::-webkit-scrollbar-track {
background: #401b2a;
}
.u-with-scrollbar {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.header {
position: relative;
z-index: 100;
display: flex;
box-shadow: 0 0.1rem 0.1rem 0 rgba(35, 15, 23, 0.7);
margin-bottom: 0rem;
}
@media (max-width: 600px) {
.header {
flex-direction: column;
}
}
.header__logo,
.header__logo:link,
.header__logo:visited,
.header__logo:active {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Lobster", serif;
font-size: 3rem;
text-decoration: none;
}
.header__heading {
font-size: 1.8rem;
}
.header__section {
position: relative;
padding: 1rem 2rem;
background: #59253a;
}
.header__section--single {
background: #401b2a;
min-height: 6rem;
flex: 1;
}
.header__section--left {
flex: 0 0 25rem;
background: #401b2a;
}
@media (max-width: 600px) {
.header__section--left {
flex: 0 0 6rem;
}
}
.header__section--right {
flex: 1;
display: flex;
justify-content: space-between;
}
.header__control {
display: inline-block;
margin: 0 0.5rem;
}
.sidebar {
padding: 1rem 1rem;
flex: 0 0 25rem;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.sidebar::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.sidebar::-webkit-scrollbar-thumb {
background: #230f17;
}
.sidebar::-webkit-scrollbar-track {
background: #401b2a;
}
.sidebar {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.sidebar--left {
background: #401b2a;
}
@media (max-width: 600px) {
.sidebar--left {
display: none;
}
}
.sidebar--right {
background: #4c2032;
}
@media (max-width: 1200px) {
.sidebar--right {
display: none;
}
}
.sidebar__heading--small {
text-transform: uppercase;
font-weight: 700;
font-size: 1.2rem;
}
.wrapper {
display: flex;
flex-direction: column;
}
.page {
height: calc(100vh - 5rem);
display: flex;
}
@media (max-width: 600px) {
.page {
height: calc(100vh - 11rem);
}
.page--header-single {
height: calc(100vh - 5rem);
}
}
.main {
position: relative;
flex: 1;
background: #59253a;
display: flex;
flex-direction: column;
height: 100%;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
scrollbar-width: auto;
}
.main::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.main::-webkit-scrollbar-thumb {
background: #230f17;
}
.main::-webkit-scrollbar-track {
background: #401b2a;
}
.main {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.main::-webkit-scrollbar {
width: 1rem;
}
.container {
width: 90%;
max-width: 120rem;
margin: 0 auto;
padding: 2rem 4rem;
margin-bottom: 2rem;
}
@media (max-width: 600px) {
.container {
width: 100%;
padding: 1rem 2rem;
}
}
.chat {
display: flex;
flex-direction: column;
height: 100%;
}
.chat__messages {
flex: 1;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
margin-bottom: 1.5rem;
}
.chat__messages::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.chat__messages::-webkit-scrollbar-thumb {
background: #230f17;
}
.chat__messages::-webkit-scrollbar-track {
background: #401b2a;
}
.chat__messages {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.chat__inputs {
position: relative;
max-height: 10rem;
width: 100%;
padding: 0rem 2rem 1rem 2rem;
}
.chat__text-input {
background: #6b2c46;
padding: 1.25rem 4rem 1.25rem 2rem;
max-height: 100%;
width: 100%;
resize: none;
font-size: inherit;
font-family: inherit;
color: inherit;
border: 0;
border-radius: 10px;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.chat__text-input::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.chat__text-input::-webkit-scrollbar-thumb {
background: #230f17;
}
.chat__text-input::-webkit-scrollbar-track {
background: #401b2a;
}
.chat__text-input {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.chat__send-button {
right: 4.5rem;
top: 50%;
position: absolute;
display: inline-block;
transform: rotate(25deg) translateY(-100%);
}
.message {
padding: 0 2rem;
margin: 1rem 0 0 0;
}
.message::after {
content: "";
display: table;
clear: both;
}
.message__avatar {
float: left;
margin-top: 0.5rem;
margin-right: 1.5rem;
cursor: pointer;
}
.message__sender,
.message__sender:link,
.message__sender:visited,
.message__sender:active {
font-weight: 700;
color: #dc8cb2;
text-decoration: none;
}
.message__sender:link:hover {
text-decoration: underline;
}
.message__date {
font-weight: 300;
color: #cba7b2;
font-size: 1.2rem;
}
.message__content {
display: table-cell;
}
.message:hover {
background: #4c2032;
}
.btn,
.btn:link,
.btn:visited {
position: relative;
text-transform: uppercase;
text-decoration: none;
padding: 1.5rem 3rem;
display: inline-block;
font-size: 1.6rem;
background: none;
color: #dedede;
cursor: pointer;
border: 0;
transition: background-color 0.25s, transform 0.25s;
font-weight: 700;
}
.btn--icon,
.btn--icon:link,
.btn--icon:visited {
color: #f7f7f7;
padding: 0;
}
.btn--icon:hover {
color: #cba7b2;
}
.btn--primary {
background: #401b2a;
}
.btn--primary:hover {
transform: translateY(-0.15rem);
box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.2);
}
.btn--primary:active {
transform: translateY(-0.1rem);
box-shadow: 0.1rem 0.1rem 0.25rem rgba(0, 0, 0, 0.2);
box-shadow: none;
}
.list__item {
margin: 0.25rem 0;
}
.list__link,
.list__link:link,
.list__link:visited {
position: relative;
border-radius: 0.25rem;
display: inline-block;
padding: 0.5rem 2rem;
font-size: 1.65rem;
font-weight: 700;
text-decoration: none;
width: 100%;
color: #cba7b2;
transition: background-color 0.2s, color 0.2s;
}
.list__link:hover {
color: #dedede;
background: #59253a;
}
.list__link:active,
.list__link:active:link,
.list__link:active:visited,
.list__link--active,
.list__link--active:link,
.list__link--active:visited {
color: #dedede;
background: #6b2c46;
}
.list__username {
margin-left: 1rem;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.avatar {
position: relative;
display: inline-block;
border-radius: 50%;
overflow: hidden;
width: 4rem;
height: 4rem;
transform: scale(1);
transition: transform 0.25s, -webkit-filter 0.25s;
transition: transform 0.25s, filter 0.25s;
transition: transform 0.25s, filter 0.25s, -webkit-filter 0.25s;
}
.avatar__image {
transition: transform 0.25s, -webkit-filter 0.25s;
transition: transform 0.25s, filter 0.25s;
transition: transform 0.25s, filter 0.25s, -webkit-filter 0.25s;
width: 100%;
}
.list__item:hover .avatar__image,
.avatar__image:hover {
transform: scale(1.2);
-webkit-filter: contrast(120%);
filter: contrast(120%);
}
.avatar--online:before,
.avatar--offline:before {
position: absolute;
display: inline-block;
content: "";
width: 2rem;
height: 4rem;
-webkit-clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
left: -1.3rem;
top: 50%;
transform: translateY(-50%);
z-index: 10;
}
.avatar--online:after,
.avatar--offline:after {
position: absolute;
display: inline-block;
content: "";
width: 2.2rem;
height: 4rem;
-webkit-clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
left: -1.3rem;
top: 50%;
transform: translateY(-50%);
z-index: 9;
}
.avatar--online:before {
background: #1bdd09;
}
.avatar--online:after {
background: #094a03;
}
.avatar--offline:before {
background: #777;
}
.avatar--offline:after {
background: #333;
}
.form {
display: flex;
flex-direction: column;
align-items: stretch;
max-width: 60rem;
padding: 2rem;
background: #4c2032;
border-radius: 0.5rem;
}
.form--auth {
margin: 10% auto 0 auto;
max-width: 50rem;
}
.form__group:not(:last-child) {
margin-bottom: 2rem;
}
.form__label {
display: block;
margin-bottom: 1rem;
}
.form__input {
font-family: inherit;
font-size: 1.8rem;
color: inherit;
padding: 1.5rem 2rem;
border-radius: 0.5rem;
background-color: #6b2c46;
border: none;
width: 100%;
display: block;
}
::-webkit-input-placeholder {
color: #cba7b2;
}
:-ms-input-placeholder {
color: #cba7b2;
}
::-moz-placeholder {
color: #cba7b2;
}
::-ms-input-placeholder {
color: #cba7b2;
}
::placeholder {
color: #cba7b2;
} | client/src/index.css | *,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
}
body {
box-sizing: border-box;
height: 100vh;
overflow: hidden;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 1.6rem;
line-height: 1.8;
color: #dedede;
background-color: #59253a;
}
a:link,
a:visited,
a:active {
color: #dedede;
font-weight: 700;
text-decoration: underline;
}
a:link:hover,
a:visited:hover,
a:active:hover {
color: #cba7b2;
}
p {
margin-top: 1rem;
}
.u-margin-top {
margin-top: 2rem !important;
}
.u-center-text {
text-align: center !important;
}
.u-with-scrollbar {
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.u-with-scrollbar::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.u-with-scrollbar::-webkit-scrollbar-thumb {
background: #230f17;
}
.u-with-scrollbar::-webkit-scrollbar-track {
background: #401b2a;
}
.u-with-scrollbar {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.header {
position: relative;
z-index: 100;
display: flex;
box-shadow: 0 0.1rem 0.1rem 0 rgba(35, 15, 23, 0.7);
margin-bottom: 0rem;
}
@media (max-width: 600px) {
.header {
flex-direction: column;
}
}
.header__logo,
.header__logo:link,
.header__logo:visited,
.header__logo:active {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Lobster", serif;
font-size: 3rem;
text-decoration: none;
}
.header__heading {
font-size: 1.8rem;
}
.header__section {
position: relative;
padding: 1rem 2rem;
background: #59253a;
}
.header__section--single {
background: #401b2a;
min-height: 6rem;
flex: 1;
}
.header__section--left {
flex: 0 0 25rem;
background: #401b2a;
}
@media (max-width: 600px) {
.header__section--left {
flex: 0 0 6rem;
}
}
.header__section--right {
flex: 1;
display: flex;
justify-content: space-between;
}
.header__control {
display: inline-block;
margin: 0 0.5rem;
}
.sidebar {
padding: 1rem 1rem;
flex: 0 0 25rem;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.sidebar::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.sidebar::-webkit-scrollbar-thumb {
background: #230f17;
}
.sidebar::-webkit-scrollbar-track {
background: #401b2a;
}
.sidebar {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.sidebar--left {
background: #401b2a;
}
@media (max-width: 600px) {
.sidebar--left {
display: none;
}
}
.sidebar--right {
background: #4c2032;
}
@media (max-width: 1200px) {
.sidebar--right {
display: none;
}
}
.sidebar__heading--small {
text-transform: uppercase;
font-weight: 700;
font-size: 1.2rem;
}
.wrapper {
display: flex;
flex-direction: column;
}
.page {
height: calc(100vh - 5rem);
display: flex;
}
@media (max-width: 600px) {
.page {
height: calc(100vh - 11rem);
}
.page--header-single {
height: calc(100vh - 5rem);
}
}
.main {
position: relative;
flex: 1;
background: #59253a;
display: flex;
flex-direction: column;
height: 100%;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
scrollbar-width: auto;
}
.main::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.main::-webkit-scrollbar-thumb {
background: #230f17;
}
.main::-webkit-scrollbar-track {
background: #401b2a;
}
.main {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.main::-webkit-scrollbar {
width: 1rem;
}
.container {
width: 90%;
max-width: 120rem;
margin: 0 auto;
padding: 2rem 4rem;
margin-bottom: 2rem;
}
@media (max-width: 600px) {
.container {
width: 100%;
padding: 1rem 2rem;
}
}
.chat {
display: flex;
flex-direction: column;
height: 100%;
}
.chat__messages {
flex: 1;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
margin-bottom: 1.5rem;
}
.chat__messages::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.chat__messages::-webkit-scrollbar-thumb {
background: #230f17;
}
.chat__messages::-webkit-scrollbar-track {
background: #401b2a;
}
.chat__messages {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.chat__inputs {
position: relative;
max-height: 10rem;
width: 100%;
padding: 0rem 2rem 1rem 2rem;
}
.chat__text-input {
background: #6b2c46;
padding: 1.25rem 4rem 1.25rem 2rem;
max-height: 100%;
width: 100%;
resize: none;
font-size: inherit;
font-family: inherit;
color: inherit;
border: 0;
border-radius: 10px;
scrollbar-width: thin;
scrollbar-color: #230f17 #401b2a;
}
.chat__text-input::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
.chat__text-input::-webkit-scrollbar-thumb {
background: #230f17;
}
.chat__text-input::-webkit-scrollbar-track {
background: #401b2a;
}
.chat__text-input {
scrollbar-face-color: #230f17;
scrollbar-track-color: #401b2a;
}
.chat__send-button {
right: 4.5rem;
top: 50%;
position: absolute;
display: inline-block;
transform: rotate(25deg) translateY(-100%);
}
.message {
padding: 0 2rem;
margin: 1rem 0 0 0;
}
.message::after {
content: "";
display: table;
clear: both;
}
.message__avatar {
float: left;
margin-top: 0.5rem;
margin-right: 1.5rem;
cursor: pointer;
}
.message__sender,
.message__sender:link,
.message__sender:visited,
.message__sender:active {
font-weight: 700;
color: #dc8cb2;
text-decoration: none;
}
.message__sender:link:hover {
text-decoration: underline;
}
.message__date {
font-weight: 300;
color: #cba7b2;
font-size: 1.2rem;
}
.message__content {
display: table-cell;
}
.message:hover {
background: #4c2032;
}
.btn,
.btn:link,
.btn:visited {
position: relative;
text-transform: uppercase;
text-decoration: none;
padding: 1.5rem 3rem;
display: inline-block;
font-size: 1.6rem;
background: none;
color: #dedede;
cursor: pointer;
border: 0;
transition: background-color 0.25s, transform 0.25s;
font-weight: 700;
}
.btn--icon,
.btn--icon:link,
.btn--icon:visited {
color: #f7f7f7;
padding: 0;
}
.btn--icon:hover {
color: #cba7b2;
}
.btn--primary {
background: #401b2a;
}
.btn--primary:hover {
transform: translateY(-0.15rem);
box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.2);
}
.btn--primary:active {
transform: translateY(-0.1rem);
box-shadow: 0.1rem 0.1rem 0.25rem rgba(0, 0, 0, 0.2);
box-shadow: none;
}
.list__item {
margin: 0.25rem 0;
}
.list__link,
.list__link:link,
.list__link:visited {
position: relative;
border-radius: 0.25rem;
display: inline-block;
padding: 0.5rem 2rem;
font-size: 1.65rem;
font-weight: 700;
text-decoration: none;
width: 100%;
color: #cba7b2;
transition: background-color 0.2s, color 0.2s;
}
.list__link:hover {
color: #dedede;
background: #59253a;
}
.list__link:active,
.list__link:active:link,
.list__link:active:visited,
.list__link--active,
.list__link--active:link,
.list__link--active:visited {
color: #dedede;
background: #6b2c46;
}
.list__username {
margin-left: 1rem;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.avatar {
position: relative;
display: inline-block;
border-radius: 50%;
overflow: hidden;
width: 4rem;
height: 4rem;
transform: scale(1);
transition: transform 0.25s, -webkit-filter 0.25s;
transition: transform 0.25s, filter 0.25s;
transition: transform 0.25s, filter 0.25s, -webkit-filter 0.25s;
}
.avatar__image {
transition: transform 0.25s, -webkit-filter 0.25s;
transition: transform 0.25s, filter 0.25s;
transition: transform 0.25s, filter 0.25s, -webkit-filter 0.25s;
width: 100%;
}
.list__item:hover .avatar__image,
.avatar__image:hover {
transform: scale(1.2);
-webkit-filter: contrast(120%);
filter: contrast(120%);
}
.avatar--online:before,
.avatar--offline:before {
position: absolute;
display: inline-block;
content: "";
width: 2rem;
height: 4rem;
-webkit-clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
left: -1.3rem;
top: 50%;
transform: translateY(-50%);
z-index: 10;
}
.avatar--online:after,
.avatar--offline:after {
position: absolute;
display: inline-block;
content: "";
width: 2.2rem;
height: 4rem;
-webkit-clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
left: -1.3rem;
top: 50%;
transform: translateY(-50%);
z-index: 9;
}
.avatar--online:before {
background: #1bdd09;
}
.avatar--online:after {
background: #094a03;
}
.avatar--offline:before {
background: #777;
}
.avatar--offline:after {
background: #333;
}
.form {
display: flex;
flex-direction: column;
align-items: stretch;
max-width: 60rem;
padding: 2rem;
background: #4c2032;
border-radius: 0.5rem;
}
.form--auth {
margin: 10% auto 0 auto;
max-width: 50rem;
}
.form__group:not(:last-child) {
margin-bottom: 2rem;
}
.form__label {
display: block;
margin-bottom: 1rem;
}
.form__input {
font-family: inherit;
font-size: 1.8rem;
color: inherit;
padding: 1.5rem 2rem;
border-radius: 0.5rem;
background-color: #6b2c46;
border: none;
width: 100%;
display: block;
}
::-webkit-input-placeholder {
color: #cba7b2;
}
:-ms-input-placeholder {
color: #cba7b2;
}
::-moz-placeholder {
color: #cba7b2;
}
::-ms-input-placeholder {
color: #cba7b2;
}
::placeholder {
color: #cba7b2;
} | 0.506836 | 0.064772 |
table.detail {
padding: 5%;
width: 35%;
border-collapse: collapse;
}
table.detail td {
color: #c0d3e8;
line-height: 25px;
font-size: 9pt;
border: 1px solid #4a5664;
padding: 3%;
}
span.s {
color: #fe8503;
font-size: 9pt;
}
table.seater_info{
margin-top: 3px;
background-color: #000000;
border:1px solid #10243a;
border-radius: 5px;
padding : 5%;
width: 50%;
}
table.seater_info td{
padding: 1%;
}
#templatemo_searchshedule {
float:left;
width: 96.5%;
padding: 15px;
background: #1a677e;
border-radius: 10px;
}
span.ss{
color: #f0f0f0;
font-size: 9pt;
}
table.booking_info{
width: 35%;
padding: 5%;
}
table.booking_info td{
padding-bottom: 3%;
line-height: 25px;
}
/**** ----------------
-------
------- */
#seaterframe{
margin: 0 auto;
width : 100%;
height : 100%;
padding : 5%;
}
#container
{
margin: 0 auto;
padding: 0px 0 0;
width: 540px;
height:385px;
border:1px solid #10243A;
border-radius:5px;
/*background: #10243A;*/
background: #000000;
}
div#stage{
margin-left:100px;
background-image:url("../images/stage.jpg");
width:350px;
height:40px;
border:0px solid #000;
position:absolute;
}
ul#seatingplan{
list-style: none outside none;
margin-top : 5%;
}
li#ava{
background-image:url("../images/seata.jpg");
background-repeat:no-repeat;
}
li#notava{
background-image:url("../images/bookedseat.jpg");
background-repeat:no-repeat;
pointer-events: none;
cursor: not-allowed;
}
/*class A*/
li.A1,li.A2,li.A3,li.A4,li.A5,li.A6,li.A7,li.A8,li.A9,li.A10,li.A11,li.A12,li.A13,li.A14,li.A15,li.A16,li.A17,li.A18,li.A19,li.A20
{
position :absolute;
margin-top : 30px;
}
li.B1,li.B2,li.B3,li.B4,li.B5,li.B6,li.B7,li.B8,li.B9,li.B10,li.B11,li.B12,li.B13,li.B14,li.B15,li.B16,li.B17,li.B18,li.B19,li.B20
{
position :absolute;
margin-top : 55px;
}
li.C1,li.C2,li.C3,li.C4,li.C5,li.C6,li.C7,li.C8,li.C9,li.C10,li.C11,li.C12,li.C13,li.C14,li.C15,li.C16,li.C17,li.C18,li.C19,li.C20
{
position :absolute;
margin-top : 80px;
}
li.D1,li.D2,li.D3,li.D4,li.D5,li.D6,li.D7,li.D8,li.D9,li.D10,li.D11,li.D12,li.D13,li.D14,li.D15,li.D16,li.D17,li.D18,li.D19,li.D20
{
position :absolute;
margin-top : 105px;
}
li.E1,li.E2,li.E3,li.E4,li.E5,li.E6,li.E7,li.E8,li.E9,li.E10,li.E11,li.E12,li.E13,li.E14,li.E15,li.E16,li.E17,li.E18,li.E19,li.E20
{
position :absolute;
margin-top : 130px;
}
li.F1,li.F2,li.F3,li.F4,li.F5,li.F6,li.F7,li.F8,li.F9,li.F10,li.F11,li.F12,li.F13,li.F14,li.F15,li.F16,li.F17,li.F18,li.F19,li.F20
{
position :absolute;
margin-top : 155px;
}
li.G1,li.G2,li.G3,li.G4,li.G5,li.G6,li.G7,li.G8,li.G9,li.G10,li.G11,li.G12,li.G13,li.G14,li.G15,li.G16,li.G17,li.G18,li.G19,li.G20
{
position :absolute;
margin-top : 180px;
}
li.H1,li.H2,li.H3,li.H4,li.H5,li.H6,li.H7,li.H8,li.H9,li.H10,li.H11,li.H12,li.H13,li.H14,li.H15,li.H16,li.H17,li.H18,li.H19,li.H20
{
position :absolute;
margin-top : 205px;
}
li.I1,li.I2,li.I3,li.I4,li.I5,li.I6,li.I7,li.I8,li.I9,li.I10,li.I11,li.I12,li.I13,li.I14,li.I15,li.I16,li.I17,li.I18,li.I19,li.I20
{
position :absolute;
margin-top : 230px;
}
li.A1,li.B1,li.C1,li.D1,li.E1,li.F1,li.G1,li.H1,li.I1
{
margin-left: 10px;
}
li.A2,li.B2,li.C2,li.D2,li.E2,li.F2,li.G2,li.H2,li.I2
{
margin-left:30px;
}
li.A3,li.B3,li.C3,li.D3,li.E3,li.F3,li.G3,li.H3,li.I3
{
margin-left:50px;
}
li.A4,li.B4,li.C4,li.D4,li.E4,li.F4,li.G4,li.H4,li.I4
{
margin-left:70px;
}
li.A5,li.B5,li.C5,li.D5,li.E5,li.F5,li.G5,li.H5,li.I5
{
margin-left:90px;
}
li.A6,li.B6,li.C6,li.D6,li.E6,li.F6,li.G6,li.H6,li.I6
{
margin-left:140px;
}
li.A7,li.B7,li.C7,li.D7,li.E7,li.F7,li.G7,li.H7,li.I7
{
margin-left:160px;
}
li.A8,li.B8,li.C8,li.D8,li.E8,li.F8,li.G8,li.H8,li.I8
{
margin-left:180px;
}
li.A9,li.B9,li.C9,li.D9,li.E9,li.F9,li.G9,li.H9,li.I9
{
margin-left:200px;
}
li.A10,li.B10,li.C10,li.D10,li.E10,li.F10,li.G10,li.H10,li.I10
{
margin-left:220px;
}
li.A11,li.B11,li.C11,li.D11,li.E11,li.F11,li.G11,li.H11,li.I11
{
margin-left:240px;
}
li.A12,li.B12,li.C12,li.D12,li.E12,li.F12,li.G12,li.H12,li.I12
{
margin-left:260px;
}
li.A13,li.B13,li.C13,li.D13,li.E13,li.F13,li.G13,li.H13,li.I13
{
margin-left:280px;
}
li.A14,li.B14,li.C14,li.D14,li.E14,li.F14,li.G14,li.H14,li.I14
{
margin-left:300px;
}
li.A15,li.B15,li.C15,li.D15,li.E15,li.F15,li.G15,li.H15,li.I15
{
margin-left:320px;
}
li.A16,li.B16,li.C16,li.D16,li.E16,li.F16,li.G16,li.H16,li.I16
{
margin-left:370px;
}
li.A17,li.B17,li.C17,li.D17,li.E17,li.F17,li.G17,li.H17,li.I17
{
margin-left:390px;
}
li.A18,li.B18,li.C18,li.D18,li.E18,li.F18,li.G18,li.H18,li.I18
{
margin-left:410px;
}
li.A19,li.B19,li.C19,li.D19,li.E19,li.F19,li.G19,li.H19,li.I19
{
margin-left:430px;
}
li.A20,li.B20,li.C20,li.D20,li.E20,li.F20,li.G20,li.H20,li.I20
{
margin-left:450px;
} | public/front/css/sheet.css | table.detail {
padding: 5%;
width: 35%;
border-collapse: collapse;
}
table.detail td {
color: #c0d3e8;
line-height: 25px;
font-size: 9pt;
border: 1px solid #4a5664;
padding: 3%;
}
span.s {
color: #fe8503;
font-size: 9pt;
}
table.seater_info{
margin-top: 3px;
background-color: #000000;
border:1px solid #10243a;
border-radius: 5px;
padding : 5%;
width: 50%;
}
table.seater_info td{
padding: 1%;
}
#templatemo_searchshedule {
float:left;
width: 96.5%;
padding: 15px;
background: #1a677e;
border-radius: 10px;
}
span.ss{
color: #f0f0f0;
font-size: 9pt;
}
table.booking_info{
width: 35%;
padding: 5%;
}
table.booking_info td{
padding-bottom: 3%;
line-height: 25px;
}
/**** ----------------
-------
------- */
#seaterframe{
margin: 0 auto;
width : 100%;
height : 100%;
padding : 5%;
}
#container
{
margin: 0 auto;
padding: 0px 0 0;
width: 540px;
height:385px;
border:1px solid #10243A;
border-radius:5px;
/*background: #10243A;*/
background: #000000;
}
div#stage{
margin-left:100px;
background-image:url("../images/stage.jpg");
width:350px;
height:40px;
border:0px solid #000;
position:absolute;
}
ul#seatingplan{
list-style: none outside none;
margin-top : 5%;
}
li#ava{
background-image:url("../images/seata.jpg");
background-repeat:no-repeat;
}
li#notava{
background-image:url("../images/bookedseat.jpg");
background-repeat:no-repeat;
pointer-events: none;
cursor: not-allowed;
}
/*class A*/
li.A1,li.A2,li.A3,li.A4,li.A5,li.A6,li.A7,li.A8,li.A9,li.A10,li.A11,li.A12,li.A13,li.A14,li.A15,li.A16,li.A17,li.A18,li.A19,li.A20
{
position :absolute;
margin-top : 30px;
}
li.B1,li.B2,li.B3,li.B4,li.B5,li.B6,li.B7,li.B8,li.B9,li.B10,li.B11,li.B12,li.B13,li.B14,li.B15,li.B16,li.B17,li.B18,li.B19,li.B20
{
position :absolute;
margin-top : 55px;
}
li.C1,li.C2,li.C3,li.C4,li.C5,li.C6,li.C7,li.C8,li.C9,li.C10,li.C11,li.C12,li.C13,li.C14,li.C15,li.C16,li.C17,li.C18,li.C19,li.C20
{
position :absolute;
margin-top : 80px;
}
li.D1,li.D2,li.D3,li.D4,li.D5,li.D6,li.D7,li.D8,li.D9,li.D10,li.D11,li.D12,li.D13,li.D14,li.D15,li.D16,li.D17,li.D18,li.D19,li.D20
{
position :absolute;
margin-top : 105px;
}
li.E1,li.E2,li.E3,li.E4,li.E5,li.E6,li.E7,li.E8,li.E9,li.E10,li.E11,li.E12,li.E13,li.E14,li.E15,li.E16,li.E17,li.E18,li.E19,li.E20
{
position :absolute;
margin-top : 130px;
}
li.F1,li.F2,li.F3,li.F4,li.F5,li.F6,li.F7,li.F8,li.F9,li.F10,li.F11,li.F12,li.F13,li.F14,li.F15,li.F16,li.F17,li.F18,li.F19,li.F20
{
position :absolute;
margin-top : 155px;
}
li.G1,li.G2,li.G3,li.G4,li.G5,li.G6,li.G7,li.G8,li.G9,li.G10,li.G11,li.G12,li.G13,li.G14,li.G15,li.G16,li.G17,li.G18,li.G19,li.G20
{
position :absolute;
margin-top : 180px;
}
li.H1,li.H2,li.H3,li.H4,li.H5,li.H6,li.H7,li.H8,li.H9,li.H10,li.H11,li.H12,li.H13,li.H14,li.H15,li.H16,li.H17,li.H18,li.H19,li.H20
{
position :absolute;
margin-top : 205px;
}
li.I1,li.I2,li.I3,li.I4,li.I5,li.I6,li.I7,li.I8,li.I9,li.I10,li.I11,li.I12,li.I13,li.I14,li.I15,li.I16,li.I17,li.I18,li.I19,li.I20
{
position :absolute;
margin-top : 230px;
}
li.A1,li.B1,li.C1,li.D1,li.E1,li.F1,li.G1,li.H1,li.I1
{
margin-left: 10px;
}
li.A2,li.B2,li.C2,li.D2,li.E2,li.F2,li.G2,li.H2,li.I2
{
margin-left:30px;
}
li.A3,li.B3,li.C3,li.D3,li.E3,li.F3,li.G3,li.H3,li.I3
{
margin-left:50px;
}
li.A4,li.B4,li.C4,li.D4,li.E4,li.F4,li.G4,li.H4,li.I4
{
margin-left:70px;
}
li.A5,li.B5,li.C5,li.D5,li.E5,li.F5,li.G5,li.H5,li.I5
{
margin-left:90px;
}
li.A6,li.B6,li.C6,li.D6,li.E6,li.F6,li.G6,li.H6,li.I6
{
margin-left:140px;
}
li.A7,li.B7,li.C7,li.D7,li.E7,li.F7,li.G7,li.H7,li.I7
{
margin-left:160px;
}
li.A8,li.B8,li.C8,li.D8,li.E8,li.F8,li.G8,li.H8,li.I8
{
margin-left:180px;
}
li.A9,li.B9,li.C9,li.D9,li.E9,li.F9,li.G9,li.H9,li.I9
{
margin-left:200px;
}
li.A10,li.B10,li.C10,li.D10,li.E10,li.F10,li.G10,li.H10,li.I10
{
margin-left:220px;
}
li.A11,li.B11,li.C11,li.D11,li.E11,li.F11,li.G11,li.H11,li.I11
{
margin-left:240px;
}
li.A12,li.B12,li.C12,li.D12,li.E12,li.F12,li.G12,li.H12,li.I12
{
margin-left:260px;
}
li.A13,li.B13,li.C13,li.D13,li.E13,li.F13,li.G13,li.H13,li.I13
{
margin-left:280px;
}
li.A14,li.B14,li.C14,li.D14,li.E14,li.F14,li.G14,li.H14,li.I14
{
margin-left:300px;
}
li.A15,li.B15,li.C15,li.D15,li.E15,li.F15,li.G15,li.H15,li.I15
{
margin-left:320px;
}
li.A16,li.B16,li.C16,li.D16,li.E16,li.F16,li.G16,li.H16,li.I16
{
margin-left:370px;
}
li.A17,li.B17,li.C17,li.D17,li.E17,li.F17,li.G17,li.H17,li.I17
{
margin-left:390px;
}
li.A18,li.B18,li.C18,li.D18,li.E18,li.F18,li.G18,li.H18,li.I18
{
margin-left:410px;
}
li.A19,li.B19,li.C19,li.D19,li.E19,li.F19,li.G19,li.H19,li.I19
{
margin-left:430px;
}
li.A20,li.B20,li.C20,li.D20,li.E20,li.F20,li.G20,li.H20,li.I20
{
margin-left:450px;
} | 0.184694 | 0.133726 |
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700;900&display=swap");
* {
font-family: 'Montserrat', sans-serif;
}
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
/* Safari/Chrome, other WebKit */
/* Firefox, other Gecko */
box-sizing: border-box;
/* Opera/IE 8+ */
}
body {
background-color: #fafafa;
}
/* For smaller screens: */
[class*='col-'] {
width: 100%;
}
.container {
width: 90%;
margin: auto;
}
/* BREAK POINTS */
@media only screen and (min-width: 768px) {
/* For Larger Screens: */
.container {
margin: auto;
max-width: 1100px;
}
.col-1 {
width: 8.33%;
}
.col-2 {
width: 16.66%;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.33%;
}
.col-5 {
width: 41.66%;
}
.col-6 {
width: 50%;
}
.col-7 {
width: 58.33%;
}
.col-8 {
width: 66.66%;
}
.col-9 {
width: 75%;
}
.col-10 {
width: 83.33%;
}
.col-11 {
width: 91.66%;
}
.col-12 {
width: 100%;
}
}
@media only screen and (min-width: 600px) {
/* For Medium Screens (Tablet): */
.col-s-1 {
width: 8.33%;
}
.col-s-2 {
width: 16.66%;
}
.col-s-3 {
width: 25%;
}
.col-s-4 {
width: 33.33%;
}
.col-s-5 {
width: 41.66%;
}
.col-s-6 {
width: 50%;
}
.col-s-7 {
width: 58.33%;
}
.col-s-8 {
width: 66.66%;
}
.col-s-9 {
width: 75%;
}
.col-s-10 {
width: 83.33%;
}
.col-s-11 {
width: 91.66%;
}
.col-s-12 {
width: 100%;
}
}
#ls-header-f .container .wrapper {
padding: 30px 0;
}
#ls-header-f .container .wrapper .logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#ls-header-f .container .wrapper .logo img {
width: 40px;
margin-right: 5px;
}
#ls-header-f .container .wrapper .logo h3 {
color: #5329bd;
font-weight: 900;
}
.chatting-head {
padding: 10px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: -webkit-sticky;
position: sticky;
top: 50px;
background-color: white;
-webkit-box-shadow: rgba(83, 41, 189, 0.07) 0px 8px 24px;
box-shadow: rgba(83, 41, 189, 0.07) 0px 8px 24px;
border-top: #5329bd 1px solid;
}
.chatting-head .profile {
overflow: hidden;
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.chatting-head .profile img {
width: 100%;
}
#mb-logged-in-header {
background-color: white;
padding: 10px 0;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
}
#mb-logged-in-header .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#mb-logged-in-header .container .wrapper .logo {
width: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#mb-logged-in-header .container .wrapper .logo img {
width: 100%;
}
#mb-logged-in-header .container .wrapper .profile {
border-radius: 50%;
overflow: hidden;
width: 30px;
height: 30px;
border: 1px #5329bd solid;
}
#mb-logged-in-header .container .wrapper .profile img {
width: 100%;
}
.input {
display: block;
}
.input input {
border: 1px black solid;
padding: 12px 0;
border: none;
width: 100%;
border: 1px transparent solid;
border-bottom: 1px #5329bd solid;
font-weight: 500;
}
.input input:focus {
outline: none;
border: 1px #5329bd solid;
}
.input .err-resp {
color: #bd2c00;
padding-top: 5px;
font-size: small;
text-align: left;
}
input:focus {
outline: none;
}
.search-bar {
width: 100%;
border-radius: 50px;
background-color: white;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
display: block;
}
.search-bar .container .wrapper {
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.search-bar .container .wrapper h3 {
cursor: pointer;
}
.search-bar .container .wrapper input {
border: 0;
width: 100%;
padding: 14px;
background-color: transparent;
color: black;
}
.form-response {
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 5px;
}
.form-response.error {
color: white;
border: 1px #bd2c00 solid;
background-color: rgba(189, 44, 0, 0.1);
}
.form-response.error .text,
.form-response.error .icon {
color: #bd2c00;
}
.form-response.success {
color: white;
border: 1px #6cc644 solid;
background-color: rgba(108, 198, 68, 0.1);
}
.form-response.success .text,
.form-response.success .icon {
color: #6cc644;
}
.form-response .icon {
margin-right: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form-response .text {
font-size: small;
}
.btn {
padding: 15px;
border-radius: 5px;
border: none;
background-color: transparent;
cursor: pointer;
}
.btn:hover {
-webkit-transform: scale(0.98);
transform: scale(0.98);
}
.solid-btn-main {
background-color: #5329bd;
color: white;
}
.solid-btn-main:hover {
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
background-color: rgba(83, 41, 189, 0.5);
}
footer {
background-color: #5329bd;
padding: 30px 0;
z-index: 10000;
position: relative;
text-align: center;
}
footer .container .wrapper > *:not(:first-child) {
margin-top: 10px;
display: block;
}
footer .container .wrapper a {
text-decoration: none;
}
footer .container .wrapper a,
footer .container .wrapper p {
color: white;
}
footer .container .wrapper .links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
footer .container .wrapper .links a {
font-size: large;
margin-right: 10px;
}
#bottom-console {
position: fixed;
bottom: 10px;
width: 100%;
z-index: 100;
}
#bottom-console .container {
background-color: #5329bd;
overflow: hidden;
border-radius: 10px;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
color: white;
}
#bottom-console .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#bottom-console .container .wrapper .bc-btn {
padding: 15px;
text-align: center;
cursor: pointer;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
font-size: xx-large;
}
#bottom-console .container .wrapper .bc-btn:hover {
background-color: rgba(255, 255, 255, 0.3);
}
#register,
#login {
min-height: 100vh;
background-image: url("../assets/login-bg.jpg");
background-size: cover;
}
#register .container .wrapper,
#login .container .wrapper {
padding: 50px 0;
}
#register .container .wrapper .box,
#login .container .wrapper .box {
background-color: white;
padding: 50px 20px;
border-radius: 10px;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
}
#register .container .wrapper .box .avatar,
#login .container .wrapper .box .avatar {
text-align: center;
}
#register .container .wrapper .box .avatar img,
#login .container .wrapper .box .avatar img {
width: 70px;
}
#register .container .wrapper .box .avatar h1,
#login .container .wrapper .box .avatar h1 {
color: #5329bd;
font-weight: 900;
font-size: large;
}
#register .container .wrapper .box form,
#login .container .wrapper .box form {
margin-top: 50px;
}
#register .container .wrapper .box form > *:not(:first-child),
#login .container .wrapper .box form > *:not(:first-child) {
margin-top: 20px;
}
#register .container .wrapper .box form > * input,
#login .container .wrapper .box form > * input {
background-color: rgba(83, 41, 189, 0.1);
padding: 12px;
}
#register .container .wrapper .box form button,
#login .container .wrapper .box form button {
width: 100%;
}
#register .container .wrapper .box form a,
#login .container .wrapper .box form a {
text-align: center;
display: block;
text-decoration: none;
color: #5329bd;
font-size: small;
}
@media screen and (min-width: 768px) {
#login .container .wrapper .box,
#register .container .wrapper .box {
margin: auto;
width: 340px;
}
}
#friend-list-mb {
padding: 30px 0;
min-height: 100vh;
}
#friend-list-mb .container .wrapper .actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#friend-list-mb .container .wrapper .actions .search-bar {
width: 80%;
}
#friend-list-mb .container .wrapper .actions .create-message {
cursor: pointer;
background-color: white;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 15px;
}
#friend-list-mb .container .wrapper .chat-preview-list {
padding-top: 30px;
}
#friend-list-mb .container .wrapper .chat-preview-list > *:not(:first-child) {
margin-top: 20px;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display {
text-align: center;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display > * {
margin-top: 10px;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display img {
width: 200px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 10px;
background-color: white;
border-radius: 50px;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview:hover {
-webkit-transform: scale(0.98);
transform: scale(0.98);
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .profile-pic {
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 50%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .profile-pic img {
width: 100%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details {
width: 70%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
overflow: hidden;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat {
width: 70%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .name,
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .chat {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .name {
font-weight: 600;
font-size: 13px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .chat {
font-size: 12.5px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: right;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info .read {
color: #5329bd;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info .time {
margin-left: 5px;
font-size: 12px;
}
#messaging {
background-color: white;
padding-top: 20px;
min-height: 100vh;
}
#messaging .container .wrapper .chat-window > * {
margin: 7px 0;
}
#messaging .container .wrapper .chat-window .start-convo-illustration {
text-align: center;
}
#messaging .container .wrapper .chat-window .start-convo-illustration img {
width: 200px;
}
#messaging .container .wrapper .chat-window .received p,
#messaging .container .wrapper .chat-window .sent p {
display: inline-block;
word-wrap: break-word;
padding: 13px;
max-width: 75%;
border-radius: 5px;
}
#messaging .container .wrapper .chat-window .received p {
background-color: #5329bd;
color: white;
}
#messaging .container .wrapper .chat-window .sent {
text-align: right;
}
#messaging .container .wrapper .chat-window .sent p {
background-color: #f5f5f5;
}
#messaging .container .wrapper .chat-typing-bar {
position: fixed;
bottom: 60px;
width: 100%;
left: 0;
}
#messaging .container .wrapper .chat-typing-bar .container {
background-color: #f5f5f5;
border-radius: 10px;
overflow: hidden;
border: 1px #5329bd solid;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 15px;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .chat-input {
width: 80%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .chat-input textarea {
width: 100%;
resize: none;
outline: 0;
border: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: transparent;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .send {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: white;
background-color: #5329bd;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
-webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .send:hover {
-webkit-transform: scale(0.9) rotate(360deg);
transform: scale(0.9) rotate(360deg);
}
#ff-modal {
z-index: 100000;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
#ff-modal .container .wrapper .ff-box {
position: absolute;
overflow-y: scroll;
left: 50%;
top: 60px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
background-color: white;
width: 340px;
height: 500px;
padding: 40px;
border-radius: 5px;
}
#ff-modal .container .wrapper .ff-box .close {
text-align: right;
color: #bd2c00;
cursor: pointer;
}
#ff-modal .container .wrapper .ff-box > *:not(:first-child) {
margin-top: 20px;
}
#ff-modal .container .wrapper .ff-box .people-list .people {
margin-top: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
#ff-modal .container .wrapper .ff-box .people-list .people:hover {
color: #5329bd;
font-weight: bold;
}
#ff-modal .container .wrapper .ff-box .people-list .people img {
width: 50px;
border-radius: 50%;
margin-right: 10px;
}
/*# sourceMappingURL=style.css.map */ | client/src/styles/style.css | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700;900&display=swap");
* {
font-family: 'Montserrat', sans-serif;
}
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
/* Safari/Chrome, other WebKit */
/* Firefox, other Gecko */
box-sizing: border-box;
/* Opera/IE 8+ */
}
body {
background-color: #fafafa;
}
/* For smaller screens: */
[class*='col-'] {
width: 100%;
}
.container {
width: 90%;
margin: auto;
}
/* BREAK POINTS */
@media only screen and (min-width: 768px) {
/* For Larger Screens: */
.container {
margin: auto;
max-width: 1100px;
}
.col-1 {
width: 8.33%;
}
.col-2 {
width: 16.66%;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.33%;
}
.col-5 {
width: 41.66%;
}
.col-6 {
width: 50%;
}
.col-7 {
width: 58.33%;
}
.col-8 {
width: 66.66%;
}
.col-9 {
width: 75%;
}
.col-10 {
width: 83.33%;
}
.col-11 {
width: 91.66%;
}
.col-12 {
width: 100%;
}
}
@media only screen and (min-width: 600px) {
/* For Medium Screens (Tablet): */
.col-s-1 {
width: 8.33%;
}
.col-s-2 {
width: 16.66%;
}
.col-s-3 {
width: 25%;
}
.col-s-4 {
width: 33.33%;
}
.col-s-5 {
width: 41.66%;
}
.col-s-6 {
width: 50%;
}
.col-s-7 {
width: 58.33%;
}
.col-s-8 {
width: 66.66%;
}
.col-s-9 {
width: 75%;
}
.col-s-10 {
width: 83.33%;
}
.col-s-11 {
width: 91.66%;
}
.col-s-12 {
width: 100%;
}
}
#ls-header-f .container .wrapper {
padding: 30px 0;
}
#ls-header-f .container .wrapper .logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#ls-header-f .container .wrapper .logo img {
width: 40px;
margin-right: 5px;
}
#ls-header-f .container .wrapper .logo h3 {
color: #5329bd;
font-weight: 900;
}
.chatting-head {
padding: 10px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
position: -webkit-sticky;
position: sticky;
top: 50px;
background-color: white;
-webkit-box-shadow: rgba(83, 41, 189, 0.07) 0px 8px 24px;
box-shadow: rgba(83, 41, 189, 0.07) 0px 8px 24px;
border-top: #5329bd 1px solid;
}
.chatting-head .profile {
overflow: hidden;
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 10px;
}
.chatting-head .profile img {
width: 100%;
}
#mb-logged-in-header {
background-color: white;
padding: 10px 0;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
}
#mb-logged-in-header .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#mb-logged-in-header .container .wrapper .logo {
width: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#mb-logged-in-header .container .wrapper .logo img {
width: 100%;
}
#mb-logged-in-header .container .wrapper .profile {
border-radius: 50%;
overflow: hidden;
width: 30px;
height: 30px;
border: 1px #5329bd solid;
}
#mb-logged-in-header .container .wrapper .profile img {
width: 100%;
}
.input {
display: block;
}
.input input {
border: 1px black solid;
padding: 12px 0;
border: none;
width: 100%;
border: 1px transparent solid;
border-bottom: 1px #5329bd solid;
font-weight: 500;
}
.input input:focus {
outline: none;
border: 1px #5329bd solid;
}
.input .err-resp {
color: #bd2c00;
padding-top: 5px;
font-size: small;
text-align: left;
}
input:focus {
outline: none;
}
.search-bar {
width: 100%;
border-radius: 50px;
background-color: white;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
display: block;
}
.search-bar .container .wrapper {
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.search-bar .container .wrapper h3 {
cursor: pointer;
}
.search-bar .container .wrapper input {
border: 0;
width: 100%;
padding: 14px;
background-color: transparent;
color: black;
}
.form-response {
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 5px;
}
.form-response.error {
color: white;
border: 1px #bd2c00 solid;
background-color: rgba(189, 44, 0, 0.1);
}
.form-response.error .text,
.form-response.error .icon {
color: #bd2c00;
}
.form-response.success {
color: white;
border: 1px #6cc644 solid;
background-color: rgba(108, 198, 68, 0.1);
}
.form-response.success .text,
.form-response.success .icon {
color: #6cc644;
}
.form-response .icon {
margin-right: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form-response .text {
font-size: small;
}
.btn {
padding: 15px;
border-radius: 5px;
border: none;
background-color: transparent;
cursor: pointer;
}
.btn:hover {
-webkit-transform: scale(0.98);
transform: scale(0.98);
}
.solid-btn-main {
background-color: #5329bd;
color: white;
}
.solid-btn-main:hover {
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
background-color: rgba(83, 41, 189, 0.5);
}
footer {
background-color: #5329bd;
padding: 30px 0;
z-index: 10000;
position: relative;
text-align: center;
}
footer .container .wrapper > *:not(:first-child) {
margin-top: 10px;
display: block;
}
footer .container .wrapper a {
text-decoration: none;
}
footer .container .wrapper a,
footer .container .wrapper p {
color: white;
}
footer .container .wrapper .links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
footer .container .wrapper .links a {
font-size: large;
margin-right: 10px;
}
#bottom-console {
position: fixed;
bottom: 10px;
width: 100%;
z-index: 100;
}
#bottom-console .container {
background-color: #5329bd;
overflow: hidden;
border-radius: 10px;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
color: white;
}
#bottom-console .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#bottom-console .container .wrapper .bc-btn {
padding: 15px;
text-align: center;
cursor: pointer;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
font-size: xx-large;
}
#bottom-console .container .wrapper .bc-btn:hover {
background-color: rgba(255, 255, 255, 0.3);
}
#register,
#login {
min-height: 100vh;
background-image: url("../assets/login-bg.jpg");
background-size: cover;
}
#register .container .wrapper,
#login .container .wrapper {
padding: 50px 0;
}
#register .container .wrapper .box,
#login .container .wrapper .box {
background-color: white;
padding: 50px 20px;
border-radius: 10px;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
}
#register .container .wrapper .box .avatar,
#login .container .wrapper .box .avatar {
text-align: center;
}
#register .container .wrapper .box .avatar img,
#login .container .wrapper .box .avatar img {
width: 70px;
}
#register .container .wrapper .box .avatar h1,
#login .container .wrapper .box .avatar h1 {
color: #5329bd;
font-weight: 900;
font-size: large;
}
#register .container .wrapper .box form,
#login .container .wrapper .box form {
margin-top: 50px;
}
#register .container .wrapper .box form > *:not(:first-child),
#login .container .wrapper .box form > *:not(:first-child) {
margin-top: 20px;
}
#register .container .wrapper .box form > * input,
#login .container .wrapper .box form > * input {
background-color: rgba(83, 41, 189, 0.1);
padding: 12px;
}
#register .container .wrapper .box form button,
#login .container .wrapper .box form button {
width: 100%;
}
#register .container .wrapper .box form a,
#login .container .wrapper .box form a {
text-align: center;
display: block;
text-decoration: none;
color: #5329bd;
font-size: small;
}
@media screen and (min-width: 768px) {
#login .container .wrapper .box,
#register .container .wrapper .box {
margin: auto;
width: 340px;
}
}
#friend-list-mb {
padding: 30px 0;
min-height: 100vh;
}
#friend-list-mb .container .wrapper .actions {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#friend-list-mb .container .wrapper .actions .search-bar {
width: 80%;
}
#friend-list-mb .container .wrapper .actions .create-message {
cursor: pointer;
background-color: white;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
margin-left: 15px;
}
#friend-list-mb .container .wrapper .chat-preview-list {
padding-top: 30px;
}
#friend-list-mb .container .wrapper .chat-preview-list > *:not(:first-child) {
margin-top: 20px;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display {
text-align: center;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display > * {
margin-top: 10px;
}
#friend-list-mb .container .wrapper .chat-preview-list .no-chat-display img {
width: 200px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 10px;
background-color: white;
border-radius: 50px;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
-webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 24px;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview:hover {
-webkit-transform: scale(0.98);
transform: scale(0.98);
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .profile-pic {
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 50%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .profile-pic img {
width: 100%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details {
width: 70%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
overflow: hidden;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat {
width: 70%;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .name,
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .chat {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .name {
font-weight: 600;
font-size: 13px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .name-and-chat .chat {
font-size: 12.5px;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: right;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info .read {
color: #5329bd;
}
#friend-list-mb .container .wrapper .chat-preview-list .chat-preview .preview-chat-details .time-content-read-info .time {
margin-left: 5px;
font-size: 12px;
}
#messaging {
background-color: white;
padding-top: 20px;
min-height: 100vh;
}
#messaging .container .wrapper .chat-window > * {
margin: 7px 0;
}
#messaging .container .wrapper .chat-window .start-convo-illustration {
text-align: center;
}
#messaging .container .wrapper .chat-window .start-convo-illustration img {
width: 200px;
}
#messaging .container .wrapper .chat-window .received p,
#messaging .container .wrapper .chat-window .sent p {
display: inline-block;
word-wrap: break-word;
padding: 13px;
max-width: 75%;
border-radius: 5px;
}
#messaging .container .wrapper .chat-window .received p {
background-color: #5329bd;
color: white;
}
#messaging .container .wrapper .chat-window .sent {
text-align: right;
}
#messaging .container .wrapper .chat-window .sent p {
background-color: #f5f5f5;
}
#messaging .container .wrapper .chat-typing-bar {
position: fixed;
bottom: 60px;
width: 100%;
left: 0;
}
#messaging .container .wrapper .chat-typing-bar .container {
background-color: #f5f5f5;
border-radius: 10px;
overflow: hidden;
border: 1px #5329bd solid;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 15px;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .chat-input {
width: 80%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .chat-input textarea {
width: 100%;
resize: none;
outline: 0;
border: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: transparent;
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .send {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: white;
background-color: #5329bd;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
-webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#messaging .container .wrapper .chat-typing-bar .container .wrapper .send:hover {
-webkit-transform: scale(0.9) rotate(360deg);
transform: scale(0.9) rotate(360deg);
}
#ff-modal {
z-index: 100000;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
#ff-modal .container .wrapper .ff-box {
position: absolute;
overflow-y: scroll;
left: 50%;
top: 60px;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
background-color: white;
width: 340px;
height: 500px;
padding: 40px;
border-radius: 5px;
}
#ff-modal .container .wrapper .ff-box .close {
text-align: right;
color: #bd2c00;
cursor: pointer;
}
#ff-modal .container .wrapper .ff-box > *:not(:first-child) {
margin-top: 20px;
}
#ff-modal .container .wrapper .ff-box .people-list .people {
margin-top: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
#ff-modal .container .wrapper .ff-box .people-list .people:hover {
color: #5329bd;
font-weight: bold;
}
#ff-modal .container .wrapper .ff-box .people-list .people img {
width: 50px;
border-radius: 50%;
margin-right: 10px;
}
/*# sourceMappingURL=style.css.map */ | 0.233095 | 0.063222 |
* {
/* #2 #font #faces */
font-family: 'Roboto','Arial', sans-serif;
/* removing ugly spaces */
margin: 0px;
padding: 0px;
}
body {
/* #2 #colorful #background */
background-color: #F5F5F5;
}
button, strong {
/* #2 #font capital #letters */
text-transform: uppercase;
}
.selected {
/* highlight font color of current selection */
color: #3F51B5;
}
/* ################################# APP BAR ################################# */
.app-bar {
/* #2 #colourful #app-bar */
background-color: #3F51B5;
color: white;
}
/* ################################# CHANNELS LIST ################################# */
ul li{
/* #2 #colorful #channelandchat */
background-color: white;
list-style-type: none;
padding: 16px;
font-size: 16px;
box-sizing: border-box;
height: 48px;
/* border-bottom so that borders do not overlap*/
border-bottom: 1px solid #F5F5F5;
}
li img {
/* to center the icons vertically */
vertical-align: middle;
}
li.selected {
/* left border for current channel*/
border-left: 4px solid #3F51B5;
}
/* ################################# TAB BAR ################################# */
#tab-bar {
/*overall tab bar*/
background-color: white;
width: 100%;
}
#tab-bar button {
/* whole button inside tab bar */
text-align: center;
background-color: white;
border: none;
font-size: 13px;
width: 33%;
height: 72px;
padding: 16px;
}
#tab-bar img{
/* icons inside the buttons: block, center and spacing */
display: block;
margin: auto;
margin-bottom: 4px;
}
#tab-bar button.selected {
/*highlight current button */
border-bottom: 4px solid #3F51B5;
}
/* ################################# MESSAGES ################################# */
.messages{
/* #message container*/
width: 80%;
margin-bottom: 8px;
margin-left: 2.5%;
}
.messages.own{
/* own messages are further right*/
margin-left: 17.5%;
}
.messages h3, .messages h3 a{
/* font #metadata is now medium */
font-size: medium;
color: black;
}
.messages p {
/* #message text */
background-color: white;
padding: 16px;
}
.messages button {
/* #message button: #colourful #plusfive */
background-color: #CDDC39;
color: black;
/* note: uppercase is already specified in GLOBAl*/
}
.messages em{
/* #message emphasised information */
font-size: larger;
font-style: normal;
} | CSS/style.css | * {
/* #2 #font #faces */
font-family: 'Roboto','Arial', sans-serif;
/* removing ugly spaces */
margin: 0px;
padding: 0px;
}
body {
/* #2 #colorful #background */
background-color: #F5F5F5;
}
button, strong {
/* #2 #font capital #letters */
text-transform: uppercase;
}
.selected {
/* highlight font color of current selection */
color: #3F51B5;
}
/* ################################# APP BAR ################################# */
.app-bar {
/* #2 #colourful #app-bar */
background-color: #3F51B5;
color: white;
}
/* ################################# CHANNELS LIST ################################# */
ul li{
/* #2 #colorful #channelandchat */
background-color: white;
list-style-type: none;
padding: 16px;
font-size: 16px;
box-sizing: border-box;
height: 48px;
/* border-bottom so that borders do not overlap*/
border-bottom: 1px solid #F5F5F5;
}
li img {
/* to center the icons vertically */
vertical-align: middle;
}
li.selected {
/* left border for current channel*/
border-left: 4px solid #3F51B5;
}
/* ################################# TAB BAR ################################# */
#tab-bar {
/*overall tab bar*/
background-color: white;
width: 100%;
}
#tab-bar button {
/* whole button inside tab bar */
text-align: center;
background-color: white;
border: none;
font-size: 13px;
width: 33%;
height: 72px;
padding: 16px;
}
#tab-bar img{
/* icons inside the buttons: block, center and spacing */
display: block;
margin: auto;
margin-bottom: 4px;
}
#tab-bar button.selected {
/*highlight current button */
border-bottom: 4px solid #3F51B5;
}
/* ################################# MESSAGES ################################# */
.messages{
/* #message container*/
width: 80%;
margin-bottom: 8px;
margin-left: 2.5%;
}
.messages.own{
/* own messages are further right*/
margin-left: 17.5%;
}
.messages h3, .messages h3 a{
/* font #metadata is now medium */
font-size: medium;
color: black;
}
.messages p {
/* #message text */
background-color: white;
padding: 16px;
}
.messages button {
/* #message button: #colourful #plusfive */
background-color: #CDDC39;
color: black;
/* note: uppercase is already specified in GLOBAl*/
}
.messages em{
/* #message emphasised information */
font-size: larger;
font-style: normal;
} | 0.269037 | 0.053849 |
.nav-menu-top {
margin-left: 80px;
}
/*
#user{
padding-top: 10px;
padding-bottom: 10px;
}
*/
body {
background: url('background.jpg') repeat ;
background-size: auto;
margin-top: 0px;
font-family: Arial, Helvetica, sans-serif;
color: #6D6D6D;
line-height: 1.2em;
}
.nav-tabs {
margin-bottom: -1px;
}
a {
color:#1876BA;
}
.dropdown {
width:120%;
}/*
.btn{
width: 100%;
}*/
#myTabContent {
min-height: 500px;
}
.tabbable {
margin: 10px;
/*min-height: 300px;*/
overflow: hidden;
border-bottom: 1px solid #ccc;
}
.nav-tabs {
margin: 0
margin-bottom:-1px;
}
.tab-content {
/*overflow-y:scroll;
height: 100%; */
border-left: 1px solid #ccc ;
border-right: 1px solid #ccc;
border-top:1px solid #ccc;
padding:10px;
background-color:#ffffff;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
background-color:#ffffff
}
.next a {
background-color: #ecf0f1 !important;
color: #2d525d !important;
}
.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span {
background-color: #ecf0f1 !important;
color: #2d525d !important;
}
.pager li>a, .pager li>span {
background-color:#2c3e50;
}
.img-container{
text-align:bottom;
margin: 0 0 0 20px;
}
.highlight{
background: #fff2a8;
padding: 2px;
}
/*Login css
@import url(http://fonts.googleapis.com/css?family=Roboto);
*/
/****** LOGIN MODAL ******/
.loginmodal-container {
padding: 30px;
max-width: 350px;
width: 100% !important;
background-color: #F7F7F7;
margin: 0 auto;
border-radius: 2px;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
overflow: hidden;
font-family: roboto;
}
.loginmodal-container h1 {
text-align: center;
font-size: 1.8em;
font-family: roboto;
}
.loginmodal-container input[type=submit] {
width: 100%;
display: block;
margin-bottom: 10px;
position: relative;
}
.loginmodal-container input[type=text], input[type=password] {
height: 44px;
font-size: 16px;
width: 100%;
margin-bottom: 10px;
-webkit-appearance: none;
background: #fff;
border: 1px solid #d9d9d9;
border-top: 1px solid #c0c0c0;
/* border-radius: 2px; */
padding: 0 8px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.loginmodal-container input[type=text]:hover, input[type=password]:hover {
border: 1px solid #b9b9b9;
border-top: 1px solid #a0a0a0;
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.loginmodal {
text-align: center;
font-size: 14px;
font-family: 'Arial', sans-serif;
font-weight: 700;
height: 36px;
padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
user-select: none; */
}
.loginmodal-submit {
/* border: 1px solid #3079ed; */
border: 0px;
color: #fff;
text-shadow: 0 1px rgba(0,0,0,0.1);
background-color: #4d90fe;
padding: 17px 0px;
font-family: roboto;
font-size: 14px;
/* background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#4787ed)); */
}
.loginmodal-submit:hover {
/* border: 1px solid #2f5bb7; */
border: 0px;
text-shadow: 0 1px rgba(0,0,0,0.3);
background-color: #357ae8;
/* background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#357ae8)); */
}
.loginmodal-container a {
text-decoration: none;
color: #666;
font-weight: 400;
text-align: center;
display: inline-block;
opacity: 0.6;
transition: opacity ease 0.5s;
}
#dropdownMenu1 {
float: right;
}
#contextlines {
margin-right:5px;
margin-left:5px;
}
#search {
margin-right:5px;
} | style.css | .nav-menu-top {
margin-left: 80px;
}
/*
#user{
padding-top: 10px;
padding-bottom: 10px;
}
*/
body {
background: url('background.jpg') repeat ;
background-size: auto;
margin-top: 0px;
font-family: Arial, Helvetica, sans-serif;
color: #6D6D6D;
line-height: 1.2em;
}
.nav-tabs {
margin-bottom: -1px;
}
a {
color:#1876BA;
}
.dropdown {
width:120%;
}/*
.btn{
width: 100%;
}*/
#myTabContent {
min-height: 500px;
}
.tabbable {
margin: 10px;
/*min-height: 300px;*/
overflow: hidden;
border-bottom: 1px solid #ccc;
}
.nav-tabs {
margin: 0
margin-bottom:-1px;
}
.tab-content {
/*overflow-y:scroll;
height: 100%; */
border-left: 1px solid #ccc ;
border-right: 1px solid #ccc;
border-top:1px solid #ccc;
padding:10px;
background-color:#ffffff;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
background-color:#ffffff
}
.next a {
background-color: #ecf0f1 !important;
color: #2d525d !important;
}
.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span {
background-color: #ecf0f1 !important;
color: #2d525d !important;
}
.pager li>a, .pager li>span {
background-color:#2c3e50;
}
.img-container{
text-align:bottom;
margin: 0 0 0 20px;
}
.highlight{
background: #fff2a8;
padding: 2px;
}
/*Login css
@import url(http://fonts.googleapis.com/css?family=Roboto);
*/
/****** LOGIN MODAL ******/
.loginmodal-container {
padding: 30px;
max-width: 350px;
width: 100% !important;
background-color: #F7F7F7;
margin: 0 auto;
border-radius: 2px;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
overflow: hidden;
font-family: roboto;
}
.loginmodal-container h1 {
text-align: center;
font-size: 1.8em;
font-family: roboto;
}
.loginmodal-container input[type=submit] {
width: 100%;
display: block;
margin-bottom: 10px;
position: relative;
}
.loginmodal-container input[type=text], input[type=password] {
height: 44px;
font-size: 16px;
width: 100%;
margin-bottom: 10px;
-webkit-appearance: none;
background: #fff;
border: 1px solid #d9d9d9;
border-top: 1px solid #c0c0c0;
/* border-radius: 2px; */
padding: 0 8px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.loginmodal-container input[type=text]:hover, input[type=password]:hover {
border: 1px solid #b9b9b9;
border-top: 1px solid #a0a0a0;
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.loginmodal {
text-align: center;
font-size: 14px;
font-family: 'Arial', sans-serif;
font-weight: 700;
height: 36px;
padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
user-select: none; */
}
.loginmodal-submit {
/* border: 1px solid #3079ed; */
border: 0px;
color: #fff;
text-shadow: 0 1px rgba(0,0,0,0.1);
background-color: #4d90fe;
padding: 17px 0px;
font-family: roboto;
font-size: 14px;
/* background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#4787ed)); */
}
.loginmodal-submit:hover {
/* border: 1px solid #2f5bb7; */
border: 0px;
text-shadow: 0 1px rgba(0,0,0,0.3);
background-color: #357ae8;
/* background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#357ae8)); */
}
.loginmodal-container a {
text-decoration: none;
color: #666;
font-weight: 400;
text-align: center;
display: inline-block;
opacity: 0.6;
transition: opacity ease 0.5s;
}
#dropdownMenu1 {
float: right;
}
#contextlines {
margin-right:5px;
margin-left:5px;
}
#search {
margin-right:5px;
} | 0.238196 | 0.071267 |
.wp-pagenavi{margin-bottom:0px;}
.wp-pagenavi .pages{padding-right:10px; border:0px;}
.wp-pagenavi a, .wp-pagenavi a:visited{padding:3px 7px!important; margin:0 0px; border:0px !important; font-weight:bold;}
.wp-pagenavi .current{padding:3px 7px!important; margin:0 0px; border:0px !important;}
/* BLOG */
.post{clear:both; margin-bottom:40px}
.pageimg, .postimg{padding-top:12px;}
.postimg img{display:block;}
.pageimg, .single .postimg{ margin-bottom:20px;}
.entry-content{ margin:0px 20px 0 20px; padding:0 0 36px 0; word-wrap:break-word;}
.single .entry-content { padding-bottom:15px;}
.more, .more-link{font-size:12px; }
a.more:hover, a.more-link:hover{text-decoration:none;}
.post .button{margin:10px 0 ; display:inline-block; float:left}
.posttitle{padding:27px 20px 0px 20px; margin-bottom:4px; word-wrap:break-word;}
.posttitle, .posttitle a{font-size:18px; text-transform:none}
.posttitle a:hover{text-decoration:none;}
.entry-utility{
font-size:11px;
margin:0px 20px 14px 20px;
padding:3px 0px 13px;
}
.entry-utility div{
display:inline-block;
line-height:100%;
}
.entry-utility .user, .entry-utility .tag, .entry-utility .like{
margin-left:6px;
padding-left:8px;
border-style:solid;
border-width:0px 0px 0px 1px;
}
.last .entry-content{ margin-bottom:15px;}
#postattachment .entry-utility{width:100%; float:none; padding:0}
.entry-attachment{margin-bottom:20px;}
.price{ font-size:24px; font-weight:bold; padding-top:5px; }
.price span{ font-size:14px;}
/* Tags */
.entry-tag{ margin: 0 20px 0; padding:30px 0 40px; font-size:12px;}
.tag-text{ margin-right:5px}
.tag-items {
display: inline;
}
.tag-items span {
display: inline-block;
padding: 0 3px;
}
.tag-items a{padding:3px 15px; font-size:12px; display:inline-block; margin-bottom:5px;}
.tag-items a:hover{ text-decoration:none;}
/* author */
#entry-author-info {
clear: both;
margin:40px 0px;
position:relative;
padding:30px 20px 36px 20px;
}
#entry-author-info h2{ margin-bottom:24px;}
#entry-author-info #author-avatar {
margin: 0 0 0 0;
position:absolute;
top:73px;
left:20px;
}
.archive #entry-author-info #author-avatar { top:30px;}
#entry-author-info #author-avatar img{ width:77px; height:77px;}
.avatar{display:block;
-webkit-border-radius: 77px;
-moz-border-radius: 77px;
border-radius: 77px;
width:77px;
}
#entry-author-info #author-description {
margin: 0px 0px 10px 100px; vertical-align:top; line-height:18px;
}
#entry-author-info #author-description h2{font-size:14px; margin-bottom:5px;}
#entry-author-info #author-description h3{ margin-bottom:5px;}
#author-description span.author{display:block; }
.related-post{margin-bottom:20px; float:left}
#comment{ padding:30px 20px 0; margin-bottom:0px;}
#comment h3{ display:block; margin-bottom:30px; font-size:18px;}
.commentlist{
list-style-type:none;
padding:0;
margin:0;
}
.commentlist ol{
list-style-type:none;
padding:30px 0 0 80px;
margin:0;
}
.commentlist li{
position:relative;
padding:0 0 25px 0;
}
.commentlist li li{
position:relative;
padding:0;
}
.avatar-img{
position:absolute;
top:5px;
left:0px;
}
.avatar{display:block}
.fn{display:block;}
.commenttext{}
.tdate, .reply{ font-size:11px;}
.reply a, .reply a:visited{}
.reply a:hover{text-decoration:underline;}
.fn, .fn a, .fn a:visited{}
.comment-body{margin:0 0 0 0px; padding:0px 0 20px 98px;}
.comment-body p{ margin-bottom:5px; margin-top:10px;}
.comment-body .more{ padding:0px 0px;}
.comment-arrow{ width:8px; height:18px; position:absolute; left:72px; top:10px;}
#commentform {margin-bottom:20px}
#commentform label{display:block}
#commentform .text-input{
margin-bottom:8px;
padding:8px 5px;
vertical-align:middle;
}
#commentform .textarea{
margin-bottom:20px;
padding:8px 5px;
vertical-align:top;
}
/* Room*/
#roomslider{ padding-top:10px;}
#roomslider.flexslider {
border: 0 none;
border-radius: 0 0 0 0;
box-shadow: none;
margin: 0 0 0;
position: relative;
}
#roomslider .flex-direction-nav a {width: 38px; height: 38px;}
#roomslider .flexslider:hover .flex-next {opacity: 0.8; right: 20px;}
#roomslider .flexslider:hover .flex-prev {opacity: 0.8; left: 20px;}
/* PORTFOLIO */
#ts-portfolio{ padding-bottom:10px; float:left; width:100%; margin-bottom:-40px}
#ts-portfolio .item{ margin-bottom:30px;}
.ts-clear{clear:both; height:1px !important; line-height:1px !important; float:none!important}
.ts-pf-text{padding:0 20px 30px;}
.ts-pf-text .pftitle{ padding:12px 0 12px 0; margin:0px 0 14px; text-transform:none; font-size:16px;}
.ts-pf-text a.more-link{ display:inline-block; margin-bottom:0px; margin-top: 24px;}
.ts-pf-info{ padding:5px 20px; }
.ts-pf-info .cat{ text-transform:capitalize; float:left;}
.ts-pf-info .btn-zoom{ float:right; text-indent:-9999px; width:12px; height:12px; margin-top:5px;}
.ts-pf-img{position:relative; padding:15px 0;}
.ts-pf-img img{ display:block;}
.pfzoom, .pflink, .pfdetail {
display: block;
overflow: hidden;
position: relative;
}
.ts-pf-img a.image{
display:block;
position:relative;
overflow:hidden;
}
.ts-pf-img a.pfzoom .rollover{
background:url(../images/hover-zoom.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
.ts-pf-img a.pflink .rollover{
background:url(../images/hover-link.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
.ts-pf-img a.pfdetail .rollover{
background:url(../images/hover-doc.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
/* ---------------------------- */
/* Isotope plugin
/* ---------------------------- */
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-o-transition-property: top, left, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* CONTACT */
form{margin:0; padding:0;}
fieldset{border:0px;}
#contactform{margin:0 auto 0px; position:relative; }
#contactform label{display:block; width:100%; padding-bottom:5px;}
span.error{color:red;text-align:left; font-size:11px; padding-bottom:15px; display:block;}
#contactform input.text-input{
margin-bottom:15px;
vertical-align:middle;
padding:10px;
width:95%;
border:0px;
}
#contactform textarea{ width:90%; height:140px; border:0px;}
#message{ margin-left:0px; font-weight:bold;}
#message h2 {}
#message p{margin:6px 0px; }
#contactform .button{
cursor:pointer;
margin-top:18px;
border:0px;
font-family: 'Droid Sans', sans-serif;
} | public/css/inner.css | .wp-pagenavi{margin-bottom:0px;}
.wp-pagenavi .pages{padding-right:10px; border:0px;}
.wp-pagenavi a, .wp-pagenavi a:visited{padding:3px 7px!important; margin:0 0px; border:0px !important; font-weight:bold;}
.wp-pagenavi .current{padding:3px 7px!important; margin:0 0px; border:0px !important;}
/* BLOG */
.post{clear:both; margin-bottom:40px}
.pageimg, .postimg{padding-top:12px;}
.postimg img{display:block;}
.pageimg, .single .postimg{ margin-bottom:20px;}
.entry-content{ margin:0px 20px 0 20px; padding:0 0 36px 0; word-wrap:break-word;}
.single .entry-content { padding-bottom:15px;}
.more, .more-link{font-size:12px; }
a.more:hover, a.more-link:hover{text-decoration:none;}
.post .button{margin:10px 0 ; display:inline-block; float:left}
.posttitle{padding:27px 20px 0px 20px; margin-bottom:4px; word-wrap:break-word;}
.posttitle, .posttitle a{font-size:18px; text-transform:none}
.posttitle a:hover{text-decoration:none;}
.entry-utility{
font-size:11px;
margin:0px 20px 14px 20px;
padding:3px 0px 13px;
}
.entry-utility div{
display:inline-block;
line-height:100%;
}
.entry-utility .user, .entry-utility .tag, .entry-utility .like{
margin-left:6px;
padding-left:8px;
border-style:solid;
border-width:0px 0px 0px 1px;
}
.last .entry-content{ margin-bottom:15px;}
#postattachment .entry-utility{width:100%; float:none; padding:0}
.entry-attachment{margin-bottom:20px;}
.price{ font-size:24px; font-weight:bold; padding-top:5px; }
.price span{ font-size:14px;}
/* Tags */
.entry-tag{ margin: 0 20px 0; padding:30px 0 40px; font-size:12px;}
.tag-text{ margin-right:5px}
.tag-items {
display: inline;
}
.tag-items span {
display: inline-block;
padding: 0 3px;
}
.tag-items a{padding:3px 15px; font-size:12px; display:inline-block; margin-bottom:5px;}
.tag-items a:hover{ text-decoration:none;}
/* author */
#entry-author-info {
clear: both;
margin:40px 0px;
position:relative;
padding:30px 20px 36px 20px;
}
#entry-author-info h2{ margin-bottom:24px;}
#entry-author-info #author-avatar {
margin: 0 0 0 0;
position:absolute;
top:73px;
left:20px;
}
.archive #entry-author-info #author-avatar { top:30px;}
#entry-author-info #author-avatar img{ width:77px; height:77px;}
.avatar{display:block;
-webkit-border-radius: 77px;
-moz-border-radius: 77px;
border-radius: 77px;
width:77px;
}
#entry-author-info #author-description {
margin: 0px 0px 10px 100px; vertical-align:top; line-height:18px;
}
#entry-author-info #author-description h2{font-size:14px; margin-bottom:5px;}
#entry-author-info #author-description h3{ margin-bottom:5px;}
#author-description span.author{display:block; }
.related-post{margin-bottom:20px; float:left}
#comment{ padding:30px 20px 0; margin-bottom:0px;}
#comment h3{ display:block; margin-bottom:30px; font-size:18px;}
.commentlist{
list-style-type:none;
padding:0;
margin:0;
}
.commentlist ol{
list-style-type:none;
padding:30px 0 0 80px;
margin:0;
}
.commentlist li{
position:relative;
padding:0 0 25px 0;
}
.commentlist li li{
position:relative;
padding:0;
}
.avatar-img{
position:absolute;
top:5px;
left:0px;
}
.avatar{display:block}
.fn{display:block;}
.commenttext{}
.tdate, .reply{ font-size:11px;}
.reply a, .reply a:visited{}
.reply a:hover{text-decoration:underline;}
.fn, .fn a, .fn a:visited{}
.comment-body{margin:0 0 0 0px; padding:0px 0 20px 98px;}
.comment-body p{ margin-bottom:5px; margin-top:10px;}
.comment-body .more{ padding:0px 0px;}
.comment-arrow{ width:8px; height:18px; position:absolute; left:72px; top:10px;}
#commentform {margin-bottom:20px}
#commentform label{display:block}
#commentform .text-input{
margin-bottom:8px;
padding:8px 5px;
vertical-align:middle;
}
#commentform .textarea{
margin-bottom:20px;
padding:8px 5px;
vertical-align:top;
}
/* Room*/
#roomslider{ padding-top:10px;}
#roomslider.flexslider {
border: 0 none;
border-radius: 0 0 0 0;
box-shadow: none;
margin: 0 0 0;
position: relative;
}
#roomslider .flex-direction-nav a {width: 38px; height: 38px;}
#roomslider .flexslider:hover .flex-next {opacity: 0.8; right: 20px;}
#roomslider .flexslider:hover .flex-prev {opacity: 0.8; left: 20px;}
/* PORTFOLIO */
#ts-portfolio{ padding-bottom:10px; float:left; width:100%; margin-bottom:-40px}
#ts-portfolio .item{ margin-bottom:30px;}
.ts-clear{clear:both; height:1px !important; line-height:1px !important; float:none!important}
.ts-pf-text{padding:0 20px 30px;}
.ts-pf-text .pftitle{ padding:12px 0 12px 0; margin:0px 0 14px; text-transform:none; font-size:16px;}
.ts-pf-text a.more-link{ display:inline-block; margin-bottom:0px; margin-top: 24px;}
.ts-pf-info{ padding:5px 20px; }
.ts-pf-info .cat{ text-transform:capitalize; float:left;}
.ts-pf-info .btn-zoom{ float:right; text-indent:-9999px; width:12px; height:12px; margin-top:5px;}
.ts-pf-img{position:relative; padding:15px 0;}
.ts-pf-img img{ display:block;}
.pfzoom, .pflink, .pfdetail {
display: block;
overflow: hidden;
position: relative;
}
.ts-pf-img a.image{
display:block;
position:relative;
overflow:hidden;
}
.ts-pf-img a.pfzoom .rollover{
background:url(../images/hover-zoom.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
.ts-pf-img a.pflink .rollover{
background:url(../images/hover-link.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
.ts-pf-img a.pfdetail .rollover{
background:url(../images/hover-doc.png);
background-color:#000;
background-repeat:no-repeat;
background-position:center;
display:block;
position:absolute;
z-index:10;
display:none;
cursor:pointer;
width:100%;
height:100%;
}
/* ---------------------------- */
/* Isotope plugin
/* ---------------------------- */
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-o-transition-property: top, left, opacity;
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* CONTACT */
form{margin:0; padding:0;}
fieldset{border:0px;}
#contactform{margin:0 auto 0px; position:relative; }
#contactform label{display:block; width:100%; padding-bottom:5px;}
span.error{color:red;text-align:left; font-size:11px; padding-bottom:15px; display:block;}
#contactform input.text-input{
margin-bottom:15px;
vertical-align:middle;
padding:10px;
width:95%;
border:0px;
}
#contactform textarea{ width:90%; height:140px; border:0px;}
#message{ margin-left:0px; font-weight:bold;}
#message h2 {}
#message p{margin:6px 0px; }
#contactform .button{
cursor:pointer;
margin-top:18px;
border:0px;
font-family: 'Droid Sans', sans-serif;
} | 0.249356 | 0.104067 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');
* {
border: 0;
outline: 0;
-webkit-font-smoothing: subpixel-antialiased;
-moz-font-smoothing: subpixel-antialiased;
-ms-font-smoothing: subpixel-antialiased;
-o-font-smoothing: subpixel-antialiased;
text-rendering: optimizeLegibility;
}
*,
*:before,
*:after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0;
margin: 0;
}
:root {
--main: #ACBDCE;
--secondary: #38444d;
--bg: #051320;
--dark-green: #32573E;
--light-green: #72c98c;
--white: #ffffff;
--black: #000000;
--grey: #9C9C9C;
--dark-red: #7e0909;
--light-red: #E89292;
}
html {
font-size: 62.5%;
}
body {
color: var(--main);
background: var(--bg);
font-family: 'Poppins', sans-serif, Arial;
font-size: 1.6rem; /* 1rem = 10px */
display: flex;
flex-direction: column;
height: 100vh;
}
h1,h2{
display: block;
margin: 0;
}
h1 {
font-size: 2.4rem;
}
h2 {
font-size: 2rem;
}
a {
color: var(--grey);
border-bottom: 1px var(--grey) dotted;
text-decoration: none;
}
.sombra {
box-shadow:
0.8px 0.8px 2.7px rgba(0, 0, 0, 0.062),
2.1px 2.1px 6.9px rgba(0, 0, 0, 0.089),
4.3px 4.3px 14.2px rgba(0, 0, 0, 0.111),
8.8px 8.8px 29.2px rgba(0, 0, 0, 0.138),
24px 24px 80px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:
0.8px 0.8px 2.7px rgba(0, 0, 0, 0.062),
2.1px 2.1px 6.9px rgba(0, 0, 0, 0.089),
4.3px 4.3px 14.2px rgba(0, 0, 0, 0.111),
8.8px 8.8px 29.2px rgba(0, 0, 0, 0.138),
24px 24px 80px rgba(0, 0, 0, 0.2);
}
/* filtro canales activo */
.is-hidden {
display: none;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-principal{
padding: 1rem 2rem;
}
/* Modo celu */
.grid {
display: grid;
grid-template-rows: 1fr 2.5fr;
padding: 0 2rem 2rem 2rem;
row-gap: 2rem;
}
.video-container {
position: relative;
height: 0;
padding-bottom: 56.25%;
padding-top: 0;
border-radius: 1rem;
overflow: hidden;
border: 1px solid var(--secondary);
}
.recordatorio {
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-weight: 100;
font-size: calc(1.6rem + 2vw);
text-transform: uppercase;
color: var(--light-green);
padding: 0 2rem;
}
.transmision {
z-index: 1;
}
.transmision,
.video-container iframe,
.m3u-stream,
.video-container video {
position: absolute;
border: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
}
.canales-container {
height: 100%;
width: 100%;
padding: 0 2rem;
display: grid;
grid-template-rows: 6rem 1fr 10rem;
row-gap: 1rem;
border: 1px solid var(--secondary);
border-radius: 1rem;
}
.header-secundario {
padding: 1rem 0;
display: flex;
flex-direction: column;
gap: .5rem;
justify-content: space-between;
align-items: center;
}
.filtro {
width: 100%;
border-radius: .6rem;
padding-left: .5rem;
height: 2rem;
border: 1px var(--main) solid;
}
/* listado canales */
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-columns: minmax(min-content, 1fr) minmax(min-content, 1fr);
gap: 1rem;
width: 100%;
height: 100%;
scrollbar-width: thin;
overflow-y: scroll;
}
/* btn canales */
.boton__canal {
border: 1px solid var(--black);
text-align: left;
font-size: 1.6rem;
border-radius: .6rem;
padding: .7rem;
}
.activo {
background-color: var(--dark-green);
border: 1px solid var(--light-green);
color: var(--white);
}
.opciones-container{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
height: 100%;
padding-bottom: 1rem;
}
.boton-borrar {
font-size: 1.2rem;
padding: .5rem 1rem;
background-color: var(--light-red);
color: var(--black);
border-radius: .6rem;
text-align: center;
overflow: hidden;
border: none;
cursor: pointer;
user-select: none;
}
/* button-54 https://getcssscan.com/css-buttons-examples*/
.boton-alternar {
font-size: 1.6rem;
cursor: pointer;
border: 3px solid;
padding: 0.1rem;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.boton-alternar:active {
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
}
/* The Modal (background) */
#boton__legal {
cursor: pointer;
}
.github-logo {
width: 1.6rem;
height: 1.6rem;
}
.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.7); /* Black w/ opacity */
}
.modal-header {
color: var(--black);
padding: 0 0 2rem 0;
}
/* Modal Content/Box */
.modal-content {
border-radius: .6rem;
background-color: var(--main);
margin: 10% auto;
padding: 2rem;
border: 5px solid var(--dark-green);
width: clamp(50%, 70%, 80%);
}
.modal-body{
padding: 0 2rem;
color: var(--black);
}
.modal-body a{
color: var(--black);
border-bottom: 2px var(--grey) solid;
}
.modal-body li {
margin-bottom: 1rem;
}
.modal-body p {
text-align: center;
}
.modal__boton__cerrar {
color: var(--black);
float: right;
font-size: 2.8rem;
font-weight: bold;
}
.modal__boton__cerrar:focus {
color: var(--dark-red);
text-decoration: none;
cursor: pointer;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 1rem;
position: relative;
}
.boton__entendido {
float: none;
position: absolute;
top: 10px;
padding: 0 2rem;
text-transform: uppercase;
border: 5px var(--light-green) solid;
background-color: var(--white);
}
/* barra sobre transmisiones */
.nombre-barra {
position: absolute;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
top: 1px;
text-align: center;
font-size: clamp(.8rem, 1rem, 1.6rem);
}
.nombre-barra a,
.nombre-barra span {
padding: 0 .5rem;
border-radius: .6rem;
background: var(--black);
opacity: .6;
}
/* flip listado canales */
.flip-container {
perspective: 1000px;
}
.flip-container.hover .flipper {
transform: rotateY(180deg);
}
.flip-container,
.front,
.back,
.flipper {
height: 100%;
width: 100%;
}
.flipper {
transition: 0.6s;
transform-style: preserve-3d;
position: relative;
}
.front,
.back {
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
.front {
z-index: 2;
transform: rotateY(0deg);
}
.back {
transform: rotateY(180deg);
}
/* footer */
footer {
display: flex;
justify-content: center;
align-items: center;
word-wrap: break-word;
height: 5vh;
padding: 1rem 0;
margin-top: auto;
background: var(--black);
border-top: 1px solid var(--secondary);
font-size: clamp(.4rem, 1.2rem, 1.6rem);
}
footer span {
display: block;
cursor: default;
padding: 0 .5rem;
}
/* alerta de no javascript */
.no-js {
z-index: 3000;
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
overflow: hidden;
background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}
.no-js p {
color: var(--black);
font-size: clamp(0.5rem, 10vw, 3rem);
margin: 0 10%;
}
/* animacion de fondo cuando noscript esta activo */
.wave,
.wave::before,
.wave::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 250vw;
height: 250vw;
margin-left: -125vw;
transform-origin: 50% 50%;
border-radius: 38% 42%;
animation: spin 36s infinite linear;
background: linear-gradient(to bottom, rgba(102, 32, 41, 0.2), transparent);
}
.wave::before {
width: 105%;
height: 95%;
margin-top: -125vw;
transform-origin: 49% 51%;
border-radius: 40% 38%;
animation: spin 20s infinite linear;
}
.wave::after {
width: 102%;
height: 98%;
margin-top: -125vw;
transform-origin: 51% 49%;
border-radius: 48% 42%;
animation: spin 40s infinite linear;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@media (min-width: 1024px) {
.grid {
display: grid;
grid-template-rows: none;
grid-template-columns: 3fr 1fr;
column-gap: 2rem;
}
.canales-container {
display: grid;
grid-template-rows: 6rem 1fr 10rem;
}
}
/* Chikito */
@media (max-width: 340px) {
body {
font-size: .8rem;
}
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-rows: 1fr;
grid-template-columns: none;
}
.boton__canal{
font-size: 1rem;
}
footer {
flex-direction: column;
height: 35vh;
padding-top: 1rem;
}
}
@media (orientation:landscape) and (max-width:1024px) {
.canales-container {
height: 100%;
padding: 0 2rem;
display: grid;
grid-template-rows: 6rem 1fr 10rem;
}
.boton-alternar,
.boton-borrar {
font-size: 0.875rem;
padding: .5rem .5rem;
}
.grid {
display: grid;
grid-template-rows: none;
grid-template-columns: 3fr 1fr;
column-gap: 2rem;
}
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: none;
gap: 1rem;
width: 100%;
height: 100%;
scrollbar-width: thin;
overflow-y: scroll;
}
.opciones-container{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: .5rem 0;
}
}
@media (hover:hover) {
a:hover {
color: var(--white);
border-bottom: 2px var(--light-green) dotted;
}
.boton__canal:hover {
border: 1px solid var(--white);
background-color: var(--grey);
cursor: pointer;
}
.boton-borrar:hover {
background-color: var(--dark-red);
color: var(--white);
}
.nombre-barra a:hover,
.nombre-barra span:hover {
opacity: 1;
}
.modal-body a:hover{
color: var(--black);
border-bottom: 2px var(--dark-green) solid;
}
.modal__boton__cerrar:hover{
color: var(--dark-red);
text-decoration: none;
cursor: pointer;
}
.boton__entendido:hover{
color: var(--white);
background-color: var(--light-green);
}
} | assets/css/style.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');
* {
border: 0;
outline: 0;
-webkit-font-smoothing: subpixel-antialiased;
-moz-font-smoothing: subpixel-antialiased;
-ms-font-smoothing: subpixel-antialiased;
-o-font-smoothing: subpixel-antialiased;
text-rendering: optimizeLegibility;
}
*,
*:before,
*:after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0;
margin: 0;
}
:root {
--main: #ACBDCE;
--secondary: #38444d;
--bg: #051320;
--dark-green: #32573E;
--light-green: #72c98c;
--white: #ffffff;
--black: #000000;
--grey: #9C9C9C;
--dark-red: #7e0909;
--light-red: #E89292;
}
html {
font-size: 62.5%;
}
body {
color: var(--main);
background: var(--bg);
font-family: 'Poppins', sans-serif, Arial;
font-size: 1.6rem; /* 1rem = 10px */
display: flex;
flex-direction: column;
height: 100vh;
}
h1,h2{
display: block;
margin: 0;
}
h1 {
font-size: 2.4rem;
}
h2 {
font-size: 2rem;
}
a {
color: var(--grey);
border-bottom: 1px var(--grey) dotted;
text-decoration: none;
}
.sombra {
box-shadow:
0.8px 0.8px 2.7px rgba(0, 0, 0, 0.062),
2.1px 2.1px 6.9px rgba(0, 0, 0, 0.089),
4.3px 4.3px 14.2px rgba(0, 0, 0, 0.111),
8.8px 8.8px 29.2px rgba(0, 0, 0, 0.138),
24px 24px 80px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:
0.8px 0.8px 2.7px rgba(0, 0, 0, 0.062),
2.1px 2.1px 6.9px rgba(0, 0, 0, 0.089),
4.3px 4.3px 14.2px rgba(0, 0, 0, 0.111),
8.8px 8.8px 29.2px rgba(0, 0, 0, 0.138),
24px 24px 80px rgba(0, 0, 0, 0.2);
}
/* filtro canales activo */
.is-hidden {
display: none;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-principal{
padding: 1rem 2rem;
}
/* Modo celu */
.grid {
display: grid;
grid-template-rows: 1fr 2.5fr;
padding: 0 2rem 2rem 2rem;
row-gap: 2rem;
}
.video-container {
position: relative;
height: 0;
padding-bottom: 56.25%;
padding-top: 0;
border-radius: 1rem;
overflow: hidden;
border: 1px solid var(--secondary);
}
.recordatorio {
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-weight: 100;
font-size: calc(1.6rem + 2vw);
text-transform: uppercase;
color: var(--light-green);
padding: 0 2rem;
}
.transmision {
z-index: 1;
}
.transmision,
.video-container iframe,
.m3u-stream,
.video-container video {
position: absolute;
border: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
}
.canales-container {
height: 100%;
width: 100%;
padding: 0 2rem;
display: grid;
grid-template-rows: 6rem 1fr 10rem;
row-gap: 1rem;
border: 1px solid var(--secondary);
border-radius: 1rem;
}
.header-secundario {
padding: 1rem 0;
display: flex;
flex-direction: column;
gap: .5rem;
justify-content: space-between;
align-items: center;
}
.filtro {
width: 100%;
border-radius: .6rem;
padding-left: .5rem;
height: 2rem;
border: 1px var(--main) solid;
}
/* listado canales */
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-columns: minmax(min-content, 1fr) minmax(min-content, 1fr);
gap: 1rem;
width: 100%;
height: 100%;
scrollbar-width: thin;
overflow-y: scroll;
}
/* btn canales */
.boton__canal {
border: 1px solid var(--black);
text-align: left;
font-size: 1.6rem;
border-radius: .6rem;
padding: .7rem;
}
.activo {
background-color: var(--dark-green);
border: 1px solid var(--light-green);
color: var(--white);
}
.opciones-container{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
height: 100%;
padding-bottom: 1rem;
}
.boton-borrar {
font-size: 1.2rem;
padding: .5rem 1rem;
background-color: var(--light-red);
color: var(--black);
border-radius: .6rem;
text-align: center;
overflow: hidden;
border: none;
cursor: pointer;
user-select: none;
}
/* button-54 https://getcssscan.com/css-buttons-examples*/
.boton-alternar {
font-size: 1.6rem;
cursor: pointer;
border: 3px solid;
padding: 0.1rem;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.boton-alternar:active {
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
}
/* The Modal (background) */
#boton__legal {
cursor: pointer;
}
.github-logo {
width: 1.6rem;
height: 1.6rem;
}
.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.7); /* Black w/ opacity */
}
.modal-header {
color: var(--black);
padding: 0 0 2rem 0;
}
/* Modal Content/Box */
.modal-content {
border-radius: .6rem;
background-color: var(--main);
margin: 10% auto;
padding: 2rem;
border: 5px solid var(--dark-green);
width: clamp(50%, 70%, 80%);
}
.modal-body{
padding: 0 2rem;
color: var(--black);
}
.modal-body a{
color: var(--black);
border-bottom: 2px var(--grey) solid;
}
.modal-body li {
margin-bottom: 1rem;
}
.modal-body p {
text-align: center;
}
.modal__boton__cerrar {
color: var(--black);
float: right;
font-size: 2.8rem;
font-weight: bold;
}
.modal__boton__cerrar:focus {
color: var(--dark-red);
text-decoration: none;
cursor: pointer;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 1rem;
position: relative;
}
.boton__entendido {
float: none;
position: absolute;
top: 10px;
padding: 0 2rem;
text-transform: uppercase;
border: 5px var(--light-green) solid;
background-color: var(--white);
}
/* barra sobre transmisiones */
.nombre-barra {
position: absolute;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
top: 1px;
text-align: center;
font-size: clamp(.8rem, 1rem, 1.6rem);
}
.nombre-barra a,
.nombre-barra span {
padding: 0 .5rem;
border-radius: .6rem;
background: var(--black);
opacity: .6;
}
/* flip listado canales */
.flip-container {
perspective: 1000px;
}
.flip-container.hover .flipper {
transform: rotateY(180deg);
}
.flip-container,
.front,
.back,
.flipper {
height: 100%;
width: 100%;
}
.flipper {
transition: 0.6s;
transform-style: preserve-3d;
position: relative;
}
.front,
.back {
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
.front {
z-index: 2;
transform: rotateY(0deg);
}
.back {
transform: rotateY(180deg);
}
/* footer */
footer {
display: flex;
justify-content: center;
align-items: center;
word-wrap: break-word;
height: 5vh;
padding: 1rem 0;
margin-top: auto;
background: var(--black);
border-top: 1px solid var(--secondary);
font-size: clamp(.4rem, 1.2rem, 1.6rem);
}
footer span {
display: block;
cursor: default;
padding: 0 .5rem;
}
/* alerta de no javascript */
.no-js {
z-index: 3000;
position: fixed;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
overflow: hidden;
background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}
.no-js p {
color: var(--black);
font-size: clamp(0.5rem, 10vw, 3rem);
margin: 0 10%;
}
/* animacion de fondo cuando noscript esta activo */
.wave,
.wave::before,
.wave::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 250vw;
height: 250vw;
margin-left: -125vw;
transform-origin: 50% 50%;
border-radius: 38% 42%;
animation: spin 36s infinite linear;
background: linear-gradient(to bottom, rgba(102, 32, 41, 0.2), transparent);
}
.wave::before {
width: 105%;
height: 95%;
margin-top: -125vw;
transform-origin: 49% 51%;
border-radius: 40% 38%;
animation: spin 20s infinite linear;
}
.wave::after {
width: 102%;
height: 98%;
margin-top: -125vw;
transform-origin: 51% 49%;
border-radius: 48% 42%;
animation: spin 40s infinite linear;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
@media (min-width: 1024px) {
.grid {
display: grid;
grid-template-rows: none;
grid-template-columns: 3fr 1fr;
column-gap: 2rem;
}
.canales-container {
display: grid;
grid-template-rows: 6rem 1fr 10rem;
}
}
/* Chikito */
@media (max-width: 340px) {
body {
font-size: .8rem;
}
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-rows: 1fr;
grid-template-columns: none;
}
.boton__canal{
font-size: 1rem;
}
footer {
flex-direction: column;
height: 35vh;
padding-top: 1rem;
}
}
@media (orientation:landscape) and (max-width:1024px) {
.canales-container {
height: 100%;
padding: 0 2rem;
display: grid;
grid-template-rows: 6rem 1fr 10rem;
}
.boton-alternar,
.boton-borrar {
font-size: 0.875rem;
padding: .5rem .5rem;
}
.grid {
display: grid;
grid-template-rows: none;
grid-template-columns: 3fr 1fr;
column-gap: 2rem;
}
.lista__botones,
.lista__botones__m3u8 {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: none;
gap: 1rem;
width: 100%;
height: 100%;
scrollbar-width: thin;
overflow-y: scroll;
}
.opciones-container{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: .5rem 0;
}
}
@media (hover:hover) {
a:hover {
color: var(--white);
border-bottom: 2px var(--light-green) dotted;
}
.boton__canal:hover {
border: 1px solid var(--white);
background-color: var(--grey);
cursor: pointer;
}
.boton-borrar:hover {
background-color: var(--dark-red);
color: var(--white);
}
.nombre-barra a:hover,
.nombre-barra span:hover {
opacity: 1;
}
.modal-body a:hover{
color: var(--black);
border-bottom: 2px var(--dark-green) solid;
}
.modal__boton__cerrar:hover{
color: var(--dark-red);
text-decoration: none;
cursor: pointer;
}
.boton__entendido:hover{
color: var(--white);
background-color: var(--light-green);
}
} | 0.339828 | 0.105948 |
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100&display=swap');
@font-face {
font-family: calcu;
src: url(digital-7.ttf);
}
:root{
--corbackground: #33313d;
--corpadrao: #272727;
--corletter: white;
--fontpadrao: 'Smooch Sans', sans-serif;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: var(--corbackground);
}
.title{
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 6em;
margin-bottom: 10px;
text-align: center;
font-weight: bold;
text-shadow: 1px 1px black;
font-variant: small-caps;
font-family: var(--fontpadrao);
height: 60px;
padding-bottom: 20px;
}
.container{
background-color: var(--corpadrao);
padding: 30px;
border-radius: 5px;
width: 400px;
position: relative;
border: 1px solid silver;
}
.display{
height: 50px;
text-align: right;
padding-right:3px;
margin-bottom: 10px;
font-size: 45px;
width: 100%;
border-radius: 3px;
border: 1px solid black;
color: black;
font-family: calcu;
outline: none;
background-color: white;
}
.calculadoraGrid{
position: relative;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4px;
}
.btn{
height: 60px;
width: 100%;
outline: none;
border: none;
background-color: var(--corbackground);
font-size: 1.3em;
border-radius: 700px;
font-family: sans-serif;
color: white;
cursor: pointer;
transition-duration: 200ms;
}
.btn:hover{
background-color: #464052;
}
.btnEq{
background-color: rgb(219, 219, 124);
color: black;
}
.btnEq:hover{
background-color: rgb(209, 209, 83);
}
.btnClear{
background-color: brown;
color: white;
}
.btnClear:hover{
background-color: rgb(151, 39, 39);
}
.red{
color: red;
}
.btnGray:hover{
background-color: #38383a;
}
.by{
position: absolute;
color: rgba(255, 255, 255, 0.664);
bottom: -5%;
font-size: 14px;
right: 8%;
}
.by a{
color: rgba(255, 255, 255, 0.664);
font-style: italic;
text-decoration: none;
}
.by a:hover{
text-decoration: underline;
} | exercicios/Calculadora/style.css | @charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100&display=swap');
@font-face {
font-family: calcu;
src: url(digital-7.ttf);
}
:root{
--corbackground: #33313d;
--corpadrao: #272727;
--corletter: white;
--fontpadrao: 'Smooch Sans', sans-serif;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: var(--corbackground);
}
.title{
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 6em;
margin-bottom: 10px;
text-align: center;
font-weight: bold;
text-shadow: 1px 1px black;
font-variant: small-caps;
font-family: var(--fontpadrao);
height: 60px;
padding-bottom: 20px;
}
.container{
background-color: var(--corpadrao);
padding: 30px;
border-radius: 5px;
width: 400px;
position: relative;
border: 1px solid silver;
}
.display{
height: 50px;
text-align: right;
padding-right:3px;
margin-bottom: 10px;
font-size: 45px;
width: 100%;
border-radius: 3px;
border: 1px solid black;
color: black;
font-family: calcu;
outline: none;
background-color: white;
}
.calculadoraGrid{
position: relative;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4px;
}
.btn{
height: 60px;
width: 100%;
outline: none;
border: none;
background-color: var(--corbackground);
font-size: 1.3em;
border-radius: 700px;
font-family: sans-serif;
color: white;
cursor: pointer;
transition-duration: 200ms;
}
.btn:hover{
background-color: #464052;
}
.btnEq{
background-color: rgb(219, 219, 124);
color: black;
}
.btnEq:hover{
background-color: rgb(209, 209, 83);
}
.btnClear{
background-color: brown;
color: white;
}
.btnClear:hover{
background-color: rgb(151, 39, 39);
}
.red{
color: red;
}
.btnGray:hover{
background-color: #38383a;
}
.by{
position: absolute;
color: rgba(255, 255, 255, 0.664);
bottom: -5%;
font-size: 14px;
right: 8%;
}
.by a{
color: rgba(255, 255, 255, 0.664);
font-style: italic;
text-decoration: none;
}
.by a:hover{
text-decoration: underline;
} | 0.476823 | 0.074332 |
body{
font-family: 'Nunito', sans-serif;
background-color: black;
}
.main{
border-radius: 10px;
box-shadow: 1px 1px 1px 10px #5C626E;
background-color: white;
width: 900px;
overflow: auto;
}
#head{
font-family: 'Allerta Stencil', sans-serif;
font-size: 15vh;
text-shadow: 2px 2px 2px black;
}
input{
font-family: 'Nunito', sans-serif;
background: #f5f5f5;
border: none;
width: 85%;
letter-spacing: 2px;
color: #5C626E;
height: 50px;
padding-left: 40px;
font-weight: bold;
margin-left: 20px;
float: left;
box-shadow: 2px 2px 5px black;
margin-bottom: 30px;
font-size: 20px;
}
.text{
font-family: 'Nunito', sans-serif;
background: #f5f5f5;
border: none;
width: 90%;
letter-spacing: 2px;
color: #5C626E;
height: 40px;
margin-left: 20px;
font-weight: bold;
box-shadow: 2px 2px 5px black;
padding-top: 10px;
float: left;
margin-bottom: 24px;
font-size: 20px;
}
#output input{
width: 10%;
height: 25px;
float: left;
box-shadow: none;
margin-left: -10px;
}
#done{
font-size: 55px;
color: #64dd17 ;
float: left;
margin-left: 15px;
text-shadow: 2px 2px 2px black;
}
#done:hover{
cursor: pointer;
color: #76ff03 ;
transition: 0.4s;
}
#op{
text-align: left;
}
.fa.fa-minus-circle{
float: left;
font-size: 53px;
margin-left: 13px;
color: #d50000 ;
text-shadow: 2px 2px 2px black;
}
.fa.fa-minus-circle:hover{
cursor: pointer;
color: #FF1744;
transition: 0.4s;
}
.fa.fa-bars{
font-size: 15vh;
text-shadow: 2px 2px 2px black;
}
#footer{
color:white;
}
.fa.fa-minus-circle:hover,#done:hover{
animation-name:shake;
animation-duration: 0.3s;
animation-iteration-count: infinite;
}
@keyframes shake{
0%{
transform: translate(-2px,-2px);
}
25%{
transform: translate(2px,2px);
}
50%{
transform: translate(2px,-2px);
}
75%{
transform: translate(-2px,2px);
}
100%{
transform: translate(-2px,-2px);
}
} | subfiles/styling.css | body{
font-family: 'Nunito', sans-serif;
background-color: black;
}
.main{
border-radius: 10px;
box-shadow: 1px 1px 1px 10px #5C626E;
background-color: white;
width: 900px;
overflow: auto;
}
#head{
font-family: 'Allerta Stencil', sans-serif;
font-size: 15vh;
text-shadow: 2px 2px 2px black;
}
input{
font-family: 'Nunito', sans-serif;
background: #f5f5f5;
border: none;
width: 85%;
letter-spacing: 2px;
color: #5C626E;
height: 50px;
padding-left: 40px;
font-weight: bold;
margin-left: 20px;
float: left;
box-shadow: 2px 2px 5px black;
margin-bottom: 30px;
font-size: 20px;
}
.text{
font-family: 'Nunito', sans-serif;
background: #f5f5f5;
border: none;
width: 90%;
letter-spacing: 2px;
color: #5C626E;
height: 40px;
margin-left: 20px;
font-weight: bold;
box-shadow: 2px 2px 5px black;
padding-top: 10px;
float: left;
margin-bottom: 24px;
font-size: 20px;
}
#output input{
width: 10%;
height: 25px;
float: left;
box-shadow: none;
margin-left: -10px;
}
#done{
font-size: 55px;
color: #64dd17 ;
float: left;
margin-left: 15px;
text-shadow: 2px 2px 2px black;
}
#done:hover{
cursor: pointer;
color: #76ff03 ;
transition: 0.4s;
}
#op{
text-align: left;
}
.fa.fa-minus-circle{
float: left;
font-size: 53px;
margin-left: 13px;
color: #d50000 ;
text-shadow: 2px 2px 2px black;
}
.fa.fa-minus-circle:hover{
cursor: pointer;
color: #FF1744;
transition: 0.4s;
}
.fa.fa-bars{
font-size: 15vh;
text-shadow: 2px 2px 2px black;
}
#footer{
color:white;
}
.fa.fa-minus-circle:hover,#done:hover{
animation-name:shake;
animation-duration: 0.3s;
animation-iteration-count: infinite;
}
@keyframes shake{
0%{
transform: translate(-2px,-2px);
}
25%{
transform: translate(2px,2px);
}
50%{
transform: translate(2px,-2px);
}
75%{
transform: translate(-2px,2px);
}
100%{
transform: translate(-2px,-2px);
}
} | 0.453746 | 0.129183 |
.activitysearch .background {
background-image: url("https://firebasestorage.googleapis.com/v0/b/equiomentlist.appspot.com/o/images%2Fbackgrounds%2Fact-bg.jpg?alt=media&token=<PASSWORD>");
background-size: cover;
height: 100vh;
width: 100vw;
background-position: center top;
z-index: -1;
}
.activitysearch .container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: -80px;
height: 100vh;
width: 100vw;
position: relative;
}
.activitysearch .title {
color: white;
text-shadow: 2px 2px 4px rgba(203, 204, 188, 0.959);
font-weight: bold;
margin-top: 300px;
width: fit-content;
font-size: 50px;
position: relative;
height: fit-content;
}
.activitysearch .formcontainer {
text-align: center;
position: relative;
margin-top: 70px;
height: fit-content;
width: 850px;
background-color: white;
box-shadow: 0 20px 22px 0 rgba(0,0,0,0.12);
border: solid 1px #f5f5f5;
border-radius: 12px;
padding: 7px;
}
.activitysearch .formcontainer form {
display: flex;
flex-direction: column;
align-items: center;
}
button:focus {
outline: none;
}
.activitysearch .formcontainer form .select-inputs {
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 10px;
margin-bottom: 0px;
}
.activitysearch .destination-input, .activitysearch .season-input {
margin-right: 10px;
margin-bottom: 0px;
}
.activitysearch .category-input {
margin-right: 20px;
margin-bottom: 0px;
}
.activitysearch .activity-search-button {
flex: 1;
height: 55px;
width: 100px;
border-radius: 20px;
border-style: solid;
border-width: thin;
color: white;
border-color: transparent;
cursor: pointer;
background-color: #ff9c57;
-webkit-box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
-moz-box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
}
.activitysearch .activity-search-button:hover {
background-color: #ffb75a;
}
.activitysearch .contentcontainer {
background-color: white;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding-top: 40px;
padding-bottom: 40px;
}
.activitysearch .results-title {
text-align: center;
margin-bottom: 30px;
}
.activitysearch .activities-results-container {
display: flex;
flex-direction: column;
align-items: center;
}
.activitysearch .results-before-pagination {
margin-bottom: 50px;
}
.activitysearch .activities-results-container form {
display: flex;
flex-direction: row;
justify-content: start;
}
.activitysearch .set-fav-act-button-con {
margin-left: 50px;
}
.activitysearch .activitieslistslist {
display: flex;
flex-direction: column;
align-items: center;
}
.activitysearch .container-per-activity {
background-color: rgba(120, 116, 120, 0.219);
height: 180px;
width: 870px;
border-radius: 20px;
padding: 25px;
display: flex;
flex-direction: row;
justify-content: start;
margin-bottom: 20px;
}
.activitysearch .activity-container-checked {
background-color: rgba(138, 202, 154, 0.219);
height: 180px;
width: 870px;
border-radius: 20px;
padding: 25px;
display: flex;
flex-direction: row;
justify-content: start;
margin-bottom: 20px;
}
.activitysearch .activitycontent {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
width: 850px;
max-height: 150px;
}
.activitysearch .activity-picture-and-details {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}
.activitysearch .activity-picture {
width: 180px;
max-height: 120px;
border-radius: 10px;
}
.activitysearch .activity-details {
margin-left: 10px;
width: 600px;
padding: 15px;
}
.activitysearch .activity-metadata {
display: flex;
justify-content: space-between;
font-size: 12px;
margin-bottom: 20px;
}
.activitysearch .activity-name {
margin-bottom: 20px;
}
.activitysearch .activity-name .activity-link {
font-weight: bolder;
font-size: 20px;
color: black;
}
.activitysearch .activity-name .activity-link:hover {
text-decoration: none;
color: rgb(23, 126, 74);
}
.activitysearch .activity-metadata-item span {
text-decoration: underline;
}
.activitysearch .submit-fav-act-button-container {
position: sticky;
position: -webkit-sticky;
height: 100px;
width: 180px;
top: 0;
}
.activitysearch .submit-fav-act-button {
height: 50px;
width: 180px;
margin-bottom: 10px;
font-size: 14px;
padding: 5px;
font-weight: bold;
border-radius: 20px;
border-style: solid;
border-width: thin;
color: white;
border-color: transparent;
cursor: pointer;
background-color: rgb(7, 59, 7);
box-shadow: 0px 2px 2px 0px rgba(120,116,120,0.59);
margin-top: 120px;
}
.activitysearch .submit-fav-act-button:hover {
background-color: rgb(12, 109, 12);
}
.activitysearch .activity-success-message {
color: rgb(12, 109, 12);
font-size: 12px;
text-align: center;
}
.activitysearch .error-no-activities {
color: rgb(179, 8, 8);
font-size: 12px;
text-align: center;
}
.activitysearch .search-error-message {
width: 100px;
color: rgb(179, 8, 8);
font-size: 12px;
text-align: center;
}
@media only screen and (max-width: 800px) {
.activitysearch .background {
height: fit-content;
}
.activitysearch .container {
height: fit-content;
padding-bottom: 20px;
}
.activitysearch .container-per-activity, .activitysearch .activity-container-checked {
height: 180px;
width: 550px;
padding: 20px;
}
.activitysearch .activitycontent {
width: 550px;
}
.activitysearch .activity-description-short {
display: none;
}
.activitysearch .activity-metadata {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 0px;
}
.activitysearch .activity-metadata-item {
margin-bottom: 6px;
}
.activitysearch .set-fav-act-button-con {
margin-left: 20px;
}
.activitysearch .formcontainer {
width: 400px;
padding: 10px;
}
.activitysearch .formcontainer form .select-inputs {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 10px;
margin-bottom: 0px;
}
.activitysearch .destination-input, .activitysearch .season-input, .activitysearch .category-input {
margin-bottom: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 600px) {
.activitysearch .title {
font-size: 40px;
}
.activitysearch .formcontainer {
width: 320px;
}
.activitysearch .activities-results-container form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.activitysearch .set-fav-act-button-con {
margin-left: 0px;
}
.activitysearch .submit-fav-act-button-container {
position: relative;
height: 80px;
width: 180px;
top: 0;
}
.activitysearch .submit-fav-act-button {
width: 180px;
margin-bottom: 10px;
margin-top: 10px;
}
.activitysearch .container-per-activity, .activitysearch .activity-container-checked {
height: 300px;
width: 270px;
padding: 15px;
}
.activitysearch .activitycontent {
width: 270px;
max-height: 300px;
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}
.activitysearch .activity-details {
margin-left: 0px;
width: 200px;
padding: 10px;
}
.activitysearch .activity-picture-and-details {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
} | src/components/activity/ActivitySearch/ActivitySearch.css | .activitysearch .background {
background-image: url("https://firebasestorage.googleapis.com/v0/b/equiomentlist.appspot.com/o/images%2Fbackgrounds%2Fact-bg.jpg?alt=media&token=<PASSWORD>");
background-size: cover;
height: 100vh;
width: 100vw;
background-position: center top;
z-index: -1;
}
.activitysearch .container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: -80px;
height: 100vh;
width: 100vw;
position: relative;
}
.activitysearch .title {
color: white;
text-shadow: 2px 2px 4px rgba(203, 204, 188, 0.959);
font-weight: bold;
margin-top: 300px;
width: fit-content;
font-size: 50px;
position: relative;
height: fit-content;
}
.activitysearch .formcontainer {
text-align: center;
position: relative;
margin-top: 70px;
height: fit-content;
width: 850px;
background-color: white;
box-shadow: 0 20px 22px 0 rgba(0,0,0,0.12);
border: solid 1px #f5f5f5;
border-radius: 12px;
padding: 7px;
}
.activitysearch .formcontainer form {
display: flex;
flex-direction: column;
align-items: center;
}
button:focus {
outline: none;
}
.activitysearch .formcontainer form .select-inputs {
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 10px;
margin-bottom: 0px;
}
.activitysearch .destination-input, .activitysearch .season-input {
margin-right: 10px;
margin-bottom: 0px;
}
.activitysearch .category-input {
margin-right: 20px;
margin-bottom: 0px;
}
.activitysearch .activity-search-button {
flex: 1;
height: 55px;
width: 100px;
border-radius: 20px;
border-style: solid;
border-width: thin;
color: white;
border-color: transparent;
cursor: pointer;
background-color: #ff9c57;
-webkit-box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
-moz-box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
box-shadow: -2px -2px 16px -1px rgba(120,116,120,0.59);
}
.activitysearch .activity-search-button:hover {
background-color: #ffb75a;
}
.activitysearch .contentcontainer {
background-color: white;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding-top: 40px;
padding-bottom: 40px;
}
.activitysearch .results-title {
text-align: center;
margin-bottom: 30px;
}
.activitysearch .activities-results-container {
display: flex;
flex-direction: column;
align-items: center;
}
.activitysearch .results-before-pagination {
margin-bottom: 50px;
}
.activitysearch .activities-results-container form {
display: flex;
flex-direction: row;
justify-content: start;
}
.activitysearch .set-fav-act-button-con {
margin-left: 50px;
}
.activitysearch .activitieslistslist {
display: flex;
flex-direction: column;
align-items: center;
}
.activitysearch .container-per-activity {
background-color: rgba(120, 116, 120, 0.219);
height: 180px;
width: 870px;
border-radius: 20px;
padding: 25px;
display: flex;
flex-direction: row;
justify-content: start;
margin-bottom: 20px;
}
.activitysearch .activity-container-checked {
background-color: rgba(138, 202, 154, 0.219);
height: 180px;
width: 870px;
border-radius: 20px;
padding: 25px;
display: flex;
flex-direction: row;
justify-content: start;
margin-bottom: 20px;
}
.activitysearch .activitycontent {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
width: 850px;
max-height: 150px;
}
.activitysearch .activity-picture-and-details {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}
.activitysearch .activity-picture {
width: 180px;
max-height: 120px;
border-radius: 10px;
}
.activitysearch .activity-details {
margin-left: 10px;
width: 600px;
padding: 15px;
}
.activitysearch .activity-metadata {
display: flex;
justify-content: space-between;
font-size: 12px;
margin-bottom: 20px;
}
.activitysearch .activity-name {
margin-bottom: 20px;
}
.activitysearch .activity-name .activity-link {
font-weight: bolder;
font-size: 20px;
color: black;
}
.activitysearch .activity-name .activity-link:hover {
text-decoration: none;
color: rgb(23, 126, 74);
}
.activitysearch .activity-metadata-item span {
text-decoration: underline;
}
.activitysearch .submit-fav-act-button-container {
position: sticky;
position: -webkit-sticky;
height: 100px;
width: 180px;
top: 0;
}
.activitysearch .submit-fav-act-button {
height: 50px;
width: 180px;
margin-bottom: 10px;
font-size: 14px;
padding: 5px;
font-weight: bold;
border-radius: 20px;
border-style: solid;
border-width: thin;
color: white;
border-color: transparent;
cursor: pointer;
background-color: rgb(7, 59, 7);
box-shadow: 0px 2px 2px 0px rgba(120,116,120,0.59);
margin-top: 120px;
}
.activitysearch .submit-fav-act-button:hover {
background-color: rgb(12, 109, 12);
}
.activitysearch .activity-success-message {
color: rgb(12, 109, 12);
font-size: 12px;
text-align: center;
}
.activitysearch .error-no-activities {
color: rgb(179, 8, 8);
font-size: 12px;
text-align: center;
}
.activitysearch .search-error-message {
width: 100px;
color: rgb(179, 8, 8);
font-size: 12px;
text-align: center;
}
@media only screen and (max-width: 800px) {
.activitysearch .background {
height: fit-content;
}
.activitysearch .container {
height: fit-content;
padding-bottom: 20px;
}
.activitysearch .container-per-activity, .activitysearch .activity-container-checked {
height: 180px;
width: 550px;
padding: 20px;
}
.activitysearch .activitycontent {
width: 550px;
}
.activitysearch .activity-description-short {
display: none;
}
.activitysearch .activity-metadata {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 0px;
}
.activitysearch .activity-metadata-item {
margin-bottom: 6px;
}
.activitysearch .set-fav-act-button-con {
margin-left: 20px;
}
.activitysearch .formcontainer {
width: 400px;
padding: 10px;
}
.activitysearch .formcontainer form .select-inputs {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 10px;
margin-bottom: 0px;
}
.activitysearch .destination-input, .activitysearch .season-input, .activitysearch .category-input {
margin-bottom: 10px;
margin-right: 0px;
}
}
@media only screen and (max-width: 600px) {
.activitysearch .title {
font-size: 40px;
}
.activitysearch .formcontainer {
width: 320px;
}
.activitysearch .activities-results-container form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.activitysearch .set-fav-act-button-con {
margin-left: 0px;
}
.activitysearch .submit-fav-act-button-container {
position: relative;
height: 80px;
width: 180px;
top: 0;
}
.activitysearch .submit-fav-act-button {
width: 180px;
margin-bottom: 10px;
margin-top: 10px;
}
.activitysearch .container-per-activity, .activitysearch .activity-container-checked {
height: 300px;
width: 270px;
padding: 15px;
}
.activitysearch .activitycontent {
width: 270px;
max-height: 300px;
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}
.activitysearch .activity-details {
margin-left: 0px;
width: 200px;
padding: 10px;
}
.activitysearch .activity-picture-and-details {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
} | 0.620392 | 0.105487 |
body {
margin: 0;
background: #fafafa;
}
body,h1,h2,p,a,input {
color: #555;
font-family: Consolas, Arial;
text-decoration: none;
}
ul {
margin: 0;
padding: 0;
}
/* header styles */
header {
width: 100%;
padding: 20px;
text-align: right;
background: white;
box-sizing: border-box;
box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
}
header a {
margin-left: 10px;
border-bottom: 2px solid #ffe100;
padding: 4px;
cursor: pointer;
}
header a:hover {
background: #ffe100;
color: black;
}
/* content styles */
.content {
max-width: 800px;
margin: 40px auto 0;
}
/* request list styles */
.request-list li {
/* padding: 20px; */
margin: 10px auto;
list-style-type: none;
background: white;
border-radius: 10px;
box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
}
.request-list .votes {
position: relative;
top: -5px;
z-index: 0;
}
.request-list .upvote {
cursor: pointer;
border-radius: 50%;
}
.request-list .upvote:active {
color: black;
background: #ffe100;
}
/* modal styles */
.modal {
width: 300px;
padding: 30px;
margin: 100px auto;
border-radius: 10px;
background: white;
box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
text-align: center;
}
.new-request {
width: 100%;
height: 100%;
position: fixed;
background: rgba(0,0,0,0.4);
z-index: 1;
display: none;
}
.new-request.open {
display: block;
}
/* form element styles */
input {
display: block;
margin: 8px 0;
padding: 8px 2px;
border-width: 0 0 2px 0;
width: 100%;
font-size: 15px;
outline: none;
}
button {
margin-top: 15px;
padding: 8px 12px;
background: #ffe100;
border: 0;
font-weight: bold;
font-family: inherit;
cursor: pointer;
outline: none;
font-size: 15px;
}
/* auth styles */
.auth {
width: 100%;
height: 100%;
position: fixed;
background: #fafafa;
display: none;
z-index: 1;
}
.auth.open {
display: block;
}
.auth a {
text-decoration: underline;
cursor: pointer;
}
.auth .modal {
display: none;
}
.auth .modal.active {
display: block;
}
/* notification */
.notification {
width: 200px;
padding: 20px;
position: fixed;
left: 50%;
margin-left: -120px;
top: 0;
border-radius: 0 0 5px 5px;
background: #ec2d2d;
text-align: center;
color: #fff;
margin-top: -100%;
transition: all 0.4s;
}
.notification.active {
margin-top: 0;
}
.logo {
height: 100px;
}
.hlogo {
height: 50px;
}
.navbar {
display: flex;
justify-content: space-between;
}
.left {
padding-top: 15px;
}
p.error {
color: orangered;
font-weight: bold;
font-size: 16px;
}
.document {
width: 100%;
display: flex;
justify-content: flex-start;
/* border-radius: 16px; */
}
.section-1 {
width: 15%;
}
.section-2 {
width: 65%;
padding: 10px;
}
.section-header {
display: flex;
justify-content: space-between;
}
.day {
font-size: 25px;
font-weight: bold;
}
.month {
font-size: 18px;
font-weight: bold;
}
.daymonth {
background-color: red;
color: white;
text-align: center;
padding: 12px;
border-top-left-radius: 10px;
}
.time {
font-size: 18px;
text-align: center;
padding: 10px;
background-color: #eaeaea;
border-bottom-left-radius: 10px;
}
.title {
font-size: 18px;
padding-bottom: 5px;
font-weight: 700;
}
.created {
color:green;
font-weight: bold;
text-transform: capitalize;
}
.started {
color:rgba(194, 61, 12, 0.918);
font-weight: bold;
text-transform: capitalize;
}
.completed {
color:rgb(21, 117, 219);
font-weight: bold;
text-transform: capitalize;
}
.cancelled {
color: red;
font-weight: bold;
text-transform: capitalize;
}
.inprogress {
color: rgba(0, 26, 255, 0.487);
font-weight: bold;
text-transform: capitalize;
}
.theme, .presenter {
padding-bottom: 5px;
}
.meeting {
display: flex;
justify-content: space-between;
padding-top: 8px;
font-weight: bold;
}
a.started {
cursor: pointer;
color: rgb(21, 117, 219);
text-decoration: underline;
}
a.completed, a.cancelled, a.inprogress {
pointer-events: none;
color: cadetblue;
} | hosting/admin/css/styles.css | body {
margin: 0;
background: #fafafa;
}
body,h1,h2,p,a,input {
color: #555;
font-family: Consolas, Arial;
text-decoration: none;
}
ul {
margin: 0;
padding: 0;
}
/* header styles */
header {
width: 100%;
padding: 20px;
text-align: right;
background: white;
box-sizing: border-box;
box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
}
header a {
margin-left: 10px;
border-bottom: 2px solid #ffe100;
padding: 4px;
cursor: pointer;
}
header a:hover {
background: #ffe100;
color: black;
}
/* content styles */
.content {
max-width: 800px;
margin: 40px auto 0;
}
/* request list styles */
.request-list li {
/* padding: 20px; */
margin: 10px auto;
list-style-type: none;
background: white;
border-radius: 10px;
box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
display: flex;
justify-content: space-between;
}
.request-list .votes {
position: relative;
top: -5px;
z-index: 0;
}
.request-list .upvote {
cursor: pointer;
border-radius: 50%;
}
.request-list .upvote:active {
color: black;
background: #ffe100;
}
/* modal styles */
.modal {
width: 300px;
padding: 30px;
margin: 100px auto;
border-radius: 10px;
background: white;
box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
text-align: center;
}
.new-request {
width: 100%;
height: 100%;
position: fixed;
background: rgba(0,0,0,0.4);
z-index: 1;
display: none;
}
.new-request.open {
display: block;
}
/* form element styles */
input {
display: block;
margin: 8px 0;
padding: 8px 2px;
border-width: 0 0 2px 0;
width: 100%;
font-size: 15px;
outline: none;
}
button {
margin-top: 15px;
padding: 8px 12px;
background: #ffe100;
border: 0;
font-weight: bold;
font-family: inherit;
cursor: pointer;
outline: none;
font-size: 15px;
}
/* auth styles */
.auth {
width: 100%;
height: 100%;
position: fixed;
background: #fafafa;
display: none;
z-index: 1;
}
.auth.open {
display: block;
}
.auth a {
text-decoration: underline;
cursor: pointer;
}
.auth .modal {
display: none;
}
.auth .modal.active {
display: block;
}
/* notification */
.notification {
width: 200px;
padding: 20px;
position: fixed;
left: 50%;
margin-left: -120px;
top: 0;
border-radius: 0 0 5px 5px;
background: #ec2d2d;
text-align: center;
color: #fff;
margin-top: -100%;
transition: all 0.4s;
}
.notification.active {
margin-top: 0;
}
.logo {
height: 100px;
}
.hlogo {
height: 50px;
}
.navbar {
display: flex;
justify-content: space-between;
}
.left {
padding-top: 15px;
}
p.error {
color: orangered;
font-weight: bold;
font-size: 16px;
}
.document {
width: 100%;
display: flex;
justify-content: flex-start;
/* border-radius: 16px; */
}
.section-1 {
width: 15%;
}
.section-2 {
width: 65%;
padding: 10px;
}
.section-header {
display: flex;
justify-content: space-between;
}
.day {
font-size: 25px;
font-weight: bold;
}
.month {
font-size: 18px;
font-weight: bold;
}
.daymonth {
background-color: red;
color: white;
text-align: center;
padding: 12px;
border-top-left-radius: 10px;
}
.time {
font-size: 18px;
text-align: center;
padding: 10px;
background-color: #eaeaea;
border-bottom-left-radius: 10px;
}
.title {
font-size: 18px;
padding-bottom: 5px;
font-weight: 700;
}
.created {
color:green;
font-weight: bold;
text-transform: capitalize;
}
.started {
color:rgba(194, 61, 12, 0.918);
font-weight: bold;
text-transform: capitalize;
}
.completed {
color:rgb(21, 117, 219);
font-weight: bold;
text-transform: capitalize;
}
.cancelled {
color: red;
font-weight: bold;
text-transform: capitalize;
}
.inprogress {
color: rgba(0, 26, 255, 0.487);
font-weight: bold;
text-transform: capitalize;
}
.theme, .presenter {
padding-bottom: 5px;
}
.meeting {
display: flex;
justify-content: space-between;
padding-top: 8px;
font-weight: bold;
}
a.started {
cursor: pointer;
color: rgb(21, 117, 219);
text-decoration: underline;
}
a.completed, a.cancelled, a.inprogress {
pointer-events: none;
color: cadetblue;
} | 0.429908 | 0.067454 |
.progress-bar-container {
opacity: 0;
-webkit-transition: opacity 0.4s linear;
-moz-transition: opacity 0.4s linear;
transition: opacity 0.4s linear;
}
.progress-bar-container .progress {
margin-top: 15px;
margin-bottom: 25px;
background: white;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.progress-bar-container.loading {
-webkit-transition: none;
-moz-transition: none;
transition: none;
opacity: 1;
}
.progress-bar-container.loaded {
opacity: 0;
-webkit-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.progress-bar {
-webkit-transition: none;
-moz-transition: none;
transition: none;
width: 0;
}
.progress-bar-container.loaded .progress-bar {
-webkit-transition: width 0.3s linear;
-moz-transition: width 0.3s linear;
transition: width 0.3s linear;
width: 100% !important;
}
.progress-bar-container.failed .progress-bar {
width: 100% !important;
}
.progress-bar-container .progress-message {
font-size: 17px;
position: relative;
padding-left: 42px;
line-height: 32px;
}
.progress-bar-container .progress-message:before {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 32px auto;
display: block;
width: 32px;
height: 32px;
position: absolute;
left: 0;
top: 0;
-moz-animation: spin 1s infinite linear;
-webkit-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
background-position: 0 -32px;
}
.progress-bar-container.failed .progress-message:before {
-moz-animation: none;
-webkit-animation: none;
animation: none;
background-position: 0 -64px;
}
.callout {
margin-bottom: 20px;
padding: 20px;
color: #f0f0f0;
border-radius: 3px;
font-weight: 400;
}
.callout p {
font-size: 14px;
}
.callout a {
color: #fff;
}
.callout a.btn {
color: #333;
border-width: 0!important;
}
.callout a.btn:hover {
color: #000;
}
.callout small {
font-size: 12px;
}
.callout h4 {
margin-top: 0;
font-size: 20px;
margin-bottom: 18px;
font-weight: 400;
color: #fff;
}
.callout p:last-child {
margin-bottom: 0;
}
.callout-danger {
background-color: #cc3300;
}
.callout-warning {
background-color: #f0ad4e;
}
.callout-info {
background-color: #5e6ca8;
}
.callout-success {
background-color: #8da85e;
}
.system-check {
padding-bottom: 20px;
overflow: hidden;
}
.system-check li {
padding: 10px;
padding-left: 52px;
margin-bottom: 10px;
min-height: 32px;
background: #FFF;
position: relative;
font-size: 14px;
}
.system-check li:before {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 32px auto;
display: block;
width: 32px;
height: 32px;
position: absolute;
left: 7px;
top: 5px;
}
.system-check li.pass:before {
background-position: 0 0;
}
.system-check li.fail:before {
background-position: 0 -64px;
}
.system-check li.load:before {
background-position: 0 -32px;
-moz-animation: spin 1s infinite linear;
-webkit-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
.starter-item {
text-align: center;
margin-bottom: 40px;
min-height: 350px;
}
.starter-item.clean:before {
background-position: 35px 100%;
}
.starter-item.theme:before {
background-position: 235px 100%;
}
.starter-item.project:before {
background-position: 425px 100%;
}
.starter-item i.icon {
font-size: 42px;
display: block;
margin: 20px 0;
}
.starter-item p {
text-align: left;
}
.theme-item {
background: #fff;
padding: 20px;
margin-top: 20px;
min-height: 385px;
}
.theme-item h4,
.theme-item h4 + p {
display: inline-block;
}
.theme-item h4 + p {
position: relative;
top: -1px;
margin-left: 5px;
color: rgba(0,0,0,.5);
}
.theme-item .theme-item-thumb {
text-align: center;
padding: 10px 0 20px 0;
}
.theme-item .theme-item-description {
overflow-y: auto;
height: 75px;
}
.theme-item ul.list-inline {
margin-top: 20px;
}
.theme-item .theme-item-confirm {
margin-top: 20px;
font-weight: bold;
}
.theme-item .theme-item-confirm span,
.theme-item .theme-item-confirm a.btn {
margin-right: 5px;
}
.scroll-panel {
padding: 20px;
overflow: auto;
max-height: 250px;
background: #fff;
font-size: 14px;
border-radius: 3px;
}
.scroll-panel p:last-child {
margin-bottom: 0;
}
.app-eula .scroll-panel {
height: 350px;
max-height: 350px;
line-height: 2;
}
.app-eula h3 {
text-align: center;
padding: 10px 0;
}
.app-eula pre {
margin: 10px 0;
font-family: 'lato';
font-size: 13px;
}
.suggested-products-container .scroll-panel {
padding: 0 15px;
max-height: 250px;
}
.advanced-options {
overflow: hidden;
max-height: 0;
}
.advanced-options.visible {
max-height: 2000px;
-webkit-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.product-list-empty {
padding: 5px 0;
font-size: 16px;
color: #999;
}
.product-list {
margin: 0;
padding: 0;
overflow: hidden; /* clearfix */
}
.product-list li button,
.product-list li .image,
.product-list li .details {
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
transition: opacity .2s linear;
}
.product-list li button {
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
opacity: 0;
outline: none;
}
.product-list li:hover button {
opacity: .3;
}
.product-list li:hover button:hover {
opacity: .8;
}
.plugin-list {
}
.plugin-list li {
list-style: none;
position: relative;
border-bottom: 1px solid #E6E9E9;
margin-bottom: 10px;
padding-bottom: 10px;
overflow: hidden;
}
.plugin-list li:last-child {
border-bottom: none;
}
.plugin-list li .image {
float: left;
margin-right: 15px;
margin-left: 5px;
}
.plugin-list li .image img {
width: 50px;
height: 50px;
}
.plugin-list li .details p {
padding: 0;
margin: 3px 0 0 0;
color: #808C8D;
}
.plugin-list li h4 {
padding: 5px 0 0;
margin: 0;
color: #C03F31;
font-weight: 400;
}
.theme-list li {
float: left;
padding: 0;
margin: 0 10px 10px 0;
list-style: none;
border: 1px solid #E6E9E9;
background: #fff;
position: relative;
border-radius: 3px;
}
.theme-list li:hover {
border-color: transparent;
}
.theme-list li {
-webkit-transition: border .2s linear;
-moz-transition: border .2s linear;
transition: border .2s linear;
}
.theme-list li .image {
padding: 5px;
}
.theme-list li .image img {
width: 210px;
height: 140px;
}
.theme-list li:hover .image {
opacity: 0;
}
.theme-list li .details {
position: absolute;
bottom: 0;
left: 0;
opacity: 0;
padding: 10px;
overflow: hidden;
}
.theme-list li:hover .details {
opacity: 1;
}
.theme-list li h4 {
padding: 15px 0 0;
margin: 0;
}
.theme-list li p {
padding: 0;
margin: 0;
color: #999;
text-transform: uppercase;
font-size: 12px;
}
.suggested-products-container {
}
.suggested-products {
padding: 0;
}
.suggested-products .product {
padding: 0;
}
.suggested-products .image img {
width: 40px;
height: 40px;
margin-top: 10px;
}
.suggested-themes .image img {
width: 60px;
height: 40px;
}
.suggested-products .image {
float: left;
position: relative;
}
.suggested-products .details {
margin-left: 50px;
padding: 10px 0;
}
.suggested-themes .details {
margin-left: 70px;
}
.suggested-products .details h5 {
margin: 0 0 3px;
font-size: 14px;
color: #C03F31;
font-weight: 400;
}
.suggested-products .details p {
font-size: 12px;
}
.suggested-products a {
color: #777;
background: #fff;
padding: 5px;
text-decoration: none;
display: block;
overflow: hidden;
border-bottom: 1px solid #E6E9E9;
}
.suggested-products a:hover:not(.product-included) {
color: #333;
background: #f9f9f9;
}
.suggested-products a:hover .image {
}
.suggested-products a:hover .image:after {
content: "+";
color: #999;
font-size: 32px;
display: block;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
position: absolute;
top: 7px;
left: 0;
}
.suggested-products a:hover:not(.product-included) .image img {
opacity: .5;
}
.suggested-products a.product-included {
cursor: default;
opacity: .5;
}
.suggested-products a.product-included .image:after {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 40px auto;
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 10px;
left: 0;
background-position: 0 0;
}
.suggested-themes a.product-included .image:after {
left: 10px;
}
/*!
* Typeahead
*/
.product-search {
position: relative;
width: 100%;
margin: 0 auto 0 auto;
text-align: left;
padding-bottom: 15px;
}
.twitter-typeahead {
width: 100%;
}
.typeahead,
.tt-hint {
width: 100%;
height: 46px;
padding: 8px 12px;
font-size: 24px;
line-height: 30px;
border: 1px solid #024e6a;
border-radius: 3px;
outline: none;
}
.typeahead {
background-color: #fff;
border-color: #e0e0e0;
}
.tt-input {
font-weight: 200;
}
.tt-input:focus {
border-color: #E6E9E9;
}
.tt-hint {
color: #999;
font-weight: 200;
}
.tt-dropdown-menu {
width: 100%;
margin-top: 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.tt-suggestion {
font-size: 14px;
line-height: 18px;
}
.tt-suggestion + .tt-suggestion {
font-size: 14px;
border-top: 1px solid #ccc;
}
.tt-suggestions .product-details {
padding: 5px;
overflow: hidden;
position: relative;
}
.tt-suggestions .product-image {
float: left;
margin-right: 10px;
}
.tt-suggestions .product-image img {
height: 45px;
width: 45px;
}
.tt-suggestions .product-name {
font-size: 20px;
padding-top: 5px;
}
.tt-suggestions .product-description {
}
.tt-suggestion.tt-cursor {
cursor: pointer;
}
.tt-suggestion.tt-cursor .product-details {
color: #333;
background: #f9f9f9;
border-color: #f0f0f0;
}
.tt-suggestion.tt-cursor .product-details .product-image:after {
content: "+";
color: #999;
font-size: 38px;
display: block;
width: 45px;
height: 45px;
text-align: center;
line-height: 45px;
position: absolute;
top: 5px;
left: 5px;
}
.tt-suggestion.tt-cursor .product-details .product-image img {
opacity: .5;
} | install_files/css/controls.css | .progress-bar-container {
opacity: 0;
-webkit-transition: opacity 0.4s linear;
-moz-transition: opacity 0.4s linear;
transition: opacity 0.4s linear;
}
.progress-bar-container .progress {
margin-top: 15px;
margin-bottom: 25px;
background: white;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.progress-bar-container.loading {
-webkit-transition: none;
-moz-transition: none;
transition: none;
opacity: 1;
}
.progress-bar-container.loaded {
opacity: 0;
-webkit-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.progress-bar {
-webkit-transition: none;
-moz-transition: none;
transition: none;
width: 0;
}
.progress-bar-container.loaded .progress-bar {
-webkit-transition: width 0.3s linear;
-moz-transition: width 0.3s linear;
transition: width 0.3s linear;
width: 100% !important;
}
.progress-bar-container.failed .progress-bar {
width: 100% !important;
}
.progress-bar-container .progress-message {
font-size: 17px;
position: relative;
padding-left: 42px;
line-height: 32px;
}
.progress-bar-container .progress-message:before {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 32px auto;
display: block;
width: 32px;
height: 32px;
position: absolute;
left: 0;
top: 0;
-moz-animation: spin 1s infinite linear;
-webkit-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
background-position: 0 -32px;
}
.progress-bar-container.failed .progress-message:before {
-moz-animation: none;
-webkit-animation: none;
animation: none;
background-position: 0 -64px;
}
.callout {
margin-bottom: 20px;
padding: 20px;
color: #f0f0f0;
border-radius: 3px;
font-weight: 400;
}
.callout p {
font-size: 14px;
}
.callout a {
color: #fff;
}
.callout a.btn {
color: #333;
border-width: 0!important;
}
.callout a.btn:hover {
color: #000;
}
.callout small {
font-size: 12px;
}
.callout h4 {
margin-top: 0;
font-size: 20px;
margin-bottom: 18px;
font-weight: 400;
color: #fff;
}
.callout p:last-child {
margin-bottom: 0;
}
.callout-danger {
background-color: #cc3300;
}
.callout-warning {
background-color: #f0ad4e;
}
.callout-info {
background-color: #5e6ca8;
}
.callout-success {
background-color: #8da85e;
}
.system-check {
padding-bottom: 20px;
overflow: hidden;
}
.system-check li {
padding: 10px;
padding-left: 52px;
margin-bottom: 10px;
min-height: 32px;
background: #FFF;
position: relative;
font-size: 14px;
}
.system-check li:before {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 32px auto;
display: block;
width: 32px;
height: 32px;
position: absolute;
left: 7px;
top: 5px;
}
.system-check li.pass:before {
background-position: 0 0;
}
.system-check li.fail:before {
background-position: 0 -64px;
}
.system-check li.load:before {
background-position: 0 -32px;
-moz-animation: spin 1s infinite linear;
-webkit-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
.starter-item {
text-align: center;
margin-bottom: 40px;
min-height: 350px;
}
.starter-item.clean:before {
background-position: 35px 100%;
}
.starter-item.theme:before {
background-position: 235px 100%;
}
.starter-item.project:before {
background-position: 425px 100%;
}
.starter-item i.icon {
font-size: 42px;
display: block;
margin: 20px 0;
}
.starter-item p {
text-align: left;
}
.theme-item {
background: #fff;
padding: 20px;
margin-top: 20px;
min-height: 385px;
}
.theme-item h4,
.theme-item h4 + p {
display: inline-block;
}
.theme-item h4 + p {
position: relative;
top: -1px;
margin-left: 5px;
color: rgba(0,0,0,.5);
}
.theme-item .theme-item-thumb {
text-align: center;
padding: 10px 0 20px 0;
}
.theme-item .theme-item-description {
overflow-y: auto;
height: 75px;
}
.theme-item ul.list-inline {
margin-top: 20px;
}
.theme-item .theme-item-confirm {
margin-top: 20px;
font-weight: bold;
}
.theme-item .theme-item-confirm span,
.theme-item .theme-item-confirm a.btn {
margin-right: 5px;
}
.scroll-panel {
padding: 20px;
overflow: auto;
max-height: 250px;
background: #fff;
font-size: 14px;
border-radius: 3px;
}
.scroll-panel p:last-child {
margin-bottom: 0;
}
.app-eula .scroll-panel {
height: 350px;
max-height: 350px;
line-height: 2;
}
.app-eula h3 {
text-align: center;
padding: 10px 0;
}
.app-eula pre {
margin: 10px 0;
font-family: 'lato';
font-size: 13px;
}
.suggested-products-container .scroll-panel {
padding: 0 15px;
max-height: 250px;
}
.advanced-options {
overflow: hidden;
max-height: 0;
}
.advanced-options.visible {
max-height: 2000px;
-webkit-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.product-list-empty {
padding: 5px 0;
font-size: 16px;
color: #999;
}
.product-list {
margin: 0;
padding: 0;
overflow: hidden; /* clearfix */
}
.product-list li button,
.product-list li .image,
.product-list li .details {
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
transition: opacity .2s linear;
}
.product-list li button {
position: absolute;
top: 0;
right: 0;
width: 20px;
height: 20px;
opacity: 0;
outline: none;
}
.product-list li:hover button {
opacity: .3;
}
.product-list li:hover button:hover {
opacity: .8;
}
.plugin-list {
}
.plugin-list li {
list-style: none;
position: relative;
border-bottom: 1px solid #E6E9E9;
margin-bottom: 10px;
padding-bottom: 10px;
overflow: hidden;
}
.plugin-list li:last-child {
border-bottom: none;
}
.plugin-list li .image {
float: left;
margin-right: 15px;
margin-left: 5px;
}
.plugin-list li .image img {
width: 50px;
height: 50px;
}
.plugin-list li .details p {
padding: 0;
margin: 3px 0 0 0;
color: #808C8D;
}
.plugin-list li h4 {
padding: 5px 0 0;
margin: 0;
color: #C03F31;
font-weight: 400;
}
.theme-list li {
float: left;
padding: 0;
margin: 0 10px 10px 0;
list-style: none;
border: 1px solid #E6E9E9;
background: #fff;
position: relative;
border-radius: 3px;
}
.theme-list li:hover {
border-color: transparent;
}
.theme-list li {
-webkit-transition: border .2s linear;
-moz-transition: border .2s linear;
transition: border .2s linear;
}
.theme-list li .image {
padding: 5px;
}
.theme-list li .image img {
width: 210px;
height: 140px;
}
.theme-list li:hover .image {
opacity: 0;
}
.theme-list li .details {
position: absolute;
bottom: 0;
left: 0;
opacity: 0;
padding: 10px;
overflow: hidden;
}
.theme-list li:hover .details {
opacity: 1;
}
.theme-list li h4 {
padding: 15px 0 0;
margin: 0;
}
.theme-list li p {
padding: 0;
margin: 0;
color: #999;
text-transform: uppercase;
font-size: 12px;
}
.suggested-products-container {
}
.suggested-products {
padding: 0;
}
.suggested-products .product {
padding: 0;
}
.suggested-products .image img {
width: 40px;
height: 40px;
margin-top: 10px;
}
.suggested-themes .image img {
width: 60px;
height: 40px;
}
.suggested-products .image {
float: left;
position: relative;
}
.suggested-products .details {
margin-left: 50px;
padding: 10px 0;
}
.suggested-themes .details {
margin-left: 70px;
}
.suggested-products .details h5 {
margin: 0 0 3px;
font-size: 14px;
color: #C03F31;
font-weight: 400;
}
.suggested-products .details p {
font-size: 12px;
}
.suggested-products a {
color: #777;
background: #fff;
padding: 5px;
text-decoration: none;
display: block;
overflow: hidden;
border-bottom: 1px solid #E6E9E9;
}
.suggested-products a:hover:not(.product-included) {
color: #333;
background: #f9f9f9;
}
.suggested-products a:hover .image {
}
.suggested-products a:hover .image:after {
content: "+";
color: #999;
font-size: 32px;
display: block;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
position: absolute;
top: 7px;
left: 0;
}
.suggested-products a:hover:not(.product-included) .image img {
opacity: .5;
}
.suggested-products a.product-included {
cursor: default;
opacity: .5;
}
.suggested-products a.product-included .image:after {
content: "";
background: transparent url('../images/sprite.png') no-repeat;
background-size: 40px auto;
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 10px;
left: 0;
background-position: 0 0;
}
.suggested-themes a.product-included .image:after {
left: 10px;
}
/*!
* Typeahead
*/
.product-search {
position: relative;
width: 100%;
margin: 0 auto 0 auto;
text-align: left;
padding-bottom: 15px;
}
.twitter-typeahead {
width: 100%;
}
.typeahead,
.tt-hint {
width: 100%;
height: 46px;
padding: 8px 12px;
font-size: 24px;
line-height: 30px;
border: 1px solid #024e6a;
border-radius: 3px;
outline: none;
}
.typeahead {
background-color: #fff;
border-color: #e0e0e0;
}
.tt-input {
font-weight: 200;
}
.tt-input:focus {
border-color: #E6E9E9;
}
.tt-hint {
color: #999;
font-weight: 200;
}
.tt-dropdown-menu {
width: 100%;
margin-top: 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.tt-suggestion {
font-size: 14px;
line-height: 18px;
}
.tt-suggestion + .tt-suggestion {
font-size: 14px;
border-top: 1px solid #ccc;
}
.tt-suggestions .product-details {
padding: 5px;
overflow: hidden;
position: relative;
}
.tt-suggestions .product-image {
float: left;
margin-right: 10px;
}
.tt-suggestions .product-image img {
height: 45px;
width: 45px;
}
.tt-suggestions .product-name {
font-size: 20px;
padding-top: 5px;
}
.tt-suggestions .product-description {
}
.tt-suggestion.tt-cursor {
cursor: pointer;
}
.tt-suggestion.tt-cursor .product-details {
color: #333;
background: #f9f9f9;
border-color: #f0f0f0;
}
.tt-suggestion.tt-cursor .product-details .product-image:after {
content: "+";
color: #999;
font-size: 38px;
display: block;
width: 45px;
height: 45px;
text-align: center;
line-height: 45px;
position: absolute;
top: 5px;
left: 5px;
}
.tt-suggestion.tt-cursor .product-details .product-image img {
opacity: .5;
} | 0.446495 | 0.054828 |
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,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{ vertical-align:baseline;}/* vertical align baseline */
.vertical-top{ vertical-align:top;}/* vertical align top */
nav.vertical ul li{ display:block;}/* vertical menu */
nav.horizontal ul li{ display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/*end reset*/
/*--start-body--*/
body{
background: #fff;
font-family: 'Raleway', sans-serif;
}
body a,form li,.submit input[type="submit"],.new p a,.new p.sign{
transition: 0.1s all;
-webkit-transition: 0.1s all;
-moz-transition: 0.1s all;
-o-transition: 0.1s all;
}
body h1 {
color: #EF717A;
padding: 0.5em 0 0 0;
text-transform: uppercase;
font-size:1.8em;
font-weight: bold;
}
body h2{
color: #fff;
text-align: center;
padding: 0.5em 0 0 0;
text-transform: uppercase;
font-size: 2em;
font-weight: bold;
}
.main {
margin: 10% auto 1%;
width: 49%;
background-color: #eee;
padding: 3em 3em 3em 3em;
}
.login-text {
float: left;
width: 49%;
margin-right: 1%;
}
.login-text p {
font-size: 1em;
color: #777;
padding-top: 2em;
line-height: 1.9em;
}
.text-bottom h3 {
float: left;
color: #EF717A;
font-size: 1.2em;
font-weight: 600;
text-transform: uppercase;
margin-top: 0.3em;
}
.text-bottom {
margin-top: 1em;
}
ul.f-icons {
float: left;
margin-left: 3%;
}
ul.f-icons li{
display:inline-block;
margin-right:0.5em;
}
ul.f-icons li a.facebook,ul.f-icons li a.p,ul.f-icons li a.twitter{
background: url(../images/icons2.png) no-repeat -137px 0px;
display:inline-block;
height: 30px;
width: 30px;
transition: 0.4s all;
-webkit-transition: 0.4s all;
-moz-transition: 0.4s all;
-o-transition: 0.4s all;
}
ul.f-icons li a.facebook:hover{
background: url(../images/icons2.png) no-repeat -137px -35px;
}
ul.f-icons li a.p{
background: url(../images/icons2.png) no-repeat -167px 0px;
}
ul.f-icons li a.twitter{
background: url(../images/icons2.png) no-repeat -197px 0px;
}
ul.f-icons li a.p:hover{
background: url(../images/icons2.png) no-repeat -167px -35px;
}
ul.f-icons li a.twitter:hover{
background: url(../images/icons2.png) no-repeat -197px -35px;
}
.login-form {
float: right;
width:48%;
}
.login-inner{
background-color: #ef717a;
padding: 2em;
margin-bottom: 1em;
}
.login-form p {
font-size: 0.9em;
text-align: center;
line-height: 1.9em;
color: #fff;
margin-top: 1em;
}
form {
padding: 7% 0% 0 0;
}
.b-search{
position: relative;
border: 1px solid #E5E9DF;
padding: 0.5em 0;
background: #fff;
width: 99%;
}
.b-search form{
padding:0% 0% 0 0;
}
.b-search input[type="text"]{
width:83%;
outline: none;
padding: 0em 0.6em;
font-size: 0.9em;
color: #999;
position: relative;
border: none;
background: none;
margin: 0;
}
.b-search input[type="submit"]{
background: url(../images/search.png) no-repeat 0px 2px;
border: none;
height: 26px;
width: 26px;
position: absolute;
outline: none;
top: 6px;
right: 2px;
}
.b-search input[type="submit"]:hover{
background: url(../images/search.png) no-repeat 0px 2px;
}
.new {
margin: 1em 0 1em 0;
}
.new p{
float:left;
}
.new p a,.new p.sign{
color:#fff;
font-weight: 400;
font-size:0.91em;
}
.new p a:hover,.new p.sign a:hover{
text-decoration: underline;
}
.new p a{
font-size:0.95em;
}
.new p.sign{
float:right;
}
form input[type="text"]{
width:75%;
padding: 1.1em 1em 1.1em 4em;
color: #999;
font-size: 14px;
outline: none;
font-weight: 500;
border: none;
background: url("../images/icons.png") no-repeat 14px 16px #ffffff;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
margin-bottom:1em;
}
form input[type="password"]{
width:75%;
padding: 1.1em 1em 1.1em 4em;
color: #999;
font-size: 14px;
outline: none;
font-weight: 500;
border: none;
background: url("../images/icons.png") no-repeat 13px -32px #ffffff;
border: none;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
margin-bottom:1em;
}
.submit {
margin: 0.5em 0;
text-align: center;
}
form input[type="submit"]{
font-size: 17px;
font-weight: 400;
color: #fff;
cursor: pointer;
outline: none;
padding: 0.7em 1em;
width: 44%;
border: none;
background: #EA4D58;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
}
form input[type="submit"]:hover{
background:#484848;
}
/*==================================================
* Effect 2
* ===============================================*/
.effect2{
position: relative;
}
.effect2:before, .effect2:after{
z-index: -999;
position: absolute;
content: "";
bottom: 11px;
left: 15px;
width: 57%;
top: 84%;
max-width: 348px;
background: rgba(255, 255, 255, 0.85);
-webkit-box-shadow: 0 15px 10px #777;
-moz-box-shadow: 0 15px 10px #777;
box-shadow: 0 15px 10px rgba(179, 175, 175, 0.94);
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
transform: rotate(-3deg);
}
.effect2:after{
-webkit-transform: rotate(3deg);
-moz-transform: rotate(3deg);
-o-transform: rotate(3deg);
-ms-transform: rotate(3deg);
transform: rotate(3deg);
right: 15px;
left: auto;
}
/*--copy-right--*/
.copy-right {
margin:3em 0 2em 0;
}
.copy-right p {
color: #444;
font-size: 1em;
font-weight: 400;
margin: 0 auto;
text-align: center
}
.copy-right p a {
color:#ea4c89;
}
.copy-right p a:hover {
text-decoration: underline;
}
/*--//copy-right--*/
/*--start-responsive-design--*/
@media (max-width:1600px){
}
@media (max-width:1440px){
form input[type="submit"] {
font-size: 17px;
padding: 0.7em 1em;
width: 49%;
}
.main {
margin: 10% auto 2%;
width: 60%;
background-color: #eee;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:1366px){
}
@media (max-width:1280px){
.main {
margin: 10% auto 2%;
width: 65%;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:1024px){
.main {
margin: 10% auto 2%;
width: 78%;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:991px){
.main {
margin: 10% auto 18%;
width: 88%;
padding: 2em;
}
}
@media (max-width:800px){
.main {
margin: 10% auto 18%;
width: 88%;
padding: 2em;
}
}
@media (max-width:768px){
body h1 {
padding: 0.5em 0 0 0;
font-size: 1.5em;
}
.login-text p {
font-size: 0.9em;
color: #777;
padding-top: 1em;
line-height: 1.9em;
}
.login-inner {
padding: 1em;
margin-bottom: 1em;
}
body h2 {
padding: 0.5em 0 0 0;
font-size: 1.6em;
}
form {
padding: 7% 5% 0 5%;
}
}
@media (max-width:736px){
}
@media (max-width:667px){
.login-text {
float: left;
width: 100%;
margin-right: 0;
margin-bottom: 6%;
}
.login-form {
float: right;
width: 68%;
margin-right: 18%;
}
.main {
margin: 10% auto 18%;
width: 83%;
padding: 3em;
}
}
@media (max-width:640px){
.login-text {
float: left;
width: 100%;
margin-right: 0;
margin-bottom: 6%;
}
.login-form {
float: right;
width: 68%;
margin-right: 18%;
}
.main {
margin: 10% auto 18%;
width: 83%;
padding: 3em;
}
}
@media (max-width:600px){
}
@media (max-width:568px){
.login-form {
float: right;
width: 92%;
margin-right: 7%;
}
.main {
margin: 10% auto 18%;
width: 81%;
padding: 2em;
}
.copy-right p {
font-size: 0.9em;
line-height: 1.9em;
}
}
@media (max-width:480px){
.login-form {
float: right;
width: 92%;
margin-right: 7%;
}
.main {
margin: 10% auto 18%;
width: 81%;
padding: 2em;
}
.copy-right p {
font-size: 0.9em;
line-height: 1.9em;
}
}
@media (max-width:414px){
.login-form {
float: right;
width: 100%;
margin-right: 0%;
}
}
@media (max-width:384px){
}
@media (max-width:375px){
.main {
margin: 10% auto 18%;
width: 89%;
padding: 1em;
}
}
@media (max-width:320px){
form input[type="text"] {
width: 69%;
}
form input[type="password"] {
width: 69%;
}
.new p.sign {
float: none;
text-align: center;
}
.new p {
float: none;
margin-top: 0.5em;
}
form input[type="submit"] {
font-size: 17px;
padding: 0.7em 1em;
width: 62%;
}
body h1 {
padding: 0.5em 0 0 0;
font-size: 1.25em;
}
.text-bottom h3 {
font-size: 1em;
margin-top: 0.5em;
}
body h2 {
padding: 0.5em 0 0 0;
font-size: 1.4em;
}
.login-inner {
padding: 0.5em;
}
.main {
margin: 10% auto 18%;
width: 87%;
padding: 1em;
}
} | flat_email_update/web/css/style.css | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{ vertical-align:baseline;}/* vertical align baseline */
.vertical-top{ vertical-align:top;}/* vertical align top */
nav.vertical ul li{ display:block;}/* vertical menu */
nav.horizontal ul li{ display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/*end reset*/
/*--start-body--*/
body{
background: #fff;
font-family: 'Raleway', sans-serif;
}
body a,form li,.submit input[type="submit"],.new p a,.new p.sign{
transition: 0.1s all;
-webkit-transition: 0.1s all;
-moz-transition: 0.1s all;
-o-transition: 0.1s all;
}
body h1 {
color: #EF717A;
padding: 0.5em 0 0 0;
text-transform: uppercase;
font-size:1.8em;
font-weight: bold;
}
body h2{
color: #fff;
text-align: center;
padding: 0.5em 0 0 0;
text-transform: uppercase;
font-size: 2em;
font-weight: bold;
}
.main {
margin: 10% auto 1%;
width: 49%;
background-color: #eee;
padding: 3em 3em 3em 3em;
}
.login-text {
float: left;
width: 49%;
margin-right: 1%;
}
.login-text p {
font-size: 1em;
color: #777;
padding-top: 2em;
line-height: 1.9em;
}
.text-bottom h3 {
float: left;
color: #EF717A;
font-size: 1.2em;
font-weight: 600;
text-transform: uppercase;
margin-top: 0.3em;
}
.text-bottom {
margin-top: 1em;
}
ul.f-icons {
float: left;
margin-left: 3%;
}
ul.f-icons li{
display:inline-block;
margin-right:0.5em;
}
ul.f-icons li a.facebook,ul.f-icons li a.p,ul.f-icons li a.twitter{
background: url(../images/icons2.png) no-repeat -137px 0px;
display:inline-block;
height: 30px;
width: 30px;
transition: 0.4s all;
-webkit-transition: 0.4s all;
-moz-transition: 0.4s all;
-o-transition: 0.4s all;
}
ul.f-icons li a.facebook:hover{
background: url(../images/icons2.png) no-repeat -137px -35px;
}
ul.f-icons li a.p{
background: url(../images/icons2.png) no-repeat -167px 0px;
}
ul.f-icons li a.twitter{
background: url(../images/icons2.png) no-repeat -197px 0px;
}
ul.f-icons li a.p:hover{
background: url(../images/icons2.png) no-repeat -167px -35px;
}
ul.f-icons li a.twitter:hover{
background: url(../images/icons2.png) no-repeat -197px -35px;
}
.login-form {
float: right;
width:48%;
}
.login-inner{
background-color: #ef717a;
padding: 2em;
margin-bottom: 1em;
}
.login-form p {
font-size: 0.9em;
text-align: center;
line-height: 1.9em;
color: #fff;
margin-top: 1em;
}
form {
padding: 7% 0% 0 0;
}
.b-search{
position: relative;
border: 1px solid #E5E9DF;
padding: 0.5em 0;
background: #fff;
width: 99%;
}
.b-search form{
padding:0% 0% 0 0;
}
.b-search input[type="text"]{
width:83%;
outline: none;
padding: 0em 0.6em;
font-size: 0.9em;
color: #999;
position: relative;
border: none;
background: none;
margin: 0;
}
.b-search input[type="submit"]{
background: url(../images/search.png) no-repeat 0px 2px;
border: none;
height: 26px;
width: 26px;
position: absolute;
outline: none;
top: 6px;
right: 2px;
}
.b-search input[type="submit"]:hover{
background: url(../images/search.png) no-repeat 0px 2px;
}
.new {
margin: 1em 0 1em 0;
}
.new p{
float:left;
}
.new p a,.new p.sign{
color:#fff;
font-weight: 400;
font-size:0.91em;
}
.new p a:hover,.new p.sign a:hover{
text-decoration: underline;
}
.new p a{
font-size:0.95em;
}
.new p.sign{
float:right;
}
form input[type="text"]{
width:75%;
padding: 1.1em 1em 1.1em 4em;
color: #999;
font-size: 14px;
outline: none;
font-weight: 500;
border: none;
background: url("../images/icons.png") no-repeat 14px 16px #ffffff;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
margin-bottom:1em;
}
form input[type="password"]{
width:75%;
padding: 1.1em 1em 1.1em 4em;
color: #999;
font-size: 14px;
outline: none;
font-weight: 500;
border: none;
background: url("../images/icons.png") no-repeat 13px -32px #ffffff;
border: none;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
margin-bottom:1em;
}
.submit {
margin: 0.5em 0;
text-align: center;
}
form input[type="submit"]{
font-size: 17px;
font-weight: 400;
color: #fff;
cursor: pointer;
outline: none;
padding: 0.7em 1em;
width: 44%;
border: none;
background: #EA4D58;
border-radius: 0.2em;
-o-border-radius: 0.2em;
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
-ms-border-radius: 0.2em;
}
form input[type="submit"]:hover{
background:#484848;
}
/*==================================================
* Effect 2
* ===============================================*/
.effect2{
position: relative;
}
.effect2:before, .effect2:after{
z-index: -999;
position: absolute;
content: "";
bottom: 11px;
left: 15px;
width: 57%;
top: 84%;
max-width: 348px;
background: rgba(255, 255, 255, 0.85);
-webkit-box-shadow: 0 15px 10px #777;
-moz-box-shadow: 0 15px 10px #777;
box-shadow: 0 15px 10px rgba(179, 175, 175, 0.94);
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
transform: rotate(-3deg);
}
.effect2:after{
-webkit-transform: rotate(3deg);
-moz-transform: rotate(3deg);
-o-transform: rotate(3deg);
-ms-transform: rotate(3deg);
transform: rotate(3deg);
right: 15px;
left: auto;
}
/*--copy-right--*/
.copy-right {
margin:3em 0 2em 0;
}
.copy-right p {
color: #444;
font-size: 1em;
font-weight: 400;
margin: 0 auto;
text-align: center
}
.copy-right p a {
color:#ea4c89;
}
.copy-right p a:hover {
text-decoration: underline;
}
/*--//copy-right--*/
/*--start-responsive-design--*/
@media (max-width:1600px){
}
@media (max-width:1440px){
form input[type="submit"] {
font-size: 17px;
padding: 0.7em 1em;
width: 49%;
}
.main {
margin: 10% auto 2%;
width: 60%;
background-color: #eee;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:1366px){
}
@media (max-width:1280px){
.main {
margin: 10% auto 2%;
width: 65%;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:1024px){
.main {
margin: 10% auto 2%;
width: 78%;
padding: 3em 3em 3em 3em;
}
}
@media (max-width:991px){
.main {
margin: 10% auto 18%;
width: 88%;
padding: 2em;
}
}
@media (max-width:800px){
.main {
margin: 10% auto 18%;
width: 88%;
padding: 2em;
}
}
@media (max-width:768px){
body h1 {
padding: 0.5em 0 0 0;
font-size: 1.5em;
}
.login-text p {
font-size: 0.9em;
color: #777;
padding-top: 1em;
line-height: 1.9em;
}
.login-inner {
padding: 1em;
margin-bottom: 1em;
}
body h2 {
padding: 0.5em 0 0 0;
font-size: 1.6em;
}
form {
padding: 7% 5% 0 5%;
}
}
@media (max-width:736px){
}
@media (max-width:667px){
.login-text {
float: left;
width: 100%;
margin-right: 0;
margin-bottom: 6%;
}
.login-form {
float: right;
width: 68%;
margin-right: 18%;
}
.main {
margin: 10% auto 18%;
width: 83%;
padding: 3em;
}
}
@media (max-width:640px){
.login-text {
float: left;
width: 100%;
margin-right: 0;
margin-bottom: 6%;
}
.login-form {
float: right;
width: 68%;
margin-right: 18%;
}
.main {
margin: 10% auto 18%;
width: 83%;
padding: 3em;
}
}
@media (max-width:600px){
}
@media (max-width:568px){
.login-form {
float: right;
width: 92%;
margin-right: 7%;
}
.main {
margin: 10% auto 18%;
width: 81%;
padding: 2em;
}
.copy-right p {
font-size: 0.9em;
line-height: 1.9em;
}
}
@media (max-width:480px){
.login-form {
float: right;
width: 92%;
margin-right: 7%;
}
.main {
margin: 10% auto 18%;
width: 81%;
padding: 2em;
}
.copy-right p {
font-size: 0.9em;
line-height: 1.9em;
}
}
@media (max-width:414px){
.login-form {
float: right;
width: 100%;
margin-right: 0%;
}
}
@media (max-width:384px){
}
@media (max-width:375px){
.main {
margin: 10% auto 18%;
width: 89%;
padding: 1em;
}
}
@media (max-width:320px){
form input[type="text"] {
width: 69%;
}
form input[type="password"] {
width: 69%;
}
.new p.sign {
float: none;
text-align: center;
}
.new p {
float: none;
margin-top: 0.5em;
}
form input[type="submit"] {
font-size: 17px;
padding: 0.7em 1em;
width: 62%;
}
body h1 {
padding: 0.5em 0 0 0;
font-size: 1.25em;
}
.text-bottom h3 {
font-size: 1em;
margin-top: 0.5em;
}
body h2 {
padding: 0.5em 0 0 0;
font-size: 1.4em;
}
.login-inner {
padding: 0.5em;
}
.main {
margin: 10% auto 18%;
width: 87%;
padding: 1em;
}
} | 0.247532 | 0.092442 |
*{
margin:0;
padding:0;
outline:none;
list-style:none;
}
body{
font-family: arial, helvetica, sans-serif;
font-size: 14px;
position:relative;
/*left:280px; posiciona a 450px para a esquerda */
/*top: 50px; posiciona a 70px para baixo */
background-image:url("imagens/fundo.jpg");
opacity: 1;
}
#login{
position:relative;
/*left:60%;*/
width:400px;
margin:0 auto;
top:50px;
border:1px solid #fff;
padding:40px;
z-index:1;
}
#login_index{
position:relative;
left:30px;
width:270px;
margin:0 auto;
top:50px;
border:1px solid #fff;
padding:40px;
z-index:1;
}
#Vendas{
position:relative;
width:740px;
height: 420px;
margin:0 auto;
top:85px;
border:1px solid #000000;
padding:30px;
z-index:1;
}
#Encomenda{
width:500px;
margin:0 auto;
position:relative;
top:30px;
border:1px solid #CCC;
padding:40px;
}
#cadastro{
width:400px;
margin:0 auto;
position:absolute;
left: 230px; /* posiciona a 450px para a esquerda */
top: 90px; /* posiciona a 70px para baixo */
padding:7px
top:30px;
border:1px solid #f1f1f1;
padding:30px;
}
.logo{
width:450px;
height:150px;
margin:0 auto;
position:absolute;
left: 400px; /* posiciona a 500px para a esquerda */
top: 70px; /* posiciona a 70px para baixo */
padding:7px
z-index:1;
}
a{
text-decoration:none;
}
#login label{
display:block;
padding-top:5px;
}
.acomodar{
margin:0 auto;
width:250px;
}
.acomodar_encomenda{
margin:0 auto;
left:0px;
width:250px;
}
.txt{
border:none;
height:40px;
width:250px;
border:thin solid #999;
}
.txt_Venda{
border:none;
height:20px;
width:250px;
border:thin solid #999;
}
.produto{
border:none;
height:150px;
width:280px;
border:thin solid #999;
}
.select{
width:220px;
height:30px;
}
.select_Venda{
width:250px;
height:38px;
}
.select:hover{
color:#003;
-moz-box-shadow:0 3px 10px 0 #F00;
-webkit-box-shadow:0 3px 10px 0 #F00;
text-shadow:0px 0px 5px #F00;
}
.txt:focus{
border:thin solid #F00;
box-shadow:0 1px 10px #F00;
-webkit-box-shadow:0 1px 8px #F00;
-moz-box-shadow:0 1px 8px #F00;
}
.sb{
display:block;
border:none;
margin-top:10px;
width:250px;
height:40px;
cursor:pointer;
font:300 22px Oswald;
color:#fff;
background:#D87;
}
.sb_Venda{
display:block;
border:none;
margin-top:10px;
width:250px;
height:40px;
cursor:pointer;
font:300 22px Oswald;
color:#F00;
background:#7aba7b;
}
.sb_Venda:hover{
background:#0CF;
color:#FFF;
}
.sb:hover{
background:#999;
color:#FFF;
}
/* Classes de herança */
.bradius{
border-radius:6px;
-webkit-border-radius:6px;
-moz-border-radius:6px;
}
.fleft{
float:left;
}
.fright{
}
/*Multiplos Estilos*/
.txt,txt:focus,.sb,.sb:hover{
transition:all 0.5s linear;
-webkit-transition:all 0.5s linear;
-moz-transition:all 0.5s linear;
} | css/style.css | *{
margin:0;
padding:0;
outline:none;
list-style:none;
}
body{
font-family: arial, helvetica, sans-serif;
font-size: 14px;
position:relative;
/*left:280px; posiciona a 450px para a esquerda */
/*top: 50px; posiciona a 70px para baixo */
background-image:url("imagens/fundo.jpg");
opacity: 1;
}
#login{
position:relative;
/*left:60%;*/
width:400px;
margin:0 auto;
top:50px;
border:1px solid #fff;
padding:40px;
z-index:1;
}
#login_index{
position:relative;
left:30px;
width:270px;
margin:0 auto;
top:50px;
border:1px solid #fff;
padding:40px;
z-index:1;
}
#Vendas{
position:relative;
width:740px;
height: 420px;
margin:0 auto;
top:85px;
border:1px solid #000000;
padding:30px;
z-index:1;
}
#Encomenda{
width:500px;
margin:0 auto;
position:relative;
top:30px;
border:1px solid #CCC;
padding:40px;
}
#cadastro{
width:400px;
margin:0 auto;
position:absolute;
left: 230px; /* posiciona a 450px para a esquerda */
top: 90px; /* posiciona a 70px para baixo */
padding:7px
top:30px;
border:1px solid #f1f1f1;
padding:30px;
}
.logo{
width:450px;
height:150px;
margin:0 auto;
position:absolute;
left: 400px; /* posiciona a 500px para a esquerda */
top: 70px; /* posiciona a 70px para baixo */
padding:7px
z-index:1;
}
a{
text-decoration:none;
}
#login label{
display:block;
padding-top:5px;
}
.acomodar{
margin:0 auto;
width:250px;
}
.acomodar_encomenda{
margin:0 auto;
left:0px;
width:250px;
}
.txt{
border:none;
height:40px;
width:250px;
border:thin solid #999;
}
.txt_Venda{
border:none;
height:20px;
width:250px;
border:thin solid #999;
}
.produto{
border:none;
height:150px;
width:280px;
border:thin solid #999;
}
.select{
width:220px;
height:30px;
}
.select_Venda{
width:250px;
height:38px;
}
.select:hover{
color:#003;
-moz-box-shadow:0 3px 10px 0 #F00;
-webkit-box-shadow:0 3px 10px 0 #F00;
text-shadow:0px 0px 5px #F00;
}
.txt:focus{
border:thin solid #F00;
box-shadow:0 1px 10px #F00;
-webkit-box-shadow:0 1px 8px #F00;
-moz-box-shadow:0 1px 8px #F00;
}
.sb{
display:block;
border:none;
margin-top:10px;
width:250px;
height:40px;
cursor:pointer;
font:300 22px Oswald;
color:#fff;
background:#D87;
}
.sb_Venda{
display:block;
border:none;
margin-top:10px;
width:250px;
height:40px;
cursor:pointer;
font:300 22px Oswald;
color:#F00;
background:#7aba7b;
}
.sb_Venda:hover{
background:#0CF;
color:#FFF;
}
.sb:hover{
background:#999;
color:#FFF;
}
/* Classes de herança */
.bradius{
border-radius:6px;
-webkit-border-radius:6px;
-moz-border-radius:6px;
}
.fleft{
float:left;
}
.fright{
}
/*Multiplos Estilos*/
.txt,txt:focus,.sb,.sb:hover{
transition:all 0.5s linear;
-webkit-transition:all 0.5s linear;
-moz-transition:all 0.5s linear;
} | 0.208018 | 0.053453 |
.tweet-text-box {
width: -webkit-fill-available;
height: 265px;
border-radius: 10px!important;
margin: 10px;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 18px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover {
color: #000000;
text-decoration: none;
opacity: 0.4;
filter: alpha(opacity=40);
cursor: pointer;
}
#alert-container {
position: absolute;
z-index: 1000;
top: 50px;
margin: 0;
display: flex;;
}
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 18px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #c09853;
}
.alert-heading {
color: inherit;
}
.alert .close {
position: relative;
top: -2px;
right: -21px;
line-height: 18px;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.alert-danger,
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #3a87ad;
}
.alert-block {
padding-top: 14px;
padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
margin-bottom: 0;
}
.alert-block p + p {
margin-top: 5px;
}
.spinner {
position: relative;
margin: auto;
box-sizing: border-box;
background-clip: padding-box;
width: 200px;
height: 200px;
border-radius: 100px;
border: 4px solid rgba(255, 255, 255, 0.1);
-webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), #000000 90%);
transform-origin: 50% 60%;
transform: perspective(200px) rotateX(66deg);
animation: spinner-wiggle 1.2s infinite;
}
.spinner:before,
.spinner:after {
content: "";
position: absolute;
margin: -4px;
box-sizing: inherit;
width: inherit;
height: inherit;
border-radius: inherit;
opacity: .05;
border: inherit;
border-color: transparent;
animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}
.spinner:before {
border-top-color: #e4ebf1;
}
.spinner:after {
border-top-color: #d90c37;
animation-delay: 0.3s;
}
@keyframes spinner-spin {
100% {
transform: rotate(360deg);
}
}
@keyframes spinner-fade {
20% {
opacity: .1;
}
40% {
opacity: 1;
}
60% {
opacity: .1;
}
} | public/styles/styles.css | .tweet-text-box {
width: -webkit-fill-available;
height: 265px;
border-radius: 10px!important;
margin: 10px;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 18px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover {
color: #000000;
text-decoration: none;
opacity: 0.4;
filter: alpha(opacity=40);
cursor: pointer;
}
#alert-container {
position: absolute;
z-index: 1000;
top: 50px;
margin: 0;
display: flex;;
}
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 18px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #c09853;
}
.alert-heading {
color: inherit;
}
.alert .close {
position: relative;
top: -2px;
right: -21px;
line-height: 18px;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.alert-danger,
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #3a87ad;
}
.alert-block {
padding-top: 14px;
padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
margin-bottom: 0;
}
.alert-block p + p {
margin-top: 5px;
}
.spinner {
position: relative;
margin: auto;
box-sizing: border-box;
background-clip: padding-box;
width: 200px;
height: 200px;
border-radius: 100px;
border: 4px solid rgba(255, 255, 255, 0.1);
-webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), #000000 90%);
transform-origin: 50% 60%;
transform: perspective(200px) rotateX(66deg);
animation: spinner-wiggle 1.2s infinite;
}
.spinner:before,
.spinner:after {
content: "";
position: absolute;
margin: -4px;
box-sizing: inherit;
width: inherit;
height: inherit;
border-radius: inherit;
opacity: .05;
border: inherit;
border-color: transparent;
animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}
.spinner:before {
border-top-color: #e4ebf1;
}
.spinner:after {
border-top-color: #d90c37;
animation-delay: 0.3s;
}
@keyframes spinner-spin {
100% {
transform: rotate(360deg);
}
}
@keyframes spinner-fade {
20% {
opacity: .1;
}
40% {
opacity: 1;
}
60% {
opacity: .1;
}
} | 0.360151 | 0.119562 |
body {
font-family: "Proxima Nova", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}
p, li {
font-size: 16px !important;
line-height: 24px !important;
}
/* Made by MailChimp */
body,
#bodyTable,
#bodyCell {
height: 100% !important;
margin: 0;
padding: 0;
width: 100% !important;
}
table {
border-collapse: collapse;
}
img,
a img {
border: 0;
outline: none;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
padding-top: 15px;
}
p {
margin: 1em 0;
padding: 0;
}
a,
a:hover {
color: #27c0dc;
word-wrap: break-word;
text-decoration: underline;
}
a:hover {
}
.ReadMsgBody {
width: 100%;
}
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
table,
td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
#outlook a {
padding: 0;
}
img {
-ms-interpolation-mode: bicubic;
}
body,
table,
td,
p,
a,
li,
blockquote {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.mcnImage {
vertical-align: bottom;
}
.mcnTextContent img {
height: auto !important;
}
/*
@tab Page
@section background style
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
*/
body,
#bodyTable {
/*@editable*/background-color: #e8eeef;
}
/*
@tab Page
@section background style
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
*/
#bodyCell {
/*@editable*/border-top: 0;
}
/*
@tab Page
@section email border
@tip Set the border for your email.
*/
#templateContainer {
/*@editable*/border: 0;
}
/*
@tab Page
@section heading 1
@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
@style heading 1
*/
h1 {
/*@editable*/color: #27c0dc !important;
display: block;
/*@editable*/font-size: 40px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -1px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 2
@tip Set the styling for all second-level headings in your emails.
@style heading 2
*/
h2 {
/*@editable*/color: #27c0dc !important;
display: block;
/*@editable*/font-size: 26px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -.75px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 3
@tip Set the styling for all third-level headings in your emails.
@style heading 3
*/
h3 {
/*@editable*/color: #606060 !important;
display: block;
/*@editable*/font-size: 18px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -.5px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 4
@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
@style heading 4
*/
h4 {
/*@editable*/color: #808080 !important;
display: block;
/*@editable*/font-size: 16px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: normal;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Preheader
@section preheader style
@tip Set the background color and borders for your email's preheader area.
*/
#templatePreheader {
/*@editable*/background-color: #ffffff;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
border-top: 4px solid #30bfd8;
}
/*
@tab Preheader
@section preheader text
@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.
*/
.preheaderContainer .mcnTextContent,
.preheaderContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 11px;
/*@editable*/line-height: 125%;
/*@editable*/text-align: left;
}
/*
@tab Preheader
@section preheader link
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
*/
.preheaderContainer .mcnTextContent a {
/*@editable*/color: #606060;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Header
@section header style
@tip Set the background color and borders for your email's header area.
*/
#templateHeader {
/*@editable*/background-color: #e8eeef;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Header
@section header text
@tip Set the styling for your email's header text. Choose a size and color that is easy to read.
*/
.headerContainer .mcnTextContent,
.headerContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-family: Helvetica;
/*@editable*/font-size: 15px;
/*@editable*/line-height: 150%;
/*@editable*/text-align: left;
}
/*
@tab Header
@section header link
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
*/
.headerContainer .mcnTextContent a {
/*@editable*/color: #6DC6DD;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Body
@section body style
@tip Set the background color and borders for your email's body area.
*/
#templateBody {
/*@editable*/background-color: #ffffff;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Body
@section body text
@tip Set the styling for your email's body text. Choose a size and color that is easy to read.
*/
.bodyContainer .mcnTextContent,
.bodyContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 15px;
/*@editable*/line-height: 150%;
/*@editable*/text-align: left;
}
/*
@tab Body
@section body link
@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.
*/
.bodyContainer .mcnTextContent a {
/*@editable*/color: #6DC6DD;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Footer
@section footer style
@tip Set the background color and borders for your email's footer area.
*/
#templateFooter {
/*@editable*/background-color: #e8eeef;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Footer
@section footer text
@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
*/
.footerContainer .mcnTextContent,
.footerContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 11px;
/*@editable*/line-height: 125%;
/*@editable*/text-align: left;
}
/*
@tab Footer
@section footer link
@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
*/
.footerContainer .mcnTextContent a {
/*@editable*/color: #606060;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
@media only screen and (max-width: 480px) {
body,
table,
td,
p,
a,
li,
blockquote {
-webkit-text-size-adjust: none !important;
}
}
@media only screen and (max-width: 480px) {
body {
width: 100% !important;
min-width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[id=bodyCell] {
padding: 10px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnBoxedTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcpreview-image-uploader] {
width: 100% !important;
display: none !important;
}
}
@media only screen and (max-width: 480px) {
img[class=mcnImage] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnImageGroupContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageGroupContent] {
padding: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageGroupBlockInner] {
padding-bottom: 0 !important;
padding-top: 0 !important;
}
}
@media only screen and (max-width: 480px) {
tbody[class=mcnImageGroupBlockOuter] {
padding-bottom: 9px !important;
padding-top: 9px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionTopContent],
table[class=mcnCaptionBottomContent] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionLeftTextContentContainer],
table[class=mcnCaptionRightTextContentContainer],
table[class=mcnCaptionLeftImageContentContainer],
table[class=mcnCaptionRightImageContentContainer],
table[class=mcnImageCardLeftTextContentContainer],
table[class=mcnImageCardRightTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardLeftImageContent],
td[class=mcnImageCardRightImageContent] {
padding-right: 18px !important;
padding-left: 18px !important;
padding-bottom: 0 !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardBottomImageContent] {
padding-bottom: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardTopImageContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardLeftImageContent],
td[class=mcnImageCardRightImageContent] {
padding-right: 18px !important;
padding-left: 18px !important;
padding-bottom: 0 !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardBottomImageContent] {
padding-bottom: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardTopImageContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionLeftContentOuter] td[class=mcnTextContent],
table[class=mcnCaptionRightContentOuter] td[class=mcnTextContent] {
padding-top: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnCaptionBlockInner] table[class=mcnCaptionTopContent]:last-child td[class=mcnTextContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnBoxedTextContentColumn] {
padding-left: 18px !important;
padding-right: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnTextContent] {
padding-right: 18px !important;
padding-left: 18px !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.
*/
table[id=templateContainer],
table[id=templatePreheader],
table[id=templateHeader],
table[id=templateBody],
table[id=templateFooter] {
/*
@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.
*/
max-width: 600px !important;
/*@editable*/width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 1
@tip Make the first-level headings larger in size for better readability on small screens.
*/
h1 {
/*@editable*/font-size: 24px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 2
@tip Make the second-level headings larger in size for better readability on small screens.
*/
h2 {
/*@editable*/font-size: 20px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 3
@tip Make the third-level headings larger in size for better readability on small screens.
*/
h3 {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 4
@tip Make the fourth-level headings larger in size for better readability on small screens.
*/
h4 {
/*@editable*/font-size: 16px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Boxed Text
@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
*/
table[class=mcnBoxedTextContentContainer] td[class=mcnTextContent],
td[class=mcnBoxedTextContentContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Preheader Visibility
@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.
*/
table[id=templatePreheader] {
/*@editable*/display: block !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Preheader Text
@tip Make the preheader text larger in size for better readability on small screens.
*/
td[class=preheaderContainer] td[class=mcnTextContent],
td[class=preheaderContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 14px !important;
/*@editable*/line-height: 115% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Header Text
@tip Make the header text larger in size for better readability on small screens.
*/
td[class=headerContainer] td[class=mcnTextContent],
td[class=headerContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Body Text
@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
*/
td[class=bodyContainer] td[class=mcnTextContent],
td[class=bodyContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section footer text
@tip Make the body content text larger in size for better readability on small screens.
*/
td[class=footerContainer] td[class=mcnTextContent],
td[class=footerContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 14px !important;
/*@editable*/line-height: 115% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=footerContainer] a[class=utilityLink] {
display: block !important;
}
} | archive/mailchimp/src/style.css | body {
font-family: "Proxima Nova", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}
p, li {
font-size: 16px !important;
line-height: 24px !important;
}
/* Made by MailChimp */
body,
#bodyTable,
#bodyCell {
height: 100% !important;
margin: 0;
padding: 0;
width: 100% !important;
}
table {
border-collapse: collapse;
}
img,
a img {
border: 0;
outline: none;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
padding-top: 15px;
}
p {
margin: 1em 0;
padding: 0;
}
a,
a:hover {
color: #27c0dc;
word-wrap: break-word;
text-decoration: underline;
}
a:hover {
}
.ReadMsgBody {
width: 100%;
}
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
table,
td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
#outlook a {
padding: 0;
}
img {
-ms-interpolation-mode: bicubic;
}
body,
table,
td,
p,
a,
li,
blockquote {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.mcnImage {
vertical-align: bottom;
}
.mcnTextContent img {
height: auto !important;
}
/*
@tab Page
@section background style
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
*/
body,
#bodyTable {
/*@editable*/background-color: #e8eeef;
}
/*
@tab Page
@section background style
@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
*/
#bodyCell {
/*@editable*/border-top: 0;
}
/*
@tab Page
@section email border
@tip Set the border for your email.
*/
#templateContainer {
/*@editable*/border: 0;
}
/*
@tab Page
@section heading 1
@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
@style heading 1
*/
h1 {
/*@editable*/color: #27c0dc !important;
display: block;
/*@editable*/font-size: 40px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -1px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 2
@tip Set the styling for all second-level headings in your emails.
@style heading 2
*/
h2 {
/*@editable*/color: #27c0dc !important;
display: block;
/*@editable*/font-size: 26px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -.75px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 3
@tip Set the styling for all third-level headings in your emails.
@style heading 3
*/
h3 {
/*@editable*/color: #606060 !important;
display: block;
/*@editable*/font-size: 18px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: -.5px;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Page
@section heading 4
@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
@style heading 4
*/
h4 {
/*@editable*/color: #808080 !important;
display: block;
/*@editable*/font-size: 16px;
/*@editable*/font-style: normal;
/*@editable*/font-weight: bold;
/*@editable*/line-height: 125%;
/*@editable*/letter-spacing: normal;
margin: 0;
/*@editable*/text-align: left;
}
/*
@tab Preheader
@section preheader style
@tip Set the background color and borders for your email's preheader area.
*/
#templatePreheader {
/*@editable*/background-color: #ffffff;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
border-top: 4px solid #30bfd8;
}
/*
@tab Preheader
@section preheader text
@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.
*/
.preheaderContainer .mcnTextContent,
.preheaderContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 11px;
/*@editable*/line-height: 125%;
/*@editable*/text-align: left;
}
/*
@tab Preheader
@section preheader link
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
*/
.preheaderContainer .mcnTextContent a {
/*@editable*/color: #606060;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Header
@section header style
@tip Set the background color and borders for your email's header area.
*/
#templateHeader {
/*@editable*/background-color: #e8eeef;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Header
@section header text
@tip Set the styling for your email's header text. Choose a size and color that is easy to read.
*/
.headerContainer .mcnTextContent,
.headerContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-family: Helvetica;
/*@editable*/font-size: 15px;
/*@editable*/line-height: 150%;
/*@editable*/text-align: left;
}
/*
@tab Header
@section header link
@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
*/
.headerContainer .mcnTextContent a {
/*@editable*/color: #6DC6DD;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Body
@section body style
@tip Set the background color and borders for your email's body area.
*/
#templateBody {
/*@editable*/background-color: #ffffff;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Body
@section body text
@tip Set the styling for your email's body text. Choose a size and color that is easy to read.
*/
.bodyContainer .mcnTextContent,
.bodyContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 15px;
/*@editable*/line-height: 150%;
/*@editable*/text-align: left;
}
/*
@tab Body
@section body link
@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.
*/
.bodyContainer .mcnTextContent a {
/*@editable*/color: #6DC6DD;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
/*
@tab Footer
@section footer style
@tip Set the background color and borders for your email's footer area.
*/
#templateFooter {
/*@editable*/background-color: #e8eeef;
/*@editable*/border-top: 0;
/*@editable*/border-bottom: 0;
}
/*
@tab Footer
@section footer text
@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
*/
.footerContainer .mcnTextContent,
.footerContainer .mcnTextContent p {
/*@editable*/color: #606060;
/*@editable*/font-size: 11px;
/*@editable*/line-height: 125%;
/*@editable*/text-align: left;
}
/*
@tab Footer
@section footer link
@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
*/
.footerContainer .mcnTextContent a {
/*@editable*/color: #606060;
/*@editable*/font-weight: normal;
/*@editable*/text-decoration: underline;
}
@media only screen and (max-width: 480px) {
body,
table,
td,
p,
a,
li,
blockquote {
-webkit-text-size-adjust: none !important;
}
}
@media only screen and (max-width: 480px) {
body {
width: 100% !important;
min-width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[id=bodyCell] {
padding: 10px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnBoxedTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcpreview-image-uploader] {
width: 100% !important;
display: none !important;
}
}
@media only screen and (max-width: 480px) {
img[class=mcnImage] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnImageGroupContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageGroupContent] {
padding: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageGroupBlockInner] {
padding-bottom: 0 !important;
padding-top: 0 !important;
}
}
@media only screen and (max-width: 480px) {
tbody[class=mcnImageGroupBlockOuter] {
padding-bottom: 9px !important;
padding-top: 9px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionTopContent],
table[class=mcnCaptionBottomContent] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionLeftTextContentContainer],
table[class=mcnCaptionRightTextContentContainer],
table[class=mcnCaptionLeftImageContentContainer],
table[class=mcnCaptionRightImageContentContainer],
table[class=mcnImageCardLeftTextContentContainer],
table[class=mcnImageCardRightTextContentContainer] {
width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardLeftImageContent],
td[class=mcnImageCardRightImageContent] {
padding-right: 18px !important;
padding-left: 18px !important;
padding-bottom: 0 !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardBottomImageContent] {
padding-bottom: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardTopImageContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardLeftImageContent],
td[class=mcnImageCardRightImageContent] {
padding-right: 18px !important;
padding-left: 18px !important;
padding-bottom: 0 !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardBottomImageContent] {
padding-bottom: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnImageCardTopImageContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
table[class=mcnCaptionLeftContentOuter] td[class=mcnTextContent],
table[class=mcnCaptionRightContentOuter] td[class=mcnTextContent] {
padding-top: 9px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnCaptionBlockInner] table[class=mcnCaptionTopContent]:last-child td[class=mcnTextContent] {
padding-top: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnBoxedTextContentColumn] {
padding-left: 18px !important;
padding-right: 18px !important;
}
}
@media only screen and (max-width: 480px) {
td[class=mcnTextContent] {
padding-right: 18px !important;
padding-left: 18px !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.
*/
table[id=templateContainer],
table[id=templatePreheader],
table[id=templateHeader],
table[id=templateBody],
table[id=templateFooter] {
/*
@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.
*/
max-width: 600px !important;
/*@editable*/width: 100% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 1
@tip Make the first-level headings larger in size for better readability on small screens.
*/
h1 {
/*@editable*/font-size: 24px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 2
@tip Make the second-level headings larger in size for better readability on small screens.
*/
h2 {
/*@editable*/font-size: 20px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 3
@tip Make the third-level headings larger in size for better readability on small screens.
*/
h3 {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section heading 4
@tip Make the fourth-level headings larger in size for better readability on small screens.
*/
h4 {
/*@editable*/font-size: 16px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Boxed Text
@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
*/
table[class=mcnBoxedTextContentContainer] td[class=mcnTextContent],
td[class=mcnBoxedTextContentContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Preheader Visibility
@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.
*/
table[id=templatePreheader] {
/*@editable*/display: block !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Preheader Text
@tip Make the preheader text larger in size for better readability on small screens.
*/
td[class=preheaderContainer] td[class=mcnTextContent],
td[class=preheaderContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 14px !important;
/*@editable*/line-height: 115% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Header Text
@tip Make the header text larger in size for better readability on small screens.
*/
td[class=headerContainer] td[class=mcnTextContent],
td[class=headerContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section Body Text
@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
*/
td[class=bodyContainer] td[class=mcnTextContent],
td[class=bodyContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 18px !important;
/*@editable*/line-height: 125% !important;
}
}
@media only screen and (max-width: 480px) {
/*
@tab Mobile Styles
@section footer text
@tip Make the body content text larger in size for better readability on small screens.
*/
td[class=footerContainer] td[class=mcnTextContent],
td[class=footerContainer] td[class=mcnTextContent] p {
/*@editable*/font-size: 14px !important;
/*@editable*/line-height: 115% !important;
}
}
@media only screen and (max-width: 480px) {
td[class=footerContainer] a[class=utilityLink] {
display: block !important;
}
} | 0.265595 | 0.057812 |
.ticket-link a, .sold-out, .cancelled, .postponed, .free, .tickets-at-the-door, .future-sale a, .on-sale-soon, .custom {
display:block;
border:solid 1px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
padding:5px;
margin:0 0 5px 0;
text-align:center;
}
span.settime {font-size:0.85em;}
/*Clears*/
.list-view-item:after, .list-view-heading:after, .event-detail .event-info:after, .share-text, .tfly-calendar .calendar-list-flip:after, .event-detail .related-events:after, .event-detail .artist-boxes .artist-box-headliner:after, .event-detail .artist-boxes .artist-box-support:after, .event-detail .artist-boxes ul.links:after, .event-detail .sponsor-info:after {
content:" ";
display:block;
clear:both;
}
.list-view-item, .event-detail .event-info, .share-text, .list-view-heading, .calendar-list-flip {
height:1%;
}
/*END GLOBAL*/
/*LIST VIEW*/
.list-view {}
.list-view .list-view-title {
float:left;
display:inline;
}
.list-view .calendar-link {
float:right;
display:inline;
}
.list-view-item {
border:solid 1px gray;
margin-bottom:-1px;
border-collapse:collapse;
position:relative;
padding:10px;
}
.list-view-details {
float:left;
max-width:45%;
}
.list-view img {
float:left;
margin:0 10px 0 0;
}
.list-view .ticket-price {
float:right;
text-align:center;
}
.list-view .ticket-link a, .list-view .sold-out, .list-view .cancelled, .list-view .postponed, .list-view .free, .list-view .tickets-at-the-door, .list-view .future-sale a, .list-view .on-sale-soon, .list-view .custom {
width:100px;
}
.list-view ul.pages, .venue-list ul.pages {
list-style-type: none;
background: none;
margin: 0px;
padding: 0px;
float: right;
}
.list-view ul.pages li, .venue-list ul.pages li {
list-style-type: none;
background: none;
margin: 0px 5px;
padding: 0px;
display: inline;
}
.list-view .more-info, .list-view .city-state {display: none;}
/*END LIST VIEW*/
/*VENUE LISTING*/
.venue-list-item {
padding: 0 0 15px 0;
}
.venue-list-details {
float:left;
}
.map-directions {
float:right;
}
.venue-list-item .map {
width: 200px;
height: 133px;
}
.tfly-venuedetails-map {
width: auto;
height: 150px;
}
/*END VENUE LISTING*/
/*EVENT DETAIL*/
.event-detail {
position:relative;
width:100%;
}
.event-detail img {
float:right;
}
.event-detail .event-info {
padding:0 320px 0 0px;
margin:0 0 20px 0;
overflow:visible;
}
.event-detail .ticket-link a, .event-detail .sold-out, .event-detail .cancelled, .event-detail .postponed, .event-detail .free, .event-detail .tickets-at-the-door, .event-detail .future-sale a, .event-detail .on-sale-soon, .event-detail .custom {
width:100px;
text-align:center;
}
.share-facebook a, .share-twitter a , .share-email a {
display:block;
width:45px;
height:44px;
text-indent:-10000px;
overflow:hidden;
float:left;
}
.share-facebook a {
background:url(images/facebook.png) no-repeat;
margin:0 10px 5px 0;
}
.share-twitter a {
background:url(images/twitter.png) no-repeat;
margin:0 10px 5px 0;
}
.share-email a {
background:url(images/email-icon.png) no-repeat;
}
.share-text{
display:block;
clear:left;
margin:0 0 10px 0;
}
/*Share Plus*/
.share-plus .share-facebook a,.share-plus .share-twitter a,.share-plus .share-email a,.share-plus .share-gplus{width:32px;height:20px;float:left;margin:0 3px 0 0;}
.share-plus .share-facebook a{background:url('images/tf-share-plus-sprite.svg') no-repeat -66px 0;}
.share-plus .share-facebook a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px 0;}
.share-plus .share-facebook a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0 0;}
.share-plus .share-twitter a{background:url(images/tf-share-plus-sprite.svg) no-repeat -66px -21px;}
.share-plus .share-twitter a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px -21px;}
.share-plus .share-twitter a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -21px;}
.share-plus .share-email a{background:url(images/tf-share-plus-sprite.svg) no-repeat -66px -42px;}
.share-plus .share-email a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px -42px;}
.share-plus .share-email a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -42px;}
.share-plus .share-gplus {background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -106px;text-indent:0;}
/*Calendar*/
.calendar-sync {position:relative;}
.calendar-sync:after{content:"";display:block;clear:both;}
.calendar-sync .ical-sync a,.calendar-sync .gcal-sync a{display:block;float:left;margin:0 4px 0 0;width:19px;height:19px;position:relative;}
.calendar-sync .ical-sync a{background:url(images/tf-share-plus-sprite.svg) no-repeat -42px -86px;}
.calendar-sync .ical-sync a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -21px -86px;}
.calendar-sync .ical-sync a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -86px;}
.calendar-sync .gcal-sync a{background:url(images/tf-share-plus-sprite.svg) no-repeat -40px -63px;}
.calendar-sync .gcal-sync a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -20px -63px;}
.calendar-sync .gcal-sync a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -63px;}
/*Tooltips*/
.tf-tooltip span{margin-left:-999em;position:absolute;opacity:0.5;border:solid #ccc 1px;}
.tf-tooltip:hover span{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:11px;font-family:Helvetica,Arial sans-serif;background:#fff;position:absolute;left:0px;top:22px;z-index:99;margin-left:0;padding:5px;opacity:.9;transition:opacity .3s ease-in;-moz-transition:opacity .3s ease-in;-webkit-transition:opacity .3s ease-in;color:#333;text-decoration:none;white-space: nowrap; text-shadow:none; }
.tf-tooltip:link{text-decoration:none}
/* hide addthis promo div */
div#at_promo { display:none !important; }
.event-detail .related-events {
margin-bottom: 10px;
}
.event-detail .related-events-item {
display: inline;
float: left;
margin: 10px;
width: 200px;
}
.event-detail .related-events-item img {
float:left;
margin:0 4px 0 0;
}
.event-detail .related-events-item .item-details {
margin:0 0 0 104px;
line-height: 12px;
font-size: 9px;
vertical-align: text-top;
}
.event-detail .related-events-item .item-details .headliners {
font-weight: bold;
}
.event-detail .artist-boxes .artist-name, .event-detail .artist-boxes .artist-start-time {
font-weight: bold;
}
.event-detail .artist-boxes .artist-box-headliner, .event-detail .artist-boxes .artist-box-support, .attraction-detail .artist-boxes .artist-box-headliner {
margin-bottom: 25px;
}
.event-detail .artist-boxes img.bio-image-right {
position:relative;
float:right;
margin: 0 0 15px 15px;
}
.event-detail .artist-boxes img.bio-image-no-float {
position:relative;
float:none;
}
.event-detail .artist-boxes ul.links, .attraction-detail .artist-boxes ul.links, .artist-boxes ul.links {
list-style-type: none;
margin-bottom: 10px;
}
.event-detail .artist-boxes ul.links li, .attraction-detail .artist-boxes ul.links li {
float: left;
font-weight: bold;
padding-right: 10px;
}
.event-detail .artist-boxes ul.links li a, .attraction-detail .artist-boxes ul.links li a {
display:block;
text-indent: 12px;
background-color: transparent;
background-image: url("images/list-arrow.png");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: left center;
}
/* EVENT DETAIL - Social Share Buttons */
.event-detail .stButton .stBubble_count {
height: 19px;
margin-top: 8px;
line-height: 8px;
font-weight: normal;
font-family: Arial, sans-serif;
font-size:15px;
/* width: 62px;*/
-moz-border-radius: 0px 0px 3px 3px;
-webkit-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px;
}
.event-detail .st_email_vcount {
margin-left:-5px;
}
/*.stButton .st-twitter-counter, .stButton .st-facebook-counter {
width: 62px;
}*/
.event-detail .stButton .stBubble {
background: url(http://w.sharethis.com/share4x/images/bubble_arrow_below.png) no-repeat 27px 38px;
}
.event-detail .st_twitter_vcount .stBubble,.st_email_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Twitter_arrow_below.png");
}
.event-detail .st_facebook_vcount .stBubble, .st_fb_like_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Facebook_arrow_below.png");
}
.event-detail .st_email_vcount .stBubble {
width: 53px;
background: url(http://w.sharethis.com/share4x/images/bubble_arrow_below.png) no-repeat 23px 37px;
}
.event-detail .st_email_vcount .stBubble_count {
width: 51px;
margin-top:8px;
}
.event-detail .st_email_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Twitter_arrow_below.png");
}
.event-detail .stButton .stBubble + .stButton_gradient {
min-width: 47px;
}
.event-detail .stButton .stBubble {
height: 45px;
}
.event-detail span.chicklets.email {
width:20px;
font-size:10px;
text-indent:-3px;
}
/* EVENT DETAIL - Lyte Integration */
#tflyLyteDialog h1.headliners,
#tflyLyteDialog h2.venue, #tflyLyteDialog h2.dates,
#tflyLyteDialog p,
#tflyLyteDialog .sold-out,
#tflyLyteDialog h3 a {
font-family: 'Source Sans Pro', sans-serif !important;
font-weight:normal !important;
text-transform: none !important;
letter-spacing:0 !important;
}
#tflyLyteDialog {padding:20px 28px 28px;}
.lyte-event-info {
width:330px;
clear: both;
}
#tflyLyteDialog h1.headliners {
font-size: 22px !important;
font-weight:normal !important;
line-height: 1.45 !important;
color: #535663 !important;
margin-bottom: 0.3em;
}
#tflyLyteDialog h2.venue, #tflyLyteDialog h2.dates {
font-size: 16px !important;
color:#9195A2 !important;
font-weight: normal !important;
}
#tflyLyteDialog h2.dates {margin-bottom:28px;}
#tflyLyteDialog p {
font-size: 16px !important;
line-height: 1.8 !important;
margin: 0 0 28px;
color:#6A6D7C !important;
}
#tflyLyteDialog .sold-out {border:0;padding:0;margin:0}
#tflyLyteDialog h3 a {
background-color: #17C284 !important;
display: inline-block;
text-align: center;
padding: 13px 0px 13px;
color: #FFFFFF !important;
text-decoration: none;
font-weight: normal !important;
font-size: 18px !important;
width: 100%;
clear: both;
line-height: 1 !important;
position: relative;
border: none;
outline: none;
margin: 0;
-webkit-transition: background-color .15s ease-in-out;
-moz-transition: background-color .15s ease-in-out;
-o-transition: background-color .15s ease-in-out;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
#tflyLyteDialog h3 a:hover, #tflyLyteDialog h3 a:focus {
background-color: #1DE099 !important;
color: #FFFFFF !important;
text-decoration: none;
}
/* ATTRACTION DETAIL */
.attraction-header {padding:20px;margin-bottom:16px;overflow:auto;}
.attraction-header img {float:left;margin-right:20px;}
.attraction-detail .list-view-item img {display:none;}
.attraction-header .headliners {clear:none;font-size:2em;margin-bottom:1em;}
.attraction-header h2.dates {clear:none;font-size:1.2em;line-height:2;margin-bottom:1em;}
.attraction-header h4.share-text {top:0;}
.attraction-header #toolbox {float:left;clear:none;padding-top:0;display:block;}
.attraction-header span.start.dtstart, .attraction-header span.end.dtend {display:inline-block;}
.attraction-header .share-facebook,
.attraction-header .share-twitter {
float: left;
position: relative;
color:#fff;
}
.attraction-header .share-facebook a:before,
.attraction-header .share-twitter a:before {
font-family: 'ticketfly';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height:1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\e900";
font-size:24px;
text-indent:inherit;
position:relative;
right:14px;
top:5px;
}
.attraction-header .share-facebook a:before {content: "\e900";}
.attraction-header .share-twitter a:before {content: "\e909";}
.attraction-header .share-facebook a,
.attraction-header .share-twitter a {
font-family: "Akkurat-Pro", sans-serif;
text-indent: inherit !important;
color:#fff;
font-size:14px;
padding:0px 40px 5px 20px;
height:auto;
width:auto;
border-radius:3px;
}
.attraction-header .share-facebook a {background:#3B5998;}
.attraction-header .share-twitter a {background:#55ACEE;}
.attraction-header .share-facebook a:hover,
.attraction-header .share-twitter a:hover {background-image:none;text-decoration:none;}
.attraction-header .share-facebook a:hover {background-color:#2E4A7A;}
.attraction-header .share-twitter a:hover {background-color:#3990C6;}
.attraction-detail .list-view p {text-align:center;padding:10px;}
.attraction-detail .no-events {font-style:italic;}
/* Layout helpers
----------------------------------*/
/* Orig. from JQuery CSS */
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
.ui-corner-all { -moz-border-radius: 6px/*{cornerRadius}*/; -webkit-border-radius: 6px/*{cornerRadius}*/; border-radius: 6px/*{cornerRadius}*/; }
/* Icons
----------------------------------*/
/* Orig. from JQuery CSS */
/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
/* EVENT DETAIL - OVERLAY (Artist URLs, Video, etc.) */
.ui-dialog {
padding: 5px;
box-shadow: 1px 2px 6px #111;
-webkit-box-shadow: 1px 2px 6px #111;
-moz-box-shadow: 1px 2px 6px #111;
}
.ui-dialog .ui-dialog-content {
padding: 0px;
position: relative;
border: 0;
background: none;
overflow: auto;
}
/* Misc visuals
----------------------------------*/
/* Orig. from JQuery CSS */
/* Overlays */
.ui-widget-overlay { position:fixed;top:0;left:0;width:100%;height:100%;background-color: #000000;opacity:0.4; }
/* Dialog
----------------------------------*/
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0;}
.ui-dialog {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
outline: 0;
background: white;
border: 1px solid #ddd;
-moz-border-radius: 3px/*{cornerRadius}*/;
-webkit-border-radius: 3px/*{cornerRadius}*/;
border-radius: 3px/*{cornerRadius}*/;
}
.ui-dialog .ui-dialog-titlebar {
/* padding: .4em 1em; */
position: absolute;
bottom: 0;
}
.ui-dialog .ui-dialog-title {
float: left;
margin: .1em 0;
white-space: nowrap;
width: 90%;
overflow: hidden;
text-overflow: ellipsis;
display: none;
}
.ui-dialog .ui-dialog-titlebar-close {
background: url(images/close-icon.svg) no-repeat center bottom #fff;
background-size: 19px auto;
position: absolute;
right:50%;
width: 20px;
margin: -25px 0 0 0;
padding: 1px;
height: 20px;
border:0;
cursor: pointer;
}
.ui-dialog .ui-dialog-titlebar-close:focus {outline:none;}
.ui-dialog button {box-shadow:none;}
.ui-dialog .ui-dialog-buttonpane {
text-align: left;
border-width: 1px 0 0 0;
background-image: none;
margin-top: .5em;
padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
margin: .5em .4em .5em 0;
cursor: pointer;
}
.ui-dialog .ui-resizable-se {
width: 12px;
height: 12px;
right: -5px;
bottom: -5px;
background-position: 16px 16px;
}
.ui-dialog .ui-dialog-titlebar-close span { text-indent: -9999px; display: block; }
.ui-front {z-index: 100;}
/* FB Share dialogs */
body .tfly-share-dialog.ui-dialog {box-sizing:content-box !important;border:1px solid #ddd !important;border-radius:3px !important;}
body .tfly-share-dialog.ui-dialog.ui-widget-content {padding:5px;}
body .tfly-share-dialog.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:focus {outline:none;}
/* Watch and Listen dialogs */
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable {padding-bottom:30px;}
.ui-draggable .ui-dialog-titlebar { cursor:move;width:100%; }
/* Artist Links dialogs */
.fancy-close .ui-dialog-content {
padding-top: 0px!important;
margin-bottom: 30px !important;
}
.fancy-close .ui-dialog-titlebar {
position: absolute;
bottom: 0;
width:96%;
width:calc(100% - 10px);
height: 26px;
padding: 0;
}
.fancy-close .ui-dialog-title {display:none;}
.fancy-close .ui-dialog-titlebar-close {
width: 20px;
margin: 0px 0px 0 0;
padding: 1px;
height: 22px;
border: 0 !important;
top: initial;
}
.fancy-close .ui-button {
background: url(images/close-icon.svg) no-repeat center bottom #fff;
background-size: 19px auto;
position: absolute;
left: 50%;
margin-left: -11px;
}
.fancy-close .ui-dialog-content {overflow: visible;}
/* Lyte modal */
.ui-dialog.lyte-soldout-dialog {
border:0;
box-shadow:none;
-webkit-box-shadow:none;
-moz-box-shadow:none;
-moz-border-radius: 6px/*{cornerRadius}*/;
-webkit-border-radius: 6px/*{cornerRadius}*/;
border-radius: 6px/*{cornerRadius}*/;
z-index: 100000;
max-width:96%;
}
.lyte-soldout-dialog .ui-dialog-titlebar {top:28px;right:30px;width:20px;height:20px;position:absolute;}
.lyte-soldout-dialog .ui-dialog-titlebar-close {
background: url(images/lyte-x.svg) no-repeat center bottom;
background-size: 20px 20px;
position: absolute;
width: 20px;
height: 20px;
margin: 0px 0 0 0;
padding: 1px;
right: 0;
z-index: 100000;
}
@media screen and (max-device-width: 736px) {
.ui-dialog.lyte-soldout-dialog {width:90% !important;}
.lyte-event-info {width: 90%;width: calc(100% - 30px);clear: both;}
}
/* jQ UI CSS end*/
div#fancy_div {
background: #fff!important;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
a#fancy_left, a#fancy_right {display: none!important;}
/* EDP ARTIST LINKS */
ul.tfly-more {list-style-type:none;margin:0px;padding:0px;width:100%; }
ul.tfly-more li {
margin-top:5px;
height: 26px;
margin-left: 0px;
padding-right: 10px;
padding-left: 10px;
position: relative;
visibility: visible;
}
/* tfly-brand icon font */
@font-face {
font-family: 'ticketfly';
src: url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.eot');
src: url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.eot') format('embedded-opentype'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.ttf') format('truetype'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.woff') format('woff'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.svg') format('svg');
font-weight: normal;
font-style: normal;
}
ul.tfly-more li a {
text-decoration: none;
padding-top: 5px;
display: block;
color: #535353;
}
ul.tfly-more a {
font-family: "Helvetica", Arial, sans-serif;
font-size: 11px;
color: #666666;
text-decoration: none;
border: none;
}
ul.tfly-more a:hover { color: #000; }
ul.tfly-more a:focus, ul.tfly-more, ul.tfly-more li {border:none;outline:none;}
ul.tfly-more li.web a:before,
ul.tfly-more li.facebook a:before,
ul.tfly-more li.twitter a:before,
ul.tfly-more li.instagram a:before,
ul.tfly-more li.soundcloud a:before,
ul.tfly-more li.bandcamp a:before,
ul.tfly-more li.buy-music a:before,
ul.tfly-more li.watch-video a:before,
ul.tfly-more li.audio-link a:before,
span.link-slide:before{
font-family: 'ticketfly';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position:relative;
}
/* Modal links */
ul.tfly-more li.web a:before,
ul.tfly-more li.facebook a:before,
ul.tfly-more li.twitter a:before,
ul.tfly-more li.instagram a:before,
ul.tfly-more li.soundcloud a:before,
ul.tfly-more li.bandcamp a:before,
ul.tfly-more li.buy-music a:before {
font-size:18px;
padding-right: 7px;
top: 3.5px;
}
ul.tfly-more li.web a:before {content: "\e911";}
ul.tfly-more li.facebook a:before {content: "\e910";}
ul.tfly-more li.twitter a:before {content: "\e914";}
ul.tfly-more li.instagram a:before {content: "\e91d";}
ul.tfly-more li.soundcloud a:before {content: "\e91f";}
ul.tfly-more li.bandcamp a:before {content: "\e91c";}
ul.tfly-more li.buy-music a:before {content: "\e912";}
/* inline links and icons */
ul.tfly-more.inline-links, ul.tfly-more.inline-icons {margin: 0px 0px 8px 0px;padding:0px;}
ul.tfly-more.inline-links li a:hover, ul.tfly-more.inline-icons li a:hover {opacity:0.8;}
/* inline-links */
.inline-links-wrap {white-space:nowrap;overflow:hidden;position:relative;max-width:100%;}
ul.tfly-more.inline-links, span.link-slide {display:inline-block;position:relative;}
span.link-slide {width:20px;height:20px;background:#fff;right:30px;cursor:pointer;padding:0 16px;}
span.link-slide:before {content: "\e932";}
div.slide-return span.link-slide:before {content: "\e931" !important;}
div.inline-links-wrap ul.inline-links {right: 0; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
ul.tfly-more.inline-links li {display:inline-block;padding: 0 10px 0 3px;height:auto;}
ul.tfly-more.inline-links li a {font-size:12px;padding-top:0;color:inherit;}
ul.tfly-more.inline-links li.web a:before,
ul.tfly-more.inline-links li.facebook a:before,
ul.tfly-more.inline-links li.twitter a:before,
ul.tfly-more.inline-links li.instagram a:before,
ul.tfly-more.inline-links li.bandcamp a:before,
ul.tfly-more.inline-links li.buy-music a:before,
ul.tfly-more.inline-links li.watch-video a:before,
ul.tfly-more.inline-links li.audio-link a:before {
font-size:20px;
padding-right:5px;
top:4px;
}
ul.tfly-more.inline-links li.web a:before {content: "\e906";}
ul.tfly-more.inline-links li.facebook a:before {content: "\e900"; /* font-size:13px;top:1.25px;*/ }
ul.tfly-more.inline-links li.twitter a:before {content: "\e909";}
ul.tfly-more.inline-links li.instagram a:before {content: "\e92e";}
ul.tfly-more.inline-links li.bandcamp a:before {content: "\e92d";}
ul.tfly-more.inline-links li.soundcloud a:before {content: "\e930";}
ul.tfly-more.inline-links li.buy-music a:before {content: "\e907";}
ul.tfly-more.inline-links li.watch-video a:before {content: "\e90a"; /*font-size:13px;top:1px;*/ }
ul.tfly-more.inline-links li.audio-link a:before {content: "\e90c";}
/* inline-icons */
ul.tfly-more.inline-icons li {display:inline-block;padding:0px;height:auto;}
ul.tfly-more.inline-icons li a {/* visibility:hidden; */ display:block;width:28px;padding-top:0;color:#666;font-size:0;}
ul.tfly-more.inline-icons li.buy-music a {font-size:0;}
ul.tfly-more.inline-icons li.web a:before,
ul.tfly-more.inline-icons li.facebook a:before,
ul.tfly-more.inline-icons li.twitter a:before,
ul.tfly-more.inline-icons li.instagram a:before,
ul.tfly-more.inline-icons li.bandcamp a:before,
ul.tfly-more.inline-icons li.soundcloud a:before,
ul.tfly-more.inline-icons li.buy-music a:before,
ul.tfly-more.inline-icons li.watch-video a:before,
ul.tfly-more.inline-icons li.audio-link a:before
{visibility:visible;font-size:19px;top: 0;}
ul.tfly-more.inline-icons li.web a:before {content: "\e917";}
ul.tfly-more.inline-icons li.facebook a:before {content: "\e916";}
ul.tfly-more.inline-icons li.twitter a:before {content: "\e91a";}
ul.tfly-more.inline-icons li.instagram a:before {content: "\e92a";}
ul.tfly-more.inline-icons li.bandcamp a:before {content: "\e929";}
ul.tfly-more.inline-icons li.soundcloud a:before {content: "\e92c";}
ul.tfly-more.inline-icons li.buy-music a:before {content: "\e918";}
ul.tfly-more.inline-icons li.watch-video a:before {content: "\e91b";}
ul.tfly-more.inline-icons li.audio-link a:before {content: "\e915";}
/* ticketfly-powered icon link */
[class^="icon-ticketfly"], [class*=" icon-ticketfly"] {
font-family: 'ticketfly' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
font-size:26px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
div.tfly-powered a {opacity:1;}
div.tfly-powered a:hover {text-decoration:none;opacity:0.75;}
.icon-ticketfly_lockup:before {content: "\e902";}
.icon-ticketfly_wordmark:before {content: "\e903";}
.icon-ticketfly_flying_t:before {content: "\e901";}
.icon-ticketfly_flying_t_circle:before {content: "\e904";}
.icon-ticketfly_powered_logo:before {content: "\e905";color:#8e93ad;}
.icon-ticketfly_powered_logo_black:before {content: "\e905";color:#151619;}
.icon-ticketfly_powered_logo_white:before {content: "\e905";color:#fff;}
/* END Ticketfly logo font icons */
/* Youtube video overlay */
.youtube-video {
width:500px;
height:304px;
float:left;
margin:0 20px 0 0;
}
.youtube-playlist {
float:left;
width:300px;
height:304px;
overflow-x: hidden;
overflow-y: auto;
}
.youtube-thumb {
height:64px;
width:105px;
background:white;
border:#d3d3d3 solid 1px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
position:relative;
float:left;
margin:0 10px 0 0;
}
.youtube-thumb img{
width:96px;
height:72px;
top:-4px;
left:4px;
clip:rect(8px,96px,64px,0px);
position:absolute;
}
a.youtube-playlist-link:hover {
background-color: #D1E1FA;
}
a.youtube-playlist-link {
font:12px arial,sans-serif;
color:#005ae0;
text-decoration:none;
background: #FFF;
display: block;
margin:0 0 10px 0;
}
.youtube-playlist-link:after {
content:" ";
display:block;
clear:both;
}
.youtube-video-sidebar {
margin:0;
}
.youtube-video-sidebar iframe { min-height:225px; }
.youtube-playlist-sidebar {
max-height: 200px;
overflow-x: hidden;
overflow-y: auto;
}
/* @end EVENT DETAIL - OVERLAY*/
.event-detail .sponsor-info {
float: right;
font-size: 10px;
font-weight: bold;
text-align: right;
}
/*END EVENT DETAIL*/
/*SIDEBAR WIDGETS */
.sidebar-list {
padding:10px;
}
.sidebar-list ul {
list-style:none;
margin:0;
padding:0;
}
.sidebar-list li {
margin:0;
}
.sidebar-list li a {
display:block;
}
.sidebar-list li a {
display:block;
padding:5px 0 5px 0;
}
.sidebar-list .date {
text-transform:capitalize;
}
.sidebar-list .on-sale {
font-style: italic;
display:block;
}
/*END SIDEBAR WIDGETS */
/*BEGIN CALENDAR*/
.tfly-calendar .calendar-sync {
float:right;
width:46px;
margin:0 0 0 10px;
}
.tfly-calendar .tf-tooltip:hover span {
left:-85px;
}
.tfly-calendar {
border-collapse: collapse;
}
.tfly-calendar table {
width: 100%;
border: 1px solid;
padding: 0px;
margin: 0px;
border-spacing: 0px 0px;
border-collapse: collapse;
margin-top: 10px;
}
.tfly-calendar table tr {
padding: 0px;
margin: 0px;
border: 1px solid;
}
.tfly-calendar .data .ticket-link a, .tfly-calendar .data .sold-out, .tfly-calendar .data .cancelled, .tfly-calendar .data .postponed, .tfly-calendar .data .free, .tfly-calendar .data .tickets-at-the-door, .tfly-calendar .data .future-sale a, .tfly-calendar .data .on-sale-soon, .tfly-calendar .data h1, .tfly-calendar .data h2, .tfly-calendar .data h3 {
font-size: 11px;
}
.tfly-calendar table tr td {
padding: 5px;
margin: 0px;
height: auto;
line-height: 1;
}
.tfly-calendar .one-event, .tfly-calendar .date {
padding: 0px 0px 15px 0px;
}
.tfly-calendar .last-event {
}
.tfly-calendar table tr td.data {
vertical-align: top;
width: 14%;
border: 1px solid;
margin: 0px;
}
.tfly-calendar .ticket-link a, .tfly-calendar .sold-out, .tfly-calendar .cancelled, .tfly-calendar .postponed, .tfly-calendar .free, .tfly-calendar .tickets-at-the-door, .tfly-calendar .future-sale a, .tfly-calendar .on-sale-soon {
width:50px;
text-align:center;
}
.tfly-calendar .calendar-list-flip {
float: right;
}
.tfly-calendar .calendar-list-flip a {
}
.tfly-calendar .topline-info, .tfly-calendar .start-time { display:none; }
/* BEGIN CAROUSEL */
#tfly-featured-events {
width: 100%;
padding: 5px 0px;
overflow: hidden;
height: 333px;
position: relative;
margin: 0px 0px 20px 0px;
padding: 0px;
background: #000;
}
#tfly-featured-events ul {
list-style-type: none;
padding: 0px;
margin: 0px;
}
#tfly-featured-events #grey-back {
background: #000;
z-index: 10;
position: absolute;
bottom:0px;
height: 90px;
width: 100%;
opacity: 0.4;
/* For IE 5-7 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
/* For IE 8 (and 9, 10, 11?). Don't miss the added quotes */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}
#tfly-featured-events #overlay {
z-index: 20;
position: absolute;
bottom:10px;
margin:0px 10px;
width: 100%;
/* fix colliding style in jQ lightbox CSS */
display: block;
top: auto;
height: auto;
background-color: transparent;
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
#tfly-featured-events #overlay h1 {
color: #fff;
font-size: 20px;
width: 100%;
margin: 0px 0px 10px 0px;
padding: 0px;
text-transform: capitalize;
display: block;
}
#tfly-featured-events #overlay h1 a {
color: #fff;
}
#tfly-featured-events #overlay h1 a:hover {
color: #ccc;
}
#tfly-featured-events #overlay h2 {
color: #fff;
margin: 0px 0px 0px 0px;
font-weight: normal;
font-size: 11px;
line-height:22px;
float: left;
margin-right: 10px;
}
#tfly-featured-events #overlay .ticket-link a {
width: 50px;
text-align: center;
display: block;
float: left;
font-size: 11px;
padding:2px;
color:white;
text-decoration:none;
}
#tfly-featured-events ul.nav {
position: absolute;
z-index: 10;
bottom:10px;
right:20px;
list-style-type: none;
}
#tfly-featured-events ul.nav li {
margin: 0px;
padding: 0px;
float: left;
font-size: 11px;
}
#tfly-featured-events ul.nav li a, #prev_carousel, #next_carousel {
border: 1px solid #888;
padding: 3px;
margin: 1px;
background: #666666;
text-align: center;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: block;
font-size: 11px;
}
#tfly-featured-events ul.nav li a:hover {
border: 1px solid #ccc;
}
#tfly-featured-events ul.nav li a {
color: #fff;
text-decoration: none;
}
#tfly-featured-events ul.images li {
background: none;
padding-left: 0px;
width: 100%;
margin: 0px;
}
#tfly-featured-events ul.images li a {
width: 100%;
}
#overlay-content {
display: none;
}
#tfly-featured-events ul.nav li a.selected {
background: #373737;
}
#tfly-featured-events ul li img {
width: 100%;
min-width: 100%;
max-width: 100%;
border:none;
}
#tfly-featured-events ul li img a {
width: 100%;
min-width: 100%;
max-width: 100%;
border:none;
}
/* END CAROUSEL */
/*
* CSS Styles that are needed by jScrollPane for it to operate correctly.
*
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
* may not operate correctly without them.
*/
.jspContainer
{
overflow: hidden;
position: relative;
}
.jspPane
{
position: absolute;
}
.jspVerticalBar
{
position: absolute;
top: 0;
right: 0;
width: 14px;
height: 100%;
background: red;
}
.jspHorizontalBar
{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 14px;
background: red;
}
.jspVerticalBar *,
.jspHorizontalBar *
{
margin: 0;
padding: 0;
}
.jspCap
{
display: none;
}
.jspHorizontalBar .jspCap
{
float: left;
}
.jspTrack
{
background: #dde;
position: relative;
}
.jspDrag
{
background: #bbd;
position: relative;
top: 0;
left: 0;
cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
float: left;
height: 100%;
}
.jspArrow
{
background: #50506d;
text-indent: -20000px;
display: block;
cursor: pointer;
}
.jspArrow.jspDisabled
{
cursor: default;
background: #80808d;
}
.jspVerticalBar .jspArrow
{
height: 16px;
}
.jspHorizontalBar .jspArrow
{
width: 16px;
float: left;
height: 100%;
}
.jspVerticalBar .jspArrow:focus
{
outline: none;
}
.jspCorner
{
background: #eeeef4;
float: left;
height: 100%;
}
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
margin: 0 -3px 0 0;
}
/* END jScrollPane */
/* Ticketfly Mobile Link */
#tfly-mobile-link {
clear:both;
}
/* END Ticketfly Mobile Link */ | public/sites/neumos/wp-content/plugins/ticketfly-cms/style.css | .ticket-link a, .sold-out, .cancelled, .postponed, .free, .tickets-at-the-door, .future-sale a, .on-sale-soon, .custom {
display:block;
border:solid 1px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
padding:5px;
margin:0 0 5px 0;
text-align:center;
}
span.settime {font-size:0.85em;}
/*Clears*/
.list-view-item:after, .list-view-heading:after, .event-detail .event-info:after, .share-text, .tfly-calendar .calendar-list-flip:after, .event-detail .related-events:after, .event-detail .artist-boxes .artist-box-headliner:after, .event-detail .artist-boxes .artist-box-support:after, .event-detail .artist-boxes ul.links:after, .event-detail .sponsor-info:after {
content:" ";
display:block;
clear:both;
}
.list-view-item, .event-detail .event-info, .share-text, .list-view-heading, .calendar-list-flip {
height:1%;
}
/*END GLOBAL*/
/*LIST VIEW*/
.list-view {}
.list-view .list-view-title {
float:left;
display:inline;
}
.list-view .calendar-link {
float:right;
display:inline;
}
.list-view-item {
border:solid 1px gray;
margin-bottom:-1px;
border-collapse:collapse;
position:relative;
padding:10px;
}
.list-view-details {
float:left;
max-width:45%;
}
.list-view img {
float:left;
margin:0 10px 0 0;
}
.list-view .ticket-price {
float:right;
text-align:center;
}
.list-view .ticket-link a, .list-view .sold-out, .list-view .cancelled, .list-view .postponed, .list-view .free, .list-view .tickets-at-the-door, .list-view .future-sale a, .list-view .on-sale-soon, .list-view .custom {
width:100px;
}
.list-view ul.pages, .venue-list ul.pages {
list-style-type: none;
background: none;
margin: 0px;
padding: 0px;
float: right;
}
.list-view ul.pages li, .venue-list ul.pages li {
list-style-type: none;
background: none;
margin: 0px 5px;
padding: 0px;
display: inline;
}
.list-view .more-info, .list-view .city-state {display: none;}
/*END LIST VIEW*/
/*VENUE LISTING*/
.venue-list-item {
padding: 0 0 15px 0;
}
.venue-list-details {
float:left;
}
.map-directions {
float:right;
}
.venue-list-item .map {
width: 200px;
height: 133px;
}
.tfly-venuedetails-map {
width: auto;
height: 150px;
}
/*END VENUE LISTING*/
/*EVENT DETAIL*/
.event-detail {
position:relative;
width:100%;
}
.event-detail img {
float:right;
}
.event-detail .event-info {
padding:0 320px 0 0px;
margin:0 0 20px 0;
overflow:visible;
}
.event-detail .ticket-link a, .event-detail .sold-out, .event-detail .cancelled, .event-detail .postponed, .event-detail .free, .event-detail .tickets-at-the-door, .event-detail .future-sale a, .event-detail .on-sale-soon, .event-detail .custom {
width:100px;
text-align:center;
}
.share-facebook a, .share-twitter a , .share-email a {
display:block;
width:45px;
height:44px;
text-indent:-10000px;
overflow:hidden;
float:left;
}
.share-facebook a {
background:url(images/facebook.png) no-repeat;
margin:0 10px 5px 0;
}
.share-twitter a {
background:url(images/twitter.png) no-repeat;
margin:0 10px 5px 0;
}
.share-email a {
background:url(images/email-icon.png) no-repeat;
}
.share-text{
display:block;
clear:left;
margin:0 0 10px 0;
}
/*Share Plus*/
.share-plus .share-facebook a,.share-plus .share-twitter a,.share-plus .share-email a,.share-plus .share-gplus{width:32px;height:20px;float:left;margin:0 3px 0 0;}
.share-plus .share-facebook a{background:url('images/tf-share-plus-sprite.svg') no-repeat -66px 0;}
.share-plus .share-facebook a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px 0;}
.share-plus .share-facebook a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0 0;}
.share-plus .share-twitter a{background:url(images/tf-share-plus-sprite.svg) no-repeat -66px -21px;}
.share-plus .share-twitter a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px -21px;}
.share-plus .share-twitter a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -21px;}
.share-plus .share-email a{background:url(images/tf-share-plus-sprite.svg) no-repeat -66px -42px;}
.share-plus .share-email a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -33px -42px;}
.share-plus .share-email a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -42px;}
.share-plus .share-gplus {background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -106px;text-indent:0;}
/*Calendar*/
.calendar-sync {position:relative;}
.calendar-sync:after{content:"";display:block;clear:both;}
.calendar-sync .ical-sync a,.calendar-sync .gcal-sync a{display:block;float:left;margin:0 4px 0 0;width:19px;height:19px;position:relative;}
.calendar-sync .ical-sync a{background:url(images/tf-share-plus-sprite.svg) no-repeat -42px -86px;}
.calendar-sync .ical-sync a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -21px -86px;}
.calendar-sync .ical-sync a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -86px;}
.calendar-sync .gcal-sync a{background:url(images/tf-share-plus-sprite.svg) no-repeat -40px -63px;}
.calendar-sync .gcal-sync a:hover{background:url(images/tf-share-plus-sprite.svg) no-repeat -20px -63px;}
.calendar-sync .gcal-sync a:active{background:url(images/tf-share-plus-sprite.svg) no-repeat 0px -63px;}
/*Tooltips*/
.tf-tooltip span{margin-left:-999em;position:absolute;opacity:0.5;border:solid #ccc 1px;}
.tf-tooltip:hover span{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:11px;font-family:Helvetica,Arial sans-serif;background:#fff;position:absolute;left:0px;top:22px;z-index:99;margin-left:0;padding:5px;opacity:.9;transition:opacity .3s ease-in;-moz-transition:opacity .3s ease-in;-webkit-transition:opacity .3s ease-in;color:#333;text-decoration:none;white-space: nowrap; text-shadow:none; }
.tf-tooltip:link{text-decoration:none}
/* hide addthis promo div */
div#at_promo { display:none !important; }
.event-detail .related-events {
margin-bottom: 10px;
}
.event-detail .related-events-item {
display: inline;
float: left;
margin: 10px;
width: 200px;
}
.event-detail .related-events-item img {
float:left;
margin:0 4px 0 0;
}
.event-detail .related-events-item .item-details {
margin:0 0 0 104px;
line-height: 12px;
font-size: 9px;
vertical-align: text-top;
}
.event-detail .related-events-item .item-details .headliners {
font-weight: bold;
}
.event-detail .artist-boxes .artist-name, .event-detail .artist-boxes .artist-start-time {
font-weight: bold;
}
.event-detail .artist-boxes .artist-box-headliner, .event-detail .artist-boxes .artist-box-support, .attraction-detail .artist-boxes .artist-box-headliner {
margin-bottom: 25px;
}
.event-detail .artist-boxes img.bio-image-right {
position:relative;
float:right;
margin: 0 0 15px 15px;
}
.event-detail .artist-boxes img.bio-image-no-float {
position:relative;
float:none;
}
.event-detail .artist-boxes ul.links, .attraction-detail .artist-boxes ul.links, .artist-boxes ul.links {
list-style-type: none;
margin-bottom: 10px;
}
.event-detail .artist-boxes ul.links li, .attraction-detail .artist-boxes ul.links li {
float: left;
font-weight: bold;
padding-right: 10px;
}
.event-detail .artist-boxes ul.links li a, .attraction-detail .artist-boxes ul.links li a {
display:block;
text-indent: 12px;
background-color: transparent;
background-image: url("images/list-arrow.png");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: left center;
}
/* EVENT DETAIL - Social Share Buttons */
.event-detail .stButton .stBubble_count {
height: 19px;
margin-top: 8px;
line-height: 8px;
font-weight: normal;
font-family: Arial, sans-serif;
font-size:15px;
/* width: 62px;*/
-moz-border-radius: 0px 0px 3px 3px;
-webkit-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px;
}
.event-detail .st_email_vcount {
margin-left:-5px;
}
/*.stButton .st-twitter-counter, .stButton .st-facebook-counter {
width: 62px;
}*/
.event-detail .stButton .stBubble {
background: url(http://w.sharethis.com/share4x/images/bubble_arrow_below.png) no-repeat 27px 38px;
}
.event-detail .st_twitter_vcount .stBubble,.st_email_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Twitter_arrow_below.png");
}
.event-detail .st_facebook_vcount .stBubble, .st_fb_like_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Facebook_arrow_below.png");
}
.event-detail .st_email_vcount .stBubble {
width: 53px;
background: url(http://w.sharethis.com/share4x/images/bubble_arrow_below.png) no-repeat 23px 37px;
}
.event-detail .st_email_vcount .stBubble_count {
width: 51px;
margin-top:8px;
}
.event-detail .st_email_vcount .stBubble {
background-image: url("http://w.sharethis.com/share4x/images/Twitter_arrow_below.png");
}
.event-detail .stButton .stBubble + .stButton_gradient {
min-width: 47px;
}
.event-detail .stButton .stBubble {
height: 45px;
}
.event-detail span.chicklets.email {
width:20px;
font-size:10px;
text-indent:-3px;
}
/* EVENT DETAIL - Lyte Integration */
#tflyLyteDialog h1.headliners,
#tflyLyteDialog h2.venue, #tflyLyteDialog h2.dates,
#tflyLyteDialog p,
#tflyLyteDialog .sold-out,
#tflyLyteDialog h3 a {
font-family: 'Source Sans Pro', sans-serif !important;
font-weight:normal !important;
text-transform: none !important;
letter-spacing:0 !important;
}
#tflyLyteDialog {padding:20px 28px 28px;}
.lyte-event-info {
width:330px;
clear: both;
}
#tflyLyteDialog h1.headliners {
font-size: 22px !important;
font-weight:normal !important;
line-height: 1.45 !important;
color: #535663 !important;
margin-bottom: 0.3em;
}
#tflyLyteDialog h2.venue, #tflyLyteDialog h2.dates {
font-size: 16px !important;
color:#9195A2 !important;
font-weight: normal !important;
}
#tflyLyteDialog h2.dates {margin-bottom:28px;}
#tflyLyteDialog p {
font-size: 16px !important;
line-height: 1.8 !important;
margin: 0 0 28px;
color:#6A6D7C !important;
}
#tflyLyteDialog .sold-out {border:0;padding:0;margin:0}
#tflyLyteDialog h3 a {
background-color: #17C284 !important;
display: inline-block;
text-align: center;
padding: 13px 0px 13px;
color: #FFFFFF !important;
text-decoration: none;
font-weight: normal !important;
font-size: 18px !important;
width: 100%;
clear: both;
line-height: 1 !important;
position: relative;
border: none;
outline: none;
margin: 0;
-webkit-transition: background-color .15s ease-in-out;
-moz-transition: background-color .15s ease-in-out;
-o-transition: background-color .15s ease-in-out;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
#tflyLyteDialog h3 a:hover, #tflyLyteDialog h3 a:focus {
background-color: #1DE099 !important;
color: #FFFFFF !important;
text-decoration: none;
}
/* ATTRACTION DETAIL */
.attraction-header {padding:20px;margin-bottom:16px;overflow:auto;}
.attraction-header img {float:left;margin-right:20px;}
.attraction-detail .list-view-item img {display:none;}
.attraction-header .headliners {clear:none;font-size:2em;margin-bottom:1em;}
.attraction-header h2.dates {clear:none;font-size:1.2em;line-height:2;margin-bottom:1em;}
.attraction-header h4.share-text {top:0;}
.attraction-header #toolbox {float:left;clear:none;padding-top:0;display:block;}
.attraction-header span.start.dtstart, .attraction-header span.end.dtend {display:inline-block;}
.attraction-header .share-facebook,
.attraction-header .share-twitter {
float: left;
position: relative;
color:#fff;
}
.attraction-header .share-facebook a:before,
.attraction-header .share-twitter a:before {
font-family: 'ticketfly';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height:1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\e900";
font-size:24px;
text-indent:inherit;
position:relative;
right:14px;
top:5px;
}
.attraction-header .share-facebook a:before {content: "\e900";}
.attraction-header .share-twitter a:before {content: "\e909";}
.attraction-header .share-facebook a,
.attraction-header .share-twitter a {
font-family: "Akkurat-Pro", sans-serif;
text-indent: inherit !important;
color:#fff;
font-size:14px;
padding:0px 40px 5px 20px;
height:auto;
width:auto;
border-radius:3px;
}
.attraction-header .share-facebook a {background:#3B5998;}
.attraction-header .share-twitter a {background:#55ACEE;}
.attraction-header .share-facebook a:hover,
.attraction-header .share-twitter a:hover {background-image:none;text-decoration:none;}
.attraction-header .share-facebook a:hover {background-color:#2E4A7A;}
.attraction-header .share-twitter a:hover {background-color:#3990C6;}
.attraction-detail .list-view p {text-align:center;padding:10px;}
.attraction-detail .no-events {font-style:italic;}
/* Layout helpers
----------------------------------*/
/* Orig. from JQuery CSS */
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
.ui-corner-all { -moz-border-radius: 6px/*{cornerRadius}*/; -webkit-border-radius: 6px/*{cornerRadius}*/; border-radius: 6px/*{cornerRadius}*/; }
/* Icons
----------------------------------*/
/* Orig. from JQuery CSS */
/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
/* EVENT DETAIL - OVERLAY (Artist URLs, Video, etc.) */
.ui-dialog {
padding: 5px;
box-shadow: 1px 2px 6px #111;
-webkit-box-shadow: 1px 2px 6px #111;
-moz-box-shadow: 1px 2px 6px #111;
}
.ui-dialog .ui-dialog-content {
padding: 0px;
position: relative;
border: 0;
background: none;
overflow: auto;
}
/* Misc visuals
----------------------------------*/
/* Orig. from JQuery CSS */
/* Overlays */
.ui-widget-overlay { position:fixed;top:0;left:0;width:100%;height:100%;background-color: #000000;opacity:0.4; }
/* Dialog
----------------------------------*/
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0;}
.ui-dialog {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
outline: 0;
background: white;
border: 1px solid #ddd;
-moz-border-radius: 3px/*{cornerRadius}*/;
-webkit-border-radius: 3px/*{cornerRadius}*/;
border-radius: 3px/*{cornerRadius}*/;
}
.ui-dialog .ui-dialog-titlebar {
/* padding: .4em 1em; */
position: absolute;
bottom: 0;
}
.ui-dialog .ui-dialog-title {
float: left;
margin: .1em 0;
white-space: nowrap;
width: 90%;
overflow: hidden;
text-overflow: ellipsis;
display: none;
}
.ui-dialog .ui-dialog-titlebar-close {
background: url(images/close-icon.svg) no-repeat center bottom #fff;
background-size: 19px auto;
position: absolute;
right:50%;
width: 20px;
margin: -25px 0 0 0;
padding: 1px;
height: 20px;
border:0;
cursor: pointer;
}
.ui-dialog .ui-dialog-titlebar-close:focus {outline:none;}
.ui-dialog button {box-shadow:none;}
.ui-dialog .ui-dialog-buttonpane {
text-align: left;
border-width: 1px 0 0 0;
background-image: none;
margin-top: .5em;
padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
margin: .5em .4em .5em 0;
cursor: pointer;
}
.ui-dialog .ui-resizable-se {
width: 12px;
height: 12px;
right: -5px;
bottom: -5px;
background-position: 16px 16px;
}
.ui-dialog .ui-dialog-titlebar-close span { text-indent: -9999px; display: block; }
.ui-front {z-index: 100;}
/* FB Share dialogs */
body .tfly-share-dialog.ui-dialog {box-sizing:content-box !important;border:1px solid #ddd !important;border-radius:3px !important;}
body .tfly-share-dialog.ui-dialog.ui-widget-content {padding:5px;}
body .tfly-share-dialog.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:focus {outline:none;}
/* Watch and Listen dialogs */
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable {padding-bottom:30px;}
.ui-draggable .ui-dialog-titlebar { cursor:move;width:100%; }
/* Artist Links dialogs */
.fancy-close .ui-dialog-content {
padding-top: 0px!important;
margin-bottom: 30px !important;
}
.fancy-close .ui-dialog-titlebar {
position: absolute;
bottom: 0;
width:96%;
width:calc(100% - 10px);
height: 26px;
padding: 0;
}
.fancy-close .ui-dialog-title {display:none;}
.fancy-close .ui-dialog-titlebar-close {
width: 20px;
margin: 0px 0px 0 0;
padding: 1px;
height: 22px;
border: 0 !important;
top: initial;
}
.fancy-close .ui-button {
background: url(images/close-icon.svg) no-repeat center bottom #fff;
background-size: 19px auto;
position: absolute;
left: 50%;
margin-left: -11px;
}
.fancy-close .ui-dialog-content {overflow: visible;}
/* Lyte modal */
.ui-dialog.lyte-soldout-dialog {
border:0;
box-shadow:none;
-webkit-box-shadow:none;
-moz-box-shadow:none;
-moz-border-radius: 6px/*{cornerRadius}*/;
-webkit-border-radius: 6px/*{cornerRadius}*/;
border-radius: 6px/*{cornerRadius}*/;
z-index: 100000;
max-width:96%;
}
.lyte-soldout-dialog .ui-dialog-titlebar {top:28px;right:30px;width:20px;height:20px;position:absolute;}
.lyte-soldout-dialog .ui-dialog-titlebar-close {
background: url(images/lyte-x.svg) no-repeat center bottom;
background-size: 20px 20px;
position: absolute;
width: 20px;
height: 20px;
margin: 0px 0 0 0;
padding: 1px;
right: 0;
z-index: 100000;
}
@media screen and (max-device-width: 736px) {
.ui-dialog.lyte-soldout-dialog {width:90% !important;}
.lyte-event-info {width: 90%;width: calc(100% - 30px);clear: both;}
}
/* jQ UI CSS end*/
div#fancy_div {
background: #fff!important;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
a#fancy_left, a#fancy_right {display: none!important;}
/* EDP ARTIST LINKS */
ul.tfly-more {list-style-type:none;margin:0px;padding:0px;width:100%; }
ul.tfly-more li {
margin-top:5px;
height: 26px;
margin-left: 0px;
padding-right: 10px;
padding-left: 10px;
position: relative;
visibility: visible;
}
/* tfly-brand icon font */
@font-face {
font-family: 'ticketfly';
src: url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.eot');
src: url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.eot') format('embedded-opentype'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.ttf') format('truetype'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.woff') format('woff'),
url('https://static.ticketfly.com/fonts/tfly-brand/ticketfly.svg') format('svg');
font-weight: normal;
font-style: normal;
}
ul.tfly-more li a {
text-decoration: none;
padding-top: 5px;
display: block;
color: #535353;
}
ul.tfly-more a {
font-family: "Helvetica", Arial, sans-serif;
font-size: 11px;
color: #666666;
text-decoration: none;
border: none;
}
ul.tfly-more a:hover { color: #000; }
ul.tfly-more a:focus, ul.tfly-more, ul.tfly-more li {border:none;outline:none;}
ul.tfly-more li.web a:before,
ul.tfly-more li.facebook a:before,
ul.tfly-more li.twitter a:before,
ul.tfly-more li.instagram a:before,
ul.tfly-more li.soundcloud a:before,
ul.tfly-more li.bandcamp a:before,
ul.tfly-more li.buy-music a:before,
ul.tfly-more li.watch-video a:before,
ul.tfly-more li.audio-link a:before,
span.link-slide:before{
font-family: 'ticketfly';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position:relative;
}
/* Modal links */
ul.tfly-more li.web a:before,
ul.tfly-more li.facebook a:before,
ul.tfly-more li.twitter a:before,
ul.tfly-more li.instagram a:before,
ul.tfly-more li.soundcloud a:before,
ul.tfly-more li.bandcamp a:before,
ul.tfly-more li.buy-music a:before {
font-size:18px;
padding-right: 7px;
top: 3.5px;
}
ul.tfly-more li.web a:before {content: "\e911";}
ul.tfly-more li.facebook a:before {content: "\e910";}
ul.tfly-more li.twitter a:before {content: "\e914";}
ul.tfly-more li.instagram a:before {content: "\e91d";}
ul.tfly-more li.soundcloud a:before {content: "\e91f";}
ul.tfly-more li.bandcamp a:before {content: "\e91c";}
ul.tfly-more li.buy-music a:before {content: "\e912";}
/* inline links and icons */
ul.tfly-more.inline-links, ul.tfly-more.inline-icons {margin: 0px 0px 8px 0px;padding:0px;}
ul.tfly-more.inline-links li a:hover, ul.tfly-more.inline-icons li a:hover {opacity:0.8;}
/* inline-links */
.inline-links-wrap {white-space:nowrap;overflow:hidden;position:relative;max-width:100%;}
ul.tfly-more.inline-links, span.link-slide {display:inline-block;position:relative;}
span.link-slide {width:20px;height:20px;background:#fff;right:30px;cursor:pointer;padding:0 16px;}
span.link-slide:before {content: "\e932";}
div.slide-return span.link-slide:before {content: "\e931" !important;}
div.inline-links-wrap ul.inline-links {right: 0; transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
ul.tfly-more.inline-links li {display:inline-block;padding: 0 10px 0 3px;height:auto;}
ul.tfly-more.inline-links li a {font-size:12px;padding-top:0;color:inherit;}
ul.tfly-more.inline-links li.web a:before,
ul.tfly-more.inline-links li.facebook a:before,
ul.tfly-more.inline-links li.twitter a:before,
ul.tfly-more.inline-links li.instagram a:before,
ul.tfly-more.inline-links li.bandcamp a:before,
ul.tfly-more.inline-links li.buy-music a:before,
ul.tfly-more.inline-links li.watch-video a:before,
ul.tfly-more.inline-links li.audio-link a:before {
font-size:20px;
padding-right:5px;
top:4px;
}
ul.tfly-more.inline-links li.web a:before {content: "\e906";}
ul.tfly-more.inline-links li.facebook a:before {content: "\e900"; /* font-size:13px;top:1.25px;*/ }
ul.tfly-more.inline-links li.twitter a:before {content: "\e909";}
ul.tfly-more.inline-links li.instagram a:before {content: "\e92e";}
ul.tfly-more.inline-links li.bandcamp a:before {content: "\e92d";}
ul.tfly-more.inline-links li.soundcloud a:before {content: "\e930";}
ul.tfly-more.inline-links li.buy-music a:before {content: "\e907";}
ul.tfly-more.inline-links li.watch-video a:before {content: "\e90a"; /*font-size:13px;top:1px;*/ }
ul.tfly-more.inline-links li.audio-link a:before {content: "\e90c";}
/* inline-icons */
ul.tfly-more.inline-icons li {display:inline-block;padding:0px;height:auto;}
ul.tfly-more.inline-icons li a {/* visibility:hidden; */ display:block;width:28px;padding-top:0;color:#666;font-size:0;}
ul.tfly-more.inline-icons li.buy-music a {font-size:0;}
ul.tfly-more.inline-icons li.web a:before,
ul.tfly-more.inline-icons li.facebook a:before,
ul.tfly-more.inline-icons li.twitter a:before,
ul.tfly-more.inline-icons li.instagram a:before,
ul.tfly-more.inline-icons li.bandcamp a:before,
ul.tfly-more.inline-icons li.soundcloud a:before,
ul.tfly-more.inline-icons li.buy-music a:before,
ul.tfly-more.inline-icons li.watch-video a:before,
ul.tfly-more.inline-icons li.audio-link a:before
{visibility:visible;font-size:19px;top: 0;}
ul.tfly-more.inline-icons li.web a:before {content: "\e917";}
ul.tfly-more.inline-icons li.facebook a:before {content: "\e916";}
ul.tfly-more.inline-icons li.twitter a:before {content: "\e91a";}
ul.tfly-more.inline-icons li.instagram a:before {content: "\e92a";}
ul.tfly-more.inline-icons li.bandcamp a:before {content: "\e929";}
ul.tfly-more.inline-icons li.soundcloud a:before {content: "\e92c";}
ul.tfly-more.inline-icons li.buy-music a:before {content: "\e918";}
ul.tfly-more.inline-icons li.watch-video a:before {content: "\e91b";}
ul.tfly-more.inline-icons li.audio-link a:before {content: "\e915";}
/* ticketfly-powered icon link */
[class^="icon-ticketfly"], [class*=" icon-ticketfly"] {
font-family: 'ticketfly' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
font-size:26px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
div.tfly-powered a {opacity:1;}
div.tfly-powered a:hover {text-decoration:none;opacity:0.75;}
.icon-ticketfly_lockup:before {content: "\e902";}
.icon-ticketfly_wordmark:before {content: "\e903";}
.icon-ticketfly_flying_t:before {content: "\e901";}
.icon-ticketfly_flying_t_circle:before {content: "\e904";}
.icon-ticketfly_powered_logo:before {content: "\e905";color:#8e93ad;}
.icon-ticketfly_powered_logo_black:before {content: "\e905";color:#151619;}
.icon-ticketfly_powered_logo_white:before {content: "\e905";color:#fff;}
/* END Ticketfly logo font icons */
/* Youtube video overlay */
.youtube-video {
width:500px;
height:304px;
float:left;
margin:0 20px 0 0;
}
.youtube-playlist {
float:left;
width:300px;
height:304px;
overflow-x: hidden;
overflow-y: auto;
}
.youtube-thumb {
height:64px;
width:105px;
background:white;
border:#d3d3d3 solid 1px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
position:relative;
float:left;
margin:0 10px 0 0;
}
.youtube-thumb img{
width:96px;
height:72px;
top:-4px;
left:4px;
clip:rect(8px,96px,64px,0px);
position:absolute;
}
a.youtube-playlist-link:hover {
background-color: #D1E1FA;
}
a.youtube-playlist-link {
font:12px arial,sans-serif;
color:#005ae0;
text-decoration:none;
background: #FFF;
display: block;
margin:0 0 10px 0;
}
.youtube-playlist-link:after {
content:" ";
display:block;
clear:both;
}
.youtube-video-sidebar {
margin:0;
}
.youtube-video-sidebar iframe { min-height:225px; }
.youtube-playlist-sidebar {
max-height: 200px;
overflow-x: hidden;
overflow-y: auto;
}
/* @end EVENT DETAIL - OVERLAY*/
.event-detail .sponsor-info {
float: right;
font-size: 10px;
font-weight: bold;
text-align: right;
}
/*END EVENT DETAIL*/
/*SIDEBAR WIDGETS */
.sidebar-list {
padding:10px;
}
.sidebar-list ul {
list-style:none;
margin:0;
padding:0;
}
.sidebar-list li {
margin:0;
}
.sidebar-list li a {
display:block;
}
.sidebar-list li a {
display:block;
padding:5px 0 5px 0;
}
.sidebar-list .date {
text-transform:capitalize;
}
.sidebar-list .on-sale {
font-style: italic;
display:block;
}
/*END SIDEBAR WIDGETS */
/*BEGIN CALENDAR*/
.tfly-calendar .calendar-sync {
float:right;
width:46px;
margin:0 0 0 10px;
}
.tfly-calendar .tf-tooltip:hover span {
left:-85px;
}
.tfly-calendar {
border-collapse: collapse;
}
.tfly-calendar table {
width: 100%;
border: 1px solid;
padding: 0px;
margin: 0px;
border-spacing: 0px 0px;
border-collapse: collapse;
margin-top: 10px;
}
.tfly-calendar table tr {
padding: 0px;
margin: 0px;
border: 1px solid;
}
.tfly-calendar .data .ticket-link a, .tfly-calendar .data .sold-out, .tfly-calendar .data .cancelled, .tfly-calendar .data .postponed, .tfly-calendar .data .free, .tfly-calendar .data .tickets-at-the-door, .tfly-calendar .data .future-sale a, .tfly-calendar .data .on-sale-soon, .tfly-calendar .data h1, .tfly-calendar .data h2, .tfly-calendar .data h3 {
font-size: 11px;
}
.tfly-calendar table tr td {
padding: 5px;
margin: 0px;
height: auto;
line-height: 1;
}
.tfly-calendar .one-event, .tfly-calendar .date {
padding: 0px 0px 15px 0px;
}
.tfly-calendar .last-event {
}
.tfly-calendar table tr td.data {
vertical-align: top;
width: 14%;
border: 1px solid;
margin: 0px;
}
.tfly-calendar .ticket-link a, .tfly-calendar .sold-out, .tfly-calendar .cancelled, .tfly-calendar .postponed, .tfly-calendar .free, .tfly-calendar .tickets-at-the-door, .tfly-calendar .future-sale a, .tfly-calendar .on-sale-soon {
width:50px;
text-align:center;
}
.tfly-calendar .calendar-list-flip {
float: right;
}
.tfly-calendar .calendar-list-flip a {
}
.tfly-calendar .topline-info, .tfly-calendar .start-time { display:none; }
/* BEGIN CAROUSEL */
#tfly-featured-events {
width: 100%;
padding: 5px 0px;
overflow: hidden;
height: 333px;
position: relative;
margin: 0px 0px 20px 0px;
padding: 0px;
background: #000;
}
#tfly-featured-events ul {
list-style-type: none;
padding: 0px;
margin: 0px;
}
#tfly-featured-events #grey-back {
background: #000;
z-index: 10;
position: absolute;
bottom:0px;
height: 90px;
width: 100%;
opacity: 0.4;
/* For IE 5-7 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
/* For IE 8 (and 9, 10, 11?). Don't miss the added quotes */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}
#tfly-featured-events #overlay {
z-index: 20;
position: absolute;
bottom:10px;
margin:0px 10px;
width: 100%;
/* fix colliding style in jQ lightbox CSS */
display: block;
top: auto;
height: auto;
background-color: transparent;
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
#tfly-featured-events #overlay h1 {
color: #fff;
font-size: 20px;
width: 100%;
margin: 0px 0px 10px 0px;
padding: 0px;
text-transform: capitalize;
display: block;
}
#tfly-featured-events #overlay h1 a {
color: #fff;
}
#tfly-featured-events #overlay h1 a:hover {
color: #ccc;
}
#tfly-featured-events #overlay h2 {
color: #fff;
margin: 0px 0px 0px 0px;
font-weight: normal;
font-size: 11px;
line-height:22px;
float: left;
margin-right: 10px;
}
#tfly-featured-events #overlay .ticket-link a {
width: 50px;
text-align: center;
display: block;
float: left;
font-size: 11px;
padding:2px;
color:white;
text-decoration:none;
}
#tfly-featured-events ul.nav {
position: absolute;
z-index: 10;
bottom:10px;
right:20px;
list-style-type: none;
}
#tfly-featured-events ul.nav li {
margin: 0px;
padding: 0px;
float: left;
font-size: 11px;
}
#tfly-featured-events ul.nav li a, #prev_carousel, #next_carousel {
border: 1px solid #888;
padding: 3px;
margin: 1px;
background: #666666;
text-align: center;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: block;
font-size: 11px;
}
#tfly-featured-events ul.nav li a:hover {
border: 1px solid #ccc;
}
#tfly-featured-events ul.nav li a {
color: #fff;
text-decoration: none;
}
#tfly-featured-events ul.images li {
background: none;
padding-left: 0px;
width: 100%;
margin: 0px;
}
#tfly-featured-events ul.images li a {
width: 100%;
}
#overlay-content {
display: none;
}
#tfly-featured-events ul.nav li a.selected {
background: #373737;
}
#tfly-featured-events ul li img {
width: 100%;
min-width: 100%;
max-width: 100%;
border:none;
}
#tfly-featured-events ul li img a {
width: 100%;
min-width: 100%;
max-width: 100%;
border:none;
}
/* END CAROUSEL */
/*
* CSS Styles that are needed by jScrollPane for it to operate correctly.
*
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
* may not operate correctly without them.
*/
.jspContainer
{
overflow: hidden;
position: relative;
}
.jspPane
{
position: absolute;
}
.jspVerticalBar
{
position: absolute;
top: 0;
right: 0;
width: 14px;
height: 100%;
background: red;
}
.jspHorizontalBar
{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 14px;
background: red;
}
.jspVerticalBar *,
.jspHorizontalBar *
{
margin: 0;
padding: 0;
}
.jspCap
{
display: none;
}
.jspHorizontalBar .jspCap
{
float: left;
}
.jspTrack
{
background: #dde;
position: relative;
}
.jspDrag
{
background: #bbd;
position: relative;
top: 0;
left: 0;
cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
float: left;
height: 100%;
}
.jspArrow
{
background: #50506d;
text-indent: -20000px;
display: block;
cursor: pointer;
}
.jspArrow.jspDisabled
{
cursor: default;
background: #80808d;
}
.jspVerticalBar .jspArrow
{
height: 16px;
}
.jspHorizontalBar .jspArrow
{
width: 16px;
float: left;
height: 100%;
}
.jspVerticalBar .jspArrow:focus
{
outline: none;
}
.jspCorner
{
background: #eeeef4;
float: left;
height: 100%;
}
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
margin: 0 -3px 0 0;
}
/* END jScrollPane */
/* Ticketfly Mobile Link */
#tfly-mobile-link {
clear:both;
}
/* END Ticketfly Mobile Link */ | 0.172869 | 0.071009 |
.TemplateExplorer {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.TemplateExplorer.ComponentEditor-column {
border-left: none;
min-width: 300px;
}
.TemplateExplorer.Filament--willAcceptDrop {
outline: none;
}
.TemplateExplorer.Filament--willAcceptDrop .TemplateExplorer-list {
outline: 1px solid hsl(210, 100%, 84%);
}
/* Header ---------------------------- */
.TemplateExplorer-header {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
}
.TemplateExplorer-header .matte-InputText {
margin-right: 12px;
}
.TemplateExplorer-hiddenControl {
display: inline-block;
margin: 0;
vertical-align: middle;
font-size: 11px;
color: hsl(0,0%,50%);
white-space: nowrap;
}
.TemplateExplorer-hiddenControl.is-disabled {
pointer-events: none;
opacity: .3;
}
.TemplateExplorer-header-counter {
display: inline-block;
margin-right: 8px;
vertical-align: middle;
font-weight: bold;
line-height: 0;
}
.TemplateExplorer-filterToggle.matte-Button {
margin: 0;
vertical-align: middle;
border: none;
width: 24px;
height: 24px;
border-radius: 6px;
opacity: 0.5;
}
.TemplateExplorer-hiddenControl.is-disabled .TemplateExplorer-filterToggle,
.TemplateExplorer-filterToggle.matte-Button.pressed {
opacity: 1;
}
.TemplateExplorer-filterToggle--binding.matte-Button,
.TemplateExplorer-filterToggle--binding.matte-Button.pressed {
background: url(/assets/icons/binding.png) no-repeat center;
background-size: auto 14px;
}
.TemplateExplorer-filterToggle--listener.matte-Button,
.TemplateExplorer-filterToggle--listener.matte-Button.pressed {
background: url(/assets/icons/event.png) no-repeat center;
background-size: auto 14px;
}
.TemplateExplorer-filterToggle.matte-Button:hover {
background-color: hsl(0,0%,100%);
}
.TemplateExplorer-filterToggle.matte-Button:active,
.TemplateExplorer-filterToggle.matte-Button.pressed:active {
background-color: hsl(0,0%,90%);
}
/* HiddenCheckbox */
.TemplateObjectCell-hiddenToggleButton.matte-Button {
width: 2.5em;
height: 2.5em;
margin: 0;
border: none;
background: url(/assets/icons/eye-off.png) no-repeat center;
background-size: 14px;
opacity: 0.5;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button:hover {
background-color: transparent;
opacity: 0.7;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button:active {
opacity: .3;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button.pressed {
background: url(/assets/icons/eye.png) no-repeat center;
background-size: 14px;
}
/* List ---------------------------- */
.TemplateExplorer-list {
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
min-height: 0;
overflow: scroll;
margin: 0;
padding-top: 4px;
padding-bottom: 150px;
border-bottom: 1px solid hsl(0, 0%, 80%);
background-color: hsl(0, 0%, 86%);
list-style: none;
}
.TemplateExplorer-list-item {
border: 1px solid hsl(0, 0%, 80%);
border-radius: 6px;
overflow: hidden;
margin: 4px 0;
background-color: hsl(0,0%,96%)
}
.TemplateObjectCell--isInProjectPackage .TemplateExplorer-list-item {
border-radius: 0;
}
/* TemplateObject Cell ---------------------------- */
.TemplateObjectCell-Wrapper {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
align-items: center;
justify-content:center;
}
.TemplateObjectCell-Wrapper .toggle {
-wekit-flex-direction: column;
width: 22px;
height: 100%;
}
.TemplateObjectCell {
background-color: hsl(0, 0%, 96%);
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
}
.TemplateObjectCell--excluded {
opacity: 0.5;
}
.TemplateObjectCell--excluded .TemplateObjectCell-section {
display: none;
}
.TemplateObjectCell--notCollapsible {
margin-left: 20px;
}
.TemplateObjectCell--selected .TemplateObjectCell {
border-color: hsl(210,100%,60%);
background-color: hsl(0,0%,98%);
}
.TemplateObjectCell--highlighted .TemplateObjectCell {
border-color: hsl(210,100%,60%);
}
/* TemplateObjectCell Sections */
.TemplateObjectCell-section {
border-top: 1px solid hsla(0, 0%, 90%, 1);
}
/* TemplateObjectCell components
* (used in binding + listener explorer) */
.TemplateObjectCell-header {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
}
.TemplateObjectCell-icon {
width: 32px;
height: 32px;
background-repeat: no-repeat;
background-position: center;
background-size: auto 14px;
}
.TemplateObjectCell-icon--binding {
background-image: url(/assets/icons/binding.png);
}
.TemplateObjectCell-icon--listener {
background-image: url(/assets/icons/event.png);
}
.TemplateObjectCell-title {
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
margin: 0;
font-size: inherit;
font-weight: normal;
line-height: 32px;
color: hsl(0, 0%, 30%);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Hidden Checkbox ---------------------------- */
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox {
width: 2.5em;
height: 2.5em;
margin: 0;
border: none;
background: url(/assets/icons/eye.png) no-repeat center;
background-size: 14px;
opacity: .3;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox:hover {
background-color: transparent;
opacity: .5;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox.active {
opacity: .3;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox:checked {
background: url(/assets/icons/eye-off.png) no-repeat center;
background-size: 14px;
}
/* TemplateObjectCell Buttons ---------------------------- */
.TemplateObjectCell-button.matte-Button {
margin: 0;
padding: 0;
min-width: 0;
width: 32px;
height: 32px;
font-size: 18px;
font-weight: bold;
line-height: 32px;
text-align: center;
color: hsl(0, 0%, 60%);
border-radius: 0;
border: none;
background-color: transparent;
-webkit-font-smoothing: none;
-moz-font-smoothing: none;
-ms-font-smoothing: none;
font-smoothing: none;
}
.TemplateObjectCell-button.matte-Button:hover {
background-color: hsl(0,0%,92%);
}
.TemplateObjectCell-button.matte-Button:active {
background-color: hsla(0, 0%, 82%, 1);
}
.TemplateObjectCell-button--pill.matte-Button {
height: 22px;
line-height: 22px;
}
/* List ---------------------------- */
.TemplateObjectCell-list {
margin: 0;
padding: 0 0 4px 32px;
}
.TemplateObjectCell-list:empty {
padding-bottom: 0;
}
/* Toggle ---------------------------- */
.TemplateObjectCell-Wrapper .Toggle.matte-InputCheckbox {
margin: 0 0 0 4px;
}
.TemplateObjectCell-Wrapper .Toggle.matte-InputCheckbox:checked {
margin: 0 0 0 4px; /* needed */
} | ui/template-explorer.reel/template-explorer.css | .TemplateExplorer {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.TemplateExplorer.ComponentEditor-column {
border-left: none;
min-width: 300px;
}
.TemplateExplorer.Filament--willAcceptDrop {
outline: none;
}
.TemplateExplorer.Filament--willAcceptDrop .TemplateExplorer-list {
outline: 1px solid hsl(210, 100%, 84%);
}
/* Header ---------------------------- */
.TemplateExplorer-header {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
}
.TemplateExplorer-header .matte-InputText {
margin-right: 12px;
}
.TemplateExplorer-hiddenControl {
display: inline-block;
margin: 0;
vertical-align: middle;
font-size: 11px;
color: hsl(0,0%,50%);
white-space: nowrap;
}
.TemplateExplorer-hiddenControl.is-disabled {
pointer-events: none;
opacity: .3;
}
.TemplateExplorer-header-counter {
display: inline-block;
margin-right: 8px;
vertical-align: middle;
font-weight: bold;
line-height: 0;
}
.TemplateExplorer-filterToggle.matte-Button {
margin: 0;
vertical-align: middle;
border: none;
width: 24px;
height: 24px;
border-radius: 6px;
opacity: 0.5;
}
.TemplateExplorer-hiddenControl.is-disabled .TemplateExplorer-filterToggle,
.TemplateExplorer-filterToggle.matte-Button.pressed {
opacity: 1;
}
.TemplateExplorer-filterToggle--binding.matte-Button,
.TemplateExplorer-filterToggle--binding.matte-Button.pressed {
background: url(/assets/icons/binding.png) no-repeat center;
background-size: auto 14px;
}
.TemplateExplorer-filterToggle--listener.matte-Button,
.TemplateExplorer-filterToggle--listener.matte-Button.pressed {
background: url(/assets/icons/event.png) no-repeat center;
background-size: auto 14px;
}
.TemplateExplorer-filterToggle.matte-Button:hover {
background-color: hsl(0,0%,100%);
}
.TemplateExplorer-filterToggle.matte-Button:active,
.TemplateExplorer-filterToggle.matte-Button.pressed:active {
background-color: hsl(0,0%,90%);
}
/* HiddenCheckbox */
.TemplateObjectCell-hiddenToggleButton.matte-Button {
width: 2.5em;
height: 2.5em;
margin: 0;
border: none;
background: url(/assets/icons/eye-off.png) no-repeat center;
background-size: 14px;
opacity: 0.5;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button:hover {
background-color: transparent;
opacity: 0.7;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button:active {
opacity: .3;
}
.TemplateObjectCell-hiddenToggleButton.matte-Button.pressed {
background: url(/assets/icons/eye.png) no-repeat center;
background-size: 14px;
}
/* List ---------------------------- */
.TemplateExplorer-list {
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
min-height: 0;
overflow: scroll;
margin: 0;
padding-top: 4px;
padding-bottom: 150px;
border-bottom: 1px solid hsl(0, 0%, 80%);
background-color: hsl(0, 0%, 86%);
list-style: none;
}
.TemplateExplorer-list-item {
border: 1px solid hsl(0, 0%, 80%);
border-radius: 6px;
overflow: hidden;
margin: 4px 0;
background-color: hsl(0,0%,96%)
}
.TemplateObjectCell--isInProjectPackage .TemplateExplorer-list-item {
border-radius: 0;
}
/* TemplateObject Cell ---------------------------- */
.TemplateObjectCell-Wrapper {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
align-items: center;
justify-content:center;
}
.TemplateObjectCell-Wrapper .toggle {
-wekit-flex-direction: column;
width: 22px;
height: 100%;
}
.TemplateObjectCell {
background-color: hsl(0, 0%, 96%);
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
}
.TemplateObjectCell--excluded {
opacity: 0.5;
}
.TemplateObjectCell--excluded .TemplateObjectCell-section {
display: none;
}
.TemplateObjectCell--notCollapsible {
margin-left: 20px;
}
.TemplateObjectCell--selected .TemplateObjectCell {
border-color: hsl(210,100%,60%);
background-color: hsl(0,0%,98%);
}
.TemplateObjectCell--highlighted .TemplateObjectCell {
border-color: hsl(210,100%,60%);
}
/* TemplateObjectCell Sections */
.TemplateObjectCell-section {
border-top: 1px solid hsla(0, 0%, 90%, 1);
}
/* TemplateObjectCell components
* (used in binding + listener explorer) */
.TemplateObjectCell-header {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
}
.TemplateObjectCell-icon {
width: 32px;
height: 32px;
background-repeat: no-repeat;
background-position: center;
background-size: auto 14px;
}
.TemplateObjectCell-icon--binding {
background-image: url(/assets/icons/binding.png);
}
.TemplateObjectCell-icon--listener {
background-image: url(/assets/icons/event.png);
}
.TemplateObjectCell-title {
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
margin: 0;
font-size: inherit;
font-weight: normal;
line-height: 32px;
color: hsl(0, 0%, 30%);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Hidden Checkbox ---------------------------- */
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox {
width: 2.5em;
height: 2.5em;
margin: 0;
border: none;
background: url(/assets/icons/eye.png) no-repeat center;
background-size: 14px;
opacity: .3;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox:hover {
background-color: transparent;
opacity: .5;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox.active {
opacity: .3;
}
.TemplateObjectCell-hiddenCheckbox.matte-InputCheckbox:checked {
background: url(/assets/icons/eye-off.png) no-repeat center;
background-size: 14px;
}
/* TemplateObjectCell Buttons ---------------------------- */
.TemplateObjectCell-button.matte-Button {
margin: 0;
padding: 0;
min-width: 0;
width: 32px;
height: 32px;
font-size: 18px;
font-weight: bold;
line-height: 32px;
text-align: center;
color: hsl(0, 0%, 60%);
border-radius: 0;
border: none;
background-color: transparent;
-webkit-font-smoothing: none;
-moz-font-smoothing: none;
-ms-font-smoothing: none;
font-smoothing: none;
}
.TemplateObjectCell-button.matte-Button:hover {
background-color: hsl(0,0%,92%);
}
.TemplateObjectCell-button.matte-Button:active {
background-color: hsla(0, 0%, 82%, 1);
}
.TemplateObjectCell-button--pill.matte-Button {
height: 22px;
line-height: 22px;
}
/* List ---------------------------- */
.TemplateObjectCell-list {
margin: 0;
padding: 0 0 4px 32px;
}
.TemplateObjectCell-list:empty {
padding-bottom: 0;
}
/* Toggle ---------------------------- */
.TemplateObjectCell-Wrapper .Toggle.matte-InputCheckbox {
margin: 0 0 0 4px;
}
.TemplateObjectCell-Wrapper .Toggle.matte-InputCheckbox:checked {
margin: 0 0 0 4px; /* needed */
} | 0.33112 | 0.047802 |
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: 62.5%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
box-sizing: border-box;
}
html,
body {
background-color: #F1F0EE;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Chelsea Market', cursive;
}
h2 {
font-size: 1.6rem;
margin-bottom: 2%;
padding: 2%;
}
h3 {
font-size: 1.2rem;
padding: 2%;
}
p {
line-height: 1.5;
font-size: 1.4rem;
font-family: 'Montserrat', sans-serif;
padding: 2%;
letter-spacing: 0.15rem;
}
a {
font-family: 'Chelsea Market', cursive;
text-decoration: none;
color: #67766D;
}
header {
background-color: #EB5E55;
padding: 2%;
position: fixed;
width: 100%;
max-height: 150px;
top: 0;
left: 0;
border-bottom: 2px solid #F1F0EE;
box-shadow: 0px 0px 20px 2px #8a797c;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
header .navContainer {
width: 100%;
max-width: 1400px;
margin: auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
header .navContainer h1 {
font-family: 'Chelsea Market', cursive;
font-size: 2.5rem;
color: #F1F0EE;
width: 63%;
text-shadow: 0px 0px 5px #220C10;
}
header .navContainer h1:hover {
transform: scale(1.02);
}
@media (max-width:1100px) {
header .navContainer h1 {
font-size: 2rem;
}
}
@media (max-width:800px) {
header .navContainer h1 {
font-size: 1.8rem;
}
}
header .navContainer h1 a {
color: #F1F0EE;
}
header .navContainer nav {
font-family: 'Chelsea Market', cursive;
font-size: 1.5rem;
width: 35%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
@media (max-width:1100px) {
header .navContainer nav {
font-size: 1.2rem;
}
}
@media (max-width:800px) {
header .navContainer nav {
font-size: 1rem;
}
}
header .navContainer nav a {
text-decoration: none;
color: #F1F0EE;
width: 100%;
text-align: center;
padding: 3.5%;
text-shadow: 0px 0px 5px #220C10;
}
header .navContainer nav a:hover {
text-shadow: 0px 0px 10px #220C10;
}
header .navContainer nav #navButton {
border: 2px solid #F1F0EE;
border-radius: 10px;
margin-left: 2%;
}
header .navContainer nav #navButton:hover {
background-color: #f6b4b0;
}
footer {
background-color: #EB5E55;
color: #F1F0EE display: flex; flex-direction: row; justify-content: space-around; align-items: center;;
margin: auto;
text-align: center;
padding: 2%;
box-shadow: 0px 0px 20px 2px #8a797c;
border-top: 2px solid #F1F0EE;
max-height: 150px;
}
footer a {
color: #F1F0EE;
width: 20%;
margin: auto;
padding: 0% 5%;
font-size: 1.4rem;
text-shadow: 0px 0px 5px #220C10;
}
footer a:hover {
text-shadow: 0px 0px 10px #220C10;
}
footer p {
padding: 0%;
margin: 20px 0px 40px 0px;
}
.contentContainer {
width: 90%;
max-width: 1100px;
margin: auto;
margin-top: 200px;
}
@media (max-width:1100px) {
.contentContainer {
margin-top: 165px;
}
}
@media (max-width:800px) {
.contentContainer {
margin-top: 145px;
}
}
.contentContainer h2 {
color: #67766D;
font-size: 2.2rem;
text-shadow: 0px 0px 3px #54494B;
}
.contentContainer .heroImage {
background-image: url(/img/italianFood.jpeg);
height: 450px;
background-position: center;
background-size: cover;
margin-top: 0%;
box-shadow: 0px 0px 20px 2px #8a797c;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.contentContainer .heroImage p {
width: 40%;
margin: 0% auto 4%;
color: #F1F0EE;
font-size: 1.6rem;
text-align: center;
font-weight: bolder;
text-shadow: 0px 0px 10px #67766D;
}
@media (max-width:1100px) {
.contentContainer .heroImage p {
width: 70%;
}
}
.contentContainer .heroImage #heroButton {
width: 220px;
margin: auto;
font-size: 2rem;
padding: 1%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 3px solid #EB5E55;
border-radius: 12px;
box-shadow: 0px 0px 15px 2px #54494B;
text-shadow: 0px 0px 2px #54494B;
background-color: #F1F0EE;
opacity: 100%;
color: #EB5E55;
}
.contentContainer .heroImage #heroButton:hover {
background-color: #ffffff;
transform: scale(1.01);
}
.contentContainer .featuresContainer {
width: 90%;
margin: auto;
}
.contentContainer .featuresContainer .features {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 10% 0% 10% 0%;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features {
margin: 20% 0% 20% 0%;
}
}
.contentContainer .featuresContainer .features .featureImage {
width: 48%;
border-radius: 10px;
box-shadow: 0px 0px 20px 2px #8a797c;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features .featureImage {
width: 87%;
}
}
.contentContainer .featuresContainer .features .featureText {
width: 80%;
padding: 5%;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features .featureText {
width: 100%;
padding: 10% 0%;
margin-bottom: 0%;
}
}
.contentContainer .featuresContainer .features #featurePicOne {
background-image: url(/img/familyInGardenByTree.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 2;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicOne {
order: 0;
}
}
.contentContainer .featuresContainer .features #featurePicTwo {
background-image: url(/img/womenDrinkingWine.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 0;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicTwo {
order: 0;
}
}
.contentContainer .featuresContainer .features #featurePicThree {
background-image: url(/img/handsOfFamily.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 2;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicThree {
order: 0;
}
} | css/index.css | html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0%;
padding: 0;
border: 0;
font-size: 62.5%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
box-sizing: border-box;
}
html,
body {
background-color: #F1F0EE;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Chelsea Market', cursive;
}
h2 {
font-size: 1.6rem;
margin-bottom: 2%;
padding: 2%;
}
h3 {
font-size: 1.2rem;
padding: 2%;
}
p {
line-height: 1.5;
font-size: 1.4rem;
font-family: 'Montserrat', sans-serif;
padding: 2%;
letter-spacing: 0.15rem;
}
a {
font-family: 'Chelsea Market', cursive;
text-decoration: none;
color: #67766D;
}
header {
background-color: #EB5E55;
padding: 2%;
position: fixed;
width: 100%;
max-height: 150px;
top: 0;
left: 0;
border-bottom: 2px solid #F1F0EE;
box-shadow: 0px 0px 20px 2px #8a797c;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
header .navContainer {
width: 100%;
max-width: 1400px;
margin: auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
header .navContainer h1 {
font-family: 'Chelsea Market', cursive;
font-size: 2.5rem;
color: #F1F0EE;
width: 63%;
text-shadow: 0px 0px 5px #220C10;
}
header .navContainer h1:hover {
transform: scale(1.02);
}
@media (max-width:1100px) {
header .navContainer h1 {
font-size: 2rem;
}
}
@media (max-width:800px) {
header .navContainer h1 {
font-size: 1.8rem;
}
}
header .navContainer h1 a {
color: #F1F0EE;
}
header .navContainer nav {
font-family: 'Chelsea Market', cursive;
font-size: 1.5rem;
width: 35%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
@media (max-width:1100px) {
header .navContainer nav {
font-size: 1.2rem;
}
}
@media (max-width:800px) {
header .navContainer nav {
font-size: 1rem;
}
}
header .navContainer nav a {
text-decoration: none;
color: #F1F0EE;
width: 100%;
text-align: center;
padding: 3.5%;
text-shadow: 0px 0px 5px #220C10;
}
header .navContainer nav a:hover {
text-shadow: 0px 0px 10px #220C10;
}
header .navContainer nav #navButton {
border: 2px solid #F1F0EE;
border-radius: 10px;
margin-left: 2%;
}
header .navContainer nav #navButton:hover {
background-color: #f6b4b0;
}
footer {
background-color: #EB5E55;
color: #F1F0EE display: flex; flex-direction: row; justify-content: space-around; align-items: center;;
margin: auto;
text-align: center;
padding: 2%;
box-shadow: 0px 0px 20px 2px #8a797c;
border-top: 2px solid #F1F0EE;
max-height: 150px;
}
footer a {
color: #F1F0EE;
width: 20%;
margin: auto;
padding: 0% 5%;
font-size: 1.4rem;
text-shadow: 0px 0px 5px #220C10;
}
footer a:hover {
text-shadow: 0px 0px 10px #220C10;
}
footer p {
padding: 0%;
margin: 20px 0px 40px 0px;
}
.contentContainer {
width: 90%;
max-width: 1100px;
margin: auto;
margin-top: 200px;
}
@media (max-width:1100px) {
.contentContainer {
margin-top: 165px;
}
}
@media (max-width:800px) {
.contentContainer {
margin-top: 145px;
}
}
.contentContainer h2 {
color: #67766D;
font-size: 2.2rem;
text-shadow: 0px 0px 3px #54494B;
}
.contentContainer .heroImage {
background-image: url(/img/italianFood.jpeg);
height: 450px;
background-position: center;
background-size: cover;
margin-top: 0%;
box-shadow: 0px 0px 20px 2px #8a797c;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.contentContainer .heroImage p {
width: 40%;
margin: 0% auto 4%;
color: #F1F0EE;
font-size: 1.6rem;
text-align: center;
font-weight: bolder;
text-shadow: 0px 0px 10px #67766D;
}
@media (max-width:1100px) {
.contentContainer .heroImage p {
width: 70%;
}
}
.contentContainer .heroImage #heroButton {
width: 220px;
margin: auto;
font-size: 2rem;
padding: 1%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 3px solid #EB5E55;
border-radius: 12px;
box-shadow: 0px 0px 15px 2px #54494B;
text-shadow: 0px 0px 2px #54494B;
background-color: #F1F0EE;
opacity: 100%;
color: #EB5E55;
}
.contentContainer .heroImage #heroButton:hover {
background-color: #ffffff;
transform: scale(1.01);
}
.contentContainer .featuresContainer {
width: 90%;
margin: auto;
}
.contentContainer .featuresContainer .features {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 10% 0% 10% 0%;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features {
margin: 20% 0% 20% 0%;
}
}
.contentContainer .featuresContainer .features .featureImage {
width: 48%;
border-radius: 10px;
box-shadow: 0px 0px 20px 2px #8a797c;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features .featureImage {
width: 87%;
}
}
.contentContainer .featuresContainer .features .featureText {
width: 80%;
padding: 5%;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features .featureText {
width: 100%;
padding: 10% 0%;
margin-bottom: 0%;
}
}
.contentContainer .featuresContainer .features #featurePicOne {
background-image: url(/img/familyInGardenByTree.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 2;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicOne {
order: 0;
}
}
.contentContainer .featuresContainer .features #featurePicTwo {
background-image: url(/img/womenDrinkingWine.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 0;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicTwo {
order: 0;
}
}
.contentContainer .featuresContainer .features #featurePicThree {
background-image: url(/img/handsOfFamily.jpeg);
height: 350px;
background-position: center;
background-size: cover;
order: 2;
}
@media (max-width:800px) {
.contentContainer .featuresContainer .features #featurePicThree {
order: 0;
}
} | 0.337313 | 0.067762 |
* {
margin: 0;
padding: 0;
font-family: 'cocon-next-arabic';
}
.width-pc {
width: 95%;
}
.width-all {
width: 100%;
}
.height-all {
height: 100%;
}
.margin-rp{
margin: 0 auto;
}
.ca-right {
float: right;
}
.ca-left {
float: left;
}
.border-d {
border: 1px solid #2723a9;
}
.color-d {
color: #2723a9;
}
.hover-list:hover {
background-color: #302A57;
}
.pa-20 {
padding: 20px;
box-sizing: border-box;
}
.clr {
clear: both;
}
/*********** start menu logo **************/
nav.menu-top .logo {
margin-top: 23px;
width: 154px;
height: 51px;
}
nav.menu-top img {
width: 100%;
height: 100%;
}
nav.menu-top {
height: 90px;
background-color: #fff;
}
nav .button-user {
line-height: 90px;
}
nav .button-user button {
padding: 7px 13px 7px 40px;
background: none;
border-radius: 5px;
position: relative;
overflow: hidden;
outline: none;
box-shadow: 2px 2px 6px 0px #cccccca6;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
}
nav .button-user button span.tittle-users {
font-size: 13px;
font-weight: bold;
}
nav .button-user button:hover {
background-color: #2723a9;
color: #fff;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
}
nav .button-user .button-login > .icon-users,
nav .button-user .button-rg > .icon-users {
position: absolute;
left: 0;
background-color: #2723a9;
display: block;
top: 0;
color: #fff;
height: 100%;
padding: 7px 12px 7px 6px;
border-bottom-right-radius: 15px;
box-sizing: border-box;
}
nav .button-user .button-rg .icon-users {
padding: 7px 10px 7px 6px;
}
nav .button-user .button-rg{
margin-left: 10px;
}
/*********** end menu logo **************/
/*********** start menu bar ************/
nav.menu-bar {
height: 60px;
background-color: #7668d7;
}
nav.menu-bar .menu-home ul {
height: 60px;
}
nav.menu-bar .menu-home ul li {
float: right;
line-height: 60px;
color: #fff;
padding: 0 20px;
box-sizing: border-box;
list-style-type: none;
font-weight: bold;
font-size: 18px;
transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
}
nav.menu-bar .menu-home ul li:hover {
box-sizing: content-box;
transform: scaleY(1.1);
box-shadow: 0 0 6px 1px #5f5d5d73;
}
nav.menu-bar .menu-home ul:hover li.list-home {
background: none;
}
nav.menu-bar .menu-home ul li a {
color: #fff;
text-decoration: none;
}
nav.menu-bar .menu-home ul li.list-home {
font-size: 28px;
background-color: #40348A;
padding: 0 10px;
}
nav.menu-bar .menu-home ul li.list-home:hover {
background-color: #302A57;
}
/*********** end menu bar *************/
/*********** start slider ************/
.slider-bar {
background-image: url(/themes/images/back.png);
height: 400px;
margin-top: 37px;
margin-bottom: 37px;
border-radius: 3px;
box-shadow: 0 0 7px 0px #7668d754;
background-repeat: no-repeat;
background-size: cover;
}
.slider-bar .post-slider-right,
.slider-bar .post-slider-left {
width: 50%;
height: 100%;
padding: 25px;
box-sizing: border-box;
}
.slider-bar .post-slider-right .blog-slider-right {
border: 1px solid #7668d7;
overflow: hidden;
border-radius: 4px;
box-sizing: border-box;
}
.slider-bar .post-slider-left .blog-slider-left {
width: 100%;
height: 113.5px;
background-color: #2723a9d9;
border: 1px solid #7668d7;
box-sizing: border-box;
margin-bottom: 5px;
border-radius: 4px;
}
/*********** end slider ************/
/*********** start content home ************/
.side-post {
border: 1px solid #d2d2d2;
border-radius: 5px;
overflow: hidden;
margin-bottom: 60px;
}
.side-post .head-content {
text-align: right;
border-bottom: 1px solid #7668d7;
background-color: #7668d7;
}
.side-post .head-content h2 {
box-sizing: border-box;
padding: 12px 19px;
color: #fff;
font-size: 28px;
}
.side-post .body-content .post-blog {
width: 30%;
height: 550px;
border: 1px solid #d2d2d2;
float: right;
margin-right: 42px;
margin-top: 26px;
border-radius: 5px;
}
/*********** end content home *************/
/************ start footer *************/
footer .footer-top{
background-color: #40348a;
height: 300px;
}
footer .footer-bt {
background-color: #7668d7;
height: 80px;
}
/************ end footer ************/ | public/themes/css/style.css | * {
margin: 0;
padding: 0;
font-family: 'cocon-next-arabic';
}
.width-pc {
width: 95%;
}
.width-all {
width: 100%;
}
.height-all {
height: 100%;
}
.margin-rp{
margin: 0 auto;
}
.ca-right {
float: right;
}
.ca-left {
float: left;
}
.border-d {
border: 1px solid #2723a9;
}
.color-d {
color: #2723a9;
}
.hover-list:hover {
background-color: #302A57;
}
.pa-20 {
padding: 20px;
box-sizing: border-box;
}
.clr {
clear: both;
}
/*********** start menu logo **************/
nav.menu-top .logo {
margin-top: 23px;
width: 154px;
height: 51px;
}
nav.menu-top img {
width: 100%;
height: 100%;
}
nav.menu-top {
height: 90px;
background-color: #fff;
}
nav .button-user {
line-height: 90px;
}
nav .button-user button {
padding: 7px 13px 7px 40px;
background: none;
border-radius: 5px;
position: relative;
overflow: hidden;
outline: none;
box-shadow: 2px 2px 6px 0px #cccccca6;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
}
nav .button-user button span.tittle-users {
font-size: 13px;
font-weight: bold;
}
nav .button-user button:hover {
background-color: #2723a9;
color: #fff;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
}
nav .button-user .button-login > .icon-users,
nav .button-user .button-rg > .icon-users {
position: absolute;
left: 0;
background-color: #2723a9;
display: block;
top: 0;
color: #fff;
height: 100%;
padding: 7px 12px 7px 6px;
border-bottom-right-radius: 15px;
box-sizing: border-box;
}
nav .button-user .button-rg .icon-users {
padding: 7px 10px 7px 6px;
}
nav .button-user .button-rg{
margin-left: 10px;
}
/*********** end menu logo **************/
/*********** start menu bar ************/
nav.menu-bar {
height: 60px;
background-color: #7668d7;
}
nav.menu-bar .menu-home ul {
height: 60px;
}
nav.menu-bar .menu-home ul li {
float: right;
line-height: 60px;
color: #fff;
padding: 0 20px;
box-sizing: border-box;
list-style-type: none;
font-weight: bold;
font-size: 18px;
transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
}
nav.menu-bar .menu-home ul li:hover {
box-sizing: content-box;
transform: scaleY(1.1);
box-shadow: 0 0 6px 1px #5f5d5d73;
}
nav.menu-bar .menu-home ul:hover li.list-home {
background: none;
}
nav.menu-bar .menu-home ul li a {
color: #fff;
text-decoration: none;
}
nav.menu-bar .menu-home ul li.list-home {
font-size: 28px;
background-color: #40348A;
padding: 0 10px;
}
nav.menu-bar .menu-home ul li.list-home:hover {
background-color: #302A57;
}
/*********** end menu bar *************/
/*********** start slider ************/
.slider-bar {
background-image: url(/themes/images/back.png);
height: 400px;
margin-top: 37px;
margin-bottom: 37px;
border-radius: 3px;
box-shadow: 0 0 7px 0px #7668d754;
background-repeat: no-repeat;
background-size: cover;
}
.slider-bar .post-slider-right,
.slider-bar .post-slider-left {
width: 50%;
height: 100%;
padding: 25px;
box-sizing: border-box;
}
.slider-bar .post-slider-right .blog-slider-right {
border: 1px solid #7668d7;
overflow: hidden;
border-radius: 4px;
box-sizing: border-box;
}
.slider-bar .post-slider-left .blog-slider-left {
width: 100%;
height: 113.5px;
background-color: #2723a9d9;
border: 1px solid #7668d7;
box-sizing: border-box;
margin-bottom: 5px;
border-radius: 4px;
}
/*********** end slider ************/
/*********** start content home ************/
.side-post {
border: 1px solid #d2d2d2;
border-radius: 5px;
overflow: hidden;
margin-bottom: 60px;
}
.side-post .head-content {
text-align: right;
border-bottom: 1px solid #7668d7;
background-color: #7668d7;
}
.side-post .head-content h2 {
box-sizing: border-box;
padding: 12px 19px;
color: #fff;
font-size: 28px;
}
.side-post .body-content .post-blog {
width: 30%;
height: 550px;
border: 1px solid #d2d2d2;
float: right;
margin-right: 42px;
margin-top: 26px;
border-radius: 5px;
}
/*********** end content home *************/
/************ start footer *************/
footer .footer-top{
background-color: #40348a;
height: 300px;
}
footer .footer-bt {
background-color: #7668d7;
height: 80px;
}
/************ end footer ************/ | 0.333829 | 0.080755 |
@import url(http://fonts.googleapis.com/css?family=Lato:300,400);
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.6, 0.6);
transform: scale(0.6, 0.6);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 0.0;
}
}
@keyframes pulsate {
0% {
-webkit-transform: scale(0.6, 0.6);
transform: scale(0.6, 0.6);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 0.0;
}
}
body {
background-color: black;
background-repeat: repeat, no-repeat;
background-size: auto, 100% 100%;
background-attachment: fixed;
color: #ecf0f1;
font-family: "Lato", "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;
line-height: 1.5;
font-weight: 300;
min-height: 100%;
overflow-y: scroll;
width: 100%;
}
h1, h2 {
font-weight: 300;
line-height: 1.2;
}
.profile-card {
height: 305px;
width: auto;
position: relative;
margin: 1em auto;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
.profile-card header {
width: 100%;
height: 100%;
text-align: center;
/* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(0, 0, 0, 0.9)), color-stop(100%, transparent));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
/* Chrome10+,Safari5.1+ */
/* Opera 11.10+ */
/* IE10+ */
background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=1 );
/* IE6-9 fallback on horizontal gradient */
}
.profile-card header a {
position: relative;
}
.profile-card header a:before {
content: "";
border: 15px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
height: 120px;
width: 120px;
position: absolute;
left: 0;
bottom: 3px;
-webkit-animation: pulsate 1.6s ease-out;
animation: pulsate 1.6s ease-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
opacity: 0.0;
z-index: 99;
}
.profile-card header img {
position: relative;
border-radius: 50%;
height: 120px;
width: 120px;
padding: 0;
margin: 0;
border: 15px solid transparent;
margin-top: 12px;
z-index: 9999;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.profile-card header a:hover img {
-webkit-transform: scale(1.06, 1.06);
transform: scale(1.06, 1.06);
}
.profile-card header a:hover:before {
-webkit-animation: none;
animation: none;
}
.profile-card header h1 {
text-align: center;
font-size: 28px;
font-weight: 400;
opacity: 0.9;
margin-bottom: 8px;
}
.profile-card header h2 {
text-align: center;
font-size: 18px;
margin-top: 0;
opacity: 0.9;
}
.profile-card .profile-bio {
position: absolute;
bottom: 0;
}
.profile-card .profile-bio p {
margin: 24px;
text-align: center;
opacity: 0.9;
}
.profile-card .profile-social-links {
position: relative;
background-color: white;
margin: 0 auto;
text-align: center;
padding: 6px 0;
}
.profile-card .profile-social-links li {
display: inline-block;
padding: 3px 5px 0;
}
.profile-card .profile-social-links li img {
height: 28px;
opacity: 0.8;
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out;
}
.profile-card .profile-social-links li a:hover img {
opacity: 1;
-webkit-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.profile-card .profile-social-links:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #ffffff;
border-width: 10px;
margin-left: -10px;
} | css/style.css | @import url(http://fonts.googleapis.com/css?family=Lato:300,400);
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.6, 0.6);
transform: scale(0.6, 0.6);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 0.0;
}
}
@keyframes pulsate {
0% {
-webkit-transform: scale(0.6, 0.6);
transform: scale(0.6, 0.6);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
opacity: 0.0;
}
}
body {
background-color: black;
background-repeat: repeat, no-repeat;
background-size: auto, 100% 100%;
background-attachment: fixed;
color: #ecf0f1;
font-family: "Lato", "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;
line-height: 1.5;
font-weight: 300;
min-height: 100%;
overflow-y: scroll;
width: 100%;
}
h1, h2 {
font-weight: 300;
line-height: 1.2;
}
.profile-card {
height: 305px;
width: auto;
position: relative;
margin: 1em auto;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
.profile-card header {
width: 100%;
height: 100%;
text-align: center;
/* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(0, 0, 0, 0.9)), color-stop(100%, transparent));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
/* Chrome10+,Safari5.1+ */
/* Opera 11.10+ */
/* IE10+ */
background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=1 );
/* IE6-9 fallback on horizontal gradient */
}
.profile-card header a {
position: relative;
}
.profile-card header a:before {
content: "";
border: 15px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
height: 120px;
width: 120px;
position: absolute;
left: 0;
bottom: 3px;
-webkit-animation: pulsate 1.6s ease-out;
animation: pulsate 1.6s ease-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
opacity: 0.0;
z-index: 99;
}
.profile-card header img {
position: relative;
border-radius: 50%;
height: 120px;
width: 120px;
padding: 0;
margin: 0;
border: 15px solid transparent;
margin-top: 12px;
z-index: 9999;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}
.profile-card header a:hover img {
-webkit-transform: scale(1.06, 1.06);
transform: scale(1.06, 1.06);
}
.profile-card header a:hover:before {
-webkit-animation: none;
animation: none;
}
.profile-card header h1 {
text-align: center;
font-size: 28px;
font-weight: 400;
opacity: 0.9;
margin-bottom: 8px;
}
.profile-card header h2 {
text-align: center;
font-size: 18px;
margin-top: 0;
opacity: 0.9;
}
.profile-card .profile-bio {
position: absolute;
bottom: 0;
}
.profile-card .profile-bio p {
margin: 24px;
text-align: center;
opacity: 0.9;
}
.profile-card .profile-social-links {
position: relative;
background-color: white;
margin: 0 auto;
text-align: center;
padding: 6px 0;
}
.profile-card .profile-social-links li {
display: inline-block;
padding: 3px 5px 0;
}
.profile-card .profile-social-links li img {
height: 28px;
opacity: 0.8;
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out;
}
.profile-card .profile-social-links li a:hover img {
opacity: 1;
-webkit-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.profile-card .profile-social-links:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #ffffff;
border-width: 10px;
margin-left: -10px;
} | 0.391522 | 0.084191 |
*,
*::after,
*::before {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
font-family: sans-serif;
text-align: center;
background-color: rgba(34, 60, 80, 1);
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
img {
display: block;
width: 100%;
}
.search-form {
margin-bottom: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 90vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.search-input {
padding: 10px;
margin-top: auto;
font-size: 15pt;
border-radius: 5px;
border: 2px solid #ffffff;
color: #ffffff;
text-align: center;
background-color: rgba(34, 60, 80, 0.5);
transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 500ms;
transform-origin: top;
}
.search-input::placeholder {
color: #ffffff;
}
.search-input:focus {
transform: scale(1.1);
}
.arrow {
margin-top: auto;
color: #ffffff;
animation: arrow-animation 3000ms ease infinite;
transition: opacity ease 300ms, transform ease 300ms;
}
.arrow i {
font-size: 26pt;
}
.arrow.is-hidden {
opacity: 0;
}
.results-wrap {
padding: 10px 25px;
}
.gallery {
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr;
gap: 25px;
}
@media screen and (max-width: 1024px) {
.gallery {
grid-template-columns: 1fr;
}
}
.photo-card {
position: relative;
cursor: pointer;
}
.photo-card:hover .stats {
opacity: 1;
}
.gallery-photo {
object-fit: cover;
}
.stats {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 15px 10px;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
opacity: 0;
transition: opacity ease 250ms;
}
.stats-item {
display: flex;
align-items: center;
margin: 0;
color: #ffffff;
}
.material-icons {
margin-right: 5px;
}
@keyframes arrow-animation {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(10px);
}
100% {
transform: translateY(0px);
}
} | src/css/styles.css | *,
*::after,
*::before {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
font-family: sans-serif;
text-align: center;
background-color: rgba(34, 60, 80, 1);
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
img {
display: block;
width: 100%;
}
.search-form {
margin-bottom: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 90vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.search-input {
padding: 10px;
margin-top: auto;
font-size: 15pt;
border-radius: 5px;
border: 2px solid #ffffff;
color: #ffffff;
text-align: center;
background-color: rgba(34, 60, 80, 0.5);
transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 500ms;
transform-origin: top;
}
.search-input::placeholder {
color: #ffffff;
}
.search-input:focus {
transform: scale(1.1);
}
.arrow {
margin-top: auto;
color: #ffffff;
animation: arrow-animation 3000ms ease infinite;
transition: opacity ease 300ms, transform ease 300ms;
}
.arrow i {
font-size: 26pt;
}
.arrow.is-hidden {
opacity: 0;
}
.results-wrap {
padding: 10px 25px;
}
.gallery {
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr;
gap: 25px;
}
@media screen and (max-width: 1024px) {
.gallery {
grid-template-columns: 1fr;
}
}
.photo-card {
position: relative;
cursor: pointer;
}
.photo-card:hover .stats {
opacity: 1;
}
.gallery-photo {
object-fit: cover;
}
.stats {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 15px 10px;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
opacity: 0;
transition: opacity ease 250ms;
}
.stats-item {
display: flex;
align-items: center;
margin: 0;
color: #ffffff;
}
.material-icons {
margin-right: 5px;
}
@keyframes arrow-animation {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(10px);
}
100% {
transform: translateY(0px);
}
} | 0.710929 | 0.099426 |
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-abundance:before { content: "\f100"; }
.flaticon-affluence:before { content: "\f101"; }
.flaticon-air:before { content: "\f102"; }
.flaticon-antimony:before { content: "\f103"; }
.flaticon-aqua:before { content: "\f104"; }
.flaticon-aquarius:before { content: "\f105"; }
.flaticon-aries:before { content: "\f106"; }
.flaticon-authority:before { content: "\f107"; }
.flaticon-beauty:before { content: "\f108"; }
.flaticon-cancer:before { content: "\f109"; }
.flaticon-capricorn:before { content: "\f10a"; }
.flaticon-coagulation:before { content: "\f10b"; }
.flaticon-commitment:before { content: "\f10c"; }
.flaticon-craftiness:before { content: "\f10d"; }
.flaticon-democracy:before { content: "\f10e"; }
.flaticon-devotion:before { content: "\f10f"; }
.flaticon-divinity:before { content: "\f110"; }
.flaticon-earth:before { content: "\f111"; }
.flaticon-earth-1:before { content: "\f112"; }
.flaticon-encouragement:before { content: "\f113"; }
.flaticon-excellence:before { content: "\f114"; }
.flaticon-fire:before { content: "\f115"; }
.flaticon-fortitude:before { content: "\f116"; }
.flaticon-freedom:before { content: "\f117"; }
.flaticon-friendship:before { content: "\f118"; }
.flaticon-gemini:before { content: "\f119"; }
.flaticon-gods-guidance:before { content: "\f11a"; }
.flaticon-gods-omnipressence:before { content: "\f11b"; }
.flaticon-gods-protection:before { content: "\f11c"; }
.flaticon-gods-shield:before { content: "\f11d"; }
.flaticon-gold:before { content: "\f11e"; }
.flaticon-good-luck:before { content: "\f11f"; }
.flaticon-greatness:before { content: "\f120"; }
.flaticon-hope:before { content: "\f121"; }
.flaticon-hypocrisy:before { content: "\f122"; }
.flaticon-inequality:before { content: "\f123"; }
.flaticon-ingenuity:before { content: "\f124"; }
.flaticon-ingenuity-1:before { content: "\f125"; }
.flaticon-jupiter:before { content: "\f126"; }
.flaticon-justice:before { content: "\f127"; }
.flaticon-knowledge:before { content: "\f128"; }
.flaticon-leo:before { content: "\f129"; }
.flaticon-lethargy:before { content: "\f12a"; }
.flaticon-libra:before { content: "\f12b"; }
.flaticon-lifes-challenges:before { content: "\f12c"; }
.flaticon-loyalty:before { content: "\f12d"; }
.flaticon-loyalty-1:before { content: "\f12e"; }
.flaticon-mars:before { content: "\f12f"; }
.flaticon-mercury:before { content: "\f130"; }
.flaticon-moon:before { content: "\f131"; }
.flaticon-neptune:before { content: "\f132"; }
.flaticon-nitre:before { content: "\f133"; }
.flaticon-oil:before { content: "\f134"; }
.flaticon-perseverance:before { content: "\f135"; }
.flaticon-pisces:before { content: "\f136"; }
.flaticon-pluto:before { content: "\f137"; }
.flaticon-precipitation:before { content: "\f138"; }
.flaticon-projection:before { content: "\f139"; }
.flaticon-reconciliation:before { content: "\f13a"; }
.flaticon-safety:before { content: "\f13b"; }
.flaticon-sagittarius:before { content: "\f13c"; }
.flaticon-salt:before { content: "\f13d"; }
.flaticon-salt-1:before { content: "\f13e"; }
.flaticon-scorpio:before { content: "\f13f"; }
.flaticon-silver:before { content: "\f140"; }
.flaticon-silver-1:before { content: "\f141"; }
.flaticon-soap:before { content: "\f142"; }
.flaticon-soapstone:before { content: "\f143"; }
.flaticon-soapstone-1:before { content: "\f144"; }
.flaticon-soot:before { content: "\f145"; }
.flaticon-spirit:before { content: "\f146"; }
.flaticon-spirit-1:before { content: "\f147"; }
.flaticon-standard-of-quality:before { content: "\f148"; }
.flaticon-still:before { content: "\f149"; }
.flaticon-stone:before { content: "\f14a"; }
.flaticon-strength:before { content: "\f14b"; }
.flaticon-sulphur:before { content: "\f14c"; }
.flaticon-sulphur-1:before { content: "\f14d"; }
.flaticon-sulphur-2:before { content: "\f14e"; }
.flaticon-sulphur-3:before { content: "\f14f"; }
.flaticon-sun:before { content: "\f150"; }
.flaticon-tartar:before { content: "\f151"; }
.flaticon-taurus:before { content: "\f152"; }
.flaticon-time-changes:before { content: "\f153"; }
.flaticon-tin:before { content: "\f154"; }
.flaticon-toughness:before { content: "\f155"; }
.flaticon-understanding:before { content: "\f156"; }
.flaticon-uranus:before { content: "\f157"; }
.flaticon-uranus-1:before { content: "\f158"; }
.flaticon-venus:before { content: "\f159"; }
.flaticon-vinegar:before { content: "\f15a"; }
.flaticon-vinegar-1:before { content: "\f15b"; }
.flaticon-virgo:before { content: "\f15c"; }
.flaticon-vitriol:before { content: "\f15d"; }
.flaticon-water:before { content: "\f15e"; }
.flaticon-wax:before { content: "\f15f"; }
.flaticon-wisdom:before { content: "\f160"; }
.flaticon-wisdom-1:before { content: "\f161"; }
.flaticon-wood:before { content: "\f162"; }
.flaticon-year:before { content: "\f163"; }
.flaticon-zinc:before { content: "\f164"; }
.flaticon-zinc-1:before { content: "\f165"; }
.flaticon-zinc-2:before { content: "\f166"; } | icons/137372-symbol-set/font/flaticon.css | @font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-abundance:before { content: "\f100"; }
.flaticon-affluence:before { content: "\f101"; }
.flaticon-air:before { content: "\f102"; }
.flaticon-antimony:before { content: "\f103"; }
.flaticon-aqua:before { content: "\f104"; }
.flaticon-aquarius:before { content: "\f105"; }
.flaticon-aries:before { content: "\f106"; }
.flaticon-authority:before { content: "\f107"; }
.flaticon-beauty:before { content: "\f108"; }
.flaticon-cancer:before { content: "\f109"; }
.flaticon-capricorn:before { content: "\f10a"; }
.flaticon-coagulation:before { content: "\f10b"; }
.flaticon-commitment:before { content: "\f10c"; }
.flaticon-craftiness:before { content: "\f10d"; }
.flaticon-democracy:before { content: "\f10e"; }
.flaticon-devotion:before { content: "\f10f"; }
.flaticon-divinity:before { content: "\f110"; }
.flaticon-earth:before { content: "\f111"; }
.flaticon-earth-1:before { content: "\f112"; }
.flaticon-encouragement:before { content: "\f113"; }
.flaticon-excellence:before { content: "\f114"; }
.flaticon-fire:before { content: "\f115"; }
.flaticon-fortitude:before { content: "\f116"; }
.flaticon-freedom:before { content: "\f117"; }
.flaticon-friendship:before { content: "\f118"; }
.flaticon-gemini:before { content: "\f119"; }
.flaticon-gods-guidance:before { content: "\f11a"; }
.flaticon-gods-omnipressence:before { content: "\f11b"; }
.flaticon-gods-protection:before { content: "\f11c"; }
.flaticon-gods-shield:before { content: "\f11d"; }
.flaticon-gold:before { content: "\f11e"; }
.flaticon-good-luck:before { content: "\f11f"; }
.flaticon-greatness:before { content: "\f120"; }
.flaticon-hope:before { content: "\f121"; }
.flaticon-hypocrisy:before { content: "\f122"; }
.flaticon-inequality:before { content: "\f123"; }
.flaticon-ingenuity:before { content: "\f124"; }
.flaticon-ingenuity-1:before { content: "\f125"; }
.flaticon-jupiter:before { content: "\f126"; }
.flaticon-justice:before { content: "\f127"; }
.flaticon-knowledge:before { content: "\f128"; }
.flaticon-leo:before { content: "\f129"; }
.flaticon-lethargy:before { content: "\f12a"; }
.flaticon-libra:before { content: "\f12b"; }
.flaticon-lifes-challenges:before { content: "\f12c"; }
.flaticon-loyalty:before { content: "\f12d"; }
.flaticon-loyalty-1:before { content: "\f12e"; }
.flaticon-mars:before { content: "\f12f"; }
.flaticon-mercury:before { content: "\f130"; }
.flaticon-moon:before { content: "\f131"; }
.flaticon-neptune:before { content: "\f132"; }
.flaticon-nitre:before { content: "\f133"; }
.flaticon-oil:before { content: "\f134"; }
.flaticon-perseverance:before { content: "\f135"; }
.flaticon-pisces:before { content: "\f136"; }
.flaticon-pluto:before { content: "\f137"; }
.flaticon-precipitation:before { content: "\f138"; }
.flaticon-projection:before { content: "\f139"; }
.flaticon-reconciliation:before { content: "\f13a"; }
.flaticon-safety:before { content: "\f13b"; }
.flaticon-sagittarius:before { content: "\f13c"; }
.flaticon-salt:before { content: "\f13d"; }
.flaticon-salt-1:before { content: "\f13e"; }
.flaticon-scorpio:before { content: "\f13f"; }
.flaticon-silver:before { content: "\f140"; }
.flaticon-silver-1:before { content: "\f141"; }
.flaticon-soap:before { content: "\f142"; }
.flaticon-soapstone:before { content: "\f143"; }
.flaticon-soapstone-1:before { content: "\f144"; }
.flaticon-soot:before { content: "\f145"; }
.flaticon-spirit:before { content: "\f146"; }
.flaticon-spirit-1:before { content: "\f147"; }
.flaticon-standard-of-quality:before { content: "\f148"; }
.flaticon-still:before { content: "\f149"; }
.flaticon-stone:before { content: "\f14a"; }
.flaticon-strength:before { content: "\f14b"; }
.flaticon-sulphur:before { content: "\f14c"; }
.flaticon-sulphur-1:before { content: "\f14d"; }
.flaticon-sulphur-2:before { content: "\f14e"; }
.flaticon-sulphur-3:before { content: "\f14f"; }
.flaticon-sun:before { content: "\f150"; }
.flaticon-tartar:before { content: "\f151"; }
.flaticon-taurus:before { content: "\f152"; }
.flaticon-time-changes:before { content: "\f153"; }
.flaticon-tin:before { content: "\f154"; }
.flaticon-toughness:before { content: "\f155"; }
.flaticon-understanding:before { content: "\f156"; }
.flaticon-uranus:before { content: "\f157"; }
.flaticon-uranus-1:before { content: "\f158"; }
.flaticon-venus:before { content: "\f159"; }
.flaticon-vinegar:before { content: "\f15a"; }
.flaticon-vinegar-1:before { content: "\f15b"; }
.flaticon-virgo:before { content: "\f15c"; }
.flaticon-vitriol:before { content: "\f15d"; }
.flaticon-water:before { content: "\f15e"; }
.flaticon-wax:before { content: "\f15f"; }
.flaticon-wisdom:before { content: "\f160"; }
.flaticon-wisdom-1:before { content: "\f161"; }
.flaticon-wood:before { content: "\f162"; }
.flaticon-year:before { content: "\f163"; }
.flaticon-zinc:before { content: "\f164"; }
.flaticon-zinc-1:before { content: "\f165"; }
.flaticon-zinc-2:before { content: "\f166"; } | 0.391522 | 0.252891 |
/*------------------------------------------------------------------
[Master Stylesheet]
Project: FLUX
Version: 1.0
Last change: 10/09/2015
Author:
-------------------------------------------------------------------*/
/* ---------------- Table of contents ----------------------
1. Base
2. Loader
3. Header
4. Testimonials
5. Features
6. About
7. Registration
8. Gallery
9. Testimonials slider
10. Blog post
11. Footer
12. Responsive design
/* -------------------------------------------------------- */
/************************* */
/* 1. Base */
/************************* */
body {
padding: 0;
margin: 0;
height: 100%;
font-family: 'avenir_35_lightregular';
font-weight: 400;
font-size:16px;
color: #212223;
line-height: 28px;
}
a, button {
outline: medium none !important;
text-decoration: none !important;
}
b, strong {
font-weight: 700;
}
p{
color:#666666;
margin:0;
font-size:20px;
line-height:34px;
}
ul {
margin: 0;
padding: 0;
}
ul, li, ol {
list-style-type: none;
}
img {
height: auto;
max-width: 100%;
}
h1, h2, h3, h4, h5, h6{
font-family: 'avenir_35_lightregular';
font-weight: 500;
color:#212223;
}
h1{
font-family: 'avenir_65medium';
font-size:48px;
line-height: 70px;
color:#fff;
margin:0;
}
h2{
font-size:50px;
font-weight:300;
line-height:10px;
margin:0 0 25px;
}
h3{
font-size: 35px;
line-height: 55px;
}
::selection {
color:#fff;
background-color:#00d996;
}
::-moz-selection {
color:#fff;
background-color:#00d996;
}
.row{position:relative;}
.btn {
font-family: 'avenir_65medium';
font-size:20px;
font-weight:400;
letter-spacing: normal;
color:white;
background-color:#f59183;
border:0;
display:inline-block;
padding:0px 0px;
margin:0;
border-radius: 4px;
text-transform:uppercase;
line-height:inherit;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.btn:hover,
.btn:focus{
background-color:#519183;
color:#519183;
}
.btn-cta{
min-width:305px;
font-size:14px;
}
.btn-icon{
min-width:240px;
font-size:14px;
text-align:left;
padding:20px 0 17px 60px;
margin:3px 0;
position:relative;
}
.btn-icon i{
color:#086c4d;
font-size:22px;
position:absolute;
top:22px;
left:32px;
}
.btn-icon.mobile i{
font-size: 30px;
left: 35px;
top: 17px;
}
.send_icon{
width:60%;
}
.no-padding {
padding: 0 !important;
}
.no-margin {
margin: 0;
}
.margin-top40{
margin-top:40px;
}
.margin-top50{
margin-top:50px;
}
.container{
width: inherit;
max-width:1200px;
}
.content-padding{
padding: 70px 0 !important;
}
.gray-background{
background-color:#f6f6f6;
}
.highlight {
color: #00d996;
}
.sub-font{
font-family: 'avenir_65medium';
}
.background-overlay {
background-image: url("images/pattern.png");
bottom: 0;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.white-background{
background-color:#fff;
padding:40px 50px;
display:table;
margin:0 auto;
}
/***************** */
/* 2. Loader */
/***************** */
#loader-container {
position: fixed;
display: table;
width: 100%;
height: 100%;
min-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
vertical-align: middle;
background: #fff;
z-index: 99999;
}
.loader-content {
position: relative;
display: table-cell;
vertical-align: middle;
z-index: 3;
text-align: center;
}
.loader {
position: relative;
margin: 0 auto;
text-indent: -9999em;
-webkit-animation: load8 1s infinite linear;
animation: load8 1s infinite linear;
border-top: 6px solid rgba(0, 217, 150, 0.2);
border-right: 6px solid rgba(0, 217, 150, 0.2);
border-bottom: 6px solid rgba(0, 217, 150, 0.2);
border-left: 6px solid #00d996;
}
.loader,
.loader:after {
border-radius: 50%;
width: 100px;
height: 100px;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/************************* */
/* 3. Header */
/************************* */
.nav_top{
background-color:white;
height:100px;
display:block;
}
.tablet_header{
width:80%;
margin:auto;
}
#header1{
display:block;
background:url("home/venue_header.png") no-repeat;
background-size: cover;
background-position:center;
position: relative;
padding:75px 0 85px;
}
#mobile_header{
color:white;
font-size:28px;
line-height:40px;
text-align:center;
}
#mobile_subtext{
color:white;
text-align: center;
line-height:30px;
font-size:20px;
font-weight:lighter;
}
/** WORK WITH GROTTO BUTTON **/
#work_with{
margin-top:50px;
width:300px;
height:80px;
border-radius:50px;
background-color:#E3E3E3;
margin-left:auto;
margin-right:auto;
}
#work_with:hover{
background-color:#F59183;
color:#519183;
cursor:pointer;
}
.work_text{
text-align:center;
font-family:'avenir_65medium';
color:#509182;
font-size:22px;
padding-top:23px;
vertical-align:middle;
}
/** How it Works **/
.phone{
width:30%;
position:relative;
bottom:250px;
display:inline-block;
float:right;
margin-right:20%;
}
.how_it_works{
height:600px;
width:100%;
background-color: #fffeff;
padding:10px;
margin-top:50px;
overflow:hidden;
}
#how_text{
text-align:left;
margin-left:20px;
font-size:30px;
}
.how_list{
width:100%;
}
.how_list li{
list-style:circle;
width:40%;
color:#509182;
margin-left:20px;
list-style-position: inside;
}
.how_it_works{
padding-top:20px;
}
/************************* */
/* 5. Features */
/************************* */
.features h2{
margin-bottom:20px;
}
.slide-phone-holder,
.slide-phone-holder img.holder{
position: relative;
}
.slide-phone-holder{
max-width:338px;
}
.slide-phone-holder img.holder{
width:100%;
}
.slide-phone-holder img.screen {
position: absolute;
z-index: 1;
height: 72.5%;
left: 11.5%;
position: absolute;
top: 10.5%;
width: 75.5%;
}
.features-pagination{
margin-top:50px;
}
.features-pagination li{
position:relative;
color:#666666;
margin-bottom:40px;
padding-left:70px;
font-size:20px;
}
.features-pagination li.active,
.features-pagination li:hover{
color:#519183;
}
.features-pagination li:after{
position:absolute;
top:0;
left:0;
content:'';
width:30px;
height:30px;
border-radius:50%;
border:2px solid #e6e6e6;
}
.features-pagination li.active:after{
border-color:#212223;
}
.features-pagination li.active:before{
position:absolute;
top:10px;
left:10px;
content:'';
width:10px;
height:10px;
border-radius:50%;
background-color:#00d996;
}
/** perks **/
#tablet_perks_header{
text-align:center;
}
.perks_icon{
margin-top:50px;
display:block;
margin-left:auto;
margin-right:auto;
width:10%;
}
.perks{
height:330px;
background-color: #509182;
padding:10px;
margin-top:0px;
}
#perks_time{
text-align:center;
font-size:28px;
width:80%;
margin-left:auto;
margin-right:auto;
margin-top:20px;
color:white;
}
#perks_text{
color:white;
text-align:center;
font-size:48px;
}
.perks_list{
width:80%;
}
#perks_text,
.perks_list{
margin-left:auto;
margin-right:auto;
}
.perks_list li{
list-style:circle;
width:80%;
color:white;
list-style-position: inside;
}
.payments{
height:100px;
width:100%;
background-color: white;
padding:10px;
margin-top:20px;
}
.payments li{
width:80%;
}
.payments h1{
color:#F59183;
text-align:left;
margin:20px;
}
.paymentli{
display:none;
}
#header.custom{
background:#212223;
min-height:inherit;
padding:80px 0 40px;
}
#header.custom h1{
font-size:40px;
margin:10px 0 60px;
color:#519183;
}
#header .header-content{
display:table;
width:100%;
}
#header .header-content{
position:relative;
}
.header-content .header-phone-holder{
position:absolute;
right:100px;
bottom:-145px;
}
.header-text h1{
margin:10px 0px 20px 30px;
color:#519183;
width:89%;
}
.header-text .btn{
margin-right:8px;
}
.navigation-bar{
position:absolute;
top:15px;
left:0;
width:100%;
z-index:1;
}
.navbar{
border:none;
background-color:transparent;
margin:0;
padding: 0 50px;
z-index: 1;
}
.navbar-collapse{
padding:0;
}
.navbar-brand {
display:none;
color:#404040;
}
.navbar-default .navbar-nav > li{
padding:40px;
}
.navbar-default .navbar-nav > li > a {
font-size:20px;
font-weight:400;
padding:0;
color:#cccccc;
position:relative;
transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-webkit-transition: all 150ms linear;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a.active,
.navbar-default .navbar-nav > li.active,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
color:#00D996;
background-color:transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
border-bottom: none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.logo{
width:35%;
max-width:125px;
margin-left:20px;
}
.text_box{
width:70%;
margin-top:200px;
}
.secondary_text{
margin-top:0px;
margin-bottom:20px;
margin-left:30px;
line-height:30px;
font-size:20px;
}
.email_add{
font-size:28px;
margin-left:30px;
color:#ec8a81;
margin-top:100px;
line-height:0px;
}
.drink-text{
position:absolute;
top: 440px;
right:10px;
color:#80baab;
font-size:28px;
width:40%;
line-height:40px;
text-align:center;
font-weight:bold;
}
.registration-content{
padding:0 100px;
}
.registration-content h2{
margin-bottom:10px;
}
.registration-content p{
max-width:380px;
}
.registration-form {
margin-top: 60px;
position: relative;
}
.email_form{
display:inline-block;
margin-left:20px;
margin-right:-5px;
background-color: #fff;
border: 1px solid #ec8a81;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 300px;
height: 68px;
padding: 0 10px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.registration-form .email-newsletter {
background-color: #fff;
border: 20px solid black;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 60%;
height: 68px;
padding: 0 160px 0 20px;
border-radius:4px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#newsletter_button{
height:68px;
width:68px;
margin-top:-5px;
border-top-left-radius: 0px;
border-bottom-left-radius:0px;
}
.registration-form .email-newsletter:focus {
border-color: #04885f;
}
.registration-form .newsletter-submit {
border-radius:0 4px 4px 0;
width: 150px;
height: 68px;
position: absolute;
top: 0;
right: 0;
}
/************************* */
/* 11. Footer */
/************************* */
#emailform2{
margin-left:25%;
}
#footer{
background:#509182;
padding:20px 0 20px;
position: relative;
overflow: hidden;
}
#footer .cta-content{
display:table;
margin:60px auto 0;
}
#footer .cta-content .btn{
margin:3px 10px;
}
#footer .quick-links{
display:table;
margin:0 auto;
}
#footer .quick-links li{
float:left;
padding:0 16px;
position:relative;
}
#footer .quick-links li a{
color:#fff;
font-size:13px;
text-transform:uppercase;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#footer .quick-links li a:hover,
#footer .quick-links li a.active{
color:#519183;
}
.footer_logo{
margin-bottom:20px;
width:10%;
}
#footer .copyright{
color:#b9b9b9;
font-size:15px;
font-weight:400;
padding-left: 20px;
}
#footer .copyright a{
display:inline;
color:#666666 !important;
font-size:13px;
font-weight:300;
line-height: normal;
text-transform:uppercase;
padding-left:45px;
}
#footer .copyright a:hover{
color:#fff !important;
}
#footer .social-icon {
display:table;
margin:30px auto 50px;
}
#footer .social-icon li {
display: inline-block;
list-style: outside none none;
margin: 0 7px;
}
#footer .social-icon li a {
border: 2px solid #fff;
border-radius: 50%;
color: #fff;
display: inline-block;
font-size: 18px;
width: 40px;
height: 40px;
line-height: 36px;
text-align: center;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#footer .social-icon li a:hover {
background-color:#fff;
color: #2f2f2f;
}
/************************* */
/* 12. General text */
/************************* */
.text-padding .container{
padding:120px 90px;
}
.text-content{
padding:0 25px;
}
.text-content h2{
font-size:36px;
margin-bottom:15px;
line-height:46px;
}
.text-content p a:hover,
.text-content p a:focus{
text-decoration:underline !important;
color:#00d996;
}
.general-text ul{
margin-left:20px;
}
.general-text ul li{
list-style-type: decimal;
padding-left: 25px;
margin-top:50px;
color: #666666;
font-size: 20px;
line-height: 34px;
}
.general-text ul ul{
margin-left:70px;
}
.border{
width:100%;
border-top:1px solid #19c38e;
margin:80px 0 60px;
}
/************************* */
/* 12. Responsive design */
/************************* */
@media screen and (min-width: 767px) {
.mobile{
display:none;
}
.payments, .how_list{
}
}
@media screen and (min-width: 996px) {
.tablet{
display:none;
}
#perks_text{
text-align:left;
margin-left:11%;
margin-bottom:20px;
}
}
@media screen and (max-width: 996px) {
#tablet_perks_header{
display:none;
}
#perks_time{
display:none;
}
#perks_text{
text-align:center;
color:white;
font-size:30px;
}
.perks_list li{
list-style-position:outside;
margin-left:auto;
margin-right:auto;
}
.col-sm-6{
width:100%;
}
.email_add{
width:100%;
line-height:10px;
margin-top:375px;
}
.header-text{
display:none;
}
.drink-text{
color:#82C3B4;
top:250px;
right:70px;
width:60%;
}
}
@media screen and (max-width: 767px) {
.perks{
height:500px;
}
.tablet_header2{
display:none;
}
h2 {
line-height: 55px;
}
p{
font-size:18px;
}
.how_list li{
width:80%;
}
.phone{
width:200px;
display:block;
clear:both;
bottom:0;
}
.tablet_header{
height:300px;
}
#header{
height:600px;
}
.header-text p {
line-height: 30px;
margin-bottom: 50px;
color:black;
}
.header-text h1 {
margin-bottom: 30px;
color:black;
}
.header-content .header-phone-holder {
right: 50px;
}
.header-text .btn {
margin-bottom: 10px;
margin-right: 8px;
}
.testimonials {
padding: 80px 0;
}
.testimonials-text {
padding: 0 100px;
}
.registration-form {
margin-top: 50px;
}
.our-testimonials {
margin-bottom: 30px;
}
.our-testimonials .testimonials-author-text {
padding-left: 50px;
}
.our-testimonials .testimonials-author-text p {
font-size: 32px;
}
#footer .copyright{
padding-left: 0;
}
.email_form{
display:inline-block;
margin-right:-5px;
background-color: #fff;
border: 1px solid #e5e5e5;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 200px;
height: 40px;
padding: 0 16px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.registration-form .email-newsletter {
background-color: #fff;
border: 1px solid #e5e5e5;
font-weight: 400;
font-size:161px;
color:#c4c4c4;
width: 40%;
height: 40px;
padding: 0 16px 0 20px;
border-radius:4px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#newsletter_button{
height:40px;
margin-top:-5px;
width:100px;
border-top-left-radius: 0px;
border-bottom-left-radius:0px;
}
.subscribe_text{
position:relative;
bottom:15px;
font-size:16px;
right:15px;
}
.registration-form .email-newsletter:focus {
border-color: #04885f;
}
.registration-form .newsletter-submit {
border-radius:0 4px 4px 0;
width: 100px;
height: 68px;
position: absolute;
top: 0;
right: 0;
}
.text_box,
.drink-text,
#subform,
.email_form,
.email_email{
display:none;
}
h1 {
font-size: 32px;
line-height: 56px;
margin-bottom:20px;
margin-top:10px;
text-align:center;
margin-left:0px;
color:#509182;
}
h2{
font-size:40px;
line-height: 50px;
}
.green_bar{
height:200px;
width:100%;
background-image: url("images/green_block.png");
background-size: 100% 100% ;
background-color: #80baab;
}
.anytime_mobile{
font-family: "avenir_35_lightregular";
color:white;
font-size:24px;
line-height:50px;
text-align:center;
padding-top:35px;
}
#newsletter_button:hover{
background-color:#519183;
color:#519183;
}
.coming_mobile{
height:200px;
width:100%;
background-image: url("images/mobile_dots.png");
background-size: 100% 100% ;
background-color: #fff;
}
.coming_title{
color:#ec8a81;
font-size:28px;
margin-bottom:15px;
}
.coming_mobile{
font-family: "avenir_35_lightregular";
font-size:24px;
line-height:50px;
text-align:center;
padding-top:35px;
}
.mobile_email{
display:inline-block;
margin-top:15px;
background-color: #fff;
border: 1px solid #ec8a81;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 60%;
height: 60px;
padding: 0 16px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.mobile_button {
font-family: 'avenir_65medium';
font-size:20px;
font-weight:400;
letter-spacing: normal;
color:white;
padding-top:3px;
padding-bottom:0px;
text-transform:uppercase;
line-height:inherit;
}
#newsletter_button{
background-color:#f59183;
border:0;
height:60px;
margin-bottom:0px;
margin-left:-5px;
width:60px;
border-top-right-radius: 5px;
border-bottom-right-radius:5px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.btn-cta {
min-width: inherit;
padding-left: 8px;
padding-right: 8px;
}
.send_icon_mobile{
width:40px;
height:40px;
margin-left:15px;
margin-top:20px;
}
.logo img{
width:100%;
max-width:200px;
}
#header{
padding-bottom:20px;
}
#header.custom h1 {
margin: 40px 0 15px;
}
.header-content .header-phone-holder{
position:inherit;
right:inherit;
bottom:inherit;
margin-top:50px;
}
.header-content .header-phone-holder img{
width:100%;
max-width:338px;
}
.header-text .btn {
width:100%;
}
.coming_soon img{
width:125px;
max-width:125px;
display:block;
margin:auto;
padding-top:20px;
}
.coming_soon .coming_text {
text-align:center;
margin-top:10px;
}
.refer{
width:200px;
height:50px;
border-radius:30px;
background-color:#ec8a81;
}
.refer:hover{
background-color:#519183;
color:#519183;
cursor:pointer;
}
.refer_friends{
text-align:center;
margin-top:10px;
color:white;
padding-top:8px;
vertical-align:middle;
}
.coming_soon{
width:100%;
height:300px;
background-color:#e6e7e8;
}
.footer_logo_mobile{
width:100px;
}
.testimonials-text {
font-size: 30px;
line-height: 40px;
padding:0;
}
.features-pagination li,
.features-pagination li:after,
.features-pagination li:before{
display:none;
}
#paymentsli{
display:none;
}
#how_mobile_center{
text-align:center;
}
.features-pagination li{
padding-left:0;
}
.features-pagination li.active, .paymentli {
display:block;
text-align:center;
}
} | app/assets/stylesheets/style_venue.css | /*------------------------------------------------------------------
[Master Stylesheet]
Project: FLUX
Version: 1.0
Last change: 10/09/2015
Author:
-------------------------------------------------------------------*/
/* ---------------- Table of contents ----------------------
1. Base
2. Loader
3. Header
4. Testimonials
5. Features
6. About
7. Registration
8. Gallery
9. Testimonials slider
10. Blog post
11. Footer
12. Responsive design
/* -------------------------------------------------------- */
/************************* */
/* 1. Base */
/************************* */
body {
padding: 0;
margin: 0;
height: 100%;
font-family: 'avenir_35_lightregular';
font-weight: 400;
font-size:16px;
color: #212223;
line-height: 28px;
}
a, button {
outline: medium none !important;
text-decoration: none !important;
}
b, strong {
font-weight: 700;
}
p{
color:#666666;
margin:0;
font-size:20px;
line-height:34px;
}
ul {
margin: 0;
padding: 0;
}
ul, li, ol {
list-style-type: none;
}
img {
height: auto;
max-width: 100%;
}
h1, h2, h3, h4, h5, h6{
font-family: 'avenir_35_lightregular';
font-weight: 500;
color:#212223;
}
h1{
font-family: 'avenir_65medium';
font-size:48px;
line-height: 70px;
color:#fff;
margin:0;
}
h2{
font-size:50px;
font-weight:300;
line-height:10px;
margin:0 0 25px;
}
h3{
font-size: 35px;
line-height: 55px;
}
::selection {
color:#fff;
background-color:#00d996;
}
::-moz-selection {
color:#fff;
background-color:#00d996;
}
.row{position:relative;}
.btn {
font-family: 'avenir_65medium';
font-size:20px;
font-weight:400;
letter-spacing: normal;
color:white;
background-color:#f59183;
border:0;
display:inline-block;
padding:0px 0px;
margin:0;
border-radius: 4px;
text-transform:uppercase;
line-height:inherit;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.btn:hover,
.btn:focus{
background-color:#519183;
color:#519183;
}
.btn-cta{
min-width:305px;
font-size:14px;
}
.btn-icon{
min-width:240px;
font-size:14px;
text-align:left;
padding:20px 0 17px 60px;
margin:3px 0;
position:relative;
}
.btn-icon i{
color:#086c4d;
font-size:22px;
position:absolute;
top:22px;
left:32px;
}
.btn-icon.mobile i{
font-size: 30px;
left: 35px;
top: 17px;
}
.send_icon{
width:60%;
}
.no-padding {
padding: 0 !important;
}
.no-margin {
margin: 0;
}
.margin-top40{
margin-top:40px;
}
.margin-top50{
margin-top:50px;
}
.container{
width: inherit;
max-width:1200px;
}
.content-padding{
padding: 70px 0 !important;
}
.gray-background{
background-color:#f6f6f6;
}
.highlight {
color: #00d996;
}
.sub-font{
font-family: 'avenir_65medium';
}
.background-overlay {
background-image: url("images/pattern.png");
bottom: 0;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.white-background{
background-color:#fff;
padding:40px 50px;
display:table;
margin:0 auto;
}
/***************** */
/* 2. Loader */
/***************** */
#loader-container {
position: fixed;
display: table;
width: 100%;
height: 100%;
min-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
vertical-align: middle;
background: #fff;
z-index: 99999;
}
.loader-content {
position: relative;
display: table-cell;
vertical-align: middle;
z-index: 3;
text-align: center;
}
.loader {
position: relative;
margin: 0 auto;
text-indent: -9999em;
-webkit-animation: load8 1s infinite linear;
animation: load8 1s infinite linear;
border-top: 6px solid rgba(0, 217, 150, 0.2);
border-right: 6px solid rgba(0, 217, 150, 0.2);
border-bottom: 6px solid rgba(0, 217, 150, 0.2);
border-left: 6px solid #00d996;
}
.loader,
.loader:after {
border-radius: 50%;
width: 100px;
height: 100px;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/************************* */
/* 3. Header */
/************************* */
.nav_top{
background-color:white;
height:100px;
display:block;
}
.tablet_header{
width:80%;
margin:auto;
}
#header1{
display:block;
background:url("home/venue_header.png") no-repeat;
background-size: cover;
background-position:center;
position: relative;
padding:75px 0 85px;
}
#mobile_header{
color:white;
font-size:28px;
line-height:40px;
text-align:center;
}
#mobile_subtext{
color:white;
text-align: center;
line-height:30px;
font-size:20px;
font-weight:lighter;
}
/** WORK WITH GROTTO BUTTON **/
#work_with{
margin-top:50px;
width:300px;
height:80px;
border-radius:50px;
background-color:#E3E3E3;
margin-left:auto;
margin-right:auto;
}
#work_with:hover{
background-color:#F59183;
color:#519183;
cursor:pointer;
}
.work_text{
text-align:center;
font-family:'avenir_65medium';
color:#509182;
font-size:22px;
padding-top:23px;
vertical-align:middle;
}
/** How it Works **/
.phone{
width:30%;
position:relative;
bottom:250px;
display:inline-block;
float:right;
margin-right:20%;
}
.how_it_works{
height:600px;
width:100%;
background-color: #fffeff;
padding:10px;
margin-top:50px;
overflow:hidden;
}
#how_text{
text-align:left;
margin-left:20px;
font-size:30px;
}
.how_list{
width:100%;
}
.how_list li{
list-style:circle;
width:40%;
color:#509182;
margin-left:20px;
list-style-position: inside;
}
.how_it_works{
padding-top:20px;
}
/************************* */
/* 5. Features */
/************************* */
.features h2{
margin-bottom:20px;
}
.slide-phone-holder,
.slide-phone-holder img.holder{
position: relative;
}
.slide-phone-holder{
max-width:338px;
}
.slide-phone-holder img.holder{
width:100%;
}
.slide-phone-holder img.screen {
position: absolute;
z-index: 1;
height: 72.5%;
left: 11.5%;
position: absolute;
top: 10.5%;
width: 75.5%;
}
.features-pagination{
margin-top:50px;
}
.features-pagination li{
position:relative;
color:#666666;
margin-bottom:40px;
padding-left:70px;
font-size:20px;
}
.features-pagination li.active,
.features-pagination li:hover{
color:#519183;
}
.features-pagination li:after{
position:absolute;
top:0;
left:0;
content:'';
width:30px;
height:30px;
border-radius:50%;
border:2px solid #e6e6e6;
}
.features-pagination li.active:after{
border-color:#212223;
}
.features-pagination li.active:before{
position:absolute;
top:10px;
left:10px;
content:'';
width:10px;
height:10px;
border-radius:50%;
background-color:#00d996;
}
/** perks **/
#tablet_perks_header{
text-align:center;
}
.perks_icon{
margin-top:50px;
display:block;
margin-left:auto;
margin-right:auto;
width:10%;
}
.perks{
height:330px;
background-color: #509182;
padding:10px;
margin-top:0px;
}
#perks_time{
text-align:center;
font-size:28px;
width:80%;
margin-left:auto;
margin-right:auto;
margin-top:20px;
color:white;
}
#perks_text{
color:white;
text-align:center;
font-size:48px;
}
.perks_list{
width:80%;
}
#perks_text,
.perks_list{
margin-left:auto;
margin-right:auto;
}
.perks_list li{
list-style:circle;
width:80%;
color:white;
list-style-position: inside;
}
.payments{
height:100px;
width:100%;
background-color: white;
padding:10px;
margin-top:20px;
}
.payments li{
width:80%;
}
.payments h1{
color:#F59183;
text-align:left;
margin:20px;
}
.paymentli{
display:none;
}
#header.custom{
background:#212223;
min-height:inherit;
padding:80px 0 40px;
}
#header.custom h1{
font-size:40px;
margin:10px 0 60px;
color:#519183;
}
#header .header-content{
display:table;
width:100%;
}
#header .header-content{
position:relative;
}
.header-content .header-phone-holder{
position:absolute;
right:100px;
bottom:-145px;
}
.header-text h1{
margin:10px 0px 20px 30px;
color:#519183;
width:89%;
}
.header-text .btn{
margin-right:8px;
}
.navigation-bar{
position:absolute;
top:15px;
left:0;
width:100%;
z-index:1;
}
.navbar{
border:none;
background-color:transparent;
margin:0;
padding: 0 50px;
z-index: 1;
}
.navbar-collapse{
padding:0;
}
.navbar-brand {
display:none;
color:#404040;
}
.navbar-default .navbar-nav > li{
padding:40px;
}
.navbar-default .navbar-nav > li > a {
font-size:20px;
font-weight:400;
padding:0;
color:#cccccc;
position:relative;
transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-webkit-transition: all 150ms linear;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a.active,
.navbar-default .navbar-nav > li.active,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
color:#00D996;
background-color:transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
border-bottom: none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.logo{
width:35%;
max-width:125px;
margin-left:20px;
}
.text_box{
width:70%;
margin-top:200px;
}
.secondary_text{
margin-top:0px;
margin-bottom:20px;
margin-left:30px;
line-height:30px;
font-size:20px;
}
.email_add{
font-size:28px;
margin-left:30px;
color:#ec8a81;
margin-top:100px;
line-height:0px;
}
.drink-text{
position:absolute;
top: 440px;
right:10px;
color:#80baab;
font-size:28px;
width:40%;
line-height:40px;
text-align:center;
font-weight:bold;
}
.registration-content{
padding:0 100px;
}
.registration-content h2{
margin-bottom:10px;
}
.registration-content p{
max-width:380px;
}
.registration-form {
margin-top: 60px;
position: relative;
}
.email_form{
display:inline-block;
margin-left:20px;
margin-right:-5px;
background-color: #fff;
border: 1px solid #ec8a81;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 300px;
height: 68px;
padding: 0 10px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.registration-form .email-newsletter {
background-color: #fff;
border: 20px solid black;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 60%;
height: 68px;
padding: 0 160px 0 20px;
border-radius:4px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#newsletter_button{
height:68px;
width:68px;
margin-top:-5px;
border-top-left-radius: 0px;
border-bottom-left-radius:0px;
}
.registration-form .email-newsletter:focus {
border-color: #04885f;
}
.registration-form .newsletter-submit {
border-radius:0 4px 4px 0;
width: 150px;
height: 68px;
position: absolute;
top: 0;
right: 0;
}
/************************* */
/* 11. Footer */
/************************* */
#emailform2{
margin-left:25%;
}
#footer{
background:#509182;
padding:20px 0 20px;
position: relative;
overflow: hidden;
}
#footer .cta-content{
display:table;
margin:60px auto 0;
}
#footer .cta-content .btn{
margin:3px 10px;
}
#footer .quick-links{
display:table;
margin:0 auto;
}
#footer .quick-links li{
float:left;
padding:0 16px;
position:relative;
}
#footer .quick-links li a{
color:#fff;
font-size:13px;
text-transform:uppercase;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#footer .quick-links li a:hover,
#footer .quick-links li a.active{
color:#519183;
}
.footer_logo{
margin-bottom:20px;
width:10%;
}
#footer .copyright{
color:#b9b9b9;
font-size:15px;
font-weight:400;
padding-left: 20px;
}
#footer .copyright a{
display:inline;
color:#666666 !important;
font-size:13px;
font-weight:300;
line-height: normal;
text-transform:uppercase;
padding-left:45px;
}
#footer .copyright a:hover{
color:#fff !important;
}
#footer .social-icon {
display:table;
margin:30px auto 50px;
}
#footer .social-icon li {
display: inline-block;
list-style: outside none none;
margin: 0 7px;
}
#footer .social-icon li a {
border: 2px solid #fff;
border-radius: 50%;
color: #fff;
display: inline-block;
font-size: 18px;
width: 40px;
height: 40px;
line-height: 36px;
text-align: center;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#footer .social-icon li a:hover {
background-color:#fff;
color: #2f2f2f;
}
/************************* */
/* 12. General text */
/************************* */
.text-padding .container{
padding:120px 90px;
}
.text-content{
padding:0 25px;
}
.text-content h2{
font-size:36px;
margin-bottom:15px;
line-height:46px;
}
.text-content p a:hover,
.text-content p a:focus{
text-decoration:underline !important;
color:#00d996;
}
.general-text ul{
margin-left:20px;
}
.general-text ul li{
list-style-type: decimal;
padding-left: 25px;
margin-top:50px;
color: #666666;
font-size: 20px;
line-height: 34px;
}
.general-text ul ul{
margin-left:70px;
}
.border{
width:100%;
border-top:1px solid #19c38e;
margin:80px 0 60px;
}
/************************* */
/* 12. Responsive design */
/************************* */
@media screen and (min-width: 767px) {
.mobile{
display:none;
}
.payments, .how_list{
}
}
@media screen and (min-width: 996px) {
.tablet{
display:none;
}
#perks_text{
text-align:left;
margin-left:11%;
margin-bottom:20px;
}
}
@media screen and (max-width: 996px) {
#tablet_perks_header{
display:none;
}
#perks_time{
display:none;
}
#perks_text{
text-align:center;
color:white;
font-size:30px;
}
.perks_list li{
list-style-position:outside;
margin-left:auto;
margin-right:auto;
}
.col-sm-6{
width:100%;
}
.email_add{
width:100%;
line-height:10px;
margin-top:375px;
}
.header-text{
display:none;
}
.drink-text{
color:#82C3B4;
top:250px;
right:70px;
width:60%;
}
}
@media screen and (max-width: 767px) {
.perks{
height:500px;
}
.tablet_header2{
display:none;
}
h2 {
line-height: 55px;
}
p{
font-size:18px;
}
.how_list li{
width:80%;
}
.phone{
width:200px;
display:block;
clear:both;
bottom:0;
}
.tablet_header{
height:300px;
}
#header{
height:600px;
}
.header-text p {
line-height: 30px;
margin-bottom: 50px;
color:black;
}
.header-text h1 {
margin-bottom: 30px;
color:black;
}
.header-content .header-phone-holder {
right: 50px;
}
.header-text .btn {
margin-bottom: 10px;
margin-right: 8px;
}
.testimonials {
padding: 80px 0;
}
.testimonials-text {
padding: 0 100px;
}
.registration-form {
margin-top: 50px;
}
.our-testimonials {
margin-bottom: 30px;
}
.our-testimonials .testimonials-author-text {
padding-left: 50px;
}
.our-testimonials .testimonials-author-text p {
font-size: 32px;
}
#footer .copyright{
padding-left: 0;
}
.email_form{
display:inline-block;
margin-right:-5px;
background-color: #fff;
border: 1px solid #e5e5e5;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 200px;
height: 40px;
padding: 0 16px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.registration-form .email-newsletter {
background-color: #fff;
border: 1px solid #e5e5e5;
font-weight: 400;
font-size:161px;
color:#c4c4c4;
width: 40%;
height: 40px;
padding: 0 16px 0 20px;
border-radius:4px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
#newsletter_button{
height:40px;
margin-top:-5px;
width:100px;
border-top-left-radius: 0px;
border-bottom-left-radius:0px;
}
.subscribe_text{
position:relative;
bottom:15px;
font-size:16px;
right:15px;
}
.registration-form .email-newsletter:focus {
border-color: #04885f;
}
.registration-form .newsletter-submit {
border-radius:0 4px 4px 0;
width: 100px;
height: 68px;
position: absolute;
top: 0;
right: 0;
}
.text_box,
.drink-text,
#subform,
.email_form,
.email_email{
display:none;
}
h1 {
font-size: 32px;
line-height: 56px;
margin-bottom:20px;
margin-top:10px;
text-align:center;
margin-left:0px;
color:#509182;
}
h2{
font-size:40px;
line-height: 50px;
}
.green_bar{
height:200px;
width:100%;
background-image: url("images/green_block.png");
background-size: 100% 100% ;
background-color: #80baab;
}
.anytime_mobile{
font-family: "avenir_35_lightregular";
color:white;
font-size:24px;
line-height:50px;
text-align:center;
padding-top:35px;
}
#newsletter_button:hover{
background-color:#519183;
color:#519183;
}
.coming_mobile{
height:200px;
width:100%;
background-image: url("images/mobile_dots.png");
background-size: 100% 100% ;
background-color: #fff;
}
.coming_title{
color:#ec8a81;
font-size:28px;
margin-bottom:15px;
}
.coming_mobile{
font-family: "avenir_35_lightregular";
font-size:24px;
line-height:50px;
text-align:center;
padding-top:35px;
}
.mobile_email{
display:inline-block;
margin-top:15px;
background-color: #fff;
border: 1px solid #ec8a81;
border-top-left-radius: 4px;
border-bottom-right-radius:4px;
border-top-right-radius: 0px;
border-bottom-right-radius:0px;
font-weight: 400;
font-size:21px;
color:#c4c4c4;
width: 60%;
height: 60px;
padding: 0 16px 0 20px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.mobile_button {
font-family: 'avenir_65medium';
font-size:20px;
font-weight:400;
letter-spacing: normal;
color:white;
padding-top:3px;
padding-bottom:0px;
text-transform:uppercase;
line-height:inherit;
}
#newsletter_button{
background-color:#f59183;
border:0;
height:60px;
margin-bottom:0px;
margin-left:-5px;
width:60px;
border-top-right-radius: 5px;
border-bottom-right-radius:5px;
transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.btn-cta {
min-width: inherit;
padding-left: 8px;
padding-right: 8px;
}
.send_icon_mobile{
width:40px;
height:40px;
margin-left:15px;
margin-top:20px;
}
.logo img{
width:100%;
max-width:200px;
}
#header{
padding-bottom:20px;
}
#header.custom h1 {
margin: 40px 0 15px;
}
.header-content .header-phone-holder{
position:inherit;
right:inherit;
bottom:inherit;
margin-top:50px;
}
.header-content .header-phone-holder img{
width:100%;
max-width:338px;
}
.header-text .btn {
width:100%;
}
.coming_soon img{
width:125px;
max-width:125px;
display:block;
margin:auto;
padding-top:20px;
}
.coming_soon .coming_text {
text-align:center;
margin-top:10px;
}
.refer{
width:200px;
height:50px;
border-radius:30px;
background-color:#ec8a81;
}
.refer:hover{
background-color:#519183;
color:#519183;
cursor:pointer;
}
.refer_friends{
text-align:center;
margin-top:10px;
color:white;
padding-top:8px;
vertical-align:middle;
}
.coming_soon{
width:100%;
height:300px;
background-color:#e6e7e8;
}
.footer_logo_mobile{
width:100px;
}
.testimonials-text {
font-size: 30px;
line-height: 40px;
padding:0;
}
.features-pagination li,
.features-pagination li:after,
.features-pagination li:before{
display:none;
}
#paymentsli{
display:none;
}
#how_mobile_center{
text-align:center;
}
.features-pagination li{
padding-left:0;
}
.features-pagination li.active, .paymentli {
display:block;
text-align:center;
}
} | 0.378459 | 0.060032 |
@font-face {
font-family: 'afta_sansitalic';
src: url('fonts/aftasansthin-italic-webfont.eot');
src: url('fonts/aftasansthin-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/aftasansthin-italic-webfont.woff') format('woff'),
url('fonts/aftasansthin-italic-webfont.ttf') format('truetype'),
url('fonts/aftasansthin-italic-webfont.svg#afta_sansitalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'afta_sansregular';
src: url('fonts/aftasansthin-regular-webfont.eot');
src: url('fonts/aftasansthin-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/aftasansthin-regular-webfont.woff') format('woff'),
url('fonts/aftasansthin-regular-webfont.ttf') format('truetype'),
url('fonts/aftasansthin-regular-webfont.svg#afta_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* ----------------------------------------------------
SKELETON
------------------------------------------------------- */
body {
font-family: 'Lato', Arial, Helvetica, sans-serif;
font-size:14px;
line-height:24px;
position:relative;
font-weight:300;
background:#E5E5E5;
color:#818181;
padding:0;
}
a {
color:#181818;
padding: 0;
margin: 0;
text-decoration: none;
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
a:hover,
a:focus {
text-decoration: none;
color:#a2b881;
}
a.remove{
display:block;
height:18px;
width:18px;
margin:10px;
padding-left:0 !important;
text-indent:-9999px;
background:url(images/remove.png) #798184;
border-radius:100px;
border-style:solid;
border-width:1px
}
.img-top {
margin-top:27px;
}
.first {
clear:both
}
.last{
margin-right:0
}
.hidden{
display:none
}
.alignleft{
float:left
}
.alignright{
float:right
}
.aligncenter{
margin-left:auto;
margin-right:auto;
display:block;
clear:both
}
#soundcloud {
width:100%;
border:1px solid #dedede;
height:166px;
}
/* ----------------------------------------------------
HEADINGS
------------------------------------------------------- */
h1,h2,h3,h4,h5,h6{
letter-spacing:0px;
font-weight:normal;
position: relative;
padding: 0 0 10px 0;
font-weight:normal;
font-family: 'afta_sansregular', arial, serif;
line-height:140% !important;
color:#181818;
}
h1{
font-size: 22px;
}
h2{
font-size: 20px;
}
h3{
font-size: 18px;
}
h4{
font-size: 16px;
}
h5{
font-size: 14px;
}
h6{
font-size: 13px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
text-decoration:none !important;
}
/* ----------------------------------------------------
SITE STRUCTURES
------------------------------------------------------- */
.general-title h1 {
font-size:36px;
letter-spacing:2px;
text-transform:uppercase;
}
.parallax {
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.light-overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.2);
padding: 60px 0;
}
.ani-overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.6);
padding: 0;
}
.overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.6);
padding: 90px 0;
}
.message h1,
.light-overlay .general-title h1,
.overlay .general-title h1 {
font-family: 'Raleway', Arial, Helvetica, sans-serif;
font-weight:bold;
}
.custom_box {
color:#ffffff;
text-align:center;
padding:30px 0;
overflow:hidden
}
.custom_box img {
margin:10px 0 40px;
}
.message h1 {
font-size:46px;
}
.message .lead {
letter-spacing:1.4px;
font-weight:300;
font-size:24px;
}
.overlay .general-title .lead {
letter-spacing:1.4px;
}
.quote-icon i,
.light-overlay .general-title h1,
.light-overlay .lead,
.overlay .general-title .lead,
.overlay .general-title h1,
.overlay .message h1,
.overlay .message p {
color:#fff !important;
}
.orange-wrapper {
position:relative;
padding:60px 0 50px;
}
.white-wrapper {
position:relative;
padding:90px 0;
background:#ffffff;
}
.copyright-wrapper {
background:#ffffff;
position:relative;
padding:15px 0 40px;
}
.copyrights {
text-align:center;
font-size:14px;
}
svg#bigTriangleColor {
pointer-events: none;
position:relative;
display:block;
overflow:hidden;
margin-bottom:-20px;
}
#bigTriangleColor path {
fill: #ffffff;
stroke: #ffffff;
stroke-width:0;
}
#seven-parallax .overlay {
padding:40px 0 0;
}
/* ----------------------------------------------------
SLIDER OPTIONS
------------------------------------------------------- */
@keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-moz-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-webkit-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-ms-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-o-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position:-31000px 0; }
}
#animate-area img {
width:100%;
height:100%;
}
#animate-area {
width: 100%;
position:absolute;
height:100%;
top:0;
bottom:0;
left:0;
z-index:-1;
background-image: url(demos/parallaxbg_01.jpg);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 666s linear infinite;
-moz-animation: animatedBackground 666s linear infinite;
-webkit-animation: animatedBackground 666s linear infinite;
-ms-animation: animatedBackground 666s linear infinite;
-o-animation: animatedBackground 666s linear infinite;
}
#slides {
position: relative;
}
#slides .slides-container {
margin: 0;
list-style:none;
}
#slides .scrollable {
*zoom: 1;
position: relative;
top: 0;
left: 0;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
height: 100%;
}
#slides .scrollable:after {
content: "";
display: table;
clear: both;
}
.slides-pagination {
position: absolute;
z-index: 20;
bottom: 30px;
text-align: center;
width: 100%;
}
.slides-pagination a {
color: #1a1a1a;
background: #ffffff;
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
width: 30px;
height: 4px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
margin: 2px;
overflow: hidden;
text-indent: -100%;
}
.slides-navigation a:hover {
opacity: 0.5;
-moz-opacity: 0.5;
filter: alpha(opacity=50);
}
.slides-navigation {
top: 50%;
}
.slides-navigation a {
display: block;
text-decoration: none;
color: white;
font-size: 24px;
margin: 0 25px;
text-align: center;
height: 60px;
width: 60px;
line-height:60px;
top: 0;
border:1px solid #ffffff;
padding: 0;
-webkit-border-radius: 500px;
border-radius: 500px;
}
.slides-navigation {
margin: 0 auto;
position: absolute;
z-index: 3;
top: 46%;
width: 100%;
}
.slides-navigation a {
position: absolute;
display: block;
}
.slides-navigation a.prev {
left: 0;
}
.slides-navigation a.next {
right: 0;
}
.home-content{
position: absolute;
z-index: 99;
text-align: center;
width: 70%;
left:50%;
top:46%;
-webkit-transform:translate(-50%,-50%);
-moz-transform:translate(-50%,-50%);
-ms-transform:translate(-50%,-50%);
-o-transform:translate(-50%,-50%);
transform:translate(-50%,-50%);
display:inline-block;
padding:20px;
}
.home-content .logowrap {
margin:20px 0 40px;
overflow:hidden;
}
.home-content h1 {
font-size:510%;
color:#ffffff;
margin:20px 0;
text-transform:uppercase;
}
.home-content .lead {
color:#ffffff;
margin:20px 0 40px;
}
.home-content h3 {
font-size:31px;
color:#ffffff;
font-family: 'Raleway';
margin-top:0;
text-transform:uppercase
}
.hwrap{
top: 0px;
z-index: 1;
width:100%;
height:100%;
display:block;
overflow:hidden;
padding: 0 !important;
position:relative;
}
.boxedcontainer {
max-width: 1170px;
margin:auto;
padding:0px 30px;
}
.tp-banner-container {
width:100%;
position:relative;
padding:0;
}
.tp-banner {
width:100%;
position:relative;
}
.tp-banner-fullscreen-container {
width:100%;
position:relative;
padding:0;
}
.big_title2 h1 {
font-size:440% !important;
}
.big_title2 h1,
.big_title h1 {
font-size:610%;
text-transform:uppercase;
color:#fff;
text-align:center;
}
.small_title {
font-size:25px;
color:#a2b881;
text-align:center;
font-weight:800;
}
.small_title .trans-btn {
color:#ffffff;
}
@media (max-width: 768px) {
.home-content h1 {font-size:31px !important}
.tparrows,
.small_title,
.slider_menu a {display:none}
}
.slider_menu a {
padding:5px 0;
border-top:2px solid #ffffff;
font-size:14px !important;
text-transform:uppercase;
color:#ffffff !important;
}
.slider_menu a:hover {
border-top-width:6px;
border-top-style: double;
}
.tp-bullets.simplebullets.navbar {
height: 35px;
padding: 0px 0px;
}
.tp-bullets.simplebullets .bullet {
cursor: pointer;
position: relative !important;
background: rgba(0, 0, 0, 0.5) !important;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
width: 6px !important;
height: 6px !important;
border: 5px solid rgba(0, 0, 0, 0) !important;
display: inline-block;
margin-right: 2px !important;
margin-bottom: 14px !important;
-webkit-transition: background-color 0.2s, border-color 0.2s;
-moz-transition: background-color 0.2s, border-color 0.2s;
-o-transition: background-color 0.2s, border-color 0.2s;
-ms-transition: background-color 0.2s, border-color 0.2s;
transition: background-color 0.2s, border-color 0.2s;
float:none !important;
}
.tp-bullets.simplebullets .bullet.last {
margin-right: 0px
}
.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background: rgba(255, 255, 255, 1) !important;
width: 6px !important;
height: 6px !important;
border: 5px solid #a2b881 !important;
}
.tparrows:before {
font-family: 'revicons';
color: #aaaaaa;
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
margin-right: 0;
margin-top: 17px;
text-align: center;
width: 55px;
font-size: 14px;
}
.slides-navigation a,
.tp-leftarrow,
.tp-rightarrow{
opacity:0.4 !important;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
.slides-navigation a:hover,
.tp-leftarrow:hover,
.tp-rightarrow:hover{
filter:alpha(opacity=100); /* For IE8 and earlier */
opacity:1 !important;
}
.tparrows {
border:2px solid #aaaaaa;
cursor: pointer;
background: rgba(0, 0, 0, 0) !important;
-webkit-border-radius: 500px;
border-radius: 500px;
width: 60px !important;
height: 60px !important;
}
.tparrows:hover {
color: #fff;
}
.tp-leftarrow:before {
content: '\e824';
}
.tp-rightarrow:before {
content: '\e825';
}
.tparrows.tp-rightarrow:before {
margin-left: 1px;
}
.tparrows:hover {
background: rgba(0, 0, 0, 0) !important;
}
#slider4container .tparrows:before,
#slider4container .tparrows:hover,
#slider4container .tparrows {
color: #000 !important;
}
#slider4container .tparrows {
background:#fff !important;
background:rgba(255,255,255,0.5) !important;
}
#slider4container .tparrows:hover {
background:#fff !important
}
/* ----------------------------------------------------
NAVIGATION OPTIONS
------------------------------------------------------- */
.navbar-brand {
padding:0;
}
.navbar-nav > li > .dropdown-menu:after,
.navbar-nav > li > .dropdown-menu:before {
display:none;
}
.header.affix .navbar-nav > li > .dropdown-menu {margin-top:12px;}
.navbar-nav > li > .dropdown-menu {margin-top:23px; border-top:none}
.navbar-default .dropdown-menu {
box-shadow:none;
border-color:#E2E3DF;
background:#ffffff;
border-radius:0;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {background:#ffffff;}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
background:none !important;
}
.navbar-default {
padding:0;
margin:20px 0;
background:#ffffff;
border:none !important;
box-shadow:none;
}
.header {
background:#ffffff;
border-bottom:1px solid #ececec;
position: relative;
z-index: 12;
}
.header.affix .navbar-default {
margin:10px 0;
}
.header.affix {
position: fixed;
top: 0;
width: 100%
}
.navbar-default .dropdown-menu li a {
font-size:14px !important;
font-weight:300;
color:#181818;
}
.header .nav li a {
font-size:16px;
color:#181818;
}
.social {
margin:11px 0;
padding-right:0;
}
/* ----------------------------------------------------
MODULES
------------------------------------------------------- */
.buttonBar {
display:none !important
}
#mbYTP_bgndVideo,
#bgndVideo {
position: relative;
width: 100%;
height: 100%;
display:block;
}
.volume:hover {
color:#ffffff !important
}
.volume {
bottom: 0;
position: absolute;
z-index: 99991;
right:0;
width: 30px;
height: 30px;
line-height: 30px;
font-size: 20px;
text-align: center;
color: #ffffff;
cursor: pointer;
}
.team_member h3 small {
font-size:13px;
}
.team_member h3 {
margin-bottom:5px;
font-size:15px;
}
.overlay .social {
margin:auto;
padding:10px;
margin-bottom:40px;
display:table;
}
.overlay .social span i {
color:#fff;
font-size:23px !important;
}
.overlay .social span {
border-color:#ffffff;
width:50px;
height:50px;
line-height:53px;
display:inline-block !important;
margin-top:10px !important;
float:none !important;
}
.copyrights .social span {
display:inline-block;
margin-top:10px;
float:none;
}
.social span a {
color: #676767;
}
.social span i {
font-size: 14px;
}
.social span {
border:1px solid #676767;
float: none;
display:inline-block;
height: 30px;
line-height: 26px;
margin-left: 5px;
position: relative;
text-align: center;
width: 30px;
z-index: 5;
}
hr.jt {
padding: 0;
margin:30px 0;
border: none;
border:none;
text-align: center;
}
hr.jt:after {
content:url(images/hr.png);
display: inline-block;
position: relative;
top: -1em;
font-size: 1.5em;
padding: 0 0.85em;
}
.btn-wrapper {
padding:25px 0 0;
overflow:hidden;
}
.jobutton {
display: inline-block;
-webkit-transition: all 200ms linear !important;
transition: all 200ms linear !important;
padding: 8px 20px 8px 30px !important;
}
.jobutton i {
float: right;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
opacity: 0;
font-size:15px;
padding-top:5px;
-webkit-transition: all 200ms linear !important;
transition: all 200ms linear !important;
}
.jobutton:hover i {
margin-left: 10px !important;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
opacity: 1;
}
#sidebar .nav-tabs > li > a:hover,
#sidebar .nav-tabs > li > a:focus {
color:#ffffff;
border-radius:0;
}
#sidebar .nav-tabs,
#sidebar .nav-tabs > li > a:hover,
#sidebar .nav-tabs > li > a {
border:none;
border-radius:0;
}
#comments_form .form-control,
#calculate .form-control,
#newsletter_widget .form-control {
margin-bottom:10px;
}
#sidebar .tabbable {
margin-top:20px;
}
.twitter_feed {
padding-left:0
}
.twitter_feed li {
list-style:none;
overflow:hidden;
margin-bottom:30px;
}
.twitter_feed li:before {
color: #0084B4;
font-family: 'FontAwesome';
content: "\f099";
padding:10px;
vertical-align: text-top;
font-size:21px;
}
.tagcloud a {
float: left;
display: block;
margin-bottom: 6px;
margin-right: 6px;
padding: 5px 10px;
color: #161616 !important;
text-decoration: none;
border:1px solid #f2f2f2;
background:#f2f2f2;
box-shadow:none !important;
}
.tagcloud a:hover {
background: #232527;
border:1px solid inherit;
color: #fff !important;
text-decoration: none;
}
.flickr-gallery {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.flickr-gallery li {
margin: 2px;
width:75px;
border:3px solid #ffffff;
float: left;
}
.flickr-gallery li:hover {
border:3px solid #ffffff;
}
#newsletter {
margin:40px auto;
width:60%;
overflow:hidden;
}
#newsletter .form-control {
background:none !important;
border-radius:0;
height:55px;
color:#ffffff;
text-align:center;
font-style:italic;
font-weight:300;
opacity:0.6;
}
.post-top .overlay {
padding:60px 0;
}
.post-top .lead {
color:#FFF
}
.post-top h1 {
color:#ffffff;
font-size:40px;
}
.hrstyle {
margin:10px auto 20px;
overflow:hidden;
cursor: pointer;
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
width: 40px;
height: 40px;
line-height:40px;
font-size:14px;
text-align: center;
position: relative;
z-index: 1;
background:#ffffff;
color: #ffffff;
}
.widget {
margin:20px 0;
overflow:hidden;
display:block;
}
.widget i {
color:#181818;
}
.widget .title h3 {
font-size:14px;
}
.widget .title h3,
.widget .title h2 {
font-weight:700;
}
.form-control:focus {
box-shadow:none;
}
.btn-default,
.btn-primary {
font-weight:300;
border-radius:0;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
background:#ffffff;
box-shadow:none;
}
.btn {
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #181818;
border-color: #282828;
}
.trans-btn {
background:none !important;
border-color:#fff;
padding:11px 50px;
border-radius:0;
}
.trans-btn:hover{
border-color:#fff !important;
}
.custom-icon {
border:1px solid #ffffff;
height: 68px;
line-height: 65px;
margin:20px auto;
position: relative;
text-align: center;
width: 68px;
font-size:24px;
}
.twitter-icon i {
color:#3B88C3 !important;
}
.hovicon {
display: inline-block;
line-height: 75px;
cursor: pointer;
margin: 25px 0 0;
width: 75px;
height: 75px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
text-align: center;
position: relative;
text-decoration: none;
z-index: 1;
color: #fff !important;
}
.hovicon:after {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content:'';
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.hovicon:before {
speak: none;
line-height: 80px;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
display: block;
-webkit-font-smoothing: antialiased;
}
.hovicon.effect-1 {
-webkit-transition: background 0.2s, color 0.2s;
-moz-transition: background 0.2s, color 0.2s;
transition: background 0.2s, color 0.2s;
}
.hovicon.effect-1:after {
top: -7px;
left: -7px;
padding: 7px;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
-webkit-transform: scale(.8);
-moz-transition: -moz-transform 0.2s, opacity 0.2s;
-moz-transform: scale(.8);
-ms-transform: scale(.8);
transition: transform 0.2s, opacity 0.2s;
transform: scale(.8);
opacity: 0;
}
.hovicon.effect-1.sub-a:hover:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.skills_bar {
margin:30px 0;
margin-top:0px;
overflow:hidden;
}
.skills_bar small {
font-size:14px;
color:#181818;
margin:10px 0;
}
.progress {
border-radius:0;
box-shadow:none;
background-color:#dfe5e9;
margin:10px 0;
height:10px;
}
#map{
height:450px;
width:100%
}
#map img{
max-width:inherit
}
.map{
position:relative
}
.map .row .col-lg-4{
float:right;
margin-top:-450px;
z-index:9
}
.map .row{
position:relative
}
.infobox img {
width:100% !important;
}
.map .searchmodule {
padding:18px 10px
}
.infobox {
display: inline-block;
padding: 5px;
position: relative;
width: 270px;
}
.infobox img {
width:80px !important;
padding-right:10px
}
.infobox .title {
font-size:13px;
font-weight:bold;
margin-top:0;
margin-bottom:0;
text-transform:uppercase;
padding-bottom:5px;
}
.infobox .title a {
font-weight:bold;
}
#features .nav-tabs > li {
float:none !important;
margin:20px 11px 0 !important;
display:inline-block !important;
}
#features .tab-content .title h3 {
padding-bottom: 0;
text-transform: uppercase;
font-size: 24px;
font-weight: bold;
}
#features .nav-tabs {
border-bottom: medium none;
float: none;
margin: 10px auto 20px;
width: 50%;
}
#features .title h1 {
font-weight:300;
font-size:40px;
padding-bottom:5px;
text-transform:none;
}
#features .tab-content {
border:none;
}
#features .nav > li > a:hover {
}
#features .nav-tabs > li:hover {
}
#features .nav-tabs > li.active > a,
#features .nav-tabs > li.active > a:hover,
#features .nav-tabs > li.active > a:focus,
#features .nav-tabs > li > a {
border:2px solid #fff;
border-radius:0;
background:#ffffff;
color:#181818;
}
.servicebox {
margin:20px 0 0;
text-align:center;
}
.servicebox h1 {
padding:0;
}
.servicebox h1 i {
font-size:36px;
}
.servicebox h3 {
text-transform:uppercase;
font-size:16px;
font-weight:bold;
padding:0;
}
.servicebox:hover a {
color:#181818;
}
.stat {
margin:50px 0;
text-align:center;
}
#features .jtbutton {
float:left;
}
.csstransforms3d .jtbutton a:hover span::before,
.csstransforms3d .jtbutton a:focus span::before,
.csstransforms3d .jtbutton a span::before {
background:#181818 !important;
}
.jtbutton {
text-align:center !important;
}
.jtbutton a {
line-height:40px;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
}
.jtbutton a span {
position: relative;
display: inline-block;
padding: 0 40px;
color:#ffffff;
-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.csstransforms3d .jtbutton a span::before {
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 100%;
content: attr(data-hover);
-webkit-transition: background 0.3s;
-moz-transition: background 0.3s;
transition: background 0.3s;
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
}
.jtbutton a:hover span,
.jtbutton a:focus span {
-webkit-transform: rotateX(90deg) translateY(-22px);
-moz-transform: rotateX(90deg) translateY(-22px);
transform: rotateX(90deg) translateY(-22px);
}
.highlight {
border-top:1px dashed #999;
border-bottom:1px dashed #999;
color:#ffffff;
padding:45px 0;
display:block;
overflow:hidden;
margin-bottom:20px;
font-size:64px;
}
.milestone-details {
font-weight:bold;
font-size:18px;
color:#fff;
text-transform:uppercase;
}
.twitter-widget .tweet {
padding:10px 0;
margin-bottom:15px;
}
.testimonial-widget .lead {
padding-top:30px;
}
.testimonial-widget h3 {
font-size:14px;
}
.twitter-widget .tweet,
.testimonial-widget {
color:#ffffff;
}
.clients a img {
display:block;
margin:auto;
}
.pricing_detail {
border:1px solid #e3e3e3;
padding:30px 20px;
text-align:center;
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
.pricing_detail:hover h3,
.pricing_detail:hover ul li {
color:#fff;
}
.pricing_detail:hover header {
border-color:#ededed;
}
.pricing_detail header {
border-bottom:1px solid #e3e3e3;
}
.pricing_detail header h3 {
font-size:30px;
margin-top:35px;
display:block;
overflow:hidden;
}
.pricing_info {
display:block;
}
.pricing_info ul {
padding-left:0;
}
.pricing_info ul li {
list-style:none;
padding:15px 0;
}
.pricing_boxes {
padding:80px 0;
display:block;
overflow:hidden;
position:relative;
}
.pricing_detail:hover .btn{
color:#ffffff !important;
background:#181818 !important;
}
.pricing_detail .priceamount {
-webkit-border-radius:500px;
-moz-border-radius:500px;
border-radius:500px;
color: #FFFFFF;;
background:#181818;
display: block;
border:10px solid #fff;
font-size: 16px;
height: 120px;
margin: 0 auto;
text-align: center;
width: 120px;
position: absolute;
top: -70px;
left: 0;
right: 0;
padding-top:23px;
line-height: 1.6;
-webkit-box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 227, 0.2);
-moz-box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 277, 0.2);
box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 227, 0.2);
}
.back-to-top {
position: relative;
text-transform:uppercase;
margin: 10px auto -10px;
z-index:1;
background:#181818;
width:30px;
padding: 5px;
cursor:pointer;
text-align:center;
-webkit-transition: background-color .4s linear, color .4s linear;
-moz-transition: background-color .4s linear, color .4s linear;
-o-transition: background-color .4s linear, color .4s linear;
-ms-transition: background-color .4s linear, color .4s linear;
transition: background-color .4s linear, color .4s linear;
}
.back-to-top span i {
color: #fff;
font-size: 25px;
}
.tp-bannertimer {height:3px !important;}
.animationload {
background: #181818;
width: 100%;
height: 100%;
position: fixed;
z-index: 99999;
}
#intro {
width: 50px;
height: 50px;
position: absolute;
top: 50%;
left: 50%;
margin: -33px 0 0 -33px;
background: url(images/load.gif);
}
.pagination_wrapper {
padding:0 0 40px
}
.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
background-color: #181818;
color: #FFFFFF;
}
.pagination > li > a,
.pagination > li > span {
background-color: #181818;
border:none;
color: #FFFFFF;
float: left;
line-height: 1.82857;
margin-left: 3px;
padding: 6px 15px;
position: relative;
text-decoration: none;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color:#ffffff;
}
/* ----------------------------------------------------
PORTFOLIO OPTIONS
------------------------------------------------------- */
.magnifier .sg,
.magnifier .st,
.magnifier .sf {
border:1px solid #ffffff;
color: #FFFFFF;
display: block;
display: inline-block !important;float: none !important;
font-size: 16px;
height: 40px;
line-height: 38px;
text-align: center;
width: 40px;
margin: -10px 2px 0 2px;
text-align: center;
width: 40px;
}
.magnifier h4 {
color:#ffffff;
text-align:center;
font-size:16px;
padding:10px 0;
margin-bottom:20px;
display:block;
font-family: 'bariol_lightlight';
}
.magnifier h3 {
color:#ffffff;
text-align:center;
}
.magnifier .buttons {
visibility: hidden;
opacity: 0;
position: absolute;
text-align: center;
width: 100%;
top: 30%;
margin-top: -20px;
-webkit-transform: scale(0.2);
-moz-transform: scale(0.2);
-ms-transform: scale(0.2);
-o-transform: scale(0.2);
transform: scale(0.2);
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.magnifier:hover .buttons {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.entry:hover .magnifier {
opacity: 1;
visibility: visible;
}
.magnifier {
background:#000000;
background:rgba(0,0,0,0.8);
position:absolute;
top:0;
left:0;
bottom:0;
right:0;
opacity:0;
-webkit-transition:all .3s ease-in-out;
-moz-transition:all .3s ease-in-out;
-ms-transition:all .3s ease-in-out;
-o-transition:all .3s ease-in-out;
transition:all .3s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.portfolio-filter {
padding-bottom:30px;
overflow:hidden;
}
.portfolio-filter ul li a {
margin-bottom: 8px;
}
.portfolio-filter ul {
list-style:none;
padding-left:10px
}
.portfolio-filter {
text-align: center;
margin: 0 0 15px;
}
.portfolio-filter li {
display: inline;
margin-right: 5px;
padding: 0;
}
.portfolio .item .description {
padding:0;
position:absolute;
right:0;
left:0;
bottom:30%;
}
.portfolio .description hr.jt {
margin:5px 0;
}
.portfolio .item .description h3 {
font-size:16px;
font-weight:500;
color:#161616;
margin:10px 0 0;
}
.portfolio .description i,
.portfolio .entry:hover .description h3,
.portfolio .entry:hover span a{
color:#ffffff !important;
}
.portfolio .magnifier .buttons {
top:40%;
}
.portfolio .item .description span {
position:relative;
z-index:1;
}
.portfolio .item .description span a {
font-size:14px;
font-weight:300;
color:#161616;
}
.portfolio .item {
overflow: hidden;
cursor: url(images/cursor.cur), crosshair;
cursor: url(images/cursor.png) 40 40, crosshair;
height:auto !important;
padding:0 !important;
margin: 0 !important;
background:#ffffff !important;
text-align:center !important;
width:100%;
z-index:1 !important;
}
.portfolio img {
width:100%;
height:100%;
line-height:0;
padding:0;
margin:0;
overflow:hidden;
}
.portfolio {
padding:0 !important;
margin:0 !important;
display:block ;
position:relative;
}
.portfolio_details {
list-style:none;
padding-top:30px;
padding-left:0;
}
.portfolio_details li {
margin:15px 0;
}
.portfolio_details strong {
padding-right:5px;
color:#181818;
}
.portfolio_desc {
padding:50px 0;
}
.single_portfolio img {
width:100%;
}
.pager li > a, .pager li > span {
border:1px solid #fff;
color:#ffffff;
border-radius:0;
}
.pager li > a:hover, .pager li > span:hover {
background:#181818;
}
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* ----------------------------------------------------
BLOG OPTIONS
------------------------------------------------------- */
.blog-item {
border:1px solid #e3e3e3;
display:block;
overflow:hidden;
position:relative;
}
.about_section .magnifier .buttons,
.team_member .magnifier .buttons,
.blog-item .magnifier .buttons {
margin-top:0;
top:45%;
}
.blog_header h3 {
padding:0;
margin:15px 0 5px;
}
.blog_header {
padding-bottom:10px !important;
overflow:hidden;
}
.blog_header .meta a {
font-size:12px;
padding:5px;
overflow:hidden;
}
.blog_header,
.blog_details,
.blog_footer {
padding:3px 10px;
display:block;
overflow:hidden;
}
.blog-item .blog_header i {
padding-right:5px;
}
.blog-item:hover .blog_footer a {
color:#ffffff !important;
}
.blog_footer {
background:#e8e8e8;
padding:10px 10px;
}
#comments {padding:20px;}
.comment-list {
margin: 60px 0;
list-style:none;
}
.comment-list ul li,
.comment-list ol li {list-style:none;}
.comment-avatar {
margin: 0 20px 0 0;
float: left;
height: 70px; width: 70px;
}
.comment-content {
background: #ffffff;
border: 1px solid #efefef;
margin-bottom: 20px;
overflow: hidden;
padding: 20px;
}
.comment-author {
margin-bottom: 10px;
}
.comment-meta {
font-size: 12px;
color: #aaa;
padding-left:10px;
}
.comment-reply {
margin:-10px -5px 0 0;
float: right;
font-size: 12px;
color: #ffffff;
}
.leave-comment textarea {
height: 150px;
}
#blog-page.white-wrapper {
padding:40px 0 !important;
}
#blog-page .blog_wrapper {
padding:20px 0 !important;
}
#blog-page .blog-item {
margin-bottom:30px;
overflow:hidden;
}
.blog_wrapper {
padding:40px 0;
display:block;
overflow:hidden;
position:relative;
}
/* ----------------------------------------------------
SHOP STYLES
------------------------------------------------------- */
.shop_item .magnifier .st {
padding:0 10px;
width:auto;
}
.product_list_widget {
padding-left:0
}
.shopping-cart-widget li {
*zoom: 1;
margin: 0 0 1em;
}
.shopping-cart-widget li:before,
.shopping-cart-widget li:after {
content: "";
display: table;
}
.shopping-cart-widget li:after {
clear: both;
}
.shopping-cart-widget li img {
width:40px;
float: right;
margin-left: 1em;
}
.shopping-cart-widget li .quantity {
width: auto;
float: none;
}
.shopping-cart-widget li a {
display: block;
}
.shopping-cart-widget li:last-child {
margin: 0;
border: none;
}
.cart_list li {
list-style:none;
}
div.thumbnails{padding-top:10px;zoom:1}
div.thumbnails a {border:1px solid #ffffff;float:left;width:30%;margin-right:4.9%}
div.thumbnails a img{width:100%;height:auto;opacity:1;filter:alpha(opacity=100); /* For IE8 and earlier */}
div.thumbnails a img:hover{width:100%;height:auto;opacity:0.4;filter:alpha(opacity=40); /* For IE8 and earlier */}
div.thumbnails a.last{margin-right:0}
div.thumbnails a.first{clear:both}
.popular_items img{
width:95px;
padding-right:10px;
float:left
}
.popular_items{
margin:20px 0
}
.popular_items .popular_items_div{
display:block;
margin-top:20px;
overflow:hidden;
position:relative
}
.popular_items .popular_items_div h4{
margin-bottom:5px !important;
padding-bottom:0;
}
.btn-shop .form-control:focus {
box-shadow:none;
}
.btn-shop .form-control {
width:55px;
border-radius:0;
margin:0 -2px;
padding-right:0
}
#shop_features .nav li {
text-transform:uppercase;
font-weight:bold;
font-size:14px;
}
#shop_features {
padding:40px 0;
margin:20px 0;
overflow:hidden;
}
#custom_tab .nav-tabs > li > a,
#shop_features .nav-tabs > li > a {
border-radius:0;
line-height:2.1;
}
#custom_tab .tab-content,
#shop_features .tab-content {
padding:20px;
border-bottom:1px solid #DDDDDD !important;
border-right:1px solid #DDDDDD !important;
border-left:1px solid #DDDDDD !important;
overflow:hidden;
}
#custom_tab .tab-content ul li,
#shop_features .tab-content ul li {
list-style:square;
}
#custom_tab .tab-content ul,
#shop_features .tab-content ul {
padding:0 0 10px 20px
}
.btn-shop span {
background:#181818;
-moz-user-select: none;
background-image: none;
border: 0;
border-radius: 0;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: normal;
line-height: 1.42857;
margin: 0 -3px;
color:#ffffff;
padding: 7px 12px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.shop_item_details ul {padding-left:0; margin:15px 0; overflow:hidden;}
.shop_item_details strong {color:#181818; padding-right:10px;}
.shop_item_details ul li {list-style:none;margin:0 0 12px;}
.shop-right .title h2 {margin-bottom:5px; padding-bottom:0;font-size:22px;}
.shop-right .title .rating {margin-bottom:10px;}
.shop_item {margin-bottom:20px;}
.shop_item .magnifier .buttons {
top:44%;
margin-top:0 !important;
}
.single_portfolio .title h2 {margin-top:40px;}
.single_portfolio .entry,
.shop_item .entry,
.about_section .entry,
.team_member .entry,
.blog-item .entry {
display:block;
position:relative;
}
.panel-group .panel {border-radius:0}
.panel-default {border-color:#DDDDDD}
.panel-title > a:focus,
.panel-title > a:hover {color:#fefefe}
.panel-default > .panel-heading {color:#ffffff;}
.panel-title {
font-size:14px;
text-transform:uppercase;
padding-bottom:0;
}
.thumbnails img,
.shop_item .entry {
border:1px solid #c7c7c7;
}
.shop_item .shop_title span {
font-size:18px;
color:#181818;
font-weight:500;
}
.shop-right .title .price,
.shop_item .price {
font-size:18px;
color:#181818;
font-weight:500;
}
.shop_item .cats {
font-weight:lighter !important;
display: block;
font-size: 13px !important;
}
.shop_desc {
padding:14px 0;
overflow:hidden;
}
.shop_item {
display:block;
overflow:hidden;
position:relative;
}
/* ----------------------------------------------------
COLOR SCHEMES
------------------------------------------------------- */
.flickr-gallery li:hover,
blockquote,
.thumbnails a:hover,
#features .nav-tabs > li.active > a,
#features .nav-tabs > li.active > a:hover,
#features .nav-tabs > li.active > a:focus,
.btn-primary,
.btn-shop .form-control:focus,
.form-control:focus,
.social span:hover,
.header .social span:hover,
.slider_menu a:hover {
border-color:#a2b881;
}
.home-content h1 span,
.slides-navigation a i,
.rating i,
.general-title h1 span,
.tparrows:before,
.big_title2 span,
.overlay .social span:hover i,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.testimonial-widget h3,
.servicebox:hover h3,
.servicebox:hover i,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.custom-icon i,
.overlay .general-title p span,
.message h1 span,
.social span:hover a,
.header .nav li a:hover,
.header .nav li a:focus,
.big_title h1 span {
color:#a2b881;
}
.tp-bannertimer {
background:#a2b881 !important;
}
.volume,
.jtbutton a span,
#sidebar .nav-tabs > li > a:hover,
.tagcloud a:hover,
.panel-default > .panel-heading,
.pager li > a, .pager li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.back-to-top:hover,
.hrstyle,
.flexslider:hover .flex-next,
.flexslider:hover .flex-prev,
.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover,
.blog-item:hover .blog_footer,
.pricing_detail:hover .priceamount,
.pricing_detail:hover,
#owl-post-slider .owl-controls .owl-page.active span,
#shop_carousel .owl-controls .owl-page.active span,
#owl-twitter .owl-controls .owl-page.active span,
#owl-twitter .owl-controls.clickable .owl-page:hover span,
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span,
.progress-bar,
.hovicon.effect-1.sub-a:hover,
.hovicon.effect-1.sub-a:hover i,
.hovicon.effect-1,
.hovicon.effect-1.sub-a:hover,
.btn-primary,
.orange-wrapper {
background-color:#a2b881;
}
.hovicon.effect-1:after {
box-shadow: 0 0 0 4px #a2b881;
}
#contactform {
margin:30px 0;
}
#contactform .form-control {
margin:10px 0;
height:50px;
}
#contactform textarea {
height:150px !important;
}
#contactform fieldset { padding:20px; border:1px solid #eee; -webkit-border-radius:5px; -moz-border-radius:5px; }
#contactform legend { padding:7px 10px; font-weight:bold; color:#000; border:1px solid #eee; -webkit-border-radius:5px; -moz-border-radius:5px; margin-bottom:0 !important; margin-bottom:20px; }
#contactform span.required{ font-size: 13px; color: #ff0000; } /* Select the colour of the * if the field is required. */
#message { margin: 10px 0; padding: 0; }
.error_message { display: block; height: 22px; line-height: 22px; background: #FBE3E4 url(images/error.gif) no-repeat 10px center; padding: 3px 10px 3px 35px; color:#8a1f11;border: 1px solid #FBC2C4; -webkit-border-radius:5px; }
.loader { padding: 0 10px; }
#contactform #success_page h1 { background: url(images/success.gif) left no-repeat; padding-left:22px; }
acronym { border-bottom:1px dotted #ccc; }
/*EXTRAS*/
#one-parallax {
background-image: url('../images/about/customdesign.jpeg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#two-parallax {
background-image: url('demos/parallaxbg_07.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#three-parallax {
background-image: url('demos/parallaxbg_02.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#four-parallax {
background-image: url('demos/parallaxbg_03.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#five-parallax {
background-image: url('demos/parallaxbg_04.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax {
background-image: url('demos/parallaxbg_04.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax1 {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax2 {
background-image: url('demos/parallaxbg_05.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax3 {
background-image: url('demos/parallaxbg_03.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax4 {
background-image: url('demos/parallaxbg_02.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax5 {
background-image: url('demos/parallaxbg_09.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#seven-parallax {
background-image: url('../images/header/code.jpeg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#seven-parallax1 {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#eight-parallax {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#eight-parallax1 {
background-image: url('demos/parallaxbg_01.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.tp-caption .slider_menu .fade,
.tp-caption .slider_menu .sfl,
.tp-caption .slider_menu .skewfromleft,
.tp-caption .slider_menu .sft,
.tp-caption .slider_menu .lft,
.tp-caption .slider_menu .sfr {
z-index: 6;
}
.bar-70 {
width: 70%;
}
.bar-80 {
width: 80%;
}
.bar-75 {
width: 75%;
}
.bar-90 {
width: 90%;
}
.bar-65 {
width: 65%;
}
.bar-95 {
width: 95%;
}
.bar-25 {
width: 25%;
}
.bar-60 {
width:60%;
}
.bar-50 {
width:50%;
}
.bar-55 {
width: 55%;
}
.media .pull-left {
width: 74px;
height: 74px;
}
/* ----------------------------------------------------
HEART BEAT
------------------------------------------------------- */
#heart {
margin-top: 120px;
text-align: center;
}
#heart i .fa {
color: #a2b881;
font-size: 50px;
line-height: 50px;
}
#heart > span {
padding:0 0 0 15px;
font-size:20px;
}
#heart i {
color:#a2b881;
}
@-webkit-keyframes heartbeat{
0%{-webkit-transform:scale(1)}
50%{-webkit-transform:scale(1.4)}
100%{-webkit-transform:scale(1)}
}
@-moz-keyframes heartbeat{
0%{-moz-transform:scale(1)}
50%{-moz-transform:scale(1.4)}
100%{-moz-transform:scale(1)}
}
@-o-keyframes heartbeat{
0%{-o-transform:scale(1)}
50%{-o-transform:scale(1.4)}
100%{-o-transform:scale(1)}
}
@keyframes heartbeat{
0%{transform:scale(1)}
50%{transform:scale(1.4)}
100%{transform:scale(1)}
}
.heartbeat{
-webkit-animation-name:heartbeat;
-moz-animation-name:heartbeat;
-o-animation-name:heartbeat;
animation-name:heartbeat;
}
.animate-infinite-heartbeat {
-webkit-animation: heartbeat 2s infinite;
/* Chrome, Safari, Opera */
animation: heartbeat 2s infinite;
} | css/style.css | @font-face {
font-family: 'afta_sansitalic';
src: url('fonts/aftasansthin-italic-webfont.eot');
src: url('fonts/aftasansthin-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/aftasansthin-italic-webfont.woff') format('woff'),
url('fonts/aftasansthin-italic-webfont.ttf') format('truetype'),
url('fonts/aftasansthin-italic-webfont.svg#afta_sansitalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'afta_sansregular';
src: url('fonts/aftasansthin-regular-webfont.eot');
src: url('fonts/aftasansthin-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/aftasansthin-regular-webfont.woff') format('woff'),
url('fonts/aftasansthin-regular-webfont.ttf') format('truetype'),
url('fonts/aftasansthin-regular-webfont.svg#afta_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
/* ----------------------------------------------------
SKELETON
------------------------------------------------------- */
body {
font-family: 'Lato', Arial, Helvetica, sans-serif;
font-size:14px;
line-height:24px;
position:relative;
font-weight:300;
background:#E5E5E5;
color:#818181;
padding:0;
}
a {
color:#181818;
padding: 0;
margin: 0;
text-decoration: none;
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
a:hover,
a:focus {
text-decoration: none;
color:#a2b881;
}
a.remove{
display:block;
height:18px;
width:18px;
margin:10px;
padding-left:0 !important;
text-indent:-9999px;
background:url(images/remove.png) #798184;
border-radius:100px;
border-style:solid;
border-width:1px
}
.img-top {
margin-top:27px;
}
.first {
clear:both
}
.last{
margin-right:0
}
.hidden{
display:none
}
.alignleft{
float:left
}
.alignright{
float:right
}
.aligncenter{
margin-left:auto;
margin-right:auto;
display:block;
clear:both
}
#soundcloud {
width:100%;
border:1px solid #dedede;
height:166px;
}
/* ----------------------------------------------------
HEADINGS
------------------------------------------------------- */
h1,h2,h3,h4,h5,h6{
letter-spacing:0px;
font-weight:normal;
position: relative;
padding: 0 0 10px 0;
font-weight:normal;
font-family: 'afta_sansregular', arial, serif;
line-height:140% !important;
color:#181818;
}
h1{
font-size: 22px;
}
h2{
font-size: 20px;
}
h3{
font-size: 18px;
}
h4{
font-size: 16px;
}
h5{
font-size: 14px;
}
h6{
font-size: 13px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
text-decoration:none !important;
}
/* ----------------------------------------------------
SITE STRUCTURES
------------------------------------------------------- */
.general-title h1 {
font-size:36px;
letter-spacing:2px;
text-transform:uppercase;
}
.parallax {
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.light-overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.2);
padding: 60px 0;
}
.ani-overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.6);
padding: 0;
}
.overlay {
background: url(images/pattern.png) repeat rgba(0,0,0,0.6);
padding: 90px 0;
}
.message h1,
.light-overlay .general-title h1,
.overlay .general-title h1 {
font-family: 'Raleway', Arial, Helvetica, sans-serif;
font-weight:bold;
}
.custom_box {
color:#ffffff;
text-align:center;
padding:30px 0;
overflow:hidden
}
.custom_box img {
margin:10px 0 40px;
}
.message h1 {
font-size:46px;
}
.message .lead {
letter-spacing:1.4px;
font-weight:300;
font-size:24px;
}
.overlay .general-title .lead {
letter-spacing:1.4px;
}
.quote-icon i,
.light-overlay .general-title h1,
.light-overlay .lead,
.overlay .general-title .lead,
.overlay .general-title h1,
.overlay .message h1,
.overlay .message p {
color:#fff !important;
}
.orange-wrapper {
position:relative;
padding:60px 0 50px;
}
.white-wrapper {
position:relative;
padding:90px 0;
background:#ffffff;
}
.copyright-wrapper {
background:#ffffff;
position:relative;
padding:15px 0 40px;
}
.copyrights {
text-align:center;
font-size:14px;
}
svg#bigTriangleColor {
pointer-events: none;
position:relative;
display:block;
overflow:hidden;
margin-bottom:-20px;
}
#bigTriangleColor path {
fill: #ffffff;
stroke: #ffffff;
stroke-width:0;
}
#seven-parallax .overlay {
padding:40px 0 0;
}
/* ----------------------------------------------------
SLIDER OPTIONS
------------------------------------------------------- */
@keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-moz-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-webkit-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-ms-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position: -31000px 0; }
}
@-o-keyframes animatedBackground {
0% { background-position: 0 0; }
100% { background-position:-31000px 0; }
}
#animate-area img {
width:100%;
height:100%;
}
#animate-area {
width: 100%;
position:absolute;
height:100%;
top:0;
bottom:0;
left:0;
z-index:-1;
background-image: url(demos/parallaxbg_01.jpg);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 666s linear infinite;
-moz-animation: animatedBackground 666s linear infinite;
-webkit-animation: animatedBackground 666s linear infinite;
-ms-animation: animatedBackground 666s linear infinite;
-o-animation: animatedBackground 666s linear infinite;
}
#slides {
position: relative;
}
#slides .slides-container {
margin: 0;
list-style:none;
}
#slides .scrollable {
*zoom: 1;
position: relative;
top: 0;
left: 0;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
height: 100%;
}
#slides .scrollable:after {
content: "";
display: table;
clear: both;
}
.slides-pagination {
position: absolute;
z-index: 20;
bottom: 30px;
text-align: center;
width: 100%;
}
.slides-pagination a {
color: #1a1a1a;
background: #ffffff;
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
width: 30px;
height: 4px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
margin: 2px;
overflow: hidden;
text-indent: -100%;
}
.slides-navigation a:hover {
opacity: 0.5;
-moz-opacity: 0.5;
filter: alpha(opacity=50);
}
.slides-navigation {
top: 50%;
}
.slides-navigation a {
display: block;
text-decoration: none;
color: white;
font-size: 24px;
margin: 0 25px;
text-align: center;
height: 60px;
width: 60px;
line-height:60px;
top: 0;
border:1px solid #ffffff;
padding: 0;
-webkit-border-radius: 500px;
border-radius: 500px;
}
.slides-navigation {
margin: 0 auto;
position: absolute;
z-index: 3;
top: 46%;
width: 100%;
}
.slides-navigation a {
position: absolute;
display: block;
}
.slides-navigation a.prev {
left: 0;
}
.slides-navigation a.next {
right: 0;
}
.home-content{
position: absolute;
z-index: 99;
text-align: center;
width: 70%;
left:50%;
top:46%;
-webkit-transform:translate(-50%,-50%);
-moz-transform:translate(-50%,-50%);
-ms-transform:translate(-50%,-50%);
-o-transform:translate(-50%,-50%);
transform:translate(-50%,-50%);
display:inline-block;
padding:20px;
}
.home-content .logowrap {
margin:20px 0 40px;
overflow:hidden;
}
.home-content h1 {
font-size:510%;
color:#ffffff;
margin:20px 0;
text-transform:uppercase;
}
.home-content .lead {
color:#ffffff;
margin:20px 0 40px;
}
.home-content h3 {
font-size:31px;
color:#ffffff;
font-family: 'Raleway';
margin-top:0;
text-transform:uppercase
}
.hwrap{
top: 0px;
z-index: 1;
width:100%;
height:100%;
display:block;
overflow:hidden;
padding: 0 !important;
position:relative;
}
.boxedcontainer {
max-width: 1170px;
margin:auto;
padding:0px 30px;
}
.tp-banner-container {
width:100%;
position:relative;
padding:0;
}
.tp-banner {
width:100%;
position:relative;
}
.tp-banner-fullscreen-container {
width:100%;
position:relative;
padding:0;
}
.big_title2 h1 {
font-size:440% !important;
}
.big_title2 h1,
.big_title h1 {
font-size:610%;
text-transform:uppercase;
color:#fff;
text-align:center;
}
.small_title {
font-size:25px;
color:#a2b881;
text-align:center;
font-weight:800;
}
.small_title .trans-btn {
color:#ffffff;
}
@media (max-width: 768px) {
.home-content h1 {font-size:31px !important}
.tparrows,
.small_title,
.slider_menu a {display:none}
}
.slider_menu a {
padding:5px 0;
border-top:2px solid #ffffff;
font-size:14px !important;
text-transform:uppercase;
color:#ffffff !important;
}
.slider_menu a:hover {
border-top-width:6px;
border-top-style: double;
}
.tp-bullets.simplebullets.navbar {
height: 35px;
padding: 0px 0px;
}
.tp-bullets.simplebullets .bullet {
cursor: pointer;
position: relative !important;
background: rgba(0, 0, 0, 0.5) !important;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
width: 6px !important;
height: 6px !important;
border: 5px solid rgba(0, 0, 0, 0) !important;
display: inline-block;
margin-right: 2px !important;
margin-bottom: 14px !important;
-webkit-transition: background-color 0.2s, border-color 0.2s;
-moz-transition: background-color 0.2s, border-color 0.2s;
-o-transition: background-color 0.2s, border-color 0.2s;
-ms-transition: background-color 0.2s, border-color 0.2s;
transition: background-color 0.2s, border-color 0.2s;
float:none !important;
}
.tp-bullets.simplebullets .bullet.last {
margin-right: 0px
}
.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background: rgba(255, 255, 255, 1) !important;
width: 6px !important;
height: 6px !important;
border: 5px solid #a2b881 !important;
}
.tparrows:before {
font-family: 'revicons';
color: #aaaaaa;
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
margin-right: 0;
margin-top: 17px;
text-align: center;
width: 55px;
font-size: 14px;
}
.slides-navigation a,
.tp-leftarrow,
.tp-rightarrow{
opacity:0.4 !important;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
.slides-navigation a:hover,
.tp-leftarrow:hover,
.tp-rightarrow:hover{
filter:alpha(opacity=100); /* For IE8 and earlier */
opacity:1 !important;
}
.tparrows {
border:2px solid #aaaaaa;
cursor: pointer;
background: rgba(0, 0, 0, 0) !important;
-webkit-border-radius: 500px;
border-radius: 500px;
width: 60px !important;
height: 60px !important;
}
.tparrows:hover {
color: #fff;
}
.tp-leftarrow:before {
content: '\e824';
}
.tp-rightarrow:before {
content: '\e825';
}
.tparrows.tp-rightarrow:before {
margin-left: 1px;
}
.tparrows:hover {
background: rgba(0, 0, 0, 0) !important;
}
#slider4container .tparrows:before,
#slider4container .tparrows:hover,
#slider4container .tparrows {
color: #000 !important;
}
#slider4container .tparrows {
background:#fff !important;
background:rgba(255,255,255,0.5) !important;
}
#slider4container .tparrows:hover {
background:#fff !important
}
/* ----------------------------------------------------
NAVIGATION OPTIONS
------------------------------------------------------- */
.navbar-brand {
padding:0;
}
.navbar-nav > li > .dropdown-menu:after,
.navbar-nav > li > .dropdown-menu:before {
display:none;
}
.header.affix .navbar-nav > li > .dropdown-menu {margin-top:12px;}
.navbar-nav > li > .dropdown-menu {margin-top:23px; border-top:none}
.navbar-default .dropdown-menu {
box-shadow:none;
border-color:#E2E3DF;
background:#ffffff;
border-radius:0;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {background:#ffffff;}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
background:none !important;
}
.navbar-default {
padding:0;
margin:20px 0;
background:#ffffff;
border:none !important;
box-shadow:none;
}
.header {
background:#ffffff;
border-bottom:1px solid #ececec;
position: relative;
z-index: 12;
}
.header.affix .navbar-default {
margin:10px 0;
}
.header.affix {
position: fixed;
top: 0;
width: 100%
}
.navbar-default .dropdown-menu li a {
font-size:14px !important;
font-weight:300;
color:#181818;
}
.header .nav li a {
font-size:16px;
color:#181818;
}
.social {
margin:11px 0;
padding-right:0;
}
/* ----------------------------------------------------
MODULES
------------------------------------------------------- */
.buttonBar {
display:none !important
}
#mbYTP_bgndVideo,
#bgndVideo {
position: relative;
width: 100%;
height: 100%;
display:block;
}
.volume:hover {
color:#ffffff !important
}
.volume {
bottom: 0;
position: absolute;
z-index: 99991;
right:0;
width: 30px;
height: 30px;
line-height: 30px;
font-size: 20px;
text-align: center;
color: #ffffff;
cursor: pointer;
}
.team_member h3 small {
font-size:13px;
}
.team_member h3 {
margin-bottom:5px;
font-size:15px;
}
.overlay .social {
margin:auto;
padding:10px;
margin-bottom:40px;
display:table;
}
.overlay .social span i {
color:#fff;
font-size:23px !important;
}
.overlay .social span {
border-color:#ffffff;
width:50px;
height:50px;
line-height:53px;
display:inline-block !important;
margin-top:10px !important;
float:none !important;
}
.copyrights .social span {
display:inline-block;
margin-top:10px;
float:none;
}
.social span a {
color: #676767;
}
.social span i {
font-size: 14px;
}
.social span {
border:1px solid #676767;
float: none;
display:inline-block;
height: 30px;
line-height: 26px;
margin-left: 5px;
position: relative;
text-align: center;
width: 30px;
z-index: 5;
}
hr.jt {
padding: 0;
margin:30px 0;
border: none;
border:none;
text-align: center;
}
hr.jt:after {
content:url(images/hr.png);
display: inline-block;
position: relative;
top: -1em;
font-size: 1.5em;
padding: 0 0.85em;
}
.btn-wrapper {
padding:25px 0 0;
overflow:hidden;
}
.jobutton {
display: inline-block;
-webkit-transition: all 200ms linear !important;
transition: all 200ms linear !important;
padding: 8px 20px 8px 30px !important;
}
.jobutton i {
float: right;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
opacity: 0;
font-size:15px;
padding-top:5px;
-webkit-transition: all 200ms linear !important;
transition: all 200ms linear !important;
}
.jobutton:hover i {
margin-left: 10px !important;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
opacity: 1;
}
#sidebar .nav-tabs > li > a:hover,
#sidebar .nav-tabs > li > a:focus {
color:#ffffff;
border-radius:0;
}
#sidebar .nav-tabs,
#sidebar .nav-tabs > li > a:hover,
#sidebar .nav-tabs > li > a {
border:none;
border-radius:0;
}
#comments_form .form-control,
#calculate .form-control,
#newsletter_widget .form-control {
margin-bottom:10px;
}
#sidebar .tabbable {
margin-top:20px;
}
.twitter_feed {
padding-left:0
}
.twitter_feed li {
list-style:none;
overflow:hidden;
margin-bottom:30px;
}
.twitter_feed li:before {
color: #0084B4;
font-family: 'FontAwesome';
content: "\f099";
padding:10px;
vertical-align: text-top;
font-size:21px;
}
.tagcloud a {
float: left;
display: block;
margin-bottom: 6px;
margin-right: 6px;
padding: 5px 10px;
color: #161616 !important;
text-decoration: none;
border:1px solid #f2f2f2;
background:#f2f2f2;
box-shadow:none !important;
}
.tagcloud a:hover {
background: #232527;
border:1px solid inherit;
color: #fff !important;
text-decoration: none;
}
.flickr-gallery {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.flickr-gallery li {
margin: 2px;
width:75px;
border:3px solid #ffffff;
float: left;
}
.flickr-gallery li:hover {
border:3px solid #ffffff;
}
#newsletter {
margin:40px auto;
width:60%;
overflow:hidden;
}
#newsletter .form-control {
background:none !important;
border-radius:0;
height:55px;
color:#ffffff;
text-align:center;
font-style:italic;
font-weight:300;
opacity:0.6;
}
.post-top .overlay {
padding:60px 0;
}
.post-top .lead {
color:#FFF
}
.post-top h1 {
color:#ffffff;
font-size:40px;
}
.hrstyle {
margin:10px auto 20px;
overflow:hidden;
cursor: pointer;
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
width: 40px;
height: 40px;
line-height:40px;
font-size:14px;
text-align: center;
position: relative;
z-index: 1;
background:#ffffff;
color: #ffffff;
}
.widget {
margin:20px 0;
overflow:hidden;
display:block;
}
.widget i {
color:#181818;
}
.widget .title h3 {
font-size:14px;
}
.widget .title h3,
.widget .title h2 {
font-weight:700;
}
.form-control:focus {
box-shadow:none;
}
.btn-default,
.btn-primary {
font-weight:300;
border-radius:0;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
background:#ffffff;
box-shadow:none;
}
.btn {
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #181818;
border-color: #282828;
}
.trans-btn {
background:none !important;
border-color:#fff;
padding:11px 50px;
border-radius:0;
}
.trans-btn:hover{
border-color:#fff !important;
}
.custom-icon {
border:1px solid #ffffff;
height: 68px;
line-height: 65px;
margin:20px auto;
position: relative;
text-align: center;
width: 68px;
font-size:24px;
}
.twitter-icon i {
color:#3B88C3 !important;
}
.hovicon {
display: inline-block;
line-height: 75px;
cursor: pointer;
margin: 25px 0 0;
width: 75px;
height: 75px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
text-align: center;
position: relative;
text-decoration: none;
z-index: 1;
color: #fff !important;
}
.hovicon:after {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content:'';
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.hovicon:before {
speak: none;
line-height: 80px;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
display: block;
-webkit-font-smoothing: antialiased;
}
.hovicon.effect-1 {
-webkit-transition: background 0.2s, color 0.2s;
-moz-transition: background 0.2s, color 0.2s;
transition: background 0.2s, color 0.2s;
}
.hovicon.effect-1:after {
top: -7px;
left: -7px;
padding: 7px;
-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
-webkit-transform: scale(.8);
-moz-transition: -moz-transform 0.2s, opacity 0.2s;
-moz-transform: scale(.8);
-ms-transform: scale(.8);
transition: transform 0.2s, opacity 0.2s;
transform: scale(.8);
opacity: 0;
}
.hovicon.effect-1.sub-a:hover:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.skills_bar {
margin:30px 0;
margin-top:0px;
overflow:hidden;
}
.skills_bar small {
font-size:14px;
color:#181818;
margin:10px 0;
}
.progress {
border-radius:0;
box-shadow:none;
background-color:#dfe5e9;
margin:10px 0;
height:10px;
}
#map{
height:450px;
width:100%
}
#map img{
max-width:inherit
}
.map{
position:relative
}
.map .row .col-lg-4{
float:right;
margin-top:-450px;
z-index:9
}
.map .row{
position:relative
}
.infobox img {
width:100% !important;
}
.map .searchmodule {
padding:18px 10px
}
.infobox {
display: inline-block;
padding: 5px;
position: relative;
width: 270px;
}
.infobox img {
width:80px !important;
padding-right:10px
}
.infobox .title {
font-size:13px;
font-weight:bold;
margin-top:0;
margin-bottom:0;
text-transform:uppercase;
padding-bottom:5px;
}
.infobox .title a {
font-weight:bold;
}
#features .nav-tabs > li {
float:none !important;
margin:20px 11px 0 !important;
display:inline-block !important;
}
#features .tab-content .title h3 {
padding-bottom: 0;
text-transform: uppercase;
font-size: 24px;
font-weight: bold;
}
#features .nav-tabs {
border-bottom: medium none;
float: none;
margin: 10px auto 20px;
width: 50%;
}
#features .title h1 {
font-weight:300;
font-size:40px;
padding-bottom:5px;
text-transform:none;
}
#features .tab-content {
border:none;
}
#features .nav > li > a:hover {
}
#features .nav-tabs > li:hover {
}
#features .nav-tabs > li.active > a,
#features .nav-tabs > li.active > a:hover,
#features .nav-tabs > li.active > a:focus,
#features .nav-tabs > li > a {
border:2px solid #fff;
border-radius:0;
background:#ffffff;
color:#181818;
}
.servicebox {
margin:20px 0 0;
text-align:center;
}
.servicebox h1 {
padding:0;
}
.servicebox h1 i {
font-size:36px;
}
.servicebox h3 {
text-transform:uppercase;
font-size:16px;
font-weight:bold;
padding:0;
}
.servicebox:hover a {
color:#181818;
}
.stat {
margin:50px 0;
text-align:center;
}
#features .jtbutton {
float:left;
}
.csstransforms3d .jtbutton a:hover span::before,
.csstransforms3d .jtbutton a:focus span::before,
.csstransforms3d .jtbutton a span::before {
background:#181818 !important;
}
.jtbutton {
text-align:center !important;
}
.jtbutton a {
line-height:40px;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
}
.jtbutton a span {
position: relative;
display: inline-block;
padding: 0 40px;
color:#ffffff;
-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.csstransforms3d .jtbutton a span::before {
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 100%;
content: attr(data-hover);
-webkit-transition: background 0.3s;
-moz-transition: background 0.3s;
transition: background 0.3s;
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
transform-origin: 50% 0;
}
.jtbutton a:hover span,
.jtbutton a:focus span {
-webkit-transform: rotateX(90deg) translateY(-22px);
-moz-transform: rotateX(90deg) translateY(-22px);
transform: rotateX(90deg) translateY(-22px);
}
.highlight {
border-top:1px dashed #999;
border-bottom:1px dashed #999;
color:#ffffff;
padding:45px 0;
display:block;
overflow:hidden;
margin-bottom:20px;
font-size:64px;
}
.milestone-details {
font-weight:bold;
font-size:18px;
color:#fff;
text-transform:uppercase;
}
.twitter-widget .tweet {
padding:10px 0;
margin-bottom:15px;
}
.testimonial-widget .lead {
padding-top:30px;
}
.testimonial-widget h3 {
font-size:14px;
}
.twitter-widget .tweet,
.testimonial-widget {
color:#ffffff;
}
.clients a img {
display:block;
margin:auto;
}
.pricing_detail {
border:1px solid #e3e3e3;
padding:30px 20px;
text-align:center;
-webkit-transition: background-color .2s linear, color .2s linear;
-moz-transition: background-color .2s linear, color .2s linear;
-o-transition: background-color .2s linear, color .2s linear;
-ms-transition: background-color .2s linear, color .2s linear;
transition: background-color .2s linear, color .2s linear;
}
.pricing_detail:hover h3,
.pricing_detail:hover ul li {
color:#fff;
}
.pricing_detail:hover header {
border-color:#ededed;
}
.pricing_detail header {
border-bottom:1px solid #e3e3e3;
}
.pricing_detail header h3 {
font-size:30px;
margin-top:35px;
display:block;
overflow:hidden;
}
.pricing_info {
display:block;
}
.pricing_info ul {
padding-left:0;
}
.pricing_info ul li {
list-style:none;
padding:15px 0;
}
.pricing_boxes {
padding:80px 0;
display:block;
overflow:hidden;
position:relative;
}
.pricing_detail:hover .btn{
color:#ffffff !important;
background:#181818 !important;
}
.pricing_detail .priceamount {
-webkit-border-radius:500px;
-moz-border-radius:500px;
border-radius:500px;
color: #FFFFFF;;
background:#181818;
display: block;
border:10px solid #fff;
font-size: 16px;
height: 120px;
margin: 0 auto;
text-align: center;
width: 120px;
position: absolute;
top: -70px;
left: 0;
right: 0;
padding-top:23px;
line-height: 1.6;
-webkit-box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 227, 0.2);
-moz-box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 277, 0.2);
box-shadow: inset 0px 1px 3px -3px rgba(227, 227, 227, 0.2);
}
.back-to-top {
position: relative;
text-transform:uppercase;
margin: 10px auto -10px;
z-index:1;
background:#181818;
width:30px;
padding: 5px;
cursor:pointer;
text-align:center;
-webkit-transition: background-color .4s linear, color .4s linear;
-moz-transition: background-color .4s linear, color .4s linear;
-o-transition: background-color .4s linear, color .4s linear;
-ms-transition: background-color .4s linear, color .4s linear;
transition: background-color .4s linear, color .4s linear;
}
.back-to-top span i {
color: #fff;
font-size: 25px;
}
.tp-bannertimer {height:3px !important;}
.animationload {
background: #181818;
width: 100%;
height: 100%;
position: fixed;
z-index: 99999;
}
#intro {
width: 50px;
height: 50px;
position: absolute;
top: 50%;
left: 50%;
margin: -33px 0 0 -33px;
background: url(images/load.gif);
}
.pagination_wrapper {
padding:0 0 40px
}
.pagination > .disabled > span,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
background-color: #181818;
color: #FFFFFF;
}
.pagination > li > a,
.pagination > li > span {
background-color: #181818;
border:none;
color: #FFFFFF;
float: left;
line-height: 1.82857;
margin-left: 3px;
padding: 6px 15px;
position: relative;
text-decoration: none;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color:#ffffff;
}
/* ----------------------------------------------------
PORTFOLIO OPTIONS
------------------------------------------------------- */
.magnifier .sg,
.magnifier .st,
.magnifier .sf {
border:1px solid #ffffff;
color: #FFFFFF;
display: block;
display: inline-block !important;float: none !important;
font-size: 16px;
height: 40px;
line-height: 38px;
text-align: center;
width: 40px;
margin: -10px 2px 0 2px;
text-align: center;
width: 40px;
}
.magnifier h4 {
color:#ffffff;
text-align:center;
font-size:16px;
padding:10px 0;
margin-bottom:20px;
display:block;
font-family: 'bariol_lightlight';
}
.magnifier h3 {
color:#ffffff;
text-align:center;
}
.magnifier .buttons {
visibility: hidden;
opacity: 0;
position: absolute;
text-align: center;
width: 100%;
top: 30%;
margin-top: -20px;
-webkit-transform: scale(0.2);
-moz-transform: scale(0.2);
-ms-transform: scale(0.2);
-o-transform: scale(0.2);
transform: scale(0.2);
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.magnifier:hover .buttons {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.entry:hover .magnifier {
opacity: 1;
visibility: visible;
}
.magnifier {
background:#000000;
background:rgba(0,0,0,0.8);
position:absolute;
top:0;
left:0;
bottom:0;
right:0;
opacity:0;
-webkit-transition:all .3s ease-in-out;
-moz-transition:all .3s ease-in-out;
-ms-transition:all .3s ease-in-out;
-o-transition:all .3s ease-in-out;
transition:all .3s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.portfolio-filter {
padding-bottom:30px;
overflow:hidden;
}
.portfolio-filter ul li a {
margin-bottom: 8px;
}
.portfolio-filter ul {
list-style:none;
padding-left:10px
}
.portfolio-filter {
text-align: center;
margin: 0 0 15px;
}
.portfolio-filter li {
display: inline;
margin-right: 5px;
padding: 0;
}
.portfolio .item .description {
padding:0;
position:absolute;
right:0;
left:0;
bottom:30%;
}
.portfolio .description hr.jt {
margin:5px 0;
}
.portfolio .item .description h3 {
font-size:16px;
font-weight:500;
color:#161616;
margin:10px 0 0;
}
.portfolio .description i,
.portfolio .entry:hover .description h3,
.portfolio .entry:hover span a{
color:#ffffff !important;
}
.portfolio .magnifier .buttons {
top:40%;
}
.portfolio .item .description span {
position:relative;
z-index:1;
}
.portfolio .item .description span a {
font-size:14px;
font-weight:300;
color:#161616;
}
.portfolio .item {
overflow: hidden;
cursor: url(images/cursor.cur), crosshair;
cursor: url(images/cursor.png) 40 40, crosshair;
height:auto !important;
padding:0 !important;
margin: 0 !important;
background:#ffffff !important;
text-align:center !important;
width:100%;
z-index:1 !important;
}
.portfolio img {
width:100%;
height:100%;
line-height:0;
padding:0;
margin:0;
overflow:hidden;
}
.portfolio {
padding:0 !important;
margin:0 !important;
display:block ;
position:relative;
}
.portfolio_details {
list-style:none;
padding-top:30px;
padding-left:0;
}
.portfolio_details li {
margin:15px 0;
}
.portfolio_details strong {
padding-right:5px;
color:#181818;
}
.portfolio_desc {
padding:50px 0;
}
.single_portfolio img {
width:100%;
}
.pager li > a, .pager li > span {
border:1px solid #fff;
color:#ffffff;
border-radius:0;
}
.pager li > a:hover, .pager li > span:hover {
background:#181818;
}
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/* ----------------------------------------------------
BLOG OPTIONS
------------------------------------------------------- */
.blog-item {
border:1px solid #e3e3e3;
display:block;
overflow:hidden;
position:relative;
}
.about_section .magnifier .buttons,
.team_member .magnifier .buttons,
.blog-item .magnifier .buttons {
margin-top:0;
top:45%;
}
.blog_header h3 {
padding:0;
margin:15px 0 5px;
}
.blog_header {
padding-bottom:10px !important;
overflow:hidden;
}
.blog_header .meta a {
font-size:12px;
padding:5px;
overflow:hidden;
}
.blog_header,
.blog_details,
.blog_footer {
padding:3px 10px;
display:block;
overflow:hidden;
}
.blog-item .blog_header i {
padding-right:5px;
}
.blog-item:hover .blog_footer a {
color:#ffffff !important;
}
.blog_footer {
background:#e8e8e8;
padding:10px 10px;
}
#comments {padding:20px;}
.comment-list {
margin: 60px 0;
list-style:none;
}
.comment-list ul li,
.comment-list ol li {list-style:none;}
.comment-avatar {
margin: 0 20px 0 0;
float: left;
height: 70px; width: 70px;
}
.comment-content {
background: #ffffff;
border: 1px solid #efefef;
margin-bottom: 20px;
overflow: hidden;
padding: 20px;
}
.comment-author {
margin-bottom: 10px;
}
.comment-meta {
font-size: 12px;
color: #aaa;
padding-left:10px;
}
.comment-reply {
margin:-10px -5px 0 0;
float: right;
font-size: 12px;
color: #ffffff;
}
.leave-comment textarea {
height: 150px;
}
#blog-page.white-wrapper {
padding:40px 0 !important;
}
#blog-page .blog_wrapper {
padding:20px 0 !important;
}
#blog-page .blog-item {
margin-bottom:30px;
overflow:hidden;
}
.blog_wrapper {
padding:40px 0;
display:block;
overflow:hidden;
position:relative;
}
/* ----------------------------------------------------
SHOP STYLES
------------------------------------------------------- */
.shop_item .magnifier .st {
padding:0 10px;
width:auto;
}
.product_list_widget {
padding-left:0
}
.shopping-cart-widget li {
*zoom: 1;
margin: 0 0 1em;
}
.shopping-cart-widget li:before,
.shopping-cart-widget li:after {
content: "";
display: table;
}
.shopping-cart-widget li:after {
clear: both;
}
.shopping-cart-widget li img {
width:40px;
float: right;
margin-left: 1em;
}
.shopping-cart-widget li .quantity {
width: auto;
float: none;
}
.shopping-cart-widget li a {
display: block;
}
.shopping-cart-widget li:last-child {
margin: 0;
border: none;
}
.cart_list li {
list-style:none;
}
div.thumbnails{padding-top:10px;zoom:1}
div.thumbnails a {border:1px solid #ffffff;float:left;width:30%;margin-right:4.9%}
div.thumbnails a img{width:100%;height:auto;opacity:1;filter:alpha(opacity=100); /* For IE8 and earlier */}
div.thumbnails a img:hover{width:100%;height:auto;opacity:0.4;filter:alpha(opacity=40); /* For IE8 and earlier */}
div.thumbnails a.last{margin-right:0}
div.thumbnails a.first{clear:both}
.popular_items img{
width:95px;
padding-right:10px;
float:left
}
.popular_items{
margin:20px 0
}
.popular_items .popular_items_div{
display:block;
margin-top:20px;
overflow:hidden;
position:relative
}
.popular_items .popular_items_div h4{
margin-bottom:5px !important;
padding-bottom:0;
}
.btn-shop .form-control:focus {
box-shadow:none;
}
.btn-shop .form-control {
width:55px;
border-radius:0;
margin:0 -2px;
padding-right:0
}
#shop_features .nav li {
text-transform:uppercase;
font-weight:bold;
font-size:14px;
}
#shop_features {
padding:40px 0;
margin:20px 0;
overflow:hidden;
}
#custom_tab .nav-tabs > li > a,
#shop_features .nav-tabs > li > a {
border-radius:0;
line-height:2.1;
}
#custom_tab .tab-content,
#shop_features .tab-content {
padding:20px;
border-bottom:1px solid #DDDDDD !important;
border-right:1px solid #DDDDDD !important;
border-left:1px solid #DDDDDD !important;
overflow:hidden;
}
#custom_tab .tab-content ul li,
#shop_features .tab-content ul li {
list-style:square;
}
#custom_tab .tab-content ul,
#shop_features .tab-content ul {
padding:0 0 10px 20px
}
.btn-shop span {
background:#181818;
-moz-user-select: none;
background-image: none;
border: 0;
border-radius: 0;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: normal;
line-height: 1.42857;
margin: 0 -3px;
color:#ffffff;
padding: 7px 12px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.shop_item_details ul {padding-left:0; margin:15px 0; overflow:hidden;}
.shop_item_details strong {color:#181818; padding-right:10px;}
.shop_item_details ul li {list-style:none;margin:0 0 12px;}
.shop-right .title h2 {margin-bottom:5px; padding-bottom:0;font-size:22px;}
.shop-right .title .rating {margin-bottom:10px;}
.shop_item {margin-bottom:20px;}
.shop_item .magnifier .buttons {
top:44%;
margin-top:0 !important;
}
.single_portfolio .title h2 {margin-top:40px;}
.single_portfolio .entry,
.shop_item .entry,
.about_section .entry,
.team_member .entry,
.blog-item .entry {
display:block;
position:relative;
}
.panel-group .panel {border-radius:0}
.panel-default {border-color:#DDDDDD}
.panel-title > a:focus,
.panel-title > a:hover {color:#fefefe}
.panel-default > .panel-heading {color:#ffffff;}
.panel-title {
font-size:14px;
text-transform:uppercase;
padding-bottom:0;
}
.thumbnails img,
.shop_item .entry {
border:1px solid #c7c7c7;
}
.shop_item .shop_title span {
font-size:18px;
color:#181818;
font-weight:500;
}
.shop-right .title .price,
.shop_item .price {
font-size:18px;
color:#181818;
font-weight:500;
}
.shop_item .cats {
font-weight:lighter !important;
display: block;
font-size: 13px !important;
}
.shop_desc {
padding:14px 0;
overflow:hidden;
}
.shop_item {
display:block;
overflow:hidden;
position:relative;
}
/* ----------------------------------------------------
COLOR SCHEMES
------------------------------------------------------- */
.flickr-gallery li:hover,
blockquote,
.thumbnails a:hover,
#features .nav-tabs > li.active > a,
#features .nav-tabs > li.active > a:hover,
#features .nav-tabs > li.active > a:focus,
.btn-primary,
.btn-shop .form-control:focus,
.form-control:focus,
.social span:hover,
.header .social span:hover,
.slider_menu a:hover {
border-color:#a2b881;
}
.home-content h1 span,
.slides-navigation a i,
.rating i,
.general-title h1 span,
.tparrows:before,
.big_title2 span,
.overlay .social span:hover i,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.testimonial-widget h3,
.servicebox:hover h3,
.servicebox:hover i,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.custom-icon i,
.overlay .general-title p span,
.message h1 span,
.social span:hover a,
.header .nav li a:hover,
.header .nav li a:focus,
.big_title h1 span {
color:#a2b881;
}
.tp-bannertimer {
background:#a2b881 !important;
}
.volume,
.jtbutton a span,
#sidebar .nav-tabs > li > a:hover,
.tagcloud a:hover,
.panel-default > .panel-heading,
.pager li > a, .pager li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.back-to-top:hover,
.hrstyle,
.flexslider:hover .flex-next,
.flexslider:hover .flex-prev,
.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover,
.blog-item:hover .blog_footer,
.pricing_detail:hover .priceamount,
.pricing_detail:hover,
#owl-post-slider .owl-controls .owl-page.active span,
#shop_carousel .owl-controls .owl-page.active span,
#owl-twitter .owl-controls .owl-page.active span,
#owl-twitter .owl-controls.clickable .owl-page:hover span,
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span,
.progress-bar,
.hovicon.effect-1.sub-a:hover,
.hovicon.effect-1.sub-a:hover i,
.hovicon.effect-1,
.hovicon.effect-1.sub-a:hover,
.btn-primary,
.orange-wrapper {
background-color:#a2b881;
}
.hovicon.effect-1:after {
box-shadow: 0 0 0 4px #a2b881;
}
#contactform {
margin:30px 0;
}
#contactform .form-control {
margin:10px 0;
height:50px;
}
#contactform textarea {
height:150px !important;
}
#contactform fieldset { padding:20px; border:1px solid #eee; -webkit-border-radius:5px; -moz-border-radius:5px; }
#contactform legend { padding:7px 10px; font-weight:bold; color:#000; border:1px solid #eee; -webkit-border-radius:5px; -moz-border-radius:5px; margin-bottom:0 !important; margin-bottom:20px; }
#contactform span.required{ font-size: 13px; color: #ff0000; } /* Select the colour of the * if the field is required. */
#message { margin: 10px 0; padding: 0; }
.error_message { display: block; height: 22px; line-height: 22px; background: #FBE3E4 url(images/error.gif) no-repeat 10px center; padding: 3px 10px 3px 35px; color:#8a1f11;border: 1px solid #FBC2C4; -webkit-border-radius:5px; }
.loader { padding: 0 10px; }
#contactform #success_page h1 { background: url(images/success.gif) left no-repeat; padding-left:22px; }
acronym { border-bottom:1px dotted #ccc; }
/*EXTRAS*/
#one-parallax {
background-image: url('../images/about/customdesign.jpeg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#two-parallax {
background-image: url('demos/parallaxbg_07.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#three-parallax {
background-image: url('demos/parallaxbg_02.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#four-parallax {
background-image: url('demos/parallaxbg_03.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#five-parallax {
background-image: url('demos/parallaxbg_04.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax {
background-image: url('demos/parallaxbg_04.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax1 {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax2 {
background-image: url('demos/parallaxbg_05.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax3 {
background-image: url('demos/parallaxbg_03.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax4 {
background-image: url('demos/parallaxbg_02.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#six-parallax5 {
background-image: url('demos/parallaxbg_09.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#seven-parallax {
background-image: url('../images/header/code.jpeg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#seven-parallax1 {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#eight-parallax {
background-image: url('demos/parallaxbg_06.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#eight-parallax1 {
background-image: url('demos/parallaxbg_01.jpg');
background-attachment: fixed !important;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.tp-caption .slider_menu .fade,
.tp-caption .slider_menu .sfl,
.tp-caption .slider_menu .skewfromleft,
.tp-caption .slider_menu .sft,
.tp-caption .slider_menu .lft,
.tp-caption .slider_menu .sfr {
z-index: 6;
}
.bar-70 {
width: 70%;
}
.bar-80 {
width: 80%;
}
.bar-75 {
width: 75%;
}
.bar-90 {
width: 90%;
}
.bar-65 {
width: 65%;
}
.bar-95 {
width: 95%;
}
.bar-25 {
width: 25%;
}
.bar-60 {
width:60%;
}
.bar-50 {
width:50%;
}
.bar-55 {
width: 55%;
}
.media .pull-left {
width: 74px;
height: 74px;
}
/* ----------------------------------------------------
HEART BEAT
------------------------------------------------------- */
#heart {
margin-top: 120px;
text-align: center;
}
#heart i .fa {
color: #a2b881;
font-size: 50px;
line-height: 50px;
}
#heart > span {
padding:0 0 0 15px;
font-size:20px;
}
#heart i {
color:#a2b881;
}
@-webkit-keyframes heartbeat{
0%{-webkit-transform:scale(1)}
50%{-webkit-transform:scale(1.4)}
100%{-webkit-transform:scale(1)}
}
@-moz-keyframes heartbeat{
0%{-moz-transform:scale(1)}
50%{-moz-transform:scale(1.4)}
100%{-moz-transform:scale(1)}
}
@-o-keyframes heartbeat{
0%{-o-transform:scale(1)}
50%{-o-transform:scale(1.4)}
100%{-o-transform:scale(1)}
}
@keyframes heartbeat{
0%{transform:scale(1)}
50%{transform:scale(1.4)}
100%{transform:scale(1)}
}
.heartbeat{
-webkit-animation-name:heartbeat;
-moz-animation-name:heartbeat;
-o-animation-name:heartbeat;
animation-name:heartbeat;
}
.animate-infinite-heartbeat {
-webkit-animation: heartbeat 2s infinite;
/* Chrome, Safari, Opera */
animation: heartbeat 2s infinite;
} | 0.266739 | 0.08698 |
form {
display: inline;
}
th{
font-weight: normal;
}
tfoot input {
width: 100%;
padding: 3px;
box-sizing: border-box;
}
#user {
text-decoration: underline;
}
.caption h3 {
margin-top: 0px;
}
.navbar-inverse {
background-color: #005EB8;
border: 0px solid #003087;
}
.navbar-header .navbar-brand {
color: white;
}
.navbar-header .navbar-brand:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-toggle {
border: 1px solid white;
background-color: #005EB8;
}
.navbar-inverse .navbar-toggle:hover {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-toggle:focus {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-toggle:checked {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-nav>li>a {
color: white;
}
.navbar .navbar-inverse {
background-color: #99ccff;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar .navbar-inverse .navbar-collapse {
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.dropdown-menu {
background-color: #005EB8;
}
.dropdown-menu .divider {
background-color: #231f20;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: white;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-nav>li>a:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
background-color: #003087;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #0072CE;
}
.navbar-inverse .navbar-text {
color: white;
}
.navbar-inverse .navbar-text .navbar-link {
color: white;
}
.navbar-inverse .navbar-text .navbar-link:hover {
color: #E8EDEE;
}
.btn-primary {
background-color: #005EB8;
border: 1px solid #003087;
}
.btn-primary:hover {
background-color: #003087;
border: 1px solid #231f20;
}
.panel-default {
border-color: #E8EDEE;
}
.panel-default > .panel-heading {
color: #231f20;
background-color: #E8EDEE;
border-color: #E8EDEE;
}
.panel-info {
border-color: rgba(65, 182, 230, 0.2);
}
.panel-info > .panel-heading {
color: #31708f;
background-color: rgba(65, 182, 230, 0.2);
border-color: rgba(65, 182, 230, 0.2);
}
.alert-danger {
color: #ffffff;
background-color: rgba(218, 41, 28, 0.6);
border-color: rgba(255, 255, 255, 0);
}
.alert-warning {
color: #8a6d3b;
background-color: rgba(250, 225, 0, 0.2);
border-color: rgba(250, 225, 0, 0.2);
}
.rediconcolor {
color: #da291c;
} | gelweb/gel2mdt/static/gel2mdt/css/custom.css | form {
display: inline;
}
th{
font-weight: normal;
}
tfoot input {
width: 100%;
padding: 3px;
box-sizing: border-box;
}
#user {
text-decoration: underline;
}
.caption h3 {
margin-top: 0px;
}
.navbar-inverse {
background-color: #005EB8;
border: 0px solid #003087;
}
.navbar-header .navbar-brand {
color: white;
}
.navbar-header .navbar-brand:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-toggle {
border: 1px solid white;
background-color: #005EB8;
}
.navbar-inverse .navbar-toggle:hover {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-toggle:focus {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-toggle:checked {
background-color: #003087; /* Changes toggle color on hover */
}
.navbar-inverse .navbar-nav>li>a {
color: white;
}
.navbar .navbar-inverse {
background-color: #99ccff;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar .navbar-inverse .navbar-collapse {
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.dropdown-menu {
background-color: #005EB8;
}
.dropdown-menu .divider {
background-color: #231f20;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: white;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-nav>li>a:hover {
background-color: #0072CE;
color: #E8EDEE;
}
.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover {
background-color: #003087;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #0072CE;
}
.navbar-inverse .navbar-text {
color: white;
}
.navbar-inverse .navbar-text .navbar-link {
color: white;
}
.navbar-inverse .navbar-text .navbar-link:hover {
color: #E8EDEE;
}
.btn-primary {
background-color: #005EB8;
border: 1px solid #003087;
}
.btn-primary:hover {
background-color: #003087;
border: 1px solid #231f20;
}
.panel-default {
border-color: #E8EDEE;
}
.panel-default > .panel-heading {
color: #231f20;
background-color: #E8EDEE;
border-color: #E8EDEE;
}
.panel-info {
border-color: rgba(65, 182, 230, 0.2);
}
.panel-info > .panel-heading {
color: #31708f;
background-color: rgba(65, 182, 230, 0.2);
border-color: rgba(65, 182, 230, 0.2);
}
.alert-danger {
color: #ffffff;
background-color: rgba(218, 41, 28, 0.6);
border-color: rgba(255, 255, 255, 0);
}
.alert-warning {
color: #8a6d3b;
background-color: rgba(250, 225, 0, 0.2);
border-color: rgba(250, 225, 0, 0.2);
}
.rediconcolor {
color: #da291c;
} | 0.469763 | 0.112698 |
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Bold.woff2') format('woff2'),
url('IBMPlexSans-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Medium.woff2') format('woff2'),
url('IBMPlexMono-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Light.woff2') format('woff2'),
url('IBMPlexMono-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ExtraLightItalic.woff2') format('woff2'),
url('IBMPlexSans-ExtraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-SemiBoldItalic.woff2') format('woff2'),
url('IBMPlexMono-SemiBoldItalic.woff') format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Thin.woff2') format('woff2'),
url('IBMPlexMono-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ThinItalic.woff2') format('woff2'),
url('IBMPlexMono-ThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ExtraLight.woff2') format('woff2'),
url('IBMPlexSans-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-BoldItalic.woff2') format('woff2'),
url('IBMPlexMono-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-SemiBoldItalic.woff2') format('woff2'),
url('IBMPlexSans-SemiBoldItalic.woff') format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-MediumItalic.woff2') format('woff2'),
url('IBMPlexSans-MediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono.woff2') format('woff2'),
url('IBMPlexMono.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Light.woff2') format('woff2'),
url('IBMPlexSans-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans.woff2') format('woff2'),
url('IBMPlexSans.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ThinItalic.woff2') format('woff2'),
url('IBMPlexSans-ThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-SemiBold.woff2') format('woff2'),
url('IBMPlexSans-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Italic.woff2') format('woff2'),
url('IBMPlexMono-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Italic.woff2') format('woff2'),
url('IBMPlexSans-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-LightItalic.woff2') format('woff2'),
url('IBMPlexMono-LightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ExtraLight.woff2') format('woff2'),
url('IBMPlexMono-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Medium.woff2') format('woff2'),
url('IBMPlexSans-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-LightItalic.woff2') format('woff2'),
url('IBMPlexSans-LightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-MediumItalic.woff2') format('woff2'),
url('IBMPlexMono-MediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Bold.woff2') format('woff2'),
url('IBMPlexMono-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-BoldItalic.woff2') format('woff2'),
url('IBMPlexSans-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-SemiBold.woff2') format('woff2'),
url('IBMPlexMono-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ExtraLightItalic.woff2') format('woff2'),
url('IBMPlexMono-ExtraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Thin.woff2') format('woff2'),
url('IBMPlexSans-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
} | public/fonts/loader.css | @font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Bold.woff2') format('woff2'),
url('IBMPlexSans-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Medium.woff2') format('woff2'),
url('IBMPlexMono-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Light.woff2') format('woff2'),
url('IBMPlexMono-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ExtraLightItalic.woff2') format('woff2'),
url('IBMPlexSans-ExtraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-SemiBoldItalic.woff2') format('woff2'),
url('IBMPlexMono-SemiBoldItalic.woff') format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Thin.woff2') format('woff2'),
url('IBMPlexMono-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ThinItalic.woff2') format('woff2'),
url('IBMPlexMono-ThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ExtraLight.woff2') format('woff2'),
url('IBMPlexSans-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-BoldItalic.woff2') format('woff2'),
url('IBMPlexMono-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-SemiBoldItalic.woff2') format('woff2'),
url('IBMPlexSans-SemiBoldItalic.woff') format('woff');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-MediumItalic.woff2') format('woff2'),
url('IBMPlexSans-MediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono.woff2') format('woff2'),
url('IBMPlexMono.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Light.woff2') format('woff2'),
url('IBMPlexSans-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans.woff2') format('woff2'),
url('IBMPlexSans.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-ThinItalic.woff2') format('woff2'),
url('IBMPlexSans-ThinItalic.woff') format('woff');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-SemiBold.woff2') format('woff2'),
url('IBMPlexSans-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Italic.woff2') format('woff2'),
url('IBMPlexMono-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Italic.woff2') format('woff2'),
url('IBMPlexSans-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-LightItalic.woff2') format('woff2'),
url('IBMPlexMono-LightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ExtraLight.woff2') format('woff2'),
url('IBMPlexMono-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Medium.woff2') format('woff2'),
url('IBMPlexSans-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-LightItalic.woff2') format('woff2'),
url('IBMPlexSans-LightItalic.woff') format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-MediumItalic.woff2') format('woff2'),
url('IBMPlexMono-MediumItalic.woff') format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-Bold.woff2') format('woff2'),
url('IBMPlexMono-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-BoldItalic.woff2') format('woff2'),
url('IBMPlexSans-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-SemiBold.woff2') format('woff2'),
url('IBMPlexMono-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('IBMPlexMono-ExtraLightItalic.woff2') format('woff2'),
url('IBMPlexMono-ExtraLightItalic.woff') format('woff');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('IBMPlexSans-Thin.woff2') format('woff2'),
url('IBMPlexSans-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
} | 0.414188 | 0.056262 |
@font-face {
font-family: 'latoblack';
src: url('../fonts/lato-black-webfont.woff2') format('woff2'),
url('../fonts/lato-black-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoblack_italic';
src: url('../fonts/lato-blackitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-blackitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latobold';
src: url('../fonts/lato-bold-webfont.woff2') format('woff2'),
url('../fonts/lato-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latobold_italic';
src: url('../fonts/lato-bolditalic-webfont.woff2') format('woff2'),
url('../fonts/lato-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latohairline';
src: url('../fonts/lato-hairline-webfont.woff2') format('woff2'),
url('../fonts/lato-hairline-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latohairline_italic';
src: url('../fonts/lato-hairlineitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-hairlineitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoitalic';
src: url('../fonts/lato-italic-webfont.woff2') format('woff2'),
url('../fonts/lato-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latolight';
src: url('../fonts/lato-light-webfont.woff2') format('woff2'),
url('../fonts/lato-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latolight_italic';
src: url('../fonts/lato-lightitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoregular';
src: url('../fonts/lato-regular-webfont.woff2') format('woff2'),
url('../fonts/lato-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
} | target/heroku/app/target/classes/public/css/lato.css | @font-face {
font-family: 'latoblack';
src: url('../fonts/lato-black-webfont.woff2') format('woff2'),
url('../fonts/lato-black-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoblack_italic';
src: url('../fonts/lato-blackitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-blackitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latobold';
src: url('../fonts/lato-bold-webfont.woff2') format('woff2'),
url('../fonts/lato-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latobold_italic';
src: url('../fonts/lato-bolditalic-webfont.woff2') format('woff2'),
url('../fonts/lato-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latohairline';
src: url('../fonts/lato-hairline-webfont.woff2') format('woff2'),
url('../fonts/lato-hairline-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latohairline_italic';
src: url('../fonts/lato-hairlineitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-hairlineitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoitalic';
src: url('../fonts/lato-italic-webfont.woff2') format('woff2'),
url('../fonts/lato-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latolight';
src: url('../fonts/lato-light-webfont.woff2') format('woff2'),
url('../fonts/lato-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latolight_italic';
src: url('../fonts/lato-lightitalic-webfont.woff2') format('woff2'),
url('../fonts/lato-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'latoregular';
src: url('../fonts/lato-regular-webfont.woff2') format('woff2'),
url('../fonts/lato-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
} | 0.15662 | 0.054324 |
.wcvendors-pro-dashboard-wrapper *{}
.wcvendors-pro-dashboard-wrapper {font-size: 15px;line-height: 22px;}
.wcv-grid .wcv_dashboard_overview {background-color: #fff;border: 1px solid #e1e1e1;padding: 20px 2em 20px 0;margin: 10px 0 30px 0 !important;}
.wcv-grid h3{font-size: 19px !important}
.wcv-datepicker-calendar ul{margin: 0}
.wcv-datepicker-calendar ul li, .wcv-tabs ul.tabs-nav li, .wcv-grid ul li{list-style: none !important;}
.wcv-datepicker-calendar ul li a, .wcv-tabs .tabs-nav li a{text-decoration: none;}
table.wcv-table tr td {padding: 12px;border-bottom: 1px solid #e1e1e1;background-color: transparent;vertical-align: top;font-size: 14px;}
table.wcv-table {border: 1px solid #e1e1e1;background: none transparent;}
.wcv_dashboard_datepicker .wcv-form, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form {display: inline-block;display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;margin-bottom: 10px;}
.wcv_dashboard_datepicker .wcv-form .all-66, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-66 {-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;min-width: 1px;}
.wcv_dashboard_datepicker .wcv-form .all-33, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 {width: 18%;padding-left: 30px;}
.wcv-form label, .pv_paypal_container b, .pv_shop_name_container b, #pv_seller_info_container b, #pv_shop_description_container b {margin-bottom: 5px;font-weight: 700;clear: both;display: inline-block;margin-right: 17px;font-size: 15px;}
.wcv_dashboard_datepicker .wcv-form .all-33 input, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 input {margin-left: 0;margin-right: 0;}
.wcv-button:hover {color: #111!important;}
.vendor-dashboard .site-content h2.orders-title, .wcv-form .text-editor label {margin-bottom: 0;}
.shop-settings .select2-container .select2-choice, .wcvendors-dashboard-wrapper .select2-container .select2-choice, .wcvendors-pro-dashboard-wrapper .select2-container .select2-choice {border: 1px solid #e1e1e1;padding: 8px 10px;height: auto;border-radius: 0;font: 14px/20px Arial;}
.wcvendors-dashboard-wrapper .select2-choice, .wcvendors-dashboard-wrapper .select2-choices, .wcvendors-pro-dashboard-wrapper .select2-choices, .wcvendors-pro-dashboard-wrapper .select2-choice{box-shadow: none !important;}
.wcvendors-dashboard-wrapper .select2-arrow, .wcvendors-pro-dashboard-wrapper .select2-arrow{background: none transparent !important}
.wcv-form input[type=color], .wcv-form input[type=date], .wcv-form input[type=datetime-local], .wcv-form input[type=datetime], .wcv-form input[type=email], .wcv-form input[type=month], .wcv-form input[type=number], .wcv-form input[type=password], .wcv-form input[type=search], .wcv-form input[type=tel], .wcv-form input[type=text], .wcv-form input[type=time], .wcv-form input[type=url], .wcv-form input[type=week], .wcv-form select, .wcv-form textarea{border-color: #ccc}
label[for=_wcv-store_id], label[for=_wcv_store_address2]{display: none;}
.wcv-form .control-group input[type=checkbox]+label, .wcv_variable_attributes input[type=checkbox]+label {padding-left: 25px; padding-right: 5px;}
.wcv-form .control-group,.wcv-grid nav.wcv-navigation {margin-bottom: 28px;}
.wcv-form p.tip{line-height: 18px}
.vendor-pro-dashboard .wcv_dashboard_datepicker, .wcv_dashboard_datepicker .all-100 hr{margin-top: 20px;}
.wcv-tabs.top>.tabs-nav li a{border-radius: 0; line-height: 20px}
.wcv-grid input[type="submit"]{padding: 10px 20px; font-size: 16px}
.wcvendors-pro-dashboard-wrapper .wcv-navigation ul.menu {box-shadow: 0 2px 2px #E4E4E4;background-color: #f7f7f7;}
.wcv-navigation ul.menu li a{color: #111 !important}
.wcv-navigation ul.menu li.active a, .wcv-navigation ul.menu li:hover a{color: #fff !important}
.no_bg_wrap .wcvendors-pro-dashboard-wrapper .wcv-navigation ul.menu{background-color: #fff}
.wcv-navigation ul li{margin: 0 !important}
.wcvendors_sold_by_in_loop {font-size: 12px;margin-bottom: 10px;display: inline-block; line-height: 15px}
.only-vendor-title .wcvendors_sold_by_in_loop{font-size: 15px; line-height: 20px}
.only-vendor-title .wcvendors_sold_by_in_loop span{display: none;}
.wcvendors_sold_by_in_loop a{color: #333}
.form-row #rememberme{ margin-top: 10px}
.wcv_shop_description{ margin-bottom: 15px}
.wcv_vendorslist, .post ul.wcv_vendorslist{ overflow: hidden; margin: 0 -1% 30px -1%;}
.wcv_vendorslist a.wcv-grid-shop-name{ text-decoration: none; font-size: 16px; font-weight: bold; display: inline-block;}
.wcv_vendorslist:not(.rh-flex-eq-height){display: -webkit-flex; -webkit-flex-wrap:wrap;display: -ms-flexbox; -ms-flex-wrap:wrap;display: flex; flex-wrap: wrap;flex-direction: row;}
.wcv_vendorslist:not(.rh-flex-eq-height) li{ float: left; width: 23%; margin: 0 1% 28px 1% !important; }
.wcv_vendorslist li{position: relative;text-align: center;box-shadow: rgba(0,0,0,0.15) 0px 1px 2px;background: white;list-style: none !important; }
.wcv_vendorslist .cover_logo { display: block; height: 135px; overflow: hidden; background: #eee; background-position: center top; background-repeat: no-repeat;background-size: cover; }
.wcv_vendorslist .item-avatar { position: absolute; left: 50%; top: 86px; margin-left: -43px; border-radius: 2px;width: 80px; box-shadow: 0 0 1px 0 rgba(0,0,0,0.3), 0 1px 1px 0 rgba(0,0,0,0.1); background-color: #fff; padding: 2px;border: 3px solid #fff; }
.wcv_vendorslist .member-inner-list{ text-align: center;} .wcv_vendorslist .store-desc{ display: block; position: relative; overflow: hidden; height: 42px; margin: 10px auto 0 auto; padding: 0 20px; font-size: 12px; color: #999; line-height: 14px }
.wcv_vendorslist .last-vendor-products{ display: block; padding: 15px 15px 25px; text-align: center; overflow: hidden; white-space: nowrap; }
.wcv_vendorslist .last-vendor-products a { display: inline-block; vertical-align: top; width: 70px; height: 70px; position: relative; }
span.product_count_in_member { position: absolute; bottom: 0; right: 0; background: rgba(255, 255, 255, 0.78); padding: 0 6px; font-size: 13px; line-height: 18px; }
.wcv_vendorslist .vendor-list-like{position: absolute;top: 8px; right: 8px; }
.rh_vendors_listflat{margin: 0 0 30px 0}
.rh_vendors_listflat .vendor-list-like{position: absolute;top: 8px; left: -44px; }
.rtl .rh_vendors_listflat .vendor-list-like{left: auto;right: -44px}
.wcv_vendorslist .rh-user-favor-shop, .rh_vendors_listflat .rh-user-favor-shop, #buddypress .rh-user-favor-shop{background: #f5bad0; color: #fff; width: 34px; height: 34px; line-height: 36px; border-radius: 50%; font-size: 15px;display: block; text-align: center;}
.wcv_vendorslist .rh-user-favor-shop.alreadyinfavor, .wcv_vendorslist .rh-user-favor-shop:hover, .rh_vendors_listflat .rh-user-favor-shop.alreadyinfavor, .rh_vendors_listflat .rh-user-favor-shop:hover, #buddypress .rh-user-favor-shop.alreadyinfavor, #buddypress .rh-user-favor-shop:hover{background:#ed1d6a; }
.wcv_vendorslist .rh-user-favor-shop .count, .rh_vendors_listflat .rh-user-favor-shop .count, #buddypress .rh-user-favor-shop .count{opacity: 0; font-size: 0;position: absolute; transition: all 0.4s ease; width: 34px; height: 34px; line-height: 36px;background: #fff; color: #cc0000;border-radius: 50%; right: 0; left: 0; bottom: 0;top: 0;}
.rh_vendors_listflat .rh-user-favor-shop .count, #buddypress .rh-user-favor-shop .count{width: 20px; height: 20px; line-height: 20px; left: 22px; right: auto;}
.wcv_vendorslist .rh-user-favor-shop:hover .count{opacity: 1; font-size: 12px; right:100%;}
.rh_vendors_listflat .rh-user-favor-shop:hover .count, #buddypress .rh-user-favor-shop:hover .count{opacity: 1; font-size: 12px; top: -10px}
.wcv_vendorslist .member-details{overflow: hidden; padding: 50px 0 0 0}
#buddypress .rh-user-favor-shop{position: relative}
.table-vendor-sales-report .product a{ text-decoration: none; }
.table-vendor-sales-report.table-condensed th, .table-vendor-sales-report.table-condensed td{ padding: 10px 8px}
.table-vendor-sales-report th{background: #f5f5f5;font-size: 90%;}
.table-vendor-sales-report.table-condensed td{font-size: 85%;}
.table-vendor-sales-report{ border: 1px solid #ddd;}
.rh_wcv_date_picker{margin-bottom: 10px; overflow: hidden}
#pv_paypal, #pv_shop_name, .rh_wcv_date_picker .date-pick, .wcv-form .control-group .control>input, .wcv-form .control-group .control>select, .wcv-form .control-group .control>textarea, #xp-wcvendor-profile .field_type_textbox input{width: 100%; padding: 8px 10px; font: 14px/22px Arial; border-radius: 0}
.rh_wcv_date_picker label{display: block}
#xp-wcvendor-profile .field_type_selectbox select{border: 1px solid #ccc; width: 100%}
#xp-wcvendor-profile .xp-woo-description{font-size: 90%}
.rh_wcv_date_picker input[type="submit"]{font-size:17px; width: 100%; padding: 13px; display: block; margin-top: 23px; border-radius: 0}
#pv_paypal, #pv_shop_name{margin-top: 5px}
#xp-wcvendor-profile .editfield > label, #xp-wcvendor-profile .editfield span.label, #xp-wcvendor-profile legend{display: block; font-size: 15px; font-weight: bold; margin: 0 0 6px 0}
#xp-wcvendor-profile .clear-value{font-size: 85%}
#wp-pv_seller_info-editor-container, #wp-pv_shop_description-editor-container{ border: 1px solid #eee}
#pv_seller_info_container, #pv_shop_description_container{ margin-bottom: 15px}
.btn[name="vendor_application_submit"] { padding: 5px 10px; font: bold 14px Arial; border: 1px solid #444; cursor: pointer;}
.wcvendor_store_wrap_bg{margin: 0 0 30px 0}
#wcvendor_image_bg{background-color: #f4f4f4;background-position: center center;background-repeat: no-repeat;border: 0;display: block;margin: 0;padding: 30px 20px 20px 20px;position: relative;width: 100%;z-index: 1; min-height: 270px}
.wcvendor-cover-image-mask{width: 100%;height: 100%;position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(156,156,156,.1) 30%,rgba(11,11,11,.35) 80%,rgba(0,0,0,.48));background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(156,156,156,.1) 30%,rgba(11,11,11,.35) 80%,rgba(0,0,0,.48));filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#b0000000',GradientType=0);opacity: .65;}
#wcvendor_profile_wrap .rh-container{margin: 0 auto;display: table;}
#wcvendor_profile_wrap{position: absolute; bottom: 30px; left: 0; z-index: 2; width: 100%}
.wcvendor_profile_cell{display: table-cell; vertical-align: bottom;color: #fff;text-shadow: 0 0 1px #999; padding: 0;position: relative;}
#wcvendor_profile_act_desc{padding: 0 20px}
#wcvendor_profile_act_btns{width: 170px}
#wcvendor_profile_act_btns .wpsm-button{display: block; margin: 10px 0 0 0}
#wcvendor_profile_logo{width: 150px}
#wcvendor_profile_logo img{height: 150px;width: 150px;line-height: 150px; position: absolute;bottom: -55px}
.wcvendor_store_stars a, .wcvendor_store_stars{text-decoration: none; color: #fff; font-style: normal;}
.wcvendor_store_stars a i{color: #ffd700}
#wcvendor_profile_wrap h1{color: #fff; text-shadow: 0 1px 1px #666; margin: 0 0 10px 0; font-size: 24px;line-height: 26px}
.wcvendor_store_stars{margin: 0 0 10px 0; line-height: 15px}
.wcvendor_store_stars span.text{font-size: 12px; margin: 0 5px}
.wcvendor_store_desc{font: italic 14px/18px Arial;}
.wcvendor_store_desc a{color: #fff}
#wcvendor_profile_menu{background: #f9f9f9;overflow: hidden; border-bottom: 1px solid #ededed}
.wcvendor_profile_menu_items{border-left: 1px solid #eee; margin-left:170px;float: left; }
.wcvendor_profile_menu_items li{margin: 0; padding: 0; float: left;}
.wcvendor_profile_menu_items a, .wcvendor_profile_menu_items button{padding: 15px 25px; color: #111; border-right: 1px solid #eee; display: inline-block; line-height: 18px; font-size: 15px; margin: 0 }
.wcvendor_profile_menu_items li.active a{background-color: #fff}
#wcvendor_search_shops{float: right; margin: 7px 0}
.vendor_store_details{margin-bottom:20px;border: 1px solid #f1f1f1;background: #f9f9f9; display: table; width: 100%; }
.vendor_store_details_image, .vendor_store_details_single {display: table-cell;vertical-align: top;line-height: 0.8; padding: 10px}
.vendor_store_details_single{padding-left: 0}
.vendor_store_details_single .favorshop_like i{color: #cc0000}
.vendor_store_details_image{width: 50px}
.vendor_store_details_label {font-size: 80%;line-height: .8;color: #b7b7b7;}
.vendor_store_details_title h5{font-size: 16px; display: block; margin: 0}
.vendor_store_details_title{display: block; margin: 5px 0}
.vendor_store_details_contact {font-size: 0.82em;color: #b7b7b7;line-height: 15px;cursor: pointer;font-family: Arial,Verdana,Helvetica,sans-serif;}
.vendor_store_details_contact a{text-decoration: none;}
.vendor_store_details_contact i{margin: 0 0 0 9px}
.rh_vendors_listflat .vendor_store_in_bp{margin: 0 0 20px 0}
.vendor_store_in_bp{border: 1px solid #e5e5e5;background: #fff; display: table; width: 100%; }
body.bp-user .vendor_store_in_bp{border-bottom: none; border-top: none; position: relative }
body.bp-user .vendor-list-like{display: table-cell; padding: 15px 0 15px 15px; vertical-align: middle; width: 34px;}
.rh_vendors_listflat .distance-to-user-geo{font-size: 80%;line-height: 18px;}
.vendor_store_in_bp_image, .vendor_store_in_bp_single, .vendor_store_in_bp_last_products, .vendor_store_in_bp_shopname{display: table-cell; padding: 15px;vertical-align: middle;}
.vendor_store_in_bp_single{padding: 15px 0}
.vendor_store_in_bp_image{width: 70px}
.vendor_store_owner_label{color: #aaa; font-size: 80%}
.vendor_store_in_bp_title h5{margin: 0 0 12px 0; font-size: 18px}
.vendor_store_in_bp_last_products{text-align: right;}
body.rtl .vendor_store_in_bp_last_products{text-align: left;}
.vendor_store_in_bp_last_products a{display: inline-block; text-decoration: none !important; margin-left: 5px; border: 1px solid #eee; padding: 4px; background-color: #fff; text-align: center; width: 70px; line-height: 70px; font-size: 20px; font-weight: bold;}
.vendor_store_in_bp_count_pr > span{line-height: 70px; background-color: #f3f3f3; display: block;}
#wcv_mini_header{margin: 0 0 20px 0; color: #fff}
#wcv_mini_header #wcvendor_image_bg{min-height: 50px; height: 50px; padding: 10px; overflow: hidden;}
#wcv_mini_header .wcvendor-cover-image-mask{background: none rgba(0,0,0,0.5) !important}
#wcv_mini_header h5{font-size: 18px; line-height: 30px; margin: 0 8px}
#wcv_mini_header h5 a{color: #fff}
.wcv_mini_header_content{z-index: 2; position: relative;}
.category-vendormenu a{color: #111}
.category-vendormenu{margin: 0}
.category-vendormenu li{margin: 0 0 14px 0}
.category-vendormenu span{float: right;}
.vendor_storelist_name{padding: 0 10px;}
.vendor_storelist_name span{font-size: 10px; line-height: 10px}
.vendor_storelist_name a{display: block; font-size: 15px; text-decoration: none; font-weight: bold; line-height: 18px; }
.shop_avatar_v_store{width: 50px;position: relative;}
.shop_avatar_v_store img{border-radius: 50%; border: 1px solid #fff;}
.vendor_store_in_bp_shopname{ padding: 15px 14px 15px 26px; border: 1px dashed #ccc; border-top: none; border-bottom: none; background: #f5f5f5; width: 23% }
.rtl .vendor_store_in_bp_shopname{padding: 15px 26px 15px 14px;}
.rh_vendors_listflat .vendor_store_in_bp_single{ width: 17% }
.rh_vendors_listflat .vendor_user_meta h5{ font-size: 16px; margin: 0 0 10px 0; }
.rh_vendors_listflat .vendor_user_meta{ padding: 0 30px 0 0; }
.rh_wcv_dashboard_page h2, .wcvendors-pro-dashboard-wrapper h2{font-size: 20px}
.rh-mini-sidebar.user-profile-div .user-menu-tab{margin: 0}
.wcv-form.wcv-feedbackform .control-group input[type=radio]+label{display: block;padding-left: 1.45em; color: #fb9900}
.wcv-form.wcv-feedbackform .all-70{width: 100%}
.wcv-form.wcv-feedbackform .all-20{width: auto;}
.wcv-form.wcv-feedbackform textarea{margin-top: 12px}
.wcv-form.wcv-feedbackform input[type="submit"]{padding: 8px 16px; font-size: 16px}
#tab-vendor_ratings_tab a, .wcv_grid_rating a{text-decoration: none;}
.wcv_grid_rating{font-size: 90%;}
#tab-vendor_ratings_tab a i, #tab-vendor_ratings_tab i, .wcv-rating-item h4 i, .wcv_grid_rating i{color: #fb9900}
.wcv-rating-posted-by{font-size: 90%; color: #999; line-height: 18px}
.wcv-rating-posted-by p{margin: 0 0 18px 0}
.wcv-rating-item {border-bottom: 1px solid #ddd;margin-bottom: 25px;}
.wcv-rating-item:last-child{border: none;}
.wcv-grid .wcv-product-media{margin: 30px 0 0 0}
.wcv-product-media .wcv-featuredimg {min-height: 150px;border: 1px solid #e1e1e1;height: auto;margin: 0;background-color: #fff;position: relative;width: 100%;padding: 10px; text-align: center;}
.wcv-featuredimg br{display: none;}
a.wcv-media-uploader-featured-add, a.wcv-media-uploader-featured-delete{display: block;text-align: center;padding: 10px 0; text-decoration: none;}
.wcv-product-media a.hidden{display: none;}
.wcv-product-media .all-66{padding:0 35px;}
.wcv-product-upsells .control, .wcv-coupon-usage-restrictions > .control{margin: 0 0 25px 0}
.button.add_attribute{padding: 10px 14px;border: none;background: #111;color: #fff;line-height: 14px;font-size: 14px; box-shadow: none;}
.wcv_product_attributes .expand-close {font-size: 90%}
.wcv-gallery-image{box-shadow: 0 4px 5px #ccc}
.wcv-grid #files_download table thead th, .wcv-grid #files_download table thead td {padding: 0 10px;}
.downloadable_files table{width: 100%;border-collapse: collapse;}
.downloadable_files th, .downloadable_files td{border-bottom: 1px solid #E1E1E1;padding: 13px;text-align: left;}
table.wcv-table tr td, table.wcv-table tr th{border-bottom: 1px solid #E1E1E1;}
#branding.tabs-content h6{margin: 15px 0}
.wcvendors-table-rating h6 i{color: #fb9900}
#xprofile-in-wcstore{}
#xprofile-in-wcstore li:first-child{border-top: 1px solid #eee; margin: 24px 0 0 0}
#xprofile-in-wcstore li:last-child{margin: 0 0 24px 0}
#xprofile-in-wcstore li{clear: both; overflow: hidden; padding: 5px 0 5px 10px;line-height: 24px;border-bottom: 1px solid #eee;}
.rh_gmw_map_in_wcv_profile{color: #fff; text-decoration: underline; margin: 0 6px; cursor: pointer;}
#vendor-location{opacity: 0; height: 0}
#vendor-location.active{opacity: 100; height: 250px}
.wcv-verified-vendor{background: green;padding: 3px 6px;display: inline-block;font-size: 11px;text-transform: uppercase;border-radius: 2px;margin: 0 8px 4px 0}
.wcv-verified-vendor i{margin: 0 3px 0 0;color: #c1f3c1;}
.vendor_store_details_title i, .vendor_store_in_bp_title i{margin: 2px 4px 0 0;color: #54b60a;float: left;}
.rtl .vendor_store_details_title i{float: right; margin: 2px 0 0 4px}
.rtl .wcv-verified-vendor i{margin: 0 0 0 3px}
.wcv-shade{z-index:9000 !important}
.store-coupon-wrap{color: #de5959;background: #ffe9e9;border: 2px dashed #fbc4c4;padding: 20px 30px;margin-bottom: 25px; position: relative;}
.store-coupon-wrap:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
background: -moz-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -moz-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -moz-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -o-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -o-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -o-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -ms-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -ms-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -ms-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -webkit-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -webkit-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -webkit-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
}
.store-coupon-wrap:after {
content: '';
position: absolute;
top: .25em;
right: .25em;
bottom: .25em;
left: .25em;
border: 1px rgba(0,0,0,.3) dashed;
outline: 1px rgba(255,255,255,.5) dashed;
}
.store-coupon-wrap .coupon-title{font-size: 18px;margin-bottom: 10px;font-weight: bold;}
.store-coupon-wrap .coupon-body{font-size: 16px}
.dokan-dashboard .dokan-dashboard-content a.sale_schedule{text-decoration: underline;}
.dokan-settings-content .dokan-settings-area .dokan-banner{margin: 0 auto 30px auto; max-width: 100%}
.rh-container > .dokan-dashboard-wrap{padding-top:20px;}
.dokan-booking-wrapper .wc_bookings_calendar{border: 1px solid #eee}
#bookings_availability .table_grid table td, #bookings_persons .table_grid table td, #bookings_pricing .table_grid table td, #bookings_product_data .table_grid table td, #bookings_resources .table_grid table td, #bookings_settings .table_grid table td, .bookings_extension .table_grid table td{vertical-align: middle; position: static;}
#dokan-product-enquiry input[type="text"], #dokan-product-enquiry input[type="email"], #dokan-product-enquiry textarea {width: 100%;padding: 12px 10px;height: auto;font-size: 15px;margin-bottom: 15px;max-width: 500px;}
.wcv-grid .wcv-horizontal-gutters input[type="submit"]{margin-left: 30px}
.wcmp_side_menu .wcmp_main_menu > ul > li > a{background: #f5f5f5}
.wcmp_side_menu .wcmp_main_menu ul li{border-right: none;}
.wcmp_remove_div .wcmp_main_page{border: 1px solid #eee; box-shadow: none;}
.wocommerce #wcmp_vendor_reviews{margin-top: 100px !important}
.wcmvendor_store_ratings a{color: #ccc !important; font-size: 70% }
@media (max-width: 1023px){
.wcv_vendorslist:not(.rh-flex-eq-height) li{width: 45%; margin: 0 2.5% 18px 2.5% !important}
.wcv_vendorslist{ overflow: hidden; margin: 0 -2.5% 30px -2.5%;}
#wcvendor_profile_logo img{bottom: 0}
#wcvendor_search_shops input[type="text"]{width: 100%}
#wcvendor_search_shops{display: block;float: none;margin: 15px 0}
.wcvendor_profile_menu_items{margin: 0; float: none; border-left:none; border-top:1px solid #eee;transform: translate3d(0,0,0);overflow-x: auto;white-space: nowrap;overflow-y: hidden;}
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
.vendor_store_in_bp_last_products a:nth-child(4), .vendor_store_in_bp_last_products a:nth-child(3), .vendor_store_in_bp_last_products a:nth-child(2){display: none}
.vendor_store_in_bp_shopname{width: 30%}
.rh_vendors_listflat .vendor_store_in_bp_single {width: 22%;}
}
@media screen and (max-width: 767px) {
.wcv-product-media .all-66{padding:0;}
.wcv_dashboard_datepicker .all-50, .wcv_dashboard_datepicker .wcv-form .all-66, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .all-50, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-66{width: 100%}
.wcv_dashboard_datepicker .wcv-form .all-33, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 {width: 100%;padding-left: 0;margin-top: 15px;}
.wcv-navigation ul.menu.horizontal li{display: none;}
.wcv-navigation ul.menu.horizontal li.showtabmobile, .wcv-navigation ul.menu.horizontal li.active{float: none;display: block;}
.wcv-navigation ul.menu.horizontal li.active a:after {float: right;content: "\f078";font-family: FontAwesome;}
.wcv-tabs.top>.tabs-nav{border: none;}
.wcv-tabs.top>.tabs-nav li a{border: 1px solid #ccc; margin-bottom: 10px}
.wcv-tabs.top>.tabs-nav li.active a{border-bottom-color: #ccc; background-color: #f4f4f4}
.wcv_dashboard_datepicker .wcv-form, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form {display: block;}
.wcv_dashboard_datepicker .wcv-form .all-33 label, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 label {display: none;}
#wcvendor_profile_wrap{position: relative;bottom: auto;}
.wcvendor_profile_cell{display: block;margin: 0 auto 10px auto; text-align: center;}
#wcvendor_profile_logo img{position: static;}
.vendor_store_owner_contactlink, .vendor_store_details_contact{display: block; margin-top:8px }
.vendor_store_details_contact i{margin: 0 5px 0 0}
.vendor_store_in_bp{display: block;}
.vendor_store_in_bp_last_products{text-align: center; display: block; width: 100%; padding: 25px 5px; clear: both}
.vendor_store_in_bp_shopname{display: block; width: 100%; padding: 15px 15px 15px 60px; clear: both; border: 1px dashed #ccc; border-left:none; border-right: none}
.vendor_store_in_bp_image, .vendor_store_in_bp_single{float: left; display: inline-block}
.rh_vendors_listflat .vendor_store_in_bp_single{width: auto}
.vendor_store_in_bp_image{width: 50px}
.wcv_vendorslist{ overflow: hidden; margin: 0 0 30px 0;}
.rh_vendors_listflat .vendor_user_meta{padding:0;}
#buddypress .vendor-list-like{position: absolute; top:10px; right: 15px}
.wcvendor_store_stars .star-rating{margin: 0 auto; display: block; float: none;}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li{list-style:none}
.wcvendor_profile_menu_items li{float: none;}
.wcvendor_profile_menu_items a{padding: 8px 0; border: none;}
.wcvendor_profile_menu_items a.active{padding-left: 15px}
}
@media(max-width: 480px){
.wcv_vendorslist:not(.rh-flex-eq-height) li{width: 100%; margin: 0 0 18px 0 !important}
}
/* Dokan Styles */
#dokan-store-location{height: 300px}
#dokan-form-contact-seller .alert{margin-bottom: 15px;padding: 7px 5px}
#dokan-form-contact-seller .alert-success{background: lightgreen}
#dokan-form-contact-seller .alert-error{background: lightcoral}
.dokan-cover-image-mask{opacity: 1}
.dokan-seller-search{background-position: 10px 10px !important; border: 1px solid #ddd !important;padding: 10px 0 10px 36px !important; border-radius: 0 !important}
.dokan-sidebar-content-area{width: calc(100% - 370px);margin-top: -15px}
.dokan-sidebar-content-area .tab-pane{display:none}
.dokan-sidebar-content-area .tab-pane.active{display:block}
.social_icon .flickr {background-color: #ff80ae}
.social_icon .gplus { background-color: #eb4026 }
.social_icon .linkedin {background-color: #0077B5}
.social_icon .instagram {background-color: #3a82b8}
.social_icon .twitter {background-color: #66ccff}
.social_icon .youtube {background-color: #cd0000}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget a{color: #111}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td{text-align: center;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table p, .dokan-product-listing .dokan-product-listing-area .row-actions{text-align: left;}
.rtl .dokan-product-listing .dokan-product-listing-area table.product-listing-table p, .rtl .dokan-product-listing .dokan-product-listing-area .row-actions{text-align: right;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table mark{white-space: nowrap; font-size: 80%}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td del{display: block;}
.dokan-product-listing .dokan-product-listing-area .amount{font-size: 90%}
.dokan-dashboard .dokan-dashboard-wrap input[type="text"]{padding: 5px 10px}
.dokan-product-listing .dokan-product-listing-area .product-listing-top ul.dokan-listing-filter{margin: 0}
.dokan-dashboard .dokan-dashboard-content a{color: #444}
.dokan-dashboard .dokan-add-new-product{margin-bottom: 20px}
.dokan-dahsboard-product-listing-wrapper{clear: both;}
.search-results.dokan-theme-rehub .woocommerce .products{margin-top: 0}
.search-results.dokan-theme-rehub .col_wrap_three{width: 100%;margin: 0}
.dokan-form-group.xprofile-area h2{text-align: left;border-bottom: 1px solid #EDEDED;padding: 0 0 10px 0}
.dokan-form-group.xprofile-area label {padding-right: 15px}
.dokan-form-group.xprofile-area .description {font-size: small;margin: 5px 0 20px}
.dokan-form-control.error{border: 1px solid red;}
.wcvcontent .rh-content-wrap, .wcvcontent #comments{padding-top: 0; margin-top:0;}
@media (max-width: 767px){
.dokan-settings-content .dokan-w5{width: 65%}
.dokan-settings-content .dokan-settings-area .dokan-banner{margin: 0 0 30px 0}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu{margin: 0}
.dokan-dashboard .dokan-dash-sidebar{margin: 0 0 20px 0}
.dokan-dash-sidebar ul.dokan-dashboard-menu li{display: none !important;}
.dokan-dash-sidebar ul.dokan-dashboard-menu li.showtabmobile, .dokan-dash-sidebar ul.dokan-dashboard-menu li.active{float: none !important;display: block !important; width: 100% !important}
.dokan-dash-sidebar ul.dokan-dashboard-menu li.active a:after {float: right;content: "\f078";font-family: FontAwesome;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td{text-align: inherit;}
.dokan-product-listing .dokan-product-listing-area{padding: 0}
.dokan-sidebar-content-area{width: 100%; float: none; display: block;}
.dokan-table tbody tr .post-date .status{float: none !important;}
.dokan-form-inline.dokan-w6{width: 100%; margin: 0 0 10px 0}
table.product-listing-table{border: 1px solid #eee;}
table.product-listing-table,table.product-listing-table tbody,table.product-listing-table thead,table.product-listing-table tfoot,table.product-listing-table tr,table.product-listing-table td {display: block;}
table.product-listing-table thead,table.product-listing-table th { display: none; }
table.product-listing-table td:not([colspan]){position: relative;padding: 10px; padding-left: 50%;border-left: none;border-top: none;border-right: none;}
table.product-listing-table td:not([colspan]):before{position: absolute;top: 50%;left: 9px;width: 45%;padding-right: 10px;text-align: left;content: attr(data-title);-webkit-transform: translateY(-50%) translateZ(0);transform: translateY(-50%);}
table.product-listing-table td:not([colspan]):after{position: absolute;left: 47%;top: 0;display: block;height: 100%;border-left: 1px solid #eaeaea;content: "";}
}
/* WCMp Dashboard Style */
.wcmp_main_menu ul li, .msg_stat ul li{margin: inherit;list-style: none}
.wcmp_top_logo_div ul li {margin: inherit}
.wcmp_regi_main input.woocommerce-Button.button{padding: 0 12px}
.wcmp_form1 textarea, .wcmp_remove_div * {font-family: FontAwesome,sans-serif !important;}
.wcmp_main_page .msg_stat {left: auto !important;right: 38%;top: 50% !important;}
.wcmp_admin_massege .wcmp_cross {top: -4px !important;right: 0px !important;}
.simplePopupBackground{z-index: 9999999 !important;}
.simplePopup{z-index: 99999999 !important;}
#report_abuse_form input {margin-bottom:10px}
#report-abuse table{width:100%}
.goto_more_offer_tab.button {margin: 15px 0 20px !important;display: inline-block}
.woo_full_width_extended .goto_more_offer_tab.button{display: block;}
.wcmvendor-cover-mask{opacity: 1}
#wcmvendor_profile_logo{width: 140px}
#wcmvendor_profile_logo img{height: 140px;line-height: 140px;border: 3px solid #fff;background-color: rgba(255, 255, 255, 0.35);width: 140px;vertical-align: middle;}
.blocked_desc{font-style: oblique;font-size: 14px;color: red}
.by-vendor-name-link{color: #777; font-size: 12px; line-height: 18px; clear: both;}
#report_abuse{font-size: 14px; font-weight: bold; display: inline-block; margin: 0 0 8px 0}
.vendor_woo_list .singleproductmultivendor_tab, .vendor_woo_list #tab-singleproductmultivendor{display: none !important;}
span.wcmp_norating{white-space: nowrap; font-size: 12px}
.wcmp_sale_price, .woocommerce-Tabs-panel ins .woocommerce-Price-amount{color: inherit !important;}
.wcmp_regular_price, .woocommerce-Tabs-panel del .woocommerce-Price-amount{color: #999 !important}
.vendor-list-container.re_sort_list.simple_sort_list .offer_thumb{width: 120px; padding: 18px 0} | wp-content/themes/rehub/css/wcvendor.css | .wcvendors-pro-dashboard-wrapper *{}
.wcvendors-pro-dashboard-wrapper {font-size: 15px;line-height: 22px;}
.wcv-grid .wcv_dashboard_overview {background-color: #fff;border: 1px solid #e1e1e1;padding: 20px 2em 20px 0;margin: 10px 0 30px 0 !important;}
.wcv-grid h3{font-size: 19px !important}
.wcv-datepicker-calendar ul{margin: 0}
.wcv-datepicker-calendar ul li, .wcv-tabs ul.tabs-nav li, .wcv-grid ul li{list-style: none !important;}
.wcv-datepicker-calendar ul li a, .wcv-tabs .tabs-nav li a{text-decoration: none;}
table.wcv-table tr td {padding: 12px;border-bottom: 1px solid #e1e1e1;background-color: transparent;vertical-align: top;font-size: 14px;}
table.wcv-table {border: 1px solid #e1e1e1;background: none transparent;}
.wcv_dashboard_datepicker .wcv-form, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form {display: inline-block;display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;margin-bottom: 10px;}
.wcv_dashboard_datepicker .wcv-form .all-66, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-66 {-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;min-width: 1px;}
.wcv_dashboard_datepicker .wcv-form .all-33, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 {width: 18%;padding-left: 30px;}
.wcv-form label, .pv_paypal_container b, .pv_shop_name_container b, #pv_seller_info_container b, #pv_shop_description_container b {margin-bottom: 5px;font-weight: 700;clear: both;display: inline-block;margin-right: 17px;font-size: 15px;}
.wcv_dashboard_datepicker .wcv-form .all-33 input, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 input {margin-left: 0;margin-right: 0;}
.wcv-button:hover {color: #111!important;}
.vendor-dashboard .site-content h2.orders-title, .wcv-form .text-editor label {margin-bottom: 0;}
.shop-settings .select2-container .select2-choice, .wcvendors-dashboard-wrapper .select2-container .select2-choice, .wcvendors-pro-dashboard-wrapper .select2-container .select2-choice {border: 1px solid #e1e1e1;padding: 8px 10px;height: auto;border-radius: 0;font: 14px/20px Arial;}
.wcvendors-dashboard-wrapper .select2-choice, .wcvendors-dashboard-wrapper .select2-choices, .wcvendors-pro-dashboard-wrapper .select2-choices, .wcvendors-pro-dashboard-wrapper .select2-choice{box-shadow: none !important;}
.wcvendors-dashboard-wrapper .select2-arrow, .wcvendors-pro-dashboard-wrapper .select2-arrow{background: none transparent !important}
.wcv-form input[type=color], .wcv-form input[type=date], .wcv-form input[type=datetime-local], .wcv-form input[type=datetime], .wcv-form input[type=email], .wcv-form input[type=month], .wcv-form input[type=number], .wcv-form input[type=password], .wcv-form input[type=search], .wcv-form input[type=tel], .wcv-form input[type=text], .wcv-form input[type=time], .wcv-form input[type=url], .wcv-form input[type=week], .wcv-form select, .wcv-form textarea{border-color: #ccc}
label[for=_wcv-store_id], label[for=_wcv_store_address2]{display: none;}
.wcv-form .control-group input[type=checkbox]+label, .wcv_variable_attributes input[type=checkbox]+label {padding-left: 25px; padding-right: 5px;}
.wcv-form .control-group,.wcv-grid nav.wcv-navigation {margin-bottom: 28px;}
.wcv-form p.tip{line-height: 18px}
.vendor-pro-dashboard .wcv_dashboard_datepicker, .wcv_dashboard_datepicker .all-100 hr{margin-top: 20px;}
.wcv-tabs.top>.tabs-nav li a{border-radius: 0; line-height: 20px}
.wcv-grid input[type="submit"]{padding: 10px 20px; font-size: 16px}
.wcvendors-pro-dashboard-wrapper .wcv-navigation ul.menu {box-shadow: 0 2px 2px #E4E4E4;background-color: #f7f7f7;}
.wcv-navigation ul.menu li a{color: #111 !important}
.wcv-navigation ul.menu li.active a, .wcv-navigation ul.menu li:hover a{color: #fff !important}
.no_bg_wrap .wcvendors-pro-dashboard-wrapper .wcv-navigation ul.menu{background-color: #fff}
.wcv-navigation ul li{margin: 0 !important}
.wcvendors_sold_by_in_loop {font-size: 12px;margin-bottom: 10px;display: inline-block; line-height: 15px}
.only-vendor-title .wcvendors_sold_by_in_loop{font-size: 15px; line-height: 20px}
.only-vendor-title .wcvendors_sold_by_in_loop span{display: none;}
.wcvendors_sold_by_in_loop a{color: #333}
.form-row #rememberme{ margin-top: 10px}
.wcv_shop_description{ margin-bottom: 15px}
.wcv_vendorslist, .post ul.wcv_vendorslist{ overflow: hidden; margin: 0 -1% 30px -1%;}
.wcv_vendorslist a.wcv-grid-shop-name{ text-decoration: none; font-size: 16px; font-weight: bold; display: inline-block;}
.wcv_vendorslist:not(.rh-flex-eq-height){display: -webkit-flex; -webkit-flex-wrap:wrap;display: -ms-flexbox; -ms-flex-wrap:wrap;display: flex; flex-wrap: wrap;flex-direction: row;}
.wcv_vendorslist:not(.rh-flex-eq-height) li{ float: left; width: 23%; margin: 0 1% 28px 1% !important; }
.wcv_vendorslist li{position: relative;text-align: center;box-shadow: rgba(0,0,0,0.15) 0px 1px 2px;background: white;list-style: none !important; }
.wcv_vendorslist .cover_logo { display: block; height: 135px; overflow: hidden; background: #eee; background-position: center top; background-repeat: no-repeat;background-size: cover; }
.wcv_vendorslist .item-avatar { position: absolute; left: 50%; top: 86px; margin-left: -43px; border-radius: 2px;width: 80px; box-shadow: 0 0 1px 0 rgba(0,0,0,0.3), 0 1px 1px 0 rgba(0,0,0,0.1); background-color: #fff; padding: 2px;border: 3px solid #fff; }
.wcv_vendorslist .member-inner-list{ text-align: center;} .wcv_vendorslist .store-desc{ display: block; position: relative; overflow: hidden; height: 42px; margin: 10px auto 0 auto; padding: 0 20px; font-size: 12px; color: #999; line-height: 14px }
.wcv_vendorslist .last-vendor-products{ display: block; padding: 15px 15px 25px; text-align: center; overflow: hidden; white-space: nowrap; }
.wcv_vendorslist .last-vendor-products a { display: inline-block; vertical-align: top; width: 70px; height: 70px; position: relative; }
span.product_count_in_member { position: absolute; bottom: 0; right: 0; background: rgba(255, 255, 255, 0.78); padding: 0 6px; font-size: 13px; line-height: 18px; }
.wcv_vendorslist .vendor-list-like{position: absolute;top: 8px; right: 8px; }
.rh_vendors_listflat{margin: 0 0 30px 0}
.rh_vendors_listflat .vendor-list-like{position: absolute;top: 8px; left: -44px; }
.rtl .rh_vendors_listflat .vendor-list-like{left: auto;right: -44px}
.wcv_vendorslist .rh-user-favor-shop, .rh_vendors_listflat .rh-user-favor-shop, #buddypress .rh-user-favor-shop{background: #f5bad0; color: #fff; width: 34px; height: 34px; line-height: 36px; border-radius: 50%; font-size: 15px;display: block; text-align: center;}
.wcv_vendorslist .rh-user-favor-shop.alreadyinfavor, .wcv_vendorslist .rh-user-favor-shop:hover, .rh_vendors_listflat .rh-user-favor-shop.alreadyinfavor, .rh_vendors_listflat .rh-user-favor-shop:hover, #buddypress .rh-user-favor-shop.alreadyinfavor, #buddypress .rh-user-favor-shop:hover{background:#ed1d6a; }
.wcv_vendorslist .rh-user-favor-shop .count, .rh_vendors_listflat .rh-user-favor-shop .count, #buddypress .rh-user-favor-shop .count{opacity: 0; font-size: 0;position: absolute; transition: all 0.4s ease; width: 34px; height: 34px; line-height: 36px;background: #fff; color: #cc0000;border-radius: 50%; right: 0; left: 0; bottom: 0;top: 0;}
.rh_vendors_listflat .rh-user-favor-shop .count, #buddypress .rh-user-favor-shop .count{width: 20px; height: 20px; line-height: 20px; left: 22px; right: auto;}
.wcv_vendorslist .rh-user-favor-shop:hover .count{opacity: 1; font-size: 12px; right:100%;}
.rh_vendors_listflat .rh-user-favor-shop:hover .count, #buddypress .rh-user-favor-shop:hover .count{opacity: 1; font-size: 12px; top: -10px}
.wcv_vendorslist .member-details{overflow: hidden; padding: 50px 0 0 0}
#buddypress .rh-user-favor-shop{position: relative}
.table-vendor-sales-report .product a{ text-decoration: none; }
.table-vendor-sales-report.table-condensed th, .table-vendor-sales-report.table-condensed td{ padding: 10px 8px}
.table-vendor-sales-report th{background: #f5f5f5;font-size: 90%;}
.table-vendor-sales-report.table-condensed td{font-size: 85%;}
.table-vendor-sales-report{ border: 1px solid #ddd;}
.rh_wcv_date_picker{margin-bottom: 10px; overflow: hidden}
#pv_paypal, #pv_shop_name, .rh_wcv_date_picker .date-pick, .wcv-form .control-group .control>input, .wcv-form .control-group .control>select, .wcv-form .control-group .control>textarea, #xp-wcvendor-profile .field_type_textbox input{width: 100%; padding: 8px 10px; font: 14px/22px Arial; border-radius: 0}
.rh_wcv_date_picker label{display: block}
#xp-wcvendor-profile .field_type_selectbox select{border: 1px solid #ccc; width: 100%}
#xp-wcvendor-profile .xp-woo-description{font-size: 90%}
.rh_wcv_date_picker input[type="submit"]{font-size:17px; width: 100%; padding: 13px; display: block; margin-top: 23px; border-radius: 0}
#pv_paypal, #pv_shop_name{margin-top: 5px}
#xp-wcvendor-profile .editfield > label, #xp-wcvendor-profile .editfield span.label, #xp-wcvendor-profile legend{display: block; font-size: 15px; font-weight: bold; margin: 0 0 6px 0}
#xp-wcvendor-profile .clear-value{font-size: 85%}
#wp-pv_seller_info-editor-container, #wp-pv_shop_description-editor-container{ border: 1px solid #eee}
#pv_seller_info_container, #pv_shop_description_container{ margin-bottom: 15px}
.btn[name="vendor_application_submit"] { padding: 5px 10px; font: bold 14px Arial; border: 1px solid #444; cursor: pointer;}
.wcvendor_store_wrap_bg{margin: 0 0 30px 0}
#wcvendor_image_bg{background-color: #f4f4f4;background-position: center center;background-repeat: no-repeat;border: 0;display: block;margin: 0;padding: 30px 20px 20px 20px;position: relative;width: 100%;z-index: 1; min-height: 270px}
.wcvendor-cover-image-mask{width: 100%;height: 100%;position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(156,156,156,.1) 30%,rgba(11,11,11,.35) 80%,rgba(0,0,0,.48));background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(156,156,156,.1) 30%,rgba(11,11,11,.35) 80%,rgba(0,0,0,.48));filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#b0000000',GradientType=0);opacity: .65;}
#wcvendor_profile_wrap .rh-container{margin: 0 auto;display: table;}
#wcvendor_profile_wrap{position: absolute; bottom: 30px; left: 0; z-index: 2; width: 100%}
.wcvendor_profile_cell{display: table-cell; vertical-align: bottom;color: #fff;text-shadow: 0 0 1px #999; padding: 0;position: relative;}
#wcvendor_profile_act_desc{padding: 0 20px}
#wcvendor_profile_act_btns{width: 170px}
#wcvendor_profile_act_btns .wpsm-button{display: block; margin: 10px 0 0 0}
#wcvendor_profile_logo{width: 150px}
#wcvendor_profile_logo img{height: 150px;width: 150px;line-height: 150px; position: absolute;bottom: -55px}
.wcvendor_store_stars a, .wcvendor_store_stars{text-decoration: none; color: #fff; font-style: normal;}
.wcvendor_store_stars a i{color: #ffd700}
#wcvendor_profile_wrap h1{color: #fff; text-shadow: 0 1px 1px #666; margin: 0 0 10px 0; font-size: 24px;line-height: 26px}
.wcvendor_store_stars{margin: 0 0 10px 0; line-height: 15px}
.wcvendor_store_stars span.text{font-size: 12px; margin: 0 5px}
.wcvendor_store_desc{font: italic 14px/18px Arial;}
.wcvendor_store_desc a{color: #fff}
#wcvendor_profile_menu{background: #f9f9f9;overflow: hidden; border-bottom: 1px solid #ededed}
.wcvendor_profile_menu_items{border-left: 1px solid #eee; margin-left:170px;float: left; }
.wcvendor_profile_menu_items li{margin: 0; padding: 0; float: left;}
.wcvendor_profile_menu_items a, .wcvendor_profile_menu_items button{padding: 15px 25px; color: #111; border-right: 1px solid #eee; display: inline-block; line-height: 18px; font-size: 15px; margin: 0 }
.wcvendor_profile_menu_items li.active a{background-color: #fff}
#wcvendor_search_shops{float: right; margin: 7px 0}
.vendor_store_details{margin-bottom:20px;border: 1px solid #f1f1f1;background: #f9f9f9; display: table; width: 100%; }
.vendor_store_details_image, .vendor_store_details_single {display: table-cell;vertical-align: top;line-height: 0.8; padding: 10px}
.vendor_store_details_single{padding-left: 0}
.vendor_store_details_single .favorshop_like i{color: #cc0000}
.vendor_store_details_image{width: 50px}
.vendor_store_details_label {font-size: 80%;line-height: .8;color: #b7b7b7;}
.vendor_store_details_title h5{font-size: 16px; display: block; margin: 0}
.vendor_store_details_title{display: block; margin: 5px 0}
.vendor_store_details_contact {font-size: 0.82em;color: #b7b7b7;line-height: 15px;cursor: pointer;font-family: Arial,Verdana,Helvetica,sans-serif;}
.vendor_store_details_contact a{text-decoration: none;}
.vendor_store_details_contact i{margin: 0 0 0 9px}
.rh_vendors_listflat .vendor_store_in_bp{margin: 0 0 20px 0}
.vendor_store_in_bp{border: 1px solid #e5e5e5;background: #fff; display: table; width: 100%; }
body.bp-user .vendor_store_in_bp{border-bottom: none; border-top: none; position: relative }
body.bp-user .vendor-list-like{display: table-cell; padding: 15px 0 15px 15px; vertical-align: middle; width: 34px;}
.rh_vendors_listflat .distance-to-user-geo{font-size: 80%;line-height: 18px;}
.vendor_store_in_bp_image, .vendor_store_in_bp_single, .vendor_store_in_bp_last_products, .vendor_store_in_bp_shopname{display: table-cell; padding: 15px;vertical-align: middle;}
.vendor_store_in_bp_single{padding: 15px 0}
.vendor_store_in_bp_image{width: 70px}
.vendor_store_owner_label{color: #aaa; font-size: 80%}
.vendor_store_in_bp_title h5{margin: 0 0 12px 0; font-size: 18px}
.vendor_store_in_bp_last_products{text-align: right;}
body.rtl .vendor_store_in_bp_last_products{text-align: left;}
.vendor_store_in_bp_last_products a{display: inline-block; text-decoration: none !important; margin-left: 5px; border: 1px solid #eee; padding: 4px; background-color: #fff; text-align: center; width: 70px; line-height: 70px; font-size: 20px; font-weight: bold;}
.vendor_store_in_bp_count_pr > span{line-height: 70px; background-color: #f3f3f3; display: block;}
#wcv_mini_header{margin: 0 0 20px 0; color: #fff}
#wcv_mini_header #wcvendor_image_bg{min-height: 50px; height: 50px; padding: 10px; overflow: hidden;}
#wcv_mini_header .wcvendor-cover-image-mask{background: none rgba(0,0,0,0.5) !important}
#wcv_mini_header h5{font-size: 18px; line-height: 30px; margin: 0 8px}
#wcv_mini_header h5 a{color: #fff}
.wcv_mini_header_content{z-index: 2; position: relative;}
.category-vendormenu a{color: #111}
.category-vendormenu{margin: 0}
.category-vendormenu li{margin: 0 0 14px 0}
.category-vendormenu span{float: right;}
.vendor_storelist_name{padding: 0 10px;}
.vendor_storelist_name span{font-size: 10px; line-height: 10px}
.vendor_storelist_name a{display: block; font-size: 15px; text-decoration: none; font-weight: bold; line-height: 18px; }
.shop_avatar_v_store{width: 50px;position: relative;}
.shop_avatar_v_store img{border-radius: 50%; border: 1px solid #fff;}
.vendor_store_in_bp_shopname{ padding: 15px 14px 15px 26px; border: 1px dashed #ccc; border-top: none; border-bottom: none; background: #f5f5f5; width: 23% }
.rtl .vendor_store_in_bp_shopname{padding: 15px 26px 15px 14px;}
.rh_vendors_listflat .vendor_store_in_bp_single{ width: 17% }
.rh_vendors_listflat .vendor_user_meta h5{ font-size: 16px; margin: 0 0 10px 0; }
.rh_vendors_listflat .vendor_user_meta{ padding: 0 30px 0 0; }
.rh_wcv_dashboard_page h2, .wcvendors-pro-dashboard-wrapper h2{font-size: 20px}
.rh-mini-sidebar.user-profile-div .user-menu-tab{margin: 0}
.wcv-form.wcv-feedbackform .control-group input[type=radio]+label{display: block;padding-left: 1.45em; color: #fb9900}
.wcv-form.wcv-feedbackform .all-70{width: 100%}
.wcv-form.wcv-feedbackform .all-20{width: auto;}
.wcv-form.wcv-feedbackform textarea{margin-top: 12px}
.wcv-form.wcv-feedbackform input[type="submit"]{padding: 8px 16px; font-size: 16px}
#tab-vendor_ratings_tab a, .wcv_grid_rating a{text-decoration: none;}
.wcv_grid_rating{font-size: 90%;}
#tab-vendor_ratings_tab a i, #tab-vendor_ratings_tab i, .wcv-rating-item h4 i, .wcv_grid_rating i{color: #fb9900}
.wcv-rating-posted-by{font-size: 90%; color: #999; line-height: 18px}
.wcv-rating-posted-by p{margin: 0 0 18px 0}
.wcv-rating-item {border-bottom: 1px solid #ddd;margin-bottom: 25px;}
.wcv-rating-item:last-child{border: none;}
.wcv-grid .wcv-product-media{margin: 30px 0 0 0}
.wcv-product-media .wcv-featuredimg {min-height: 150px;border: 1px solid #e1e1e1;height: auto;margin: 0;background-color: #fff;position: relative;width: 100%;padding: 10px; text-align: center;}
.wcv-featuredimg br{display: none;}
a.wcv-media-uploader-featured-add, a.wcv-media-uploader-featured-delete{display: block;text-align: center;padding: 10px 0; text-decoration: none;}
.wcv-product-media a.hidden{display: none;}
.wcv-product-media .all-66{padding:0 35px;}
.wcv-product-upsells .control, .wcv-coupon-usage-restrictions > .control{margin: 0 0 25px 0}
.button.add_attribute{padding: 10px 14px;border: none;background: #111;color: #fff;line-height: 14px;font-size: 14px; box-shadow: none;}
.wcv_product_attributes .expand-close {font-size: 90%}
.wcv-gallery-image{box-shadow: 0 4px 5px #ccc}
.wcv-grid #files_download table thead th, .wcv-grid #files_download table thead td {padding: 0 10px;}
.downloadable_files table{width: 100%;border-collapse: collapse;}
.downloadable_files th, .downloadable_files td{border-bottom: 1px solid #E1E1E1;padding: 13px;text-align: left;}
table.wcv-table tr td, table.wcv-table tr th{border-bottom: 1px solid #E1E1E1;}
#branding.tabs-content h6{margin: 15px 0}
.wcvendors-table-rating h6 i{color: #fb9900}
#xprofile-in-wcstore{}
#xprofile-in-wcstore li:first-child{border-top: 1px solid #eee; margin: 24px 0 0 0}
#xprofile-in-wcstore li:last-child{margin: 0 0 24px 0}
#xprofile-in-wcstore li{clear: both; overflow: hidden; padding: 5px 0 5px 10px;line-height: 24px;border-bottom: 1px solid #eee;}
.rh_gmw_map_in_wcv_profile{color: #fff; text-decoration: underline; margin: 0 6px; cursor: pointer;}
#vendor-location{opacity: 0; height: 0}
#vendor-location.active{opacity: 100; height: 250px}
.wcv-verified-vendor{background: green;padding: 3px 6px;display: inline-block;font-size: 11px;text-transform: uppercase;border-radius: 2px;margin: 0 8px 4px 0}
.wcv-verified-vendor i{margin: 0 3px 0 0;color: #c1f3c1;}
.vendor_store_details_title i, .vendor_store_in_bp_title i{margin: 2px 4px 0 0;color: #54b60a;float: left;}
.rtl .vendor_store_details_title i{float: right; margin: 2px 0 0 4px}
.rtl .wcv-verified-vendor i{margin: 0 0 0 3px}
.wcv-shade{z-index:9000 !important}
.store-coupon-wrap{color: #de5959;background: #ffe9e9;border: 2px dashed #fbc4c4;padding: 20px 30px;margin-bottom: 25px; position: relative;}
.store-coupon-wrap:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
background: -moz-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -moz-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -moz-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -o-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -o-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -o-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -ms-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -ms-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -ms-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
background: -webkit-radial-gradient(.6em .6em, circle, white .55em, rgba(255,255,255,0) .6em) -.6em -.6em, -webkit-radial-gradient(1em 50%, circle, white .35em, rgba(255,255,255,0) .4em), -webkit-radial-gradient(1em 47%, circle, rgba(0,0,0,.4) .4em, transparent .43em);
}
.store-coupon-wrap:after {
content: '';
position: absolute;
top: .25em;
right: .25em;
bottom: .25em;
left: .25em;
border: 1px rgba(0,0,0,.3) dashed;
outline: 1px rgba(255,255,255,.5) dashed;
}
.store-coupon-wrap .coupon-title{font-size: 18px;margin-bottom: 10px;font-weight: bold;}
.store-coupon-wrap .coupon-body{font-size: 16px}
.dokan-dashboard .dokan-dashboard-content a.sale_schedule{text-decoration: underline;}
.dokan-settings-content .dokan-settings-area .dokan-banner{margin: 0 auto 30px auto; max-width: 100%}
.rh-container > .dokan-dashboard-wrap{padding-top:20px;}
.dokan-booking-wrapper .wc_bookings_calendar{border: 1px solid #eee}
#bookings_availability .table_grid table td, #bookings_persons .table_grid table td, #bookings_pricing .table_grid table td, #bookings_product_data .table_grid table td, #bookings_resources .table_grid table td, #bookings_settings .table_grid table td, .bookings_extension .table_grid table td{vertical-align: middle; position: static;}
#dokan-product-enquiry input[type="text"], #dokan-product-enquiry input[type="email"], #dokan-product-enquiry textarea {width: 100%;padding: 12px 10px;height: auto;font-size: 15px;margin-bottom: 15px;max-width: 500px;}
.wcv-grid .wcv-horizontal-gutters input[type="submit"]{margin-left: 30px}
.wcmp_side_menu .wcmp_main_menu > ul > li > a{background: #f5f5f5}
.wcmp_side_menu .wcmp_main_menu ul li{border-right: none;}
.wcmp_remove_div .wcmp_main_page{border: 1px solid #eee; box-shadow: none;}
.wocommerce #wcmp_vendor_reviews{margin-top: 100px !important}
.wcmvendor_store_ratings a{color: #ccc !important; font-size: 70% }
@media (max-width: 1023px){
.wcv_vendorslist:not(.rh-flex-eq-height) li{width: 45%; margin: 0 2.5% 18px 2.5% !important}
.wcv_vendorslist{ overflow: hidden; margin: 0 -2.5% 30px -2.5%;}
#wcvendor_profile_logo img{bottom: 0}
#wcvendor_search_shops input[type="text"]{width: 100%}
#wcvendor_search_shops{display: block;float: none;margin: 15px 0}
.wcvendor_profile_menu_items{margin: 0; float: none; border-left:none; border-top:1px solid #eee;transform: translate3d(0,0,0);overflow-x: auto;white-space: nowrap;overflow-y: hidden;}
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
.vendor_store_in_bp_last_products a:nth-child(4), .vendor_store_in_bp_last_products a:nth-child(3), .vendor_store_in_bp_last_products a:nth-child(2){display: none}
.vendor_store_in_bp_shopname{width: 30%}
.rh_vendors_listflat .vendor_store_in_bp_single {width: 22%;}
}
@media screen and (max-width: 767px) {
.wcv-product-media .all-66{padding:0;}
.wcv_dashboard_datepicker .all-50, .wcv_dashboard_datepicker .wcv-form .all-66, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .all-50, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-66{width: 100%}
.wcv_dashboard_datepicker .wcv-form .all-33, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 {width: 100%;padding-left: 0;margin-top: 15px;}
.wcv-navigation ul.menu.horizontal li{display: none;}
.wcv-navigation ul.menu.horizontal li.showtabmobile, .wcv-navigation ul.menu.horizontal li.active{float: none;display: block;}
.wcv-navigation ul.menu.horizontal li.active a:after {float: right;content: "\f078";font-family: FontAwesome;}
.wcv-tabs.top>.tabs-nav{border: none;}
.wcv-tabs.top>.tabs-nav li a{border: 1px solid #ccc; margin-bottom: 10px}
.wcv-tabs.top>.tabs-nav li.active a{border-bottom-color: #ccc; background-color: #f4f4f4}
.wcv_dashboard_datepicker .wcv-form, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form {display: block;}
.wcv_dashboard_datepicker .wcv-form .all-33 label, .wcv_dashboard_table_header.wcv-cols-group.horizontal-gutters .wcv-form>.all-33 label {display: none;}
#wcvendor_profile_wrap{position: relative;bottom: auto;}
.wcvendor_profile_cell{display: block;margin: 0 auto 10px auto; text-align: center;}
#wcvendor_profile_logo img{position: static;}
.vendor_store_owner_contactlink, .vendor_store_details_contact{display: block; margin-top:8px }
.vendor_store_details_contact i{margin: 0 5px 0 0}
.vendor_store_in_bp{display: block;}
.vendor_store_in_bp_last_products{text-align: center; display: block; width: 100%; padding: 25px 5px; clear: both}
.vendor_store_in_bp_shopname{display: block; width: 100%; padding: 15px 15px 15px 60px; clear: both; border: 1px dashed #ccc; border-left:none; border-right: none}
.vendor_store_in_bp_image, .vendor_store_in_bp_single{float: left; display: inline-block}
.rh_vendors_listflat .vendor_store_in_bp_single{width: auto}
.vendor_store_in_bp_image{width: 50px}
.wcv_vendorslist{ overflow: hidden; margin: 0 0 30px 0;}
.rh_vendors_listflat .vendor_user_meta{padding:0;}
#buddypress .vendor-list-like{position: absolute; top:10px; right: 15px}
.wcvendor_store_stars .star-rating{margin: 0 auto; display: block; float: none;}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li{list-style:none}
.wcvendor_profile_menu_items li{float: none;}
.wcvendor_profile_menu_items a{padding: 8px 0; border: none;}
.wcvendor_profile_menu_items a.active{padding-left: 15px}
}
@media(max-width: 480px){
.wcv_vendorslist:not(.rh-flex-eq-height) li{width: 100%; margin: 0 0 18px 0 !important}
}
/* Dokan Styles */
#dokan-store-location{height: 300px}
#dokan-form-contact-seller .alert{margin-bottom: 15px;padding: 7px 5px}
#dokan-form-contact-seller .alert-success{background: lightgreen}
#dokan-form-contact-seller .alert-error{background: lightcoral}
.dokan-cover-image-mask{opacity: 1}
.dokan-seller-search{background-position: 10px 10px !important; border: 1px solid #ddd !important;padding: 10px 0 10px 36px !important; border-radius: 0 !important}
.dokan-sidebar-content-area{width: calc(100% - 370px);margin-top: -15px}
.dokan-sidebar-content-area .tab-pane{display:none}
.dokan-sidebar-content-area .tab-pane.active{display:block}
.social_icon .flickr {background-color: #ff80ae}
.social_icon .gplus { background-color: #eb4026 }
.social_icon .linkedin {background-color: #0077B5}
.social_icon .instagram {background-color: #3a82b8}
.social_icon .twitter {background-color: #66ccff}
.social_icon .youtube {background-color: #cd0000}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget a{color: #111}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td{text-align: center;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table p, .dokan-product-listing .dokan-product-listing-area .row-actions{text-align: left;}
.rtl .dokan-product-listing .dokan-product-listing-area table.product-listing-table p, .rtl .dokan-product-listing .dokan-product-listing-area .row-actions{text-align: right;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table mark{white-space: nowrap; font-size: 80%}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td del{display: block;}
.dokan-product-listing .dokan-product-listing-area .amount{font-size: 90%}
.dokan-dashboard .dokan-dashboard-wrap input[type="text"]{padding: 5px 10px}
.dokan-product-listing .dokan-product-listing-area .product-listing-top ul.dokan-listing-filter{margin: 0}
.dokan-dashboard .dokan-dashboard-content a{color: #444}
.dokan-dashboard .dokan-add-new-product{margin-bottom: 20px}
.dokan-dahsboard-product-listing-wrapper{clear: both;}
.search-results.dokan-theme-rehub .woocommerce .products{margin-top: 0}
.search-results.dokan-theme-rehub .col_wrap_three{width: 100%;margin: 0}
.dokan-form-group.xprofile-area h2{text-align: left;border-bottom: 1px solid #EDEDED;padding: 0 0 10px 0}
.dokan-form-group.xprofile-area label {padding-right: 15px}
.dokan-form-group.xprofile-area .description {font-size: small;margin: 5px 0 20px}
.dokan-form-control.error{border: 1px solid red;}
.wcvcontent .rh-content-wrap, .wcvcontent #comments{padding-top: 0; margin-top:0;}
@media (max-width: 767px){
.dokan-settings-content .dokan-w5{width: 65%}
.dokan-settings-content .dokan-settings-area .dokan-banner{margin: 0 0 30px 0}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu{margin: 0}
.dokan-dashboard .dokan-dash-sidebar{margin: 0 0 20px 0}
.dokan-dash-sidebar ul.dokan-dashboard-menu li{display: none !important;}
.dokan-dash-sidebar ul.dokan-dashboard-menu li.showtabmobile, .dokan-dash-sidebar ul.dokan-dashboard-menu li.active{float: none !important;display: block !important; width: 100% !important}
.dokan-dash-sidebar ul.dokan-dashboard-menu li.active a:after {float: right;content: "\f078";font-family: FontAwesome;}
.dokan-product-listing .dokan-product-listing-area table.product-listing-table td{text-align: inherit;}
.dokan-product-listing .dokan-product-listing-area{padding: 0}
.dokan-sidebar-content-area{width: 100%; float: none; display: block;}
.dokan-table tbody tr .post-date .status{float: none !important;}
.dokan-form-inline.dokan-w6{width: 100%; margin: 0 0 10px 0}
table.product-listing-table{border: 1px solid #eee;}
table.product-listing-table,table.product-listing-table tbody,table.product-listing-table thead,table.product-listing-table tfoot,table.product-listing-table tr,table.product-listing-table td {display: block;}
table.product-listing-table thead,table.product-listing-table th { display: none; }
table.product-listing-table td:not([colspan]){position: relative;padding: 10px; padding-left: 50%;border-left: none;border-top: none;border-right: none;}
table.product-listing-table td:not([colspan]):before{position: absolute;top: 50%;left: 9px;width: 45%;padding-right: 10px;text-align: left;content: attr(data-title);-webkit-transform: translateY(-50%) translateZ(0);transform: translateY(-50%);}
table.product-listing-table td:not([colspan]):after{position: absolute;left: 47%;top: 0;display: block;height: 100%;border-left: 1px solid #eaeaea;content: "";}
}
/* WCMp Dashboard Style */
.wcmp_main_menu ul li, .msg_stat ul li{margin: inherit;list-style: none}
.wcmp_top_logo_div ul li {margin: inherit}
.wcmp_regi_main input.woocommerce-Button.button{padding: 0 12px}
.wcmp_form1 textarea, .wcmp_remove_div * {font-family: FontAwesome,sans-serif !important;}
.wcmp_main_page .msg_stat {left: auto !important;right: 38%;top: 50% !important;}
.wcmp_admin_massege .wcmp_cross {top: -4px !important;right: 0px !important;}
.simplePopupBackground{z-index: 9999999 !important;}
.simplePopup{z-index: 99999999 !important;}
#report_abuse_form input {margin-bottom:10px}
#report-abuse table{width:100%}
.goto_more_offer_tab.button {margin: 15px 0 20px !important;display: inline-block}
.woo_full_width_extended .goto_more_offer_tab.button{display: block;}
.wcmvendor-cover-mask{opacity: 1}
#wcmvendor_profile_logo{width: 140px}
#wcmvendor_profile_logo img{height: 140px;line-height: 140px;border: 3px solid #fff;background-color: rgba(255, 255, 255, 0.35);width: 140px;vertical-align: middle;}
.blocked_desc{font-style: oblique;font-size: 14px;color: red}
.by-vendor-name-link{color: #777; font-size: 12px; line-height: 18px; clear: both;}
#report_abuse{font-size: 14px; font-weight: bold; display: inline-block; margin: 0 0 8px 0}
.vendor_woo_list .singleproductmultivendor_tab, .vendor_woo_list #tab-singleproductmultivendor{display: none !important;}
span.wcmp_norating{white-space: nowrap; font-size: 12px}
.wcmp_sale_price, .woocommerce-Tabs-panel ins .woocommerce-Price-amount{color: inherit !important;}
.wcmp_regular_price, .woocommerce-Tabs-panel del .woocommerce-Price-amount{color: #999 !important}
.vendor-list-container.re_sort_list.simple_sort_list .offer_thumb{width: 120px; padding: 18px 0} | 0.294722 | 0.077797 |
.frame{
background-color:white;
width:100%;
position:relative;
z-index:1;
font-family: ;
padding-bottom:10px;
padding-top:10px;
font-family: 'Open Sans', sans-serif;
font-weight:300;
height:auto;
overflow:auto;
border-bottom:#EAEAEA 1px solid;
padding-bottom:40px;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame p{
text-align: center;
margin-top:30px;
color:#2b2b2b;
font-size:22px;
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame ul li{
text-align: center;
margin-top:20px;
color:#2b2b2b;
font-size:20px;
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame h1{
font-size:50px;
}
.frame h1, .frame h2{
text-align:center;
width:80%;
margin:auto;
}
.frame:not(.background):nth-child(3n+2) h1, .frame:not(.background):nth-child(3n+2) h2{
color: #3E76AE;
}
.frame:not(.background):nth-child(3n+2) .hr{
background-color:#3E76AE;
}
.frame:not(.background):nth-child(3n+2) .btn{
background-color:#3E76AE;
border-bottom:3px solid #2D567F;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+2) .btn:hover{
border-bottom:13px solid #2D567F;
}
.frame:not(.background):nth-child(3n+2) .btn:active{
background-color:#2D567F;
border-bottom:13px solid #2D567F;
}
.frame:not(.background):nth-child(3n+1) h1, .frame:not(.background):nth-child(3n+1) h2{
color:#C22C22;
}
.frame:not(.background):nth-child(3n+1) .hr{
background-color:#C22C22;
}
.frame:not(.background):nth-child(3n+1) .btn{
background-color:#C22C22;
border-bottom:3px solid #7F1C16;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+1) .btn:hover{
border-bottom:13px solid #7F1C16;
}
.frame:not(.background):nth-child(3n+1) .btn:active{
background-color:#7F1C16;
border-bottom:13px solid #7F1C16;
}
.frame:not(.background):nth-child(3n+0) h1, .frame:not(.background):nth-child(3n+0) h2{
color:#9EBF6D;
}
.frame:not(.background):nth-child(3n+0) .hr{
background-color:#9EBF6D;
}
.frame:not(.background):nth-child(3n+0) .btn{
background-color:#9EBF6D;
border-bottom:3px solid #7F9958;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+0) .btn:hover{
border-bottom:13px solid #7F9958;
}
.frame:not(.background):nth-child(3n+0) .btn:active{
background-color:#7F9958;
border-bottom:13px solid #7F9958;
}
.frame#header{
background-image: url(../images/design/icySpikes.jpg);
background-position: center center;
background-size: cover;
position:fixed !important;
z-index:0 !important;
top:0px;
left:0px;
width:100%;
}
.sideBar{
position:fixed;
height:100%;
}
.modernButton{
position:absolute;
z-index:1;
left:50%;
top:50%;
width:300px;
height:40px;
margin-left:-170px;
margin-top:-40px;
vertical-align: middle;
text-align:center;
font-family:'Slabo 27px', serif;
font-size:30px;
}
.main{
width:100%;
}
.container{
width:100%;
}
.mainBar{
width:100%;
}
#changelog .changeList{
margin-top:10px;
width:80%;
margin-left:10%;
height:auto;
text-align:center;
font-size:18px;
}
.btn{
width:300px;
height:100px;
cursor:pointer;
color:white;
margin: 50px auto;
text-align:center;
font-size:30px;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.btn:hover{
height:90px;
}
#about .wrapper{
width:80%;
margin-left:10%;
}
ul li{
list-style-type: none;
}
.fancyTitle{
font-weight: 300;
font-style:italic;
font-family: 'Slabo 27px', serif;
color:white;
text-align:center;
width:100%;
display:inline-block;
font-size:80px;
}
.fancyUndertitle{
font-weight: 300;
font-style:italic;
font-family: 'Slabo 27px', serif;
color:white;
text-align:center;
width:100%;
display:inline-block;
font-size:30px;
}
.headline-top{
background-color:white;
height:1px;
width:400px;
margin:auto;
margin-top:75px;
}
.headline-bottom{
background-color:white;
height:1px;
width:400px;
margin:auto;
margin-bottom:10px;
}
#background{
min-height: 500px;
background: transparent;
width:100%;
}
.contact-name{
width:50%;
border:none;
border-bottom:1px dashed #9EBF6D;
text-align:center;
font-family: 'Slabo 27px', serif;
height:100px;
font-size:50px;
margin-left:25%;
font-style: italic;
color:#2b2b2b;
}
.contact-text{
width:50%;
border:1px dashed #9EBF6D;
font-family: 'Open Sans', sans-serif;
height:200px;
font-size:20px;
margin-left:25%;
color:#2b2b2b;
}
.contact-name:focus{
outline:none;
}
#suggestion{
min-height:500px;
}
.contact-ok{
height:100px;
font-size:40px;
background-color:transparent;
padding-top:20px;
padding-bottom:20px;
width:200px;
text-align:center;
border:2px solid #9EBF6D;
color:#9EBF6D;
margin:auto;
font-family: 'Open Sans', sans-serif;
display:block;
margin-top:50px;
display:none;
transition:all 0.2s linear;
-webkit-transition:all 0.2s linear;
-o-transition:all 0.2s linear;
-ms-transition:all 0.2s linear;
-moz-transition:all 0.2s linear;
}
.contact-ok:hover{
color:white;
cursor:pointer;
background-color:#9EBF6D;
}
#name, #text, #email, #thanks{
display:none;
} | css/index.css | .frame{
background-color:white;
width:100%;
position:relative;
z-index:1;
font-family: ;
padding-bottom:10px;
padding-top:10px;
font-family: 'Open Sans', sans-serif;
font-weight:300;
height:auto;
overflow:auto;
border-bottom:#EAEAEA 1px solid;
padding-bottom:40px;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame p{
text-align: center;
margin-top:30px;
color:#2b2b2b;
font-size:22px;
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame ul li{
text-align: center;
margin-top:20px;
color:#2b2b2b;
font-size:20px;
font-family: 'Open Sans', sans-serif;
font-weight:100;
}
.frame h1{
font-size:50px;
}
.frame h1, .frame h2{
text-align:center;
width:80%;
margin:auto;
}
.frame:not(.background):nth-child(3n+2) h1, .frame:not(.background):nth-child(3n+2) h2{
color: #3E76AE;
}
.frame:not(.background):nth-child(3n+2) .hr{
background-color:#3E76AE;
}
.frame:not(.background):nth-child(3n+2) .btn{
background-color:#3E76AE;
border-bottom:3px solid #2D567F;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+2) .btn:hover{
border-bottom:13px solid #2D567F;
}
.frame:not(.background):nth-child(3n+2) .btn:active{
background-color:#2D567F;
border-bottom:13px solid #2D567F;
}
.frame:not(.background):nth-child(3n+1) h1, .frame:not(.background):nth-child(3n+1) h2{
color:#C22C22;
}
.frame:not(.background):nth-child(3n+1) .hr{
background-color:#C22C22;
}
.frame:not(.background):nth-child(3n+1) .btn{
background-color:#C22C22;
border-bottom:3px solid #7F1C16;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+1) .btn:hover{
border-bottom:13px solid #7F1C16;
}
.frame:not(.background):nth-child(3n+1) .btn:active{
background-color:#7F1C16;
border-bottom:13px solid #7F1C16;
}
.frame:not(.background):nth-child(3n+0) h1, .frame:not(.background):nth-child(3n+0) h2{
color:#9EBF6D;
}
.frame:not(.background):nth-child(3n+0) .hr{
background-color:#9EBF6D;
}
.frame:not(.background):nth-child(3n+0) .btn{
background-color:#9EBF6D;
border-bottom:3px solid #7F9958;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.frame:not(.background):nth-child(3n+0) .btn:hover{
border-bottom:13px solid #7F9958;
}
.frame:not(.background):nth-child(3n+0) .btn:active{
background-color:#7F9958;
border-bottom:13px solid #7F9958;
}
.frame#header{
background-image: url(../images/design/icySpikes.jpg);
background-position: center center;
background-size: cover;
position:fixed !important;
z-index:0 !important;
top:0px;
left:0px;
width:100%;
}
.sideBar{
position:fixed;
height:100%;
}
.modernButton{
position:absolute;
z-index:1;
left:50%;
top:50%;
width:300px;
height:40px;
margin-left:-170px;
margin-top:-40px;
vertical-align: middle;
text-align:center;
font-family:'Slabo 27px', serif;
font-size:30px;
}
.main{
width:100%;
}
.container{
width:100%;
}
.mainBar{
width:100%;
}
#changelog .changeList{
margin-top:10px;
width:80%;
margin-left:10%;
height:auto;
text-align:center;
font-size:18px;
}
.btn{
width:300px;
height:100px;
cursor:pointer;
color:white;
margin: 50px auto;
text-align:center;
font-size:30px;
transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
-moz-transition:all 0.5s;
-ms-transition:all 0.5s;
}
.btn:hover{
height:90px;
}
#about .wrapper{
width:80%;
margin-left:10%;
}
ul li{
list-style-type: none;
}
.fancyTitle{
font-weight: 300;
font-style:italic;
font-family: 'Slabo 27px', serif;
color:white;
text-align:center;
width:100%;
display:inline-block;
font-size:80px;
}
.fancyUndertitle{
font-weight: 300;
font-style:italic;
font-family: 'Slabo 27px', serif;
color:white;
text-align:center;
width:100%;
display:inline-block;
font-size:30px;
}
.headline-top{
background-color:white;
height:1px;
width:400px;
margin:auto;
margin-top:75px;
}
.headline-bottom{
background-color:white;
height:1px;
width:400px;
margin:auto;
margin-bottom:10px;
}
#background{
min-height: 500px;
background: transparent;
width:100%;
}
.contact-name{
width:50%;
border:none;
border-bottom:1px dashed #9EBF6D;
text-align:center;
font-family: 'Slabo 27px', serif;
height:100px;
font-size:50px;
margin-left:25%;
font-style: italic;
color:#2b2b2b;
}
.contact-text{
width:50%;
border:1px dashed #9EBF6D;
font-family: 'Open Sans', sans-serif;
height:200px;
font-size:20px;
margin-left:25%;
color:#2b2b2b;
}
.contact-name:focus{
outline:none;
}
#suggestion{
min-height:500px;
}
.contact-ok{
height:100px;
font-size:40px;
background-color:transparent;
padding-top:20px;
padding-bottom:20px;
width:200px;
text-align:center;
border:2px solid #9EBF6D;
color:#9EBF6D;
margin:auto;
font-family: 'Open Sans', sans-serif;
display:block;
margin-top:50px;
display:none;
transition:all 0.2s linear;
-webkit-transition:all 0.2s linear;
-o-transition:all 0.2s linear;
-ms-transition:all 0.2s linear;
-moz-transition:all 0.2s linear;
}
.contact-ok:hover{
color:white;
cursor:pointer;
background-color:#9EBF6D;
}
#name, #text, #email, #thanks{
display:none;
} | 0.204302 | 0.051845 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/*HEADER*/
.header {
background: rgb(129, 156, 187);
width: 100%;
height: 80px;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.header__inner {
max-width: 1280px;
margin: 0 auto;
float: left;
}
.najmovi {
float: left;
margin: 15px 0 20px 25px;
font-size: 45px;
letter-spacing: 3px;
font-family: Georgia, 'Times New Roman', Times, serif;
text-decoration: none;
color: black;
}
.btnOdjava{
float: right;
height: 30px;
margin: 20px 25px 0 0px;
text-decoration: none;
color: black;
font-weight: 600;
padding-top: 5px;
font-size: 18px;
cursor: pointer;
}
/*izbornik*/
.navigation {
width: 100%;
height: 50px;
margin-top: 80px;
text-align: center;
background: rgb(164, 167, 166);
}
.navigation-item{
display: inline-block;
text-decoration: none;
color: rgb(0, 0, 0);
line-height: 50px;
font-weight: 600;
font-size: 18px;
margin-right: 60px;
cursor: pointer;
}
/*REGISTRACIJA*/
#section__container-korisnici {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__korisnici {
max-width: 600px;
padding: 20px 80px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajKorisnika {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__korisnici-items {
margin: 15px 10px 15px 10px;
}
.korisniciButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.korisniciButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*<NAME>*/
#section__container-dodajNajam {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodajNajam {
max-width: 600px;
padding: 20px 80px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajNajam {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajNajam-items {
margin: 15px 10px 15px 10px;
}
.dodajNajamButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.dodajNajamButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*PRIJAVA*/
#section__container-prijava {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
;
}
.section__prijava {
max-width: 600px;
padding: 20px 80px 80px 80px;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
min-height: calc(100vh - 120px);
}
.form-prijava {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section_title__prijava {
text-align: center;
padding: 20px;
}
.section__prijava-item {
margin: 15px 10px 15px 10px;
}
.prijavaButton {
display: inline-block;
height: 35px;
width: 30%;
margin: 25px 5px 25px 5px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 40%;
transform: translateX(-25%);
}
.prijavaButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*PREGLED NAJMOVA*/
#section__container-pregledNjamova {
background: whitesmoke;
}
.section__pregledNajmova {
display: flex;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.najam {
width: 350px;
padding: 20px;
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.10s cubic-bezier(.25,.8,.25,1);
margin: 0 25px 25px 25px;
}
.box-najam{
width: 100%;
height: 220px;
margin: 0;
margin-bottom: 20px;
border-radius: 6px;
overflow: hidden;
}
.najam-slika{
width: 100%;
height: 100%;
object-fit:scale-down;
}
.najam-title {
text-align: center;
}
.button_informacije {
display: block;
text-decoration:double;
width: 100%;
line-height: 40px;
text-align: center;
border-radius: 4px;
background: darkslategrey;
color: #ffffff;
transition: all 0.3s ease-out;
}
.button:hover {
background-color: forestgreen;
}
/*DODAVANJE REŽIJA*/
#section__container-dodavanjeRezija {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodavanjeRezija {
max-width: 700px;
padding: 20px 10px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajRezije {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajRezije-items {
margin: 15px 10px 15px 10px;
}
.dodajRezije-container {
width: 70% !important;
}
.dodaj-rezije select {
width: 100% !important;
margin: 0 !important;
}
.dodaj-rezije {
display: flex;
flex-direction: row;
justify-content: space-around !important;
align-items: flex-end !important;
margin: 0 !important;
}
.rezije-table table > td {
padding-bottom: 0 !important;
}
.rezije-table {
border: 1px solid rgba(105, 105, 105, 0.7);
border-radius: 0 5px 0 5px;
padding: 1.125rem;
margin-bottom: 2rem;
}
#rezijeTable {
border: 1px solid black !important;
width: 100%;
text-align: center;
}
#rezijeTable td {
border: 1px solid black;
}
#rezijeTable th {
border: 1px solid black;
height: 30px;
}
.dodajUkupnoRezijeButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
#dodajRezijeButton {
margin: 0 !important;
width: auto;
padding-left: 10px;
padding-right: 10px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 30px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
.rezije_table input {
width: 100%;
margin: auto;
}
.rezije_table th {
height: 50px;
}
.horizontal-table {
width: 100%;
overflow-x: auto;
}
#rezijeTable td > button {
width: 100%;
margin: 0;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
color: rgb(146, 64, 64) !important;
}
#rezijeTable td > button[name="submitObrisi"] {
background-color: rgba(211, 68, 68, 0.6);
}
#rezijeTable td > button[name="submitUredi"] {
background-color: var(--purple);
}
/*DETALJI O NAJMU*/
#section__container-detaljiNajma {
background: whitesmoke;
padding-top: 40px;
}
.section__detaljiNajma {
max-width: 900px;
padding: 20px 40px 20px 40px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.section__detaljiNajma1{
display: flex;
flex-direction: row;
align-content:center;
}
.section__detaljiNajma2 {
padding: 5px 5px 5px 5px;
text-align: left;
margin: 5px 5px 5px 5px;
display: flex;
flex-direction: column;
justify-content: left;
max-width: fit-content;
}
.detaljiNajma-items{
margin: 10px 10px 10px 10px;
flex-direction: row;
}
.najam-slika {
width: 300px;
padding: 20px;
border-radius: 6px;
text-align: left;
}
.section__detaljiNajma-items{
margin: 10px 10px 10px 10px;
}
.rezijeButton{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
#table__rezije{
margin: 40px 10px 40px 10px;
}
table, th, td{
border: 1px solid black;
border-collapse: collapse;
}
th, td{
padding: 10px;
text-align: center;
width: 10%;
}
#table__najam{
margin: 40px 10px 40px 10px;
}
#unesiNoveRezije{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
#unesiNoviNajam{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
/*PREGLED REŽIJA*/
#section__container-detaljiRezija {
background: whitesmoke;
padding-top: 40px;
}
.section__detaljiRezija {
max-width: 900px;
padding: 20px 40px 20px 40px;
text-align: center;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.section__detaljiRezija-items{
margin: 20px 10px 10px 10px;
}
.placeno2Button{
margin: 0 !important;
width: auto;
padding-left: 10px;
padding-right: 10px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 30px;
border-radius: 5px;
align-items: center;
justify-content: center;
}
.izbrisiNajamButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.switch {
position: relative;
display: inline-block;
align-items: center;
width: 100px;
height: 30px;
padding: 3px;
margin: 0 10px 10px 0;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
border-radius: 18px;
box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
cursor: pointer;
}
.switch-input {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.switch-label {
position: relative;
display: block;
height: inherit;
font-size: 10px;
text-transform: uppercase;
background: #eceeef;
border-radius: inherit;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
position: absolute;
top: 50%;
margin-top: -.5em;
line-height: 1;
-webkit-transition: inherit;
-moz-transition: inherit;
-o-transition: inherit;
transition: inherit;
}
.switch-label:before {
content: attr(data-off);
right: 11px;
color: #aaaaaa;
text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
content: attr(data-on);
left: 11px;
color: #FFFFFF;
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
opacity: 0;
}
.switch-input:checked ~ .switch-label {
background: #0088cc;
border-color: #0088cc;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
opacity: 1;
}
.switch-handle {
position: absolute;
top: 4px;
left: 4px;
width: 28px;
height: 28px;
background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
border-radius: 100%;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
margin: -6px 0 0 -6px;
width: 12px;
height: 12px;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
border-radius: 6px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
left: 74px;
box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-label, .switch-handle {
transition: All 0.3s ease;
-webkit-transition: All 0.3s ease;
-moz-transition: All 0.3s ease;
-o-transition: All 0.3s ease;
}
/*<NAME>INE*/
.dodajNajamninu{
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
#section__container-dodavanjeNajamnine {
padding-top: 60px;
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodavanjeNajamnine {
max-width: 700px;
padding: 20px 10px 200px 10px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajNajamninu {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajNajamninu-items {
margin: 15px 10px 15px 10px;
}
.dodajNajamninu-container {
width: 70% !important;
} | css/izgled.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/*HEADER*/
.header {
background: rgb(129, 156, 187);
width: 100%;
height: 80px;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.header__inner {
max-width: 1280px;
margin: 0 auto;
float: left;
}
.najmovi {
float: left;
margin: 15px 0 20px 25px;
font-size: 45px;
letter-spacing: 3px;
font-family: Georgia, 'Times New Roman', Times, serif;
text-decoration: none;
color: black;
}
.btnOdjava{
float: right;
height: 30px;
margin: 20px 25px 0 0px;
text-decoration: none;
color: black;
font-weight: 600;
padding-top: 5px;
font-size: 18px;
cursor: pointer;
}
/*izbornik*/
.navigation {
width: 100%;
height: 50px;
margin-top: 80px;
text-align: center;
background: rgb(164, 167, 166);
}
.navigation-item{
display: inline-block;
text-decoration: none;
color: rgb(0, 0, 0);
line-height: 50px;
font-weight: 600;
font-size: 18px;
margin-right: 60px;
cursor: pointer;
}
/*REGISTRACIJA*/
#section__container-korisnici {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__korisnici {
max-width: 600px;
padding: 20px 80px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajKorisnika {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__korisnici-items {
margin: 15px 10px 15px 10px;
}
.korisniciButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.korisniciButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*<NAME>*/
#section__container-dodajNajam {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodajNajam {
max-width: 600px;
padding: 20px 80px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajNajam {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajNajam-items {
margin: 15px 10px 15px 10px;
}
.dodajNajamButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.dodajNajamButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*PRIJAVA*/
#section__container-prijava {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
;
}
.section__prijava {
max-width: 600px;
padding: 20px 80px 80px 80px;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
min-height: calc(100vh - 120px);
}
.form-prijava {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section_title__prijava {
text-align: center;
padding: 20px;
}
.section__prijava-item {
margin: 15px 10px 15px 10px;
}
.prijavaButton {
display: inline-block;
height: 35px;
width: 30%;
margin: 25px 5px 25px 5px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 40%;
transform: translateX(-25%);
}
.prijavaButton:hover {
box-shadow: 2px 2px 10px rebeccapurple;
}
/*PREGLED NAJMOVA*/
#section__container-pregledNjamova {
background: whitesmoke;
}
.section__pregledNajmova {
display: flex;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.najam {
width: 350px;
padding: 20px;
border-radius: 6px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.10s cubic-bezier(.25,.8,.25,1);
margin: 0 25px 25px 25px;
}
.box-najam{
width: 100%;
height: 220px;
margin: 0;
margin-bottom: 20px;
border-radius: 6px;
overflow: hidden;
}
.najam-slika{
width: 100%;
height: 100%;
object-fit:scale-down;
}
.najam-title {
text-align: center;
}
.button_informacije {
display: block;
text-decoration:double;
width: 100%;
line-height: 40px;
text-align: center;
border-radius: 4px;
background: darkslategrey;
color: #ffffff;
transition: all 0.3s ease-out;
}
.button:hover {
background-color: forestgreen;
}
/*DODAVANJE REŽIJA*/
#section__container-dodavanjeRezija {
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodavanjeRezija {
max-width: 700px;
padding: 20px 10px 80px 80px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajRezije {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajRezije-items {
margin: 15px 10px 15px 10px;
}
.dodajRezije-container {
width: 70% !important;
}
.dodaj-rezije select {
width: 100% !important;
margin: 0 !important;
}
.dodaj-rezije {
display: flex;
flex-direction: row;
justify-content: space-around !important;
align-items: flex-end !important;
margin: 0 !important;
}
.rezije-table table > td {
padding-bottom: 0 !important;
}
.rezije-table {
border: 1px solid rgba(105, 105, 105, 0.7);
border-radius: 0 5px 0 5px;
padding: 1.125rem;
margin-bottom: 2rem;
}
#rezijeTable {
border: 1px solid black !important;
width: 100%;
text-align: center;
}
#rezijeTable td {
border: 1px solid black;
}
#rezijeTable th {
border: 1px solid black;
height: 30px;
}
.dodajUkupnoRezijeButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
#dodajRezijeButton {
margin: 0 !important;
width: auto;
padding-left: 10px;
padding-right: 10px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 30px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
.rezije_table input {
width: 100%;
margin: auto;
}
.rezije_table th {
height: 50px;
}
.horizontal-table {
width: 100%;
overflow-x: auto;
}
#rezijeTable td > button {
width: 100%;
margin: 0;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
color: rgb(146, 64, 64) !important;
}
#rezijeTable td > button[name="submitObrisi"] {
background-color: rgba(211, 68, 68, 0.6);
}
#rezijeTable td > button[name="submitUredi"] {
background-color: var(--purple);
}
/*DETALJI O NAJMU*/
#section__container-detaljiNajma {
background: whitesmoke;
padding-top: 40px;
}
.section__detaljiNajma {
max-width: 900px;
padding: 20px 40px 20px 40px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.section__detaljiNajma1{
display: flex;
flex-direction: row;
align-content:center;
}
.section__detaljiNajma2 {
padding: 5px 5px 5px 5px;
text-align: left;
margin: 5px 5px 5px 5px;
display: flex;
flex-direction: column;
justify-content: left;
max-width: fit-content;
}
.detaljiNajma-items{
margin: 10px 10px 10px 10px;
flex-direction: row;
}
.najam-slika {
width: 300px;
padding: 20px;
border-radius: 6px;
text-align: left;
}
.section__detaljiNajma-items{
margin: 10px 10px 10px 10px;
}
.rezijeButton{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
#table__rezije{
margin: 40px 10px 40px 10px;
}
table, th, td{
border: 1px solid black;
border-collapse: collapse;
}
th, td{
padding: 10px;
text-align: center;
width: 10%;
}
#table__najam{
margin: 40px 10px 40px 10px;
}
#unesiNoveRezije{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
#unesiNoviNajam{
margin: 0 !important;
width: 200px;
padding-left: 5px;
padding-right: 5px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
}
/*PREGLED REŽIJA*/
#section__container-detaljiRezija {
background: whitesmoke;
padding-top: 40px;
}
.section__detaljiRezija {
max-width: 900px;
padding: 20px 40px 20px 40px;
text-align: center;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.section__detaljiRezija-items{
margin: 20px 10px 10px 10px;
}
.placeno2Button{
margin: 0 !important;
width: auto;
padding-left: 10px;
padding-right: 10px;
color: rgb(0, 0, 0);
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
height: 30px;
border-radius: 5px;
align-items: center;
justify-content: center;
}
.izbrisiNajamButton {
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
.switch {
position: relative;
display: inline-block;
align-items: center;
width: 100px;
height: 30px;
padding: 3px;
margin: 0 10px 10px 0;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
border-radius: 18px;
box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
cursor: pointer;
}
.switch-input {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.switch-label {
position: relative;
display: block;
height: inherit;
font-size: 10px;
text-transform: uppercase;
background: #eceeef;
border-radius: inherit;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
position: absolute;
top: 50%;
margin-top: -.5em;
line-height: 1;
-webkit-transition: inherit;
-moz-transition: inherit;
-o-transition: inherit;
transition: inherit;
}
.switch-label:before {
content: attr(data-off);
right: 11px;
color: #aaaaaa;
text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
content: attr(data-on);
left: 11px;
color: #FFFFFF;
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
opacity: 0;
}
.switch-input:checked ~ .switch-label {
background: #0088cc;
border-color: #0088cc;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
opacity: 1;
}
.switch-handle {
position: absolute;
top: 4px;
left: 4px;
width: 28px;
height: 28px;
background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
border-radius: 100%;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
margin: -6px 0 0 -6px;
width: 12px;
height: 12px;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
border-radius: 6px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
left: 74px;
box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-label, .switch-handle {
transition: All 0.3s ease;
-webkit-transition: All 0.3s ease;
-moz-transition: All 0.3s ease;
-o-transition: All 0.3s ease;
}
/*<NAME>INE*/
.dodajNajamninu{
display: inline-block;
height: 35px;
width: 70%;
margin: 25px 0px 25px 0px;
border-radius: 10px;
border: none;
background: rgb(197,246,254);
background: radial-gradient(circle, rgba(197,246,254,1) 0%, rgba(152,187,204,1) 100%);
position: relative;
left: 50%;
transform: translateX(-50%);
}
#section__container-dodavanjeNajamnine {
padding-top: 60px;
background: rgb(179, 179, 179);
background: radial-gradient(circle, rgba(179, 179, 179, 1) 0%, rgba(232, 234, 235, 1) 100%);
}
.section__dodavanjeNajamnine {
max-width: 700px;
padding: 20px 10px 200px 10px;
text-align: left;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-dodajNajamninu {
background-color: rgb(255, 255, 255);
border-radius: 30px;
padding: 15px;
}
.section__dodajNajamninu-items {
margin: 15px 10px 15px 10px;
}
.dodajNajamninu-container {
width: 70% !important;
} | 0.325199 | 0.082475 |
.tc-ctl-toc {
overflow: hidden;
z-index: 10004;
}
.tc-ctl-toc-tree {
padding-top: 0;
}
ul.tc-ctl-toc-branch {
list-style-type: none;
/* img/vline.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAKCAIAAAD6sKMdAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAHdElNRQfWCAYTExkGTLX0AAAAGnRFWHRTb2Z0d2FyZQBQYWludC5ORVQgdjMuNS4xMUfzQjcAAAAQSURBVBhXY5g5cyZhPHMmAGbPEe/qkYsqAAAAAElFTkSuQmCC) repeat-y;
margin: 0;
padding: 0;
margin-left: 10px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ie-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
ul.tc-ctl-toc-wl {
margin-top: 0.6em;
}
div.tc-ctl-toc-tree div.tc-ctl-toc-empty {
font-style: italic;
color: #ccc;
padding: 0.5em;
background-color: #fff;
list-style-type: none;
}
div.tc-ctl-toc-tree > div.tc-ctl-toc-empty.tc-hidden {
display: none;
}
li.tc-ctl-toc-node {
font-family: Arial, helvetica, sans-serif;
margin: 0;
padding: 0 20px;
padding-right: 0;
line-height: 1.2em;
/* img/node.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDwAACw8BkvkDpQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAEFJREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8LDyIDCGFsACo+WLyATSMMo2tCxkQZAFKED48aMPAG/GcAAFySJ1PSNmZLAAAAAElFTkSuQmCC) no-repeat;
}
li.tc-ctl-toc-node > span {
vertical-align: top;
line-height: 1.4em;
background-color: #fff;
}
li.tc-ctl-toc-node input[type=checkbox] {
float: right;
margin-right: 0.3em;
}
li.tc-ctl-toc-node input[type=checkbox].tc-ctl-toc-branch-cb {
float: none;
vertical-align: top;
margin: 0.2em;
}
li.tc-ctl-toc-leaf {
/* img/leaf.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDgAACw4BQL7hQQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAD1JREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8LDyIDyMXUcwE2jTCMrgkZ08cAkCJ8eNSAgTfgPwMAvVAhWS5/PgQAAAAASUVORK5CYII=) no-repeat;
}
li.tc-ctl-toc-node.tc-collapsed {
/* img/node-collapsed.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAEZJREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8Lk2wACKDxqWQAIYwNQMUHixewaYRhZA3omCgDQIrw4VEDBt6A/wwA2+4sGw5LZ3sAAAAASUVORK5CYII=) no-repeat;
}
li.tc-ctl-toc-node-notvisible {
color: #aaa;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-node:last-child {
/* img/lastnode.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEAAACxABrSO9dQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAFhJREFUOE/tzUEKgDAQBMEF//+Afe1IQLCRTryJgkJdkvRY3Z3aqmaSLP0DTwyM+5kXDdyx7zj3v9J1jD4yMB6taEQWkUZkEWlEFpFGZBFpRBaRRmTRKbUD3MALjd92TQsAAAAASUVORK5CYII=) no-repeat;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-node.tc-collapsed:last-child {
/* img/lastnode-collapsed.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAGVJREFUOE/tzcEJgDAQBdEF+y8g1a4EBIdlEg2KJwPvEHW+0VrL2CJGMnPqH/hioL8fWR7op9xfGrhi53juf6U6VO4eUQmeDVS3BvpHMxqRRaQRWUQakUWkEVlEGpFFpBFZdMrYAVwrEFV8yTH0AAAAAElFTkSuQmCC) no-repeat;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-leaf:last-child {
/* img/lastleaf.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDwAACw8BkvkDpQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAFdJREFUOE/tzTEKgDAQBdEF73+APe2XCOIUkxQWomDxqs38VHentqqZJEv/wBMD4z7zooG7jgH7lSw8fWRgPFrRiCwijcgi0ogsIo3IItKILCKNyKJLagc9jQWTqTPg4gAAAABJRU5ErkJggg==) no-repeat;
}
ul.tc-ctl-toc-branch.tc-collapsed {
height: 0;
opacity: 0;
visibility: hidden;
overflow: hidden;
}
.tc-ctl-toc-empty.tc-hidden {
display: none;
}
.tc-ctl-toc .tc-hidden {
display: none;
} | TC/css/control/TOC.css | .tc-ctl-toc {
overflow: hidden;
z-index: 10004;
}
.tc-ctl-toc-tree {
padding-top: 0;
}
ul.tc-ctl-toc-branch {
list-style-type: none;
/* img/vline.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAKCAIAAAD6sKMdAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAHdElNRQfWCAYTExkGTLX0AAAAGnRFWHRTb2Z0d2FyZQBQYWludC5ORVQgdjMuNS4xMUfzQjcAAAAQSURBVBhXY5g5cyZhPHMmAGbPEe/qkYsqAAAAAElFTkSuQmCC) repeat-y;
margin: 0;
padding: 0;
margin-left: 10px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ie-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
ul.tc-ctl-toc-wl {
margin-top: 0.6em;
}
div.tc-ctl-toc-tree div.tc-ctl-toc-empty {
font-style: italic;
color: #ccc;
padding: 0.5em;
background-color: #fff;
list-style-type: none;
}
div.tc-ctl-toc-tree > div.tc-ctl-toc-empty.tc-hidden {
display: none;
}
li.tc-ctl-toc-node {
font-family: Arial, helvetica, sans-serif;
margin: 0;
padding: 0 20px;
padding-right: 0;
line-height: 1.2em;
/* img/node.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDwAACw8BkvkDpQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAEFJREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8LDyIDCGFsACo+WLyATSMMo2tCxkQZAFKED48aMPAG/GcAAFySJ1PSNmZLAAAAAElFTkSuQmCC) no-repeat;
}
li.tc-ctl-toc-node > span {
vertical-align: top;
line-height: 1.4em;
background-color: #fff;
}
li.tc-ctl-toc-node input[type=checkbox] {
float: right;
margin-right: 0.3em;
}
li.tc-ctl-toc-node input[type=checkbox].tc-ctl-toc-branch-cb {
float: none;
vertical-align: top;
margin: 0.2em;
}
li.tc-ctl-toc-leaf {
/* img/leaf.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDgAACw4BQL7hQQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAD1JREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8LDyIDyMXUcwE2jTCMrgkZ08cAkCJ8eNSAgTfgPwMAvVAhWS5/PgQAAAAASUVORK5CYII=) no-repeat;
}
li.tc-ctl-toc-node.tc-collapsed {
/* img/node-collapsed.png */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAAAd0SU1FB9YIBhQIJYVaFGwAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAEZJREFUOE9jmDlz5n8GZgYGXPj///948agB9DAAJI8Lk2wACKDxqWQAIYwNQMUHixewaYRhZA3omCgDQIrw4VEDBt6A/wwA2+4sGw5LZ3sAAAAASUVORK5CYII=) no-repeat;
}
li.tc-ctl-toc-node-notvisible {
color: #aaa;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-node:last-child {
/* img/lastnode.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEAAACxABrSO9dQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAFhJREFUOE/tzUEKgDAQBMEF//+Afe1IQLCRTryJgkJdkvRY3Z3aqmaSLP0DTwyM+5kXDdyx7zj3v9J1jD4yMB6taEQWkUZkEWlEFpFGZBFpRBaRRmTRKbUD3MALjd92TQsAAAAASUVORK5CYII=) no-repeat;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-node.tc-collapsed:last-child {
/* img/lastnode-collapsed.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAGVJREFUOE/tzcEJgDAQBdEF+y8g1a4EBIdlEg2KJwPvEHW+0VrL2CJGMnPqH/hioL8fWR7op9xfGrhi53juf6U6VO4eUQmeDVS3BvpHMxqRRaQRWUQakUWkEVlEGpFFpBFZdMrYAVwrEFV8yTH0AAAAAElFTkSuQmCC) no-repeat;
}
ul.tc-ctl-toc-branch li.tc-ctl-toc-leaf:last-child {
/* img/lastleaf.png */
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALDwAACw8BkvkDpQAAAAd0SU1FB9YIBhQIIhs+gc8AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAFdJREFUOE/tzTEKgDAQBdEF73+APe2XCOIUkxQWomDxqs38VHentqqZJEv/wBMD4z7zooG7jgH7lSw8fWRgPFrRiCwijcgi0ogsIo3IItKILCKNyKJLagc9jQWTqTPg4gAAAABJRU5ErkJggg==) no-repeat;
}
ul.tc-ctl-toc-branch.tc-collapsed {
height: 0;
opacity: 0;
visibility: hidden;
overflow: hidden;
}
.tc-ctl-toc-empty.tc-hidden {
display: none;
}
.tc-ctl-toc .tc-hidden {
display: none;
} | 0.341692 | 0.148016 |
@charset "utf-8";
/*
* Title : Pinpoint Booking System WordPress Plugin
* Version : 2.1.1
* File : assets/gui/css/backend-forms.css
* File Version : 1.0.5
* Created / Last Modified : 26 August 2015
* Author : <NAME> Paper
* Copyright : © 2012 Dot on Paper
* Website : http://www.dotonpaper.net
* Description : Back end forms stylesheet.
*/
/*
* ***************************************************************************** Begin forms.
*/
/*
* *************************************************** Begin form fields header.
*/
.DOPBSP-admin .dopbsp-form-fields-header{
border: 1px solid #e6e6e6;
border-right: none;
border-left: none;
height: 38px;
margin: 0 -10px 20px -10px;
}
.DOPBSP-admin .dopbsp-form-fields-header h3{
border: none !important;
color: #464646;
float: left;
font-size: 15px;
font-weight: normal;
line-height: 38px;
margin: 0 0 0 10px;
padding: 0;
}
/*
* Field types.
*/
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper{
float: left;
margin: 0 0 0 10px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-button{
background-image: url('../images/sprite.png');
background-position: -41px -1px;
display: block;
height: 38px;
margin: 0 10px 0 0;
width: 38px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types{
background: #ffffff;
display: none;
list-style: none;
margin: 38px 0 0 0 !important;
overflow: hidden;
position: absolute;
z-index: 1000;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper:hover .dopbsp-form-fields-types{
display: block;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li{
border-bottom: 1px solid #ffffff;
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li:first-child{
border-top: 1px solid #ffffff;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a{
background: #464646;
display: block;
overflow: hidden;
width: 200px;
-webkit-transition: background-color 300ms linear;
-moz-transition: background-color 300ms linear;
-o-transition: background-color 300ms linear;
transition: background-color 300ms linear;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a:hover{
background: #ff6300;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon{
background-image: url('../images/sprite.png');
border-right: 1px solid #ffffff;
display: block;
float: left;
height: 32px;
margin: 3px 10px 0 0;
width: 38px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-checkbox{
background-position: -1px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-select{
background-position: -41px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-text{
background-position: -81px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-textarea{
background-position: -121px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-label{
color: #ffffff;
display: block;
font-weight: 300;
float: left;
height: 39px;
line-height: 39px;
}
/*
* ***************************************************** End form fields header.
*/
/*
* ********************************************************** Begin form fields.
*/
.DOPBSP-admin .dopbsp-form-fields{
list-style: none;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-placeholder{
border: 1px dashed #ff6300;
height: 58px;
margin: 0 0 5px 0;
padding: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper{
background-color: #ffffff;
padding: 20px 10px;
margin: 0 0 1px 0;
position: relative;
-webkit-transition: background-color 300ms linear;
-moz-transition: background-color 300ms linear;
-o-transition: background-color 300ms linear;
transition: background-color 300ms linear;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview{
float: left;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper label{
display: block;
float: none;
font-style: italic;
margin: 0;
width: auto;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper label .dopbsp-required{
color: #f1705c;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper .DOPSelect label{
font-style: normal;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper textarea{
width: 250px;
resize: none;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper input[type='checkbox']:focus,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper input[type='checkbox']:hover{
border: 1px solid #c9c9c9;
}
/*
* Buttons
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper{
bottom: 0px;
display: none;
position: absolute;
right: 10px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button{
background-color: #acacac;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle{
background-image: url('../images/sprite.png');
background-position: 0 -120px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-delete{
background-image: url('../images/sprite.png');
background-position: -80px -120px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite.png');
background-position: -120px -120px;
cursor: move;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button:hover{
background-color: #ff6300;
}
/*
* Settings
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper{
background: #fafafa;
display: none;
padding: 19px 10px 20px 10px;
}
/*
* Select options
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper{
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-button{
height: 30px;
width: 30px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-button .dopbsp-info{
margin: 32px 0 0 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons{
margin: 0 0 10px 0;
overflow: hidden;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons .dopbsp-button.dopbsp-add{
background-image: url('../images/sprite.png');
background-position: -165px -125px;
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options{
margin: 0 0 0 150px !important;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li .dopbsp-input-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-placeholder{
height: 28px;
width: 240px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li:last-child .dopbsp-input-wrapper{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-delete{
background-image: url('../images/sprite.png');
background-position: -85px -125px;
margin: 0 0 0 5px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite.png');
background-position: -125px -125px;
cursor: move;
margin: 0 0 0 5px;
}
/*
* Displayed form field.
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:hover .dopbsp-preview-wrapper{
background-color: #fafafa;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper .dopbsp-buttons-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:hover .dopbsp-preview-wrapper .dopbsp-buttons-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-settings-wrapper{
display: block;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle{
background-position: -40px -120px;
}
/*
* ************************************************************ End form fields.
*/
/*
* ***************************************************************************** Begin retina.
*/
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi){
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-button,
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-delete,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-handle,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons .dopbsp-button.dopbsp-add,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-delete,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite-retina.png') !important;
background-size: 600px 500px !important;
}
}
/*
* ***************************************************************************** End retina.
*/
/*
* ***************************************************************************** End forms.
*/ | booking-system/assets/gui/css/backend-forms.css | @charset "utf-8";
/*
* Title : Pinpoint Booking System WordPress Plugin
* Version : 2.1.1
* File : assets/gui/css/backend-forms.css
* File Version : 1.0.5
* Created / Last Modified : 26 August 2015
* Author : <NAME> Paper
* Copyright : © 2012 Dot on Paper
* Website : http://www.dotonpaper.net
* Description : Back end forms stylesheet.
*/
/*
* ***************************************************************************** Begin forms.
*/
/*
* *************************************************** Begin form fields header.
*/
.DOPBSP-admin .dopbsp-form-fields-header{
border: 1px solid #e6e6e6;
border-right: none;
border-left: none;
height: 38px;
margin: 0 -10px 20px -10px;
}
.DOPBSP-admin .dopbsp-form-fields-header h3{
border: none !important;
color: #464646;
float: left;
font-size: 15px;
font-weight: normal;
line-height: 38px;
margin: 0 0 0 10px;
padding: 0;
}
/*
* Field types.
*/
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper{
float: left;
margin: 0 0 0 10px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-button{
background-image: url('../images/sprite.png');
background-position: -41px -1px;
display: block;
height: 38px;
margin: 0 10px 0 0;
width: 38px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types{
background: #ffffff;
display: none;
list-style: none;
margin: 38px 0 0 0 !important;
overflow: hidden;
position: absolute;
z-index: 1000;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper:hover .dopbsp-form-fields-types{
display: block;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li{
border-bottom: 1px solid #ffffff;
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li:first-child{
border-top: 1px solid #ffffff;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a{
background: #464646;
display: block;
overflow: hidden;
width: 200px;
-webkit-transition: background-color 300ms linear;
-moz-transition: background-color 300ms linear;
-o-transition: background-color 300ms linear;
transition: background-color 300ms linear;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a:hover{
background: #ff6300;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon{
background-image: url('../images/sprite.png');
border-right: 1px solid #ffffff;
display: block;
float: left;
height: 32px;
margin: 3px 10px 0 0;
width: 38px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-checkbox{
background-position: -1px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-select{
background-position: -41px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-text{
background-position: -81px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon.dopbsp-textarea{
background-position: -121px -164px;
}
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-label{
color: #ffffff;
display: block;
font-weight: 300;
float: left;
height: 39px;
line-height: 39px;
}
/*
* ***************************************************** End form fields header.
*/
/*
* ********************************************************** Begin form fields.
*/
.DOPBSP-admin .dopbsp-form-fields{
list-style: none;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-placeholder{
border: 1px dashed #ff6300;
height: 58px;
margin: 0 0 5px 0;
padding: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper{
background-color: #ffffff;
padding: 20px 10px;
margin: 0 0 1px 0;
position: relative;
-webkit-transition: background-color 300ms linear;
-moz-transition: background-color 300ms linear;
-o-transition: background-color 300ms linear;
transition: background-color 300ms linear;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview{
float: left;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper label{
display: block;
float: none;
font-style: italic;
margin: 0;
width: auto;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper label .dopbsp-required{
color: #f1705c;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper .DOPSelect label{
font-style: normal;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper textarea{
width: 250px;
resize: none;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper input[type='checkbox']:focus,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-preview.dopbsp-input-wrapper input[type='checkbox']:hover{
border: 1px solid #c9c9c9;
}
/*
* Buttons
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper{
bottom: 0px;
display: none;
position: absolute;
right: 10px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button{
background-color: #acacac;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle{
background-image: url('../images/sprite.png');
background-position: 0 -120px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-delete{
background-image: url('../images/sprite.png');
background-position: -80px -120px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite.png');
background-position: -120px -120px;
cursor: move;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button:hover{
background-color: #ff6300;
}
/*
* Settings
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper{
background: #fafafa;
display: none;
padding: 19px 10px 20px 10px;
}
/*
* Select options
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper{
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-button{
height: 30px;
width: 30px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-button .dopbsp-info{
margin: 32px 0 0 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons{
margin: 0 0 10px 0;
overflow: hidden;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons .dopbsp-button.dopbsp-add{
background-image: url('../images/sprite.png');
background-position: -165px -125px;
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options{
margin: 0 0 0 150px !important;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li:last-child{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li .dopbsp-input-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-placeholder{
height: 28px;
width: 240px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper{
margin: 0 0 5px 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options li:last-child .dopbsp-input-wrapper{
margin: 0;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-delete{
background-image: url('../images/sprite.png');
background-position: -85px -125px;
margin: 0 0 0 5px;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite.png');
background-position: -125px -125px;
cursor: move;
margin: 0 0 0 5px;
}
/*
* Displayed form field.
*/
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:hover .dopbsp-preview-wrapper{
background-color: #fafafa;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper .dopbsp-buttons-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper:hover .dopbsp-preview-wrapper .dopbsp-buttons-wrapper,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-settings-wrapper{
display: block;
}
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper.dopbsp-displayed .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle{
background-position: -40px -120px;
}
/*
* ************************************************************ End form fields.
*/
/*
* ***************************************************************************** Begin retina.
*/
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi){
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-button,
.DOPBSP-admin .dopbsp-form-fields-header .dopbsp-form-fields-types-wrapper .dopbsp-form-fields-types li a .dopbsp-icon,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-toggle,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-delete,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-preview-wrapper .dopbsp-buttons-wrapper .dopbsp-button.dopbsp-handle,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-buttons .dopbsp-button.dopbsp-add,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-delete,
.DOPBSP-admin .dopbsp-form-fields .dopbsp-field-wrapper .dopbsp-settings-wrapper .dopbsp-select-options-wrapper .dopbsp-select-options .dopbsp-input-wrapper .dopbsp-button.dopbsp-handle{
background-image: url('../images/sprite-retina.png') !important;
background-size: 600px 500px !important;
}
}
/*
* ***************************************************************************** End retina.
*/
/*
* ***************************************************************************** End forms.
*/ | 0.444324 | 0.139602 |
margin: 350px auto;
width: 60%;
position:relative;
background: #F9AF86;
padding: 10px;
min-height: 50vw;
}
#container h1 {
font-family: "libre Baskerville";
font-size: 2vw;
margin: 20px auto;
width: 100%;
padding: 5px;
border-bottom: 2px solid black;
}
.content-box {
background-color: lightgray;
width: 90%;
height: 8vw;
display:inline-block;
margin: 0 10px 3vw 10px;
padding: ;
position: relative;
}
.content-preview {
margin:0 auto;
width: 100%;
height: 100%;
border: none;
float:left;
}
.content-stat {
font-family: "Roboto";
font-size: 1.2vw;
padding:10px;
padding-top: 0.5vw;
text-overflow:ellipsis;
height: 30%;
width:45%;
display: inline-block;
float:right;
padding-top: 5%;
}
.content-title {
}
.content-poster{
width: 100%;
display: inline-block;
height:1.3vw;
margin-top: 0.45vw;
margin-left: 4px;
}
.content-poster img{
height: 100%;
width: 1.4vw;
border-radius: 4px;
float: left;
margin-right:5px;
}
.content-poster p {
font-size: 0.7 vw;
font-family: "lato";
padding-left: 4px;
width: 70%
}
.favourite-btn {
display: flex;
justify-content:center;
align-items:center;
cursor: pointer;
transition: 0.3s ease;
width: 2vw;
height: 2vw;
background-color: #fff;
position: absolute;
margin-top:-2vw;
margin-left: 13vw;
border-radius: 50%;
color: #DBC7C7;
}
.favourite-btn:hover{
transform: scale(1.1,1.1);
background-color: #DB7878;
color: white !important;
}
.iframe-container {
float:left;
width: 50%;
height: 100%;
}
.overlay-preview{
z-index:1;
top: 0;
left: 0;
width: 50%;
height: 100%;
padding: 15px 15px 15px 15px;
opacity: 0;
transition: opacity 0.15s ease;
background-color:#C2CDD1;
position:absolute;
}
.overlay-preview:hover{
opacity:0.7;
}
#profile-pic{
z-index:1;
background: grey;
width: 10vw;
height: 10vw;
position:absolute;
margin: -4% 0vw 0vw 7vw;
box-shadow: 0px 5px 5px black;
}
#profile-pic img{
width: 100%;
height:100%;
}
#user-details {
background: #CDEDFD;
width: 25%;
height: 20vw;
position: absolute;
margin: 15% 0 0 7.7%;
padding-top: 10px;
box-shadow: 0px 5px 5px black;
border-radius: 5px;
}
#happy-score{
position: absolute;
background: #CDEDFD;
width: 25%;
height: 10vw;
margin-left: 7.7%;
margin-top: 50%;
box-shadow: 0px 5px 5px black;
border-radius: 5px;
}
#video-embedding {
position: absolute;
background: lightblue;
width: 50%;
height: 3vw;
margin-left: 45%;
margin-top: 10%;
padding:5px;
}
#post-container{
position: absolute;
background: black;
width: 55%;
height: 3vw;
margin-left: 43.5%;
margin-top: 20%;
display:block;
padding: 10px;
}
#user-details p{
font-family: "Lato";
font-size: 1.5vw;
text-align:center;
padding: 3px 3px 4px 3px;
margin-top: 1vw;
}
#happy-score p{
font-family: "Lato";
font-size: 1.5vw;
text-align:center;
padding: 3px 3px 4px 3px;
margin-top: 2vw;
}
#video-embedding input {
width: 100%;
height: 100%;
} | css/Profile.css | margin: 350px auto;
width: 60%;
position:relative;
background: #F9AF86;
padding: 10px;
min-height: 50vw;
}
#container h1 {
font-family: "libre Baskerville";
font-size: 2vw;
margin: 20px auto;
width: 100%;
padding: 5px;
border-bottom: 2px solid black;
}
.content-box {
background-color: lightgray;
width: 90%;
height: 8vw;
display:inline-block;
margin: 0 10px 3vw 10px;
padding: ;
position: relative;
}
.content-preview {
margin:0 auto;
width: 100%;
height: 100%;
border: none;
float:left;
}
.content-stat {
font-family: "Roboto";
font-size: 1.2vw;
padding:10px;
padding-top: 0.5vw;
text-overflow:ellipsis;
height: 30%;
width:45%;
display: inline-block;
float:right;
padding-top: 5%;
}
.content-title {
}
.content-poster{
width: 100%;
display: inline-block;
height:1.3vw;
margin-top: 0.45vw;
margin-left: 4px;
}
.content-poster img{
height: 100%;
width: 1.4vw;
border-radius: 4px;
float: left;
margin-right:5px;
}
.content-poster p {
font-size: 0.7 vw;
font-family: "lato";
padding-left: 4px;
width: 70%
}
.favourite-btn {
display: flex;
justify-content:center;
align-items:center;
cursor: pointer;
transition: 0.3s ease;
width: 2vw;
height: 2vw;
background-color: #fff;
position: absolute;
margin-top:-2vw;
margin-left: 13vw;
border-radius: 50%;
color: #DBC7C7;
}
.favourite-btn:hover{
transform: scale(1.1,1.1);
background-color: #DB7878;
color: white !important;
}
.iframe-container {
float:left;
width: 50%;
height: 100%;
}
.overlay-preview{
z-index:1;
top: 0;
left: 0;
width: 50%;
height: 100%;
padding: 15px 15px 15px 15px;
opacity: 0;
transition: opacity 0.15s ease;
background-color:#C2CDD1;
position:absolute;
}
.overlay-preview:hover{
opacity:0.7;
}
#profile-pic{
z-index:1;
background: grey;
width: 10vw;
height: 10vw;
position:absolute;
margin: -4% 0vw 0vw 7vw;
box-shadow: 0px 5px 5px black;
}
#profile-pic img{
width: 100%;
height:100%;
}
#user-details {
background: #CDEDFD;
width: 25%;
height: 20vw;
position: absolute;
margin: 15% 0 0 7.7%;
padding-top: 10px;
box-shadow: 0px 5px 5px black;
border-radius: 5px;
}
#happy-score{
position: absolute;
background: #CDEDFD;
width: 25%;
height: 10vw;
margin-left: 7.7%;
margin-top: 50%;
box-shadow: 0px 5px 5px black;
border-radius: 5px;
}
#video-embedding {
position: absolute;
background: lightblue;
width: 50%;
height: 3vw;
margin-left: 45%;
margin-top: 10%;
padding:5px;
}
#post-container{
position: absolute;
background: black;
width: 55%;
height: 3vw;
margin-left: 43.5%;
margin-top: 20%;
display:block;
padding: 10px;
}
#user-details p{
font-family: "Lato";
font-size: 1.5vw;
text-align:center;
padding: 3px 3px 4px 3px;
margin-top: 1vw;
}
#happy-score p{
font-family: "Lato";
font-size: 1.5vw;
text-align:center;
padding: 3px 3px 4px 3px;
margin-top: 2vw;
}
#video-embedding input {
width: 100%;
height: 100%;
} | 0.394901 | 0.070656 |
header{
width: 100%;
height: 800px;
background-image: url("../img/images/theme-preview/presentation-bg.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
header:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002642, #002642);
opacity: 0.9;
}
.home-hero {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.home-hero h1{
font-size: 1.5rem;
color: #FFF;
margin: 1.5rem 0rem 1rem;
font-weight: 500;
}
.home-hero p{
font-size: 17px;
color: #FFF;
}
.template-logo{
width: 200px;
margin: auto;
}
.template-logo img{
width: 100%;
}
.paint-brush{
width: 220px;
margin: 1rem auto;
}
.paint-brush img{
width: 100%;
}
/*====================================================
2. THEME PREVIEW.
====================================================*/
.col-prev{
padding: 0px 20px;
margin-bottom: 1.8rem;
}
.theme-preview{
position: relative;
cursor: pointer;
}
.theme-preview img{
width: 100%;
box-shadow: 0 0 10px rgba(204,204,204,0.6);
-moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
-webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
-o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: .5s ease;
background-color: #002642;
}
.preview-box:hover .overlay {
opacity: 0.95;
}
.btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
font-family: 'Poppins', sans-serif;
font-weight: 500;
border: none;
border-radius: 0px;
letter-spacing: 1px;
text-transform: uppercase;
}
.btn-demo {
color: #FFF;
transition: 0.9s;
padding: 0.3rem 1.125rem;
font-size: 0.60rem;
background: #FFA600;
border: solid 2px #FFA600;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
z-index: 3;
}
.btn-demo:hover {
color: #FFF;
background: #FFA600;
}
.btn-demo:focus, .btn-demo.focus {
box-shadow: none;
}
.btn-demo.disabled, .btn-demo:disabled {
color: #fff;
background-color: #e9b416;
border-color: #e9b416;
}
.btn-demo:not(:disabled):not(.disabled):active, .btn-demo:not(:disabled):not(.disabled).active,
.show > .btn-demo.dropdown-toggle {
color: #fff;
background-color: none;
border-color: none;
}
.btn-demo:not(:disabled):not(.disabled):active:focus, .btn-demo:not(:disabled):not(.disabled).active:focus,
.show > .btn-demo.dropdown-toggle:focus {
box-shadow: none;
}
.btn-purchase {
color: #FFF;
transition: 0.9s;
padding: 0.3rem 1.125rem;
font-size: 0.60rem;
background: #FFA600;
border: solid 2px #FFA600;
margin-top: 1rem;
}
.btn-purchase:hover {
color: #FFF;
background: #FFA600;
}
.btn-purchase:focus, .btn-purchase.focus {
box-shadow: none;
}
.btn-purchase.disabled, .btn-purchase:disabled {
color: #fff;
background-color: #e9b416;
border-color: #e9b416;
}
.btn-purchase:not(:disabled):not(.disabled):active, .btn-purchase:not(:disabled):not(.disabled).active,
.show > .btn-purchase.dropdown-toggle {
color: #fff;
background-color: none;
border-color: none;
}
.btn-purchase:not(:disabled):not(.disabled):active:focus, .btn-purchase:not(:disabled):not(.disabled).active:focus,
.show > .btn-purchase.dropdown-toggle:focus {
box-shadow: none;
}
.tp-heading{
text-align: center;
width: 40%;
margin: auto auto 2rem;
}
.tp-heading h5{
color: #b3b3b3;
}
/*====================================================
3. THEME PAGES.
====================================================*/
.carousel-container{
background-color: #F7FAFA;
margin: 2rem 0rem;
padding: 3rem 2rem;
}
.slide .preview-box{
margin: 0px 20px;
}
.t-pages-heading{
text-align: center;
width: 30%;
margin: auto auto 2rem;
}
.t-pages-heading h5{
color: #b3b3b3;
}
/*====================================================
4. THEME FEATURES.
====================================================*/
.features{
padding: 25px 20px;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
margin-bottom: 2rem;
}
figure.feature-icon{
width: 60px;
height: 60px;
float: left;
margin-right: 20px;
margin-bottom: 30px;
}
figure.feature-icon img{
width: 100%;
}
.feature-caption h3{
font-size: 18px;
margin-bottom: 8px;
}
.feature-caption p{
font-size: 13px;
line-height: 1.5;
margin-bottom: 0px;
}
.tf-heading{
text-align: center;
width: 50%;
margin: auto auto 2rem;
}
.tf-heading h5{
color: #b3b3b3;
}
/*====================================================
5. FOOTER.
====================================================*/
footer{
background-image: url("../img/images/theme-preview/footer-bg.jpg");
height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
footer:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002642, #002642);
opacity: 0.9;
}
.footer-info{
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.footer-info h5{
color: #FFF;
}
.footer-info h2{
color: #FFF;
}
.footer-info p{
color: #FFF;
}
/*====================================================
5. MEDIA QUERIES.
====================================================*/
@media (min-width: 576px) {
.container-fluid {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-fluid {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-fluid {
max-width: 960px;
}
}
@media (min-width: 1100px) {
.container-fluid {
max-width: 1400px;
}
}
@media (max-width:1200px) {
.tp-heading{
width: 50%;
}
.t-pages-heading{
width: 40%;
}
.tf-heading{
width: 60%;
}
@media (max-width:992px) {
.container{
max-width: 95%;
}
.tp-heading{
width: 60%;
}
.t-pages-heading{
width: 50%;
}
.tf-heading{
width: 70%;
}
}
@media (max-width:768px) {
header{
width: 100%;
height: 600px;
}
.home-hero {
top: 28%;
position: absolute;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 5rem;
}
.home-hero h1{
margin: 1rem 0rem 0.5rem;
font-weight: 500;
}
.home-hero p{
font-size: 15px;
line-height: 1.7;
}
.template-logo{
width: 150px;
margin: auto;
}
.paint-brush{
width: 150px;
margin: 1rem auto;
}
.tp-heading{
width: 70%;
}
.t-pages-heading{
width: 60%;
}
.tf-heading{
width: 80%;
}
.carousel-container{
padding: 3rem 1rem;
}
.slide .preview-box{
margin: 0px 15px;
}
footer{
height: 400px;
}
.footer-info {
top: 30%;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 5rem;
}
}
@media (max-width:576px) {
.home-hero {
top: 28%;
padding: 0rem 3rem;
}
.tp-heading{
width: 80%;
}
.t-pages-heading{
width: 70%;
}
.tf-heading{
width: 90%;
}
.tp-heading p{
font-size: 14px;
line-height: 1.7;
}
.t-pages-heading p{
font-size: 14px;
line-height: 1.7;
}
.tf-heading p{
font-size: 14px;
line-height: 1.7;
}
.slide .preview-box{
margin: 0px 10px;
}
.footer-info {
top: 30%;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 2rem;
}
}
@media (max-width:480px) {
.home-hero {
top: 25%;
padding: 0rem 2rem;
}
.home-hero p{
font-size: 14px;
}
.tp-heading{
width: 90%;
}
.t-pages-heading{
width: 80%;
}
.tf-heading{
width: 100%;
}
} | public/theme/css/intro.css | header{
width: 100%;
height: 800px;
background-image: url("../img/images/theme-preview/presentation-bg.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
header:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002642, #002642);
opacity: 0.9;
}
.home-hero {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.home-hero h1{
font-size: 1.5rem;
color: #FFF;
margin: 1.5rem 0rem 1rem;
font-weight: 500;
}
.home-hero p{
font-size: 17px;
color: #FFF;
}
.template-logo{
width: 200px;
margin: auto;
}
.template-logo img{
width: 100%;
}
.paint-brush{
width: 220px;
margin: 1rem auto;
}
.paint-brush img{
width: 100%;
}
/*====================================================
2. THEME PREVIEW.
====================================================*/
.col-prev{
padding: 0px 20px;
margin-bottom: 1.8rem;
}
.theme-preview{
position: relative;
cursor: pointer;
}
.theme-preview img{
width: 100%;
box-shadow: 0 0 10px rgba(204,204,204,0.6);
-moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
-webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
-o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: .5s ease;
background-color: #002642;
}
.preview-box:hover .overlay {
opacity: 0.95;
}
.btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
font-family: 'Poppins', sans-serif;
font-weight: 500;
border: none;
border-radius: 0px;
letter-spacing: 1px;
text-transform: uppercase;
}
.btn-demo {
color: #FFF;
transition: 0.9s;
padding: 0.3rem 1.125rem;
font-size: 0.60rem;
background: #FFA600;
border: solid 2px #FFA600;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
z-index: 3;
}
.btn-demo:hover {
color: #FFF;
background: #FFA600;
}
.btn-demo:focus, .btn-demo.focus {
box-shadow: none;
}
.btn-demo.disabled, .btn-demo:disabled {
color: #fff;
background-color: #e9b416;
border-color: #e9b416;
}
.btn-demo:not(:disabled):not(.disabled):active, .btn-demo:not(:disabled):not(.disabled).active,
.show > .btn-demo.dropdown-toggle {
color: #fff;
background-color: none;
border-color: none;
}
.btn-demo:not(:disabled):not(.disabled):active:focus, .btn-demo:not(:disabled):not(.disabled).active:focus,
.show > .btn-demo.dropdown-toggle:focus {
box-shadow: none;
}
.btn-purchase {
color: #FFF;
transition: 0.9s;
padding: 0.3rem 1.125rem;
font-size: 0.60rem;
background: #FFA600;
border: solid 2px #FFA600;
margin-top: 1rem;
}
.btn-purchase:hover {
color: #FFF;
background: #FFA600;
}
.btn-purchase:focus, .btn-purchase.focus {
box-shadow: none;
}
.btn-purchase.disabled, .btn-purchase:disabled {
color: #fff;
background-color: #e9b416;
border-color: #e9b416;
}
.btn-purchase:not(:disabled):not(.disabled):active, .btn-purchase:not(:disabled):not(.disabled).active,
.show > .btn-purchase.dropdown-toggle {
color: #fff;
background-color: none;
border-color: none;
}
.btn-purchase:not(:disabled):not(.disabled):active:focus, .btn-purchase:not(:disabled):not(.disabled).active:focus,
.show > .btn-purchase.dropdown-toggle:focus {
box-shadow: none;
}
.tp-heading{
text-align: center;
width: 40%;
margin: auto auto 2rem;
}
.tp-heading h5{
color: #b3b3b3;
}
/*====================================================
3. THEME PAGES.
====================================================*/
.carousel-container{
background-color: #F7FAFA;
margin: 2rem 0rem;
padding: 3rem 2rem;
}
.slide .preview-box{
margin: 0px 20px;
}
.t-pages-heading{
text-align: center;
width: 30%;
margin: auto auto 2rem;
}
.t-pages-heading h5{
color: #b3b3b3;
}
/*====================================================
4. THEME FEATURES.
====================================================*/
.features{
padding: 25px 20px;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
margin-bottom: 2rem;
}
figure.feature-icon{
width: 60px;
height: 60px;
float: left;
margin-right: 20px;
margin-bottom: 30px;
}
figure.feature-icon img{
width: 100%;
}
.feature-caption h3{
font-size: 18px;
margin-bottom: 8px;
}
.feature-caption p{
font-size: 13px;
line-height: 1.5;
margin-bottom: 0px;
}
.tf-heading{
text-align: center;
width: 50%;
margin: auto auto 2rem;
}
.tf-heading h5{
color: #b3b3b3;
}
/*====================================================
5. FOOTER.
====================================================*/
footer{
background-image: url("../img/images/theme-preview/footer-bg.jpg");
height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
footer:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002642, #002642);
opacity: 0.9;
}
.footer-info{
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.footer-info h5{
color: #FFF;
}
.footer-info h2{
color: #FFF;
}
.footer-info p{
color: #FFF;
}
/*====================================================
5. MEDIA QUERIES.
====================================================*/
@media (min-width: 576px) {
.container-fluid {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-fluid {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-fluid {
max-width: 960px;
}
}
@media (min-width: 1100px) {
.container-fluid {
max-width: 1400px;
}
}
@media (max-width:1200px) {
.tp-heading{
width: 50%;
}
.t-pages-heading{
width: 40%;
}
.tf-heading{
width: 60%;
}
@media (max-width:992px) {
.container{
max-width: 95%;
}
.tp-heading{
width: 60%;
}
.t-pages-heading{
width: 50%;
}
.tf-heading{
width: 70%;
}
}
@media (max-width:768px) {
header{
width: 100%;
height: 600px;
}
.home-hero {
top: 28%;
position: absolute;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 5rem;
}
.home-hero h1{
margin: 1rem 0rem 0.5rem;
font-weight: 500;
}
.home-hero p{
font-size: 15px;
line-height: 1.7;
}
.template-logo{
width: 150px;
margin: auto;
}
.paint-brush{
width: 150px;
margin: 1rem auto;
}
.tp-heading{
width: 70%;
}
.t-pages-heading{
width: 60%;
}
.tf-heading{
width: 80%;
}
.carousel-container{
padding: 3rem 1rem;
}
.slide .preview-box{
margin: 0px 15px;
}
footer{
height: 400px;
}
.footer-info {
top: 30%;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 5rem;
}
}
@media (max-width:576px) {
.home-hero {
top: 28%;
padding: 0rem 3rem;
}
.tp-heading{
width: 80%;
}
.t-pages-heading{
width: 70%;
}
.tf-heading{
width: 90%;
}
.tp-heading p{
font-size: 14px;
line-height: 1.7;
}
.t-pages-heading p{
font-size: 14px;
line-height: 1.7;
}
.tf-heading p{
font-size: 14px;
line-height: 1.7;
}
.slide .preview-box{
margin: 0px 10px;
}
.footer-info {
top: 30%;
left: 0%;
right: 0%;
transform: translate(0%, 0%);
padding: 0rem 2rem;
}
}
@media (max-width:480px) {
.home-hero {
top: 25%;
padding: 0rem 2rem;
}
.home-hero p{
font-size: 14px;
}
.tp-heading{
width: 90%;
}
.t-pages-heading{
width: 80%;
}
.tf-heading{
width: 100%;
}
} | 0.439747 | 0.065217 |
body {margin:0px; text-align: center; width: 100%; font-family: Oswald;}
p {font-size: 22px; font-family: Open Sans; font-weight: 100;}
h1 {margin-top:0; margin-bottom: 0; font-family: Poppins;}
.topnav {position: fixed; right: 0;}
/*topnav links */
.topnav a { float: left;display: block;color: #f2f2f2;text-align: center; font-size: 2.6vh; padding: 14px 20px; text-decoration: none;}
/* Change color on hover */
.topnav a:hover {background-color: #ddd;color: black;border-radius: 3px;box-shadow: 0px 5px 15px -1px #bbb;}
.parallax-container{z-index: -10;background: url('images/bg.jpg');width: 100%; height: 100vh;background-size: cover;background-attachment: fixed;background-position: center;background-repeat: no-repeat;position: fixed;}
.container-full{height: 100vh; width: 100%; z-index: 1;}
#home{background-color: rgba(30,30,30,0.5);}
#about{background-color: #eee;}
#events{background-color: rgba(30,30,30,0.7);}
#events-2{background-color: rgba(30,30,30,0.7);}
#gallery{background-color: #eee;}
#team{background-color: rgba(30,30,30,0.85);}
#contact{background-color: #eee;}
#name-container{font-family: Poppins; display: inline-block; color: #ddd; position: absolute; width: 40%; height: 40%;left:30%; top: 30%; border: 2.3px solid #ddd; transition: transform 0.15s ease-in;}
#name-container > h1 {font-size: 7vw; margin: 12% auto -5%;}
#name-container:hover{transform: scale(1.02); transition: transform 0.15s ease-in;}
#about > p{padding: 0px 100px 0px 100px; text-align: left;}
#about > h1{position: relative;top: 5%;font-size: 5vw; margin-bottom: 4%;}
.event-img-container{height: 70%; width: 99%; position: relative; top: 15%;}
.event-2-img-container{height: 70%; width: 99%; position: relative; top: 15%;}
#events > h1{position: relative;top: 5%;font-size: 5vw; color: #eee; }
.workshop{display: inline-block; width: 39.5%; height: 90%; float: left; transition: transform 0.15s ease-in;}
.workshop > h2{color: #ccc; position: relative; top: 20%; left:10%;}
.workshop > img{width: 45%; height: auto;}
.workshop:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#workshop-1{z-index: 1;transform: translate(48%, 25%); }
#workshop-2{z-index: 3;transform: translate(-10%, 13%);}
.competition{display:inline-block ; float left;width: 59%; height: 90%; transition: transform 0.15s ease-in;}
.competition > img{height: auto; width: 80%; margin-top: 6%; position: relative; left: -5.5%;}
.competition > h2{color: #ccc; position: relative; left:-5.5%;}
.competition:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
.event-coverage{display: inline-block; width: 65%; height: 100%; float: left; transition: transform 0.15s ease-in;}
.event-coverage:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#event-coverage-img{width:80%;height:auto; position: relative; right:-4%;}
.event-coverage > h2{color: #ccc; position: relative; right: -4%;}
.photowalk{display: inline-block; width: 34.5%; height: 100%; transition: transform 0.15s ease-in;}
.photowalk:hover{transform: scale(1.05); transition: transform 0.15s ease-in;}
#photowalk-1{width:67.5% ;height: auto; position: relative; left:-10%;}
.photowalk > h2{color: #ccc; position: relative; left:-10%;}
#gallery > h1{position: relative;top: 5%;font-size: 5vw; color: #111; margin-bottom: 8%; }
.gallery-container{display: inline-block; width: 80%; height: 70%; }
.id{display: inline-block; width: 27%; height: 60%;}
#id-1{transform: translate(40%) rotate(-10deg); transition: all 0.3s ease-in;background: url(images/spark.jpeg); background-size: cover; z-index: -2;}
#id-2{transform: translateX(0.1%) rotate(0.1deg); transition: all 0.3s ease-in;background-color: #ccc; background: url(images/incand.jpg); background-size: cover; transform: translateZ(10px);}
#id-3{transform: translateX(-40%) rotate(10deg); transition: all 0.3s ease-in;background: url(images/tecnoesis.jpg); background-size: cover; z-index: -2;}
#id-1:hover{z-index: 100000;transform: scale(1.04) translateX(30%) translateY(-3%) rotate(-12deg); transition: transform 0.3s ease-in; cursor: pointer;}
#id-2:hover{transform: scale(1.04) translate(-5%, -3%) rotate(-3deg); transition: transform 0.3s ease-in; cursor: pointer;}
#id-3:hover{transform: scale(1.04) translate(-35%, -3%) rotate(12deg); transition: transform 0.3s ease-in; cursor: pointer;}
.carousal-container{max-width: 800px;}
.modal{z-index:3;display:none;padding-top:35px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.9);}
.modal-content{margin:auto;background-color:transparent;position:relative;padding:0;outline:0;}
.modal-content h1{font-size: 3vw; color: #eee;}
.display-topright{position:absolute;right:0;top:0}
.close-button{white-space:normal; font-size:24px!important;border:none;display:inline-block;padding:8px 20px;vertical-align:middle;overflow:hidden;text-decoration:none;color:#222;background-color:#eee;text-align:center;cursor:pointer;white-space:nowrap}
.close-button:hover{transform: scale(1.05); transition: transform 0.1s ease-in; background-color: rgba(255,0,0,0.7); color: #eee;}
.carousal-buttons{background-color:transparent;}
.slideImg, .slideIncand, .slideSpark, .slideTech{display: none; width: 100%;}
.left-right-buttons{padding-left: 8px; padding-right: 10px; color:#eee;}
.badge{cursor: pointer; display:inline-block;padding-left:8px;padding-right:8px;text-align:center;border-radius:50%; height: 15px; border:1px solid #eee;}
.white{background-color:#eee;color:#eee;}
.grey{background-color: #ccc;}
.left-modal-buttons{float: left; cursor: pointer; color: #eee;padding-left:8px;padding-right:8px;}
.right-modal-buttons{float: right; cursor: pointer; color: #eee;padding-left:8px;padding-right:8px;}
.left-modal-buttons:hover{transform: scale(1.3);}
.right-modal-buttons:hover{transform: scale(1.3);}
.perspective{perspective: 1200px;}
#team > h1{position: relative;top: 25px;font-size: 5vw; color: #eee; margin-bottom: 24px; }
.team-container{width: 19.8%; display: inline-block; float: left; transform-style: preserve-3d;}
.team-container > h2{color: #eee; font-weight: lighter;}
.team-container > img{width: 100%}
#team-1{transform-style: preserve-3d; transform: rotateY(50deg) translate(28%); transition: transform 0.3s ease-in;}
#team-2{transform-style: preserve-3d; transform: rotateY(28deg) translate(17%) scale(0.85); transition: transform 0.3s ease-in;}
#team-3{transform-style: preserve-3d; transform: rotateY(0deg) translateY(-0.5%) scale(0.8); transition: transform 0.3s ease-in;}
#team-4{transform-style: preserve-3d; transform: rotateY(-28deg) translate(-17%) scale(0.85); transition: transform 0.3s ease-in;}
#team-5{transform-style: preserve-3d; transform: rotateY(-50deg) translate(-28%); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(20%) scale(1.0); transition: transform 0.3s ease-in;}
#team-2:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(13.5%) scale(0.9); transition: transform 0.3s ease-in;}
#team-3:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.85); transition: transform 0.3s ease-in;}
#team-4:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(-13.5%) scale(0.9); transition: transform 0.3s ease-in;}
#team-5:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(-22%) scale(1.0); transition: transform 0.3s ease-in;}
#contact{height: 20vw}
#contact>h1{margin: auto;font-size: 5vw;}
#contact>p{margin: auto; position: relative; top: 4vw;}
/*Add media queries for responsive site*/
@media screen and (max-width: 1015px){
#team{height: 70vh;}
.team-container{width: 19.5%;}
#team-1{transform-style: preserve-3d; transform: rotateY(50deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-2{transform-style: preserve-3d; transform: rotateY(28deg) translate(0%) scale(0.9); transition: transform 0.3s ease-in;}
#team-3{transform-style: preserve-3d; transform: rotateY(0deg) translate(0%,-0.5%) scale(0.85); transition: transform 0.3s ease-in;}
#team-4{transform-style: preserve-3d; transform: rotateY(-28deg) translate(-1%) scale(0.9); transition: transform 0.3s ease-in;}
#team-5{transform-style: preserve-3d; transform: rotateY(-50deg) translate(-2%)scale(1); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(3%) scale(1.05); transition: transform 0.3s ease-in;}
#team-2:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(0.5%) scale(0.95); transition: transform 0.3s ease-in;}
#team-3:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.9); transition: transform 0.3s ease-in;}
#team-4:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.95); transition: transform 0.3s ease-in;}
#team-5:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
}
@media screen and (max-width: 1000px){
#events{height: 95vh;}
#events-2{height: 75vh;}
.event-2-img-container{height: 100%; width: 99%; position: relative; top: 5%;}
.workshop > h2{color: #ccc; position: relative; top: -72%; left:10%;}
.workshop > img{width: 60%; height: auto;}
#workshop-1{z-index: 1;transform: translate(27%, 0%);}
#workshop-2{z-index: 3;transform: translate(-10.5%, -90%);}
.competition{display:inline-block ; float: left;width: 59%; height: 90%; transition: transform 0.15s ease-in;}
.competition > img{height: auto; width: 90%; margin-top: 6%; position: relative; left:0%;}
.competition > h2{color: #ccc; position: relative; left:-5.5%;}
.event-coverage{display: inline-block; width: 65%; height: 100%; float: left; transition: transform 0.15s ease-in;}
.event-coverage:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#event-coverage-img{width:90%;height:auto; position: relative; right:-4%;}
.event-coverage > h2{color: #ccc; position: relative; right: -4%;}
.photowalk{display: inline-block; width: 34.5%; height: 100%; transition: transform 0.15s ease-in;}
.photowalk:hover{transform: scale(1.05); transition: transform 0.15s ease-in;}
#photowalk-1{width:75.5% ;height: auto; position: relative; left:0%;}
.photowalk > h2{color: #ccc; position: relative; left:0%;}
}
@media screen and (max-width: 852px){.workshop > h2{color: #ccc; position: relative; top: -66%; left:10%;}}
@media screen and (max-width: 796px){.workshop > h2{color: #ccc; position: relative; top: -62%; left:10%;}}
@media screen and (max-width: 735px){.workshop > h2{color: #ccc; position: relative; top: -58%; left:10%;}}
@media screen and (max-width: 760px){
#name-container{position: absolute; width: 70%; height: 40%; left:15%; top: 20%; border: 2.3px solid #ddd; transition: transform 0.15s ease-in;}
#name-container > h1 {font-size: 12vw; margin: 12% auto -5%;}
#about > p{padding: 0px 10px 0px 16px; font-size: 19px; text-align: left;}
#about > h1{position: relative;top: 5%;font-size: 10vw; margin-bottom: 4%;}
}
@media screen and (max-width: 700px){
.workshop, .competition, .event-coverage, .photowalk{width: 90%; margin-left: 5%; }
.workshop:hover, .competition:hover, .event-coverage:hover,.photowalk:hover{transform: scale(1.0); transition: transform 0 ease-in; }
.competition{height: auto;}
.event-img-container, .event-2-img-container{height: 100%;}
#events{height: auto;}
#events-2{height: auto;}
#events > h1{font-size: 10vw; color: #eee; padding: 30px; }
.workshop > h2{color: #ccc; position: relative; bottom: 2%; left:0%;}
.workshop > img{width: 85%; height: auto;}
#workshop-1{z-index: 1;transform: translate(0%, 0%); display: none;}
#workshop-2{z-index: 3;transform: translate(0%, 0%);}
.competition > h2{ position: relative; left:0%;}
.competition > img{height: auto; width: 100%; margin-top: 6%; position: relative; left:0%;}
#event-coverage-img{width:100%;height:auto; margin-top: 8%; position: relative; right:0%;}
#photowalk-1{width: 85%; height: auto;}
.workshop{height: auto;}
#gallery{height: 70vh;}
#gallery > h1{font-size: 10vw; padding-bottom: 20px; }
.id{display: inline-block; width: 32%; height: 35vh;}
.modal{padding-top:10%;}
.modal-content h1{font-size: 9vw; color: #eee;}
#team{height:610vw ; border: 1px solid yellow;}
#team > h1{font-size: 9vw; padding: 20px;}
#team img{width: 75%; height: auto;}
.team-container{width: 100%;height: auto; transform-style:none; position: relative; left:5%;}
#team-1{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-2{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-3{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-4{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-5{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-2:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-3:hover{transform: rotateY(0deg) scale(1.05); transition: transform 0.3s ease-in;}
#team-4:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-5:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
} | style.css | body {margin:0px; text-align: center; width: 100%; font-family: Oswald;}
p {font-size: 22px; font-family: Open Sans; font-weight: 100;}
h1 {margin-top:0; margin-bottom: 0; font-family: Poppins;}
.topnav {position: fixed; right: 0;}
/*topnav links */
.topnav a { float: left;display: block;color: #f2f2f2;text-align: center; font-size: 2.6vh; padding: 14px 20px; text-decoration: none;}
/* Change color on hover */
.topnav a:hover {background-color: #ddd;color: black;border-radius: 3px;box-shadow: 0px 5px 15px -1px #bbb;}
.parallax-container{z-index: -10;background: url('images/bg.jpg');width: 100%; height: 100vh;background-size: cover;background-attachment: fixed;background-position: center;background-repeat: no-repeat;position: fixed;}
.container-full{height: 100vh; width: 100%; z-index: 1;}
#home{background-color: rgba(30,30,30,0.5);}
#about{background-color: #eee;}
#events{background-color: rgba(30,30,30,0.7);}
#events-2{background-color: rgba(30,30,30,0.7);}
#gallery{background-color: #eee;}
#team{background-color: rgba(30,30,30,0.85);}
#contact{background-color: #eee;}
#name-container{font-family: Poppins; display: inline-block; color: #ddd; position: absolute; width: 40%; height: 40%;left:30%; top: 30%; border: 2.3px solid #ddd; transition: transform 0.15s ease-in;}
#name-container > h1 {font-size: 7vw; margin: 12% auto -5%;}
#name-container:hover{transform: scale(1.02); transition: transform 0.15s ease-in;}
#about > p{padding: 0px 100px 0px 100px; text-align: left;}
#about > h1{position: relative;top: 5%;font-size: 5vw; margin-bottom: 4%;}
.event-img-container{height: 70%; width: 99%; position: relative; top: 15%;}
.event-2-img-container{height: 70%; width: 99%; position: relative; top: 15%;}
#events > h1{position: relative;top: 5%;font-size: 5vw; color: #eee; }
.workshop{display: inline-block; width: 39.5%; height: 90%; float: left; transition: transform 0.15s ease-in;}
.workshop > h2{color: #ccc; position: relative; top: 20%; left:10%;}
.workshop > img{width: 45%; height: auto;}
.workshop:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#workshop-1{z-index: 1;transform: translate(48%, 25%); }
#workshop-2{z-index: 3;transform: translate(-10%, 13%);}
.competition{display:inline-block ; float left;width: 59%; height: 90%; transition: transform 0.15s ease-in;}
.competition > img{height: auto; width: 80%; margin-top: 6%; position: relative; left: -5.5%;}
.competition > h2{color: #ccc; position: relative; left:-5.5%;}
.competition:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
.event-coverage{display: inline-block; width: 65%; height: 100%; float: left; transition: transform 0.15s ease-in;}
.event-coverage:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#event-coverage-img{width:80%;height:auto; position: relative; right:-4%;}
.event-coverage > h2{color: #ccc; position: relative; right: -4%;}
.photowalk{display: inline-block; width: 34.5%; height: 100%; transition: transform 0.15s ease-in;}
.photowalk:hover{transform: scale(1.05); transition: transform 0.15s ease-in;}
#photowalk-1{width:67.5% ;height: auto; position: relative; left:-10%;}
.photowalk > h2{color: #ccc; position: relative; left:-10%;}
#gallery > h1{position: relative;top: 5%;font-size: 5vw; color: #111; margin-bottom: 8%; }
.gallery-container{display: inline-block; width: 80%; height: 70%; }
.id{display: inline-block; width: 27%; height: 60%;}
#id-1{transform: translate(40%) rotate(-10deg); transition: all 0.3s ease-in;background: url(images/spark.jpeg); background-size: cover; z-index: -2;}
#id-2{transform: translateX(0.1%) rotate(0.1deg); transition: all 0.3s ease-in;background-color: #ccc; background: url(images/incand.jpg); background-size: cover; transform: translateZ(10px);}
#id-3{transform: translateX(-40%) rotate(10deg); transition: all 0.3s ease-in;background: url(images/tecnoesis.jpg); background-size: cover; z-index: -2;}
#id-1:hover{z-index: 100000;transform: scale(1.04) translateX(30%) translateY(-3%) rotate(-12deg); transition: transform 0.3s ease-in; cursor: pointer;}
#id-2:hover{transform: scale(1.04) translate(-5%, -3%) rotate(-3deg); transition: transform 0.3s ease-in; cursor: pointer;}
#id-3:hover{transform: scale(1.04) translate(-35%, -3%) rotate(12deg); transition: transform 0.3s ease-in; cursor: pointer;}
.carousal-container{max-width: 800px;}
.modal{z-index:3;display:none;padding-top:35px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.9);}
.modal-content{margin:auto;background-color:transparent;position:relative;padding:0;outline:0;}
.modal-content h1{font-size: 3vw; color: #eee;}
.display-topright{position:absolute;right:0;top:0}
.close-button{white-space:normal; font-size:24px!important;border:none;display:inline-block;padding:8px 20px;vertical-align:middle;overflow:hidden;text-decoration:none;color:#222;background-color:#eee;text-align:center;cursor:pointer;white-space:nowrap}
.close-button:hover{transform: scale(1.05); transition: transform 0.1s ease-in; background-color: rgba(255,0,0,0.7); color: #eee;}
.carousal-buttons{background-color:transparent;}
.slideImg, .slideIncand, .slideSpark, .slideTech{display: none; width: 100%;}
.left-right-buttons{padding-left: 8px; padding-right: 10px; color:#eee;}
.badge{cursor: pointer; display:inline-block;padding-left:8px;padding-right:8px;text-align:center;border-radius:50%; height: 15px; border:1px solid #eee;}
.white{background-color:#eee;color:#eee;}
.grey{background-color: #ccc;}
.left-modal-buttons{float: left; cursor: pointer; color: #eee;padding-left:8px;padding-right:8px;}
.right-modal-buttons{float: right; cursor: pointer; color: #eee;padding-left:8px;padding-right:8px;}
.left-modal-buttons:hover{transform: scale(1.3);}
.right-modal-buttons:hover{transform: scale(1.3);}
.perspective{perspective: 1200px;}
#team > h1{position: relative;top: 25px;font-size: 5vw; color: #eee; margin-bottom: 24px; }
.team-container{width: 19.8%; display: inline-block; float: left; transform-style: preserve-3d;}
.team-container > h2{color: #eee; font-weight: lighter;}
.team-container > img{width: 100%}
#team-1{transform-style: preserve-3d; transform: rotateY(50deg) translate(28%); transition: transform 0.3s ease-in;}
#team-2{transform-style: preserve-3d; transform: rotateY(28deg) translate(17%) scale(0.85); transition: transform 0.3s ease-in;}
#team-3{transform-style: preserve-3d; transform: rotateY(0deg) translateY(-0.5%) scale(0.8); transition: transform 0.3s ease-in;}
#team-4{transform-style: preserve-3d; transform: rotateY(-28deg) translate(-17%) scale(0.85); transition: transform 0.3s ease-in;}
#team-5{transform-style: preserve-3d; transform: rotateY(-50deg) translate(-28%); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(20%) scale(1.0); transition: transform 0.3s ease-in;}
#team-2:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(13.5%) scale(0.9); transition: transform 0.3s ease-in;}
#team-3:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.85); transition: transform 0.3s ease-in;}
#team-4:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(-13.5%) scale(0.9); transition: transform 0.3s ease-in;}
#team-5:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(-22%) scale(1.0); transition: transform 0.3s ease-in;}
#contact{height: 20vw}
#contact>h1{margin: auto;font-size: 5vw;}
#contact>p{margin: auto; position: relative; top: 4vw;}
/*Add media queries for responsive site*/
@media screen and (max-width: 1015px){
#team{height: 70vh;}
.team-container{width: 19.5%;}
#team-1{transform-style: preserve-3d; transform: rotateY(50deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-2{transform-style: preserve-3d; transform: rotateY(28deg) translate(0%) scale(0.9); transition: transform 0.3s ease-in;}
#team-3{transform-style: preserve-3d; transform: rotateY(0deg) translate(0%,-0.5%) scale(0.85); transition: transform 0.3s ease-in;}
#team-4{transform-style: preserve-3d; transform: rotateY(-28deg) translate(-1%) scale(0.9); transition: transform 0.3s ease-in;}
#team-5{transform-style: preserve-3d; transform: rotateY(-50deg) translate(-2%)scale(1); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(3%) scale(1.05); transition: transform 0.3s ease-in;}
#team-2:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(0.5%) scale(0.95); transition: transform 0.3s ease-in;}
#team-3:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.9); transition: transform 0.3s ease-in;}
#team-4:hover{transform-style: preserve-3d; transform: rotateY(0deg) scale(0.95); transition: transform 0.3s ease-in;}
#team-5:hover{transform-style: preserve-3d; transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
}
@media screen and (max-width: 1000px){
#events{height: 95vh;}
#events-2{height: 75vh;}
.event-2-img-container{height: 100%; width: 99%; position: relative; top: 5%;}
.workshop > h2{color: #ccc; position: relative; top: -72%; left:10%;}
.workshop > img{width: 60%; height: auto;}
#workshop-1{z-index: 1;transform: translate(27%, 0%);}
#workshop-2{z-index: 3;transform: translate(-10.5%, -90%);}
.competition{display:inline-block ; float: left;width: 59%; height: 90%; transition: transform 0.15s ease-in;}
.competition > img{height: auto; width: 90%; margin-top: 6%; position: relative; left:0%;}
.competition > h2{color: #ccc; position: relative; left:-5.5%;}
.event-coverage{display: inline-block; width: 65%; height: 100%; float: left; transition: transform 0.15s ease-in;}
.event-coverage:hover{transform: scale(1.05); transition: transform 0.15s ease-in; }
#event-coverage-img{width:90%;height:auto; position: relative; right:-4%;}
.event-coverage > h2{color: #ccc; position: relative; right: -4%;}
.photowalk{display: inline-block; width: 34.5%; height: 100%; transition: transform 0.15s ease-in;}
.photowalk:hover{transform: scale(1.05); transition: transform 0.15s ease-in;}
#photowalk-1{width:75.5% ;height: auto; position: relative; left:0%;}
.photowalk > h2{color: #ccc; position: relative; left:0%;}
}
@media screen and (max-width: 852px){.workshop > h2{color: #ccc; position: relative; top: -66%; left:10%;}}
@media screen and (max-width: 796px){.workshop > h2{color: #ccc; position: relative; top: -62%; left:10%;}}
@media screen and (max-width: 735px){.workshop > h2{color: #ccc; position: relative; top: -58%; left:10%;}}
@media screen and (max-width: 760px){
#name-container{position: absolute; width: 70%; height: 40%; left:15%; top: 20%; border: 2.3px solid #ddd; transition: transform 0.15s ease-in;}
#name-container > h1 {font-size: 12vw; margin: 12% auto -5%;}
#about > p{padding: 0px 10px 0px 16px; font-size: 19px; text-align: left;}
#about > h1{position: relative;top: 5%;font-size: 10vw; margin-bottom: 4%;}
}
@media screen and (max-width: 700px){
.workshop, .competition, .event-coverage, .photowalk{width: 90%; margin-left: 5%; }
.workshop:hover, .competition:hover, .event-coverage:hover,.photowalk:hover{transform: scale(1.0); transition: transform 0 ease-in; }
.competition{height: auto;}
.event-img-container, .event-2-img-container{height: 100%;}
#events{height: auto;}
#events-2{height: auto;}
#events > h1{font-size: 10vw; color: #eee; padding: 30px; }
.workshop > h2{color: #ccc; position: relative; bottom: 2%; left:0%;}
.workshop > img{width: 85%; height: auto;}
#workshop-1{z-index: 1;transform: translate(0%, 0%); display: none;}
#workshop-2{z-index: 3;transform: translate(0%, 0%);}
.competition > h2{ position: relative; left:0%;}
.competition > img{height: auto; width: 100%; margin-top: 6%; position: relative; left:0%;}
#event-coverage-img{width:100%;height:auto; margin-top: 8%; position: relative; right:0%;}
#photowalk-1{width: 85%; height: auto;}
.workshop{height: auto;}
#gallery{height: 70vh;}
#gallery > h1{font-size: 10vw; padding-bottom: 20px; }
.id{display: inline-block; width: 32%; height: 35vh;}
.modal{padding-top:10%;}
.modal-content h1{font-size: 9vw; color: #eee;}
#team{height:610vw ; border: 1px solid yellow;}
#team > h1{font-size: 9vw; padding: 20px;}
#team img{width: 75%; height: auto;}
.team-container{width: 100%;height: auto; transform-style:none; position: relative; left:5%;}
#team-1{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-2{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-3{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-4{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
#team-5{width: 90%; transform: rotateY(0deg) translate(0%) scale(1); transition: transform 0.3s ease-in;}
/*On hover*/
#team-1:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-2:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-3:hover{transform: rotateY(0deg) scale(1.05); transition: transform 0.3s ease-in;}
#team-4:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
#team-5:hover{transform: rotateY(0deg) translate(0%) scale(1.05); transition: transform 0.3s ease-in;}
} | 0.334155 | 0.134378 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Danh cho pc*/
.main {
width:100%;
padding-top:140px;
margin:auto;
background-color: #f3f3f3;
text-align:center;
}
.tieude{
position: fixed;
width:100%;
height:140px;
background-color:black;
top:0px;
z-index: 100;
float:left;
}
.tieude .mid .bg-dark1 {
color:white;
text-transform: uppercase;
}
.tieude .mid .navbar1 {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
}
.tieude .mid .navbar-brand1 {
color: white;
}
.tieude .mid .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
color: rgb(255 255 255 / 100%);
}
.navbar-light .navbar-nav .nav-link {
color: rgb(255 255 255 / 100%);
}
.tieude .mid .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
color: rgba(255 255 255 / 50%);
}
.tieude .mid .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #ffffff;
text-align: left;
list-style: none;
background-color: #222;
background-clip: padding-box;
border-top: 2px solid #28a745;
border-radius: 0.25rem;
}
.tieude .mid .dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1.5rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
color:white;
}
.tieude .right svg{
margin:0px 0px 0px 0px
}
/*-------------------------------GIỎ HÀNG AJAX-------------------------------*/
.tieude .right .cart-icon{
transform: translateY(150%);
}
.tieude .right .cart-icon a{
color: white;
}
.tieude .right .cart .cart-icon a:hover{
}
.tieude .right .cart .cart-icon .cart-item{
transform: translateX(-30%);
opacity: 0;
visibility: hidden;
position: absolute;
z-index: 1;
width: 300px;
height: auto;
margin-top: 100px;
border-radius: 5px;
position: absolute;
transition: all 1s;
border:2px solid white;
background-color: white;
box-shadow: 0 0.0625rem 2.125rem 0 rgba(0,0,0,0.5);
}
.tieude .right .cart .cart-icon{
height: auto;
}
.tieude .right .cart .cart-icon:hover .cart-item {
visibility: visible;
opacity: 1;
margin-top:20px;
}
.tieude .right .cart .cart-icon .cart-item table{
width: 300px;
height: auto;
text-align: left;
}
.tieude .right .cart .cart-icon .cart-item table tr td {
padding: 0px 20px 3px 0px;
font-weight:bold;
}
.tieude .right .cart .cart-icon .cart-item table tr td a{
color: black;
}
.tieude .right .cart .cart-icon .cart-item table tr td img{
width: 80px;
height: 80px;
border-radius: 5%;
margin-left: 25px;
}
/*----------------------------------END GIỎ HÀNG AJAX--------------------------------*/
/*----------------------------QUẢN LÝ TÀI KHOẢN--------------------------------------*/
.tieude .right .user a{
color: white;
}
.tieude .right .user {
transform: translateY(82%);
}
.tieude .right .user ul{
transform: translateX(-30%);
opacity: 0.5;
visibility: hidden;
position: absolute;
z-index: 1;
width: 180px;
height: auto;
margin-top: 50px;
border-radius: 5px;
position: absolute;
transition: all 1s;
border:2px solid white;
background-color: white;
/* width: auto;*/
height: auto;
text-align: left;
list-style: none;
box-shadow: 0 0.0625rem 2.125rem 0 rgba(0,0,0,0.5);
}
.tieude .right .cart .cart-icon{
height: auto;
}
.tieude .user:hover ul{
visibility: visible;
opacity: 1;
margin-top:20px;
}
.tieude .right .user ul li{
padding: 10px 10px 10px 10px;
}
.tieude .right .user ul li:hover{
background-color: #eaeaea;
}
.tieude .right .user ul>li:nth-child(1) {
border-bottom: 2px solid #bbbbbba8;
}
.tieude .right .user ul a li {
color: black;
text-decoration: none;
}
/*----------------------------END QUẢN LÝ TÀI KHOẢN--------------------------------------*/
/* -----------------------------CONTENT----------------------------- */
.than{
margin:auto;
width:1200px;
background-color:white;
}
.than .login{
text-align: left;
}
.than .register{
text-align: left;
}
/*Slide*/
.than .quangcao-t{
width:100%;
height:540px;
border-radius: 3px;
}
.than .quangcao-t{
overflow:hidden;
}
.than .quangcao-t:hover .dieuhuong{
display:block;
}
.than .quangcao-t .chuyen-slide{
width:9999px;
margin-left:0px;
transition: all 0.7s;
}
.than .quangcao-t .dieuhuong{
position:absolute;
color:white;
font-size:60px;
top:48%;
padding-left:20px;
}
.than .quangcao-t .dieuhuong{
display:none;
}
.than .quangcao-t .dieuhuong .left{
float:left;
}
.than .quangcao-t .dieuhuong .right{
float:left;
position:relative;
left:1035px;
}
.than .quangcao-t .chuyen-slide img{
width:1200px;
height:54 0px;
float:left;
height: 540px;
}
/*--------------------------------EndSlide--------------------------------*/
/*Sản phẩm nổi bật trang chủ*/
.than .mid-t{
width:100%;
}
.than .mid-t table{
width:100%;
}
.than .mid-t .tr{
}
/*Tên danh mục trang chủ*/
.than .mid-t .td-left{
background-color: #28a745;
width:300px;
height:35px;
color:white;
border-bottom: 1px solid #ddd;
text-align:left;
padding-left:30px;
text-transform: uppercase;
font-size: 18px;
}
.than .mid-t .td-left a{
color:white;
text-decoration:none;
}
/*End Tên danh mục trang chủ*/
/*Tên nhóm sản phẩm trang chủ*/
.than .mid-t .td-right{
background-color: white;
border-bottom: 1px solid #ddd;
color:blue;
padding-right:10px;
text-align:right;
}
.than .mid-t .td-right ul{
list-style:none;
}
.than .mid-t .td-right ul li{
float:right;
line-height:30px;
margin-left:10px;
text-transform: uppercase;
}
.than .mid-t .td-right ul li a{
color:#000;
text-decoration:none;
}
.than .mid-t .td-right a:hover{
text-decoration:underline;
}
/*End Tên nhóm sản phẩm trang chủ*/
.than .mid-t .number1{
height:413px;
margin:5px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
/*Card sản phẩm trang chủ*/
.than .mid-t .number1 .card{
margin-top: 0px;
float:left;
margin-left:10px;
}
.than .mid-t .number1 .card .card-body .sale{
position: absolute;
top: 5px;
right: 5px;
z-index: 1;
background-color: #ed1c24;
padding: 4px 5px 5px;
border-radius: 2px;
color: #fff;
}
.than .mid-t .number2{
height:463px;
margin:0px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
.than .mid-t .number2 .card{
float:left;
margin-left:10px;
}
.than .mid-t .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .mid-t .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
/*End Card sản phẩm trang chủ*/
.than .mid-t .box {
float: left;
width: 50%;
padding: 50px;
height: 300px;
margin-top:200px;
}
.than .mid-t .clearfix::after {
content: "";
clear: both;
display: table;
}
/*----------------------------End Sản phẩm nổi bật trang chủ----------------------------*/
/*Hiển thị tất cả sẩn phẩm trong loại sản phẩm*/
.than .allCate .number1{
height:413px;
margin:5px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
.than .allCate .number1 .card{
float:left;
margin-left:10px;
}
.than .allCate .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .allCate .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
.than .allCate .td-left{
float:left;
font-size:25px;
padding-left:20px;
text-align: left;
width: 800px;
}
.than .allCate .td-left a{
font-size:17px;
color:;
text-decoration:none;
}
.than .allCate .td-left span{
font-size:17px;
color:#000;
}
.than .allCate .td-right{
text-align:right;
width:70%;
padding-right:20px;
}
.than .pages .pagination{
margin-top:380px;
}
/*-----------------------End Hiển thị tất cả sẩn phẩm trong loại sản phẩm-----------------------*/
/*-----------------------Thông tin tài khoản-----------------------*/
.than .Account{
}
/*-----------------------Comment-----------------------*/
/*.than .change-comment{
display:none;
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,0.5);
z-index:100;
overflow:auto;
}
.than .comment-content{
background-color:white;
margin:12% auto;
padding:20px;
width:70%;
height: auto;
box-shadow:0 5px 8px 0;
border-radius: 5px;
}
.than .change-comment .comment-content td{
border:2px solid rgba(0,0,0,1);
padding: 5px 0 5px 0;
}*/
/*Nút X của table địa chỉ cửa hàng của sản phẩm*/
/* .than .closeBtn-Comment{
color:#ccc;
text-align:right;
font-size:30px;
position: absolute;
top: 170px;
right: 250px;
}
.than .closeBtn-Comment:hover,.closeBtn-Comment:focus{
color:black;
text-decoration:none;
cursor:pointer;
}*/
/*----------------------End-Comment-----------------------*/
/*Menu*/
.than .menuAccount{
padding-top: 10px;
text-align: left;
}
.than .menuAccount ul{
list-style:none;
}
.than .menuAccount ul a {
text-decoration:none;
color: black;
}
.than .menuAccount ul a:hover li{
font-weight:bold;
}
.than .menuAccount ul a li{
padding-top: 12px;
}
/*End Menu*/
/*thông tin*/
.than .profileAccount{
margin: 10px;
text-align: left;
}
/*end thông tin*/
/*matkhau*/
.than .passwordAccount{
margin: 0 auto;
margin: 10px;
text-align: left;
}
.than .passwordAccount button{
float: left;
}
/*end matkhau*/
/*menu order*/
.than .Account .menuOrder button{
border: none;
background-color: transparent;
font-size: 20px;
outline: none;
}
.than .Account .menuOrder button:hover{
font-weight: bold;
transition: all 0.2s;
}
/*end menu order*/
/*Sản phẩm yêu thích*/
.than .likeProductAccount{
text-align: left;
margin-bottom: 15px;
}
/*-----------------------End Thông tin tài khoản-----------------------*/
/*-----------------------Hiển thị thông tin sản phảm-----------------------*/
.than .product td{
border: 0px solid black;
}
/*Hình ảnh gốc của sản phẩm*/
.than .product .left-ha{
width:80%;
float:left;
}
/*Hình ảnh minh họa của sản phẩm*/
.than .product .right-ha{
width:20%;
float:left;
}
.than .product tr{
}
/*Tên vs giá của sản phẩm*/
.than .product .thongtin .tt1 ul{
width:100%;
list-style:none;
}
.than .product .thongtin .tt1 ul li{
padding: 0px 0px 0px 30px;
}
.than .product .thongtin .tt1 ul a{
font-size:17px;
color:;
text-decoration:none;
}
/*Khuyến mãi đặc biệt của sản phẩm*/
.than .product .thongtin .tt2{
}
.than .product .thongtin .tt2 ul{
width:100%;
background-color: #8dffaf;
}
.than .product .thongtin .tt2 ul li{
list-style:none;
padding: 0px 0px 0px 30px;
}
/*Màu sắc của sản phẩm*/
.than .product .mausac{
width:100%;
}
/*Size của sản phẩm*/
.than .product .size{
width:100%;
padding-top:20px;
}
.than .product .size button{
width:35px;
height:35px;
background-color:#17175a;
color:white;
}
.than .product .muangay{
width:100%;
padding-top:20px;
}
/*Đặt mua online của sản phẩm*/
.than .product .muangay .muangay-l{
width:50%;
height:5em;
float:left;
}
.than .product .muangay .muangay-l button{
width:95%;
height:100%;
background-color: #ea0c0c;
padding: 0px 0px 0px 0px;
border:0px;
}
.than .product .muangay .muangay-l button p{
margin:0px 0px 2px 0px;
color:white;
}
/*End Đặt mua online của sản phẩm*/
/*Mua tại cửa hàng của sản phẩm*/
.than .product .muangay .muangay-r{
width:50%;
float:left;
height:5em;
}
.than .product .muangay .muangay-r button{
width:95%;
height:100%;
background-color: #000000;
border:0px;
float:right;
}
.than .product .muangay .muangay-r button p{
margin:0px 0px 2px 0px;
color:white;
}
/*End Mua tại cửa hàng của sản phẩm*/
/*Sản phẩm tương tự của sản phẩm*/
.than .product tr td .sptt{
width:100%;
}
.than .product tr td .sptt .card{
float:left;
margin-bottom:10px;
margin-left:10px;
}
.than .product .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .product .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
/*End Sản phẩm tương tự của sản phẩm*/
/*Mô tả của sản phẩm*/
.than .product tr td .mt{
width:100%;
}
/*Table đỉa chỉ cửa hàng của sản phẩm*/
.than .modal-bg{
display:none;
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,0.5);
z-index:100;
overflow:auto;
}
.than .modal-content{
background-color:white;
margin:12% auto;
padding:20px;
width:70%;
box-shadow:0 5px 8px 0;
}
.than .modal-bg .modal-content td{
border:2px solid rgba(0,0,0,1);
padding: 5px 0 5px 0;
}
/*Nút X của table địa chỉ cửa hàng của sản phẩm*/
.than .closeBtn{
color:#ccc;
text-align:right;
font-size:30px;
}
.than .closeBtn:hover,.closeBtn:focus{
color:black;
text-decoration:none;
cursor:pointer;
}
/*End Table đỉa chỉ cửa hàng của sản phẩm*/
/*-----------------------End Hiển thị thông tin sản phảm-----------------------*/
/*-----------------------Hiển thị List Cart-----------------------*/
.than .tab{
width:100%;
}
.than .tab ul{
list-style:none;
width:100%;
}
.than .tab ul li{
float:left;
width:50%;
color: #888;
font-size:20px;
}
.than .tab ul li.tab1{
text-align:left;
padding-left:50px;
}
.than .tab ul li.tab2{
text-align:right;
padding-right:50px;
}
.than .giohang{
width:100%;
}
.than .giohang table{
width:100%;
}
.than .giohang table tr.1{
}
.than .giohang table tr.nb1 td{
border-bottom:2px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb2 td{
border-bottom:2px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb3 td{
border-bottom:4px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb4{
width:100%;
}
/*Bi Loi khi them size vs mau sac tu day tro xuong */
.than .giohang table tr.nb4 td{
padding:10px 0px 0px 0px;
width:50%;
}
.than .giohang table input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 99%;
font-size:25px;
outline: none;
}
.than .giohang table tr.nb5 td.mid{
width:100%;
}
.than .giohang table tr td.mid input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 99.5%;
font-size:25px;
outline: none;
}
.than .giohang table tr.nb6 td.submit input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 66%;
font-size:25px;
outline: none;
background: rgb(45,110,21);
background: linear-gradient(0deg, rgba(45,110,21,1) 0%, rgba(0,255,4,1) 100%);
text-align:center;
margin-left:18%;
color:white;
font-weight:bold;
}
/*-----------------------End Hiển thị List Cart-----------------------*/
/*------------------------------FOOTER------------------------------*/
.banquyen{
width:100%;
height:auto;
background-color:#000;
float:left;
color: white;
}
.banquyen h4{
font-family: Tahoma;
padding-bottom: 5px;
}
.banquyen h6{
font-family: Tahoma;
padding-bottom: 5px;
}
.banquyen1{
width:100%;
height:100px;
background-color:#000;
float:left;
}
/*------------------------------END FOOTER------------------------------*/
/* Danh cho dien thoai*/
@media only screen and (max-width:739px){
}
/* Danh cho tablet*/
@media only screen and (min-width:740px) and (max-width:1023px){
.tieude .left{
}
.tieude .mid{
}
.tieude .right{
}
}
/* Danh cho pc*/
@media only screen and (min-width:1024px){
} | resources/css/nguoidung/css.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Danh cho pc*/
.main {
width:100%;
padding-top:140px;
margin:auto;
background-color: #f3f3f3;
text-align:center;
}
.tieude{
position: fixed;
width:100%;
height:140px;
background-color:black;
top:0px;
z-index: 100;
float:left;
}
.tieude .mid .bg-dark1 {
color:white;
text-transform: uppercase;
}
.tieude .mid .navbar1 {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
}
.tieude .mid .navbar-brand1 {
color: white;
}
.tieude .mid .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
color: rgb(255 255 255 / 100%);
}
.navbar-light .navbar-nav .nav-link {
color: rgb(255 255 255 / 100%);
}
.tieude .mid .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
color: rgba(255 255 255 / 50%);
}
.tieude .mid .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #ffffff;
text-align: left;
list-style: none;
background-color: #222;
background-clip: padding-box;
border-top: 2px solid #28a745;
border-radius: 0.25rem;
}
.tieude .mid .dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1.5rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
color:white;
}
.tieude .right svg{
margin:0px 0px 0px 0px
}
/*-------------------------------GIỎ HÀNG AJAX-------------------------------*/
.tieude .right .cart-icon{
transform: translateY(150%);
}
.tieude .right .cart-icon a{
color: white;
}
.tieude .right .cart .cart-icon a:hover{
}
.tieude .right .cart .cart-icon .cart-item{
transform: translateX(-30%);
opacity: 0;
visibility: hidden;
position: absolute;
z-index: 1;
width: 300px;
height: auto;
margin-top: 100px;
border-radius: 5px;
position: absolute;
transition: all 1s;
border:2px solid white;
background-color: white;
box-shadow: 0 0.0625rem 2.125rem 0 rgba(0,0,0,0.5);
}
.tieude .right .cart .cart-icon{
height: auto;
}
.tieude .right .cart .cart-icon:hover .cart-item {
visibility: visible;
opacity: 1;
margin-top:20px;
}
.tieude .right .cart .cart-icon .cart-item table{
width: 300px;
height: auto;
text-align: left;
}
.tieude .right .cart .cart-icon .cart-item table tr td {
padding: 0px 20px 3px 0px;
font-weight:bold;
}
.tieude .right .cart .cart-icon .cart-item table tr td a{
color: black;
}
.tieude .right .cart .cart-icon .cart-item table tr td img{
width: 80px;
height: 80px;
border-radius: 5%;
margin-left: 25px;
}
/*----------------------------------END GIỎ HÀNG AJAX--------------------------------*/
/*----------------------------QUẢN LÝ TÀI KHOẢN--------------------------------------*/
.tieude .right .user a{
color: white;
}
.tieude .right .user {
transform: translateY(82%);
}
.tieude .right .user ul{
transform: translateX(-30%);
opacity: 0.5;
visibility: hidden;
position: absolute;
z-index: 1;
width: 180px;
height: auto;
margin-top: 50px;
border-radius: 5px;
position: absolute;
transition: all 1s;
border:2px solid white;
background-color: white;
/* width: auto;*/
height: auto;
text-align: left;
list-style: none;
box-shadow: 0 0.0625rem 2.125rem 0 rgba(0,0,0,0.5);
}
.tieude .right .cart .cart-icon{
height: auto;
}
.tieude .user:hover ul{
visibility: visible;
opacity: 1;
margin-top:20px;
}
.tieude .right .user ul li{
padding: 10px 10px 10px 10px;
}
.tieude .right .user ul li:hover{
background-color: #eaeaea;
}
.tieude .right .user ul>li:nth-child(1) {
border-bottom: 2px solid #bbbbbba8;
}
.tieude .right .user ul a li {
color: black;
text-decoration: none;
}
/*----------------------------END QUẢN LÝ TÀI KHOẢN--------------------------------------*/
/* -----------------------------CONTENT----------------------------- */
.than{
margin:auto;
width:1200px;
background-color:white;
}
.than .login{
text-align: left;
}
.than .register{
text-align: left;
}
/*Slide*/
.than .quangcao-t{
width:100%;
height:540px;
border-radius: 3px;
}
.than .quangcao-t{
overflow:hidden;
}
.than .quangcao-t:hover .dieuhuong{
display:block;
}
.than .quangcao-t .chuyen-slide{
width:9999px;
margin-left:0px;
transition: all 0.7s;
}
.than .quangcao-t .dieuhuong{
position:absolute;
color:white;
font-size:60px;
top:48%;
padding-left:20px;
}
.than .quangcao-t .dieuhuong{
display:none;
}
.than .quangcao-t .dieuhuong .left{
float:left;
}
.than .quangcao-t .dieuhuong .right{
float:left;
position:relative;
left:1035px;
}
.than .quangcao-t .chuyen-slide img{
width:1200px;
height:54 0px;
float:left;
height: 540px;
}
/*--------------------------------EndSlide--------------------------------*/
/*Sản phẩm nổi bật trang chủ*/
.than .mid-t{
width:100%;
}
.than .mid-t table{
width:100%;
}
.than .mid-t .tr{
}
/*Tên danh mục trang chủ*/
.than .mid-t .td-left{
background-color: #28a745;
width:300px;
height:35px;
color:white;
border-bottom: 1px solid #ddd;
text-align:left;
padding-left:30px;
text-transform: uppercase;
font-size: 18px;
}
.than .mid-t .td-left a{
color:white;
text-decoration:none;
}
/*End Tên danh mục trang chủ*/
/*Tên nhóm sản phẩm trang chủ*/
.than .mid-t .td-right{
background-color: white;
border-bottom: 1px solid #ddd;
color:blue;
padding-right:10px;
text-align:right;
}
.than .mid-t .td-right ul{
list-style:none;
}
.than .mid-t .td-right ul li{
float:right;
line-height:30px;
margin-left:10px;
text-transform: uppercase;
}
.than .mid-t .td-right ul li a{
color:#000;
text-decoration:none;
}
.than .mid-t .td-right a:hover{
text-decoration:underline;
}
/*End Tên nhóm sản phẩm trang chủ*/
.than .mid-t .number1{
height:413px;
margin:5px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
/*Card sản phẩm trang chủ*/
.than .mid-t .number1 .card{
margin-top: 0px;
float:left;
margin-left:10px;
}
.than .mid-t .number1 .card .card-body .sale{
position: absolute;
top: 5px;
right: 5px;
z-index: 1;
background-color: #ed1c24;
padding: 4px 5px 5px;
border-radius: 2px;
color: #fff;
}
.than .mid-t .number2{
height:463px;
margin:0px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
.than .mid-t .number2 .card{
float:left;
margin-left:10px;
}
.than .mid-t .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .mid-t .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
/*End Card sản phẩm trang chủ*/
.than .mid-t .box {
float: left;
width: 50%;
padding: 50px;
height: 300px;
margin-top:200px;
}
.than .mid-t .clearfix::after {
content: "";
clear: both;
display: table;
}
/*----------------------------End Sản phẩm nổi bật trang chủ----------------------------*/
/*Hiển thị tất cả sẩn phẩm trong loại sản phẩm*/
.than .allCate .number1{
height:413px;
margin:5px 0px 0px 0px;
background-color: rgb (0 0 0);
border-bottom: 20px solid rgba(0, 0, 0, 5%);
}
.than .allCate .number1 .card{
float:left;
margin-left:10px;
}
.than .allCate .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .allCate .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
.than .allCate .td-left{
float:left;
font-size:25px;
padding-left:20px;
text-align: left;
width: 800px;
}
.than .allCate .td-left a{
font-size:17px;
color:;
text-decoration:none;
}
.than .allCate .td-left span{
font-size:17px;
color:#000;
}
.than .allCate .td-right{
text-align:right;
width:70%;
padding-right:20px;
}
.than .pages .pagination{
margin-top:380px;
}
/*-----------------------End Hiển thị tất cả sẩn phẩm trong loại sản phẩm-----------------------*/
/*-----------------------Thông tin tài khoản-----------------------*/
.than .Account{
}
/*-----------------------Comment-----------------------*/
/*.than .change-comment{
display:none;
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,0.5);
z-index:100;
overflow:auto;
}
.than .comment-content{
background-color:white;
margin:12% auto;
padding:20px;
width:70%;
height: auto;
box-shadow:0 5px 8px 0;
border-radius: 5px;
}
.than .change-comment .comment-content td{
border:2px solid rgba(0,0,0,1);
padding: 5px 0 5px 0;
}*/
/*Nút X của table địa chỉ cửa hàng của sản phẩm*/
/* .than .closeBtn-Comment{
color:#ccc;
text-align:right;
font-size:30px;
position: absolute;
top: 170px;
right: 250px;
}
.than .closeBtn-Comment:hover,.closeBtn-Comment:focus{
color:black;
text-decoration:none;
cursor:pointer;
}*/
/*----------------------End-Comment-----------------------*/
/*Menu*/
.than .menuAccount{
padding-top: 10px;
text-align: left;
}
.than .menuAccount ul{
list-style:none;
}
.than .menuAccount ul a {
text-decoration:none;
color: black;
}
.than .menuAccount ul a:hover li{
font-weight:bold;
}
.than .menuAccount ul a li{
padding-top: 12px;
}
/*End Menu*/
/*thông tin*/
.than .profileAccount{
margin: 10px;
text-align: left;
}
/*end thông tin*/
/*matkhau*/
.than .passwordAccount{
margin: 0 auto;
margin: 10px;
text-align: left;
}
.than .passwordAccount button{
float: left;
}
/*end matkhau*/
/*menu order*/
.than .Account .menuOrder button{
border: none;
background-color: transparent;
font-size: 20px;
outline: none;
}
.than .Account .menuOrder button:hover{
font-weight: bold;
transition: all 0.2s;
}
/*end menu order*/
/*Sản phẩm yêu thích*/
.than .likeProductAccount{
text-align: left;
margin-bottom: 15px;
}
/*-----------------------End Thông tin tài khoản-----------------------*/
/*-----------------------Hiển thị thông tin sản phảm-----------------------*/
.than .product td{
border: 0px solid black;
}
/*Hình ảnh gốc của sản phẩm*/
.than .product .left-ha{
width:80%;
float:left;
}
/*Hình ảnh minh họa của sản phẩm*/
.than .product .right-ha{
width:20%;
float:left;
}
.than .product tr{
}
/*Tên vs giá của sản phẩm*/
.than .product .thongtin .tt1 ul{
width:100%;
list-style:none;
}
.than .product .thongtin .tt1 ul li{
padding: 0px 0px 0px 30px;
}
.than .product .thongtin .tt1 ul a{
font-size:17px;
color:;
text-decoration:none;
}
/*Khuyến mãi đặc biệt của sản phẩm*/
.than .product .thongtin .tt2{
}
.than .product .thongtin .tt2 ul{
width:100%;
background-color: #8dffaf;
}
.than .product .thongtin .tt2 ul li{
list-style:none;
padding: 0px 0px 0px 30px;
}
/*Màu sắc của sản phẩm*/
.than .product .mausac{
width:100%;
}
/*Size của sản phẩm*/
.than .product .size{
width:100%;
padding-top:20px;
}
.than .product .size button{
width:35px;
height:35px;
background-color:#17175a;
color:white;
}
.than .product .muangay{
width:100%;
padding-top:20px;
}
/*Đặt mua online của sản phẩm*/
.than .product .muangay .muangay-l{
width:50%;
height:5em;
float:left;
}
.than .product .muangay .muangay-l button{
width:95%;
height:100%;
background-color: #ea0c0c;
padding: 0px 0px 0px 0px;
border:0px;
}
.than .product .muangay .muangay-l button p{
margin:0px 0px 2px 0px;
color:white;
}
/*End Đặt mua online của sản phẩm*/
/*Mua tại cửa hàng của sản phẩm*/
.than .product .muangay .muangay-r{
width:50%;
float:left;
height:5em;
}
.than .product .muangay .muangay-r button{
width:95%;
height:100%;
background-color: #000000;
border:0px;
float:right;
}
.than .product .muangay .muangay-r button p{
margin:0px 0px 2px 0px;
color:white;
}
/*End Mua tại cửa hàng của sản phẩm*/
/*Sản phẩm tương tự của sản phẩm*/
.than .product tr td .sptt{
width:100%;
}
.than .product tr td .sptt .card{
float:left;
margin-bottom:10px;
margin-left:10px;
}
.than .product .btn-primary {
color: #fff;
background-color: #28a745;
border-color: #28a745;
}
.than .product .btn-primary:hover {
color: #fff;
background-color: #139e33;
border-color: #139e33;
}
/*End Sản phẩm tương tự của sản phẩm*/
/*Mô tả của sản phẩm*/
.than .product tr td .mt{
width:100%;
}
/*Table đỉa chỉ cửa hàng của sản phẩm*/
.than .modal-bg{
display:none;
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,0.5);
z-index:100;
overflow:auto;
}
.than .modal-content{
background-color:white;
margin:12% auto;
padding:20px;
width:70%;
box-shadow:0 5px 8px 0;
}
.than .modal-bg .modal-content td{
border:2px solid rgba(0,0,0,1);
padding: 5px 0 5px 0;
}
/*Nút X của table địa chỉ cửa hàng của sản phẩm*/
.than .closeBtn{
color:#ccc;
text-align:right;
font-size:30px;
}
.than .closeBtn:hover,.closeBtn:focus{
color:black;
text-decoration:none;
cursor:pointer;
}
/*End Table đỉa chỉ cửa hàng của sản phẩm*/
/*-----------------------End Hiển thị thông tin sản phảm-----------------------*/
/*-----------------------Hiển thị List Cart-----------------------*/
.than .tab{
width:100%;
}
.than .tab ul{
list-style:none;
width:100%;
}
.than .tab ul li{
float:left;
width:50%;
color: #888;
font-size:20px;
}
.than .tab ul li.tab1{
text-align:left;
padding-left:50px;
}
.than .tab ul li.tab2{
text-align:right;
padding-right:50px;
}
.than .giohang{
width:100%;
}
.than .giohang table{
width:100%;
}
.than .giohang table tr.1{
}
.than .giohang table tr.nb1 td{
border-bottom:2px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb2 td{
border-bottom:2px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb3 td{
border-bottom:4px solid rgba(0, 0, 0, 0.1 );
padding:10px 0px 10px 0px;
}
.than .giohang table tr.nb4{
width:100%;
}
/*Bi Loi khi them size vs mau sac tu day tro xuong */
.than .giohang table tr.nb4 td{
padding:10px 0px 0px 0px;
width:50%;
}
.than .giohang table input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 99%;
font-size:25px;
outline: none;
}
.than .giohang table tr.nb5 td.mid{
width:100%;
}
.than .giohang table tr td.mid input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 99.5%;
font-size:25px;
outline: none;
}
.than .giohang table tr.nb6 td.submit input{
display: block;
padding: 9px 0;
height: 50px;
border: 1px solid #d9d9d9;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: 10px 0 5px;
text-indent: 10px;
width: 66%;
font-size:25px;
outline: none;
background: rgb(45,110,21);
background: linear-gradient(0deg, rgba(45,110,21,1) 0%, rgba(0,255,4,1) 100%);
text-align:center;
margin-left:18%;
color:white;
font-weight:bold;
}
/*-----------------------End Hiển thị List Cart-----------------------*/
/*------------------------------FOOTER------------------------------*/
.banquyen{
width:100%;
height:auto;
background-color:#000;
float:left;
color: white;
}
.banquyen h4{
font-family: Tahoma;
padding-bottom: 5px;
}
.banquyen h6{
font-family: Tahoma;
padding-bottom: 5px;
}
.banquyen1{
width:100%;
height:100px;
background-color:#000;
float:left;
}
/*------------------------------END FOOTER------------------------------*/
/* Danh cho dien thoai*/
@media only screen and (max-width:739px){
}
/* Danh cho tablet*/
@media only screen and (min-width:740px) and (max-width:1023px){
.tieude .left{
}
.tieude .mid{
}
.tieude .right{
}
}
/* Danh cho pc*/
@media only screen and (min-width:1024px){
} | 0.345878 | 0.047736 |
ul.inline:after,
.a-citynav:after,
.a-city-it:after{
clear: both;
display: block;
height: 0;
visibility: hidden;
content: "\20";
}
ul.inline,
.a-citynav,
.a-city-it {
zoom:1;
}
ul.inline,
.auto * {
margin: 0;
padding: 0;
}
.auto {
font: 12px/22px \5b8b\4f53,tahoma,Geneva,sans-serif;
width: 277px;
overflow: hidden;
border: 1px solid #dbdbdb;
background: #fff;
box-shadow: 2px 2px 2px 0 rgba(102,102,102,0.2);
}
.auto .icon {
display: inline-block;
width: 16px;
height: 16px;
float: left;
margin-right: 6px;
position: relative;
top: 4px;
}
.auto a {
color: #333;
text-decoration: none;
}
.auto a:hover {
color: #e08;
text-decoration: underline;
}
.auto-line {
margin: 0;
color: #888;
font-weight: normal;
font-size: 12px;
line-height: 22px;
}
.auto-title {
color: #999;
font-size: 12px;
line-height: 22px;
font-weight: normal;
border-bottom: 1px dotted #dbdbdb
}
.auto-box { padding: 5px 10px; }
.auto-mini .auto-box, .auto-single .auto-box { padding:0; }
.a2row, .a3row, .a4row, .a5row {
overflow: hidden;
*zoom: 1;
margin-right: -2px;
padding-top: 2px;
margin-bottom: 10px;
}
.auto .inline li,
.a2row li,
.a3row li,
.a4row li,
.a5row li {
float: left;
padding: 0;
display: inline;
*zoom: 1;
overflow: hidden;
}
.a2row li { width: 49.5% }
.a3row li { width: 33.25% }
.a4row li { width: 24.9% }
.a5row li { width: 19.9% }
.auto a {
display: block;
white-space: nowrap;
overflow: hidden;
text-align: left;
text-overflow: ellipsis;
}
.auto-mini a { padding: 0 10px; }
.auto-single a { padding: 2px 10px; }
.a2row a, .a3row a {
margin-right:10px;
text-overflow:ellipsis;
}
.auto-mini a,
.auto-single a {
text-overflow:ellipsis;
color:#333;
}
.auto-mini a:hover,
.auto-single a:hover {
background:#ff9cc0;
color:#fff;
text-decoration:none
}
.auto-mini li,
.auto-single li {
_float:left;
clear:both;
_width:100%
}
.auto-mini a,
.auto-single a {
_float:left;
_width:100%;
}
.auto-big { width:355px; }
.auto-middle { width:277px; }
.auto-small { width:235px; }
.auto-mini { width:137px; }
.auto-type { color:#888 }
.auto-single a:hover .auto-type { color:#fff; }
.auto-channel .auto-type {
color: #ee0088;
font-weight: bold;
}
.auto-channel li {
margin-top: 1px;
background: #efeceb;
}
/* auto city */
.auto-key a,
.auto-city a {
outline: none;
color: #07c;
}
.auto-key a:hover,
.auto-city a:hover {
text-decoration: none;
color: #e38;
}
.auto-tip {
margin-bottom: -3px;
height: 30px;
line-height: 30px;
padding-left: 10px;
background: #fafafa;
color: #666;
}
.auto-key,
.auto-city {
border-top: 2px solid #f90;
}
/* auto city */
.auto-city {
color: #555;
}
.auto-city ul {
margin: 0;
padding: 0;
height: 1%;
}
.auto-city li {
float: left;
width: 20%;
text-align: center;
height: 25px;
line-height: 25px;
overflow: hidden;
}
.auto-history {
margin-bottom: 3px;
overflow: hidden;
}
.a-citynav {
border-bottom: 1px solid #DDD;
zoom: 1;
margin-bottom: 3px;
}
.a-citynav a.a-city-tnav {
position: relative;
bottom: -1px;
float: left;
display: inline;
margin-right: 8px;
padding: 0 8px;
height: 20px;
font-size: 12px;
line-height: 20px;
text-align: center;
cursor: pointer;
color: #666;
}
.a-citynav a.a-city-tnav:hover {
text-decoration: none;
color: #333;
}
.a-citynav a.active {
background: #fff;
border: 1px solid #dddddd;
border-bottom: 1px solid #fff;
color: #333;
}
.a-city-item {
display: block;
}
.a-city-it dt {
float: left;
display: block;
width: 16px;
color: #0069CA;
height: 25px;
line-height: 25px;
padding-top: 1px;
padding-top: 0\0;
font-weight: normal;
}
.a-citynav,
.a-city-it dt{
font-family: tahoma,Geneva,\5b8b\4f53,sans-serif;
}
.a-city-it dd {
margin-left: 20px;
zoom: 1;
_margin-left: 0;
}
.auto-city-simple li {
width: 48px;
}
/* auto keyword */
.auto-key li {
_float: left;
clear: both;
_width: 100%;
}
.auto-key li a {
text-overflow: ellipsis;
color: #333;
_float: left;
_width: 100%;
}
.auto-key li a:hover {
background: #fff9f0;
color: #e38;
} | docs/assets/less/auto.css | ul.inline:after,
.a-citynav:after,
.a-city-it:after{
clear: both;
display: block;
height: 0;
visibility: hidden;
content: "\20";
}
ul.inline,
.a-citynav,
.a-city-it {
zoom:1;
}
ul.inline,
.auto * {
margin: 0;
padding: 0;
}
.auto {
font: 12px/22px \5b8b\4f53,tahoma,Geneva,sans-serif;
width: 277px;
overflow: hidden;
border: 1px solid #dbdbdb;
background: #fff;
box-shadow: 2px 2px 2px 0 rgba(102,102,102,0.2);
}
.auto .icon {
display: inline-block;
width: 16px;
height: 16px;
float: left;
margin-right: 6px;
position: relative;
top: 4px;
}
.auto a {
color: #333;
text-decoration: none;
}
.auto a:hover {
color: #e08;
text-decoration: underline;
}
.auto-line {
margin: 0;
color: #888;
font-weight: normal;
font-size: 12px;
line-height: 22px;
}
.auto-title {
color: #999;
font-size: 12px;
line-height: 22px;
font-weight: normal;
border-bottom: 1px dotted #dbdbdb
}
.auto-box { padding: 5px 10px; }
.auto-mini .auto-box, .auto-single .auto-box { padding:0; }
.a2row, .a3row, .a4row, .a5row {
overflow: hidden;
*zoom: 1;
margin-right: -2px;
padding-top: 2px;
margin-bottom: 10px;
}
.auto .inline li,
.a2row li,
.a3row li,
.a4row li,
.a5row li {
float: left;
padding: 0;
display: inline;
*zoom: 1;
overflow: hidden;
}
.a2row li { width: 49.5% }
.a3row li { width: 33.25% }
.a4row li { width: 24.9% }
.a5row li { width: 19.9% }
.auto a {
display: block;
white-space: nowrap;
overflow: hidden;
text-align: left;
text-overflow: ellipsis;
}
.auto-mini a { padding: 0 10px; }
.auto-single a { padding: 2px 10px; }
.a2row a, .a3row a {
margin-right:10px;
text-overflow:ellipsis;
}
.auto-mini a,
.auto-single a {
text-overflow:ellipsis;
color:#333;
}
.auto-mini a:hover,
.auto-single a:hover {
background:#ff9cc0;
color:#fff;
text-decoration:none
}
.auto-mini li,
.auto-single li {
_float:left;
clear:both;
_width:100%
}
.auto-mini a,
.auto-single a {
_float:left;
_width:100%;
}
.auto-big { width:355px; }
.auto-middle { width:277px; }
.auto-small { width:235px; }
.auto-mini { width:137px; }
.auto-type { color:#888 }
.auto-single a:hover .auto-type { color:#fff; }
.auto-channel .auto-type {
color: #ee0088;
font-weight: bold;
}
.auto-channel li {
margin-top: 1px;
background: #efeceb;
}
/* auto city */
.auto-key a,
.auto-city a {
outline: none;
color: #07c;
}
.auto-key a:hover,
.auto-city a:hover {
text-decoration: none;
color: #e38;
}
.auto-tip {
margin-bottom: -3px;
height: 30px;
line-height: 30px;
padding-left: 10px;
background: #fafafa;
color: #666;
}
.auto-key,
.auto-city {
border-top: 2px solid #f90;
}
/* auto city */
.auto-city {
color: #555;
}
.auto-city ul {
margin: 0;
padding: 0;
height: 1%;
}
.auto-city li {
float: left;
width: 20%;
text-align: center;
height: 25px;
line-height: 25px;
overflow: hidden;
}
.auto-history {
margin-bottom: 3px;
overflow: hidden;
}
.a-citynav {
border-bottom: 1px solid #DDD;
zoom: 1;
margin-bottom: 3px;
}
.a-citynav a.a-city-tnav {
position: relative;
bottom: -1px;
float: left;
display: inline;
margin-right: 8px;
padding: 0 8px;
height: 20px;
font-size: 12px;
line-height: 20px;
text-align: center;
cursor: pointer;
color: #666;
}
.a-citynav a.a-city-tnav:hover {
text-decoration: none;
color: #333;
}
.a-citynav a.active {
background: #fff;
border: 1px solid #dddddd;
border-bottom: 1px solid #fff;
color: #333;
}
.a-city-item {
display: block;
}
.a-city-it dt {
float: left;
display: block;
width: 16px;
color: #0069CA;
height: 25px;
line-height: 25px;
padding-top: 1px;
padding-top: 0\0;
font-weight: normal;
}
.a-citynav,
.a-city-it dt{
font-family: tahoma,Geneva,\5b8b\4f53,sans-serif;
}
.a-city-it dd {
margin-left: 20px;
zoom: 1;
_margin-left: 0;
}
.auto-city-simple li {
width: 48px;
}
/* auto keyword */
.auto-key li {
_float: left;
clear: both;
_width: 100%;
}
.auto-key li a {
text-overflow: ellipsis;
color: #333;
_float: left;
_width: 100%;
}
.auto-key li a:hover {
background: #fff9f0;
color: #e38;
} | 0.53607 | 0.219965 |
BuddyPress Buttons/Forms
--------------------------------------------------------------*/
.gp-theme #buddypress .dir-search input[type=search],
.gp-theme #buddypress .dir-search input[type=text],
.gp-theme #buddypress .groups-members-search input[type=search],
.gp-theme #buddypress .groups-members-search input[type=text],
.gp-theme #buddypress .standard-form input[type=color],
.gp-theme #buddypress .standard-form input[type=date],
.gp-theme #buddypress .standard-form input[type=datetime-local],
.gp-theme #buddypress .standard-form input[type=datetime],
.gp-theme #buddypress .standard-form input[type=email],
.gp-theme #buddypress .standard-form input[type=month],
.gp-theme #buddypress .standard-form input[type=number],
.gp-theme #buddypress .standard-form input[type=password],
.gp-theme #buddypress .standard-form input[type=range],
.gp-theme #buddypress .standard-form input[type=search],
.gp-theme #buddypress .standard-form input[type=tel],
.gp-theme #buddypress .standard-form input[type=text],
.gp-theme #buddypress .standard-form input[type=time],
.gp-theme #buddypress .standard-form input[type=url],
.gp-theme #buddypress .standard-form input[type=week],
.gp-theme #buddypress .standard-form select,
.gp-theme #buddypress .standard-form textarea {
font-family: Helvetica, Arial, sans-serif;
font-size: 12.5px;
padding: 8px 10px 7px 10px;
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress .dir-search input[type=search]:focus,
.gp-theme #buddypress .dir-search input[type=text]:focus,
.gp-theme #buddypress .groups-members-search input[type=search]:focus,
.gp-theme #buddypress .groups-members-search input[type=text]:focus,
.gp-theme #buddypress .standard-form input[type=color]:focus,
.gp-theme #buddypress .standard-form input[type=date]:focus,
.gp-theme #buddypress .standard-form input[type=datetime-local]:focus,
.gp-theme #buddypress .standard-form input[type=datetime]:focus,
.gp-theme #buddypress .standard-form input[type=email]:focus,
.gp-theme #buddypress .standard-form input[type=month]:focus,
.gp-theme #buddypress .standard-form input[type=number]:focus,
.gp-theme #buddypress .standard-form input[type=password]:focus,
.gp-theme #buddypress .standard-form input[type=range]:focus,
.gp-theme #buddypress .standard-form input[type=search]:focus,
.gp-theme #buddypress .standard-form input[type=tel]:focus,
.gp-theme #buddypress .standard-form input[type=text]:focus,
.gp-theme #buddypress .standard-form input[type=time]:focus,
.gp-theme #buddypress .standard-form input[type=url]:focus,
.gp-theme #buddypress .standard-form input[type=week]:focus,
.gp-theme #buddypress .standard-form select:focus,
.gp-theme #buddypress .standard-form textarea:focus {
background-color: #fff;
border-color: #ccc;
}
.gp-theme #buddypress .comment-reply-link,
.gp-theme #buddypress a.button,
.gp-theme #buddypress button,
.gp-theme #buddypress div.generic-button a,
.gp-theme #buddypress input[type=button],
.gp-theme #buddypress input[type=reset],
.gp-theme #buddypress input[type=submit],
.gp-theme #buddypress ul.button-nav li a,
a.bp-title-button {
background-color: #2f9bc1;
border: 0;
color: #fff;
font-weight: bold;
line-height: 1;
border-radius: 4px;
}
.gp-theme #buddypress .comment-reply-link:hover,
.gp-theme #buddypress a.button:hover,
.gp-theme #buddypress button:hover,
.gp-theme #buddypress div.generic-button a:hover,
.gp-theme #buddypress input[type=button]:hover,
.gp-theme #buddypress input[type=reset]:hover,
.gp-theme #buddypress input[type=submit]:hover,
.gp-theme #buddypress ul.button-nav li a:hover,
a.bp-title-button:hover {
background-color: #2a8cae;
color: #fff;
border: 0;
}
.gp-theme #buddypress a.disabled,
.gp-theme #buddypress button.disabled,
.gp-theme #buddypress button.pending,
.gp-theme #buddypress div.pending a,
.gp-theme #buddypress input[type=submit].disabled,
.gp-theme #buddypress input[type=submit].pending,
.gp-theme #buddypress input[type=submit][disabled=disabled],
.gp-theme #buddypress input[type=button].disabled,
.gp-theme #buddypress input[type=button].pending,
.gp-theme #buddypress input[type=reset].disabled,
.gp-theme #buddypress input[type=reset].pending {
border-color: 0;
color: #fff;
}
.gp-theme #buddypress .standard-form select {
font-size: 14px;
font-weight: 300;
max-width: 100%;
line-height: 15px;
}
.bp-tooltip:active:after,
.bp-tooltip:focus:after,
.bp-tooltip:hover:after {
display: none;
}
/*--------------------------------------------------------------
Messages
--------------------------------------------------------------*/
.gp-theme #buddypress div#message.error p,
#buddypress div#message.updated p {
border-radius: 8px;
border: 0;
font-weight: bold;
}
.gp-theme .sidebar div#message {
position: relative;
width: 100%;
overflow: hidden;
clear: both;
padding: 20px;
margin-bottom: 20px;
background: #fff;
border-radius: 8px;
}
.gp-theme .sidebar #close-notice {
position: absolute;
top: 10px;
right: 10px;
padding: 4px 6px;
font-size: 10px;
}
/*--------------------------------------------------------------
BuddyPress Page Header
--------------------------------------------------------------*/
.gp-theme #buddypress div#item-header {
margin-bottom: 20px;
}
.gp-theme #buddypress #item-header-content {
padding-top: 50px;
}
.gp-theme #buddypress div#item-header #item-header-cover-image #item-header-content,
.gp-theme #buddypress div#item-header #item-header-cover-image #item-actions {
max-width: 42% !important;
}
.gp-theme #buddypress div#item-header #item-header-avatar img.avatar {
border-radius: 100%;
width: 150px;
height: 150px;
}
.gp-theme #buddypress div#item-header span.activity {
margin: 5px 0;
}
.gp-theme #buddypress div#item-header div#item-meta {
font-size: 14px;
line-height: 24px;
}
.gp-theme #buddypress div#item-header ul {
margin-left: 0;
}
.gp-theme #buddypress div#item-header div#item-actions h2 {
font-size: 12px;
line-height: 12px;
font-weight: bold;
}
.gp-theme #buddypress div#item-header .generic-button a {
display: block;
line-height: 1;
}
.gp-theme #buddypress div.dir-search {
position: relative;
margin-top: -53px;
}
.gp-theme #buddypress div.dir-search input[type=text],
.gp-theme #buddypress li.groups-members-search input[type=text],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=text] {
padding: 8px 95px 8px 8px;
font-size: 14px;
margin: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.gp-theme #buddypress div.dir-search input[type=submit],
.gp-theme #buddypress li.groups-members-search input[type=submit],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=submit] {
position: absolute;
top: 0;
right: 0;
height: 100%;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.gp-theme .type-bp_members #buddypress .user-nicename {
margin-top: 10px !important;
}
/*--------------------------------------------------------------
BuddyPress Primary Tabs
--------------------------------------------------------------*/
.gp-theme #buddypress div.item-list-tabs {
margin: 0 -20px 0 -20px;
padding: 20px 0;
border-top: 1px solid #F0F0ED;
}
.gp-theme #buddypress div.item-list-tabs ul {
padding: 0 20px;
overflow: hidden;
}
.gp-theme #buddypress div.item-list-tabs ul li {
display: inline-block;
float: none;
margin: 0 3px 3px 0;
}
.gp-theme #buddypress div.item-list-tabs ul li a,
.gp-theme #buddypress div.item-list-tabs ul li span {
color: #274a5c;
padding: 10px;
margin: 0;
line-height: 12px;
font-weight: bold;
border-radius: 8px;
}
.gp-theme #buddypress div.item-list-tabs ul li.current a,
.gp-theme #buddypress div.item-list-tabs ul li.selected a,
.gp-theme #buddypress div.item-list-tabs ul li a:hover {
background-color: #F7F7F7;
opacity: 1
}
.gp-theme #buddypress div.item-list-tabs ul li a span,
.gp-theme #buddypress div.item-list-tabs ul li.current a span,
.gp-theme #buddypress div.item-list-tabs ul li.selected a span {
border: 0;
background: #33363C;
font-size: 10px;
border-radius: 3px;
margin-left: 3px;
padding: 3px 5px;
color: #fff;
}
.gp-theme #buddypress #gp-bp-tabs-button {
display: none;
padding: 0 15px;
font-size: 14px;
font-weight: 400;
font-family: 'FontAwesome';
cursor: pointer;
}
.gp-theme #buddypress #gp-bp-tabs-button:before {
content: '\f0c9';
}
.gp-theme #buddypress div.item-list-tabs ul li.loading a {
-webkit-animation:loader-pulsate .5s infinite ease-in-out alternate;
-moz-animation:loader-pulsate .5s infinite ease-in-out alternate;
}
@-webkit-keyframes loader-pulsate {
from{
border-color:none;
-webkit-box-shadow:none;
box-shadow:none;
opacity: 1;
}
to{
border-color:none;
-webkit-box-shadow:none;
box-shadow:none;
opacity: 0.8;
}
}
@-moz-keyframes loader-pulsate {
from{
border-color:none;
-moz-box-shadow:none;
box-shadow:none;
opacity: 1;
}
to{
border-color:none;
-moz-box-shadow:none;
box-shadow:none;
opacity: 0.8;
}
}
/*--------------------------------------------------------------
BuddyPress Sub Navigation
--------------------------------------------------------------*/
.gp-theme #buddypress div.item-list-tabs#subnav {
margin: 0 -20px 20px -20px;
padding: 10px 0;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul {
padding: 0 20px;
overflow: hidden;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li a {
padding: 5px 8px;
font-size: 11px;
line-height: 21px;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li a span {
margin-left: 4px;
}
.gp-theme #buddypress div#subnav.item-list-tabs ul li.feed a {
display: inline-block;
line-height: 1;
padding: 5px 7px 4px 7px;
font-size: 11px;
font-weight: bold;
color: #fff;
background-color: #ee8600;
border-radius: 4px;
}
.gp-theme #buddypress div#subnav.item-list-tabs ul li.feed a:hover {
background: #D17600;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search form,
.gp-theme #buddypress div.item-list-tabs#subnav .message-search form {
position: relative;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search input,
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input {
height: 43px;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search input[type=submit],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=submit] {
padding: 13px;
font-size: 16px;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li.last {
float: right;
margin: 0 0 0 15px;
padding: 5px 0;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li.last label {
font-size: 13px;
line-height: 1;
}
.gp-theme #buddypress div.item-list-tabs ul li.last select {
border: 0;
font-size: 13px;
line-height: 1;
font-weight: 400;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 8px;
}
/*--------------------------------------------------------------
BuddyPress General Page
--------------------------------------------------------------*/
.gp-theme #buddypress .item-body {
margin: 40px 0;
}
/*--------------------------------------------------------------
BuddyPress Activity Page
--------------------------------------------------------------*/
.gp-theme #buddypress form#whats-new-form p.activity-greeting {
line-height: 20px;
}
.gp-theme #buddypress form#whats-new-form #whats-new-content {
padding-bottom: 30px !important;
}
.gp-theme #buddypress form#whats-new-form textarea {
width: 100%;
font-family: Helvetica, Arial, sans-serif;
font-size: 12.5px;
padding: 8px 10px 7px 10px;
margin: 0;
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress #whats-new-post-in-box {
font-size: 14px;
}
.gp-theme #buddypress form#whats-new-form #whats-new-options select {
font-size: 14px;
margin-left: 10px;
padding: 5px 20px 5px 5px;
}
#whats-new-submit #aw-whats-new-submit {
font-size: small;
line-height: 1;
padding: 8px 10px;
}
.gp-theme #buddypress > ul.item-list > li img.avatar {
width: 48px;
height: 48px;
}
.gp-theme #buddypress ul.item-list li div.item-title,
.gp-theme #buddypress ul.item-list li h4 {
font-weight: 500;
font-size: 14px;
line-height: 19px;
width: 60%;
}
.gp-theme #buddypress div.item-meta {
line-height: 1;
opacity: 1;
margin-top: 2.5px;
}
.gp-theme #buddypress span.activity {
font-size: 10px;
padding: 4px 8px;
background-color: #E4ECF1;
color: #6595AF;
font-weight: bold;
line-height: 1;
border-radius: 4px;
opacity: 1;
margin-bottom: 10px;
}
/*--------------------------------------------------------------
BuddyPress Groups Page
--------------------------------------------------------------*/
/* Pagination ************************************/
.gp-theme #buddypress div.pagination .pag-count {
margin-left: 0;
}
.gp-theme #buddypress div.pagination#pag-top {
padding-top: 0;
}
/* List ************************************/
.gp-theme #buddypress #groups-list.item-list li {
float: left;
margin-right: 2%;
border: 0;
}
.gp-theme #buddypress #groups-list.item-list li .gp-group-box {
width: 210px;
margin: 0 auto;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li {
width: 18.4%;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 0;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: left;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li,
.gp-theme.sb-right #buddypress #groups-list.item-list li,
.gp-theme.sb-both #buddypress #groups-list.item-list li {
width: 48%;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.sb-right #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.sb-both #buddypress #groups-list.item-list li:nth-of-type(2n) {
margin-right: 0;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.sb-right #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.sb-both #buddypress #groups-list.item-list li:nth-of-type(2n+1) {
clear: left;
}
.gp-theme #buddypress #groups-list.item-list li .item-avatar {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 0 10px 0;
}
.gp-theme #buddypress #groups-list.item-list li img.avatar {
width: 210px;
height: 210px;
}
.gp-theme #buddypress #groups-list.item-list li div.item-title {
width: 100%;
}
.gp-theme #buddypress #groups-list.item-list li div.item-title a:hover {
text-decoration: underline;
}
.gp-theme #buddypress #groups-list.item-list li .meta {
font-size: 11px;
margin-top: 0;
}
.gp-theme #buddypress #groups-list.item-list li div.action {
top: auto;
bottom: 10px;
right: 10px;
}
#groups-list .item-avatar .group-button {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
white-space: nowrap;
}
/* Create group ************************************/
.gp-theme.gp-responsive #buddypress #group-create-body .left-menu img {
margin-bottom: 20px;
}
.gp-theme #buddypress form.standard-form .main-column {
margin-left: 230px;
}
.gp-theme #buddypress div.bp-avatar-nav {
margin-top: 30px;
}
.gp-theme #buddypress #drag-drop-area {
border-width: 2px;
}
/* Invite list ************************************/
.gp-theme #buddypress div#invite-list {
padding: 20px;
width: 230px;
}
.gp-theme.group-invites #buddypress form.standard-form .main-column {
margin-left: 250px;
}
/* Single group ************************************/
.gp-theme #buddypress div#item-header .page-title {
margin: 0;
width: 75%;
}
.gp-theme #buddypress div#item-header .gp-entry-title {
font-size: 30px;
line-height: 40px;
}
/* Members Tab ************************************/
.gp-theme #buddypress ul.item-list h5 {
margin: 0;
font-weight: 500;
font-size: 14px;
line-height: 19px;
}
.gp-theme #buddypress ul.item-list h5 .small .button {
font-size: 10px;
padding: 5px;
margin-top: 3px;
}
/*--------------------------------------------------------------
BuddyPress Members Page
--------------------------------------------------------------*/
/* List ************************************/
.gp-theme #buddypress #members-dir-list .item-list .item,
.gp-theme #buddypress .friends .item-list .item,
.gp-theme #buddypress ul.item-list li div.action {
margin-left: 78px;
}
.gp-theme #buddypress ul.item-list li div.action {
float: none;
margin-top: 10px;
}
/* Profile page ************************************/
.gp-theme #buddypress div.profile h2 {
font-size: 16px;
line-height: 24px;
}
.gp-theme .bp_members .page-title {
display: none;
}
.gp-theme #buddypress #profile-edit-form ul.button-nav {
margin-left: 0;
}
#buddypress table.profile-fields {
border: 0;
}
/* Notifications/Messages ************************************/
.gp-theme #buddypress div.message-search {
margin: 20px 30px 0 0;
}
.gp-theme #buddypress div#message-thread img.avatar {
margin-right: 20px;
}
.gp-theme #buddypress div#message-thread div.message-content {
margin-left: 50px;
}
.gp-theme #buddypress .notifications-options-nav,
.gp-theme #buddypress .messages-options-nav {
margin-top: 20px;
}
.gp-theme #buddypress table#message-threads tr.unread td {
font-weight: 300;
}
.gp-theme #buddypress #message-threads img.avatar {
margin: 0 5px 0 0;
float: left;
}
.gp-theme #message-threads .thread-from {
font-size: 14px;
line-height: 20px;
}
.gp-theme #buddypress #message-threads .thread-info p {
font-size: 14px;
line-height: 20px;
}
.gp-theme #buddypress td.thread-options {
font-size: 13px;
}
ul.acfb-holder li {
float: none;
}
.gp-theme #buddypress input#send-to-input {
clear: both;
width: 275px;
}
.gp-theme #buddypress table.notifications {
font-size: 13px;
}
/* Friends List ************************************/
.gp-theme #buddypress #friend-list li {
overflow: auto;
}
/* Individual member activity ************************************/
.gp-theme.activity-permalink #buddypress div.activity-comments ul li {
padding: 15px 0;
}
/*--------------------------------------------------------------
BuddyPress Activity
--------------------------------------------------------------*/
/* List ************************************/
.gp-theme #buddypress .activity-list #activity-stream {
margin-top: -20px;
}
.gp-theme #buddypress .activity-list ul.item-list {
border: 0;
}
.gp-theme #buddypress ul.item-list {
border: 0;
}
.gp-theme #buddypress ul.item-list li {
border-bottom: 1px solid #F0F0ED;
padding: 15px 0;
}
.gp-theme #buddypress ul.item-list li img.avatar {
margin-right: 15px;
}
.gp-theme #buddypress .activity-list .activity-content {
margin-left: 73px;
}
.gp-theme #buddypress .activity-list .activity-content blockquote,
.gp-theme #buddypress .activity-list .activity-content blockquote a {
font-size: 13px;
line-height: 20px;
padding: 0;
background: none;
font-style: italic;
color: inherit;
margin: 0;
}
/* Activity header ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-header,
.gp-theme #buddypress .activity-list .activity-content .comment-header {
font-size: 13px;
line-height: 20px;
}
.gp-theme #buddypress #activity-stream .activity-content .activity-header p {
margin: 0;
}
.gp-theme #buddypress .activity-list .activity-header a {
font-weight: 700;
}
.gp-theme #buddypress .activity-list .activity-header a:hover {
text-decoration: underline;
}
.gp-theme #buddypress .activity-list a.activity-time-since {
font-size: 11px;
font-weight: 300;
display: block;
}
/* Activity avatar ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-header img.avatar {
display: none;
}
.gp-theme #buddypress .activity-list ul.item-list li img.avatar {
width: 48px;
height: 48px;
}
/* Activity content ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-inner {
font-size: 13px;
line-height: 20px;
margin-top: 0;
}
/* Activity buttons ************************************/
.gp-theme #buddypress .activity-list div.activity-meta {
margin-top: 6.5px;
}
.gp-comments-disabled .acomment-reply {
display: none;
}
.gp-theme #buddypress .activity-list.comments-disabled .activity-meta,
.gp-theme #buddypress .activity-list.comments-disabled .activity-comments {
display: none;
}
.gp-theme #buddypress div.activity-meta a.button {
display: inline-block;
background-color: #77af12;
padding: 5px 8px;
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
margin: 0 0 2px 0;
}
.gp-theme #buddypress div.activity-meta a.button:hover {
background-color: #679710;
}
.gp-theme #buddypress .activity-list #reply-title small a span,
.gp-theme #buddypress .activity-list a.bp-primary-action span {
font-size: 10px;
margin-left: 0;
padding: 0;
position: relative;
top: 0;
right: 0;
border-radius: 4px;
background: none;
}
/* Comment reply form ************************************/
.gp-theme #buddypress div.activity-comments form .ac-textarea {
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress .activity-list div.ac-reply-avatar img {
border: 0;
}
.gp-theme #buddypress .activity-list .ac-reply-cancel {
font-size: 11px;
}
/* Comment replies ************************************/
.gp-theme #buddypress .activity-list div.activity-comments > ul {
padding: 0;
}
.gp-theme #buddypress .activity-list div.activity-comments ul li:first-child {
margin-top: 15px;
border-top: 1px solid #F0F0ED;
}
.gp-theme #buddypress .activity-list div.activity-comments ul li:last-child {
padding-bottom: 0;
border-bottom: 0;
}
/* NEW - Since 1.3 */
.gp-theme #buddypress div.activity-comments ul li > ul {
overflow: hidden;
}
.gp-theme #buddypress .activity-list div.activity-comments div.acomment-meta {
font-size: 13px;
line-height: 20px;
}
.gp-theme #buddypress .activity-list .acomment-meta a {
font-weight: 500;
}
.gp-theme #buddypress .activity-list .acomment-meta a.activity-time-since {
font-size: 11px;
font-weight: 300;
}
.gp-theme #buddypress .activity-list div.activity-comments div.acomment-content {
font-size: 13px;
line-height: 20px;
margin: 10px 0 0 40px;
}
.gp-theme #buddypress .activity-list .acomment-options {
margin: 5px 0 0 40px;
}
.gp-theme #buddypress .activity .acomment-options a {
background-color: #77af12;
color: #fff;
padding: 4px 7px;
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
font-weight: bold;
margin-right: 0;
border-radius: 4px;
}
.gp-theme #buddypress .activity .acomment-options a:hover {
background-color: #679710;
}
.gp-theme #buddypress div.activity-comments {
margin-left: 73px;
}
.gp-theme #buddypress div.activity-comments form.ac-form,
.gp-theme #buddypress div.activity-comments li form.ac-form {
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
.gp-theme #buddypress div.activity-comments form div.ac-reply-content {
margin-left: 63px;
padding-left: 10px;
}
/* Load more button ************************************/
.gp-theme #buddypress .activity-list li.load-more,
.gp-theme #buddypress .activity-list li.load-newest {
padding: 0;
margin: 15px 0 0 0;
background: transparent;
border-bottom: 0;
}
.gp-theme #buddypress .activity-list li.load-more a,
.gp-theme #buddypress .activity-list li.load-newest a {
display: block;
width: 100%;
background-color: #F7F7F7;
padding: 8px 0 8px 12px;
font-weight: bold;
border-radius: 4px;
color: #33363c;
}
.gp-theme #buddypress .activity-list li.load-more a:hover,
.gp-theme #buddypress .activity-list li.load-newest a:hover {
color: #2F9BC1;
}
.gp-theme #buddypress .activity-list li.load-more.loading a {
-webkit-animation: load-more-pulsate .5s infinite ease-in-out alternate;
-moz-animation: load-more-pulsate .5s infinite ease-in-out alternate;
opacity: 0;
}
@-webkit-keyframes load-more-pulsate {
from {opacity: 0;}
to {opacity: 0.4}
}
@-moz-keyframes load-more-pulsate {
from {opacity: 0;}
to {opacity: 0.4}
}
/*--------------------------------------------------------------
BuddyPress rtMedia plugin
--------------------------------------------------------------*/
.rtmedia-gallery-item-actions a:hover {
color: #fff;
}
.rtmedia-actions-before-comments .rtmedia-comment-link,
.gp-theme #buddypress .rtmedia-actions-before-comments .rtmedia-like,
.rtmedia-actions-before-comments .rtmedia-comment-link:hover,
.gp-theme #buddypress .rtmedia-actions-before-comments .rtmedia-like:hover {
background-color: transparent;
color: #000;
}
/*--------------------------------------------------------------------------------------
2 - Widgets
--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
BuddyPress Groups/Members/Friends Widgets
--------------------------------------------------------------*/
/* Filter Options ************************************/
.gp-theme .widget.buddypress div.item-options {
display: inline-block;
position: relative;
color: rgba(0, 0, 0, 0);
line-height: 1;
font-size: 11px;
margin-bottom: 20px;
padding: 0;
}
.gp-theme .widget.buddypress div.item-options a {
display: inline-block;
background-color: #77af12;
color: #fff;
font-weight: bold;
font-size: 10px;
padding: 5px 8px;
margin: 0 3px 2px 0;
border: 0;
line-height: 1;
border-radius: 4px;
}
.gp-theme .widget.buddypress div.item-options a.selected,
.gp-theme .widget.buddypress div.item-options a:hover {
background-color: #679710;
}
.gp-theme .widget.buddypress div.item-options .bp-separator {
display: none;
}
/* List items ************************************/
.gp-theme .widget.buddypress #friends-list li,
.gp-theme .widget.buddypress #groups-list li,
.gp-theme .widget.buddypress #members-list li {
margin: 0;
}
.gp-theme .widget.buddypress #friends-list li:last-child,
.gp-theme .widget.buddypress #groups-list li:last-child,
.gp-theme .widget.buddypress #members-list li:last-child {
margin: 0;
padding: 0;
}
/* Item Options ************************************/
.gp-theme .widget.buddypress div.item-options .gp-item-options-button:before {
position: absolute;
top: 0;
right: 20px;
font-family: 'FontAwesome';
content: '\f0c9';
font-size: 18px;
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options {
padding-top: 36px;
right: 0;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options > a {
display: none;
line-height: 1;
padding: 10px 15px;
margin-right: 20px;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options.gp-active a {
display: block;
}
/* Item headers ************************************/
.gp-theme .widget.buddypress .item-title {
font-weight: bold;
font-size: 12px;
line-height: 17px;
}
/* Item Avatars ************************************/
.gp-theme .widget.buddypress ul.item-list img.avatar {
width: 40px;
height: 40px;
}
/* Item Content ************************************/
.gp-theme .widget.buddypress div.item {
margin-bottom: 0;
}
/* Item meta ************************************/
.gp-theme .widget.buddypress div.item-meta {
line-height: 1;
opacity: 1;
margin-top: 2.5px;
margin-left: 52px;
}
.gp-theme .widget.buddypress span.activity {
padding: 4px 8px;
line-height: 1;
color: #6595AF;
font-weight: bold;
display: inline-block;
font-size: 10px;
border-radius: 4px;
background-color: #E4ECF1;
opacity: 1;
}
/*.gp-theme #buddypress #groups-list.item-list li .meta,
.gp-theme #buddypress span.highlight {
padding: 4px 8px;
line-height: 1;
color: #fff;
font-weight: bold;
display: inline-block;
font-size: 10px;
border-radius: 4px;
background-color: #E47070;
opacity: 1;
}*/
/*--------------------------------------------------------------
BuddyPress Recently Active Members/Who's Online Widgets
--------------------------------------------------------------*/
.gp-theme .widget.buddypress.widget_bp_core_recently_active_widget,
.gp-theme .widget.buddypresswidget_bp_core_whos_online_widget {
padding-bottom: 5px;
}
.gp-theme .widget.buddypress div.item-avatar img {
width: 41px;
height: 41px;
margin: 0;
}
/*--------------------------------------------------------------
Community Stats Widget - deprecated since v2.0
--------------------------------------------------------------*/
.widget.widget_etivite_bp_community_stats_widget li {
font-weight: bold;
font-size: 14px;
color: #fff;
padding: 6px 10px;
text-transform: capitalize;
background: #E47070;
border-radius: 4px;
margin-bottom: 5px;
}
.widget.widget_etivite_bp_community_stats_widget li .community-count,
.widget.widget_etivite_bp_community_stats_widget li .community-post {
font-size: 20px;
float: right;
text-align: right;
}
/*--------------------------------------------------------------
BuddyPress Global Search plugin
--------------------------------------------------------------*/
.gp-theme #buddypress .search_results ul.item-list li div.item-desc {
display: none;
}
/*--------------------------------------------------------------------------------------
3 - Media Queries
--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
Smaller desktops
--------------------------------------------------------------*/
@media only screen and (max-width: 1260px) {
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li {
width: 23.5%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 2%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: none;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n) {
margin-right: 0;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n+1) {
clear: left;
}
}
/*--------------------------------------------------------------
Tablet (landscape)
--------------------------------------------------------------*/
@media only screen and (max-width: 1082px) {
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li {
width: 32%
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n) {
margin-right: 2%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n+1) {
clear: none;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(3n) {
margin-right: 0;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(3n+1) {
clear: left;
}
}
/*--------------------------------------------------------------
Tablet (portrait)
--------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
.gp-theme.gp-responsive #buddypress #groups-list.item-list li {
width: 48% !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(3n) {
margin-right: 2% !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(3n+1) {
clear: none !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n) {
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n+1) {
clear: left !important;
}
}
/*--------------------------------------------------------------
Small Tablet - 782 - 767px (BuddyPress division)
--------------------------------------------------------------*/
@media only screen and (max-width: 782px) {
.gp-theme #buddypress #item-header-content {
padding-top: 0;
}
.gp-theme.gp-responsive #buddypress div#item-header #item-header-cover-image #item-header-content,
.gp-theme.gp-responsive #buddypress div#item-header #item-header-cover-image #item-actions {
max-width: none !important;
}
.gp-theme.gp-responsive .type-bp_members #buddypress .user-nicename {
margin-top: 25px !important;
}
}
/*--------------------------------------------------------------
Mobile (landscape)
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
.gp-theme.gp-responsive #buddypress div.item-list-tabs {
margin: 0 -20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul {
padding: 0 15px;
}
.gp-theme.gp-responsive #buddypress div#item-header .gp-entry-title {
width: 100%;
}
.gp-theme.gp-responsive #buddypress div#item-header div#item-meta {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-options {
height: auto !important;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-post-in-box {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-submit {
width: 100%;
margin-bottom: 10px;
}
.gp-theme.gp-responsive #buddypress div.dir-search {
position: relative;
margin: 0 0 40px 0;
float: left;
text-align: left;
width: 100%;
}
.gp-theme.gp-responsive #buddypress div.dir-search input[type=text] {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form.standard-form .left-menu,
.gp-theme.gp-responsive #buddypress div#invite-list {
float: none;
width: 100%;
}
.gp-theme.gp-responsive #buddypress form.standard-form .main-column {
margin-left: 0;
}
.gp-responsive .rtmedia-plupload-container {
margin-bottom: 10px;
}
.gp-responsive #buddypress .activity-inner object,
.gp-responsive #buddypress .activity-inner embed,
.gp-responsive #buddypress .activity-inner video,
.gp-responsive #buddypress .activity-inner iframe {
height: auto;
}
}
/*--------------------------------------------------------------
Mobile (portrait)
--------------------------------------------------------------*/
@media only screen and (max-width: 567px) {
.gp-theme.gp-responsive #buddypress #gp-bp-tabs-button {
display: block;
padding: 0 15px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs:not(#subnav) ul {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul li {
width: 100%;
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul li a {
padding: 10px 20px;
border-radius: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li {
width: 100%;
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li a {
padding: 5px 20px;
border-radius: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.feed {
margin: 10px 0 0 0;
padding-left: 20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.feed a {
border-radius: 4px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.last {
float: left;
margin: 10px 0 0 0;
padding-left: 20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.groups-members-search,
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav .message-search {
padding: 15px 15px 0 15px;
margin: 0;
}
.gp-theme.gp-responsive #buddypress li.groups-members-search input[type=text],
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav .message-search input[type=text] {
width: 100%;
}
.gp-theme #buddypress form#whats-new-form #whats-new-options select {
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.activity-comments,
.gp-theme.gp-responsive #buddypress div.activity-comments ul li > ul {
margin-left: 0;
padding-left: 0;
}
.gp-theme.gp-responsive #buddypress div.activity-comments ul {
width: 100%;
float: none;
}
.gp-theme.gp-responsive #buddypress div.activity-comments > ul > li {
padding-left: 33px;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li {
width: 100% !important;
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: left !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li .item {
margin-left: 0;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li .gp-group-box div.action {
position: absolute;
}
.gp-theme.gp-responsive #buddypress #group-create-body .left-menu img {
display: none;
}
.gp-theme.gp-responsive #buddypress div#item-header ul li {
float: left;
}
.gp-theme.gp-responsive #buddypress .standard-form #basic-details-section,
.gp-theme.gp-responsive #buddypress .standard-form #blog-details-section,
.gp-theme.gp-responsive #buddypress .standard-form #profile-details-section {
width: 100%;
}
.gp-theme.gp-responsive.activity-permalink #buddypress .activity-list .activity-avatar {
display: none;
}
.gp-theme.gp-responsive.activity-permalink #buddypress .activity-list .activity-content,
.gp-theme.gp-responsive.activity-permalink #buddypress div.activity-comments {
margin-left: 0;
}
.gp-responsive #message-threads thead tr,
.gp-responsive table.notifications thead tr {
display: none;
}
.gp-responsive #message-threads td,
.gp-responsive table.notifications td {
display: block;
}
.gp-theme.gp-responsive #buddypress table#message-threads tr.unread td {
border-width: 0;
}
.gp-theme.gp-responsive #buddypress table#message-threads tr.unread td.thread-options {
border-bottom-width: 2px;
}
} | h.css | BuddyPress Buttons/Forms
--------------------------------------------------------------*/
.gp-theme #buddypress .dir-search input[type=search],
.gp-theme #buddypress .dir-search input[type=text],
.gp-theme #buddypress .groups-members-search input[type=search],
.gp-theme #buddypress .groups-members-search input[type=text],
.gp-theme #buddypress .standard-form input[type=color],
.gp-theme #buddypress .standard-form input[type=date],
.gp-theme #buddypress .standard-form input[type=datetime-local],
.gp-theme #buddypress .standard-form input[type=datetime],
.gp-theme #buddypress .standard-form input[type=email],
.gp-theme #buddypress .standard-form input[type=month],
.gp-theme #buddypress .standard-form input[type=number],
.gp-theme #buddypress .standard-form input[type=password],
.gp-theme #buddypress .standard-form input[type=range],
.gp-theme #buddypress .standard-form input[type=search],
.gp-theme #buddypress .standard-form input[type=tel],
.gp-theme #buddypress .standard-form input[type=text],
.gp-theme #buddypress .standard-form input[type=time],
.gp-theme #buddypress .standard-form input[type=url],
.gp-theme #buddypress .standard-form input[type=week],
.gp-theme #buddypress .standard-form select,
.gp-theme #buddypress .standard-form textarea {
font-family: Helvetica, Arial, sans-serif;
font-size: 12.5px;
padding: 8px 10px 7px 10px;
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress .dir-search input[type=search]:focus,
.gp-theme #buddypress .dir-search input[type=text]:focus,
.gp-theme #buddypress .groups-members-search input[type=search]:focus,
.gp-theme #buddypress .groups-members-search input[type=text]:focus,
.gp-theme #buddypress .standard-form input[type=color]:focus,
.gp-theme #buddypress .standard-form input[type=date]:focus,
.gp-theme #buddypress .standard-form input[type=datetime-local]:focus,
.gp-theme #buddypress .standard-form input[type=datetime]:focus,
.gp-theme #buddypress .standard-form input[type=email]:focus,
.gp-theme #buddypress .standard-form input[type=month]:focus,
.gp-theme #buddypress .standard-form input[type=number]:focus,
.gp-theme #buddypress .standard-form input[type=password]:focus,
.gp-theme #buddypress .standard-form input[type=range]:focus,
.gp-theme #buddypress .standard-form input[type=search]:focus,
.gp-theme #buddypress .standard-form input[type=tel]:focus,
.gp-theme #buddypress .standard-form input[type=text]:focus,
.gp-theme #buddypress .standard-form input[type=time]:focus,
.gp-theme #buddypress .standard-form input[type=url]:focus,
.gp-theme #buddypress .standard-form input[type=week]:focus,
.gp-theme #buddypress .standard-form select:focus,
.gp-theme #buddypress .standard-form textarea:focus {
background-color: #fff;
border-color: #ccc;
}
.gp-theme #buddypress .comment-reply-link,
.gp-theme #buddypress a.button,
.gp-theme #buddypress button,
.gp-theme #buddypress div.generic-button a,
.gp-theme #buddypress input[type=button],
.gp-theme #buddypress input[type=reset],
.gp-theme #buddypress input[type=submit],
.gp-theme #buddypress ul.button-nav li a,
a.bp-title-button {
background-color: #2f9bc1;
border: 0;
color: #fff;
font-weight: bold;
line-height: 1;
border-radius: 4px;
}
.gp-theme #buddypress .comment-reply-link:hover,
.gp-theme #buddypress a.button:hover,
.gp-theme #buddypress button:hover,
.gp-theme #buddypress div.generic-button a:hover,
.gp-theme #buddypress input[type=button]:hover,
.gp-theme #buddypress input[type=reset]:hover,
.gp-theme #buddypress input[type=submit]:hover,
.gp-theme #buddypress ul.button-nav li a:hover,
a.bp-title-button:hover {
background-color: #2a8cae;
color: #fff;
border: 0;
}
.gp-theme #buddypress a.disabled,
.gp-theme #buddypress button.disabled,
.gp-theme #buddypress button.pending,
.gp-theme #buddypress div.pending a,
.gp-theme #buddypress input[type=submit].disabled,
.gp-theme #buddypress input[type=submit].pending,
.gp-theme #buddypress input[type=submit][disabled=disabled],
.gp-theme #buddypress input[type=button].disabled,
.gp-theme #buddypress input[type=button].pending,
.gp-theme #buddypress input[type=reset].disabled,
.gp-theme #buddypress input[type=reset].pending {
border-color: 0;
color: #fff;
}
.gp-theme #buddypress .standard-form select {
font-size: 14px;
font-weight: 300;
max-width: 100%;
line-height: 15px;
}
.bp-tooltip:active:after,
.bp-tooltip:focus:after,
.bp-tooltip:hover:after {
display: none;
}
/*--------------------------------------------------------------
Messages
--------------------------------------------------------------*/
.gp-theme #buddypress div#message.error p,
#buddypress div#message.updated p {
border-radius: 8px;
border: 0;
font-weight: bold;
}
.gp-theme .sidebar div#message {
position: relative;
width: 100%;
overflow: hidden;
clear: both;
padding: 20px;
margin-bottom: 20px;
background: #fff;
border-radius: 8px;
}
.gp-theme .sidebar #close-notice {
position: absolute;
top: 10px;
right: 10px;
padding: 4px 6px;
font-size: 10px;
}
/*--------------------------------------------------------------
BuddyPress Page Header
--------------------------------------------------------------*/
.gp-theme #buddypress div#item-header {
margin-bottom: 20px;
}
.gp-theme #buddypress #item-header-content {
padding-top: 50px;
}
.gp-theme #buddypress div#item-header #item-header-cover-image #item-header-content,
.gp-theme #buddypress div#item-header #item-header-cover-image #item-actions {
max-width: 42% !important;
}
.gp-theme #buddypress div#item-header #item-header-avatar img.avatar {
border-radius: 100%;
width: 150px;
height: 150px;
}
.gp-theme #buddypress div#item-header span.activity {
margin: 5px 0;
}
.gp-theme #buddypress div#item-header div#item-meta {
font-size: 14px;
line-height: 24px;
}
.gp-theme #buddypress div#item-header ul {
margin-left: 0;
}
.gp-theme #buddypress div#item-header div#item-actions h2 {
font-size: 12px;
line-height: 12px;
font-weight: bold;
}
.gp-theme #buddypress div#item-header .generic-button a {
display: block;
line-height: 1;
}
.gp-theme #buddypress div.dir-search {
position: relative;
margin-top: -53px;
}
.gp-theme #buddypress div.dir-search input[type=text],
.gp-theme #buddypress li.groups-members-search input[type=text],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=text] {
padding: 8px 95px 8px 8px;
font-size: 14px;
margin: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.gp-theme #buddypress div.dir-search input[type=submit],
.gp-theme #buddypress li.groups-members-search input[type=submit],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=submit] {
position: absolute;
top: 0;
right: 0;
height: 100%;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.gp-theme .type-bp_members #buddypress .user-nicename {
margin-top: 10px !important;
}
/*--------------------------------------------------------------
BuddyPress Primary Tabs
--------------------------------------------------------------*/
.gp-theme #buddypress div.item-list-tabs {
margin: 0 -20px 0 -20px;
padding: 20px 0;
border-top: 1px solid #F0F0ED;
}
.gp-theme #buddypress div.item-list-tabs ul {
padding: 0 20px;
overflow: hidden;
}
.gp-theme #buddypress div.item-list-tabs ul li {
display: inline-block;
float: none;
margin: 0 3px 3px 0;
}
.gp-theme #buddypress div.item-list-tabs ul li a,
.gp-theme #buddypress div.item-list-tabs ul li span {
color: #274a5c;
padding: 10px;
margin: 0;
line-height: 12px;
font-weight: bold;
border-radius: 8px;
}
.gp-theme #buddypress div.item-list-tabs ul li.current a,
.gp-theme #buddypress div.item-list-tabs ul li.selected a,
.gp-theme #buddypress div.item-list-tabs ul li a:hover {
background-color: #F7F7F7;
opacity: 1
}
.gp-theme #buddypress div.item-list-tabs ul li a span,
.gp-theme #buddypress div.item-list-tabs ul li.current a span,
.gp-theme #buddypress div.item-list-tabs ul li.selected a span {
border: 0;
background: #33363C;
font-size: 10px;
border-radius: 3px;
margin-left: 3px;
padding: 3px 5px;
color: #fff;
}
.gp-theme #buddypress #gp-bp-tabs-button {
display: none;
padding: 0 15px;
font-size: 14px;
font-weight: 400;
font-family: 'FontAwesome';
cursor: pointer;
}
.gp-theme #buddypress #gp-bp-tabs-button:before {
content: '\f0c9';
}
.gp-theme #buddypress div.item-list-tabs ul li.loading a {
-webkit-animation:loader-pulsate .5s infinite ease-in-out alternate;
-moz-animation:loader-pulsate .5s infinite ease-in-out alternate;
}
@-webkit-keyframes loader-pulsate {
from{
border-color:none;
-webkit-box-shadow:none;
box-shadow:none;
opacity: 1;
}
to{
border-color:none;
-webkit-box-shadow:none;
box-shadow:none;
opacity: 0.8;
}
}
@-moz-keyframes loader-pulsate {
from{
border-color:none;
-moz-box-shadow:none;
box-shadow:none;
opacity: 1;
}
to{
border-color:none;
-moz-box-shadow:none;
box-shadow:none;
opacity: 0.8;
}
}
/*--------------------------------------------------------------
BuddyPress Sub Navigation
--------------------------------------------------------------*/
.gp-theme #buddypress div.item-list-tabs#subnav {
margin: 0 -20px 20px -20px;
padding: 10px 0;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul {
padding: 0 20px;
overflow: hidden;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li a {
padding: 5px 8px;
font-size: 11px;
line-height: 21px;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li a span {
margin-left: 4px;
}
.gp-theme #buddypress div#subnav.item-list-tabs ul li.feed a {
display: inline-block;
line-height: 1;
padding: 5px 7px 4px 7px;
font-size: 11px;
font-weight: bold;
color: #fff;
background-color: #ee8600;
border-radius: 4px;
}
.gp-theme #buddypress div#subnav.item-list-tabs ul li.feed a:hover {
background: #D17600;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search form,
.gp-theme #buddypress div.item-list-tabs#subnav .message-search form {
position: relative;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search input,
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input {
height: 43px;
}
.gp-theme #buddypress div.item-list-tabs#subnav li.groups-members-search input[type=submit],
.gp-theme #buddypress div.item-list-tabs#subnav .message-search input[type=submit] {
padding: 13px;
font-size: 16px;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li.last {
float: right;
margin: 0 0 0 15px;
padding: 5px 0;
}
.gp-theme #buddypress div.item-list-tabs#subnav ul li.last label {
font-size: 13px;
line-height: 1;
}
.gp-theme #buddypress div.item-list-tabs ul li.last select {
border: 0;
font-size: 13px;
line-height: 1;
font-weight: 400;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 8px;
}
/*--------------------------------------------------------------
BuddyPress General Page
--------------------------------------------------------------*/
.gp-theme #buddypress .item-body {
margin: 40px 0;
}
/*--------------------------------------------------------------
BuddyPress Activity Page
--------------------------------------------------------------*/
.gp-theme #buddypress form#whats-new-form p.activity-greeting {
line-height: 20px;
}
.gp-theme #buddypress form#whats-new-form #whats-new-content {
padding-bottom: 30px !important;
}
.gp-theme #buddypress form#whats-new-form textarea {
width: 100%;
font-family: Helvetica, Arial, sans-serif;
font-size: 12.5px;
padding: 8px 10px 7px 10px;
margin: 0;
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress #whats-new-post-in-box {
font-size: 14px;
}
.gp-theme #buddypress form#whats-new-form #whats-new-options select {
font-size: 14px;
margin-left: 10px;
padding: 5px 20px 5px 5px;
}
#whats-new-submit #aw-whats-new-submit {
font-size: small;
line-height: 1;
padding: 8px 10px;
}
.gp-theme #buddypress > ul.item-list > li img.avatar {
width: 48px;
height: 48px;
}
.gp-theme #buddypress ul.item-list li div.item-title,
.gp-theme #buddypress ul.item-list li h4 {
font-weight: 500;
font-size: 14px;
line-height: 19px;
width: 60%;
}
.gp-theme #buddypress div.item-meta {
line-height: 1;
opacity: 1;
margin-top: 2.5px;
}
.gp-theme #buddypress span.activity {
font-size: 10px;
padding: 4px 8px;
background-color: #E4ECF1;
color: #6595AF;
font-weight: bold;
line-height: 1;
border-radius: 4px;
opacity: 1;
margin-bottom: 10px;
}
/*--------------------------------------------------------------
BuddyPress Groups Page
--------------------------------------------------------------*/
/* Pagination ************************************/
.gp-theme #buddypress div.pagination .pag-count {
margin-left: 0;
}
.gp-theme #buddypress div.pagination#pag-top {
padding-top: 0;
}
/* List ************************************/
.gp-theme #buddypress #groups-list.item-list li {
float: left;
margin-right: 2%;
border: 0;
}
.gp-theme #buddypress #groups-list.item-list li .gp-group-box {
width: 210px;
margin: 0 auto;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li {
width: 18.4%;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 0;
}
.gp-theme.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: left;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li,
.gp-theme.sb-right #buddypress #groups-list.item-list li,
.gp-theme.sb-both #buddypress #groups-list.item-list li {
width: 48%;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.sb-right #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.sb-both #buddypress #groups-list.item-list li:nth-of-type(2n) {
margin-right: 0;
}
.gp-theme.sb-left #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.sb-right #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.sb-both #buddypress #groups-list.item-list li:nth-of-type(2n+1) {
clear: left;
}
.gp-theme #buddypress #groups-list.item-list li .item-avatar {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 0 10px 0;
}
.gp-theme #buddypress #groups-list.item-list li img.avatar {
width: 210px;
height: 210px;
}
.gp-theme #buddypress #groups-list.item-list li div.item-title {
width: 100%;
}
.gp-theme #buddypress #groups-list.item-list li div.item-title a:hover {
text-decoration: underline;
}
.gp-theme #buddypress #groups-list.item-list li .meta {
font-size: 11px;
margin-top: 0;
}
.gp-theme #buddypress #groups-list.item-list li div.action {
top: auto;
bottom: 10px;
right: 10px;
}
#groups-list .item-avatar .group-button {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
white-space: nowrap;
}
/* Create group ************************************/
.gp-theme.gp-responsive #buddypress #group-create-body .left-menu img {
margin-bottom: 20px;
}
.gp-theme #buddypress form.standard-form .main-column {
margin-left: 230px;
}
.gp-theme #buddypress div.bp-avatar-nav {
margin-top: 30px;
}
.gp-theme #buddypress #drag-drop-area {
border-width: 2px;
}
/* Invite list ************************************/
.gp-theme #buddypress div#invite-list {
padding: 20px;
width: 230px;
}
.gp-theme.group-invites #buddypress form.standard-form .main-column {
margin-left: 250px;
}
/* Single group ************************************/
.gp-theme #buddypress div#item-header .page-title {
margin: 0;
width: 75%;
}
.gp-theme #buddypress div#item-header .gp-entry-title {
font-size: 30px;
line-height: 40px;
}
/* Members Tab ************************************/
.gp-theme #buddypress ul.item-list h5 {
margin: 0;
font-weight: 500;
font-size: 14px;
line-height: 19px;
}
.gp-theme #buddypress ul.item-list h5 .small .button {
font-size: 10px;
padding: 5px;
margin-top: 3px;
}
/*--------------------------------------------------------------
BuddyPress Members Page
--------------------------------------------------------------*/
/* List ************************************/
.gp-theme #buddypress #members-dir-list .item-list .item,
.gp-theme #buddypress .friends .item-list .item,
.gp-theme #buddypress ul.item-list li div.action {
margin-left: 78px;
}
.gp-theme #buddypress ul.item-list li div.action {
float: none;
margin-top: 10px;
}
/* Profile page ************************************/
.gp-theme #buddypress div.profile h2 {
font-size: 16px;
line-height: 24px;
}
.gp-theme .bp_members .page-title {
display: none;
}
.gp-theme #buddypress #profile-edit-form ul.button-nav {
margin-left: 0;
}
#buddypress table.profile-fields {
border: 0;
}
/* Notifications/Messages ************************************/
.gp-theme #buddypress div.message-search {
margin: 20px 30px 0 0;
}
.gp-theme #buddypress div#message-thread img.avatar {
margin-right: 20px;
}
.gp-theme #buddypress div#message-thread div.message-content {
margin-left: 50px;
}
.gp-theme #buddypress .notifications-options-nav,
.gp-theme #buddypress .messages-options-nav {
margin-top: 20px;
}
.gp-theme #buddypress table#message-threads tr.unread td {
font-weight: 300;
}
.gp-theme #buddypress #message-threads img.avatar {
margin: 0 5px 0 0;
float: left;
}
.gp-theme #message-threads .thread-from {
font-size: 14px;
line-height: 20px;
}
.gp-theme #buddypress #message-threads .thread-info p {
font-size: 14px;
line-height: 20px;
}
.gp-theme #buddypress td.thread-options {
font-size: 13px;
}
ul.acfb-holder li {
float: none;
}
.gp-theme #buddypress input#send-to-input {
clear: both;
width: 275px;
}
.gp-theme #buddypress table.notifications {
font-size: 13px;
}
/* Friends List ************************************/
.gp-theme #buddypress #friend-list li {
overflow: auto;
}
/* Individual member activity ************************************/
.gp-theme.activity-permalink #buddypress div.activity-comments ul li {
padding: 15px 0;
}
/*--------------------------------------------------------------
BuddyPress Activity
--------------------------------------------------------------*/
/* List ************************************/
.gp-theme #buddypress .activity-list #activity-stream {
margin-top: -20px;
}
.gp-theme #buddypress .activity-list ul.item-list {
border: 0;
}
.gp-theme #buddypress ul.item-list {
border: 0;
}
.gp-theme #buddypress ul.item-list li {
border-bottom: 1px solid #F0F0ED;
padding: 15px 0;
}
.gp-theme #buddypress ul.item-list li img.avatar {
margin-right: 15px;
}
.gp-theme #buddypress .activity-list .activity-content {
margin-left: 73px;
}
.gp-theme #buddypress .activity-list .activity-content blockquote,
.gp-theme #buddypress .activity-list .activity-content blockquote a {
font-size: 13px;
line-height: 20px;
padding: 0;
background: none;
font-style: italic;
color: inherit;
margin: 0;
}
/* Activity header ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-header,
.gp-theme #buddypress .activity-list .activity-content .comment-header {
font-size: 13px;
line-height: 20px;
}
.gp-theme #buddypress #activity-stream .activity-content .activity-header p {
margin: 0;
}
.gp-theme #buddypress .activity-list .activity-header a {
font-weight: 700;
}
.gp-theme #buddypress .activity-list .activity-header a:hover {
text-decoration: underline;
}
.gp-theme #buddypress .activity-list a.activity-time-since {
font-size: 11px;
font-weight: 300;
display: block;
}
/* Activity avatar ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-header img.avatar {
display: none;
}
.gp-theme #buddypress .activity-list ul.item-list li img.avatar {
width: 48px;
height: 48px;
}
/* Activity content ************************************/
.gp-theme #buddypress .activity-list .activity-content .activity-inner {
font-size: 13px;
line-height: 20px;
margin-top: 0;
}
/* Activity buttons ************************************/
.gp-theme #buddypress .activity-list div.activity-meta {
margin-top: 6.5px;
}
.gp-comments-disabled .acomment-reply {
display: none;
}
.gp-theme #buddypress .activity-list.comments-disabled .activity-meta,
.gp-theme #buddypress .activity-list.comments-disabled .activity-comments {
display: none;
}
.gp-theme #buddypress div.activity-meta a.button {
display: inline-block;
background-color: #77af12;
padding: 5px 8px;
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
margin: 0 0 2px 0;
}
.gp-theme #buddypress div.activity-meta a.button:hover {
background-color: #679710;
}
.gp-theme #buddypress .activity-list #reply-title small a span,
.gp-theme #buddypress .activity-list a.bp-primary-action span {
font-size: 10px;
margin-left: 0;
padding: 0;
position: relative;
top: 0;
right: 0;
border-radius: 4px;
background: none;
}
/* Comment reply form ************************************/
.gp-theme #buddypress div.activity-comments form .ac-textarea {
color: #999;
border: 1px solid #f7f7f7;
background: #f7f7f7;
border-radius: 4px;
}
.gp-theme #buddypress .activity-list div.ac-reply-avatar img {
border: 0;
}
.gp-theme #buddypress .activity-list .ac-reply-cancel {
font-size: 11px;
}
/* Comment replies ************************************/
.gp-theme #buddypress .activity-list div.activity-comments > ul {
padding: 0;
}
.gp-theme #buddypress .activity-list div.activity-comments ul li:first-child {
margin-top: 15px;
border-top: 1px solid #F0F0ED;
}
.gp-theme #buddypress .activity-list div.activity-comments ul li:last-child {
padding-bottom: 0;
border-bottom: 0;
}
/* NEW - Since 1.3 */
.gp-theme #buddypress div.activity-comments ul li > ul {
overflow: hidden;
}
.gp-theme #buddypress .activity-list div.activity-comments div.acomment-meta {
font-size: 13px;
line-height: 20px;
}
.gp-theme #buddypress .activity-list .acomment-meta a {
font-weight: 500;
}
.gp-theme #buddypress .activity-list .acomment-meta a.activity-time-since {
font-size: 11px;
font-weight: 300;
}
.gp-theme #buddypress .activity-list div.activity-comments div.acomment-content {
font-size: 13px;
line-height: 20px;
margin: 10px 0 0 40px;
}
.gp-theme #buddypress .activity-list .acomment-options {
margin: 5px 0 0 40px;
}
.gp-theme #buddypress .activity .acomment-options a {
background-color: #77af12;
color: #fff;
padding: 4px 7px;
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 10px;
font-weight: bold;
margin-right: 0;
border-radius: 4px;
}
.gp-theme #buddypress .activity .acomment-options a:hover {
background-color: #679710;
}
.gp-theme #buddypress div.activity-comments {
margin-left: 73px;
}
.gp-theme #buddypress div.activity-comments form.ac-form,
.gp-theme #buddypress div.activity-comments li form.ac-form {
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
.gp-theme #buddypress div.activity-comments form div.ac-reply-content {
margin-left: 63px;
padding-left: 10px;
}
/* Load more button ************************************/
.gp-theme #buddypress .activity-list li.load-more,
.gp-theme #buddypress .activity-list li.load-newest {
padding: 0;
margin: 15px 0 0 0;
background: transparent;
border-bottom: 0;
}
.gp-theme #buddypress .activity-list li.load-more a,
.gp-theme #buddypress .activity-list li.load-newest a {
display: block;
width: 100%;
background-color: #F7F7F7;
padding: 8px 0 8px 12px;
font-weight: bold;
border-radius: 4px;
color: #33363c;
}
.gp-theme #buddypress .activity-list li.load-more a:hover,
.gp-theme #buddypress .activity-list li.load-newest a:hover {
color: #2F9BC1;
}
.gp-theme #buddypress .activity-list li.load-more.loading a {
-webkit-animation: load-more-pulsate .5s infinite ease-in-out alternate;
-moz-animation: load-more-pulsate .5s infinite ease-in-out alternate;
opacity: 0;
}
@-webkit-keyframes load-more-pulsate {
from {opacity: 0;}
to {opacity: 0.4}
}
@-moz-keyframes load-more-pulsate {
from {opacity: 0;}
to {opacity: 0.4}
}
/*--------------------------------------------------------------
BuddyPress rtMedia plugin
--------------------------------------------------------------*/
.rtmedia-gallery-item-actions a:hover {
color: #fff;
}
.rtmedia-actions-before-comments .rtmedia-comment-link,
.gp-theme #buddypress .rtmedia-actions-before-comments .rtmedia-like,
.rtmedia-actions-before-comments .rtmedia-comment-link:hover,
.gp-theme #buddypress .rtmedia-actions-before-comments .rtmedia-like:hover {
background-color: transparent;
color: #000;
}
/*--------------------------------------------------------------------------------------
2 - Widgets
--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
BuddyPress Groups/Members/Friends Widgets
--------------------------------------------------------------*/
/* Filter Options ************************************/
.gp-theme .widget.buddypress div.item-options {
display: inline-block;
position: relative;
color: rgba(0, 0, 0, 0);
line-height: 1;
font-size: 11px;
margin-bottom: 20px;
padding: 0;
}
.gp-theme .widget.buddypress div.item-options a {
display: inline-block;
background-color: #77af12;
color: #fff;
font-weight: bold;
font-size: 10px;
padding: 5px 8px;
margin: 0 3px 2px 0;
border: 0;
line-height: 1;
border-radius: 4px;
}
.gp-theme .widget.buddypress div.item-options a.selected,
.gp-theme .widget.buddypress div.item-options a:hover {
background-color: #679710;
}
.gp-theme .widget.buddypress div.item-options .bp-separator {
display: none;
}
/* List items ************************************/
.gp-theme .widget.buddypress #friends-list li,
.gp-theme .widget.buddypress #groups-list li,
.gp-theme .widget.buddypress #members-list li {
margin: 0;
}
.gp-theme .widget.buddypress #friends-list li:last-child,
.gp-theme .widget.buddypress #groups-list li:last-child,
.gp-theme .widget.buddypress #members-list li:last-child {
margin: 0;
padding: 0;
}
/* Item Options ************************************/
.gp-theme .widget.buddypress div.item-options .gp-item-options-button:before {
position: absolute;
top: 0;
right: 20px;
font-family: 'FontAwesome';
content: '\f0c9';
font-size: 18px;
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options {
padding-top: 36px;
right: 0;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options > a {
display: none;
line-height: 1;
padding: 10px 15px;
margin-right: 20px;
}
.gp-theme .widget.buddypress div.item-options.gp-small-item-options.gp-active a {
display: block;
}
/* Item headers ************************************/
.gp-theme .widget.buddypress .item-title {
font-weight: bold;
font-size: 12px;
line-height: 17px;
}
/* Item Avatars ************************************/
.gp-theme .widget.buddypress ul.item-list img.avatar {
width: 40px;
height: 40px;
}
/* Item Content ************************************/
.gp-theme .widget.buddypress div.item {
margin-bottom: 0;
}
/* Item meta ************************************/
.gp-theme .widget.buddypress div.item-meta {
line-height: 1;
opacity: 1;
margin-top: 2.5px;
margin-left: 52px;
}
.gp-theme .widget.buddypress span.activity {
padding: 4px 8px;
line-height: 1;
color: #6595AF;
font-weight: bold;
display: inline-block;
font-size: 10px;
border-radius: 4px;
background-color: #E4ECF1;
opacity: 1;
}
/*.gp-theme #buddypress #groups-list.item-list li .meta,
.gp-theme #buddypress span.highlight {
padding: 4px 8px;
line-height: 1;
color: #fff;
font-weight: bold;
display: inline-block;
font-size: 10px;
border-radius: 4px;
background-color: #E47070;
opacity: 1;
}*/
/*--------------------------------------------------------------
BuddyPress Recently Active Members/Who's Online Widgets
--------------------------------------------------------------*/
.gp-theme .widget.buddypress.widget_bp_core_recently_active_widget,
.gp-theme .widget.buddypresswidget_bp_core_whos_online_widget {
padding-bottom: 5px;
}
.gp-theme .widget.buddypress div.item-avatar img {
width: 41px;
height: 41px;
margin: 0;
}
/*--------------------------------------------------------------
Community Stats Widget - deprecated since v2.0
--------------------------------------------------------------*/
.widget.widget_etivite_bp_community_stats_widget li {
font-weight: bold;
font-size: 14px;
color: #fff;
padding: 6px 10px;
text-transform: capitalize;
background: #E47070;
border-radius: 4px;
margin-bottom: 5px;
}
.widget.widget_etivite_bp_community_stats_widget li .community-count,
.widget.widget_etivite_bp_community_stats_widget li .community-post {
font-size: 20px;
float: right;
text-align: right;
}
/*--------------------------------------------------------------
BuddyPress Global Search plugin
--------------------------------------------------------------*/
.gp-theme #buddypress .search_results ul.item-list li div.item-desc {
display: none;
}
/*--------------------------------------------------------------------------------------
3 - Media Queries
--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
Smaller desktops
--------------------------------------------------------------*/
@media only screen and (max-width: 1260px) {
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li {
width: 23.5%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 2%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: none;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n) {
margin-right: 0;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n+1) {
clear: left;
}
}
/*--------------------------------------------------------------
Tablet (landscape)
--------------------------------------------------------------*/
@media only screen and (max-width: 1082px) {
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li {
width: 32%
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n) {
margin-right: 2%;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(4n+1) {
clear: none;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(3n) {
margin-right: 0;
}
.gp-theme.gp-responsive.fullwidth #buddypress #groups-list.item-list li:nth-of-type(3n+1) {
clear: left;
}
}
/*--------------------------------------------------------------
Tablet (portrait)
--------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
.gp-theme.gp-responsive #buddypress #groups-list.item-list li {
width: 48% !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(3n) {
margin-right: 2% !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(3n+1) {
clear: none !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n) {
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n+1) {
clear: left !important;
}
}
/*--------------------------------------------------------------
Small Tablet - 782 - 767px (BuddyPress division)
--------------------------------------------------------------*/
@media only screen and (max-width: 782px) {
.gp-theme #buddypress #item-header-content {
padding-top: 0;
}
.gp-theme.gp-responsive #buddypress div#item-header #item-header-cover-image #item-header-content,
.gp-theme.gp-responsive #buddypress div#item-header #item-header-cover-image #item-actions {
max-width: none !important;
}
.gp-theme.gp-responsive .type-bp_members #buddypress .user-nicename {
margin-top: 25px !important;
}
}
/*--------------------------------------------------------------
Mobile (landscape)
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
.gp-theme.gp-responsive #buddypress div.item-list-tabs {
margin: 0 -20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul {
padding: 0 15px;
}
.gp-theme.gp-responsive #buddypress div#item-header .gp-entry-title {
width: 100%;
}
.gp-theme.gp-responsive #buddypress div#item-header div#item-meta {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-options {
height: auto !important;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-post-in-box {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form#whats-new-form #whats-new-submit {
width: 100%;
margin-bottom: 10px;
}
.gp-theme.gp-responsive #buddypress div.dir-search {
position: relative;
margin: 0 0 40px 0;
float: left;
text-align: left;
width: 100%;
}
.gp-theme.gp-responsive #buddypress div.dir-search input[type=text] {
width: 100%;
}
.gp-theme.gp-responsive #buddypress form.standard-form .left-menu,
.gp-theme.gp-responsive #buddypress div#invite-list {
float: none;
width: 100%;
}
.gp-theme.gp-responsive #buddypress form.standard-form .main-column {
margin-left: 0;
}
.gp-responsive .rtmedia-plupload-container {
margin-bottom: 10px;
}
.gp-responsive #buddypress .activity-inner object,
.gp-responsive #buddypress .activity-inner embed,
.gp-responsive #buddypress .activity-inner video,
.gp-responsive #buddypress .activity-inner iframe {
height: auto;
}
}
/*--------------------------------------------------------------
Mobile (portrait)
--------------------------------------------------------------*/
@media only screen and (max-width: 567px) {
.gp-theme.gp-responsive #buddypress #gp-bp-tabs-button {
display: block;
padding: 0 15px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs:not(#subnav) ul {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul li {
width: 100%;
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs ul li a {
padding: 10px 20px;
border-radius: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul {
padding: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li {
width: 100%;
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li a {
padding: 5px 20px;
border-radius: 0;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.feed {
margin: 10px 0 0 0;
padding-left: 20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.feed a {
border-radius: 4px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.last {
float: left;
margin: 10px 0 0 0;
padding-left: 20px;
}
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav ul li.groups-members-search,
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav .message-search {
padding: 15px 15px 0 15px;
margin: 0;
}
.gp-theme.gp-responsive #buddypress li.groups-members-search input[type=text],
.gp-theme.gp-responsive #buddypress div.item-list-tabs#subnav .message-search input[type=text] {
width: 100%;
}
.gp-theme #buddypress form#whats-new-form #whats-new-options select {
margin: 0;
}
.gp-theme.gp-responsive #buddypress div.activity-comments,
.gp-theme.gp-responsive #buddypress div.activity-comments ul li > ul {
margin-left: 0;
padding-left: 0;
}
.gp-theme.gp-responsive #buddypress div.activity-comments ul {
width: 100%;
float: none;
}
.gp-theme.gp-responsive #buddypress div.activity-comments > ul > li {
padding-left: 33px;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li {
width: 100% !important;
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n),
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(5n) {
margin-right: 0 !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(2n+1),
.gp-theme.gp-responsive #buddypress #groups-list.item-list li:nth-of-type(5n+1) {
clear: left !important;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li .item {
margin-left: 0;
}
.gp-theme.gp-responsive #buddypress #groups-list.item-list li .gp-group-box div.action {
position: absolute;
}
.gp-theme.gp-responsive #buddypress #group-create-body .left-menu img {
display: none;
}
.gp-theme.gp-responsive #buddypress div#item-header ul li {
float: left;
}
.gp-theme.gp-responsive #buddypress .standard-form #basic-details-section,
.gp-theme.gp-responsive #buddypress .standard-form #blog-details-section,
.gp-theme.gp-responsive #buddypress .standard-form #profile-details-section {
width: 100%;
}
.gp-theme.gp-responsive.activity-permalink #buddypress .activity-list .activity-avatar {
display: none;
}
.gp-theme.gp-responsive.activity-permalink #buddypress .activity-list .activity-content,
.gp-theme.gp-responsive.activity-permalink #buddypress div.activity-comments {
margin-left: 0;
}
.gp-responsive #message-threads thead tr,
.gp-responsive table.notifications thead tr {
display: none;
}
.gp-responsive #message-threads td,
.gp-responsive table.notifications td {
display: block;
}
.gp-theme.gp-responsive #buddypress table#message-threads tr.unread td {
border-width: 0;
}
.gp-theme.gp-responsive #buddypress table#message-threads tr.unread td.thread-options {
border-bottom-width: 2px;
}
} | 0.207536 | 0.077657 |
.ipapikas-section-portfolio.container {
text-align: center;
display: table-cell;
vertical-align: middle; }
.ipapikas-section-portfolio .project-item {
margin: 10px 0;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: auto;
float: left;
width: 25%;
text-align: center; }
.ipapikas-section-portfolio .project-item .project-logo {
width: 120px;
height: 120px;
margin: 0 auto;
border: 1px solid #ccc;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
align-items: center; }
.ipapikas-section-portfolio .project-item .project-logo img {
max-width: 90%;
margin: 9px auto;
display: block;
max-height: 30px; }
.ipapikas-section-portfolio .project-item .project-title {
color: #1d4a89;
font-size: 1.1em;
font-weight: 700;
margin: 5px 0; }
.ipapikas-section-portfolio .project-item .project-link {
display: block;
margin: 5px 0; }
.ipapikas-section-portfolio .project-item.drovio .project-logo {
border-color: #ccc; }
.ipapikas-section-portfolio .project-item.loginbox .project-logo {
background-color: #1d2d3c;
border-color: #1d2d3c; }
.ipapikas-section-portfolio .project-item.ratein .project-logo {
background-color: #335f7f;
border-color: #335f7f; }
.ipapikas-section-portfolio .project-item.ratein img {
max-height: 50px; }
.ipapikas-section-portfolio .project-item.panda .project-logo {
background-color: #231f20;
border-color: #231f20; }
.ipapikas-section-portfolio .project-item.panda img {
max-height: 50px;
background-color: #fff;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border: 1px solid #fff; }
.ipapikas-section-portfolio .project-item.github .project-logo {
background-color: #f5f5f5;
border-color: #231f20; }
.ipapikas-section-portfolio .project-item.github img {
max-height: 50px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%; }
@media screen and (max-width: 600px) {
.ipapikas-section-portfolio .project-item {
width: 100%;
display: block;
float: none; }
.ipapikas-section-portfolio .project-item .project-title {
font-size: 0.9em; }
.ipapikas-section-portfolio .project-item .project-subtitle {
font-size: 0.8em; } }
/*# sourceMappingURL=portfolio.css.map */ | public/assets/me/css/portfolio.css | .ipapikas-section-portfolio.container {
text-align: center;
display: table-cell;
vertical-align: middle; }
.ipapikas-section-portfolio .project-item {
margin: 10px 0;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: auto;
float: left;
width: 25%;
text-align: center; }
.ipapikas-section-portfolio .project-item .project-logo {
width: 120px;
height: 120px;
margin: 0 auto;
border: 1px solid #ccc;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
align-items: center; }
.ipapikas-section-portfolio .project-item .project-logo img {
max-width: 90%;
margin: 9px auto;
display: block;
max-height: 30px; }
.ipapikas-section-portfolio .project-item .project-title {
color: #1d4a89;
font-size: 1.1em;
font-weight: 700;
margin: 5px 0; }
.ipapikas-section-portfolio .project-item .project-link {
display: block;
margin: 5px 0; }
.ipapikas-section-portfolio .project-item.drovio .project-logo {
border-color: #ccc; }
.ipapikas-section-portfolio .project-item.loginbox .project-logo {
background-color: #1d2d3c;
border-color: #1d2d3c; }
.ipapikas-section-portfolio .project-item.ratein .project-logo {
background-color: #335f7f;
border-color: #335f7f; }
.ipapikas-section-portfolio .project-item.ratein img {
max-height: 50px; }
.ipapikas-section-portfolio .project-item.panda .project-logo {
background-color: #231f20;
border-color: #231f20; }
.ipapikas-section-portfolio .project-item.panda img {
max-height: 50px;
background-color: #fff;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border: 1px solid #fff; }
.ipapikas-section-portfolio .project-item.github .project-logo {
background-color: #f5f5f5;
border-color: #231f20; }
.ipapikas-section-portfolio .project-item.github img {
max-height: 50px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%; }
@media screen and (max-width: 600px) {
.ipapikas-section-portfolio .project-item {
width: 100%;
display: block;
float: none; }
.ipapikas-section-portfolio .project-item .project-title {
font-size: 0.9em; }
.ipapikas-section-portfolio .project-item .project-subtitle {
font-size: 0.8em; } }
/*# sourceMappingURL=portfolio.css.map */ | 0.301465 | 0.15034 |
*{
box-sizing: border-box;
}
/* The dots/bullets/indicators */
.dotElement {
height: 10px;
width: 10px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active {
background-color: #717171;
}
/* #ournav{
margin: .45em;
padding: 1em;
text-decoration: none;
margin-left: 3.2em;
margin-right: 7%;
background-color: rgba(187, 187, 187, 0.788);
position: fixed;
width: 76%;
z-index: 3;
height: 4em;
border-radius: 15px;
} */
#ournav li {
display:inline-block;
margin-left: 5em;
vertical-align: middle;
line-height: 2em;
}
#ournav li a {
color: black;
font-size: 17px;
/* font-weight: bold; */
letter-spacing: 5px;
}
#ournav li a:hover {
color: red;
}
#parent-container{
border: solid 2px rgba(100, 148, 237, 0.699) ;
margin-left: 2.5%;
margin-right: 2.5%;
padding: 1em;
padding-top: 5em ;
background-color:#8cc1de17 ;
}
.bigSection{
border: solid 2px rgba(100, 148, 237, 0.329) ;
/* background-color: #f5eee5; */
width: 32.5%;
display: inline-block;
margin: .2em;
padding: .2em;
padding-left: .7em;
border-radius: 5%;
}
.bigSection:hover{
background-color: rgba(32, 25, 25, 0.089);
transform: scale(1.05);
}
.package-img{
/* border: solid 2px red; */
width: 355px;
height: 250px;
border-radius: 5%;
}
.slides{
/* border: solid 2px rgb(0, 38, 255); */
position: absolute;
border-radius: 5%;
}
.imgNumber{
color:#bbb;
margin: .1em;
padding: .1em;
}
.dotContainer{
/* border: solid 2px rgb(0, 38, 255); */
height: 1.5em;
margin-top: -.25em;
}
.packageName{
margin-bottom: .2em;
margin-left: .2em;
text-align: center;
color: #022a3f;
font-size: 1.4em;
font-family: 'Almarai', sans-serif;
line-height: 1.35em;
}
.packagePrice{
margin-bottom: .2em;
margin-left: .2em;
text-align: center;
font-family: 'Almarai', sans-serif;
color: #022a3f;
font-weight: bolder;
}
.Description ,.bookingButton{
margin: .5em;
padding: .3em;
margin-left: 12%;
padding-left: .6em;
padding-right: .6em;
text-align: center;
width: 7em;
border-radius: 6px;
font-size: 1.08em;
font-family: 'Fredoka One', cursive;
background-color:rgba(102, 0, 0, 0.89);
color: rgb(218, 216, 216);
}
.Description:hover ,.bookingButton:hover{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);}
/* The Modal (background) */
.modelBoxcont {
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: rgba(0, 0, 0, 0.521); /* Black w/ opacity */
}
/* Modal Content/Box */
.modelBoxdiv2 {
background-color: #8cc1decc;
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 */
transform: translate3d(70px, 1px, 1px);
}
/* The Close Button */
.modelBoxSpan {
color: #022a3f;
float: right;
font-size: 28px;
font-weight: bold;
}
.modelBoxSpan:hover {
color: black;
text-decoration: none;
cursor: pointer;
}
.descriptionContent0{
/* margin-top: 0.7em; */
letter-spacing: 0.08em;
font-size: 2em;
padding: 0.2em;
color: #022a3f;
font-family: 'Almarai', sans-serif;
font-weight: 900;
}
.descriptionContent1{
margin-top: 0.7em;
letter-spacing: 0.08em;
line-height: 2em;
border: 0.1em dashed #022a3f;
padding: 0.4em;
color: #022a3f;
font-weight:700;
}
.descriptionContent2{
margin-top: 0.7em;
letter-spacing: 0.08em;
line-height: 2em;
color: #022a3f;
font-weight: 700;
padding: 0.4em;
border: 0.1em dashed #022a3f;
} | CSS/discover-pacages.css | *{
box-sizing: border-box;
}
/* The dots/bullets/indicators */
.dotElement {
height: 10px;
width: 10px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active {
background-color: #717171;
}
/* #ournav{
margin: .45em;
padding: 1em;
text-decoration: none;
margin-left: 3.2em;
margin-right: 7%;
background-color: rgba(187, 187, 187, 0.788);
position: fixed;
width: 76%;
z-index: 3;
height: 4em;
border-radius: 15px;
} */
#ournav li {
display:inline-block;
margin-left: 5em;
vertical-align: middle;
line-height: 2em;
}
#ournav li a {
color: black;
font-size: 17px;
/* font-weight: bold; */
letter-spacing: 5px;
}
#ournav li a:hover {
color: red;
}
#parent-container{
border: solid 2px rgba(100, 148, 237, 0.699) ;
margin-left: 2.5%;
margin-right: 2.5%;
padding: 1em;
padding-top: 5em ;
background-color:#8cc1de17 ;
}
.bigSection{
border: solid 2px rgba(100, 148, 237, 0.329) ;
/* background-color: #f5eee5; */
width: 32.5%;
display: inline-block;
margin: .2em;
padding: .2em;
padding-left: .7em;
border-radius: 5%;
}
.bigSection:hover{
background-color: rgba(32, 25, 25, 0.089);
transform: scale(1.05);
}
.package-img{
/* border: solid 2px red; */
width: 355px;
height: 250px;
border-radius: 5%;
}
.slides{
/* border: solid 2px rgb(0, 38, 255); */
position: absolute;
border-radius: 5%;
}
.imgNumber{
color:#bbb;
margin: .1em;
padding: .1em;
}
.dotContainer{
/* border: solid 2px rgb(0, 38, 255); */
height: 1.5em;
margin-top: -.25em;
}
.packageName{
margin-bottom: .2em;
margin-left: .2em;
text-align: center;
color: #022a3f;
font-size: 1.4em;
font-family: 'Almarai', sans-serif;
line-height: 1.35em;
}
.packagePrice{
margin-bottom: .2em;
margin-left: .2em;
text-align: center;
font-family: 'Almarai', sans-serif;
color: #022a3f;
font-weight: bolder;
}
.Description ,.bookingButton{
margin: .5em;
padding: .3em;
margin-left: 12%;
padding-left: .6em;
padding-right: .6em;
text-align: center;
width: 7em;
border-radius: 6px;
font-size: 1.08em;
font-family: 'Fredoka One', cursive;
background-color:rgba(102, 0, 0, 0.89);
color: rgb(218, 216, 216);
}
.Description:hover ,.bookingButton:hover{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);}
/* The Modal (background) */
.modelBoxcont {
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: rgba(0, 0, 0, 0.521); /* Black w/ opacity */
}
/* Modal Content/Box */
.modelBoxdiv2 {
background-color: #8cc1decc;
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 */
transform: translate3d(70px, 1px, 1px);
}
/* The Close Button */
.modelBoxSpan {
color: #022a3f;
float: right;
font-size: 28px;
font-weight: bold;
}
.modelBoxSpan:hover {
color: black;
text-decoration: none;
cursor: pointer;
}
.descriptionContent0{
/* margin-top: 0.7em; */
letter-spacing: 0.08em;
font-size: 2em;
padding: 0.2em;
color: #022a3f;
font-family: 'Almarai', sans-serif;
font-weight: 900;
}
.descriptionContent1{
margin-top: 0.7em;
letter-spacing: 0.08em;
line-height: 2em;
border: 0.1em dashed #022a3f;
padding: 0.4em;
color: #022a3f;
font-weight:700;
}
.descriptionContent2{
margin-top: 0.7em;
letter-spacing: 0.08em;
line-height: 2em;
color: #022a3f;
font-weight: 700;
padding: 0.4em;
border: 0.1em dashed #022a3f;
} | 0.314156 | 0.063657 |
.main{
width: 100%;
height: 100%;
position: absolute;
z-index: 2;
background: url(../images/background1.jpg) no-repeat;
/*background-repeat: no-repeat;*/
background-size: 100% 100%;
}
.main-user{
width: 100%;
height: 2.3rem;
position: absolute;
}
.main-user > .user-container{
height: 100%;
font-size: .8rem;
line-height: 2.4rem;
float: right;
color: #FFF;
font-weight: lighter;
margin-top: .4rem;
}
.user-container > span{
display: block;
float: left;
cursor: pointer;
}
.user-container > .image{
width: 2.3rem;
height: 2.3rem;
border-radius: 50%;
background-size: 100% 100%;
}
/*未登录*/
.user-container > .login-in{
margin-right: 2rem;
text-decoration: underline;
}
/*已登录*/
.user-container > .txt{
padding-left: .5rem;
}
.user-container > .news{
padding-left: 1.5rem;
margin-left: 1rem;
background-image: url(../images/news.png);
background-repeat: no-repeat;
background-position: 0 50%;
background-size: 17% 52%;
}
.user-container > .triangle{
border-top: .5rem solid transparent;
border-right: .5rem solid #FFF45C;
border-bottom: .5rem solid transparent;
margin: .6rem .5rem 0 1rem;
}
.nav{
height: 25%;
background-color: rgba(0,0,0,0);
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 17%;
}
.nav > a{
display: inline-block;
width: 4.6rem;
height: 4.6rem;
border-radius: 50%;
background-color: #FFF;
position: relative;
}
.nav > a span{
position: absolute;
/*z-index: 2;*/
width: 4.6rem;
height: 4.6rem;
-webkit-mask-position: 50% 50%;
-webkit-mask-repeat: no-repeat;
background-image: -webkit-linear-gradient(bottom,#3ad,#2ae);
animation: logocolor 60s;
animation-iteration-count: infinite;
}
@keyframes logocolor{
0% {background-image: -webkit-linear-gradient(bottom,#d34d4d,#d34dbb);}
20% {background-image: -webkit-linear-gradient(bottom,#8f4dd3,#4d70d3);}
40% {background-image: -webkit-linear-gradient(bottom,#4dafd3,#4dd38f);}
60% {background-image: -webkit-linear-gradient(bottom,#99d34d,#d3b54d);}
80% {background-image: -webkit-linear-gradient(bottom,#d3764d,#d34d4d);}
100% {background-image: -webkit-linear-gradient(bottom,#5a2920,#d34d4d);}
}
.logo-baidu{
-webkit-mask-image: url(../images/baidu.png);
-webkit-mask-size: 63% 52%;
}
.logo-bili{
-webkit-mask-image: url(../images/bilibili.png);
-webkit-mask-size: 72% 44%;
}
.logo-weibo{
-webkit-mask-image: url(../images/weibo.png);
-webkit-mask-size: 63% 44%;
}
.logo-jd{
-webkit-mask-image: url(../images/jingdong.png);
-webkit-mask-size: 63% 44%;
}
.main-container{
width: 53%;
height: 70%;
position: absolute;
z-index: 2;
right: 0;
left: 0;
margin: 0 auto;
bottom: 7%;
background-color: rgba(0,0,0,0);
overflow: hidden;
}
/*dc框*/
.daily-css{
height: 80%;
width: 46%;
position: absolute;
z-index: 4;
left: 0;
background-color: #FFF;
font-size: 1rem;
line-height: 1.6rem;
color: #000;
text-align: left;
overflow: hidden;
transition: all 1.5s;
}
.dc-background{
background-image: url(../images/dc-background.jpg);
background-repeat: no-repeat;
background-size: 110% 100%;
}
/*dc内容*/
.init-text{
padding: 0 12%;
position: absolute;
z-index: 4;
top: 50%;
transform: translateY(-50%);
}
.daily-css > .final-text{
padding: 5% 6%;
position: absolute;
z-index: 4;
}
/*收藏夹*/
.dc-favours{
width: 48%;
height: 80%;
position: absolute;
z-index: 4;
right: 0;
transition: all 1.5s;
overflow-x: hidden;
overflow-y: scroll;
}
.hide-favours{
width: 0;
height: 0;
opacity: 0;
}
/*清除滚动条样式*/
.dc-favours::-webkit-scrollbar-thumb,
.dc-favours::-webkit-scrollbar-track,
.dc-favours::-webkit-scrollbar{
width: 0;
background-color: rgba(0,0,0,0);
}
/*单个收藏的container*/
.favour-container{
width: 100%;
height: 17%;
position: relative;
background-color: rgb(240,238,238);
margin-bottom: 2%;
overflow: hidden;
left: 0;
transition: all .7s;
}
/*每条收藏内容*/
.dc-favour{
font-size: .75rem;
padding: 3.5% 15% 0 9%;
margin-bottom: 2%;
overflow: hidden;
}
/*收藏夹超过字数模糊*/
.favour-mask{
width: 85%;
height: 70%;
position: absolute;
bottom: 0;
left: 0;
background-image: -webkit-linear-gradient(bottom,rgba(240,238,238,1),rgba(240,238,238,1),rgba(240,238,238,.5),rgba(255,255,255,.1));
}
/*查看dc*/
.favour-detail{
width: 5%;
height: 25%;
position: absolute;
right: 2.5%;
bottom: 5%;
background-image: url(../images/detail.png);
background-repeat: no-repeat;
background-size: 100% 95%;
cursor: pointer;
}
/*删除dc*/
.favour-delete{
width: 5%;
height: 25%;
position: absolute;
bottom: 5%;
right: 10%;
background-image: url(../images/delete.png);
background-repeat: no-repeat;
background-size: 95% 90%;
cursor: pointer;
}
/*点击输入框后收藏夹变小*/
.hide-collections{
width: 0;
height: 0;
opacity: 0;
}
/*输入框*/
.main-container textarea{
width: 88%;
height: 2rem;
position: absolute;
bottom: 0;
font-size: 1.3rem;
color: #848383;
padding: .8rem 6% .8rem 6%;
line-height: 2rem;
border: none;
resize: none;
outline: none;
transition: height 1.5s;
}
.main-container .final-textarea{
height: 58%;
padding-top: 3%;
}
.final-dc{
width: 100%;
height: 32%;
color: #B0B0B0;
background-color: #F0EEEE;
/*padding: 2% 0;*/
}
/*发送按钮*/
.submit-btn{
width: 6.5rem;
height: 2.5rem;
position: absolute;
bottom: 5%;
right: 4.5%;
border: 1px solid #00B566;
outline: none;
font-size: 1.1rem;
color: #FFF;
background-color: #00B566;
border-radius: 1rem;
cursor: pointer;
}
.submit-btn:active{
color: #00B566;
background-color: #FFF;
}
/*隐藏dc发送按钮*/
.hide-ele{
display: none;
opacity: 0;
transition: all 2s;
}
/*输入界面中dc,超过一定字数时,加阴影*/
.daily-css > .mask{
width: 100%;
height: 45%;
position: absolute;
z-index: 5;
bottom: 0;
background-image: -webkit-linear-gradient(bottom,rgba(240,238,238,1),rgba(240,238,238,1),rgba(240,238,238,0));
cursor: pointer;
}
.daily-css > .more{
width: 100%;
height: 100%;
position: absolute;
z-index: 6;
background-image: url(../images/more.png);
background-repeat: no-repeat;
background-position: 50% 100%;
cursor: pointer;
}
/*主界面中dc的详情按钮*/
.detail-dc{
display: block;
width: 7%;
height: 6%;
position: absolute;
z-index: 7;
right: 17%;
bottom: 3.7%;
background-image: url(../images/detail.png);
background-repeat: no-repeat;
background-size: 100% 100%;
cursor: pointer;
transition: all 2s;
}
/*主界面中dc的收藏按钮*/
.favour-dc{
display: block;
width: 8%;
height: 6%;
position: absolute;
z-index: 7;
right: 6%;
bottom: 3.8%;
background-image: url(../images/favour.png);
background-repeat: no-repeat;
background-size: 100% 100%;
cursor: pointer;
}
/*详情页*/
.show-detail{
height: 88%;
width: 56%;
background-color: #EEE;
position: absolute;
z-index: -1;
top: 0;
right: 20%;
bottom: 0;
left: 0;
margin: auto;
opacity: 0;
transition: all .75s;
transition-timing-function: ease-out;
}
.cross{
display: block;
position: absolute;
left: 102%;
top: 0;
color: #FFF;
font-size: 1.7rem;
cursor: pointer;
}
/*详情界面的dc*/
.show-detail > .show-dc{
width: 48%;
height: 68%;
background-color: #FFF;
position: absolute;
left: 0;
top: 0;
}
/*评论区*/
.show-detail > .show-comment{
width: 52%;
height: 68%;
background-color: #FFF;
position: absolute;
right: 1px;
top: 0;
}
.show-comment > .comment-container{
width: 100%;
height: 92%;
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
border-left: 2px solid #EEE;
overflow: scroll;
}
.comment-container::-webkit-scrollbar-thumb,
.comment-container::-webkit-scrollbar-track,
.comment-container::-webkit-scrollbar{
width: 0;
background-color: rgba(0,0,0,0);
}
/*他人评论*/
.comment-others{
width: 76%;
float: left;
clear: both;
padding-left: 5%;
padding-top: 5%;
}
.comment-others > .user-pic{
height: 2.7rem;
width: 2.7rem;
float: left;
border-radius: 50%;
background-color: red;
margin-right: 3.5%;
position: relative;
}
.comment-others > .user-comment{
max-width: 70%;
padding: 4% 5% 4% 5%;
font-size: .8rem;
border-radius: .7rem;
float: left;
background-color: #F0EEEE;
word-break: break-all;
}
/*他人的评论框*/
.comment-others > .user-pic::after{
content: "";
position: absolute;
left: 112%;
top: 50%;
transform: translateY(-50%);
border-top: .8rem solid transparent;
border-right: .8rem solid #EEE;
border-bottom: .8rem solid transparent;
}
/*自己评论*/
.comment-self{
width: 76%;
float: right;
clear: both;
padding-right: 7%;
padding-top: 5%;
}
.comment-self > .user-pic{
height: 2.7rem;
width: 2.7rem;
float: right;
border-radius: 50%;
background-color: red;
margin-left: 3.5%;
position: relative;
}
.comment-self > .user-comment{
max-width: 70%;
padding: 4% 5% 4% 5%;
font-size: .8rem;
border-radius: .7rem;
float: right;
background-color: #00B57B;
word-break: break-all;
}
.comment-self > .user-pic::after{
content: "";
position: absolute;
right: 115%;
top: 50%;
transform: translateY(-50%);
border-top: .8rem solid transparent;
border-left: .8rem solid #00B57B;
border-bottom: .8rem solid transparent;
}
/*详情页输入框*/
.show-detail .show-input{
width: 92%;
height: 22%;
padding: 3% 3% 3% 5%;
background-color: #FFF;
position: absolute;
bottom: 0;
border: none;
resize: none;
outline: none;
font-size: 1.2rem;
}
.show-input::-webkit-input-placeholder{
color: #DDD;
}
.show-detail .submit-comment{
width: 6.5rem;
height: 2.5rem;
position: absolute;
bottom: 3.5%;
right: 4%;
border: 1px solid #00B566;
outline: none;
font-size: 1.1rem;
color: #FFF;
background-color: #00B566;
border-radius: 1rem;
cursor: pointer;
}
.submit-comment:active{
color: #00B566;
background-color: #FFF;
}
/*隐藏详情页*/
.hide-detail{
display: none;
}
/*点击时滑出详情页*/
.slide-to-detail{
right: 0;
opacity: 1;
z-index: 99;
}
/*隐藏主界面*/
.hide-main{
display: none;
}
/*隐藏书签*/
.hide-nav{
display: none;
}
/*删除收藏dc*/
.delete-dc{
left: 90%;
opacity: 0;
} | src/css/main.css | .main{
width: 100%;
height: 100%;
position: absolute;
z-index: 2;
background: url(../images/background1.jpg) no-repeat;
/*background-repeat: no-repeat;*/
background-size: 100% 100%;
}
.main-user{
width: 100%;
height: 2.3rem;
position: absolute;
}
.main-user > .user-container{
height: 100%;
font-size: .8rem;
line-height: 2.4rem;
float: right;
color: #FFF;
font-weight: lighter;
margin-top: .4rem;
}
.user-container > span{
display: block;
float: left;
cursor: pointer;
}
.user-container > .image{
width: 2.3rem;
height: 2.3rem;
border-radius: 50%;
background-size: 100% 100%;
}
/*未登录*/
.user-container > .login-in{
margin-right: 2rem;
text-decoration: underline;
}
/*已登录*/
.user-container > .txt{
padding-left: .5rem;
}
.user-container > .news{
padding-left: 1.5rem;
margin-left: 1rem;
background-image: url(../images/news.png);
background-repeat: no-repeat;
background-position: 0 50%;
background-size: 17% 52%;
}
.user-container > .triangle{
border-top: .5rem solid transparent;
border-right: .5rem solid #FFF45C;
border-bottom: .5rem solid transparent;
margin: .6rem .5rem 0 1rem;
}
.nav{
height: 25%;
background-color: rgba(0,0,0,0);
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 17%;
}
.nav > a{
display: inline-block;
width: 4.6rem;
height: 4.6rem;
border-radius: 50%;
background-color: #FFF;
position: relative;
}
.nav > a span{
position: absolute;
/*z-index: 2;*/
width: 4.6rem;
height: 4.6rem;
-webkit-mask-position: 50% 50%;
-webkit-mask-repeat: no-repeat;
background-image: -webkit-linear-gradient(bottom,#3ad,#2ae);
animation: logocolor 60s;
animation-iteration-count: infinite;
}
@keyframes logocolor{
0% {background-image: -webkit-linear-gradient(bottom,#d34d4d,#d34dbb);}
20% {background-image: -webkit-linear-gradient(bottom,#8f4dd3,#4d70d3);}
40% {background-image: -webkit-linear-gradient(bottom,#4dafd3,#4dd38f);}
60% {background-image: -webkit-linear-gradient(bottom,#99d34d,#d3b54d);}
80% {background-image: -webkit-linear-gradient(bottom,#d3764d,#d34d4d);}
100% {background-image: -webkit-linear-gradient(bottom,#5a2920,#d34d4d);}
}
.logo-baidu{
-webkit-mask-image: url(../images/baidu.png);
-webkit-mask-size: 63% 52%;
}
.logo-bili{
-webkit-mask-image: url(../images/bilibili.png);
-webkit-mask-size: 72% 44%;
}
.logo-weibo{
-webkit-mask-image: url(../images/weibo.png);
-webkit-mask-size: 63% 44%;
}
.logo-jd{
-webkit-mask-image: url(../images/jingdong.png);
-webkit-mask-size: 63% 44%;
}
.main-container{
width: 53%;
height: 70%;
position: absolute;
z-index: 2;
right: 0;
left: 0;
margin: 0 auto;
bottom: 7%;
background-color: rgba(0,0,0,0);
overflow: hidden;
}
/*dc框*/
.daily-css{
height: 80%;
width: 46%;
position: absolute;
z-index: 4;
left: 0;
background-color: #FFF;
font-size: 1rem;
line-height: 1.6rem;
color: #000;
text-align: left;
overflow: hidden;
transition: all 1.5s;
}
.dc-background{
background-image: url(../images/dc-background.jpg);
background-repeat: no-repeat;
background-size: 110% 100%;
}
/*dc内容*/
.init-text{
padding: 0 12%;
position: absolute;
z-index: 4;
top: 50%;
transform: translateY(-50%);
}
.daily-css > .final-text{
padding: 5% 6%;
position: absolute;
z-index: 4;
}
/*收藏夹*/
.dc-favours{
width: 48%;
height: 80%;
position: absolute;
z-index: 4;
right: 0;
transition: all 1.5s;
overflow-x: hidden;
overflow-y: scroll;
}
.hide-favours{
width: 0;
height: 0;
opacity: 0;
}
/*清除滚动条样式*/
.dc-favours::-webkit-scrollbar-thumb,
.dc-favours::-webkit-scrollbar-track,
.dc-favours::-webkit-scrollbar{
width: 0;
background-color: rgba(0,0,0,0);
}
/*单个收藏的container*/
.favour-container{
width: 100%;
height: 17%;
position: relative;
background-color: rgb(240,238,238);
margin-bottom: 2%;
overflow: hidden;
left: 0;
transition: all .7s;
}
/*每条收藏内容*/
.dc-favour{
font-size: .75rem;
padding: 3.5% 15% 0 9%;
margin-bottom: 2%;
overflow: hidden;
}
/*收藏夹超过字数模糊*/
.favour-mask{
width: 85%;
height: 70%;
position: absolute;
bottom: 0;
left: 0;
background-image: -webkit-linear-gradient(bottom,rgba(240,238,238,1),rgba(240,238,238,1),rgba(240,238,238,.5),rgba(255,255,255,.1));
}
/*查看dc*/
.favour-detail{
width: 5%;
height: 25%;
position: absolute;
right: 2.5%;
bottom: 5%;
background-image: url(../images/detail.png);
background-repeat: no-repeat;
background-size: 100% 95%;
cursor: pointer;
}
/*删除dc*/
.favour-delete{
width: 5%;
height: 25%;
position: absolute;
bottom: 5%;
right: 10%;
background-image: url(../images/delete.png);
background-repeat: no-repeat;
background-size: 95% 90%;
cursor: pointer;
}
/*点击输入框后收藏夹变小*/
.hide-collections{
width: 0;
height: 0;
opacity: 0;
}
/*输入框*/
.main-container textarea{
width: 88%;
height: 2rem;
position: absolute;
bottom: 0;
font-size: 1.3rem;
color: #848383;
padding: .8rem 6% .8rem 6%;
line-height: 2rem;
border: none;
resize: none;
outline: none;
transition: height 1.5s;
}
.main-container .final-textarea{
height: 58%;
padding-top: 3%;
}
.final-dc{
width: 100%;
height: 32%;
color: #B0B0B0;
background-color: #F0EEEE;
/*padding: 2% 0;*/
}
/*发送按钮*/
.submit-btn{
width: 6.5rem;
height: 2.5rem;
position: absolute;
bottom: 5%;
right: 4.5%;
border: 1px solid #00B566;
outline: none;
font-size: 1.1rem;
color: #FFF;
background-color: #00B566;
border-radius: 1rem;
cursor: pointer;
}
.submit-btn:active{
color: #00B566;
background-color: #FFF;
}
/*隐藏dc发送按钮*/
.hide-ele{
display: none;
opacity: 0;
transition: all 2s;
}
/*输入界面中dc,超过一定字数时,加阴影*/
.daily-css > .mask{
width: 100%;
height: 45%;
position: absolute;
z-index: 5;
bottom: 0;
background-image: -webkit-linear-gradient(bottom,rgba(240,238,238,1),rgba(240,238,238,1),rgba(240,238,238,0));
cursor: pointer;
}
.daily-css > .more{
width: 100%;
height: 100%;
position: absolute;
z-index: 6;
background-image: url(../images/more.png);
background-repeat: no-repeat;
background-position: 50% 100%;
cursor: pointer;
}
/*主界面中dc的详情按钮*/
.detail-dc{
display: block;
width: 7%;
height: 6%;
position: absolute;
z-index: 7;
right: 17%;
bottom: 3.7%;
background-image: url(../images/detail.png);
background-repeat: no-repeat;
background-size: 100% 100%;
cursor: pointer;
transition: all 2s;
}
/*主界面中dc的收藏按钮*/
.favour-dc{
display: block;
width: 8%;
height: 6%;
position: absolute;
z-index: 7;
right: 6%;
bottom: 3.8%;
background-image: url(../images/favour.png);
background-repeat: no-repeat;
background-size: 100% 100%;
cursor: pointer;
}
/*详情页*/
.show-detail{
height: 88%;
width: 56%;
background-color: #EEE;
position: absolute;
z-index: -1;
top: 0;
right: 20%;
bottom: 0;
left: 0;
margin: auto;
opacity: 0;
transition: all .75s;
transition-timing-function: ease-out;
}
.cross{
display: block;
position: absolute;
left: 102%;
top: 0;
color: #FFF;
font-size: 1.7rem;
cursor: pointer;
}
/*详情界面的dc*/
.show-detail > .show-dc{
width: 48%;
height: 68%;
background-color: #FFF;
position: absolute;
left: 0;
top: 0;
}
/*评论区*/
.show-detail > .show-comment{
width: 52%;
height: 68%;
background-color: #FFF;
position: absolute;
right: 1px;
top: 0;
}
.show-comment > .comment-container{
width: 100%;
height: 92%;
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
border-left: 2px solid #EEE;
overflow: scroll;
}
.comment-container::-webkit-scrollbar-thumb,
.comment-container::-webkit-scrollbar-track,
.comment-container::-webkit-scrollbar{
width: 0;
background-color: rgba(0,0,0,0);
}
/*他人评论*/
.comment-others{
width: 76%;
float: left;
clear: both;
padding-left: 5%;
padding-top: 5%;
}
.comment-others > .user-pic{
height: 2.7rem;
width: 2.7rem;
float: left;
border-radius: 50%;
background-color: red;
margin-right: 3.5%;
position: relative;
}
.comment-others > .user-comment{
max-width: 70%;
padding: 4% 5% 4% 5%;
font-size: .8rem;
border-radius: .7rem;
float: left;
background-color: #F0EEEE;
word-break: break-all;
}
/*他人的评论框*/
.comment-others > .user-pic::after{
content: "";
position: absolute;
left: 112%;
top: 50%;
transform: translateY(-50%);
border-top: .8rem solid transparent;
border-right: .8rem solid #EEE;
border-bottom: .8rem solid transparent;
}
/*自己评论*/
.comment-self{
width: 76%;
float: right;
clear: both;
padding-right: 7%;
padding-top: 5%;
}
.comment-self > .user-pic{
height: 2.7rem;
width: 2.7rem;
float: right;
border-radius: 50%;
background-color: red;
margin-left: 3.5%;
position: relative;
}
.comment-self > .user-comment{
max-width: 70%;
padding: 4% 5% 4% 5%;
font-size: .8rem;
border-radius: .7rem;
float: right;
background-color: #00B57B;
word-break: break-all;
}
.comment-self > .user-pic::after{
content: "";
position: absolute;
right: 115%;
top: 50%;
transform: translateY(-50%);
border-top: .8rem solid transparent;
border-left: .8rem solid #00B57B;
border-bottom: .8rem solid transparent;
}
/*详情页输入框*/
.show-detail .show-input{
width: 92%;
height: 22%;
padding: 3% 3% 3% 5%;
background-color: #FFF;
position: absolute;
bottom: 0;
border: none;
resize: none;
outline: none;
font-size: 1.2rem;
}
.show-input::-webkit-input-placeholder{
color: #DDD;
}
.show-detail .submit-comment{
width: 6.5rem;
height: 2.5rem;
position: absolute;
bottom: 3.5%;
right: 4%;
border: 1px solid #00B566;
outline: none;
font-size: 1.1rem;
color: #FFF;
background-color: #00B566;
border-radius: 1rem;
cursor: pointer;
}
.submit-comment:active{
color: #00B566;
background-color: #FFF;
}
/*隐藏详情页*/
.hide-detail{
display: none;
}
/*点击时滑出详情页*/
.slide-to-detail{
right: 0;
opacity: 1;
z-index: 99;
}
/*隐藏主界面*/
.hide-main{
display: none;
}
/*隐藏书签*/
.hide-nav{
display: none;
}
/*删除收藏dc*/
.delete-dc{
left: 90%;
opacity: 0;
} | 0.26341 | 0.058534 |
:root {
--main-color: rgba(26, 188, 156, 1);
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
font-family: "Roboto", "Open Sans", "Arial", sans-serif;
font-size: 14px;
line-height: 26px;
letter-spacing: -0.02em;
color: #555252;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.container {
width: 1110px;
margin: 0 auto;
}
.header {
padding-top: 32px;
padding-bottom: 26px;
}
.logo {
float: left;
font-size: 30px;
line-height: 32px;
font-weight: 300;
text-transform: uppercase;
}
.logo-link {
text-decoration: none;
color: #555252;
}
.logo::first-letter {
color: var(--main-color);
font-weight: 900;
}
.menu {
float: right;
margin-top: 8px;
}
.menu-list {
padding: 0;
margin: 0;
list-style: none;
}
.menu-item {
display: block;
float: left;
text-transform: uppercase;
}
.menu-item:not(:last-of-type) {
margin-right: 32px;
}
.menu-link {
display: block;
font-family: "Open Sans", "Arial", sans-serif;
font-weight: bold;
line-height: 11px;
text-decoration: none;
color: #0f0101;
}
.menu-item a:hover,
.menu-item a:focus {
color: var(--main-color);
outline: none;
}
/* slider */
.slider {
position: relative;
}
.container-arrow {
position: absolute;
height: inherit;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.slides {
margin: 0;
padding: 0;
list-style: none;
}
.slides-item {
position: relative;
}
.slider-overlay::after {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: block;
width: 100%;
height: 100%;
content: "";
background: rgba(0, 0, 2, 0.52);
}
.slides-image {
height: 600px;
width: 100%;
object-fit: cover;
}
.slider-content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 760px;
color: #fff;
z-index: 1;
}
.slider-header {
margin: 0;
font-size: 60px;
font-weight: 900;
line-height: 82px;
text-transform: uppercase;
}
.slider-text {
margin: 0;
font-size: 24px;
font-weight: 300;
line-height: 54px;
text-transform: uppercase;
}
.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 104px;
height: 104px;
border: none;
cursor: pointer;
background-color: rgba(26, 188, 156, 0.65);
background-repeat: no-repeat;
background-position: center;
}
.slider-arrow:hover,
.slider-arrow:focus {
outline: none;
background-color: var(--main-color);
}
.arrow-prev {
left: 0;
background-image: url(../img/arrow-l.png);
}
.arrow-next {
right: 0;
background-image: url(../img/arrow-r.png);
}
.section-title {
margin: 0;
margin-bottom: 80px;
text-align: center;
font-size: 48px;
line-height: 32px;
font-weight: 900;
color: #515151;
}
.wrapper {
padding-top: 102px;
padding-bottom: 100px;
background-color: rgba(233, 240, 253, 1);
}
.section-title::after {
content: "";
display: block;
width: 164px;
height: 7px;
margin: 33px auto 0;
background: var(--main-color);
}
.collection-list {
padding: 0;
margin: 0;
list-style: none;
}
.collection-item {
position: relative;
float: left;
width: 255px;
}
.collection-item:not(:nth-of-type(4n)) {
margin-right: 30px;
}
.collection-item:not(:nth-last-of-type(-n + 4)) {
padding-bottom: 30px;
}
.collection-info {
font-size: 18px;
line-height: 32px;
font-weight: 900;
text-transform: uppercase;
color: #fff;
background: #323232;
}
.collection-property {
float: left;
margin: 0;
font-size: 18px;
font-weight: 900;
}
.collection-price {
float: right;
}
.property-link {
display: block;
padding: 4px 12px;
text-decoration: none;
color: #fff;
}
.property-link:focus {
outline: none;
}
.collection-price {
width: 54px;
padding: 4px 0;
text-align: center;
background-color: rgba(255, 255, 255, 0.44);
}
.overlay {
position: relative;
}
.collection-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: 10px solid rgba(255, 255, 255, 0.55);
border-top: 11px solid rgba(255, 255, 255, 0.55);
background-color: rgba(0, 0, 0, 0.55);
background-clip: content-box;
opacity: 0;
visibility: hidden;
}
.collection-item:hover .collection-overlay {
opacity: 1;
visibility: visible;
}
.collection-item:hover .collection-info {
background-color: var(--main-color);
}
.overlay-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0;
margin: 0;
list-style: none;
}
.overlay-item {
display: inline-block;
float: left;
}
.overlay-item:nth-of-type(-n + 2) {
margin-right: 8px;
}
.overlay-item:not(:last-of-type) {
margin-bottom: 7px;
}
.overlay-button {
display: block;
width: 50px;
height: 50px;
padding: 0;
border: 1px solid #fff;
background-image: url(../img/1.png);
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
}
.overlay-item:nth-of-type(2) .overlay-button {
background-image: url(../img/2.png);
}
.overlay-item:nth-of-type(3) .overlay-button {
background-image: url(../img/3.png);
}
.overlay-item:last-of-type .overlay-button {
width: 166px;
padding-left: 42px;
text-align: center;
font-family: "Open Sans", "Arial", sans-serif;
font-size: 14px;
line-height: 32px;
text-transform: uppercase;
color: #fff;
background-image: url(../img/4.png);
background-color: rgba(50, 50, 50, 1);
background-position: 12px center;
}
.overlay-item:hover .overlay-button,
.overlay-item:focus .overlay-button {
border-color: var(--main-color);
background-color: var(--main-color);
outline: none;
cursor: pointer;
}
.footer {
padding-top: 32px;
text-align: center;
background-color: rgba(50, 50, 50, 1);
}
.footer-text {
padding: 0;
padding-bottom: 28px;
font-family: "Open Sans", "Arial", sans-serif;
font-size: 16px;
line-height: 28px;
font-style: normal;
color: #fff;
}
.footer-mark {
text-decoration: none;
color: var(--main-color);
} | html-css/module-05/css/styles.css | :root {
--main-color: rgba(26, 188, 156, 1);
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
font-family: "Roboto", "Open Sans", "Arial", sans-serif;
font-size: 14px;
line-height: 26px;
letter-spacing: -0.02em;
color: #555252;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.container {
width: 1110px;
margin: 0 auto;
}
.header {
padding-top: 32px;
padding-bottom: 26px;
}
.logo {
float: left;
font-size: 30px;
line-height: 32px;
font-weight: 300;
text-transform: uppercase;
}
.logo-link {
text-decoration: none;
color: #555252;
}
.logo::first-letter {
color: var(--main-color);
font-weight: 900;
}
.menu {
float: right;
margin-top: 8px;
}
.menu-list {
padding: 0;
margin: 0;
list-style: none;
}
.menu-item {
display: block;
float: left;
text-transform: uppercase;
}
.menu-item:not(:last-of-type) {
margin-right: 32px;
}
.menu-link {
display: block;
font-family: "Open Sans", "Arial", sans-serif;
font-weight: bold;
line-height: 11px;
text-decoration: none;
color: #0f0101;
}
.menu-item a:hover,
.menu-item a:focus {
color: var(--main-color);
outline: none;
}
/* slider */
.slider {
position: relative;
}
.container-arrow {
position: absolute;
height: inherit;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.slides {
margin: 0;
padding: 0;
list-style: none;
}
.slides-item {
position: relative;
}
.slider-overlay::after {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: block;
width: 100%;
height: 100%;
content: "";
background: rgba(0, 0, 2, 0.52);
}
.slides-image {
height: 600px;
width: 100%;
object-fit: cover;
}
.slider-content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 760px;
color: #fff;
z-index: 1;
}
.slider-header {
margin: 0;
font-size: 60px;
font-weight: 900;
line-height: 82px;
text-transform: uppercase;
}
.slider-text {
margin: 0;
font-size: 24px;
font-weight: 300;
line-height: 54px;
text-transform: uppercase;
}
.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 104px;
height: 104px;
border: none;
cursor: pointer;
background-color: rgba(26, 188, 156, 0.65);
background-repeat: no-repeat;
background-position: center;
}
.slider-arrow:hover,
.slider-arrow:focus {
outline: none;
background-color: var(--main-color);
}
.arrow-prev {
left: 0;
background-image: url(../img/arrow-l.png);
}
.arrow-next {
right: 0;
background-image: url(../img/arrow-r.png);
}
.section-title {
margin: 0;
margin-bottom: 80px;
text-align: center;
font-size: 48px;
line-height: 32px;
font-weight: 900;
color: #515151;
}
.wrapper {
padding-top: 102px;
padding-bottom: 100px;
background-color: rgba(233, 240, 253, 1);
}
.section-title::after {
content: "";
display: block;
width: 164px;
height: 7px;
margin: 33px auto 0;
background: var(--main-color);
}
.collection-list {
padding: 0;
margin: 0;
list-style: none;
}
.collection-item {
position: relative;
float: left;
width: 255px;
}
.collection-item:not(:nth-of-type(4n)) {
margin-right: 30px;
}
.collection-item:not(:nth-last-of-type(-n + 4)) {
padding-bottom: 30px;
}
.collection-info {
font-size: 18px;
line-height: 32px;
font-weight: 900;
text-transform: uppercase;
color: #fff;
background: #323232;
}
.collection-property {
float: left;
margin: 0;
font-size: 18px;
font-weight: 900;
}
.collection-price {
float: right;
}
.property-link {
display: block;
padding: 4px 12px;
text-decoration: none;
color: #fff;
}
.property-link:focus {
outline: none;
}
.collection-price {
width: 54px;
padding: 4px 0;
text-align: center;
background-color: rgba(255, 255, 255, 0.44);
}
.overlay {
position: relative;
}
.collection-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: 10px solid rgba(255, 255, 255, 0.55);
border-top: 11px solid rgba(255, 255, 255, 0.55);
background-color: rgba(0, 0, 0, 0.55);
background-clip: content-box;
opacity: 0;
visibility: hidden;
}
.collection-item:hover .collection-overlay {
opacity: 1;
visibility: visible;
}
.collection-item:hover .collection-info {
background-color: var(--main-color);
}
.overlay-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0;
margin: 0;
list-style: none;
}
.overlay-item {
display: inline-block;
float: left;
}
.overlay-item:nth-of-type(-n + 2) {
margin-right: 8px;
}
.overlay-item:not(:last-of-type) {
margin-bottom: 7px;
}
.overlay-button {
display: block;
width: 50px;
height: 50px;
padding: 0;
border: 1px solid #fff;
background-image: url(../img/1.png);
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
}
.overlay-item:nth-of-type(2) .overlay-button {
background-image: url(../img/2.png);
}
.overlay-item:nth-of-type(3) .overlay-button {
background-image: url(../img/3.png);
}
.overlay-item:last-of-type .overlay-button {
width: 166px;
padding-left: 42px;
text-align: center;
font-family: "Open Sans", "Arial", sans-serif;
font-size: 14px;
line-height: 32px;
text-transform: uppercase;
color: #fff;
background-image: url(../img/4.png);
background-color: rgba(50, 50, 50, 1);
background-position: 12px center;
}
.overlay-item:hover .overlay-button,
.overlay-item:focus .overlay-button {
border-color: var(--main-color);
background-color: var(--main-color);
outline: none;
cursor: pointer;
}
.footer {
padding-top: 32px;
text-align: center;
background-color: rgba(50, 50, 50, 1);
}
.footer-text {
padding: 0;
padding-bottom: 28px;
font-family: "Open Sans", "Arial", sans-serif;
font-size: 16px;
line-height: 28px;
font-style: normal;
color: #fff;
}
.footer-mark {
text-decoration: none;
color: var(--main-color);
} | 0.514888 | 0.111822 |
@custom-selector :--focus-field :focus, .has-focus;
@custom-selector :--invalid-field :focus:invalid, :focus.is-invalid, :invalid, .is-invalid;
:root {
--field-font-size: 16px;
--field-font-size--dense: 13px;
--field-min-height: 33px;
--field-placeholder: {
color: var(--grey-200);
text-fill-color: initial;
};
}
.c-field {
border: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-size: var(--field-font-size);
max-width: 100%;
padding: 1em 0 .5em;
position: relative;
&.has-helper { padding-bottom: 24px; }
}
.c-field__input {
@apply --middle;
background-color: transparent;
border-bottom: solid var(--color-field--primary);
border-radius: 0;
border-width: 0 0 1px;
color: var(--color-field--secondary);
flex: 1;
font-family: inherit;
margin: 0;
min-height: var(--field-min-height); /* IE11 Input Height */
padding: 4px 0;
text-align: left;
transition: border var(--global-duration) ease-in-out, padding .4s ease-in, padding .2s ease-out;
width: 100%;
&:--focus-field {
border-bottom-color: var(--color-field--focus);
border-width: 0 0 2px;
caret-color: var(--color-field--focus);
outline: none;
&::placeholder { @apply --field-placeholder; }
}
&:--invalid-field {
border-bottom-color: var(--color-field--error);
border-width: 0 0 2px;
caret-color: var(--color-field--error);
&::placeholder { @apply --field-placeholder; }
& ~ .c-field__helper {
color: var(--color-field--error);
opacity: 1 !important;
}
& ~ .c-field__action {
color: var(--color-field--error);
}
}
&[disabled] {
border-bottom-style: dotted;
border-width: 0 0 2px;
}
&::placeholder {
color: var(--grey-200);
font-size: var(--fontSize--semiNormal);
}
.c-field:not(.has-label) &::placeholder {
opacity: 1 !important;
}
.c-field--large & {
padding: .1em 0;
font-size: var(--fontSize--medium);
&::placeholder {
font-size: var(--fontSize--medium);
}
}
.c-field--dense & { padding: 0; }
.c-field--full-width & {
padding: 20px 0;
}
.c-field--full-width.c-field--dense & {
padding: 16px 0;
}
&:focus ~ .c-field__label .c-field__required {
color: var(--color-error);
}
& .c-button { margin-bottom: 0 !important; }
&[type="color"] {
appearance: none;
border: none;
border-radius: 2px;
height: 30px;
}
&[type="color"]::-webkit-color-swatch-wrapper {
border: 1px solid color(var(--white) a(0));
border-radius: 2px;
box-shadow:
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary);
padding: 0;
}
&[type="color"]:focus::-webkit-color-swatch-wrapper {
box-shadow:
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus);
}
&[type="color"]::-webkit-color-swatch {
border: none;
border-radius: 3px;
}
}
.js-placeholder-shown:not(:focus)::placeholder, /* Fallback IE JS Hack Class */
.c-field__input:placeholder-shown:not(:focus)::placeholder { opacity: 0; }
.c-field__label {
bottom: 0;
color: var(--grey-400);
font-size: 12px;
font-weight: normal;
left: 0;
overflow: hidden;
position: absolute;
pointer-events: none;
right: 0;
transition: all .2s cubic-bezier(.4,0,.2,1);
top: 4px;
white-space: nowrap;
will-change: color, font-size, top, visibility;
.c-field__input:focus ~ & {
color: var(--color-primary);
}
.c-field__input::placeholder {
opacity: 1;
transition: opacity .2s ease-in-out;
}
.js-placeholder-shown:not(:focus) + &,
.c-field__input:placeholder-shown:not(:focus) + & {
color: color(var(--black) a(.26));
font-size: 1em;
top: 21px;
.t-dark & {
color: color(var(--white) a(.50));
}
.c-field--large & {
font-size: var(--fontSize--medium);
}
}
.c-field__input[type="color"] ~ & { visibility: hidden; }
.js-field--required & {
color: var(--color-error);
}
}
.t-dark,
.t-fullscreen,
:--fullscreen {
.c-field,
.c-field__input {
color: var(--color-field-dark--secondary);
&::placeholder {
color: var(--color-field-dark--placeholder);
}
}
}
.c-field__helper {
bottom: 0;
color: var(--color-neutral);
font-size: var(--fontSize--tiny);
left: 0;
position: absolute;
transition: opacity .1s ease;
.c-field__input:not(:focus) ~ & {
opacity: 0;
}
}
.c-field--large {
font-size: var(--fontSize--medium);
padding: .5em 0 .25em;
}
.c-field__action {
position: absolute;
right: 0;
top: .75em;
}
.c-field__info {
position: absolute;
right: 0;
top: 0;
z-index: 2;
}
/* Inside a toolbar */
.c-toolbar {
.c-field {
background-color: color(var(--grey-500) a(15%));
border-radius: 2px;
border-bottom: none;
height: 36px;
padding: 0;
transition: background-color .1s ease-in-out;
&:hover {
background-color: color(var(--grey-500) a(25%));
}
& > .c-icon {
color: var(--grey-600);
margin: 6px 20px;
}
}
.c-field__input {
border-bottom: none;
width: auto;
}
.c-field__input::placeholder {
color: var(--grey-600);
opacity: 1 !important;
}
}
.c-toolbar--dark,
.c-toolbar--primary {
.c-field {
background-color: color(var(--white) a(15%));
&:hover {
background-color: color(var(--white) a(25%));
}
}
.c-field__input::placeholder {
color: var(--white);
}
} | src/components/field.css | @custom-selector :--focus-field :focus, .has-focus;
@custom-selector :--invalid-field :focus:invalid, :focus.is-invalid, :invalid, .is-invalid;
:root {
--field-font-size: 16px;
--field-font-size--dense: 13px;
--field-min-height: 33px;
--field-placeholder: {
color: var(--grey-200);
text-fill-color: initial;
};
}
.c-field {
border: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-size: var(--field-font-size);
max-width: 100%;
padding: 1em 0 .5em;
position: relative;
&.has-helper { padding-bottom: 24px; }
}
.c-field__input {
@apply --middle;
background-color: transparent;
border-bottom: solid var(--color-field--primary);
border-radius: 0;
border-width: 0 0 1px;
color: var(--color-field--secondary);
flex: 1;
font-family: inherit;
margin: 0;
min-height: var(--field-min-height); /* IE11 Input Height */
padding: 4px 0;
text-align: left;
transition: border var(--global-duration) ease-in-out, padding .4s ease-in, padding .2s ease-out;
width: 100%;
&:--focus-field {
border-bottom-color: var(--color-field--focus);
border-width: 0 0 2px;
caret-color: var(--color-field--focus);
outline: none;
&::placeholder { @apply --field-placeholder; }
}
&:--invalid-field {
border-bottom-color: var(--color-field--error);
border-width: 0 0 2px;
caret-color: var(--color-field--error);
&::placeholder { @apply --field-placeholder; }
& ~ .c-field__helper {
color: var(--color-field--error);
opacity: 1 !important;
}
& ~ .c-field__action {
color: var(--color-field--error);
}
}
&[disabled] {
border-bottom-style: dotted;
border-width: 0 0 2px;
}
&::placeholder {
color: var(--grey-200);
font-size: var(--fontSize--semiNormal);
}
.c-field:not(.has-label) &::placeholder {
opacity: 1 !important;
}
.c-field--large & {
padding: .1em 0;
font-size: var(--fontSize--medium);
&::placeholder {
font-size: var(--fontSize--medium);
}
}
.c-field--dense & { padding: 0; }
.c-field--full-width & {
padding: 20px 0;
}
.c-field--full-width.c-field--dense & {
padding: 16px 0;
}
&:focus ~ .c-field__label .c-field__required {
color: var(--color-error);
}
& .c-button { margin-bottom: 0 !important; }
&[type="color"] {
appearance: none;
border: none;
border-radius: 2px;
height: 30px;
}
&[type="color"]::-webkit-color-swatch-wrapper {
border: 1px solid color(var(--white) a(0));
border-radius: 2px;
box-shadow:
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary),
0 0 1px 1px var(--color-field--primary);
padding: 0;
}
&[type="color"]:focus::-webkit-color-swatch-wrapper {
box-shadow:
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus),
0 0 1px 1px var(--color-field--focus);
}
&[type="color"]::-webkit-color-swatch {
border: none;
border-radius: 3px;
}
}
.js-placeholder-shown:not(:focus)::placeholder, /* Fallback IE JS Hack Class */
.c-field__input:placeholder-shown:not(:focus)::placeholder { opacity: 0; }
.c-field__label {
bottom: 0;
color: var(--grey-400);
font-size: 12px;
font-weight: normal;
left: 0;
overflow: hidden;
position: absolute;
pointer-events: none;
right: 0;
transition: all .2s cubic-bezier(.4,0,.2,1);
top: 4px;
white-space: nowrap;
will-change: color, font-size, top, visibility;
.c-field__input:focus ~ & {
color: var(--color-primary);
}
.c-field__input::placeholder {
opacity: 1;
transition: opacity .2s ease-in-out;
}
.js-placeholder-shown:not(:focus) + &,
.c-field__input:placeholder-shown:not(:focus) + & {
color: color(var(--black) a(.26));
font-size: 1em;
top: 21px;
.t-dark & {
color: color(var(--white) a(.50));
}
.c-field--large & {
font-size: var(--fontSize--medium);
}
}
.c-field__input[type="color"] ~ & { visibility: hidden; }
.js-field--required & {
color: var(--color-error);
}
}
.t-dark,
.t-fullscreen,
:--fullscreen {
.c-field,
.c-field__input {
color: var(--color-field-dark--secondary);
&::placeholder {
color: var(--color-field-dark--placeholder);
}
}
}
.c-field__helper {
bottom: 0;
color: var(--color-neutral);
font-size: var(--fontSize--tiny);
left: 0;
position: absolute;
transition: opacity .1s ease;
.c-field__input:not(:focus) ~ & {
opacity: 0;
}
}
.c-field--large {
font-size: var(--fontSize--medium);
padding: .5em 0 .25em;
}
.c-field__action {
position: absolute;
right: 0;
top: .75em;
}
.c-field__info {
position: absolute;
right: 0;
top: 0;
z-index: 2;
}
/* Inside a toolbar */
.c-toolbar {
.c-field {
background-color: color(var(--grey-500) a(15%));
border-radius: 2px;
border-bottom: none;
height: 36px;
padding: 0;
transition: background-color .1s ease-in-out;
&:hover {
background-color: color(var(--grey-500) a(25%));
}
& > .c-icon {
color: var(--grey-600);
margin: 6px 20px;
}
}
.c-field__input {
border-bottom: none;
width: auto;
}
.c-field__input::placeholder {
color: var(--grey-600);
opacity: 1 !important;
}
}
.c-toolbar--dark,
.c-toolbar--primary {
.c-field {
background-color: color(var(--white) a(15%));
&:hover {
background-color: color(var(--white) a(25%));
}
}
.c-field__input::placeholder {
color: var(--white);
}
} | 0.465145 | 0.105119 |
.carousel-item {
height: 65vh;
min-height: 350px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.video__icon {
position: absolute;
width: 50px;
left: 1200px;
top: 18px; }
.video__icon .circle--outer {
border: 1px solid rgb(236, 27, 27);
width: 30px;
height: 30px;
border-radius: 50%;
margin: 0 auto 5px;
position: relative;
opacity: .8;
-webkit-animation: circle 1.5s ease-in-out infinite;
animation: circle 1.5s ease-in-out infinite; }
.video__icon .circle--inner {
background: rgb(236, 27, 27);
left: 18px;
top: 7px;
width: 15px;
height: 15px;
border-radius: 50%;
position: absolute;
opacity: .8; }
.video__icon p {
color: rgb(236, 27, 27);
text-align: center; }
@-webkit-keyframes circle {
from {
-webkit-transform: scale(1);
transform: scale(1); }
to {
-webkit-transform: scale(1.5);
transform: scale(1.5);
opacity: 0; } }
@keyframes circle {
from {
-webkit-transform: scale(1);
transform: scale(1);
}
to {
-webkit-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
} }
.f-color{
background-color: #414040;
}
.h-color{
background-color: #343634;
}
.form-control
{
position: absolute;
left: 790px;
margin-top: -17px;
height: 30px;
background-color: #ffffff;
}
#example2 {
box-sizing: border-box;
font-family: Roboto Slab;
font-weight:bold;
font-size:38px;
width: 1400px;
height: 180px;
padding-top:50px;
padding-bottom: 20px;
border: 10px solid rgb(0, 0, 0);
}
.q-color{
color: #982A07;
}
.h-div{
position: absolute;
top:1050px;
left:300px;
}
/* styling sidebar */
.sidehoverbar button {
background-color: rgb(95, 32, 32);
position: absolute;
font-size: 22px;
text-decoration: none;
Color: rgb(255, 255, 255);
padding: 10px;
border-radius: 0px 5px 5px 0px;
TOP:650PX;
left: -55px;
transition: 0.5s;
opacity: 1;
}
/* Hover effect on sidebar */
.sidehoverbar button:hover {
left: 0px;
opacity: 1;
background-color: #6e3737;
color: white;
}
/* float icons*/
.sidehoverbar i {
float: right;
}
/* defining position of each nav bar */
.article {
top: 50px;
width: 200px;
height: 55px;
}
.wrapper {
padding-top: 50px;
height: 200px;
/*This part is important for centering*/
display: flex;
align-items: center;
justify-content: center;
}
.typing-demo {
width: 14ch;
animation: typing 3s steps(14), blink .5s step-end infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
font-size: 2em;
}
@keyframes typing {
from {
width: 0
}
}
@keyframes blink {
50% {
border-color: transparent
}
}
#city {
background-image: url("http://clipart-library.com/newimages/city-clip-art-3.png");
position: relative;
height: 500px;
background-repeat: repeat-x;
background-position: -10000px;
min-width:400px
}
.amb {
width: 200px;
position: absolute;
top: 150px;
left: 50%;
transform: translate(-50%, -20%)
}
.ambu{
width: 100px;
height: auto;
position: absolute;
left:1600px;
top:150px;
}
h4 {
font-size: 80px;
text-align: center;
color: rgb(0, 0, 0);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px rgb(230, 169, 169), 0 0 10px rgb(192, 98, 98), 0 0 15px #ecd719, 0 0 20px #eaf825, 0 0 25px #da534a, 0 0 30px #cc6760, 0 0 35px #e7503c;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #ffffff, 0 0 70px #ffffff;
}
}
.card1,.card2,.card3,.card4{
box-shadow: 0 5px 85px rgba(0,0,0,0.15);
width: 350px;
height: 450px;
padding: 20px;
margin-left: 25px;
}
.card1:hover,.card2:hover,.card3:hover,.card4 :hover{
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.521);
size: 200px;
}
#c1{
height: 230px;
}
.land {
animation: color-land 1s infinite;
}
@keyframes color-land {
0% { color: red; }
50% { color: rgb(185, 159, 13); }
100% { color: rgb(168, 38, 21); }
}
.flood{
animation: color-flood 1s infinite;
}
@keyframes color-flood {
0% { color: rgb(44, 155, 175); }
50% { color: blue; }
100% { color:rgb(44, 155, 175); }
}
.tornado{
animation: color-t 1s infinite;
}
@keyframes color-t {
0% { color: rgb(51, 51, 51); }
50% { color: rgb(32, 85, 56); }
100% { color:rgb(36, 37, 37); }
}
.earth{
animation: color-e 1s infinite;
}
@keyframes color-e {
0% { color: rgb(12, 112, 8); }
50% { color: rgb(81, 179, 25); }
100% { color:rgb(41, 114, 35); }
}
.modal-body{
width: 350px;
}
.mob{
position: relative;
left:50px;
top:-17px;
width: 200px;
}
.m-sub{
position: relative;
left: 150px;
}
#c-img{
margin-top: 90px;
margin-left: 300px;
}
.login-head{
position: absolute;
left:600px;
top:50px;
}
.cardabout{
position: absolute;
margin-left: 220px;
margin-top: 270px;
height: 500px;
width: 800px;
background-color: #da534a;
box-shadow: 0 5px 85px rgba(0,0,0,0.15);
padding: 20px;
justify-content: center;
border-radius: 15px 15px 15px 15px;
}
.cardabout:hover{
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.521);
size: 200px;
}
.a-cont{
color: white;
font-size: 18px;
justify-content: center;
} | style.css | .carousel-item {
height: 65vh;
min-height: 350px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.video__icon {
position: absolute;
width: 50px;
left: 1200px;
top: 18px; }
.video__icon .circle--outer {
border: 1px solid rgb(236, 27, 27);
width: 30px;
height: 30px;
border-radius: 50%;
margin: 0 auto 5px;
position: relative;
opacity: .8;
-webkit-animation: circle 1.5s ease-in-out infinite;
animation: circle 1.5s ease-in-out infinite; }
.video__icon .circle--inner {
background: rgb(236, 27, 27);
left: 18px;
top: 7px;
width: 15px;
height: 15px;
border-radius: 50%;
position: absolute;
opacity: .8; }
.video__icon p {
color: rgb(236, 27, 27);
text-align: center; }
@-webkit-keyframes circle {
from {
-webkit-transform: scale(1);
transform: scale(1); }
to {
-webkit-transform: scale(1.5);
transform: scale(1.5);
opacity: 0; } }
@keyframes circle {
from {
-webkit-transform: scale(1);
transform: scale(1);
}
to {
-webkit-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
} }
.f-color{
background-color: #414040;
}
.h-color{
background-color: #343634;
}
.form-control
{
position: absolute;
left: 790px;
margin-top: -17px;
height: 30px;
background-color: #ffffff;
}
#example2 {
box-sizing: border-box;
font-family: Roboto Slab;
font-weight:bold;
font-size:38px;
width: 1400px;
height: 180px;
padding-top:50px;
padding-bottom: 20px;
border: 10px solid rgb(0, 0, 0);
}
.q-color{
color: #982A07;
}
.h-div{
position: absolute;
top:1050px;
left:300px;
}
/* styling sidebar */
.sidehoverbar button {
background-color: rgb(95, 32, 32);
position: absolute;
font-size: 22px;
text-decoration: none;
Color: rgb(255, 255, 255);
padding: 10px;
border-radius: 0px 5px 5px 0px;
TOP:650PX;
left: -55px;
transition: 0.5s;
opacity: 1;
}
/* Hover effect on sidebar */
.sidehoverbar button:hover {
left: 0px;
opacity: 1;
background-color: #6e3737;
color: white;
}
/* float icons*/
.sidehoverbar i {
float: right;
}
/* defining position of each nav bar */
.article {
top: 50px;
width: 200px;
height: 55px;
}
.wrapper {
padding-top: 50px;
height: 200px;
/*This part is important for centering*/
display: flex;
align-items: center;
justify-content: center;
}
.typing-demo {
width: 14ch;
animation: typing 3s steps(14), blink .5s step-end infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
font-size: 2em;
}
@keyframes typing {
from {
width: 0
}
}
@keyframes blink {
50% {
border-color: transparent
}
}
#city {
background-image: url("http://clipart-library.com/newimages/city-clip-art-3.png");
position: relative;
height: 500px;
background-repeat: repeat-x;
background-position: -10000px;
min-width:400px
}
.amb {
width: 200px;
position: absolute;
top: 150px;
left: 50%;
transform: translate(-50%, -20%)
}
.ambu{
width: 100px;
height: auto;
position: absolute;
left:1600px;
top:150px;
}
h4 {
font-size: 80px;
text-align: center;
color: rgb(0, 0, 0);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px rgb(230, 169, 169), 0 0 10px rgb(192, 98, 98), 0 0 15px #ecd719, 0 0 20px #eaf825, 0 0 25px #da534a, 0 0 30px #cc6760, 0 0 35px #e7503c;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #ffffff, 0 0 70px #ffffff;
}
}
.card1,.card2,.card3,.card4{
box-shadow: 0 5px 85px rgba(0,0,0,0.15);
width: 350px;
height: 450px;
padding: 20px;
margin-left: 25px;
}
.card1:hover,.card2:hover,.card3:hover,.card4 :hover{
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.521);
size: 200px;
}
#c1{
height: 230px;
}
.land {
animation: color-land 1s infinite;
}
@keyframes color-land {
0% { color: red; }
50% { color: rgb(185, 159, 13); }
100% { color: rgb(168, 38, 21); }
}
.flood{
animation: color-flood 1s infinite;
}
@keyframes color-flood {
0% { color: rgb(44, 155, 175); }
50% { color: blue; }
100% { color:rgb(44, 155, 175); }
}
.tornado{
animation: color-t 1s infinite;
}
@keyframes color-t {
0% { color: rgb(51, 51, 51); }
50% { color: rgb(32, 85, 56); }
100% { color:rgb(36, 37, 37); }
}
.earth{
animation: color-e 1s infinite;
}
@keyframes color-e {
0% { color: rgb(12, 112, 8); }
50% { color: rgb(81, 179, 25); }
100% { color:rgb(41, 114, 35); }
}
.modal-body{
width: 350px;
}
.mob{
position: relative;
left:50px;
top:-17px;
width: 200px;
}
.m-sub{
position: relative;
left: 150px;
}
#c-img{
margin-top: 90px;
margin-left: 300px;
}
.login-head{
position: absolute;
left:600px;
top:50px;
}
.cardabout{
position: absolute;
margin-left: 220px;
margin-top: 270px;
height: 500px;
width: 800px;
background-color: #da534a;
box-shadow: 0 5px 85px rgba(0,0,0,0.15);
padding: 20px;
justify-content: center;
border-radius: 15px 15px 15px 15px;
}
.cardabout:hover{
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.521);
size: 200px;
}
.a-cont{
color: white;
font-size: 18px;
justify-content: center;
} | 0.461502 | 0.054399 |
*{
box-sizing: border-box;
}
#backcolor{
background: #83a4d4; /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
background: rgb(213,51,105);
background: linear-gradient(330deg, rgba(213,51,105,1) 0%, rgba(255,188,47,1) 100%);
padding-bottom: 25px;
padding-top: 25px;
}
/*JUMBOTRON */
.jumbotron{
clear: both;
padding-top: 32px;
background: #1da1f2; /* For browsers that do not support gradients */
background: rgb(29,161,242);
background: linear-gradient(155deg, rgba(29,161,242,1) 0%, rgba(144,0,128,1) 96%);
margin-bottom: 0px;
}
.welcome-header{
color:#ffffff;
font-family: Arial, Helvetica, sans-serif
}
.subtitle{
color: #ffffff;
font-family: Arial, Helvetica, sans-serif
}
@media only screen and (max-width: 600px){
#bot-pic{ max-width: 80%; height: 110px !important;
margin: 0 auto; }
}
@media only screen and (min-width: 600px){
#bot-pic{ max-width: 70%; height: auto !important;
float: right; padding-top: 35px; }
}
@media only screen and (min-width: 768px){
#bot-pic{ max-width: 50%; height: auto !important;
float: right; padding-top: 35px;}
}
@media only screen and (min-width: 992px){
#bot-pic{ max-width: 40%; height: auto !important;
float: right; padding-top: 35px;}
}
.jumbotron .btn-group {
padding-bottom: 1.5em;
}
#twitbi{ width:2px; height:20px; color:#ffffff;
padding-left: 9px; padding-right: 8px;}
#signIn:hover, #signIn:active, #signIn:focus{
background-color:#ffffff;
width:190%;
color:#1DA1F2;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
#signIn{
background-color:#ffffff00;
width:190%;
color:#ffffff;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
#logOut{
margin-left: 15px;
background: #cb2d3e;
width:190%;
color: #ffffff;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
.disabled{
pointer-events: none;
cursor: default;
}
/*Search Twitter Handle*/
.preference-search{
font-weight: 300;
text-align: center;
margin-bottom: 0px;
padding-bottom: 10px;
}
#think{
width: 5em; height: auto;
display: block;
margin: 0 auto; padding-bottom: 7px;
}
#searchBi{padding-right: 9%;}
.btn-info{
padding-right: 1.2em;
}
.user-search-container{
padding: 12px;
width: 100%;
}
.user-search-input{
display: table;
margin: 0 auto;
}
#userid-search{
padding:5px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
.result-bot{
border-radius: 20px;
background-color: red;
color: white;
padding: 10px;
}
.result-human{
border-radius: 20px;
background-color: green;
color: white;
padding: 10px;
}
input:focus{
outline: none;
}
.check-button{
color: #ffffff;
background: #1da1f2;
border:2px solid #1DA1F2;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.check-button:hover, .check-button:active{
background: #1886ca;
border:2px solid #1886ca;
}
.form-control{
padding-right: 8em;
margin-right: .1em;
}
.loader{
padding-top: 12px;
padding-left: 10px;
text-align: center;
}
#resultId{
padding-top: 5px;
padding-left: 5px;
text-align: center;
}
#tweets_loading{
width: 100%;
}
/**Tweet Display **/
#tweetDisplay{
margin: 0px;
/**background: #36D1DC; /* fallback for old browsers */
/**background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC); /* Chrome 10-25, Safari 5.1-6 */
/**background: linear-gradient(to right, #5B86E5, #36D1DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: #83a4d4; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#tweetDisplay > .col-12, #tweetDisplay > .col-md-4 {
padding: 0px;
margin-top: 25px;
}
.hidden{ display: none; }
hr{ margin: 0px; }
/* ----------------------------------------------
* Generated by Animista on 2018-5-31 10:33:21
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation scale-in-top
* ----------------------------------------
*/
@-webkit-keyframes scale-in-top {
0% {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
}
@keyframes scale-in-top {
0% {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
}
.scale-in-top {
-webkit-animation: scale-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.card{ border: 0px; margin-left: 5%; margin-right: 5% }
.card-header {
background: #11998e; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #38ef7d, #11998e); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #38ef7d, #11998e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.card-body{
padding-top: 10px; padding-bottom: 10px;
/** background: #83a4d4; /* fallback for old browsers */
/**background: -webkit-linear-gradient(to bottom, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
/**background: linear-gradient(to bottom, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.badge-warning, #name-person{ text-transform:capitalize;}
#verify{ display: inline; float: right;}
#profile-image{
max-width: 40%;
height: auto !important;
float: right;
}
footer{
width: 100%;
height: 100px;
background-color: #212121;
color: white;
text-align: center;
}
#github-logo{
width: 5em;
height: auto;
display: block;
margin: 0 auto;
padding: 15px;
} | views/css/style.css | *{
box-sizing: border-box;
}
#backcolor{
background: #83a4d4; /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
background: rgb(213,51,105);
background: linear-gradient(330deg, rgba(213,51,105,1) 0%, rgba(255,188,47,1) 100%);
padding-bottom: 25px;
padding-top: 25px;
}
/*JUMBOTRON */
.jumbotron{
clear: both;
padding-top: 32px;
background: #1da1f2; /* For browsers that do not support gradients */
background: rgb(29,161,242);
background: linear-gradient(155deg, rgba(29,161,242,1) 0%, rgba(144,0,128,1) 96%);
margin-bottom: 0px;
}
.welcome-header{
color:#ffffff;
font-family: Arial, Helvetica, sans-serif
}
.subtitle{
color: #ffffff;
font-family: Arial, Helvetica, sans-serif
}
@media only screen and (max-width: 600px){
#bot-pic{ max-width: 80%; height: 110px !important;
margin: 0 auto; }
}
@media only screen and (min-width: 600px){
#bot-pic{ max-width: 70%; height: auto !important;
float: right; padding-top: 35px; }
}
@media only screen and (min-width: 768px){
#bot-pic{ max-width: 50%; height: auto !important;
float: right; padding-top: 35px;}
}
@media only screen and (min-width: 992px){
#bot-pic{ max-width: 40%; height: auto !important;
float: right; padding-top: 35px;}
}
.jumbotron .btn-group {
padding-bottom: 1.5em;
}
#twitbi{ width:2px; height:20px; color:#ffffff;
padding-left: 9px; padding-right: 8px;}
#signIn:hover, #signIn:active, #signIn:focus{
background-color:#ffffff;
width:190%;
color:#1DA1F2;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
#signIn{
background-color:#ffffff00;
width:190%;
color:#ffffff;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
#logOut{
margin-left: 15px;
background: #cb2d3e;
width:190%;
color: #ffffff;
border-radius: 20px;
padding: 10px;
border: 2px solid #ffffff;
}
.disabled{
pointer-events: none;
cursor: default;
}
/*Search Twitter Handle*/
.preference-search{
font-weight: 300;
text-align: center;
margin-bottom: 0px;
padding-bottom: 10px;
}
#think{
width: 5em; height: auto;
display: block;
margin: 0 auto; padding-bottom: 7px;
}
#searchBi{padding-right: 9%;}
.btn-info{
padding-right: 1.2em;
}
.user-search-container{
padding: 12px;
width: 100%;
}
.user-search-input{
display: table;
margin: 0 auto;
}
#userid-search{
padding:5px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
.result-bot{
border-radius: 20px;
background-color: red;
color: white;
padding: 10px;
}
.result-human{
border-radius: 20px;
background-color: green;
color: white;
padding: 10px;
}
input:focus{
outline: none;
}
.check-button{
color: #ffffff;
background: #1da1f2;
border:2px solid #1DA1F2;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.check-button:hover, .check-button:active{
background: #1886ca;
border:2px solid #1886ca;
}
.form-control{
padding-right: 8em;
margin-right: .1em;
}
.loader{
padding-top: 12px;
padding-left: 10px;
text-align: center;
}
#resultId{
padding-top: 5px;
padding-left: 5px;
text-align: center;
}
#tweets_loading{
width: 100%;
}
/**Tweet Display **/
#tweetDisplay{
margin: 0px;
/**background: #36D1DC; /* fallback for old browsers */
/**background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC); /* Chrome 10-25, Safari 5.1-6 */
/**background: linear-gradient(to right, #5B86E5, #36D1DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: #83a4d4; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#tweetDisplay > .col-12, #tweetDisplay > .col-md-4 {
padding: 0px;
margin-top: 25px;
}
.hidden{ display: none; }
hr{ margin: 0px; }
/* ----------------------------------------------
* Generated by Animista on 2018-5-31 10:33:21
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation scale-in-top
* ----------------------------------------
*/
@-webkit-keyframes scale-in-top {
0% {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
}
@keyframes scale-in-top {
0% {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
opacity: 1;
}
}
.scale-in-top {
-webkit-animation: scale-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.card{ border: 0px; margin-left: 5%; margin-right: 5% }
.card-header {
background: #11998e; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #38ef7d, #11998e); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #38ef7d, #11998e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.card-body{
padding-top: 10px; padding-bottom: 10px;
/** background: #83a4d4; /* fallback for old browsers */
/**background: -webkit-linear-gradient(to bottom, #b6fbff, #83a4d4); /* Chrome 10-25, Safari 5.1-6 */
/**background: linear-gradient(to bottom, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.badge-warning, #name-person{ text-transform:capitalize;}
#verify{ display: inline; float: right;}
#profile-image{
max-width: 40%;
height: auto !important;
float: right;
}
footer{
width: 100%;
height: 100px;
background-color: #212121;
color: white;
text-align: center;
}
#github-logo{
width: 5em;
height: auto;
display: block;
margin: 0 auto;
padding: 15px;
} | 0.39129 | 0.077588 |
left: auto;
top: 56px;
right: 7px;
height: 33px;
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
padding: 4px;
opacity: 0.9;
border-radius: 4px;
display: table;
z-index: 2;
}
#sc-basemap-main-container:hover {
opacity: 1;
}
#sc-basemap-imagery-slider-container .rc-slider-mark {
top: -23px;
}
#sc-basemap-imagery-slider-container .rc-slider-mark-text {
color: #337ab7 !important;
text-decoration: underline;
cursor: pointer !important;
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none;
}
#sc-basemap-imagery-slider-container:hover {
opacity: 1;
}
.sc-basemap-imagery-slider-container {
right: 107px;
width: 78px;
height: 280px;
top: 100px;
background-color: #fff;
border-radius: 4px;
position: absolute;
user-select: none;
opacity: 0.9;
z-index: 2;
}
.sc-basemap-collapse-button {
display: table-cell;
background-image: url(./images/tab-close.png);
background-position: center center;
background-repeat: no-repeat;
color: #999;
min-width: 20px !important;
cursor: pointer;
border-right: 1px solid #ccc;
}
.sc-basemap-collapse-button.closed {
background-image: url(./images/tab-open.png);
}
.sc-basemap-imagery {
display: table-cell;
padding-left: 5px;
width: 83px;
}
.sc-basemap-imagery-button {
width: 69px;
}
.sc-basemap-topo-button {
width: 69px;
}
.sc-basemap-topo {
display: table-cell;
padding-left: 5px;
width: 83px;
}
.sc-basemap-arrow {
width: 12px;
height: 32px;
float: right;
background-image: url(./images/arrow-down.png) !important;
background-position: center center !important;
background-repeat: no-repeat !important;
}
.sc-basemap-topo-container {
right: 8px;
width: 92px;
/* height: 280px; */
top: 100px;
background-color: #fff;
border-radius: 4px;
position: absolute;
user-select: none;
opacity: 0.9;
font-size: 9pt;
z-index: 2;
}
.sc-basemap-topo-item-container {
text-align: center;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
user-select: none;
font-weight: bold;
}
.sc-basemap-topo-item-container.active {
background: linear-gradient(to bottom, rgba(240, 249, 255, 1) 0%, rgb(191, 214, 228) 100%);
border: 1px solid #90b5d5;
}
.sc-basemap-topo-image {
width: 70px;
border: 1px solid #ccc;
/* margin-left: 4px; */
}
.sc-basemap-streets-label {
display: block;
font-size: 10pt;
margin-left: 11px;
padding-bottom: 5px;
padding-top: 7px;
}
.sc-basemap-streets-checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
*overflow: hidden;
transform: scale(1.1, 1.1);
}
.sc-basemap-topo-label {
display: block;
font-size: 10pt;
margin-left: 14px;
padding-bottom: 5px;
padding-top: 7px;
}
.sc-basemap-topo-checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
*overflow: hidden;
transform: scale(1.1, 1.1);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.sc-basemap-main-container {
/* right: 20px; */
}
.sc-basemap-imagery-slider-container {
right: 75px;
}
} | src/map/BasemapSwitcher.css | left: auto;
top: 56px;
right: 7px;
height: 33px;
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
padding: 4px;
opacity: 0.9;
border-radius: 4px;
display: table;
z-index: 2;
}
#sc-basemap-main-container:hover {
opacity: 1;
}
#sc-basemap-imagery-slider-container .rc-slider-mark {
top: -23px;
}
#sc-basemap-imagery-slider-container .rc-slider-mark-text {
color: #337ab7 !important;
text-decoration: underline;
cursor: pointer !important;
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none;
}
#sc-basemap-imagery-slider-container:hover {
opacity: 1;
}
.sc-basemap-imagery-slider-container {
right: 107px;
width: 78px;
height: 280px;
top: 100px;
background-color: #fff;
border-radius: 4px;
position: absolute;
user-select: none;
opacity: 0.9;
z-index: 2;
}
.sc-basemap-collapse-button {
display: table-cell;
background-image: url(./images/tab-close.png);
background-position: center center;
background-repeat: no-repeat;
color: #999;
min-width: 20px !important;
cursor: pointer;
border-right: 1px solid #ccc;
}
.sc-basemap-collapse-button.closed {
background-image: url(./images/tab-open.png);
}
.sc-basemap-imagery {
display: table-cell;
padding-left: 5px;
width: 83px;
}
.sc-basemap-imagery-button {
width: 69px;
}
.sc-basemap-topo-button {
width: 69px;
}
.sc-basemap-topo {
display: table-cell;
padding-left: 5px;
width: 83px;
}
.sc-basemap-arrow {
width: 12px;
height: 32px;
float: right;
background-image: url(./images/arrow-down.png) !important;
background-position: center center !important;
background-repeat: no-repeat !important;
}
.sc-basemap-topo-container {
right: 8px;
width: 92px;
/* height: 280px; */
top: 100px;
background-color: #fff;
border-radius: 4px;
position: absolute;
user-select: none;
opacity: 0.9;
font-size: 9pt;
z-index: 2;
}
.sc-basemap-topo-item-container {
text-align: center;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
user-select: none;
font-weight: bold;
}
.sc-basemap-topo-item-container.active {
background: linear-gradient(to bottom, rgba(240, 249, 255, 1) 0%, rgb(191, 214, 228) 100%);
border: 1px solid #90b5d5;
}
.sc-basemap-topo-image {
width: 70px;
border: 1px solid #ccc;
/* margin-left: 4px; */
}
.sc-basemap-streets-label {
display: block;
font-size: 10pt;
margin-left: 11px;
padding-bottom: 5px;
padding-top: 7px;
}
.sc-basemap-streets-checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
*overflow: hidden;
transform: scale(1.1, 1.1);
}
.sc-basemap-topo-label {
display: block;
font-size: 10pt;
margin-left: 14px;
padding-bottom: 5px;
padding-top: 7px;
}
.sc-basemap-topo-checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
*overflow: hidden;
transform: scale(1.1, 1.1);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.sc-basemap-main-container {
/* right: 20px; */
}
.sc-basemap-imagery-slider-container {
right: 75px;
}
} | 0.318061 | 0.067824 |
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
header {
z-index: 999;
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
transition: 0.5s ease;
}
header .brand {
color: #fff;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
}
header .navigation {
position: relative;
}
header .navigation .navigation-items a {
position: relative;
color: #fff;
font-size: 1em;
font-weight: 500;
text-decoration: none;
margin-left: 30px;
transition: 0.3s ease;
}
header .navigation .navigation-items a:before {
content: '';
position: absolute;
background: #fff;
width: 0;
height: 3px;
bottom: 0;
left: 0;
transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before {
width: 100%;
}
section {
padding: 100px 200px;
}
.home {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
background: #fd950d;
}
.home:before {
z-index: 777;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(248, 219, 164, 0.205);
}
.home .container {
z-index: 888;
color: #fff;
width: 90%;
margin-top: 30px;
}
.home .container h1 {
font-size: 3em;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 5px;
line-height: 50px;
margin-bottom: 30px;
}
.home .container h1 span {
font-size: 0.7em;
font-weight: 500;
}
.home .container a {
background: #fff;
padding: 15px 35px;
color: #f1831c;
font-size: 1.1em;
font-weight: 500;
text-decoration: none;
border-radius: 2px;
}
.home .media-icons {
z-index: 888;
position: absolute;
right: 30px;
display: flex;
flex-direction: column;
transition: 0.5s ease;
}
.home .media-icons a {
color: #fff;
font-size: 1.6em;
transition: 0.3s ease;
padding-bottom: 20px;
}
.home .media-icons a:hover {
transform: scale(1.3);
}
.home video {
z-index: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
object-fit: cover;
}
.slider-navigation {
z-index: 888;
position: relative;
display: flex;
justify-content: center;
align-items: center;
transform: translateY(80px);
margin-bottom: 17px;
}
.slider-navigation .nav-btn {
width: 17px;
height: 17px;
background: #fff;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
transition: 0.3s ease;
margin-right: 20px;
}
.slider-navigation .nav-btn.active {
background: rgb(245, 72, 4);
}
.slider-navigation .nav-btn:hover {
transform: scale(1.2em);
}
.video-slide {
position: absolute;
width: 100%;
clip-path: circle(0% at 0 50%);
}
.video-slide.active {
clip-path: circle(150% at 0 50%);
transition: 2s ease;
transition-property: clip-path;
} | hyf2/style.css | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
header {
z-index: 999;
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
transition: 0.5s ease;
}
header .brand {
color: #fff;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
}
header .navigation {
position: relative;
}
header .navigation .navigation-items a {
position: relative;
color: #fff;
font-size: 1em;
font-weight: 500;
text-decoration: none;
margin-left: 30px;
transition: 0.3s ease;
}
header .navigation .navigation-items a:before {
content: '';
position: absolute;
background: #fff;
width: 0;
height: 3px;
bottom: 0;
left: 0;
transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before {
width: 100%;
}
section {
padding: 100px 200px;
}
.home {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
background: #fd950d;
}
.home:before {
z-index: 777;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(248, 219, 164, 0.205);
}
.home .container {
z-index: 888;
color: #fff;
width: 90%;
margin-top: 30px;
}
.home .container h1 {
font-size: 3em;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 5px;
line-height: 50px;
margin-bottom: 30px;
}
.home .container h1 span {
font-size: 0.7em;
font-weight: 500;
}
.home .container a {
background: #fff;
padding: 15px 35px;
color: #f1831c;
font-size: 1.1em;
font-weight: 500;
text-decoration: none;
border-radius: 2px;
}
.home .media-icons {
z-index: 888;
position: absolute;
right: 30px;
display: flex;
flex-direction: column;
transition: 0.5s ease;
}
.home .media-icons a {
color: #fff;
font-size: 1.6em;
transition: 0.3s ease;
padding-bottom: 20px;
}
.home .media-icons a:hover {
transform: scale(1.3);
}
.home video {
z-index: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
object-fit: cover;
}
.slider-navigation {
z-index: 888;
position: relative;
display: flex;
justify-content: center;
align-items: center;
transform: translateY(80px);
margin-bottom: 17px;
}
.slider-navigation .nav-btn {
width: 17px;
height: 17px;
background: #fff;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
transition: 0.3s ease;
margin-right: 20px;
}
.slider-navigation .nav-btn.active {
background: rgb(245, 72, 4);
}
.slider-navigation .nav-btn:hover {
transform: scale(1.2em);
}
.video-slide {
position: absolute;
width: 100%;
clip-path: circle(0% at 0 50%);
}
.video-slide.active {
clip-path: circle(150% at 0 50%);
transition: 2s ease;
transition-property: clip-path;
} | 0.441914 | 0.055592 |
*{margin:0;padding:0;font-size:12px}
html,body{height:100%}
ul,ol{margin:0}
.head{width:100%;height:10vh;background-color:#0e172f;box-shadow:0px 4px 22px #b1cee8}
.head .head_logo{display:inline-flex;width:200px;height:72px;margin-left:10%}
.head .head_logo img{line-height:72px;margin-left:20px;width:141px;height:40px;margin-top:16px}
a{text-decoration:none;font-size:12px;color:#1D5494}
#top{position:absolute;top:0;left:0;width:100%;padding:16px 0 12px 10%}
#img_logo{width:180px;position: relative;left: -100px;top: 20px;}
#img5{margin:0 0 0 700px}
#content_1 img{width:100%;height:100%}
#content{position:relative;margin:0 auto;height:100%;width:75.625%}
#iam_container{position:absolute;width:370px;height:388px;margin:10% 60%;z-index:100}
#iam_container:hover{color:#fff}
#con-top{padding:18px 0 12px;text-align:center}
#con-top span{color:#b8c3ce;cursor:pointer;font-size:16px}
#con-top span.active{color:#0b86f3;font-weight:bold}
#con-top span:hover{opacity:0.8}
#pic{margin-top:30px}
pre{color:#A0A0A0}
span a{color:#3481CF;text-decoration:none}
#text{color:#000;padding:0 0 0 70px;margin-top:-5px}
#text a{color:#A0A0A0;text-decoration:none}
#checkbox{margin:20px 0 0 0}
.con-foot{color:#a6cbec;font-size:8px}
#con-but a{color:#225592}
#foot{position:fixed!important;bottom:0;left:0;z-index:1000;padding:10px 0;width:100%;font-size:14px;line-height:36px;text-align:center;color:#8699db}
#foot a,#foot a:hover{color:#8699db}
#foot a label{margin:0;cursor:pointer;font-weight:normal}
.main-right{position:absolute;right:20px;bottom:20%}
.rightimageBox{position:relative;width:150px;height:178px;border:1px solid #eee;text-align:center;color:#000;background:#eee;z-index:1000;box-shadow:#ffdede 1px 1px 18px}
#qrcode-title{margin:8px}
.rightImage{position:relative;width:135px;height:135px;text-align:center;margin:0 0 0 0px;z-index:1000}
#content-left{position:absolute;left:0;top:78px;bottom:0;width:60%}
.base,.cloud,.shadow,.light{position:absolute;left:-5vh;width:100%;height:100%;overflow:hidden}
.base img,.cloud img,.shadow img,.light img{width:100%;position:absolute;top:29vh}
.shadow img,.light img{bottom:-11.2954%;opacity:0}
.light img{bottom:-20.2454%;opacity:0}
.shadow img{animation:shadowmove .5s .5s 1 both;-webkit-animation:shadowmove .5s .5s 1 both}
.cloud img{animation:cloudmove .5s 1 both;-webkit-animation:cloudmove .5s 1 both}
.base img{animation:basemove .5s 1;-webkit-animation:basemove .5s 1;bottom:-11.43%}
.light img{animation:lightmove .5s .5s infinite both;-webkit-animation:lightmove .5s .5s infinite both}
@keyframes lightmove{from{opacity:0}
to{opacity:100}
}@keyframes shadowmove{from{opacity:0}
to{opacity:100}
}@keyframes cloudmove{from{opacity:0;bottom:100vh}
to{opacity:100;bottom:-10vh}
}@keyframes basemove{from{bottom:0}
to{bottom:0}
}.con-foot{cursor:pointer}
input::-webkit-input-placeholder{color:rgb(190,185,185)}
.pass-word{margin:15px 0}
.cut-line{margin:0 5px}
#login_phone{display:none}
.code-number{position:relative}
.code-number #code-get{position:absolute;right:12px;top:24px;color:#32f4b2;cursor:pointer;border:none;background:none}
#code-get:focus{outline:0}
.code-write{position:absolute;top:-6px;width:250px;z-index:100;height:200px;background:#253666;box-shadow:0 0 10px 0 rgba(0,0,0,.3);border-radius:5px;display:none}
.code-write p{font-size:16px;font-weight:bold;height:30px;line-height:30px;text-align:center;color:#fff}
.code-write p:nth-of-type(2){margin-top:-5px}
.code-write p .code-close{float:right;height:30px;width:30px;cursor:pointer}
.err-info{color:#ef4d4d;position:absolute;display:none}
.err-tip{color:#ef4d4d}
.code-image{width:78px;height:44px;vertical-align:top}
#captcha_panel{}
.gb_box{width:100%;height:100%;position:absolute;top:0px;opacity:0;z-index:10} | static/css/login.css | *{margin:0;padding:0;font-size:12px}
html,body{height:100%}
ul,ol{margin:0}
.head{width:100%;height:10vh;background-color:#0e172f;box-shadow:0px 4px 22px #b1cee8}
.head .head_logo{display:inline-flex;width:200px;height:72px;margin-left:10%}
.head .head_logo img{line-height:72px;margin-left:20px;width:141px;height:40px;margin-top:16px}
a{text-decoration:none;font-size:12px;color:#1D5494}
#top{position:absolute;top:0;left:0;width:100%;padding:16px 0 12px 10%}
#img_logo{width:180px;position: relative;left: -100px;top: 20px;}
#img5{margin:0 0 0 700px}
#content_1 img{width:100%;height:100%}
#content{position:relative;margin:0 auto;height:100%;width:75.625%}
#iam_container{position:absolute;width:370px;height:388px;margin:10% 60%;z-index:100}
#iam_container:hover{color:#fff}
#con-top{padding:18px 0 12px;text-align:center}
#con-top span{color:#b8c3ce;cursor:pointer;font-size:16px}
#con-top span.active{color:#0b86f3;font-weight:bold}
#con-top span:hover{opacity:0.8}
#pic{margin-top:30px}
pre{color:#A0A0A0}
span a{color:#3481CF;text-decoration:none}
#text{color:#000;padding:0 0 0 70px;margin-top:-5px}
#text a{color:#A0A0A0;text-decoration:none}
#checkbox{margin:20px 0 0 0}
.con-foot{color:#a6cbec;font-size:8px}
#con-but a{color:#225592}
#foot{position:fixed!important;bottom:0;left:0;z-index:1000;padding:10px 0;width:100%;font-size:14px;line-height:36px;text-align:center;color:#8699db}
#foot a,#foot a:hover{color:#8699db}
#foot a label{margin:0;cursor:pointer;font-weight:normal}
.main-right{position:absolute;right:20px;bottom:20%}
.rightimageBox{position:relative;width:150px;height:178px;border:1px solid #eee;text-align:center;color:#000;background:#eee;z-index:1000;box-shadow:#ffdede 1px 1px 18px}
#qrcode-title{margin:8px}
.rightImage{position:relative;width:135px;height:135px;text-align:center;margin:0 0 0 0px;z-index:1000}
#content-left{position:absolute;left:0;top:78px;bottom:0;width:60%}
.base,.cloud,.shadow,.light{position:absolute;left:-5vh;width:100%;height:100%;overflow:hidden}
.base img,.cloud img,.shadow img,.light img{width:100%;position:absolute;top:29vh}
.shadow img,.light img{bottom:-11.2954%;opacity:0}
.light img{bottom:-20.2454%;opacity:0}
.shadow img{animation:shadowmove .5s .5s 1 both;-webkit-animation:shadowmove .5s .5s 1 both}
.cloud img{animation:cloudmove .5s 1 both;-webkit-animation:cloudmove .5s 1 both}
.base img{animation:basemove .5s 1;-webkit-animation:basemove .5s 1;bottom:-11.43%}
.light img{animation:lightmove .5s .5s infinite both;-webkit-animation:lightmove .5s .5s infinite both}
@keyframes lightmove{from{opacity:0}
to{opacity:100}
}@keyframes shadowmove{from{opacity:0}
to{opacity:100}
}@keyframes cloudmove{from{opacity:0;bottom:100vh}
to{opacity:100;bottom:-10vh}
}@keyframes basemove{from{bottom:0}
to{bottom:0}
}.con-foot{cursor:pointer}
input::-webkit-input-placeholder{color:rgb(190,185,185)}
.pass-word{margin:15px 0}
.cut-line{margin:0 5px}
#login_phone{display:none}
.code-number{position:relative}
.code-number #code-get{position:absolute;right:12px;top:24px;color:#32f4b2;cursor:pointer;border:none;background:none}
#code-get:focus{outline:0}
.code-write{position:absolute;top:-6px;width:250px;z-index:100;height:200px;background:#253666;box-shadow:0 0 10px 0 rgba(0,0,0,.3);border-radius:5px;display:none}
.code-write p{font-size:16px;font-weight:bold;height:30px;line-height:30px;text-align:center;color:#fff}
.code-write p:nth-of-type(2){margin-top:-5px}
.code-write p .code-close{float:right;height:30px;width:30px;cursor:pointer}
.err-info{color:#ef4d4d;position:absolute;display:none}
.err-tip{color:#ef4d4d}
.code-image{width:78px;height:44px;vertical-align:top}
#captcha_panel{}
.gb_box{width:100%;height:100%;position:absolute;top:0px;opacity:0;z-index:10} | 0.326486 | 0.050776 |
.FilesList,
.Empty {
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.FilesList li {
display: flex;
align-items: center;
box-sizing: border-box;
opacity: 0.7;
color: #2f96ba;
font-size: 14px;
font-weight: 400;
width: 100%;
}
.FilesList li > span {
display: flex;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
padding: 9px 7px 7px;
box-sizing: border-box;
line-height: 19px;
}
.FilesList li:nth-of-type(even) > span {
background-color: rgba(22, 94, 106, 0.3);
}
.FilesList li > span:first-of-type,
.FilesList li > span:last-of-type {
width: calc(100% / 5 + 75px);
padding-left: 0;
padding-right: 0;
}
.FilesList li > span:first-of-type {
justify-content: left;
}
.FilesList li > span:nth-of-type(2) > img {
margin: -2px 7px 0 0;
}
.FilesList li > span:first-of-type,
.FilesList li > span:nth-of-type(2) {
justify-content: flex-start;
text-align: left;
}
.FilesList li > span:nth-of-type(3) {
justify-content: center;
text-align: center;
}
.FilesList li > span:last-of-type,
.FilesList li > span:nth-last-of-type(2) {
justify-content: flex-end;
text-align: right;
}
.FilesList li > span:not(:last-of-type) {
margin-right: 2px;
}
.FilesList li > span:first-of-type > span,
.FilesList li > span:last-of-type > span {
padding: 0 15px;
box-sizing: border-box;
}
.FilesList li > span:not(:first-of-type):not(:last-of-type) {
width: calc((100% - 150px - 8px) / 5);
}
.FilesList li > span:first-of-type > span:first-of-type,
.FilesList li > span:last-of-type > span:last-of-type {
width: 75px;
text-align: center;
position: relative;
}
.FilesList li > span:first-of-type > span:first-of-type::after,
.FilesList li > span:last-of-type > span:last-of-type::before {
content: '';
display: block;
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 1px;
background-color: #3bd5d5;
}
.FilesList li > span:first-of-type > span:first-of-type::after {
right: 0;
}
.FilesList li > span:last-of-type > span:last-of-type::before {
left: 0;
}
.FilesList li > span:first-of-type > span:last-of-type,
.FilesList li > span:last-of-type > span:first-of-type {
width: calc(100% - 75px);
}
.FilesList li > span button {
padding: 0 15px;
height: 100%;
width: 100%;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
font-weight: 300;
color: #989898;
background-color: transparent;
border: none;
cursor: pointer;
transition: all 0.2s linear;
outline: none;
box-sizing: border-box;
}
.FilesList li > span button:hover,
.FilesList li > span button:active {
color: #32b3d3;
}
@media (max-width: 1600px) {
.FilesList li {
font-size: 14px;
}
} | app/components/PagesSections/FilesList/FilesTable/FilesTable.css | .FilesList,
.Empty {
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.FilesList li {
display: flex;
align-items: center;
box-sizing: border-box;
opacity: 0.7;
color: #2f96ba;
font-size: 14px;
font-weight: 400;
width: 100%;
}
.FilesList li > span {
display: flex;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
padding: 9px 7px 7px;
box-sizing: border-box;
line-height: 19px;
}
.FilesList li:nth-of-type(even) > span {
background-color: rgba(22, 94, 106, 0.3);
}
.FilesList li > span:first-of-type,
.FilesList li > span:last-of-type {
width: calc(100% / 5 + 75px);
padding-left: 0;
padding-right: 0;
}
.FilesList li > span:first-of-type {
justify-content: left;
}
.FilesList li > span:nth-of-type(2) > img {
margin: -2px 7px 0 0;
}
.FilesList li > span:first-of-type,
.FilesList li > span:nth-of-type(2) {
justify-content: flex-start;
text-align: left;
}
.FilesList li > span:nth-of-type(3) {
justify-content: center;
text-align: center;
}
.FilesList li > span:last-of-type,
.FilesList li > span:nth-last-of-type(2) {
justify-content: flex-end;
text-align: right;
}
.FilesList li > span:not(:last-of-type) {
margin-right: 2px;
}
.FilesList li > span:first-of-type > span,
.FilesList li > span:last-of-type > span {
padding: 0 15px;
box-sizing: border-box;
}
.FilesList li > span:not(:first-of-type):not(:last-of-type) {
width: calc((100% - 150px - 8px) / 5);
}
.FilesList li > span:first-of-type > span:first-of-type,
.FilesList li > span:last-of-type > span:last-of-type {
width: 75px;
text-align: center;
position: relative;
}
.FilesList li > span:first-of-type > span:first-of-type::after,
.FilesList li > span:last-of-type > span:last-of-type::before {
content: '';
display: block;
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 1px;
background-color: #3bd5d5;
}
.FilesList li > span:first-of-type > span:first-of-type::after {
right: 0;
}
.FilesList li > span:last-of-type > span:last-of-type::before {
left: 0;
}
.FilesList li > span:first-of-type > span:last-of-type,
.FilesList li > span:last-of-type > span:first-of-type {
width: calc(100% - 75px);
}
.FilesList li > span button {
padding: 0 15px;
height: 100%;
width: 100%;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
font-weight: 300;
color: #989898;
background-color: transparent;
border: none;
cursor: pointer;
transition: all 0.2s linear;
outline: none;
box-sizing: border-box;
}
.FilesList li > span button:hover,
.FilesList li > span button:active {
color: #32b3d3;
}
@media (max-width: 1600px) {
.FilesList li {
font-size: 14px;
}
} | 0.521471 | 0.091748 |