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 |
|---|---|---|---|---|
@font-face {
font-family: "Whitney";
src: url("../font/WhitneyBold.ttf");
}
@font-face {
font-family: "Google Sans";
src: url("../font/GoogleSans-Regular.ttf");
}
html {
/* Colors */
--main-color: #002451;
--secondary-color: #a9b4bf;
--link-color: #008dff;
--alert-color: #ff265e;
--par-color: #28242d;
--background-color: #ffffff;
--light-color: #f1f8ff;
/* Shadows */
--big-shadow: 0 20px 40px rgba(31, 0, 70, 0.1);
/* Fonts */
--main-font-family: "Whitney";
--secondary-font-family: "Google Sans";
--main-font-size: 32px;
--secondary-font-size: 16px;
}
html, body {
padding: 0;
margin: 0;
}
h1, h2, h3, span, p, ul, li {
padding: 0;
margin: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
}
h1 {
font-family: var(--main-font-family);
color: var(--main-color);
margin-bottom: 20px;
}
p{
font-family: var(--secondary-font-family);
color: var(--secondary-color);
font-size: var(--secondary-font-size);
margin-bottom: 20px;
}
ul {
box-sizing: border-box;
list-style: none;
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 20px;
}
ul li {
text-align: center;
margin: 10px;
display: inline-block;
}
ul li a {
text-decoration: none;
color: var(--link-color);
font-family: var(--secondary-font-family);
font-size: var(--secondary-font-size);
padding: 2px 0;
border-bottom: 1px solid var(--link-color);
transition: all 0.2s;
}
ul li a:hover {
padding: 2px 10px;
filter: brightness(0.5);
border-bottom: 1px solid var(--link-color);
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
form label {
font-family: var(--secondary-font-family);
color: var(--secondary-color);
font-size: 12px;
background: #fff;
padding: 0 10px;
position: relative;
z-index: 1;
}
form input[type=text], form input[type=number], form input[type=password] {
margin-top: -8px;
position: relative;
z-index: 0;
border-radius: 10px;
padding: 10px;
border: 1px solid var(--secondary-color);
color: var(--main-color);
outline: none;
text-align: center;
}
form input[type=text]::placeholder, form input[type=password]::placeholder, form input[type=number]::placeholder {
color: var(--secondary-color);
}
form input[type=submit] {
color: var(--link-color);
border: none;
background: transparent;
cursor: pointer;
padding: 10px;
}
.topleft-button{
position: absolute;
left: 40px;
top: 40px;
border: none;
background: transparent;
cursor: pointer;
color: var(--secondary-color);
outline: none;
font-size: var(--secondary-font-size);
border-radius: 10px;
padding: 10px 20px;
}
.topleft-button.logout{
background: var(--alert-color);
color: #fff;
}
.input-space{
height: 5px;
} | web/css/style.css | @font-face {
font-family: "Whitney";
src: url("../font/WhitneyBold.ttf");
}
@font-face {
font-family: "Google Sans";
src: url("../font/GoogleSans-Regular.ttf");
}
html {
/* Colors */
--main-color: #002451;
--secondary-color: #a9b4bf;
--link-color: #008dff;
--alert-color: #ff265e;
--par-color: #28242d;
--background-color: #ffffff;
--light-color: #f1f8ff;
/* Shadows */
--big-shadow: 0 20px 40px rgba(31, 0, 70, 0.1);
/* Fonts */
--main-font-family: "Whitney";
--secondary-font-family: "Google Sans";
--main-font-size: 32px;
--secondary-font-size: 16px;
}
html, body {
padding: 0;
margin: 0;
}
h1, h2, h3, span, p, ul, li {
padding: 0;
margin: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
}
h1 {
font-family: var(--main-font-family);
color: var(--main-color);
margin-bottom: 20px;
}
p{
font-family: var(--secondary-font-family);
color: var(--secondary-color);
font-size: var(--secondary-font-size);
margin-bottom: 20px;
}
ul {
box-sizing: border-box;
list-style: none;
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 20px;
}
ul li {
text-align: center;
margin: 10px;
display: inline-block;
}
ul li a {
text-decoration: none;
color: var(--link-color);
font-family: var(--secondary-font-family);
font-size: var(--secondary-font-size);
padding: 2px 0;
border-bottom: 1px solid var(--link-color);
transition: all 0.2s;
}
ul li a:hover {
padding: 2px 10px;
filter: brightness(0.5);
border-bottom: 1px solid var(--link-color);
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
form label {
font-family: var(--secondary-font-family);
color: var(--secondary-color);
font-size: 12px;
background: #fff;
padding: 0 10px;
position: relative;
z-index: 1;
}
form input[type=text], form input[type=number], form input[type=password] {
margin-top: -8px;
position: relative;
z-index: 0;
border-radius: 10px;
padding: 10px;
border: 1px solid var(--secondary-color);
color: var(--main-color);
outline: none;
text-align: center;
}
form input[type=text]::placeholder, form input[type=password]::placeholder, form input[type=number]::placeholder {
color: var(--secondary-color);
}
form input[type=submit] {
color: var(--link-color);
border: none;
background: transparent;
cursor: pointer;
padding: 10px;
}
.topleft-button{
position: absolute;
left: 40px;
top: 40px;
border: none;
background: transparent;
cursor: pointer;
color: var(--secondary-color);
outline: none;
font-size: var(--secondary-font-size);
border-radius: 10px;
padding: 10px 20px;
}
.topleft-button.logout{
background: var(--alert-color);
color: #fff;
}
.input-space{
height: 5px;
} | 0.398172 | 0.099689 |
.main-dark-version .header-section.menu-fixed {
background-color: #2B2D5C;
}
.main-dark-version .banner-elements-part {
background-position: 70% 145%;
}
.main-dark-version .header-top-left a, .main-dark-version .header-top-left select,
.main-dark-version .header-cart-count span {
color: var(--dark-para-color);
}
.main-dark-version .header-top {
border-bottom-color: #3b3e7f;
}
.main-dark-version .main-menu > li > a,
.main-dark-version li.menu_has_children:after {
color: var(--dark-para-color);
}
.main-dark-version .lottery-timer-section {
background-color: var(--dark-second-color);
border-color: rgb(56, 58, 119);
}
.main-dark-version .flip-clock-wrapper ul li a div div.inn {
background-color: #2b2d5c;
}
.main-dark-version .flip-clock-divider .flip-clock-label {
color: var(--dark-para-color);
}
.main-dark-version .jackpot-item {
background-color: var(--dark-main-color);
box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.5);
}
.main-dark-version .jackpot-item:hover {
box-shadow: 0 12px 15px 3px rgba(51, 181, 247, 0.25);
}
.main-dark-version .choose-us-section {
background-color: var(--dark-main-color);
border-color: #2d487b;
}
.main-dark-version .choose-item {
background-color: var(--dark-main-color);
border-color: #2d487b;
}
.main-dark-version .lottery-winning-num-part,
.main-dark-version .winner-part {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version table th {
background-color: #32346a;
color: var(--dark-para-color);
}
.main-dark-version table tbody tr:nth-child(odd) {
background-color: var(--dark-main-color);
}
.main-dark-version table tbody tr:nth-child(even) {
background-color: #32346a;
}
.main-dark-version .number-list li {
color: var(--dark-para-color);
}
.main-dark-version table tbody tr {
border-bottom-color: #383a77;
}
.main-dark-version .winner-list {
border-top-color: #383a77;
}
.main-dark-version .online-ticket-table-part {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .online-ticket-table tbody tr td,
.main-dark-version .online-ticket-table thead tr th {
border-right-color: #383a77;
}
.main-dark-version .affiliate-item {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .affiliate-item:hover {
background-color: var(--main-color);
}
.main-dark-version .commission-area {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .commission-area .title-area::before {
background-color: var(--main-color);
}
.main-dark-version .section-bg {
background-color: var(--dark-second-color);
}
.main-dark-version #vmap {
background-color: transparent !important;
}
div[class*="position"] .dot {
background-color: #ffffff;
}
.main-dark-version .testimonial-slider-arrows .button-next,
.main-dark-version .testimonial-slider-arrows .button-prev {
color: #ffffff;
}
.main-dark-version .testimonial-slide {
background-color: var(--dark-second-color);
-webkit-box-shadow: 0 0 3px 2px rgba(51, 181, 247, 0.15);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}
.main-dark-version .contact-form input,
.main-dark-version .contact-form textarea {
background-color: #303266;
}
.main-dark-version .contact-form .submit-btn {
background-color: var(--main-color);
}
.main-dark-version .slide-inner {
border-color: #545680;
}
.main-dark-version .footer-bottom {
background-color: var(--dark-main-color);
}
.main-dark-version .subscribe-form input[type="email"] {
background-color: var(--dark-main-color);
border-color: #545680;
}
.main-dark-version .border-top {
border-top: 1px solid rgb(56, 58, 119) !important;
}
.main-dark-version .affiliate-item .icon::after {
border: 1px solid rgba(51, 181, 247, 0.2);
background-color: rgba(255, 255, 255, 0.302);
}
.main-dark-version .affiliate-item:hover .icon .icon-inner {
background-color: #33b5f7;
}
.main-dark-version .affiliate-item:hover {
box-shadow: 6px 10.392px 17.22px 3.78px rgba(51, 181, 247, 0.21);
}
.main-dark-version .affiliate-item:hover .icon::after {
border-color: #ffffff;
}
.main-dark-version .affiliate-item .icon .icon-inner {
background-color: #303265;
}
.main-dark-version .brand-section {
background-color: #303266;
}
.main-dark-version table tbody tr:nth-child(odd) .progressbar {
background-color: #32346a;
}
.main-dark-version table tbody tr:nth-child(even) .progressbar {
background-color: #383a77;
}
.main-dark-version .commission-items .content p {
color: #ffffff;
}
.main-dark-version .contact-form input,
.main-dark-version .contact-form textarea {
color: #ffffff;
}
.main-dark-version .footer-widget .subscribe-form input {
color: #ffffff;
}
.main-dark-version .footer-social-links li a {
background-color: transparent;
color: #c1c2d6;
}
.main-dark-version .footer-social-links li a:hover {
background-color: var(--main-color);
color: #ffffff;
border-color: var(--main-color);
}
.main-dark-version .number-count-item {
border-right-color: rgba(255, 255, 255, 0.45);
}
.main-dark-version .login-registration-area .nav-tabs li a {
color: #363636;
}
.main-dark-version .login-registration-area .nav-tabs li a.active {
color: #ffffff;
}
.main-dark-version .cmn-list li{
color: #ffffff;
}
.main-dark-version .join-item{
background-color: var(--dark-main-color);
}
.main-dark-version .cart-area{
background-color: var(--dark-second-color);
}
.main-dark-version .sub-total-amount .title, .discount-amount .title{
color: #ffffff;
}
.main-dark-version .faq-wrapper .nav-item .nav-link{
color: var(--dark-para-color);
background-color: var(--dark-second-color);
}
.main-dark-version .faq-wrapper .nav-item .nav-link.active{
background-color: var(--main-color);
}
.main-dark-version .sorteo-accordion .card-header .btn-link{
background-color: var(--dark-second-color);
color: #ffffff;
}
.main-dark-version .sorteo-accordion .card-body{
margin-top: 0;
}
.main-dark-version .sorteo-accordion .card-header .btn-link{
border-radius: 0;
}
.main-dark-version .sorteo-accordion .card-body{
background-color: var(--dark-second-color);
}
.main-dark-version .cart-table tbody td{
color: #ffffff;
}
.main-dark-version .single-header .right .draw-days{
color: #ffffff;
}
.main-dark-version .single-header .right button{
color: #ffffff;
}
.main-dark-version .play-card-header .header-btn-area button{
color: #ffffff;
}
.main-dark-version .play-card-body .number-list li{
background-color: var(--dark-second-color);
}
.main-dark-version .play-card-body .number-list li.active{
background-color: var(--main-color);
}
.main-dark-version .single-footer .right .content p span{
color: #ffffff;
}
.main-dark-version .single-footer .right .content p span.amount{
color: var(--main-color);
}
.main-dark-version .overview-item{
background-color: var(--dark-main-color);
}
.main-dark-version .overview-item .content a{
color: #ffffff;
}
.main-dark-version .post-meta li a{
color: #ffffff;
}
.main-dark-version .widget_tags .tags a{
color: var(--dark-para-color);
}
.main-dark-version .contact-area{
background-color: var(--dark-main-color);
}
.main-dark-version .contact-wrapper{
background-color: var(--dark-second-color);
}
.main-dark-version .post-item{
background-color: var(--dark-second-color);
}
.main-dark-version .d-pagination .pagination li a{
color: #ffffff;
}
.main-dark-version .d-pagination .pagination li a i{
color: #ffffff;
}
.main-dark-version .subscribe-area{
background-color: var(--dark-main-color);
}
.main-dark-version .reward-item{
background-color: var(--dark-main-color);
}
.main-dark-version .winner-item .content{
background-color: var(--dark-second-color);
}
.main-dark-version .winner-item .content .amount{
color: #ffffff;
}
.main-dark-version .winner-item .content .game-name{
color: #ffffff;
}
.main-dark-version .winner-item .content .name{
color: #ffffff;
}
.main-dark-version .breadcrumb li a{
color: var(--dark-para-color);
}
.main-dark-version .breadcrumb-item+.breadcrumb-item{
color: var(--dark-para-color);
}
.main-dark-version .breadcrumb-item+.breadcrumb-item::before{
color: var(--dark-para-color);
}
.main-dark-version .next-jack-amount .amount{
color: #ffffff;
}
.menu-toggle {
border-color: #ffffff;
}
.menu-toggle:before, .menu-toggle:after {
background-color: #ffffff;
} | public/frontend/css/dark-version.css | .main-dark-version .header-section.menu-fixed {
background-color: #2B2D5C;
}
.main-dark-version .banner-elements-part {
background-position: 70% 145%;
}
.main-dark-version .header-top-left a, .main-dark-version .header-top-left select,
.main-dark-version .header-cart-count span {
color: var(--dark-para-color);
}
.main-dark-version .header-top {
border-bottom-color: #3b3e7f;
}
.main-dark-version .main-menu > li > a,
.main-dark-version li.menu_has_children:after {
color: var(--dark-para-color);
}
.main-dark-version .lottery-timer-section {
background-color: var(--dark-second-color);
border-color: rgb(56, 58, 119);
}
.main-dark-version .flip-clock-wrapper ul li a div div.inn {
background-color: #2b2d5c;
}
.main-dark-version .flip-clock-divider .flip-clock-label {
color: var(--dark-para-color);
}
.main-dark-version .jackpot-item {
background-color: var(--dark-main-color);
box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.5);
}
.main-dark-version .jackpot-item:hover {
box-shadow: 0 12px 15px 3px rgba(51, 181, 247, 0.25);
}
.main-dark-version .choose-us-section {
background-color: var(--dark-main-color);
border-color: #2d487b;
}
.main-dark-version .choose-item {
background-color: var(--dark-main-color);
border-color: #2d487b;
}
.main-dark-version .lottery-winning-num-part,
.main-dark-version .winner-part {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version table th {
background-color: #32346a;
color: var(--dark-para-color);
}
.main-dark-version table tbody tr:nth-child(odd) {
background-color: var(--dark-main-color);
}
.main-dark-version table tbody tr:nth-child(even) {
background-color: #32346a;
}
.main-dark-version .number-list li {
color: var(--dark-para-color);
}
.main-dark-version table tbody tr {
border-bottom-color: #383a77;
}
.main-dark-version .winner-list {
border-top-color: #383a77;
}
.main-dark-version .online-ticket-table-part {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .online-ticket-table tbody tr td,
.main-dark-version .online-ticket-table thead tr th {
border-right-color: #383a77;
}
.main-dark-version .affiliate-item {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .affiliate-item:hover {
background-color: var(--main-color);
}
.main-dark-version .commission-area {
background-color: var(--dark-main-color);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.45);
}
.main-dark-version .commission-area .title-area::before {
background-color: var(--main-color);
}
.main-dark-version .section-bg {
background-color: var(--dark-second-color);
}
.main-dark-version #vmap {
background-color: transparent !important;
}
div[class*="position"] .dot {
background-color: #ffffff;
}
.main-dark-version .testimonial-slider-arrows .button-next,
.main-dark-version .testimonial-slider-arrows .button-prev {
color: #ffffff;
}
.main-dark-version .testimonial-slide {
background-color: var(--dark-second-color);
-webkit-box-shadow: 0 0 3px 2px rgba(51, 181, 247, 0.15);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}
.main-dark-version .contact-form input,
.main-dark-version .contact-form textarea {
background-color: #303266;
}
.main-dark-version .contact-form .submit-btn {
background-color: var(--main-color);
}
.main-dark-version .slide-inner {
border-color: #545680;
}
.main-dark-version .footer-bottom {
background-color: var(--dark-main-color);
}
.main-dark-version .subscribe-form input[type="email"] {
background-color: var(--dark-main-color);
border-color: #545680;
}
.main-dark-version .border-top {
border-top: 1px solid rgb(56, 58, 119) !important;
}
.main-dark-version .affiliate-item .icon::after {
border: 1px solid rgba(51, 181, 247, 0.2);
background-color: rgba(255, 255, 255, 0.302);
}
.main-dark-version .affiliate-item:hover .icon .icon-inner {
background-color: #33b5f7;
}
.main-dark-version .affiliate-item:hover {
box-shadow: 6px 10.392px 17.22px 3.78px rgba(51, 181, 247, 0.21);
}
.main-dark-version .affiliate-item:hover .icon::after {
border-color: #ffffff;
}
.main-dark-version .affiliate-item .icon .icon-inner {
background-color: #303265;
}
.main-dark-version .brand-section {
background-color: #303266;
}
.main-dark-version table tbody tr:nth-child(odd) .progressbar {
background-color: #32346a;
}
.main-dark-version table tbody tr:nth-child(even) .progressbar {
background-color: #383a77;
}
.main-dark-version .commission-items .content p {
color: #ffffff;
}
.main-dark-version .contact-form input,
.main-dark-version .contact-form textarea {
color: #ffffff;
}
.main-dark-version .footer-widget .subscribe-form input {
color: #ffffff;
}
.main-dark-version .footer-social-links li a {
background-color: transparent;
color: #c1c2d6;
}
.main-dark-version .footer-social-links li a:hover {
background-color: var(--main-color);
color: #ffffff;
border-color: var(--main-color);
}
.main-dark-version .number-count-item {
border-right-color: rgba(255, 255, 255, 0.45);
}
.main-dark-version .login-registration-area .nav-tabs li a {
color: #363636;
}
.main-dark-version .login-registration-area .nav-tabs li a.active {
color: #ffffff;
}
.main-dark-version .cmn-list li{
color: #ffffff;
}
.main-dark-version .join-item{
background-color: var(--dark-main-color);
}
.main-dark-version .cart-area{
background-color: var(--dark-second-color);
}
.main-dark-version .sub-total-amount .title, .discount-amount .title{
color: #ffffff;
}
.main-dark-version .faq-wrapper .nav-item .nav-link{
color: var(--dark-para-color);
background-color: var(--dark-second-color);
}
.main-dark-version .faq-wrapper .nav-item .nav-link.active{
background-color: var(--main-color);
}
.main-dark-version .sorteo-accordion .card-header .btn-link{
background-color: var(--dark-second-color);
color: #ffffff;
}
.main-dark-version .sorteo-accordion .card-body{
margin-top: 0;
}
.main-dark-version .sorteo-accordion .card-header .btn-link{
border-radius: 0;
}
.main-dark-version .sorteo-accordion .card-body{
background-color: var(--dark-second-color);
}
.main-dark-version .cart-table tbody td{
color: #ffffff;
}
.main-dark-version .single-header .right .draw-days{
color: #ffffff;
}
.main-dark-version .single-header .right button{
color: #ffffff;
}
.main-dark-version .play-card-header .header-btn-area button{
color: #ffffff;
}
.main-dark-version .play-card-body .number-list li{
background-color: var(--dark-second-color);
}
.main-dark-version .play-card-body .number-list li.active{
background-color: var(--main-color);
}
.main-dark-version .single-footer .right .content p span{
color: #ffffff;
}
.main-dark-version .single-footer .right .content p span.amount{
color: var(--main-color);
}
.main-dark-version .overview-item{
background-color: var(--dark-main-color);
}
.main-dark-version .overview-item .content a{
color: #ffffff;
}
.main-dark-version .post-meta li a{
color: #ffffff;
}
.main-dark-version .widget_tags .tags a{
color: var(--dark-para-color);
}
.main-dark-version .contact-area{
background-color: var(--dark-main-color);
}
.main-dark-version .contact-wrapper{
background-color: var(--dark-second-color);
}
.main-dark-version .post-item{
background-color: var(--dark-second-color);
}
.main-dark-version .d-pagination .pagination li a{
color: #ffffff;
}
.main-dark-version .d-pagination .pagination li a i{
color: #ffffff;
}
.main-dark-version .subscribe-area{
background-color: var(--dark-main-color);
}
.main-dark-version .reward-item{
background-color: var(--dark-main-color);
}
.main-dark-version .winner-item .content{
background-color: var(--dark-second-color);
}
.main-dark-version .winner-item .content .amount{
color: #ffffff;
}
.main-dark-version .winner-item .content .game-name{
color: #ffffff;
}
.main-dark-version .winner-item .content .name{
color: #ffffff;
}
.main-dark-version .breadcrumb li a{
color: var(--dark-para-color);
}
.main-dark-version .breadcrumb-item+.breadcrumb-item{
color: var(--dark-para-color);
}
.main-dark-version .breadcrumb-item+.breadcrumb-item::before{
color: var(--dark-para-color);
}
.main-dark-version .next-jack-amount .amount{
color: #ffffff;
}
.menu-toggle {
border-color: #ffffff;
}
.menu-toggle:before, .menu-toggle:after {
background-color: #ffffff;
} | 0.278846 | 0.078536 |
/* Begin Typography & Colors */
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Arial, Verdana, Sans-Serif;
color: black;
margin: 0;
padding: 0;
background-color: #fff;
}
a {
color: #37779f;
text-decoration: none;
padding: 2px;
}
a:hover {
color: white;
background-color: #37779f;
}
#header {
display: block;
background-color: #ccc;
background: url(/images/header_bg1a.png) no-repeat 0 0;
margin: 0;
height: 100px;
}
div#header {
padding: 10px 10px 10px 40px;
}
#header h1 {
color: #999;
font-size: 32px;
margin: 0;
}
#footer {
border-top: 1px solid #ddd;
margin: 50px 40px 20px 40px;
}
#content {
margin: 20px 40px 10px 40px;
width: 800px;
font-size: 1.3em;
}
#content p {
line-height: 1.5em;
margin: 1em 0 0.3em 0;
}
#content h1{
font-size: 1.7em;
}
/* Navigation */
div#nav {
display: block;
position: absolute;
top: 80px;
}
#nav ul {
display: block;
margin: 0;
padding: 0;
}
#nav ul li {
display: block;
float: left;
font-size: 1.2em;
color: #555;
}
#nav ul li a {
display: block;
border: 2px solid #ddf;
padding: 5px 10px;
margin-right: 5px;
color: #777;
background-color: #def;
text-decoration: none;
}
#nav ul li.active a {
background-color: #669;
color: #fff;
}
#nav ul li a:hover, #nav ul li a:active {
background-color: #777;
color: #FFF;
}
/* data table */
#content table.list {
border: 1px solid #ccc;
margin: 5px 0;
padding: 2px;
border-collapse: collapse;
}
#content table.list tr.alt {
background-color: #eee;
}
#content table.list td, #content table.list th {
text-align: left;
margin: 0;
padding: 3px 10px 4px 6px;
vertical-align: top;
}
#content table.list td em {
padding-left: 3px;
margin: 0;
}
#content table.list th {
color: #666;
font-weight: bold;
background: url(/images/row_head.png) repeat 0 0;
border-right: 1px solid #ddd;
}
/* form styles */
#content form {
background-color: #e9e9e9; /* rgb(213,236,255) */
border-top: 12px solid #ccc;
border-bottom: 2px solid #ccc;
display: block;
color: #000;
padding: 2em 1em;
margin-top: 1em;
}
#content form.list{
background: none;
border: none;
margin: 10px 0 0 0;
padding: 0;
}
form table {
margin-bottom: 1em;
}
form table th {
text-align: right;
padding-right: 10px;
color: #333;
}
input, textarea, select {
border: 1px solid #999;
padding: 0.25em;
background-color: #eef;
color: #000;
}
select {
padding-left: 0;
}
form input.button {
background-color: #666;
color: #fff;
}
div.controls {
color: #ddd;
white-space: nowrap;
text-align: center;
margin-top: 4px;
}
div.controls a, div.controls input[type="submit"] {
color: #33c;
background-color: #fff;
border: 1px solid #ddd;
}
div.controls a { padding: 2px 4px; }
div.controls input[type="submit"] { padding: 0; }
div.buttons {
/* margin: 10px 0;*/
}
.buttons a {
padding: 4px 6px;
background-color: #fff;
}
.buttons a.new {
line-height: 1;
padding-left: 20px;
background: url(/images/icons/add.png) no-repeat 2px 4px;
}
.buttons a:hover {
background-color: #37779f;
}
.buttons input {
background-color: #eef;
color: #000;
font-weight: bold;
padding: 4px 10px;
}
input.update {
position: relative;
left: 165px;
}
/* notices, errors, and flash messages */
div#errorExplanation, div#notice, div#error {
padding: 0 1em;
}
div#errorExplanation h2, div#notice h2, div#error h2 {
padding-left: 20px;
font-weight: normal;
font-size: 1.1em;
}
div#errorExplanation, div#error {
background-color: #FCC;
color: #933;
border-top: 2px solid #C77;
border-bottom: 1px solid #CAA;
}
#errorExplanation h2 {
color: #700;
background: url(/images/icons/error.png) no-repeat 0 0;
}
div.fieldWithErrors input, div.fieldWithErrors textarea, div.fieldWithErrors select {
background-color: #FCC;
}
div#notice {
background-color: #CFC;
color: #393;
border-top: 2px solid #7C7;
border-bottom: 1px solid #ACA;
}
div#notice h2 {
background: url(/images/icons/accept.png) no-repeat 0 0;
}
div#error h2 {
background: url(/images/icons/error.png) no-repeat 0 0;
}
/* show action */
#content dl.show {
display: block;
padding: 0;
margin: 0 0 20px 0;
}
#content dl.show dt {
display: block;
float: left;
font-weight: bold;
text-align: left;
width: 160px;
margin-bottom: 0.25em;
}
#content dl.show dd {
display: block;
width: 250px;
margin-left: 160px;
margin-bottom: 0.4em;
padding-left: 2px;
}
/* invoice editing */
table#line_items {
border: none;
width: 100%;
padding: 0;
margin: 0;
line-height: 1.1;
background-color: #fff;
}
table#line_items tr.alt {
background-color: #eef;
}
#line_items th, #line_items td {
margin: 0;
color: #444;
padding: 3px;
text-align: left;
vertical-align: top;
}
#line_items th {
font-weight: bold;
background-color: #ddd;
}
#line_items input[type="text"], #line_items select, #line_items textarea {
background-color: #ffd;
border: none;
}
#invoice form {
padding: 1em;
margin-bottom: 1em;
border: none;
}
#invoice td span {
display: block;
margin-top: 3px;
}
div#invoice {
padding-bottom: 10px;
}
/* overview page */
#overview fieldset {
color: #333;
}
#overview dl {
display: block;
padding: 0;
margin: 0 0 20px 0;
}
#overview dl dt {
display: block;
float: left;
font-weight: bold;
text-align: left;
width: 130px;
margin-bottom: 0.25em;
}
#overview dl dd {
display: block;
width: 250px;
margin-left: 140px;
margin-bottom: 0.4em;
padding-left: 2px;
}
#overview h3 {
font-size: 1.2em;
color: #999;
}
/* generic search form */
#search form {
margin: 0.5em 0;
padding: 0.5em;
width: 688px;
background-color: #ddd;
border: none;
}
#search p {
padding-left: 1em;
color: #666;
display: inline;
text-align: right;
}
/* ajax */
div#spinner {
display: none;
}
/* generic styles */
.subhead {
color: #aaa;
}
.pagination {
padding: 3px 0;
margin: 7px 0;
}
.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #aaaadd;
text-decoration: none;
color: #000099;
}
.pagination a:hover, .pagination a:active {
border: 1px solid #000099;
color: #fff;
}
.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #000099;
font-weight: bold;
background-color: #000099;
color: #FFF;
}
.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #eefee;
color: #d7d7d7;
}
#popup {
font-size: 1.3em;
width:100%;
height:100%;
position:absolute;
z-index:100;
}
div#popup-bg {
background-color: #aaa;
width:100px;
height:100px;
position:absolute;
top:0;
left:0;
z-index:101;
}
div#popup-shadow {
position: absolute;
background-color: #000;
z-index:102;
}
div#popup-container {
position: relative;
margin: 110px auto;
padding: 5px 20px;
width: 300px;
background-color: #FFF;
border: 1px solid #000;
z-index:103;
}
div#popup a.close_button {
position: absolute;
right: 10px;
top: 10px;
text-decoration: none;
}
div#popup a.close_button img {
border: none;
}
div#popup div.buttons {
text-align: center;
}
div#popup table {
padding: 1em 0.5em;
margin-top: 10px;
background-color: #eee;
}
div#batch_commands {
padding-bottom: 6px;
}
tr.selected {
background-color: #ccf !important;
}
.warning{
color: #F00;
}
.nowrap{
white-space: nowrap;
}
#search_results{
padding: 0;
margin: 0;
}
ul#search_results{
display: block;
position: absolute;
left: 288px;
background-color: #fff;
border: 1px solid #666;
}
ul#search_results li{
display: block;
list-style-type: none;
text-decoration: none;
line-height: 1;
padding: 2px 5px;
}
ul#search_results li a{
padding: 0;
} | public/stylesheets/styles.css |
/* Begin Typography & Colors */
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Arial, Verdana, Sans-Serif;
color: black;
margin: 0;
padding: 0;
background-color: #fff;
}
a {
color: #37779f;
text-decoration: none;
padding: 2px;
}
a:hover {
color: white;
background-color: #37779f;
}
#header {
display: block;
background-color: #ccc;
background: url(/images/header_bg1a.png) no-repeat 0 0;
margin: 0;
height: 100px;
}
div#header {
padding: 10px 10px 10px 40px;
}
#header h1 {
color: #999;
font-size: 32px;
margin: 0;
}
#footer {
border-top: 1px solid #ddd;
margin: 50px 40px 20px 40px;
}
#content {
margin: 20px 40px 10px 40px;
width: 800px;
font-size: 1.3em;
}
#content p {
line-height: 1.5em;
margin: 1em 0 0.3em 0;
}
#content h1{
font-size: 1.7em;
}
/* Navigation */
div#nav {
display: block;
position: absolute;
top: 80px;
}
#nav ul {
display: block;
margin: 0;
padding: 0;
}
#nav ul li {
display: block;
float: left;
font-size: 1.2em;
color: #555;
}
#nav ul li a {
display: block;
border: 2px solid #ddf;
padding: 5px 10px;
margin-right: 5px;
color: #777;
background-color: #def;
text-decoration: none;
}
#nav ul li.active a {
background-color: #669;
color: #fff;
}
#nav ul li a:hover, #nav ul li a:active {
background-color: #777;
color: #FFF;
}
/* data table */
#content table.list {
border: 1px solid #ccc;
margin: 5px 0;
padding: 2px;
border-collapse: collapse;
}
#content table.list tr.alt {
background-color: #eee;
}
#content table.list td, #content table.list th {
text-align: left;
margin: 0;
padding: 3px 10px 4px 6px;
vertical-align: top;
}
#content table.list td em {
padding-left: 3px;
margin: 0;
}
#content table.list th {
color: #666;
font-weight: bold;
background: url(/images/row_head.png) repeat 0 0;
border-right: 1px solid #ddd;
}
/* form styles */
#content form {
background-color: #e9e9e9; /* rgb(213,236,255) */
border-top: 12px solid #ccc;
border-bottom: 2px solid #ccc;
display: block;
color: #000;
padding: 2em 1em;
margin-top: 1em;
}
#content form.list{
background: none;
border: none;
margin: 10px 0 0 0;
padding: 0;
}
form table {
margin-bottom: 1em;
}
form table th {
text-align: right;
padding-right: 10px;
color: #333;
}
input, textarea, select {
border: 1px solid #999;
padding: 0.25em;
background-color: #eef;
color: #000;
}
select {
padding-left: 0;
}
form input.button {
background-color: #666;
color: #fff;
}
div.controls {
color: #ddd;
white-space: nowrap;
text-align: center;
margin-top: 4px;
}
div.controls a, div.controls input[type="submit"] {
color: #33c;
background-color: #fff;
border: 1px solid #ddd;
}
div.controls a { padding: 2px 4px; }
div.controls input[type="submit"] { padding: 0; }
div.buttons {
/* margin: 10px 0;*/
}
.buttons a {
padding: 4px 6px;
background-color: #fff;
}
.buttons a.new {
line-height: 1;
padding-left: 20px;
background: url(/images/icons/add.png) no-repeat 2px 4px;
}
.buttons a:hover {
background-color: #37779f;
}
.buttons input {
background-color: #eef;
color: #000;
font-weight: bold;
padding: 4px 10px;
}
input.update {
position: relative;
left: 165px;
}
/* notices, errors, and flash messages */
div#errorExplanation, div#notice, div#error {
padding: 0 1em;
}
div#errorExplanation h2, div#notice h2, div#error h2 {
padding-left: 20px;
font-weight: normal;
font-size: 1.1em;
}
div#errorExplanation, div#error {
background-color: #FCC;
color: #933;
border-top: 2px solid #C77;
border-bottom: 1px solid #CAA;
}
#errorExplanation h2 {
color: #700;
background: url(/images/icons/error.png) no-repeat 0 0;
}
div.fieldWithErrors input, div.fieldWithErrors textarea, div.fieldWithErrors select {
background-color: #FCC;
}
div#notice {
background-color: #CFC;
color: #393;
border-top: 2px solid #7C7;
border-bottom: 1px solid #ACA;
}
div#notice h2 {
background: url(/images/icons/accept.png) no-repeat 0 0;
}
div#error h2 {
background: url(/images/icons/error.png) no-repeat 0 0;
}
/* show action */
#content dl.show {
display: block;
padding: 0;
margin: 0 0 20px 0;
}
#content dl.show dt {
display: block;
float: left;
font-weight: bold;
text-align: left;
width: 160px;
margin-bottom: 0.25em;
}
#content dl.show dd {
display: block;
width: 250px;
margin-left: 160px;
margin-bottom: 0.4em;
padding-left: 2px;
}
/* invoice editing */
table#line_items {
border: none;
width: 100%;
padding: 0;
margin: 0;
line-height: 1.1;
background-color: #fff;
}
table#line_items tr.alt {
background-color: #eef;
}
#line_items th, #line_items td {
margin: 0;
color: #444;
padding: 3px;
text-align: left;
vertical-align: top;
}
#line_items th {
font-weight: bold;
background-color: #ddd;
}
#line_items input[type="text"], #line_items select, #line_items textarea {
background-color: #ffd;
border: none;
}
#invoice form {
padding: 1em;
margin-bottom: 1em;
border: none;
}
#invoice td span {
display: block;
margin-top: 3px;
}
div#invoice {
padding-bottom: 10px;
}
/* overview page */
#overview fieldset {
color: #333;
}
#overview dl {
display: block;
padding: 0;
margin: 0 0 20px 0;
}
#overview dl dt {
display: block;
float: left;
font-weight: bold;
text-align: left;
width: 130px;
margin-bottom: 0.25em;
}
#overview dl dd {
display: block;
width: 250px;
margin-left: 140px;
margin-bottom: 0.4em;
padding-left: 2px;
}
#overview h3 {
font-size: 1.2em;
color: #999;
}
/* generic search form */
#search form {
margin: 0.5em 0;
padding: 0.5em;
width: 688px;
background-color: #ddd;
border: none;
}
#search p {
padding-left: 1em;
color: #666;
display: inline;
text-align: right;
}
/* ajax */
div#spinner {
display: none;
}
/* generic styles */
.subhead {
color: #aaa;
}
.pagination {
padding: 3px 0;
margin: 7px 0;
}
.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #aaaadd;
text-decoration: none;
color: #000099;
}
.pagination a:hover, .pagination a:active {
border: 1px solid #000099;
color: #fff;
}
.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #000099;
font-weight: bold;
background-color: #000099;
color: #FFF;
}
.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #eefee;
color: #d7d7d7;
}
#popup {
font-size: 1.3em;
width:100%;
height:100%;
position:absolute;
z-index:100;
}
div#popup-bg {
background-color: #aaa;
width:100px;
height:100px;
position:absolute;
top:0;
left:0;
z-index:101;
}
div#popup-shadow {
position: absolute;
background-color: #000;
z-index:102;
}
div#popup-container {
position: relative;
margin: 110px auto;
padding: 5px 20px;
width: 300px;
background-color: #FFF;
border: 1px solid #000;
z-index:103;
}
div#popup a.close_button {
position: absolute;
right: 10px;
top: 10px;
text-decoration: none;
}
div#popup a.close_button img {
border: none;
}
div#popup div.buttons {
text-align: center;
}
div#popup table {
padding: 1em 0.5em;
margin-top: 10px;
background-color: #eee;
}
div#batch_commands {
padding-bottom: 6px;
}
tr.selected {
background-color: #ccf !important;
}
.warning{
color: #F00;
}
.nowrap{
white-space: nowrap;
}
#search_results{
padding: 0;
margin: 0;
}
ul#search_results{
display: block;
position: absolute;
left: 288px;
background-color: #fff;
border: 1px solid #666;
}
ul#search_results li{
display: block;
list-style-type: none;
text-decoration: none;
line-height: 1;
padding: 2px 5px;
}
ul#search_results li a{
padding: 0;
} | 0.215433 | 0.084116 |
body {
width: 100%;
height: 100%;
font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: white;
background-color: black;
}
html {
width: 100%;
height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 10px 0 35px;
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
letter-spacing: 1px;
}
p {
margin: 0 0 25px;
font-size: 18px;
line-height: 1.5;
}
@media (min-width: 768px) {
p {
margin: 0 0 35px;
font-size: 20px;
line-height: 1.6;
}
}
a {
color: #42DCA3;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
text-decoration: none;
color: #1d9b6c;
}
.light {
font-weight: 400;
}
.navbar-custom {
margin-bottom: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: black;
}
.navbar-custom .navbar-toggle {
color: white;
background-color: rgba(255, 255, 255, 0.2);
font-size: 12px;
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
outline: none;
}
.navbar-custom .navbar-brand {
font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
outline: none;
}
.navbar-custom a {
color: white;
}
.navbar-custom .nav li a {
-webkit-transition: background 0.3s ease-in-out;
-moz-transition: background 0.3s ease-in-out;
transition: background 0.3s ease-in-out;
}
.navbar-custom .nav li a:hover {
color: rgba(255, 255, 255, 0.8);
outline: none;
background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
outline: none;
background-color: transparent;
}
.navbar-custom .nav li.active {
outline: none;
}
.navbar-custom .nav li.active a {
background-color: rgba(255, 255, 255, 0.3);
}
.navbar-custom .nav li.active a:hover {
color: white;
}
/* Dropdown Button */
.dropbtn {
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: transparent;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #f1f1f1;
}
@media (min-width: 768px) {
.navbar-custom {
padding: 20px 0;
border-bottom: none;
letter-spacing: 1px;
background: transparent;
-webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
-moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.navbar-custom.top-nav-collapse {
padding: 0;
background: black;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
}
.intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: white;
background: url(../img/protest2.png) no-repeat bottom center scroll;
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.intro .intro-body {
display: table-cell;
vertical-align: middle;
}
.intro .intro-body .brand-heading {
font-size: 40px;
}
.intro .intro-body .intro-text {
font-size: 18px;
}
@media (min-width: 768px) {
.intro {
height: 100%;
padding: 0;
}
.intro .intro-body .brand-heading {
font-size: 100px;
}
.intro .intro-body .intro-text {
font-size: 26px;
}
}
.profile-photo {
float: left;
margin: 0 5% 80px 0;
}
.btn-circle {
width: 70px;
height: 70px;
margin-top: 15px;
padding: 7px 16px;
border: 2px solid white;
border-radius: 100% !important;
font-size: 40px;
color: white;
background: transparent;
-webkit-transition: background 0.3s ease-in-out;
-moz-transition: background 0.3s ease-in-out;
transition: background 0.3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
outline: none;
color: white;
background: rgba(255, 255, 255, 0.1);
}
.btn-circle i.animated {
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-webkit-animation-duration: 1.5s;
-moz-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes pulse {
0% {
-moz-transform: scale(1);
transform: scale(1);
}
50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
transform: scale(1);
}
}
.content-section {
padding-top: -100px;
}
.row {
margin: -50px -200px -100px;
}
.profile-photo {
height: 350px;
width: auto;
border-radius: 100px;
-webkit-border-radius: 200px;
-moz-border-radius: 200px;
}
.films-section {
width: 100%;
margin: -15% 0 0 0;
color: white;
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.wrapper {
width: 100%;
height: auto;
}
.filmdescription {
width: 100%;
text-align: left;
}
.video1 {
width: 18%;
height: auto;
float: left;
margin: 0;
}
.video2 {
width: 18%;
height: auto;
float: right;
margin: -110% -25% 0;
}
.vdescription1 {
width:270%;
height: auto;
float: left;
text-align: left;
margin: 0 0 0;
}
.vdescription2 {
width:550%;
height: auto;
float: left;
text-align: left;
margin: 0 0 0;
padding: 0 0 0;
}
#map {
width: 100%;
height: 200px;
margin-top: 100px;
}
@media (min-width: 767px) {
.content-section {
padding-top: 250px;
}
.films-section {
padding: 100px 0;
}
#map {
height: 400px;
margin-top: 250px;
}
}
.photography-section {
width: 100%;
padding: 200px 0 200px;
color: black;
background-color: white;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#rig {
max-width:100%;
margin:0 0 0 0; /*center aligned*/
padding:0;
font-size:0; /* Remember to change it back to normal font size if have captions */
list-style:none;
background-color:white;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#rig li {
display: inline-block;
/*display:inline;/*for IE6 - IE7*/
width:25%;
vertical-align:middle;
box-sizing:border-box;
margin:0;
padding:0;
}
/* The wrapper for each item */
.rig-cell {
margin:12px;
box-shadow:0 0 6px rgba(0,0,0,0.3);
display:block;
position: relative;
overflow:hidden;
}
/* If have the image layer */
.rig-img {
display:block;
width: 100%;
height: auto;
border:none;
transform:scale(1);
transition:all 1s;
}
#rig li:hover .rig-img {
transform:scale(1.05);
}
/* If have the overlay layer */
.rig-overlay {
position: absolute;
display:block;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
background: white url(img/link.png) no-repeat center 20%;
background-size:50px 50px;
opacity:0;
filter:alpha(opacity=0);/*For IE6 - IE8*/
transition:all 0.6s;
}
#rig li:hover .rig-overlay {
opacity:0.8;
}
.research-section {
width: 100%;
padding: 200px 0 200px;
color: black;
background-color: white;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.research1 {
width: 18%;
float: left;
margin: 0;
}
.research2 {
width: 18%;
float: right;
margin: 0 0 0 0;
}
.redescription1 {
width:270%;
text-align: left;
float: left;
margin: 0 0 0;
}
.redescription2 {
width:270%;
text-align: left;
float: right;
padding: 0 10% 100%;
}
.pdf_content2 {
margin: 0 0 0 -200%;
}
.btn {
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
border-radius: 0;
}
.btn-default {
border: 1px solid #42DCA3;
color: #42DCA3;
background-color: transparent;
}
.btn-default:hover,
.btn-default:focus {
border: 1px solid #42DCA3;
outline: none;
color: black;
background-color: #42DCA3;
}
ul.banner-social-buttons {
margin-top: 0;
}
@media (max-width: 1199px) {
ul.banner-social-buttons {
margin-top: 15px;
}
}
@media (max-width: 767px) {
ul.banner-social-buttons li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.banner-social-buttons li:last-child {
margin-bottom: 0;
}
}
footer {
padding: 50px 0;
}
footer p {
margin: 0;
}
::-moz-selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255, 255, 255, 0.2);
}
::selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255, 255, 255, 0.2);
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
body {
webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
} | css/grayscale.css | body {
width: 100%;
height: 100%;
font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: white;
background-color: black;
}
html {
width: 100%;
height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 10px 0 35px;
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
letter-spacing: 1px;
}
p {
margin: 0 0 25px;
font-size: 18px;
line-height: 1.5;
}
@media (min-width: 768px) {
p {
margin: 0 0 35px;
font-size: 20px;
line-height: 1.6;
}
}
a {
color: #42DCA3;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
text-decoration: none;
color: #1d9b6c;
}
.light {
font-weight: 400;
}
.navbar-custom {
margin-bottom: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: black;
}
.navbar-custom .navbar-toggle {
color: white;
background-color: rgba(255, 255, 255, 0.2);
font-size: 12px;
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
outline: none;
}
.navbar-custom .navbar-brand {
font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
outline: none;
}
.navbar-custom a {
color: white;
}
.navbar-custom .nav li a {
-webkit-transition: background 0.3s ease-in-out;
-moz-transition: background 0.3s ease-in-out;
transition: background 0.3s ease-in-out;
}
.navbar-custom .nav li a:hover {
color: rgba(255, 255, 255, 0.8);
outline: none;
background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
outline: none;
background-color: transparent;
}
.navbar-custom .nav li.active {
outline: none;
}
.navbar-custom .nav li.active a {
background-color: rgba(255, 255, 255, 0.3);
}
.navbar-custom .nav li.active a:hover {
color: white;
}
/* Dropdown Button */
.dropbtn {
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: transparent;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #f1f1f1;
}
@media (min-width: 768px) {
.navbar-custom {
padding: 20px 0;
border-bottom: none;
letter-spacing: 1px;
background: transparent;
-webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
-moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.navbar-custom.top-nav-collapse {
padding: 0;
background: black;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
}
.intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: white;
background: url(../img/protest2.png) no-repeat bottom center scroll;
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.intro .intro-body {
display: table-cell;
vertical-align: middle;
}
.intro .intro-body .brand-heading {
font-size: 40px;
}
.intro .intro-body .intro-text {
font-size: 18px;
}
@media (min-width: 768px) {
.intro {
height: 100%;
padding: 0;
}
.intro .intro-body .brand-heading {
font-size: 100px;
}
.intro .intro-body .intro-text {
font-size: 26px;
}
}
.profile-photo {
float: left;
margin: 0 5% 80px 0;
}
.btn-circle {
width: 70px;
height: 70px;
margin-top: 15px;
padding: 7px 16px;
border: 2px solid white;
border-radius: 100% !important;
font-size: 40px;
color: white;
background: transparent;
-webkit-transition: background 0.3s ease-in-out;
-moz-transition: background 0.3s ease-in-out;
transition: background 0.3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
outline: none;
color: white;
background: rgba(255, 255, 255, 0.1);
}
.btn-circle i.animated {
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-webkit-animation-duration: 1.5s;
-moz-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes pulse {
0% {
-moz-transform: scale(1);
transform: scale(1);
}
50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
transform: scale(1);
}
}
.content-section {
padding-top: -100px;
}
.row {
margin: -50px -200px -100px;
}
.profile-photo {
height: 350px;
width: auto;
border-radius: 100px;
-webkit-border-radius: 200px;
-moz-border-radius: 200px;
}
.films-section {
width: 100%;
margin: -15% 0 0 0;
color: white;
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.wrapper {
width: 100%;
height: auto;
}
.filmdescription {
width: 100%;
text-align: left;
}
.video1 {
width: 18%;
height: auto;
float: left;
margin: 0;
}
.video2 {
width: 18%;
height: auto;
float: right;
margin: -110% -25% 0;
}
.vdescription1 {
width:270%;
height: auto;
float: left;
text-align: left;
margin: 0 0 0;
}
.vdescription2 {
width:550%;
height: auto;
float: left;
text-align: left;
margin: 0 0 0;
padding: 0 0 0;
}
#map {
width: 100%;
height: 200px;
margin-top: 100px;
}
@media (min-width: 767px) {
.content-section {
padding-top: 250px;
}
.films-section {
padding: 100px 0;
}
#map {
height: 400px;
margin-top: 250px;
}
}
.photography-section {
width: 100%;
padding: 200px 0 200px;
color: black;
background-color: white;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#rig {
max-width:100%;
margin:0 0 0 0; /*center aligned*/
padding:0;
font-size:0; /* Remember to change it back to normal font size if have captions */
list-style:none;
background-color:white;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#rig li {
display: inline-block;
/*display:inline;/*for IE6 - IE7*/
width:25%;
vertical-align:middle;
box-sizing:border-box;
margin:0;
padding:0;
}
/* The wrapper for each item */
.rig-cell {
margin:12px;
box-shadow:0 0 6px rgba(0,0,0,0.3);
display:block;
position: relative;
overflow:hidden;
}
/* If have the image layer */
.rig-img {
display:block;
width: 100%;
height: auto;
border:none;
transform:scale(1);
transition:all 1s;
}
#rig li:hover .rig-img {
transform:scale(1.05);
}
/* If have the overlay layer */
.rig-overlay {
position: absolute;
display:block;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
background: white url(img/link.png) no-repeat center 20%;
background-size:50px 50px;
opacity:0;
filter:alpha(opacity=0);/*For IE6 - IE8*/
transition:all 0.6s;
}
#rig li:hover .rig-overlay {
opacity:0.8;
}
.research-section {
width: 100%;
padding: 200px 0 200px;
color: black;
background-color: white;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.research1 {
width: 18%;
float: left;
margin: 0;
}
.research2 {
width: 18%;
float: right;
margin: 0 0 0 0;
}
.redescription1 {
width:270%;
text-align: left;
float: left;
margin: 0 0 0;
}
.redescription2 {
width:270%;
text-align: left;
float: right;
padding: 0 10% 100%;
}
.pdf_content2 {
margin: 0 0 0 -200%;
}
.btn {
text-transform: uppercase;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
border-radius: 0;
}
.btn-default {
border: 1px solid #42DCA3;
color: #42DCA3;
background-color: transparent;
}
.btn-default:hover,
.btn-default:focus {
border: 1px solid #42DCA3;
outline: none;
color: black;
background-color: #42DCA3;
}
ul.banner-social-buttons {
margin-top: 0;
}
@media (max-width: 1199px) {
ul.banner-social-buttons {
margin-top: 15px;
}
}
@media (max-width: 767px) {
ul.banner-social-buttons li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.banner-social-buttons li:last-child {
margin-bottom: 0;
}
}
footer {
padding: 50px 0;
}
footer p {
margin: 0;
}
::-moz-selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255, 255, 255, 0.2);
}
::selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255, 255, 255, 0.2);
}
img::selection {
background: transparent;
}
img::-moz-selection {
background: transparent;
}
body {
webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
} | 0.407923 | 0.051272 |
height: 100%;
width: 75%;
}
.change-map {
display: none;
position: absolute;
bottom: 50px;
left: 50%;
transform: translate(-50%, 0);
width: 100px;
height: 41px;
text-align: center;
padding: 8px 20px;
background: #e0f2ff;
border-radius: 5px;
box-shadow: 0 0 7px 1px rgba(0, 0, 0, .25);
z-index: 2;
}
.change-list {
display: none;
position: absolute;
bottom: 50px;
left: 50%;
transform: translate(-50%, 0);
width: 100px;
height: 41px;
text-align: center;
padding: 8px 20px;
background: #e0f2ff;
border-radius: 5px;
box-shadow: 0 0 7px 1px rgba(0, 0, 0, .25);
z-index: 2;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 25%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.list-content {
margin-top: 70px;
padding: 10px;
}
.artists-navbar {
position: fixed;
display: flex;
justify-content: space-between;
width: 25%;
height: 60px;
padding: 11px;
background: white;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.45);
z-index: 1;
}
.logo {
width: 75px;
}
.search_all {
color: black;
background: #efefef;
border: 1px solid #ced4da;
padding: 10px;
border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
}
.search_all:active {
outline: -webkit-focus-ring-color auto 5px;
}
.artists-list-header {
text-align: center;
font-size: 1.5rem;
font-weight: 700;
}
.profile-list {
margin: 0.5rem;
width: 95%;
border: solid 1px #DADADA;
border-radius: 10px;
transition: border 0.8s, box-shadow 0.8s;
}
.profile-list:hover {
box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.13);
border: solid 1px #0C6EEF;
cursor: pointer;
}
.photo {
position: relative;
margin: 0 0.75rem 0 0;
}
.profile-card {
display: flex;
}
.profile-photo {
width: 120px;
height: 100%;
border-radius: 10px 0px 0px 10px;
}
.artists-name {
font-weight: 700;
font-size: 1.4rem;
}
.artists-location {
font-size: 0.9rem;
color: #35c5a3;
}
.artists-type {
margin-top: 1px;
color: #949393;
font-size: 1.2rem;
}
.artists-status {
display: flex;
font-weight: 800;
color: #35c5a3;
}
.artists-age {
display: flex;
font-weight: 400;
color: #315ba9;
}
.profile-content {
position: relative;
width: 100%;
}
.profile-more {
position: absolute;
bottom: 10px;
right: 10px;
padding: 6px;
border-radius: 50%;
border: 1px solid #8c8282;
color: #8c8282;
}
.profile-more:hover {
color: #35c5a3;
border: solid 1px #35c5a3;
cursor: pointer;
}
.hide-screen {
display: none!important;
}
@media (max-width: 1700px) {
.artists-list {
width: 30%;
}
#map {
height: 100%;
width: 70%;
}
.artists-navbar {
width: 30%;
}
}
@media (max-width: 1500px) {
.artists-list {
width: 30%;
}
#map {
height: 100%;
width: 70%;
}
.artists-navbar {
width: 30%;
}
}
@media (max-width: 1250px) {
.artists-list {
width: 40%;
}
#map {
height: 100%;
width: 60%;
}
.artists-navbar {
width: 40%;
}
}
@media (max-width: 1000px) {
.artists-list {
width: 40%;
}
#map {
height: 100%;
width: 60%;
}
.artists-navbar {
width: 40%;
}
}
@media (max-width: 910px) {
#map {
height: 60%;
width: 100%;
}
.artists-list {
position: absolute;
/* right: 0; */
top: 60%;
width: 100%;
height: 40%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-list {
width: 98%;
}
}
@media (max-width: 400px) {
#map {
height: 100%;
width: 100%;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-list {
width: 95%;
}
.change-list {
display: block;
}
.change-map {
display: block;
}
}
@media (max-width: 300px) {
#map {
height: 100%;
width: 100%;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-card {
display: block;
}
.profile-photo {
width: 100%;
height: 200px;
border-radius: 10px 0px 0px 10px;
}
.photo {
position: relative;
margin: auto;
}
.profile-photo {
width: 100%;
height: 200px;
border-radius: 10px 10px 10px 10px;
}
.profile-list {
width: 95%;
}
.profile-content {
padding: 10px;
}
} | public/assets/css/map.css | height: 100%;
width: 75%;
}
.change-map {
display: none;
position: absolute;
bottom: 50px;
left: 50%;
transform: translate(-50%, 0);
width: 100px;
height: 41px;
text-align: center;
padding: 8px 20px;
background: #e0f2ff;
border-radius: 5px;
box-shadow: 0 0 7px 1px rgba(0, 0, 0, .25);
z-index: 2;
}
.change-list {
display: none;
position: absolute;
bottom: 50px;
left: 50%;
transform: translate(-50%, 0);
width: 100px;
height: 41px;
text-align: center;
padding: 8px 20px;
background: #e0f2ff;
border-radius: 5px;
box-shadow: 0 0 7px 1px rgba(0, 0, 0, .25);
z-index: 2;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 25%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.list-content {
margin-top: 70px;
padding: 10px;
}
.artists-navbar {
position: fixed;
display: flex;
justify-content: space-between;
width: 25%;
height: 60px;
padding: 11px;
background: white;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.45);
z-index: 1;
}
.logo {
width: 75px;
}
.search_all {
color: black;
background: #efefef;
border: 1px solid #ced4da;
padding: 10px;
border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
}
.search_all:active {
outline: -webkit-focus-ring-color auto 5px;
}
.artists-list-header {
text-align: center;
font-size: 1.5rem;
font-weight: 700;
}
.profile-list {
margin: 0.5rem;
width: 95%;
border: solid 1px #DADADA;
border-radius: 10px;
transition: border 0.8s, box-shadow 0.8s;
}
.profile-list:hover {
box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.13);
border: solid 1px #0C6EEF;
cursor: pointer;
}
.photo {
position: relative;
margin: 0 0.75rem 0 0;
}
.profile-card {
display: flex;
}
.profile-photo {
width: 120px;
height: 100%;
border-radius: 10px 0px 0px 10px;
}
.artists-name {
font-weight: 700;
font-size: 1.4rem;
}
.artists-location {
font-size: 0.9rem;
color: #35c5a3;
}
.artists-type {
margin-top: 1px;
color: #949393;
font-size: 1.2rem;
}
.artists-status {
display: flex;
font-weight: 800;
color: #35c5a3;
}
.artists-age {
display: flex;
font-weight: 400;
color: #315ba9;
}
.profile-content {
position: relative;
width: 100%;
}
.profile-more {
position: absolute;
bottom: 10px;
right: 10px;
padding: 6px;
border-radius: 50%;
border: 1px solid #8c8282;
color: #8c8282;
}
.profile-more:hover {
color: #35c5a3;
border: solid 1px #35c5a3;
cursor: pointer;
}
.hide-screen {
display: none!important;
}
@media (max-width: 1700px) {
.artists-list {
width: 30%;
}
#map {
height: 100%;
width: 70%;
}
.artists-navbar {
width: 30%;
}
}
@media (max-width: 1500px) {
.artists-list {
width: 30%;
}
#map {
height: 100%;
width: 70%;
}
.artists-navbar {
width: 30%;
}
}
@media (max-width: 1250px) {
.artists-list {
width: 40%;
}
#map {
height: 100%;
width: 60%;
}
.artists-navbar {
width: 40%;
}
}
@media (max-width: 1000px) {
.artists-list {
width: 40%;
}
#map {
height: 100%;
width: 60%;
}
.artists-navbar {
width: 40%;
}
}
@media (max-width: 910px) {
#map {
height: 60%;
width: 100%;
}
.artists-list {
position: absolute;
/* right: 0; */
top: 60%;
width: 100%;
height: 40%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-list {
width: 98%;
}
}
@media (max-width: 400px) {
#map {
height: 100%;
width: 100%;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-list {
width: 95%;
}
.change-list {
display: block;
}
.change-map {
display: block;
}
}
@media (max-width: 300px) {
#map {
height: 100%;
width: 100%;
}
.artists-list {
position: absolute;
right: 0;
top: 0;
width: 100%;
height: 100%;
box-shadow: 0px 3px 11px 3px rgba(0, 0, 0, 0.45);
background: white;
overflow-x: hidden;
overflow-y: scroll;
}
.artists-navbar {
width: 100%;
}
.profile-card {
display: block;
}
.profile-photo {
width: 100%;
height: 200px;
border-radius: 10px 0px 0px 10px;
}
.photo {
position: relative;
margin: auto;
}
.profile-photo {
width: 100%;
height: 200px;
border-radius: 10px 10px 10px 10px;
}
.profile-list {
width: 95%;
}
.profile-content {
padding: 10px;
}
} | 0.538741 | 0.136695 |
@import url("https://fonts.googleapis.com/css?family=Gochi+Hand");
@font-face
{
font-family: HandWrite;
src: url("Fonts/Thin\ Pencil\ Handwriting.ttf");
}
@font-face
{
font-family: HandWrite;
src: url("Fonts/Thin\ Pencil\ Handwriting.ttf");
}
body, html
{
margin: 0;
padding: 0;
}
/*Fond de la page*/
html
{
height: auto;
width: 100%;
background:
linear-gradient(217deg, #ae2012, rgba(255,0,0,0) 90.71%),
linear-gradient(127deg, #9d0208, rgba(0,255,0,0) 90.71%),
linear-gradient(360deg, #03071e, rgba(0,0,255,0) 90.71%);
background-repeat: no-repeat;
overflow-x: hidden;
}
/*Image de fond en parchemin*/
.main
{
width: 80vw;
margin-left: auto;
margin-right: auto;
background-image: url("Img/parchemin.png");
background-repeat: no-repeat;
background-size: 100% 200%;
}
/*Style du titre*/
.title
{
text-align: center;
font-family: HandWrite;
width: 80vw;
padding-top: 30vh;
margin-left: auto;
margin-right: auto;
}
.title h1
{
background-color: #000000;
background-image: linear-gradient(#000000, #ba181b);
background-size: 100%;
background-clip: text;
font-size: 80px;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
.title p
{
margin-left: auto;
margin-right: auto;
width: 60vw;
font-size: 40px;
font-family: Gochi Hand;
}
/*Style du boutton about us*/
.join
{
background-color: #660708;
border: none;
border-radius: 5px;
padding: 16px 32px;
text-align: center;
font-size: 16px;
margin: 4px 2px;
transition: 0.3s;
display: inline-block;
cursor: pointer;
}
.join a
{
text-decoration: none;
color: #9a8c98;
font-family: Gochi Hand;
}
.join:hover
{
background-color: #ba181b;
}
/*Style du questionnaire*/
form
{
margin-top: 20%;
width: 55%;
margin-right: auto;
margin-left: auto;
}
div
{
padding-top: 10px;
}
form > div label, form > div p
{
width: auto;
display: inline-block;
font-weight: bold;
font-family: HandWrite;
margin-top: auto;
margin-bottom: auto;
}
input[type="submit"]
{
background-color: #a4161a;
border: none;
border-radius: 5px;
padding: 16px 32px;
text-align: center;
font-size: 16px;
color:white;
font-weight: bold;
margin: 4px 2px;
transition: 0.3s;
cursor: pointer;
}
input[type="submit"]:hover
{
background-color: #660708;
}
input
{
background-color: transparent;
border: none;
font-size: 30px;
}
input[type="date"]
{
background-color: transparent;
border: none;
font-family: HandWrite;
font-size: 15px;
font-weight: bold;
}
textarea
{
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #000000;
border-radius: 4px;
background-color: transparent;
resize: none;
}
select
{
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
color: white;
background-color: #9d0208;
}
.sceau
{
width: 100px;
height: 100px;
padding-bottom: 100px;
margin-right: 20%;
margin-left: 80%;
} | Style/style.css |
@import url("https://fonts.googleapis.com/css?family=Gochi+Hand");
@font-face
{
font-family: HandWrite;
src: url("Fonts/Thin\ Pencil\ Handwriting.ttf");
}
@font-face
{
font-family: HandWrite;
src: url("Fonts/Thin\ Pencil\ Handwriting.ttf");
}
body, html
{
margin: 0;
padding: 0;
}
/*Fond de la page*/
html
{
height: auto;
width: 100%;
background:
linear-gradient(217deg, #ae2012, rgba(255,0,0,0) 90.71%),
linear-gradient(127deg, #9d0208, rgba(0,255,0,0) 90.71%),
linear-gradient(360deg, #03071e, rgba(0,0,255,0) 90.71%);
background-repeat: no-repeat;
overflow-x: hidden;
}
/*Image de fond en parchemin*/
.main
{
width: 80vw;
margin-left: auto;
margin-right: auto;
background-image: url("Img/parchemin.png");
background-repeat: no-repeat;
background-size: 100% 200%;
}
/*Style du titre*/
.title
{
text-align: center;
font-family: HandWrite;
width: 80vw;
padding-top: 30vh;
margin-left: auto;
margin-right: auto;
}
.title h1
{
background-color: #000000;
background-image: linear-gradient(#000000, #ba181b);
background-size: 100%;
background-clip: text;
font-size: 80px;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
.title p
{
margin-left: auto;
margin-right: auto;
width: 60vw;
font-size: 40px;
font-family: Gochi Hand;
}
/*Style du boutton about us*/
.join
{
background-color: #660708;
border: none;
border-radius: 5px;
padding: 16px 32px;
text-align: center;
font-size: 16px;
margin: 4px 2px;
transition: 0.3s;
display: inline-block;
cursor: pointer;
}
.join a
{
text-decoration: none;
color: #9a8c98;
font-family: Gochi Hand;
}
.join:hover
{
background-color: #ba181b;
}
/*Style du questionnaire*/
form
{
margin-top: 20%;
width: 55%;
margin-right: auto;
margin-left: auto;
}
div
{
padding-top: 10px;
}
form > div label, form > div p
{
width: auto;
display: inline-block;
font-weight: bold;
font-family: HandWrite;
margin-top: auto;
margin-bottom: auto;
}
input[type="submit"]
{
background-color: #a4161a;
border: none;
border-radius: 5px;
padding: 16px 32px;
text-align: center;
font-size: 16px;
color:white;
font-weight: bold;
margin: 4px 2px;
transition: 0.3s;
cursor: pointer;
}
input[type="submit"]:hover
{
background-color: #660708;
}
input
{
background-color: transparent;
border: none;
font-size: 30px;
}
input[type="date"]
{
background-color: transparent;
border: none;
font-family: HandWrite;
font-size: 15px;
font-weight: bold;
}
textarea
{
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #000000;
border-radius: 4px;
background-color: transparent;
resize: none;
}
select
{
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
color: white;
background-color: #9d0208;
}
.sceau
{
width: 100px;
height: 100px;
padding-bottom: 100px;
margin-right: 20%;
margin-left: 80%;
} | 0.425128 | 0.070913 |
@charset "utf-8";
/* 标签属性 */
* {
width: auto;
height: auto;
margin: 0;
padding: 0;
border: none;
background-color: transparent;
-webkit-tap-highlight-color: transparent;
font-family: "Microsoft YaHei", "微软雅黑", Heiti, "黑体", Arial, Helvetica, STHeiTi, sans-serif;
-moz-box-sizing: inherit;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html { -webkit-text-size-adjust: none; overflow-y: scroll; }
a {
text-decoration: none;
display: block;
width: 100%;
}
.a:active,
.a:hover,
a:active,
a:hover { filter: alpha(opacity=70); -moz-opacity: .7; opacity: .7; }
img { max-width: 100%; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: 500; }
li,ol,ul { list-style: none; }
em,i { font-style: normal; }
del { text-decoration: line-through; }
input,select,textarea { font-size: 100%; vertical-align: middle; }
input,button,select,textarea { outline: 0; }
input { width: 100%; border: 0 none; }
textarea { resize: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption,th { text-align: left; }
address,caption,cite,code,dfn,em,th,var { font-style: normal; font-weight: 500; }
html { font-size: 50px; }
body {
font-size: 24px;
background-color: rgb(240,240,240);
background-color: #fff;
}
/* Theme Style 主题样式 ~~~ */
.Theme_color_font { color: #00bebe !important; }
.Theme_color_background { background-color: #00bebe !important; }
.ThemeColor_font_cyan { color: #00b6b7 !important; }
.ThemeColor_font_yellow { color: #f9a504 !important; }
.ThemeColor_font_yellow_thick { color: #f5a700 !important; }
.ThemeColor_font_red { color: #af1010 !important; }
.ThemeColor_font_gray { color: #818b8f !important; }
.ThemeColor_bg_white { background-color: #fff !important; }
.ThemeColor_bg_cyan { background-color: #00b6b7 !important; }
.ThemeColor_bg_yellow { background-color: #f6a800 !important; }
.ThemeColor_bg_red { background-color: #af1010 !important; }
.ThemeColor_bg_khaki { background-color: #f8eedc !important; }
.ThemeColor_border_cyan { border-color: #00b6b7 !important; }
.ThemeColor_border_yellow { border-color: #f6a800 !important; }
.ThemeColor_border_red { border-color: #af1010 !important; }
/* Global Public */
.body {
width: 100%;
height: auto;
margin: 0 auto;
display: block;
overflow: hidden;
position: relative;
z-index: 1;
}
.hover_cursor_pointer:hover { cursor: pointer !important; }
/* overflow ~~~ */
/*overflow-y 属性规定是否对内容的上/下边缘进行裁剪 - 如果溢出元素内容区域的话,则应该提供滚动机制。*/
.overtouch { overflow-y: auto; -webkit-overflow-scrolling: touch; }
/*盒子内容溢出时: 不进行处理*/
.overflow-visible { overflow: visible !important; }
/*盒子内容溢出时: 全部隐藏*/
.overflow-hidden { overflow: hidden !important; }
/* z-index ~~~ */
.zix-min, .zix-f1 { z-index: -1 !important; }
.zix-max, .zix-999 { z-index: 999 !important; }
.zix-0 { z-index: 0 !important; }
.zix-1 { z-index: 1 !important; }
.zix-2 { z-index: 2 !important; }
.zix-3 { z-index: 3 !important; }
.zix-4 { z-index: 4 !important; }
.zix-5 { z-index: 5 !important; }
.zix-6 { z-index: 6 !important; }
.zix-7 { z-index: 7 !important; }
.zix-8 { z-index: 8 !important; }
.zix-9 { z-index: 9 !important; }
.zix-10 { z-index: 10 !important; }
.zix-11 { z-index: 11 !important; }
.zix-12 { z-index: 12 !important; }
.zix-13 { z-index: 13 !important; }
.zix-14 { z-index: 14 !important; }
.zix-15 { z-index: 15 !important; }
.zix-16 { z-index: 16 !important; }
.zix-17 { z-index: 17 !important; }
.zix-18 { z-index: 18 !important; }
.zix-19 { z-index: 19 !important; }
/* opacity ~~~ */
/*透明度*/
.opacity-0 { filter: alpha(opacity=0); -moz-opacity: 0; opacity: 0; }
.opacity-1 { filter: alpha(opacity=10); -moz-opacity: .1; opacity: .1; }
.opacity-2 { filter: alpha(opacity=20); -moz-opacity: .2; opacity: .2; }
.opacity-3 { filter: alpha(opacity=30); -moz-opacity: .3; opacity: .3; }
.opacity-4 { filter: alpha(opacity=40); -moz-opacity: .4; opacity: .4; }
.opacity-5 { filter: alpha(opacity=50); -moz-opacity: .5; opacity: .5; }
.opacity-6 { filter: alpha(opacity=60); -moz-opacity: .6; opacity: .6; }
.opacity-7 { filter: alpha(opacity=70); -moz-opacity: .7; opacity: .7; }
.opacity-8 { filter: alpha(opacity=80); -moz-opacity: .8; opacity: .8; }
.opacity-9 { filter: alpha(opacity=90); -moz-opacity: .9; opacity: .9; }
.opacity-10 { filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; }
/* box-sizing */
.boxSizing_borderbox {
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
}
.boxSizing_contentbox {
-moz-box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
box-sizing: content-box;
}
.boxSizing_inherit {
-moz-box-sizing: inherit !important;
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
}
/* 字体样式 */
.font-weight-bold { font-weight: bold !important; }
.whiteSpace_nowrap { white-space: nowrap !important; }
/* text */
.textalign_center {
text-align: center !important;
}
.textalign_left {
text-align: center !important;
}
.textAutoNewline {
word-wrap: break-word;
word-break: break-all;
white-space: pre-wrap;
}
.textDecoration_none {
text-decoration: none !important;
}
.textDecoration_underline {
text-decoration: underline !important;
}
/* box-shadow */
.box_shadow {
-moz-box-shadow: 0px 0px 4px #888888;
box-shadow: 0px 0px 4px #888888;
}
.box_shadow_hover:hover {
-moz-box-shadow: 0px 0px 4px #888888;
box-shadow: 0px 0px 4px #888888;
}
/* user-select */
.user_select_none {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.user_select_text {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}
.user_select_all {
-webkit-user-select: all !important;
-moz-user-select: all !important;
-ms-user-select: all !important;
user-select: all !important;
}
.user_select_element {
-webkit-user-select: element !important;
-moz-user-select: element !important;
-ms-user-select: element !important;
user-select: element !important;
}
/* ***************************************************华丽的分割线*************************************************** */
/* 加载图片旋转动画 */
.LoadingGif {
background-image: url();
background-size: 3em 3em;
background-repeat: no-repeat;
background-position: center;
-webkit-animation: LoadingGifRotate 2s infinite linear;
animation: LoadingGifRotate 2s infinite linear;
}
@-webkit-keyframes LoadingGifRotate{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 隐藏并且需要存在的盒子 */
.HiddenExistBox {
display: block !important;
overflow: hidden !important;
position: fixed !important;
top: -1px !important;
left: -1px !important;
right: auto !important;
bottom: auto !important;
z-index: -100 !important;
width: 1px !important;
height: 1px !important;
filter: alpha(opacity=0) !important;
-moz-opacity: 0 !important;
opacity: 0 !important;
}
/* 锁定窗口尺寸 一般使用在 html 和 body 元素上 */
.LockWindowSize {
display: block !important;
overflow: hidden !important;
position: relative !important;
width: 100% !important;
height: auto !important;
}
/* ***************************************************华丽的分割线*************************************************** */
/* 模型盒子 */
.ModelBox_MAX,
.ModelBox {
max-width: 880px;
height: auto;
margin: 0 auto;
position: relative;
}
.ModelBox_MAX {
width: 100%;
}
.ModelBox {
width: 87%;
}
/* 自适应设备大小 */
@media screen and (max-width: 320px) { html { font-size: 21.33px; } body { font-size: 9px; } }
@media screen and (min-width: 320px) { html { font-size: 21.33px; } body { font-size: 9px; } }
@media screen and (min-width: 360px) { html { font-size: 24.00px; } body { font-size: 9.50px; } }
@media screen and (min-width: 384px) { html { font-size: 25.60px; } body { font-size: 10.00px; } }
@media screen and (min-width: 400px) { html { font-size: 26.67px; } body { font-size: 11.00px; } }
@media screen and (min-width: 480px) { html { font-size: 32.00px; } body { font-size: 12.00px; } }
@media screen and (min-width: 540px) { html { font-size: 32.00px; } body { font-size: 14.00px; } }
@media screen and (min-width: 650px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
@media screen and (min-width: 750px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
@media screen and (min-width: 880px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
/* 手机端样式 */
@media screen and (max-width: 880px) {
.Style_IsMobile_Hide {
display: none !important;
}
}
/* 电脑端样式 */
@media screen and (min-width: 880px) {
.Style_IsPC_Hide {
display: none !important;
}
.Style_IsPC_Opacity {
filter: alpha(opacity=0) !important;
-moz-opacity: 0 !important;
opacity: 0 !important;
}
} | dotnet_framework/YTS.Web/Template/Admin/css/GlobalConfig.css | @charset "utf-8";
/* 标签属性 */
* {
width: auto;
height: auto;
margin: 0;
padding: 0;
border: none;
background-color: transparent;
-webkit-tap-highlight-color: transparent;
font-family: "Microsoft YaHei", "微软雅黑", Heiti, "黑体", Arial, Helvetica, STHeiTi, sans-serif;
-moz-box-sizing: inherit;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html { -webkit-text-size-adjust: none; overflow-y: scroll; }
a {
text-decoration: none;
display: block;
width: 100%;
}
.a:active,
.a:hover,
a:active,
a:hover { filter: alpha(opacity=70); -moz-opacity: .7; opacity: .7; }
img { max-width: 100%; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: 500; }
li,ol,ul { list-style: none; }
em,i { font-style: normal; }
del { text-decoration: line-through; }
input,select,textarea { font-size: 100%; vertical-align: middle; }
input,button,select,textarea { outline: 0; }
input { width: 100%; border: 0 none; }
textarea { resize: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption,th { text-align: left; }
address,caption,cite,code,dfn,em,th,var { font-style: normal; font-weight: 500; }
html { font-size: 50px; }
body {
font-size: 24px;
background-color: rgb(240,240,240);
background-color: #fff;
}
/* Theme Style 主题样式 ~~~ */
.Theme_color_font { color: #00bebe !important; }
.Theme_color_background { background-color: #00bebe !important; }
.ThemeColor_font_cyan { color: #00b6b7 !important; }
.ThemeColor_font_yellow { color: #f9a504 !important; }
.ThemeColor_font_yellow_thick { color: #f5a700 !important; }
.ThemeColor_font_red { color: #af1010 !important; }
.ThemeColor_font_gray { color: #818b8f !important; }
.ThemeColor_bg_white { background-color: #fff !important; }
.ThemeColor_bg_cyan { background-color: #00b6b7 !important; }
.ThemeColor_bg_yellow { background-color: #f6a800 !important; }
.ThemeColor_bg_red { background-color: #af1010 !important; }
.ThemeColor_bg_khaki { background-color: #f8eedc !important; }
.ThemeColor_border_cyan { border-color: #00b6b7 !important; }
.ThemeColor_border_yellow { border-color: #f6a800 !important; }
.ThemeColor_border_red { border-color: #af1010 !important; }
/* Global Public */
.body {
width: 100%;
height: auto;
margin: 0 auto;
display: block;
overflow: hidden;
position: relative;
z-index: 1;
}
.hover_cursor_pointer:hover { cursor: pointer !important; }
/* overflow ~~~ */
/*overflow-y 属性规定是否对内容的上/下边缘进行裁剪 - 如果溢出元素内容区域的话,则应该提供滚动机制。*/
.overtouch { overflow-y: auto; -webkit-overflow-scrolling: touch; }
/*盒子内容溢出时: 不进行处理*/
.overflow-visible { overflow: visible !important; }
/*盒子内容溢出时: 全部隐藏*/
.overflow-hidden { overflow: hidden !important; }
/* z-index ~~~ */
.zix-min, .zix-f1 { z-index: -1 !important; }
.zix-max, .zix-999 { z-index: 999 !important; }
.zix-0 { z-index: 0 !important; }
.zix-1 { z-index: 1 !important; }
.zix-2 { z-index: 2 !important; }
.zix-3 { z-index: 3 !important; }
.zix-4 { z-index: 4 !important; }
.zix-5 { z-index: 5 !important; }
.zix-6 { z-index: 6 !important; }
.zix-7 { z-index: 7 !important; }
.zix-8 { z-index: 8 !important; }
.zix-9 { z-index: 9 !important; }
.zix-10 { z-index: 10 !important; }
.zix-11 { z-index: 11 !important; }
.zix-12 { z-index: 12 !important; }
.zix-13 { z-index: 13 !important; }
.zix-14 { z-index: 14 !important; }
.zix-15 { z-index: 15 !important; }
.zix-16 { z-index: 16 !important; }
.zix-17 { z-index: 17 !important; }
.zix-18 { z-index: 18 !important; }
.zix-19 { z-index: 19 !important; }
/* opacity ~~~ */
/*透明度*/
.opacity-0 { filter: alpha(opacity=0); -moz-opacity: 0; opacity: 0; }
.opacity-1 { filter: alpha(opacity=10); -moz-opacity: .1; opacity: .1; }
.opacity-2 { filter: alpha(opacity=20); -moz-opacity: .2; opacity: .2; }
.opacity-3 { filter: alpha(opacity=30); -moz-opacity: .3; opacity: .3; }
.opacity-4 { filter: alpha(opacity=40); -moz-opacity: .4; opacity: .4; }
.opacity-5 { filter: alpha(opacity=50); -moz-opacity: .5; opacity: .5; }
.opacity-6 { filter: alpha(opacity=60); -moz-opacity: .6; opacity: .6; }
.opacity-7 { filter: alpha(opacity=70); -moz-opacity: .7; opacity: .7; }
.opacity-8 { filter: alpha(opacity=80); -moz-opacity: .8; opacity: .8; }
.opacity-9 { filter: alpha(opacity=90); -moz-opacity: .9; opacity: .9; }
.opacity-10 { filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; }
/* box-sizing */
.boxSizing_borderbox {
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
}
.boxSizing_contentbox {
-moz-box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
box-sizing: content-box;
}
.boxSizing_inherit {
-moz-box-sizing: inherit !important;
-webkit-box-sizing: inherit !important;
box-sizing: inherit !important;
}
/* 字体样式 */
.font-weight-bold { font-weight: bold !important; }
.whiteSpace_nowrap { white-space: nowrap !important; }
/* text */
.textalign_center {
text-align: center !important;
}
.textalign_left {
text-align: center !important;
}
.textAutoNewline {
word-wrap: break-word;
word-break: break-all;
white-space: pre-wrap;
}
.textDecoration_none {
text-decoration: none !important;
}
.textDecoration_underline {
text-decoration: underline !important;
}
/* box-shadow */
.box_shadow {
-moz-box-shadow: 0px 0px 4px #888888;
box-shadow: 0px 0px 4px #888888;
}
.box_shadow_hover:hover {
-moz-box-shadow: 0px 0px 4px #888888;
box-shadow: 0px 0px 4px #888888;
}
/* user-select */
.user_select_none {
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.user_select_text {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}
.user_select_all {
-webkit-user-select: all !important;
-moz-user-select: all !important;
-ms-user-select: all !important;
user-select: all !important;
}
.user_select_element {
-webkit-user-select: element !important;
-moz-user-select: element !important;
-ms-user-select: element !important;
user-select: element !important;
}
/* ***************************************************华丽的分割线*************************************************** */
/* 加载图片旋转动画 */
.LoadingGif {
background-image: url();
background-size: 3em 3em;
background-repeat: no-repeat;
background-position: center;
-webkit-animation: LoadingGifRotate 2s infinite linear;
animation: LoadingGifRotate 2s infinite linear;
}
@-webkit-keyframes LoadingGifRotate{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 隐藏并且需要存在的盒子 */
.HiddenExistBox {
display: block !important;
overflow: hidden !important;
position: fixed !important;
top: -1px !important;
left: -1px !important;
right: auto !important;
bottom: auto !important;
z-index: -100 !important;
width: 1px !important;
height: 1px !important;
filter: alpha(opacity=0) !important;
-moz-opacity: 0 !important;
opacity: 0 !important;
}
/* 锁定窗口尺寸 一般使用在 html 和 body 元素上 */
.LockWindowSize {
display: block !important;
overflow: hidden !important;
position: relative !important;
width: 100% !important;
height: auto !important;
}
/* ***************************************************华丽的分割线*************************************************** */
/* 模型盒子 */
.ModelBox_MAX,
.ModelBox {
max-width: 880px;
height: auto;
margin: 0 auto;
position: relative;
}
.ModelBox_MAX {
width: 100%;
}
.ModelBox {
width: 87%;
}
/* 自适应设备大小 */
@media screen and (max-width: 320px) { html { font-size: 21.33px; } body { font-size: 9px; } }
@media screen and (min-width: 320px) { html { font-size: 21.33px; } body { font-size: 9px; } }
@media screen and (min-width: 360px) { html { font-size: 24.00px; } body { font-size: 9.50px; } }
@media screen and (min-width: 384px) { html { font-size: 25.60px; } body { font-size: 10.00px; } }
@media screen and (min-width: 400px) { html { font-size: 26.67px; } body { font-size: 11.00px; } }
@media screen and (min-width: 480px) { html { font-size: 32.00px; } body { font-size: 12.00px; } }
@media screen and (min-width: 540px) { html { font-size: 32.00px; } body { font-size: 14.00px; } }
@media screen and (min-width: 650px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
@media screen and (min-width: 750px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
@media screen and (min-width: 880px) { html { font-size: 32.00px; } body { font-size: 16.00px; } }
/* 手机端样式 */
@media screen and (max-width: 880px) {
.Style_IsMobile_Hide {
display: none !important;
}
}
/* 电脑端样式 */
@media screen and (min-width: 880px) {
.Style_IsPC_Hide {
display: none !important;
}
.Style_IsPC_Opacity {
filter: alpha(opacity=0) !important;
-moz-opacity: 0 !important;
opacity: 0 !important;
}
} | 0.360377 | 0.079246 |
html, body {
padding: 0;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
html {
font-size: 1em; }
body {
font-size: 100%; }
a img, :link img, :visited img {
border: 0; }
*, *:before, *:after {
box-sizing: border-box; }
.alpha-0 {
opacity: 0; }
.invisible {
visibility: hidden; }
.none {
display: none; }
.offstage {
position: absolute;
left: -4000px;
top: -4000px; }
.transform-reset {
transform: none !important; }
.anti-alias, .white-text-alias-mac {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.gpu {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0); }
@supports (-moz-appearance: meterbar) {
.gpu {
transform: translateZ(0) rotate(0.02deg); } }
.center-trans {
position: absolute;
left: 50%;
transform: translateX(-50%); }
.middle-trans {
position: absolute;
top: 50%;
transform: translateY(-50%); }
.center-middle-trans {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); }
.center {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto; }
.middle {
position: absolute;
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto; }
.center-middle {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto; }
#ad_content {
background: white;
cursor: pointer;
border: 1px solid black;
font-family: Helvetica, Arial, sans-serif;
overflow: hidden;
position: absolute;
width: 600px;
height: 314px; }
#ad_content div,
#ad_content svg {
position: absolute; }
.backup {
background: url("backup.jpg") -1px -1px no-repeat;
background-size: 600px 314px;
border: 1px solid black;
cursor: pointer;
position: absolute;
width: 600px;
height: 314px; }
#img-01 {
bottom: 6px; }
#img-02 {
bottom: 24px;
left: 0; }
#logo {
bottom: 0;
left: 0; }
#txt_1 {
bottom: 159px;
left: 83px; }
#txt_2 {
bottom: 159px;
left: 225px; }
#txt_3 {
bottom: 159px;
left: 373px; }
#txt_ef {
bottom: 180px;
left: 217px; }
#cta {
width: 161px;
height: 40px;
left: 221px;
top: 187px; }
#cta #cta_bg {
width: 100%;
height: 100%;
background: #232323;
border-radius: 5px; }
.sprite-jpg { background-image: url('sprite.jpg') }
.sprite-jpg.img-01 {
width: 600px;
height: 308px;
background-position: -606px 0px;
background-size: 1209px 315px; }
.sprite-jpg.img-02 {
width: 600px;
height: 314px;
background-position: 0px 0px;
background-size: 1209px 315px; }
.sprite-png { background-image: url('sprite.png') }
.sprite-png.cta {
width: 166px;
height: 38px;
background-position: -342px -42px; }
.sprite-png.logo {
width: 600px;
height: 33px;
background-position: -342px 0px; }
.sprite-png.txt_1 {
width: 130px;
height: 28px;
background-position: -810px -42px; }
.sprite-png.txt_2 {
width: 136px;
height: 36px;
background-position: -516px -42px; }
.sprite-png.txt_3 {
width: 140px;
height: 35px;
background-position: -660px -42px; }
.sprite-png.txt_ef {
width: 166px;
height: 43px;
background-position: 0px 0px;
background-size: 474px 45px; }
.sprite-svg { background: url('sprite.svg') no-repeat; }
.sprite-svg.cta_txt {
background-position: 0 99.84338292873923%;
width: 105.94px;
height: 16.84px; }
.sprite-svg.txt_1 {
background-position: 0 81.11111111111111%;
width: 131.63px;
height: 29px; }
.sprite-svg.txt_2 {
background-position: 0 44.24242424242424%;
width: 136.72px;
height: 36.5px; }
.sprite-svg.txt_3 {
background-position: 0 0;
width: 142.25px;
height: 36.5px; } | 600x314/bundle.css | html, body {
padding: 0;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
html {
font-size: 1em; }
body {
font-size: 100%; }
a img, :link img, :visited img {
border: 0; }
*, *:before, *:after {
box-sizing: border-box; }
.alpha-0 {
opacity: 0; }
.invisible {
visibility: hidden; }
.none {
display: none; }
.offstage {
position: absolute;
left: -4000px;
top: -4000px; }
.transform-reset {
transform: none !important; }
.anti-alias, .white-text-alias-mac {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.gpu {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0); }
@supports (-moz-appearance: meterbar) {
.gpu {
transform: translateZ(0) rotate(0.02deg); } }
.center-trans {
position: absolute;
left: 50%;
transform: translateX(-50%); }
.middle-trans {
position: absolute;
top: 50%;
transform: translateY(-50%); }
.center-middle-trans {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); }
.center {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto; }
.middle {
position: absolute;
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto; }
.center-middle {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto; }
#ad_content {
background: white;
cursor: pointer;
border: 1px solid black;
font-family: Helvetica, Arial, sans-serif;
overflow: hidden;
position: absolute;
width: 600px;
height: 314px; }
#ad_content div,
#ad_content svg {
position: absolute; }
.backup {
background: url("backup.jpg") -1px -1px no-repeat;
background-size: 600px 314px;
border: 1px solid black;
cursor: pointer;
position: absolute;
width: 600px;
height: 314px; }
#img-01 {
bottom: 6px; }
#img-02 {
bottom: 24px;
left: 0; }
#logo {
bottom: 0;
left: 0; }
#txt_1 {
bottom: 159px;
left: 83px; }
#txt_2 {
bottom: 159px;
left: 225px; }
#txt_3 {
bottom: 159px;
left: 373px; }
#txt_ef {
bottom: 180px;
left: 217px; }
#cta {
width: 161px;
height: 40px;
left: 221px;
top: 187px; }
#cta #cta_bg {
width: 100%;
height: 100%;
background: #232323;
border-radius: 5px; }
.sprite-jpg { background-image: url('sprite.jpg') }
.sprite-jpg.img-01 {
width: 600px;
height: 308px;
background-position: -606px 0px;
background-size: 1209px 315px; }
.sprite-jpg.img-02 {
width: 600px;
height: 314px;
background-position: 0px 0px;
background-size: 1209px 315px; }
.sprite-png { background-image: url('sprite.png') }
.sprite-png.cta {
width: 166px;
height: 38px;
background-position: -342px -42px; }
.sprite-png.logo {
width: 600px;
height: 33px;
background-position: -342px 0px; }
.sprite-png.txt_1 {
width: 130px;
height: 28px;
background-position: -810px -42px; }
.sprite-png.txt_2 {
width: 136px;
height: 36px;
background-position: -516px -42px; }
.sprite-png.txt_3 {
width: 140px;
height: 35px;
background-position: -660px -42px; }
.sprite-png.txt_ef {
width: 166px;
height: 43px;
background-position: 0px 0px;
background-size: 474px 45px; }
.sprite-svg { background: url('sprite.svg') no-repeat; }
.sprite-svg.cta_txt {
background-position: 0 99.84338292873923%;
width: 105.94px;
height: 16.84px; }
.sprite-svg.txt_1 {
background-position: 0 81.11111111111111%;
width: 131.63px;
height: 29px; }
.sprite-svg.txt_2 {
background-position: 0 44.24242424242424%;
width: 136.72px;
height: 36.5px; }
.sprite-svg.txt_3 {
background-position: 0 0;
width: 142.25px;
height: 36.5px; } | 0.422743 | 0.058507 |
body {
padding-top: 130px;
padding-bottom: 40px;
background-color: #2E363F;
}
.login-wrapper {
top: 90px;
text-align: center;
}
.login-wrapper .box {
margin: 0 auto;
padding: 35px 0 30px;
float: none;
width: 400px;
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
background: rgba(0, 0, 0, 0.6);
}
.col-xs-8{
padding-left: 0px;
}
.login-wrapper .box .content-wrap {
width: 82%;
margin: 0 auto;
}
.login-wrapper .box h6 {
text-transform: uppercase;
margin: 0 0 25px 0;
font-size: 18px;
font-weight: 600;
}
.login-wrapper .box input[type="text"],
.login-wrapper .box input[type="password"] {
font-size: 15px;
height: 40px;
border-color: #b2bfc7;
padding-left: 12px;
}
.login-wrapper .box input:-moz-placeholder {
color: #9ba8b6;
font-size: 15px;
letter-spacing: 0px;
font-style: italic;
}
.login-wrapper .box input:-ms-input-placeholder {
color: #9ba8b6;
font-style: italic;
letter-spacing: 0px;
font-size: 15px;
}
.login-wrapper .box input::-webkit-input-placeholder {
color: #9ba8b6;
font-style: italic;
letter-spacing: 0px;
font-size: 15px;
}
.login-wrapper .box a.forgot {
display: block;
text-align: right;
font-style: italic;
text-decoration: underline;
color: #3d88ba;
font-size: 13px;
margin-bottom: 6px;
}
.login-wrapper .box .remember {
display: block;
overflow: hidden;
margin-bottom: 20px;
}
.login-wrapper .box .remember label {
float: left;
color: #4a576a;
font-size: 13px;
}
.login-wrapper .box .login {
text-transform: uppercase;
font-size: 13px;
padding: 8px 30px;
}
.login-wrapper .no-account {
margin: 0 auto;
float: none;
text-align: center;
font-size: 14px;
margin-top: 25px;
}
.login-wrapper .no-account p {
display: inline-block;
color: #aaaaaa;
}
.login-wrapper .no-account a {
color: #aaaaaa;
margin-left: 7px;
border-bottom: 1px solid;
transition: all .1s linear;
-moz-transition: all .1s linear;
/* Firefox 4 */
-webkit-transition: all .1s linear;
/* Safari and Chrome */
-o-transition: all .1s linear;
/* Opera */
}
.login-wrapper .no-account a:hover {
text-decoration: none;
color: #fff;
border-bottom-color: #fff;
}
/* responsive */
@media (max-width: 767px) {
.login-wrapper .box {
width: 350px;
}
}
@media (max-width: 480px) {
.login-wrapper .box {
width: 90%;
}
} | public/resource/css/login.css | body {
padding-top: 130px;
padding-bottom: 40px;
background-color: #2E363F;
}
.login-wrapper {
top: 90px;
text-align: center;
}
.login-wrapper .box {
margin: 0 auto;
padding: 35px 0 30px;
float: none;
width: 400px;
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
background: rgba(0, 0, 0, 0.6);
}
.col-xs-8{
padding-left: 0px;
}
.login-wrapper .box .content-wrap {
width: 82%;
margin: 0 auto;
}
.login-wrapper .box h6 {
text-transform: uppercase;
margin: 0 0 25px 0;
font-size: 18px;
font-weight: 600;
}
.login-wrapper .box input[type="text"],
.login-wrapper .box input[type="password"] {
font-size: 15px;
height: 40px;
border-color: #b2bfc7;
padding-left: 12px;
}
.login-wrapper .box input:-moz-placeholder {
color: #9ba8b6;
font-size: 15px;
letter-spacing: 0px;
font-style: italic;
}
.login-wrapper .box input:-ms-input-placeholder {
color: #9ba8b6;
font-style: italic;
letter-spacing: 0px;
font-size: 15px;
}
.login-wrapper .box input::-webkit-input-placeholder {
color: #9ba8b6;
font-style: italic;
letter-spacing: 0px;
font-size: 15px;
}
.login-wrapper .box a.forgot {
display: block;
text-align: right;
font-style: italic;
text-decoration: underline;
color: #3d88ba;
font-size: 13px;
margin-bottom: 6px;
}
.login-wrapper .box .remember {
display: block;
overflow: hidden;
margin-bottom: 20px;
}
.login-wrapper .box .remember label {
float: left;
color: #4a576a;
font-size: 13px;
}
.login-wrapper .box .login {
text-transform: uppercase;
font-size: 13px;
padding: 8px 30px;
}
.login-wrapper .no-account {
margin: 0 auto;
float: none;
text-align: center;
font-size: 14px;
margin-top: 25px;
}
.login-wrapper .no-account p {
display: inline-block;
color: #aaaaaa;
}
.login-wrapper .no-account a {
color: #aaaaaa;
margin-left: 7px;
border-bottom: 1px solid;
transition: all .1s linear;
-moz-transition: all .1s linear;
/* Firefox 4 */
-webkit-transition: all .1s linear;
/* Safari and Chrome */
-o-transition: all .1s linear;
/* Opera */
}
.login-wrapper .no-account a:hover {
text-decoration: none;
color: #fff;
border-bottom-color: #fff;
}
/* responsive */
@media (max-width: 767px) {
.login-wrapper .box {
width: 350px;
}
}
@media (max-width: 480px) {
.login-wrapper .box {
width: 90%;
}
} | 0.31785 | 0.05549 |
@charset "utf-8";
/**
* base.css
* https://www.yangqq.net/
* Copyright 2019, design by yangqq
*/
* { margin: 0; padding: 0 }
body { font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif; }
img { border: 0; display: block }
ul, li { list-style: none; }
a { text-decoration: none; color: #000; }
a:hover { color: #000; text-decoration: none; }
.clear { clear: both; width: 100%; overflow: hidden; }
.box { width: 1200px; margin: auto; }
/*top*/
.top { width: 100%; height: 40px; line-height: 40px; background: #1d273d; color: #fff; font-size: 12px; }
.welcome { float: left }
.welcome a { color: #eb690a; margin: 0 5px }
/*search*/
.search { position: relative; overflow: hidden; }
.search input.input_submit { border: 0; color: #fff; outline: none; position: absolute; top: 0; right: 0; display: block; font-size: 15px; height: 36px; background: #1d273d; line-height: 36px; cursor: pointer; }
.search input.input_text { border: 0; line-height: 36px; height: 36px; font-size: 14px; outline: none; text-indent: 1em; }
/*is-search*/
.is-search { width: 80px; height: 28px; line-height: 28px; color: #888; margin: 5px 0 0; float: right; overflow: hidden; }
.is-search section { display: block; border-radius: 20px; margin: 0 20px; font-size: 12px; }
.is-search i { display: block; width: 34px; height: 28px; background: url(../images/searchm.png) no-repeat left 10px center; background-size: 20px; float: left; margin-right: 10px; }
/*search-page*/
.search-page { width: 100%; left: 0; background: #ebf0fa; position: absolute; top: 40px; z-index: 8; display: none; }
.search_box { width: 1200px; margin: auto; }
.search-page .search {clear: both;width: 60%;margin: auto;border-radius: 0 5px 5px 0;}
.search-page .search input.input_text {width: 80%;float: left;z-index: 9;}
.search-page .search input.input_submit { width: 20%; }
.search select {border:none;height: 36px;right: 20%;outline: none;z-index: 9;position: absolute;background: #fff;}
.search-page .go-left { background: url(../images/prev_close.png) no-repeat left center; width: 32px; height: 32px; float: right; background-size: 32px; margin: 20px; }
.hot-search { margin: 40px 20px; overflow: hidden; text-align: center; }
.hot-search p { font-size: 18px; margin-bottom: 10px; font-weight: bold; color: #1d273d; }
.search-paihang li { display: inline-block; line-height: 26px; height: 26px; font-size: 15px; margin: 3px 10px; }
.search-paihang li a { display: block; color: #666; }
.search-paihang li a:hover { color: #1d273d }
/*guanzhu*/
.guanzhu { float: right; position: relative; }
.guanzhu i { background: url(../images/icon_wx.png) no-repeat center; background-size: 32px; height: 40px; display: block; width: 40px; float: right; cursor: pointer }
.weixin { padding: 2px; overflow: hidden; text-align: center; line-height: 23px; box-shadow: #ddd 0px 5px 5px; clear: both; position: absolute; width: 256px; height: 145px; right: 0; top: 40px; display: none; background: #fff; }
.weixin li { float: left; margin: 0 3px; color: #333; }
.weixin li img { width: 120px; border: #ccc 1px solid; }
.guanzhu:hover .weixin { display: block; z-index: 9; }
/*logo*/
.logo { float: left; margin-right: 90px; }
.logo img { height: 80px; }
/*nav*/
nav { line-height: 80px;height: 80px; width: 100%; background: #fff; box-shadow: 0 1px 10px 0 rgba(0,0,0,.1); }
#starlist li { position: relative; display: inline-block; font-size: 16px; text-align: center; }
#starlist li i { display: block; width: 24px; height: 16px; background: url(../images/hot.png) no-repeat; background-size: 100% 100%; display: inline-block; position: absolute; margin-left: 4px; top: 23px; }
#starlist li a { display: block; color: #333; padding: 0 20px }
#starlist li:hover a, #starlist ul.sub li a:hover { color: #16499d; }
#starlist ul.sub li { width: 100%; background: #fff; float: left; font-size: 15px; }
#starlist ul.sub li a { padding: 0; display: none; width: 100%; color: #333; }
#starlist ul.sub li:first-child a { margin-top: 10px }
#starlist ul.sub li:last-child a { margin-bottom: 10px }
#starlist ul.sub { position: absolute; left: 0; top: 60px; z-index: 9; width: 110%; line-height: 36px; opacity: 0; transition: all .5s; box-shadow: 0px 5px 9px 1px rgba(144, 161, 180, 0.2); }
#starlist li:hover ul.sub { opacity: 1; top: 80px; }
#starlist li:hover ul.sub li a { display: block }
#starlist li:hover ul.sub:after, #starlist ul.sub li:after, #starlist ul.sub li a:after { display: none; }
.menu:after { content: ""; position: absolute; right: 9px; top: 49%; width: 0; height: 0; border-width: 4px 4px 0; border-style: solid; border-color: #3f3c3c transparent transparent; transition: all .5s ease; }
.menu:hover:after { transform: rotate(180deg) }
.selected a:after { content: ""; position: absolute; left: 50%; bottom: 10px; margin-left: -10px; width: 20px; height: 4px; border-radius: 2px; background-color: #16499d; }
#mnavh { display: none; width: 40px; height: 40px; text-align: center; }
.navicon { display: block; position: relative; width: 27px; height: 2px; background-color: #fff; margin-top: 20px; float: left; }
.navicon:before, .navicon:after { content: ''; display: block; width: 27px; height: 2px; position: absolute; background: #fff; -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform; -webkit-transition-duration: 300ms; transition-duration: 300ms; }
.navicon:before { margin-top: -8px; }
.navicon:after { margin-top: 8px; }
.open .navicon { background: none }
.open .navicon:before { margin-top: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.open .navicon:after { margin-top: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
.open .navicon:before, .open .navicon:after { content: ''; display: block; width: 28px; height: 2px; position: absolute; background: #727171; }
/*main*/
main { width: 1200px; margin: 30px auto 0; overflow: hidden; display:block}
.lbox { width: 100%; float: left }
.rbox { width: 320px; float: right }
.banner { width: 100%; height: 460px; float: left; position: relative }
.banner section:after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: -webkit-gradient(linear, 0 0, 0 bottom, from(transparent), to(#000)); z-index: -1; }
.banner section { bottom: 0; left: 0; position: absolute; display: block; width: 100%; z-index: 0; }
.banner h4 { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.5); font-size: 20px; line-height: 26px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; padding: 0 20px; z-index: 2; margin: 20px 0 40px; }
/*headline*/
.headline { width: 270px; float: right; overflow: hidden; }
.headline ul { height: 300px; }
.headline ul li { width: 100%; overflow: hidden; height: 140px; position: relative; }
.headline ul li:first-child { margin-bottom: 20px; }
.headline ul li a { display: block; overflow: hidden; height: 100%; }
.headline ul li img { width: 100%; min-height: 100%; transition: all .6s; }
.headline ul li:hover img { transform: scale(1.1); }
.headline span:after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: -webkit-gradient(linear, 0 0, 0 bottom, from(transparent), to(#000)); z-index: -1; }
.headline span { bottom: 0; left: 0; position: absolute; display: block; width: 100%; z-index: 0; }
.headline h4 { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.5); line-height: 18px; font-size: 14px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; padding: 0 20px; z-index: 2; margin: 20px 0; }
/*news_kx*/
.news_kx { border: 1px solid #e1e1e1; background: #fff; position: relative; margin-right: 12px; padding: 20px; margin-bottom: 40px; }
.news_kx h2 { width: 140px; height: 40px; padding-right: 20px; line-height: 40px; background: #16499d; color: #fff; font-size: 15px; font-weight: normal; text-align: center; border-radius: 0 20px 20px 0; margin-left: -20px; }
.news_kx:before { position: absolute; content: ""; border: 1px solid #e1e1e1; right: -6px; top: 6px; width: 100%; height: 100%; background: #fff; z-index: -1; }
.news_kx:after { position: absolute; content: ""; border: 1px solid #e1e1e1; right: -12px; top: 12px; width: 100%; height: 100%; z-index: -2; }
.news_kx ul { margin: 30px 0 0 }
.news_kx li { padding: 0 0 24px 30px; position: relative; font-size: 14px; line-height: 20px; }
.news_kx li span { display: block; font-size: 12px; color: #999; margin-top: 10px; }
.news_kx li:before { content: ""; background: #e1e1e1; width: 1px; height: 100%; left: 7px; top: 7px; position: absolute; }
.news_kx li:last-child:before { display: none }
.news_kx li i { position: absolute; left: 2px; top: 4px; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background-color: #16499d; border: #a2b6d8 2px solid; }
.news_kx li:hover a { color: #16499d }
/*h_title*/
.h_title { position: relative; font-size: 18px; margin: 15px 0 0 0; }
.h_title:after { content: ""; position: absolute; left: 10px; bottom: 3px; margin-left: -10px; width: 70px; height: 4px; border-radius: 2px; background-color: #a2b6d8; z-index: -1; }
/*blogs*/
.blogs { margin-bottom: 30px; }
.blogs_list { overflow: hidden; position: relative; transition: all .8s; padding: 20px 10px 20px 0; border-bottom: 1px dashed #e5e5e5; }
.blogs_list i { display: block; width: 210px; height: 120px; background: #ccc; overflow: hidden; float: left; margin-right: 20px; }
.blogs_list i img { width: 100%; min-height: 100%; transition: all .6s; }
.blogs_list h2 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 6px; line-height: 28px; font-size: 16px; color: #333; }
.blogs_list p { color: #737373; line-height: 20px; font-size: 14px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.blogs_writer { color: #333; margin: 0 5px 0 10px; font-size: 12px; position: absolute; left: 218px; bottom: 22px; }
.blogs_time { color: #b3b2b2; position: relative; }
.blogs_time:before { content: "·"; padding: 0 5px }
.blogs_tags { float: right; position: absolute; right: 0; bottom: 15px; }
.blogs_tags a { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; margin: 5px 5px 0 0; padding: 1px 7px; height: 18px; color: #16499d; background: #d2e3fe; border-radius: 10px; line-height: 18px; font-size: 12px; }
.blogs_tags a:hover { background: #16499d; color: #fff; }
.blogs_lm { position: absolute; z-index: 2; top: 30px; left: 10px; padding: 0 12px; height: 20px; font-size: 12px; background: rgba(3, 3, 3,.5); border-radius: 100px; line-height: 20px; }
.blogs_lm a { color: #999; }
.blogs_list:hover { box-shadow: 0px 12px 8px -12px #c0bebe; }
.blogs_list:hover h2 { color: #16499d; }
.blogs_list:hover img { transform: scale(1.1); }
/*zhuanti*/
.zhuanti { position: relative; border-bottom: 1px dashed #e5e5e5; padding: 20px 0 }
.zhuanti a { display: block; overflow: hidden; transition: .5s }
.zhuanti section { position: absolute; bottom: 30px }
.zhuanti span { display: block; position: absolute; top: 30px; left: 10px; padding: 0 12px; height: 20px; font-size: 12px; background: rgba(62, 62, 62, 0.5); border-radius: 100px; line-height: 20px; z-index: 2; color: #999; }
.zhuanti img { transition: .5s; width: 100% }
.zhuanti h2 { margin-bottom: 15px; padding: 0 20px; color: #fff; font-size: 16px; }
.zhuanti p { color: #fff; padding: 0 20px; font-size: 14px; line-height: 20px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.zhuanti:hover img { transform: scale(1.1); }
/*lm_hot*/
.lm_hot { border-radius: 2px; border: 1px solid #e1e1e1; margin-top: 16px; padding: 5px 20px 30px; overflow: hidden; margin-bottom: 30px; }
.lm_hot a { border-radius: 2px; width: 46%; float: left; text-align: center; line-height: 40px; border: 1px solid #e1e1e1; margin-top: 16px; font-size: 14px; color: #333; }
.lm_hot a:nth-child(even) { float: right }
.lm_hot a:hover { background: #16499d; color: #fff }
/*ad*/
.ad { border-radius: 2px; border: 1px solid #e1e1e1; margin: 30px 0; overflow: hidden; }
.ad img { min-width: 100%; transition: .5s; }
/*hot_news*/
.hot_news { border-radius: 2px; border: 1px solid #e1e1e1; margin-top: 20px; padding: 5px 20px 0; overflow: hidden; margin-bottom: 30px; }
.hot_news li { position: relative; margin: 24px 0; overflow: hidden; }
.hot_news li i { width: 120px; height: 70px; display: inline-block; overflow: hidden; float: left; margin-right: 12px; border-radius: 2px; }
.hot_news li i img { width: 100%; min-height: 100%; transition: .5s; float: left; }
.hot_news li em { position: absolute; top: 0; left: 0; height: 17px; width: 21px; color: #ccc; font-size: 12px; font-style: normal; text-align: center; background: rgba(0,0,0,.5); border-radius: 2px 0 0; z-index: 99; }
.hot_news li:nth-child(1) em, .hot_news li:nth-child(2) em, .hot_news li:nth-child(3) em { color: #fff; }
.hot_news li:nth-child(1) em { background: #f95456 }
.hot_news li:nth-child(2) em { background: #f6a625; }
.hot_news li:nth-child(3) em { background: #4385f4 }
.hot_news li h2 { font-size: 14px; color: #333; font-weight: normal; line-height: 20px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.hot_news li span { font-size: 12px; color: #b3b2b2; position: absolute; display: block; left: 135px; bottom: 0; }
.hot_news li:hover img { transform: scale(1.1); }
.hot_news li:hover h2 { color: #16499d; }
/*links*/
.links { overflow: hidden; line-height: 44px; background: #273249; }
.links li { display: inline-block; float: left; margin: 0 10px; font-size: 14px; line-height: 44px; }
.links a { color: #ccc; }
.links a:hover { color: #fff }
.links p { color: #7381a1; font-weight: bold; font-size: 18px; float: left; margin-right: 20px; position: relative; }
.links p:before, .links p:after { position: absolute; content: ""; width: 1px; height: 22px; background: #000; right: -15px; top: 12px; }
.links p:after { background: #2e3f65; right: -16px; }
/*line*/
.line { height: 1px; background: #3b4047; width: 100%; }
/*footer*/
footer { background: #1d273d; color: #a8aab0; padding: 20px 0; overflow: hidden }
footer a { color: #a8aab0; }
footer a:hover { color: #fff }
/*ft_nav*/
.ft_nav { margin: 30px auto; overflow: hidden; }
.ft_nav p { font-size: 16px; color: #fff; margin-bottom: 30px; }
.ft_about { width: 20%; float: left; overflow: hidden; }
.ft_about li { display: inline-block; float: left; }
.ft_about li { width: 33.33%; margin-bottom: 16px; font-size: 14px; }
.ft_contact { font-size: 14px; float: left; margin-left: 100px; position: relative; padding-left: 100px; }
.ft_contact li { margin-bottom: 15px; background-size: 20px !important; padding-left: 30px; }
.ft_contact li:nth-child(1) { background: url(../images/company_name.png) no-repeat }
.ft_contact li:nth-child(2) { background: url(../images/icon_dizhi.png) no-repeat }
.ft_contact li:nth-child(3) { background: url(../images/icon_tell.png) no-repeat }
.ft_contact li:nth-child(4) { background: url(../images/icon_time.png) no-repeat }
.ft_contact li:nth-child(1) { background: url(../images/icon_time.png) no-repeat }
.ft_contact:after, .ft_contact:before { content: ""; width: 1px; height: 100%; background: #363c49; position: absolute; top: 0 }
.ft_contact:after { left: 1px; background: #010d27 }
.ft_contact:before { left: 0 }
.ft_guanzhu { float: right; width: 25%; font-size: 14px; }
.ft_guanzhu li { text-align: center; float: left; width: 50%; }
.ft_guanzhu li img { width: 100px; height: 100px; margin: auto; }
.copyright { font-size: 16px; overflow: hidden; border-top: #2a3345 1px solid; padding: 15px 0 0; line-height: 24px; }
.copyright .center{
text-align: center;
line-height: 2;
}
.copyright .center img{
margin: 10px auto;
}
.cr_left { float: left; }
.cr_right { float: right; text-align: right; }
.cr_right img { display: inline-block; vertical-align: bottom; margin-right: 5px; }
.cr_right p:last-child a { margin-left: 10px; }
.cr_right i { margin-left: 10px; }
/*weizhi*/
.weizhi { background: url(../images/icon_dizhi.png) no-repeat left -4px top; background-size: 20px; padding-left: 20px; font-size: 14px; color: #888; }
.weizhi a { color: #888; margin: 0 5px; }
.weizhi a:hover { color: #16499d; }
/*pagelist*/
.pagelist { text-align: center; color: #666; width: 100%; clear: both; margin: 0 0 20px; font-size: 14px; }
.pagelist a { color: #5c626c; margin: 0 5px 10px; padding: 5px 10px; background: #f0f0f0; display: inline-block; }
.pagelist a:nth-child(1) { display: none }
.pagelist a:hover, .pagelist > b { color: #FFF; background: #16499d; }
.pagelist > b { padding: 5px 10px; }
/*article*/
article h1 { color: #333; font-size: 20px; margin: 20px 0; }
.wz_info { font-size: 14px; }
span.wz_frome a { color: #16499d; }
span.wz_time { margin-left: 10px; color: #888; }
.wz_smalltext { margin: 20px 0; color: #737373; font-size: 14px; line-height: 24px; background: #f8f8f8 url(../images/incon_smalltext.png) no-repeat 5px 10px; background-size: 26px; padding: 10px 10px 10px 40px; }
.content { color: #333 }
.content a { color: #000 }
.content a:hover { color: #16499d; }
.content p { margin: 20px 0; font-size: 16px; line-height: 32px; word-break: break-all; }
.content ul, .content ol { margin: 20px 0 20px 35px; }
.content ul li, .content ol li { margin-top: 3px; line-height: 30px; }
.content ul li { list-style-type: disc; }
.content ol li { list-style-type: decimal; }
.content h2, .content h3, .content h4, .content h5, .content h6 { position: relative; padding-left: 14px; font-size: 16px; margin: 20px 0; }
.content h2:after, .content h3:after, .content h4:after, .content h5:after, .content h6:after { position: absolute; top: 0; bottom: 4px; left: 0; display: block; width: 4px; height: 100%; background: #16499d; content: ""; border-radius: 2px; }
.content img { max-width: 100% !important; height: auto !important; margin: 10px auto; }
.content video {height: auto !important;display: block;margin: auto;max-width: 100% !important;}
.content table { display: block; margin: auto }
/*wz_zhuanzai*/
.wz_zhuanzai { text-align: center; color: #b3b2b2; font-size: 14px; line-height: 1.5; margin: 30px auto; }
.wz_zhuanzai a { color: #b3b2b2 }
.wz_zhuanzai a:hover { color: #16499d; }
/*tags*/
.tags { margin: 30px 0; font-size: 16px; color: #333; }
.tags a { display: inline-block; margin: 0 5px 0 0; padding: 1px 7px; color: #16499d; background: #d2e3fe; border-radius: 10px; line-height: 20px; font-size: 12px; }
/*wz_tuijian*/
.wz_tuijian { background: #f8f8f8; border-radius: 2px; overflow: hidden; margin-bottom: 30px; }
.wz_tuijian p { width: 88px; height: 25px; background: #16499d; font-size: 16px; color: #fff; line-height: 25px; text-align: center; margin-top: 20px; }
.wz_tuijian ul { overflow: hidden; margin: 30px 0 20px; }
.wz_tuijian ul li { float: left; width: 50%; margin-bottom: 20px; position: relative }
.wz_tuijian ul li a { display: block; margin: 0 30px; }
.wz_tuijian ul li i { width: 120px; height: 70px; display: inline-block; overflow: hidden; float: left; margin-right: 12px; border-radius: 2px; }
.wz_tuijian ul li img { width: 100%; min-height: 100%; transition: .5s; float: left; }
.wz_tuijian ul li h2 { font-size: 14px; color: #333; font-weight: normal; line-height: 20px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.wz_tuijian ul li span { font-size: 12px; color: #b3b2b2; position: absolute; display: block; left: 164px; bottom: 0; }
.wz_tuijian ul li:hover h2 { color: #16499d; }
.wz_tuijian ul li:hover img { transform: scale(1.1); }
/*about*/
.about { background: #fff; border-radius: 2px; box-shadow: 0 1px 4px rgba(51,51,51,.25); margin: 10px 10px 30px 10px; padding: 20px; }
.about i { width: 58px; height: 58px; margin: 0 15px 20px 0; display: block; border-radius: 50%; float: left; border: #eae8e8 1px solid; }
.about i img { width: 100%; height: 100%; border-radius: 50%; }
p.about_name { font-size: 16px; font-weight: 500; color: #333; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0; }
span.about_num { font-size: 12px; font-weight: 400; color: #b3b2b2; margin-top: 7px; }
span.about_num b { color: #16499d; margin: 0 3px; }
.about ul { clear: both }
.about ul li { border-top: 1px solid #ececec; padding: 16px 0; font-size: 14px; }
.about ul li a:hover { color: #16499d; }
a.btn_more { height: 44px; border-radius: 2px; border: 1px solid #16499d; font-size: 14px; color: #16499d; text-align: center; line-height: 44px; margin: 18px auto; width: 96%; display: block; }
a.btn_more:hover { background: #16499d; color: #fff; }
/*info-pre-next*/
.info-pre-next { line-height: 34px; margin-bottom: 30px; }
.info-pre-next p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.info-pre-next a { margin-left: 10px; color: #333; }
.info-pre-next a:hover { color: #16499d }
/*time_box*/
.time_box ul { position: relative; margin: 30px 20px 30px 0; }
.time_box ul:after { position: absolute; content: ""; width: 1px; height: 100%; background: #f0f0f0; left: 6px; top: 0; z-index: 1; }
.time_box ul li { overflow: hidden; position: relative; margin-bottom: 30px; padding-left: 40px; }
.time_box ul li span { color: #888; font-size: 12px; position: relative; }
.time_box ul li span:before { position: absolute; content: ""; width: 8px; height: 8px; border-radius: 50%; background-color: #16499d; border: #a2b6d8 2px solid; left: -39px; top: 3px; z-index: 2; }
.time_box ul li h2 { font-size: 16px; margin: 20px 0 }
.time_box ul li h2:hover { color: #16499d }
.time_box ul li i { float: left; width: 120px; height: 70px; display: block; overflow: hidden; margin-right: 20px; }
.time_box ul li i img { width: 100%; min-height: 100%; }
.time_box ul li p { font-size: 14px; color: #666; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; margin-bottom: 10px; }
.time_lm { color: #16499d; font-size: 12px; }
/*pics*/
.pics { margin: 15px auto 30px; overflow: hidden; }
.pics ul { overflow: hidden }
.pics ul li { width: 25%; float: left }
.pics ul li a { display: block; margin: 10px; background: #fff; padding: 10px; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 8px rgba(0,0,0,.06); }
.pics ul li i { display: block; height: 160px; overflow: hidden }
.pics ul li i img { width: 100%; min-height: 100%; transition: .5s; }
.pics ul li p { line-height: 40px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #333; font-size: 14px; }
.pics ul li:hover img { transform: scale(1.1); }
.pics ul li:hover p, .pics ul li p span:hover { color: #16499d; }
.pics ul li p span { float: right; font-size: 12px; color: #999; margin: 0 5px }
/*zt_list*/
.zt_weizhi { background: url(../images/icon_zhuanti.png) no-repeat; background-size: 26px; padding-left: 37px; margin-left: 15px; font-size: 18px; font-weight: bold; color: #16499d; }
.zt_list { width: 50%; float: left; margin-bottom: 20px }
.zt_list section { margin: 10px 20px; display: block; padding: 20px; background: #fff; box-shadow: #ececec 1px 1px 10px; }
.zt_list i { display: block; overflow: hidden; }
.zt_box { margin: 30px 0; overflow: hidden; }
.zt_list h3 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; margin: 20px 0; line-height: 34px; }
.zt_list h3 span { float: right; color: #16499d; background-color: #ebf5ff; display: block; font-size: 14px; line-height: 34px; padding: 0 20px; }
.zt_list p { margin: 20px 0; line-height: 20px; height: 40px; font-size: 14px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; color: #888; }
.zt_list ul { border-top: 1px solid #ebebeb; padding-top: 10px; }
.zt_list ul li { line-height: 30px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zt_list ul li a:hover { color: #16499d; }
.zt_list img { transition: .5s; }
.zt_list img:hover { transform: scale(1.1); }
/*tags_box*/
.tags_box { margin: 30px auto; overflow: hidden }
.tags_box a { display: block; float: left; width: 16.66666%; text-align: center; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 40px; color: #333; position: relative; transition: .5s }
.tags_box a:nth-child(12n+6) { background: #eee; border-radius: 0 3px 3px 0 }
.tags_box a:nth-child(12n+5) { background: #eee; }
.tags_box a:nth-child(12n+4) { background: #eee; }
.tags_box a:nth-child(12n+3) { background: #eee; }
.tags_box a:nth-child(12n+2) { background: #eee; }
.tags_box a:nth-child(12n+1) { background: #eee; border-radius: 3px 0 0 3px }
.tags_box a:nth-child(n+1):after, .tags_box a:nth-child(n+1):before { position: absolute; content: ""; width: 1px; height: 100%; background: #fffdfd; right: 0 }
.tags_box a:nth-child(n+1):before { background: #dedede; right: 1px }
.tags_box a:nth-child(6n):after, .tags_box a:nth-child(6n):before { display: none }
.tags_box a:hover { background: #16499d !important; color: #fff }
/*404*/
.null404 { width: 100%; margin: 80px auto 140px; }
.null404 p:first-child { text-align: center; font-size: 150px; font-weight: bold; line-height: 100px; letter-spacing: 5px; color: #fff; }
.null404 p:first-child span { cursor: pointer; text-shadow: 0px 0px 2px #686868, 0px 1px 1px #ddd, 0px 2px 1px #d6d6d6, 0px 3px 1px #ccc, 0px 4px 1px #c5c5c5, 0px 5px 1px #c1c1c1, 0px 6px 1px #bbb, 0px 7px 1px #777, 0px 8px 3px rgba(100, 100, 100, 0.4), 0px 9px 5px rgba(100, 100, 100, 0.1), 0px 10px 7px rgba(100, 100, 100, 0.15), 0px 11px 9px rgba(100, 100, 100, 0.2), 0px 12px 11px rgba(100, 100, 100, 0.25), 0px 13px 15px rgba(100, 100, 100, 0.3); -webkit-transition: all .1s linear; transition: all .1s linear; }
.null404 p:first-child span:hover { text-shadow: 0px 0px 2px #686868, 0px 1px 1px #fff, 0px 2px 1px #fff, 0px 3px 1px #fff, 0px 4px 1px #fff, 0px 5px 1px #fff, 0px 6px 1px #fff, 0px 7px 1px #777, 0px 8px 3px #fff, 0px 9px 5px #fff, 0px 10px 7px #fff, 0px 11px 9px #fff, 0px 12px 11px #fff, 0px 13px 15px #fff; -webkit-transition: all .1s linear; transition: all .1s linear; }
.null404 h3 { text-align: center; color: #666; font-family: cursive; font-size: 20px; text-shadow: 0 1px 0 #fff; letter-spacing: 1px; line-height: 2em; margin-top: 80px; }
/*page*/
.page { overflow: hidden; padding: 20px; }
.page_title { width: 100px; float: left; }
.page_title li { font-size: 16px; }
.page_title li a { display: block; text-align: center; position: relative; color: #333; margin: 2px 0 30px 0; }
#pagecurrent:after { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 20px; border-radius: 2px; background-color: #16499d; }
.page-box { margin-left: 111px; padding-left: 30px; border-left: #eee 1px solid; min-height: 500px; }
.page-box-title { margin-bottom: 30px; color: #383838; font-size: 22px; font-weight: normal; }
.page-box .content,.page-box .content p { font-size: 15px !important;}
.page-box .content img { margin: inherit;}
/*show-info*/
.show-info { font-size: 14px; overflow: hidden; color: #333; padding: 30px; margin: 10px 10px 30px; border-radius: 3px; box-shadow: 0 -2px 7px rgba(0,0,0,.04), 0 4px 8px rgba(0,0,0,.06); }
.show-info h2 { margin: 0 0 20px; font-size: 18px; }
.show-info ul { line-height: 36px; }
.show-info ul li span { margin-right: 10px; color: #777; }
.show-down { width: 100%; display: block; text-align: center; margin: 20px 0 0 0; background: #1888f6; color: #fff; line-height: 40px; border-radius: 6px; }
.show-down:hover{ color:#fff; background:#1169c0}
.viewmore { font-size: 18px; color: #333; }
/*xt_search*/
.xt_search { margin: 20px 0; color: #333; }
.xt_search strong { color: #f00; }
.blogs_search ul li { margin-bottom: 30px; }
.blogs_search ul li h2 { font-weight: normal; margin: 0; font-size: 16px; margin-top: 10px; }
.blogs_search ul li h2 a { color: #07519A; }
.blogs_search ul li h2 a:hover,.color_purple:hover{ text-decoration:underline}
.blogs_search ul li p { font-size: 14px; margin: 5px 0; }
.color_green { color: green; font-size: 14px; }
.color_purple { color: #77c; }
.blogs .category_container{
display: flex;
margin-bottom:10px;
}
.blogs .category_container .category_left{
width: 236px;
min-height: 500px;
}
.left_title{
text-align: center;
padding: 5px 0;
color: #fff;
font-size:18px;
}
.left_content{
padding:16px;
}
.blogs .category_container .category_right{
flex:1;
min-height: 400px;
display: flex;
flex-direction: column;
}
.category2_name{
padding:6px 0;
}
.category2_name:hover{
color:orange;
}
.right_title{
display: flex;
height: 35px;
}
.right_title_cat{
width: 33.333%;
display: flex;
justify-content: center;
align-items: center;
padding: 5px 0;
font-size: 18px;
background: #f5f5f5;
border-left: 1px solid #C1C1C1;
border-bottom: 1px solid #c1c1c1;
}
.right_title_cat:hover{
background: #fff;
}
.right_content{
display: flex;
flex-wrap: wrap;
flex: 1;
}
.right_content_good{
width: 33.333%;
display: flex;
flex-direction: column;
align-items: center;
padding:10px;
border-right: 1px solid #C1C1C1;
border-bottom: 1px solid #C1C1C1;
font-size: 14px;
max-height: 50%;
min-height: 50%;
}
.right_content_good img{
max-width: 136px;
min-height: 98px;
}
#category{
position: absolute;
height: 460px;
top:0;
left:0;
z-index:1;
width: 100%;
}
#category .category_list{
margin: 0;
padding: 20px 0;
list-style-type: none;
width: 234px;
height: 420px;
color: #fff;
background: rgba(105,101,101,.6);
box-sizing: content-box;
}
.wrapper_a{
position: relative;
}
.swiper-button-prev{
position: relative;
left:234px!important;
}
.category_list_li{
position: relative;
display: block;
padding-left: 30px;
padding-right:20px;
height: 42px;
line-height: 42px;
color: #fff;
}
.category_list_li:hover{
background-color: rgba(239,102,0);
}
.rightPanel{
position: absolute;
left:234px;
top:0;
bottom:0;
right:0;
background-color: white;
display: flex;
flex-wrap: wrap;
border: 1px solid #e0e0e0;
box-shadow: 0 8px 16px rgba(0,0,0,.18);
align-content: flex-start;
}
.rightPanel_item{
flex: 0 0 33%;
height: 25%;
display: flex;
align-items: center;
padding-left:10px;
}
.rightPanel_item div{
cursor: pointer;
}
.rightPanel_item div:hover{
color:rgba(239,102,0);
}
.category_img{
width: 60px;
max-height:60px;
clip:rect (60px, 60px, 60px, 60px);
margin-right:20px;
}
.adscategory_class{
}
.adscategory_item{
margin: 22px 0;
}
.adscategory_item .title_wrapper{
position: relative;
height: 58px;
display: flex;
align-items: center;
justify-content: space-between;
}
.adscategory_item .title_wrapper .title{
margin: 0;
font-size: 22px;
font-weight: 200;
color: #333;
flex: 0 0 300px;
}
.adscategory_item .title_wrapper .more{
display: flex;
font-size: 16px;
}
.adscategory_item .title_wrapper div{
margin: 0 0 0 30px;
display: inline-block;
padding: 0;
border-bottom: 2px solid rgba(0,0,0,0);
transition: border .3s;
cursor: pointer;
white-space: nowrap;
}
.adscategory_item .title_wrapper div.active{
border-bottom: 2px solid rgba(239,102,0);
}
.adscategory_class .category_container{
display: flex;
}
.adscategory_class .category_container .container1{
width: 234px;
min-height: 1px;
height: 614px;
}
.adscategory_class .category_container .container1 .type1_fill{
height:100%;
}
.adscategory_class .category_container .container1 .type2_fill{
height:100%;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all .2s linear;
}
.adscategory_class .category_container .container1 .type2_fill div{
height:300px;
}
.adscategory_class .category_container .container1 .type2_fill div:hover,.adscategory_class .category_container .container1 .type1_fill:hover, .adscategory_class .category_container .container2 .container2_good:hover{
box-shadow: 0 15px 30px rgba(0,0,0,.1);
-webkit-transform: translate3d(0,-2px,0);
transform: translate3d(0,-2px,0);
transition: all .2s linear;
}
.adscategory_class .category_container .container2{
flex:1;
margin-left:18px;
display: flex;
flex-wrap:wrap;
}
.adscategory_class .category_container .container2 .container2_good{
height:300px;
width:25%;
background-color: #fff;
}
.adscategory_class .category_container .container2 .container2_good img{
width: 160px;
height: 160px;
margin:20px auto;
}
.adscategory_class .category_container .container2 .container2_good div{
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
white-space: nowrap;
margin: 0px 10px 2px;
font-size: 14px;
font-weight: 400;
color: #333;
cursor:pointer;
}
.goodsDetail{
width: 100%;
}
#siderBarCategory{
width:300px;
margin: 0;
padding: 10px 0;
list-style-type: none;
border: 1px solid #ff6700;
color: #424242;
background: #fff;
}
#siderBarCategory .category_title{
height: 20px;
font-size:18px;
text-align: center;
margin-bottom:10px;
}
#siderBarCategory .category_item{
}
#siderBarCategory .category_item .wrapper_category2{
position: relative;
display: flex;
padding-left: 30px;
padding-right:30px;
justify-content: space-between;
height: 42px;
line-height: 42px;
color: #424242;
font-size: 16px;
}
.wrapper_category3{
display: flex;
flex-direction: column;
background-color: rgb(255 229 191);
display: none;
}
.wrapper_category3_item{
position: relative;
text-align: center;
height: 32px;
line-height: 32px;
color: #424242;
font-size: 16px;
cursor: pointer;
}
.wrapper_category3_item:hover{
color:grey;
}
.wrapper_category3_item.current{
color:#ff6700;
}
.iconfont{
cursor: pointer;
}
#goodDetail .weizhi{
margin-bottom:20px;
}
.detailContent{
display: flex;
}
.detailContent .right{
margin-left:20px;
border: 1px solid #ff6700;
display: flex;
width: 100%;
background: #fff;
height:400px;
}
.detailContent .good_img{
width:400px;
height:398px;
}
.swiper-button-next-detail, .swiper-button-prev-detail { position: absolute; top: 50%; width: 12px; height: 22px; margin-top: -22px; z-index: 10; cursor: pointer; background-size: 12px 22px; background-position: center; background-repeat: no-repeat }
.swiper-button-next-detail{
position: absolute;
}
.swiper-button-prev-detail{
position: absolute;
}
.swiper-button-next-detail { background-image: url(../images/left.png); left: 0; right: auto; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 50px; background-color: rgba(0,0,0,.3); text-align: center; }
.swiper-button-prev-detail { background-image: url(../images/right.png); right: 0; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 50px; background-color: rgba(0,0,0,.3); text-align: center; }
.detailContent .right .product_info{
flex: 1;
display: flex;
flex-direction: column;
}
.product_name{
border: 1px solid #ff6700;
border-top: none;
border-right: none;
padding:15px;
font-size: 22px;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
white-space: nowrap;
}
.product_content{
flex:1;
border-left: 1px solid #ff6700;
padding:15px;
}
.product_content .market_price{
padding:10px;
}
.product_content .product_brand{
padding:10px;
}
.product_content .product_model{
padding:10px;
}
.product_content .product_unit{
padding:10px;
}
#goodDetail{
padding-bottom:20px;
} | app/public/themes/hidora/css/base.css | @charset "utf-8";
/**
* base.css
* https://www.yangqq.net/
* Copyright 2019, design by yangqq
*/
* { margin: 0; padding: 0 }
body { font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif; }
img { border: 0; display: block }
ul, li { list-style: none; }
a { text-decoration: none; color: #000; }
a:hover { color: #000; text-decoration: none; }
.clear { clear: both; width: 100%; overflow: hidden; }
.box { width: 1200px; margin: auto; }
/*top*/
.top { width: 100%; height: 40px; line-height: 40px; background: #1d273d; color: #fff; font-size: 12px; }
.welcome { float: left }
.welcome a { color: #eb690a; margin: 0 5px }
/*search*/
.search { position: relative; overflow: hidden; }
.search input.input_submit { border: 0; color: #fff; outline: none; position: absolute; top: 0; right: 0; display: block; font-size: 15px; height: 36px; background: #1d273d; line-height: 36px; cursor: pointer; }
.search input.input_text { border: 0; line-height: 36px; height: 36px; font-size: 14px; outline: none; text-indent: 1em; }
/*is-search*/
.is-search { width: 80px; height: 28px; line-height: 28px; color: #888; margin: 5px 0 0; float: right; overflow: hidden; }
.is-search section { display: block; border-radius: 20px; margin: 0 20px; font-size: 12px; }
.is-search i { display: block; width: 34px; height: 28px; background: url(../images/searchm.png) no-repeat left 10px center; background-size: 20px; float: left; margin-right: 10px; }
/*search-page*/
.search-page { width: 100%; left: 0; background: #ebf0fa; position: absolute; top: 40px; z-index: 8; display: none; }
.search_box { width: 1200px; margin: auto; }
.search-page .search {clear: both;width: 60%;margin: auto;border-radius: 0 5px 5px 0;}
.search-page .search input.input_text {width: 80%;float: left;z-index: 9;}
.search-page .search input.input_submit { width: 20%; }
.search select {border:none;height: 36px;right: 20%;outline: none;z-index: 9;position: absolute;background: #fff;}
.search-page .go-left { background: url(../images/prev_close.png) no-repeat left center; width: 32px; height: 32px; float: right; background-size: 32px; margin: 20px; }
.hot-search { margin: 40px 20px; overflow: hidden; text-align: center; }
.hot-search p { font-size: 18px; margin-bottom: 10px; font-weight: bold; color: #1d273d; }
.search-paihang li { display: inline-block; line-height: 26px; height: 26px; font-size: 15px; margin: 3px 10px; }
.search-paihang li a { display: block; color: #666; }
.search-paihang li a:hover { color: #1d273d }
/*guanzhu*/
.guanzhu { float: right; position: relative; }
.guanzhu i { background: url(../images/icon_wx.png) no-repeat center; background-size: 32px; height: 40px; display: block; width: 40px; float: right; cursor: pointer }
.weixin { padding: 2px; overflow: hidden; text-align: center; line-height: 23px; box-shadow: #ddd 0px 5px 5px; clear: both; position: absolute; width: 256px; height: 145px; right: 0; top: 40px; display: none; background: #fff; }
.weixin li { float: left; margin: 0 3px; color: #333; }
.weixin li img { width: 120px; border: #ccc 1px solid; }
.guanzhu:hover .weixin { display: block; z-index: 9; }
/*logo*/
.logo { float: left; margin-right: 90px; }
.logo img { height: 80px; }
/*nav*/
nav { line-height: 80px;height: 80px; width: 100%; background: #fff; box-shadow: 0 1px 10px 0 rgba(0,0,0,.1); }
#starlist li { position: relative; display: inline-block; font-size: 16px; text-align: center; }
#starlist li i { display: block; width: 24px; height: 16px; background: url(../images/hot.png) no-repeat; background-size: 100% 100%; display: inline-block; position: absolute; margin-left: 4px; top: 23px; }
#starlist li a { display: block; color: #333; padding: 0 20px }
#starlist li:hover a, #starlist ul.sub li a:hover { color: #16499d; }
#starlist ul.sub li { width: 100%; background: #fff; float: left; font-size: 15px; }
#starlist ul.sub li a { padding: 0; display: none; width: 100%; color: #333; }
#starlist ul.sub li:first-child a { margin-top: 10px }
#starlist ul.sub li:last-child a { margin-bottom: 10px }
#starlist ul.sub { position: absolute; left: 0; top: 60px; z-index: 9; width: 110%; line-height: 36px; opacity: 0; transition: all .5s; box-shadow: 0px 5px 9px 1px rgba(144, 161, 180, 0.2); }
#starlist li:hover ul.sub { opacity: 1; top: 80px; }
#starlist li:hover ul.sub li a { display: block }
#starlist li:hover ul.sub:after, #starlist ul.sub li:after, #starlist ul.sub li a:after { display: none; }
.menu:after { content: ""; position: absolute; right: 9px; top: 49%; width: 0; height: 0; border-width: 4px 4px 0; border-style: solid; border-color: #3f3c3c transparent transparent; transition: all .5s ease; }
.menu:hover:after { transform: rotate(180deg) }
.selected a:after { content: ""; position: absolute; left: 50%; bottom: 10px; margin-left: -10px; width: 20px; height: 4px; border-radius: 2px; background-color: #16499d; }
#mnavh { display: none; width: 40px; height: 40px; text-align: center; }
.navicon { display: block; position: relative; width: 27px; height: 2px; background-color: #fff; margin-top: 20px; float: left; }
.navicon:before, .navicon:after { content: ''; display: block; width: 27px; height: 2px; position: absolute; background: #fff; -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform; -webkit-transition-duration: 300ms; transition-duration: 300ms; }
.navicon:before { margin-top: -8px; }
.navicon:after { margin-top: 8px; }
.open .navicon { background: none }
.open .navicon:before { margin-top: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.open .navicon:after { margin-top: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
.open .navicon:before, .open .navicon:after { content: ''; display: block; width: 28px; height: 2px; position: absolute; background: #727171; }
/*main*/
main { width: 1200px; margin: 30px auto 0; overflow: hidden; display:block}
.lbox { width: 100%; float: left }
.rbox { width: 320px; float: right }
.banner { width: 100%; height: 460px; float: left; position: relative }
.banner section:after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: -webkit-gradient(linear, 0 0, 0 bottom, from(transparent), to(#000)); z-index: -1; }
.banner section { bottom: 0; left: 0; position: absolute; display: block; width: 100%; z-index: 0; }
.banner h4 { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.5); font-size: 20px; line-height: 26px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; padding: 0 20px; z-index: 2; margin: 20px 0 40px; }
/*headline*/
.headline { width: 270px; float: right; overflow: hidden; }
.headline ul { height: 300px; }
.headline ul li { width: 100%; overflow: hidden; height: 140px; position: relative; }
.headline ul li:first-child { margin-bottom: 20px; }
.headline ul li a { display: block; overflow: hidden; height: 100%; }
.headline ul li img { width: 100%; min-height: 100%; transition: all .6s; }
.headline ul li:hover img { transform: scale(1.1); }
.headline span:after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: -webkit-gradient(linear, 0 0, 0 bottom, from(transparent), to(#000)); z-index: -1; }
.headline span { bottom: 0; left: 0; position: absolute; display: block; width: 100%; z-index: 0; }
.headline h4 { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.5); line-height: 18px; font-size: 14px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; padding: 0 20px; z-index: 2; margin: 20px 0; }
/*news_kx*/
.news_kx { border: 1px solid #e1e1e1; background: #fff; position: relative; margin-right: 12px; padding: 20px; margin-bottom: 40px; }
.news_kx h2 { width: 140px; height: 40px; padding-right: 20px; line-height: 40px; background: #16499d; color: #fff; font-size: 15px; font-weight: normal; text-align: center; border-radius: 0 20px 20px 0; margin-left: -20px; }
.news_kx:before { position: absolute; content: ""; border: 1px solid #e1e1e1; right: -6px; top: 6px; width: 100%; height: 100%; background: #fff; z-index: -1; }
.news_kx:after { position: absolute; content: ""; border: 1px solid #e1e1e1; right: -12px; top: 12px; width: 100%; height: 100%; z-index: -2; }
.news_kx ul { margin: 30px 0 0 }
.news_kx li { padding: 0 0 24px 30px; position: relative; font-size: 14px; line-height: 20px; }
.news_kx li span { display: block; font-size: 12px; color: #999; margin-top: 10px; }
.news_kx li:before { content: ""; background: #e1e1e1; width: 1px; height: 100%; left: 7px; top: 7px; position: absolute; }
.news_kx li:last-child:before { display: none }
.news_kx li i { position: absolute; left: 2px; top: 4px; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background-color: #16499d; border: #a2b6d8 2px solid; }
.news_kx li:hover a { color: #16499d }
/*h_title*/
.h_title { position: relative; font-size: 18px; margin: 15px 0 0 0; }
.h_title:after { content: ""; position: absolute; left: 10px; bottom: 3px; margin-left: -10px; width: 70px; height: 4px; border-radius: 2px; background-color: #a2b6d8; z-index: -1; }
/*blogs*/
.blogs { margin-bottom: 30px; }
.blogs_list { overflow: hidden; position: relative; transition: all .8s; padding: 20px 10px 20px 0; border-bottom: 1px dashed #e5e5e5; }
.blogs_list i { display: block; width: 210px; height: 120px; background: #ccc; overflow: hidden; float: left; margin-right: 20px; }
.blogs_list i img { width: 100%; min-height: 100%; transition: all .6s; }
.blogs_list h2 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 6px; line-height: 28px; font-size: 16px; color: #333; }
.blogs_list p { color: #737373; line-height: 20px; font-size: 14px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.blogs_writer { color: #333; margin: 0 5px 0 10px; font-size: 12px; position: absolute; left: 218px; bottom: 22px; }
.blogs_time { color: #b3b2b2; position: relative; }
.blogs_time:before { content: "·"; padding: 0 5px }
.blogs_tags { float: right; position: absolute; right: 0; bottom: 15px; }
.blogs_tags a { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; margin: 5px 5px 0 0; padding: 1px 7px; height: 18px; color: #16499d; background: #d2e3fe; border-radius: 10px; line-height: 18px; font-size: 12px; }
.blogs_tags a:hover { background: #16499d; color: #fff; }
.blogs_lm { position: absolute; z-index: 2; top: 30px; left: 10px; padding: 0 12px; height: 20px; font-size: 12px; background: rgba(3, 3, 3,.5); border-radius: 100px; line-height: 20px; }
.blogs_lm a { color: #999; }
.blogs_list:hover { box-shadow: 0px 12px 8px -12px #c0bebe; }
.blogs_list:hover h2 { color: #16499d; }
.blogs_list:hover img { transform: scale(1.1); }
/*zhuanti*/
.zhuanti { position: relative; border-bottom: 1px dashed #e5e5e5; padding: 20px 0 }
.zhuanti a { display: block; overflow: hidden; transition: .5s }
.zhuanti section { position: absolute; bottom: 30px }
.zhuanti span { display: block; position: absolute; top: 30px; left: 10px; padding: 0 12px; height: 20px; font-size: 12px; background: rgba(62, 62, 62, 0.5); border-radius: 100px; line-height: 20px; z-index: 2; color: #999; }
.zhuanti img { transition: .5s; width: 100% }
.zhuanti h2 { margin-bottom: 15px; padding: 0 20px; color: #fff; font-size: 16px; }
.zhuanti p { color: #fff; padding: 0 20px; font-size: 14px; line-height: 20px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.zhuanti:hover img { transform: scale(1.1); }
/*lm_hot*/
.lm_hot { border-radius: 2px; border: 1px solid #e1e1e1; margin-top: 16px; padding: 5px 20px 30px; overflow: hidden; margin-bottom: 30px; }
.lm_hot a { border-radius: 2px; width: 46%; float: left; text-align: center; line-height: 40px; border: 1px solid #e1e1e1; margin-top: 16px; font-size: 14px; color: #333; }
.lm_hot a:nth-child(even) { float: right }
.lm_hot a:hover { background: #16499d; color: #fff }
/*ad*/
.ad { border-radius: 2px; border: 1px solid #e1e1e1; margin: 30px 0; overflow: hidden; }
.ad img { min-width: 100%; transition: .5s; }
/*hot_news*/
.hot_news { border-radius: 2px; border: 1px solid #e1e1e1; margin-top: 20px; padding: 5px 20px 0; overflow: hidden; margin-bottom: 30px; }
.hot_news li { position: relative; margin: 24px 0; overflow: hidden; }
.hot_news li i { width: 120px; height: 70px; display: inline-block; overflow: hidden; float: left; margin-right: 12px; border-radius: 2px; }
.hot_news li i img { width: 100%; min-height: 100%; transition: .5s; float: left; }
.hot_news li em { position: absolute; top: 0; left: 0; height: 17px; width: 21px; color: #ccc; font-size: 12px; font-style: normal; text-align: center; background: rgba(0,0,0,.5); border-radius: 2px 0 0; z-index: 99; }
.hot_news li:nth-child(1) em, .hot_news li:nth-child(2) em, .hot_news li:nth-child(3) em { color: #fff; }
.hot_news li:nth-child(1) em { background: #f95456 }
.hot_news li:nth-child(2) em { background: #f6a625; }
.hot_news li:nth-child(3) em { background: #4385f4 }
.hot_news li h2 { font-size: 14px; color: #333; font-weight: normal; line-height: 20px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.hot_news li span { font-size: 12px; color: #b3b2b2; position: absolute; display: block; left: 135px; bottom: 0; }
.hot_news li:hover img { transform: scale(1.1); }
.hot_news li:hover h2 { color: #16499d; }
/*links*/
.links { overflow: hidden; line-height: 44px; background: #273249; }
.links li { display: inline-block; float: left; margin: 0 10px; font-size: 14px; line-height: 44px; }
.links a { color: #ccc; }
.links a:hover { color: #fff }
.links p { color: #7381a1; font-weight: bold; font-size: 18px; float: left; margin-right: 20px; position: relative; }
.links p:before, .links p:after { position: absolute; content: ""; width: 1px; height: 22px; background: #000; right: -15px; top: 12px; }
.links p:after { background: #2e3f65; right: -16px; }
/*line*/
.line { height: 1px; background: #3b4047; width: 100%; }
/*footer*/
footer { background: #1d273d; color: #a8aab0; padding: 20px 0; overflow: hidden }
footer a { color: #a8aab0; }
footer a:hover { color: #fff }
/*ft_nav*/
.ft_nav { margin: 30px auto; overflow: hidden; }
.ft_nav p { font-size: 16px; color: #fff; margin-bottom: 30px; }
.ft_about { width: 20%; float: left; overflow: hidden; }
.ft_about li { display: inline-block; float: left; }
.ft_about li { width: 33.33%; margin-bottom: 16px; font-size: 14px; }
.ft_contact { font-size: 14px; float: left; margin-left: 100px; position: relative; padding-left: 100px; }
.ft_contact li { margin-bottom: 15px; background-size: 20px !important; padding-left: 30px; }
.ft_contact li:nth-child(1) { background: url(../images/company_name.png) no-repeat }
.ft_contact li:nth-child(2) { background: url(../images/icon_dizhi.png) no-repeat }
.ft_contact li:nth-child(3) { background: url(../images/icon_tell.png) no-repeat }
.ft_contact li:nth-child(4) { background: url(../images/icon_time.png) no-repeat }
.ft_contact li:nth-child(1) { background: url(../images/icon_time.png) no-repeat }
.ft_contact:after, .ft_contact:before { content: ""; width: 1px; height: 100%; background: #363c49; position: absolute; top: 0 }
.ft_contact:after { left: 1px; background: #010d27 }
.ft_contact:before { left: 0 }
.ft_guanzhu { float: right; width: 25%; font-size: 14px; }
.ft_guanzhu li { text-align: center; float: left; width: 50%; }
.ft_guanzhu li img { width: 100px; height: 100px; margin: auto; }
.copyright { font-size: 16px; overflow: hidden; border-top: #2a3345 1px solid; padding: 15px 0 0; line-height: 24px; }
.copyright .center{
text-align: center;
line-height: 2;
}
.copyright .center img{
margin: 10px auto;
}
.cr_left { float: left; }
.cr_right { float: right; text-align: right; }
.cr_right img { display: inline-block; vertical-align: bottom; margin-right: 5px; }
.cr_right p:last-child a { margin-left: 10px; }
.cr_right i { margin-left: 10px; }
/*weizhi*/
.weizhi { background: url(../images/icon_dizhi.png) no-repeat left -4px top; background-size: 20px; padding-left: 20px; font-size: 14px; color: #888; }
.weizhi a { color: #888; margin: 0 5px; }
.weizhi a:hover { color: #16499d; }
/*pagelist*/
.pagelist { text-align: center; color: #666; width: 100%; clear: both; margin: 0 0 20px; font-size: 14px; }
.pagelist a { color: #5c626c; margin: 0 5px 10px; padding: 5px 10px; background: #f0f0f0; display: inline-block; }
.pagelist a:nth-child(1) { display: none }
.pagelist a:hover, .pagelist > b { color: #FFF; background: #16499d; }
.pagelist > b { padding: 5px 10px; }
/*article*/
article h1 { color: #333; font-size: 20px; margin: 20px 0; }
.wz_info { font-size: 14px; }
span.wz_frome a { color: #16499d; }
span.wz_time { margin-left: 10px; color: #888; }
.wz_smalltext { margin: 20px 0; color: #737373; font-size: 14px; line-height: 24px; background: #f8f8f8 url(../images/incon_smalltext.png) no-repeat 5px 10px; background-size: 26px; padding: 10px 10px 10px 40px; }
.content { color: #333 }
.content a { color: #000 }
.content a:hover { color: #16499d; }
.content p { margin: 20px 0; font-size: 16px; line-height: 32px; word-break: break-all; }
.content ul, .content ol { margin: 20px 0 20px 35px; }
.content ul li, .content ol li { margin-top: 3px; line-height: 30px; }
.content ul li { list-style-type: disc; }
.content ol li { list-style-type: decimal; }
.content h2, .content h3, .content h4, .content h5, .content h6 { position: relative; padding-left: 14px; font-size: 16px; margin: 20px 0; }
.content h2:after, .content h3:after, .content h4:after, .content h5:after, .content h6:after { position: absolute; top: 0; bottom: 4px; left: 0; display: block; width: 4px; height: 100%; background: #16499d; content: ""; border-radius: 2px; }
.content img { max-width: 100% !important; height: auto !important; margin: 10px auto; }
.content video {height: auto !important;display: block;margin: auto;max-width: 100% !important;}
.content table { display: block; margin: auto }
/*wz_zhuanzai*/
.wz_zhuanzai { text-align: center; color: #b3b2b2; font-size: 14px; line-height: 1.5; margin: 30px auto; }
.wz_zhuanzai a { color: #b3b2b2 }
.wz_zhuanzai a:hover { color: #16499d; }
/*tags*/
.tags { margin: 30px 0; font-size: 16px; color: #333; }
.tags a { display: inline-block; margin: 0 5px 0 0; padding: 1px 7px; color: #16499d; background: #d2e3fe; border-radius: 10px; line-height: 20px; font-size: 12px; }
/*wz_tuijian*/
.wz_tuijian { background: #f8f8f8; border-radius: 2px; overflow: hidden; margin-bottom: 30px; }
.wz_tuijian p { width: 88px; height: 25px; background: #16499d; font-size: 16px; color: #fff; line-height: 25px; text-align: center; margin-top: 20px; }
.wz_tuijian ul { overflow: hidden; margin: 30px 0 20px; }
.wz_tuijian ul li { float: left; width: 50%; margin-bottom: 20px; position: relative }
.wz_tuijian ul li a { display: block; margin: 0 30px; }
.wz_tuijian ul li i { width: 120px; height: 70px; display: inline-block; overflow: hidden; float: left; margin-right: 12px; border-radius: 2px; }
.wz_tuijian ul li img { width: 100%; min-height: 100%; transition: .5s; float: left; }
.wz_tuijian ul li h2 { font-size: 14px; color: #333; font-weight: normal; line-height: 20px; word-break: break-all; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; }
.wz_tuijian ul li span { font-size: 12px; color: #b3b2b2; position: absolute; display: block; left: 164px; bottom: 0; }
.wz_tuijian ul li:hover h2 { color: #16499d; }
.wz_tuijian ul li:hover img { transform: scale(1.1); }
/*about*/
.about { background: #fff; border-radius: 2px; box-shadow: 0 1px 4px rgba(51,51,51,.25); margin: 10px 10px 30px 10px; padding: 20px; }
.about i { width: 58px; height: 58px; margin: 0 15px 20px 0; display: block; border-radius: 50%; float: left; border: #eae8e8 1px solid; }
.about i img { width: 100%; height: 100%; border-radius: 50%; }
p.about_name { font-size: 16px; font-weight: 500; color: #333; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 5px 0; }
span.about_num { font-size: 12px; font-weight: 400; color: #b3b2b2; margin-top: 7px; }
span.about_num b { color: #16499d; margin: 0 3px; }
.about ul { clear: both }
.about ul li { border-top: 1px solid #ececec; padding: 16px 0; font-size: 14px; }
.about ul li a:hover { color: #16499d; }
a.btn_more { height: 44px; border-radius: 2px; border: 1px solid #16499d; font-size: 14px; color: #16499d; text-align: center; line-height: 44px; margin: 18px auto; width: 96%; display: block; }
a.btn_more:hover { background: #16499d; color: #fff; }
/*info-pre-next*/
.info-pre-next { line-height: 34px; margin-bottom: 30px; }
.info-pre-next p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.info-pre-next a { margin-left: 10px; color: #333; }
.info-pre-next a:hover { color: #16499d }
/*time_box*/
.time_box ul { position: relative; margin: 30px 20px 30px 0; }
.time_box ul:after { position: absolute; content: ""; width: 1px; height: 100%; background: #f0f0f0; left: 6px; top: 0; z-index: 1; }
.time_box ul li { overflow: hidden; position: relative; margin-bottom: 30px; padding-left: 40px; }
.time_box ul li span { color: #888; font-size: 12px; position: relative; }
.time_box ul li span:before { position: absolute; content: ""; width: 8px; height: 8px; border-radius: 50%; background-color: #16499d; border: #a2b6d8 2px solid; left: -39px; top: 3px; z-index: 2; }
.time_box ul li h2 { font-size: 16px; margin: 20px 0 }
.time_box ul li h2:hover { color: #16499d }
.time_box ul li i { float: left; width: 120px; height: 70px; display: block; overflow: hidden; margin-right: 20px; }
.time_box ul li i img { width: 100%; min-height: 100%; }
.time_box ul li p { font-size: 14px; color: #666; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; margin-bottom: 10px; }
.time_lm { color: #16499d; font-size: 12px; }
/*pics*/
.pics { margin: 15px auto 30px; overflow: hidden; }
.pics ul { overflow: hidden }
.pics ul li { width: 25%; float: left }
.pics ul li a { display: block; margin: 10px; background: #fff; padding: 10px; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 8px rgba(0,0,0,.06); }
.pics ul li i { display: block; height: 160px; overflow: hidden }
.pics ul li i img { width: 100%; min-height: 100%; transition: .5s; }
.pics ul li p { line-height: 40px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #333; font-size: 14px; }
.pics ul li:hover img { transform: scale(1.1); }
.pics ul li:hover p, .pics ul li p span:hover { color: #16499d; }
.pics ul li p span { float: right; font-size: 12px; color: #999; margin: 0 5px }
/*zt_list*/
.zt_weizhi { background: url(../images/icon_zhuanti.png) no-repeat; background-size: 26px; padding-left: 37px; margin-left: 15px; font-size: 18px; font-weight: bold; color: #16499d; }
.zt_list { width: 50%; float: left; margin-bottom: 20px }
.zt_list section { margin: 10px 20px; display: block; padding: 20px; background: #fff; box-shadow: #ececec 1px 1px 10px; }
.zt_list i { display: block; overflow: hidden; }
.zt_box { margin: 30px 0; overflow: hidden; }
.zt_list h3 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; margin: 20px 0; line-height: 34px; }
.zt_list h3 span { float: right; color: #16499d; background-color: #ebf5ff; display: block; font-size: 14px; line-height: 34px; padding: 0 20px; }
.zt_list p { margin: 20px 0; line-height: 20px; height: 40px; font-size: 14px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2; color: #888; }
.zt_list ul { border-top: 1px solid #ebebeb; padding-top: 10px; }
.zt_list ul li { line-height: 30px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zt_list ul li a:hover { color: #16499d; }
.zt_list img { transition: .5s; }
.zt_list img:hover { transform: scale(1.1); }
/*tags_box*/
.tags_box { margin: 30px auto; overflow: hidden }
.tags_box a { display: block; float: left; width: 16.66666%; text-align: center; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 40px; color: #333; position: relative; transition: .5s }
.tags_box a:nth-child(12n+6) { background: #eee; border-radius: 0 3px 3px 0 }
.tags_box a:nth-child(12n+5) { background: #eee; }
.tags_box a:nth-child(12n+4) { background: #eee; }
.tags_box a:nth-child(12n+3) { background: #eee; }
.tags_box a:nth-child(12n+2) { background: #eee; }
.tags_box a:nth-child(12n+1) { background: #eee; border-radius: 3px 0 0 3px }
.tags_box a:nth-child(n+1):after, .tags_box a:nth-child(n+1):before { position: absolute; content: ""; width: 1px; height: 100%; background: #fffdfd; right: 0 }
.tags_box a:nth-child(n+1):before { background: #dedede; right: 1px }
.tags_box a:nth-child(6n):after, .tags_box a:nth-child(6n):before { display: none }
.tags_box a:hover { background: #16499d !important; color: #fff }
/*404*/
.null404 { width: 100%; margin: 80px auto 140px; }
.null404 p:first-child { text-align: center; font-size: 150px; font-weight: bold; line-height: 100px; letter-spacing: 5px; color: #fff; }
.null404 p:first-child span { cursor: pointer; text-shadow: 0px 0px 2px #686868, 0px 1px 1px #ddd, 0px 2px 1px #d6d6d6, 0px 3px 1px #ccc, 0px 4px 1px #c5c5c5, 0px 5px 1px #c1c1c1, 0px 6px 1px #bbb, 0px 7px 1px #777, 0px 8px 3px rgba(100, 100, 100, 0.4), 0px 9px 5px rgba(100, 100, 100, 0.1), 0px 10px 7px rgba(100, 100, 100, 0.15), 0px 11px 9px rgba(100, 100, 100, 0.2), 0px 12px 11px rgba(100, 100, 100, 0.25), 0px 13px 15px rgba(100, 100, 100, 0.3); -webkit-transition: all .1s linear; transition: all .1s linear; }
.null404 p:first-child span:hover { text-shadow: 0px 0px 2px #686868, 0px 1px 1px #fff, 0px 2px 1px #fff, 0px 3px 1px #fff, 0px 4px 1px #fff, 0px 5px 1px #fff, 0px 6px 1px #fff, 0px 7px 1px #777, 0px 8px 3px #fff, 0px 9px 5px #fff, 0px 10px 7px #fff, 0px 11px 9px #fff, 0px 12px 11px #fff, 0px 13px 15px #fff; -webkit-transition: all .1s linear; transition: all .1s linear; }
.null404 h3 { text-align: center; color: #666; font-family: cursive; font-size: 20px; text-shadow: 0 1px 0 #fff; letter-spacing: 1px; line-height: 2em; margin-top: 80px; }
/*page*/
.page { overflow: hidden; padding: 20px; }
.page_title { width: 100px; float: left; }
.page_title li { font-size: 16px; }
.page_title li a { display: block; text-align: center; position: relative; color: #333; margin: 2px 0 30px 0; }
#pagecurrent:after { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 20px; border-radius: 2px; background-color: #16499d; }
.page-box { margin-left: 111px; padding-left: 30px; border-left: #eee 1px solid; min-height: 500px; }
.page-box-title { margin-bottom: 30px; color: #383838; font-size: 22px; font-weight: normal; }
.page-box .content,.page-box .content p { font-size: 15px !important;}
.page-box .content img { margin: inherit;}
/*show-info*/
.show-info { font-size: 14px; overflow: hidden; color: #333; padding: 30px; margin: 10px 10px 30px; border-radius: 3px; box-shadow: 0 -2px 7px rgba(0,0,0,.04), 0 4px 8px rgba(0,0,0,.06); }
.show-info h2 { margin: 0 0 20px; font-size: 18px; }
.show-info ul { line-height: 36px; }
.show-info ul li span { margin-right: 10px; color: #777; }
.show-down { width: 100%; display: block; text-align: center; margin: 20px 0 0 0; background: #1888f6; color: #fff; line-height: 40px; border-radius: 6px; }
.show-down:hover{ color:#fff; background:#1169c0}
.viewmore { font-size: 18px; color: #333; }
/*xt_search*/
.xt_search { margin: 20px 0; color: #333; }
.xt_search strong { color: #f00; }
.blogs_search ul li { margin-bottom: 30px; }
.blogs_search ul li h2 { font-weight: normal; margin: 0; font-size: 16px; margin-top: 10px; }
.blogs_search ul li h2 a { color: #07519A; }
.blogs_search ul li h2 a:hover,.color_purple:hover{ text-decoration:underline}
.blogs_search ul li p { font-size: 14px; margin: 5px 0; }
.color_green { color: green; font-size: 14px; }
.color_purple { color: #77c; }
.blogs .category_container{
display: flex;
margin-bottom:10px;
}
.blogs .category_container .category_left{
width: 236px;
min-height: 500px;
}
.left_title{
text-align: center;
padding: 5px 0;
color: #fff;
font-size:18px;
}
.left_content{
padding:16px;
}
.blogs .category_container .category_right{
flex:1;
min-height: 400px;
display: flex;
flex-direction: column;
}
.category2_name{
padding:6px 0;
}
.category2_name:hover{
color:orange;
}
.right_title{
display: flex;
height: 35px;
}
.right_title_cat{
width: 33.333%;
display: flex;
justify-content: center;
align-items: center;
padding: 5px 0;
font-size: 18px;
background: #f5f5f5;
border-left: 1px solid #C1C1C1;
border-bottom: 1px solid #c1c1c1;
}
.right_title_cat:hover{
background: #fff;
}
.right_content{
display: flex;
flex-wrap: wrap;
flex: 1;
}
.right_content_good{
width: 33.333%;
display: flex;
flex-direction: column;
align-items: center;
padding:10px;
border-right: 1px solid #C1C1C1;
border-bottom: 1px solid #C1C1C1;
font-size: 14px;
max-height: 50%;
min-height: 50%;
}
.right_content_good img{
max-width: 136px;
min-height: 98px;
}
#category{
position: absolute;
height: 460px;
top:0;
left:0;
z-index:1;
width: 100%;
}
#category .category_list{
margin: 0;
padding: 20px 0;
list-style-type: none;
width: 234px;
height: 420px;
color: #fff;
background: rgba(105,101,101,.6);
box-sizing: content-box;
}
.wrapper_a{
position: relative;
}
.swiper-button-prev{
position: relative;
left:234px!important;
}
.category_list_li{
position: relative;
display: block;
padding-left: 30px;
padding-right:20px;
height: 42px;
line-height: 42px;
color: #fff;
}
.category_list_li:hover{
background-color: rgba(239,102,0);
}
.rightPanel{
position: absolute;
left:234px;
top:0;
bottom:0;
right:0;
background-color: white;
display: flex;
flex-wrap: wrap;
border: 1px solid #e0e0e0;
box-shadow: 0 8px 16px rgba(0,0,0,.18);
align-content: flex-start;
}
.rightPanel_item{
flex: 0 0 33%;
height: 25%;
display: flex;
align-items: center;
padding-left:10px;
}
.rightPanel_item div{
cursor: pointer;
}
.rightPanel_item div:hover{
color:rgba(239,102,0);
}
.category_img{
width: 60px;
max-height:60px;
clip:rect (60px, 60px, 60px, 60px);
margin-right:20px;
}
.adscategory_class{
}
.adscategory_item{
margin: 22px 0;
}
.adscategory_item .title_wrapper{
position: relative;
height: 58px;
display: flex;
align-items: center;
justify-content: space-between;
}
.adscategory_item .title_wrapper .title{
margin: 0;
font-size: 22px;
font-weight: 200;
color: #333;
flex: 0 0 300px;
}
.adscategory_item .title_wrapper .more{
display: flex;
font-size: 16px;
}
.adscategory_item .title_wrapper div{
margin: 0 0 0 30px;
display: inline-block;
padding: 0;
border-bottom: 2px solid rgba(0,0,0,0);
transition: border .3s;
cursor: pointer;
white-space: nowrap;
}
.adscategory_item .title_wrapper div.active{
border-bottom: 2px solid rgba(239,102,0);
}
.adscategory_class .category_container{
display: flex;
}
.adscategory_class .category_container .container1{
width: 234px;
min-height: 1px;
height: 614px;
}
.adscategory_class .category_container .container1 .type1_fill{
height:100%;
}
.adscategory_class .category_container .container1 .type2_fill{
height:100%;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all .2s linear;
}
.adscategory_class .category_container .container1 .type2_fill div{
height:300px;
}
.adscategory_class .category_container .container1 .type2_fill div:hover,.adscategory_class .category_container .container1 .type1_fill:hover, .adscategory_class .category_container .container2 .container2_good:hover{
box-shadow: 0 15px 30px rgba(0,0,0,.1);
-webkit-transform: translate3d(0,-2px,0);
transform: translate3d(0,-2px,0);
transition: all .2s linear;
}
.adscategory_class .category_container .container2{
flex:1;
margin-left:18px;
display: flex;
flex-wrap:wrap;
}
.adscategory_class .category_container .container2 .container2_good{
height:300px;
width:25%;
background-color: #fff;
}
.adscategory_class .category_container .container2 .container2_good img{
width: 160px;
height: 160px;
margin:20px auto;
}
.adscategory_class .category_container .container2 .container2_good div{
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
white-space: nowrap;
margin: 0px 10px 2px;
font-size: 14px;
font-weight: 400;
color: #333;
cursor:pointer;
}
.goodsDetail{
width: 100%;
}
#siderBarCategory{
width:300px;
margin: 0;
padding: 10px 0;
list-style-type: none;
border: 1px solid #ff6700;
color: #424242;
background: #fff;
}
#siderBarCategory .category_title{
height: 20px;
font-size:18px;
text-align: center;
margin-bottom:10px;
}
#siderBarCategory .category_item{
}
#siderBarCategory .category_item .wrapper_category2{
position: relative;
display: flex;
padding-left: 30px;
padding-right:30px;
justify-content: space-between;
height: 42px;
line-height: 42px;
color: #424242;
font-size: 16px;
}
.wrapper_category3{
display: flex;
flex-direction: column;
background-color: rgb(255 229 191);
display: none;
}
.wrapper_category3_item{
position: relative;
text-align: center;
height: 32px;
line-height: 32px;
color: #424242;
font-size: 16px;
cursor: pointer;
}
.wrapper_category3_item:hover{
color:grey;
}
.wrapper_category3_item.current{
color:#ff6700;
}
.iconfont{
cursor: pointer;
}
#goodDetail .weizhi{
margin-bottom:20px;
}
.detailContent{
display: flex;
}
.detailContent .right{
margin-left:20px;
border: 1px solid #ff6700;
display: flex;
width: 100%;
background: #fff;
height:400px;
}
.detailContent .good_img{
width:400px;
height:398px;
}
.swiper-button-next-detail, .swiper-button-prev-detail { position: absolute; top: 50%; width: 12px; height: 22px; margin-top: -22px; z-index: 10; cursor: pointer; background-size: 12px 22px; background-position: center; background-repeat: no-repeat }
.swiper-button-next-detail{
position: absolute;
}
.swiper-button-prev-detail{
position: absolute;
}
.swiper-button-next-detail { background-image: url(../images/left.png); left: 0; right: auto; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 50px; background-color: rgba(0,0,0,.3); text-align: center; }
.swiper-button-prev-detail { background-image: url(../images/right.png); right: 0; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 50px; background-color: rgba(0,0,0,.3); text-align: center; }
.detailContent .right .product_info{
flex: 1;
display: flex;
flex-direction: column;
}
.product_name{
border: 1px solid #ff6700;
border-top: none;
border-right: none;
padding:15px;
font-size: 22px;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
white-space: nowrap;
}
.product_content{
flex:1;
border-left: 1px solid #ff6700;
padding:15px;
}
.product_content .market_price{
padding:10px;
}
.product_content .product_brand{
padding:10px;
}
.product_content .product_model{
padding:10px;
}
.product_content .product_unit{
padding:10px;
}
#goodDetail{
padding-bottom:20px;
} | 0.608361 | 0.139807 |
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
@import url('https://fonts.googleapis.com/css2?family=Goldman&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* You can override the default Infima variables here. */
:root {
/* YELLOW - dark */
/* --ifm-color-primary: #c8b900;
--ifm-color-primary-dark: #b4a700;
--ifm-color-primary-darker: #aa9d00;
--ifm-color-primary-darkest: #8c8200;
--ifm-color-primary-light: #dccc00;
--ifm-color-primary-lighter: #e6d500;
--ifm-color-primary-lightest: #ffec05; */
/* YELLOW - bright */
/* --ifm-color-primary: #ffc627;
--ifm-color-primary-dark: #ffbe0a;
--ifm-color-primary-darker: #fab800;
--ifm-color-primary-darkest: #ce9700;
--ifm-color-primary-light: #ffce44;
--ifm-color-primary-lighter: #ffd253;
--ifm-color-primary-lightest: #ffdd7f; */
/* CIAN - bright */
--ifm-color-primary: #18ffff;
--ifm-color-primary-dark: #00fbfb;
--ifm-color-primary-darker: #00eded;
/* --ifm-color-primary-darkest: #00c3c3; */
--ifm-color-primary-darkest: #328080;
--ifm-color-primary-light: #34ffff;
--ifm-color-primary-lighter: #42ffff;
--ifm-color-primary-lightest: #6cffff;
/* GREEN - dark */
/* --ifm-color-primary: #00675b;
--ifm-color-primary-dark: #005d52;
--ifm-color-primary-darker: #00584d;
--ifm-color-primary-darkest: #004840;
--ifm-color-primary-light: #007164;
--ifm-color-primary-lighter: #007669;
--ifm-color-primary-lightest: #008676; */
/* GREEN - light */
/* --ifm-color-primary: #26a69a;
--ifm-color-primary-dark: #22958b;
--ifm-color-primary-darker: #208d83;
--ifm-color-primary-darkest: #1b746c;
--ifm-color-primary-light: #2ab7a9;
--ifm-color-primary-lighter: #2cbfb1;
--ifm-color-primary-lightest: #38d1c3; */
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
.navbar__title {
color: var(--ifm-color-primary);
}
.navbar__link {
font-weight: 200;
}
/* .navbar--dark,
.footer--dark {
--ifm-navbar-background-color: #20232a;
--ifm-footer-background-color: #20232a;
} */
/*
COMMON
*/
.hero__title {
font-family: 'Goldman', cursive;
font-size: 2.5rem;
}
.hero__subtitle {
font-weight: 200;
font-size: 1.5rem;
}
.hero__syntax_example {
font-family: 'Oswald';
font-weight: 500;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
/*
LIGHT
*/
html[data-theme='light'] .hero {
background-color: #fff;
border-bottom: 1px solid #282c34;
}
html[data-theme='light'] .hero__title {
color: var(--ifm-color-primary);
}
html[data-theme='light'] .hero__subtitle {
color: #191c24;
}
html[data-theme='dark'] .hero__syntax_example {
color: #191c24;
}
/*
DARK
*/
html[data-theme='dark'] .hero {
background-color: #282c34;
}
html[data-theme='dark'] .hero__title {
color: var(--ifm-color-primary);
}
html[data-theme='dark'] .hero__subtitle {
color: #fff;
}
html[data-theme='dark'] .hero__syntax_example {
color: #fff;
}
/*
LEGACY
:root {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: rgb(33, 175, 144);
--ifm-color-primary-darker: rgb(31, 165, 136);
--ifm-color-primary-darkest: rgb(26, 136, 112);
--ifm-color-primary-light: rgb(70, 203, 174);
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
*/
@keyframes glow {
from {
text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px var(--ifm-color-primary-dark), 0 0 8px var(--ifm-color-primary-dark), 0 0 10px var(--ifm-color-primary-dark), 0 0 12px var(--ifm-color-primary-dark), 0 0 14px var(--ifm-color-primary-darker);
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px var(--ifm-color-primary), 0 0 40px var(--ifm-color-primary), 0 0 50px var(--ifm-color-primary), 0 0 60px var(--ifm-color-primary), 0 0 70px var(--ifm-color-primary), 0 0 80px var(--ifm-color-primary);
}
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--ifm-color-primary-dark), 0 0 40px var(--ifm-color-primary-dark), 0 0 50px var(--ifm-color-primary-dark), 0 0 60px var(--ifm-color-primary-dark), 0 0 70px var(--ifm-color-primary-darker);
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px var(--ifm-color-primary), 0 0 40px var(--ifm-color-primary), 0 0 50px var(--ifm-color-primary), 0 0 60px var(--ifm-color-primary), 0 0 70px var(--ifm-color-primary), 0 0 80px var(--ifm-color-primary);
}
} | website/src/css/custom.css | * Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
@import url('https://fonts.googleapis.com/css2?family=Goldman&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* You can override the default Infima variables here. */
:root {
/* YELLOW - dark */
/* --ifm-color-primary: #c8b900;
--ifm-color-primary-dark: #b4a700;
--ifm-color-primary-darker: #aa9d00;
--ifm-color-primary-darkest: #8c8200;
--ifm-color-primary-light: #dccc00;
--ifm-color-primary-lighter: #e6d500;
--ifm-color-primary-lightest: #ffec05; */
/* YELLOW - bright */
/* --ifm-color-primary: #ffc627;
--ifm-color-primary-dark: #ffbe0a;
--ifm-color-primary-darker: #fab800;
--ifm-color-primary-darkest: #ce9700;
--ifm-color-primary-light: #ffce44;
--ifm-color-primary-lighter: #ffd253;
--ifm-color-primary-lightest: #ffdd7f; */
/* CIAN - bright */
--ifm-color-primary: #18ffff;
--ifm-color-primary-dark: #00fbfb;
--ifm-color-primary-darker: #00eded;
/* --ifm-color-primary-darkest: #00c3c3; */
--ifm-color-primary-darkest: #328080;
--ifm-color-primary-light: #34ffff;
--ifm-color-primary-lighter: #42ffff;
--ifm-color-primary-lightest: #6cffff;
/* GREEN - dark */
/* --ifm-color-primary: #00675b;
--ifm-color-primary-dark: #005d52;
--ifm-color-primary-darker: #00584d;
--ifm-color-primary-darkest: #004840;
--ifm-color-primary-light: #007164;
--ifm-color-primary-lighter: #007669;
--ifm-color-primary-lightest: #008676; */
/* GREEN - light */
/* --ifm-color-primary: #26a69a;
--ifm-color-primary-dark: #22958b;
--ifm-color-primary-darker: #208d83;
--ifm-color-primary-darkest: #1b746c;
--ifm-color-primary-light: #2ab7a9;
--ifm-color-primary-lighter: #2cbfb1;
--ifm-color-primary-lightest: #38d1c3; */
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
.navbar__title {
color: var(--ifm-color-primary);
}
.navbar__link {
font-weight: 200;
}
/* .navbar--dark,
.footer--dark {
--ifm-navbar-background-color: #20232a;
--ifm-footer-background-color: #20232a;
} */
/*
COMMON
*/
.hero__title {
font-family: 'Goldman', cursive;
font-size: 2.5rem;
}
.hero__subtitle {
font-weight: 200;
font-size: 1.5rem;
}
.hero__syntax_example {
font-family: 'Oswald';
font-weight: 500;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
/*
LIGHT
*/
html[data-theme='light'] .hero {
background-color: #fff;
border-bottom: 1px solid #282c34;
}
html[data-theme='light'] .hero__title {
color: var(--ifm-color-primary);
}
html[data-theme='light'] .hero__subtitle {
color: #191c24;
}
html[data-theme='dark'] .hero__syntax_example {
color: #191c24;
}
/*
DARK
*/
html[data-theme='dark'] .hero {
background-color: #282c34;
}
html[data-theme='dark'] .hero__title {
color: var(--ifm-color-primary);
}
html[data-theme='dark'] .hero__subtitle {
color: #fff;
}
html[data-theme='dark'] .hero__syntax_example {
color: #fff;
}
/*
LEGACY
:root {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: rgb(33, 175, 144);
--ifm-color-primary-darker: rgb(31, 165, 136);
--ifm-color-primary-darkest: rgb(26, 136, 112);
--ifm-color-primary-light: rgb(70, 203, 174);
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
*/
@keyframes glow {
from {
text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px var(--ifm-color-primary-dark), 0 0 8px var(--ifm-color-primary-dark), 0 0 10px var(--ifm-color-primary-dark), 0 0 12px var(--ifm-color-primary-dark), 0 0 14px var(--ifm-color-primary-darker);
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px var(--ifm-color-primary), 0 0 40px var(--ifm-color-primary), 0 0 50px var(--ifm-color-primary), 0 0 60px var(--ifm-color-primary), 0 0 70px var(--ifm-color-primary), 0 0 80px var(--ifm-color-primary);
}
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--ifm-color-primary-dark), 0 0 40px var(--ifm-color-primary-dark), 0 0 50px var(--ifm-color-primary-dark), 0 0 60px var(--ifm-color-primary-dark), 0 0 70px var(--ifm-color-primary-darker);
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px var(--ifm-color-primary), 0 0 40px var(--ifm-color-primary), 0 0 50px var(--ifm-color-primary), 0 0 60px var(--ifm-color-primary), 0 0 70px var(--ifm-color-primary), 0 0 80px var(--ifm-color-primary);
}
} | 0.291888 | 0.048654 |
/* big landscape tablets, laptops, and desktops */
/*
html{
display: none;
}
/*
.not-supported{
display: block !important;
}
} */
/*
@media (min-width:1281px) {
/* hi-res laptops and desktops */
/*
body{
display: none;
}
.not-supported{
display: block !important;
}
}*/
html, body ,h3{
transition: cubic-bezier(0.165, 0.84, 0.44, 1);
margin:0;
padding:0;
width:100vw;
height:100vh;
user-select: none;
scroll-behavior: smooth;
}
*{
-webkit-user-drag: none;
font-family:Poppins,sans-serif,'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navBar
{
font-family:Poppins,sans-serif;
background-color:red;
top:0;
padding:0;
position:fixed;
z-index:10;
width:100%;
box-shadow:1px 0px 4px black;
}
.home
{
color:white;
padding:5%;
margin:0;
font-size:5vw;
}
/*Theme switch button*/
.theme-switch{
outline: none;
border: none;
text-align: center;
margin-top: 1vh;
margin-left: 50vw;
height: 20px;
border-radius: 20%;
}
/*Theme class*/
.dark {
transition: 100ms ease-in-out;
background-color: #141515;
color: rgb(255, 255, 255);
}
.light {
transition: 100ms ease-in-out;
background-color: white;
color: black;
}
.top {
display: flex;
}
.indicator
{
transition:100ms ease-in;
z-index:1002;
background-color:white;
color:white;
width:10%;
height:5px;
margin-left:17vw;
margin-top: 3px;
}
h3
{
position:fixed;
z-index:1378;
font-size:8vw;
margin-top:50%;
}
.none{
margin-top:70%;
}
.thumbnail
{
width: 96%;
box-shadow:0px 8px 5px white;
border-radius: 3px;
}
.container,.sub-container ,.user-container,.settings-container{
padding-top:31%;
}
hr{
width: 96%;
border:solid 1px gray;
color: #58585800;
}
.video{
margin-bottom:6%;
margin-top:10%;
}
.info
{
display: flex;
position: relative;
margin:0;
padding:0;
width:100%;
}
.avatar
{
transition: 350ms ease-in-out;
margin-top:20px;
margin-right:10px;
margin-left:3%;
border-radius: 10vw;
padding:2px;
border:1px transparent;
background: linear-gradient(
60deg,
gray,
gray
);
width:13vw;
height:13vw;
}
.dark-border {
transition: 350ms ease-in-out;
background: linear-gradient(
60deg,
hsl(0, 100%, 50%),
hsl(0, 100%, 50%)
);
}
.avatar:hover{
transform: rotateY(180deg);
}
p {
font-family: Poppins,sans-serif;
text-align:left;
font-size:5vw !important;
}
.views
{
padding-left:10%;
padding-top:0;
}
span
{
font-size:4vw;
color:#585858;
}
/**! The Setting/Account Tab **/
.settings-container{
padding-top:40%;
}
.account, .option{
width: 100vw;
display: flex;
}
.option{
border-top:solid 1px #141515;
}
.account > i{
padding: 5px 0 5px 5px;
margin: 5px 8vw 5px 5px;
}
.option > i{
transition: 350ms ease-in-out;
padding: 5px 0 5px 5px;
margin: 5px 8vw 5px 5px;
}
.option:hover{
background-color: rgba(20, 21, 21, 0.068);
}
.icon-dark{
color: #141515;
}
.swal-overlay {
background-color: rgba(0, 0, 0, 0.623);
} | public/style.css | /* big landscape tablets, laptops, and desktops */
/*
html{
display: none;
}
/*
.not-supported{
display: block !important;
}
} */
/*
@media (min-width:1281px) {
/* hi-res laptops and desktops */
/*
body{
display: none;
}
.not-supported{
display: block !important;
}
}*/
html, body ,h3{
transition: cubic-bezier(0.165, 0.84, 0.44, 1);
margin:0;
padding:0;
width:100vw;
height:100vh;
user-select: none;
scroll-behavior: smooth;
}
*{
-webkit-user-drag: none;
font-family:Poppins,sans-serif,'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navBar
{
font-family:Poppins,sans-serif;
background-color:red;
top:0;
padding:0;
position:fixed;
z-index:10;
width:100%;
box-shadow:1px 0px 4px black;
}
.home
{
color:white;
padding:5%;
margin:0;
font-size:5vw;
}
/*Theme switch button*/
.theme-switch{
outline: none;
border: none;
text-align: center;
margin-top: 1vh;
margin-left: 50vw;
height: 20px;
border-radius: 20%;
}
/*Theme class*/
.dark {
transition: 100ms ease-in-out;
background-color: #141515;
color: rgb(255, 255, 255);
}
.light {
transition: 100ms ease-in-out;
background-color: white;
color: black;
}
.top {
display: flex;
}
.indicator
{
transition:100ms ease-in;
z-index:1002;
background-color:white;
color:white;
width:10%;
height:5px;
margin-left:17vw;
margin-top: 3px;
}
h3
{
position:fixed;
z-index:1378;
font-size:8vw;
margin-top:50%;
}
.none{
margin-top:70%;
}
.thumbnail
{
width: 96%;
box-shadow:0px 8px 5px white;
border-radius: 3px;
}
.container,.sub-container ,.user-container,.settings-container{
padding-top:31%;
}
hr{
width: 96%;
border:solid 1px gray;
color: #58585800;
}
.video{
margin-bottom:6%;
margin-top:10%;
}
.info
{
display: flex;
position: relative;
margin:0;
padding:0;
width:100%;
}
.avatar
{
transition: 350ms ease-in-out;
margin-top:20px;
margin-right:10px;
margin-left:3%;
border-radius: 10vw;
padding:2px;
border:1px transparent;
background: linear-gradient(
60deg,
gray,
gray
);
width:13vw;
height:13vw;
}
.dark-border {
transition: 350ms ease-in-out;
background: linear-gradient(
60deg,
hsl(0, 100%, 50%),
hsl(0, 100%, 50%)
);
}
.avatar:hover{
transform: rotateY(180deg);
}
p {
font-family: Poppins,sans-serif;
text-align:left;
font-size:5vw !important;
}
.views
{
padding-left:10%;
padding-top:0;
}
span
{
font-size:4vw;
color:#585858;
}
/**! The Setting/Account Tab **/
.settings-container{
padding-top:40%;
}
.account, .option{
width: 100vw;
display: flex;
}
.option{
border-top:solid 1px #141515;
}
.account > i{
padding: 5px 0 5px 5px;
margin: 5px 8vw 5px 5px;
}
.option > i{
transition: 350ms ease-in-out;
padding: 5px 0 5px 5px;
margin: 5px 8vw 5px 5px;
}
.option:hover{
background-color: rgba(20, 21, 21, 0.068);
}
.icon-dark{
color: #141515;
}
.swal-overlay {
background-color: rgba(0, 0, 0, 0.623);
} | 0.302288 | 0.060696 |
header{
background-color:rgb(90,130,225);
color:rgb(255,255,255);
padding:2px;
height:70px;
box-shadow: 1px 0px 2px rgb(50,50, 200);
position:fixed;
width:100%;
top:0px;
left:0px;
z-index:2;
}
.menu1{
text-decoration: none;
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
margin: 20px 0px auto 20px;
font-size:20px;
}
.menu2{
text-decoration: none;
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
margin: 20px 20px auto 0px;
font-size:20px;
}
header a ~ p {
display: inline;
}
a{
color:rgb(255,255,255);
}
a:hover{
color:rgb(255,255,255);
}
.name {
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
font-size: 40px;
margin:auto;
width:40%;
}
.LogginAppName{
color:rgb(255,255,255);;
font-family: 'Palanquin Dark', sans-serif;
font-size: 40px;
text-align: center;
}
.box{
background-color: rgb(240,240,240);
color:rgb(255,255,255);
border-color:rgb(220,220,220);
border-style:solid;
border-width:1px;
border-radius:2px;
box-shadow:inset 0px 0px 1px rgb(230,230,230);
}
.boxSize1{
margin-top:10%;
height: 300px;
width:90%;
margin-bottom: 5%;
}
.boxSize2,.boxSize21,.boxSize22{
margin-bottom:5%;
width:42.5%;
}
.boxSize21{
margin-left:5%;
}
.boxSize22{
margin-right: 5%;
}
.pollContainer{
display:flex;
flex-flow:row wrap;
}
.boxSize3,.boxSize4{
margin-top:2%;
margin-bottom: 5%;
width:50%;
height: 420px;
}
.boxSize4{
margin-bottom: 2%;
}
.boxSize5{
width:50%;
height:420px;
margin-top:2.5%;
margin-bottom: 6%;
}
.boxSize6{
margin-top:12%;
margin-bottom: 0%;
}
.boxSize7{
width:50%;
margin-top:12%;
margin-bottom:15%;
}
.rdmBtn{
color: rgb(255,255,255);
width:10%;
margin-left: 45%;
margin-bottom:2%;
}
.boxNewPoll{
background-color: rgb(240,240,240);
color:rgb(255,255,255);
border-color:rgb(220,220,220);
border-style:solid;
border-width:1px;
border-radius:2px;
box-shadow:inset 0px 0px 1px rgb(230,230,230);
width:50%;
margin-bottom:8%;
margin-top:12%;
}
h2{
font-family: 'Palanquin Dark', sans-serif;
font-size: 50px;
color:rgb(80,120,215);
margin-top: 35px;
}
.Welcome{
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
color:rgb(50,50,85);
}
.DashBtn{
width:33%;
margin: 50px 33% 10px auto;
}
.percent{
margin-top:-50px;
margin-bottom:25px;
text-align:center;
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
color:rgb(90,120,210);
}
.newPoll{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
}
.newPoll:hover{
color:rgb(255,255,255);
}
.myPolls{
background-color: rgb(80,120,215);
box-shadow: 0px 2px rgb(60,100,195)
}
.myPolls:hover{
color:rgb(255,255,255);
}
.rdmPoll:hover{
color:rgb(255,255,255);
}
.rdmPoll{
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100)
}
.RecentPolls,.MostPolls{
width: 106%;
color:rgb(50,60,90);
text-align:center;
vertical-align: central;
margin-left: -3%;
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
padding:20px;
box-shadow:0px -2px 0px rgb(250,250,250),0px -3px 1px rgb(235,235,235);
}
.RecentPolls:hover,.MostPolls:hover{
background-color: rgba(210,210,210,0.5);
}
.recent{
font-size:12px;
margin-top:-4px;
margin-bottom: -10px;
}
.title{
margin-bottom: 7%;
}
.pollTitle,.pollTitle:hover{
color:rgb(50,60,90);
}
.pollTitle:hover{
color:rgb(70,80,110);
}
.logo{
width:14%;
height: 14%;
margin:3% 43% 4% 43%;
}
label{
color:rgb(60,90,165);
margin-top: 25px;
}
.newPollName{
padding:5px;
width:200px;
color:rgb(50,50,50);
margin:5px auto 0px auto;
}
input[type=text],select{
display:inline-block;
width: 100%;
}
.options{
padding:5px;
width:150px;
color:rgb(50,50,50);
margin:5px auto 0px auto;
}
.submitPoll{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
margin-top:5px;
width:100%;
margin-bottom:30px;
}
.submitPoll:hover{color:rgb(245,245,255);
}
.profile-box{
font-family: 'Palanquin Dark', sans-serif;
width:40%;
padding:30px;
margin-top:20%;
margin-left:30%;
color:rgb(70,110,215);
}
.displayProfile{
color:rgb(50,50,50);
}
.CreatedByRdm{
margin-top: -4%;
color:rgb(0,0,0);
}
.optBtn{
background-color: rgb(120,160,255);
box-shadow: 0px 2px rgb(100,140,235);
margin-top:30px;
width:100%;
margin-bottom:0px;
}
.optBtn:hover{color:rgb(245,245,255);
}
select{
margin-top:2px;
margin-bottom: 4px;
}
.pollAddedTitle{
text-align: center;
width:100%;
margin-top: 8%;
}
.pollName{
font-family: 'Palanquin Dark', sans-serif;
margin-top: 20px;
font-size: 30px;
color:rgb(80,120,215);
margin-bottom: 3%;
}
.graph,.graphPoll{
background-color:rgb(250,250,250);
height:60%;
width:70%;
margin: 0 auto;
border-color:rgb(235,240,245);
border-width:1px;
border-style: solid;
border-radius:2px;
display: flex;
flex-direction:row;
justify-content:space-around;
align-items:flex-end;
align-content:center;
box-shadow:inset 0px 10px 50px rgba(255,255,255,1);
}
.graphPoll{
height:75%;
margin-top:5%;
margin-bottom:-2%;
}
.btn-containor{
margin-left:15%;
width:70%;
margin-top:5%;
display:flex;
justify-content:space-around;
align-items:center;
}
.option1-btn,.option2-btn,.option3-btn,.option4-btn{
margin:2px;
padding:5px 2px 5px 2px;
}
.option1-btn,.option3-btn,.option4-btn{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
}
.option2-btn{
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100)
}
.option1-btn:hover,.option2-btn:hover,.option3-btn:hover,.option4-btn:hover{
color:rgb(235,240,245);
}
.color1,.color2,.color3,.color4{
color:transparent;
width: 30%;
height: 7%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-left:2px;
margin-right:2px;
cursor:pointer;
border-width:2px;
border-style: solid;
transition:height 1s ease;
}
.color1:before,.color2:before,.color3:before,.color4:before{
height: 1%;
}
.color1:hover,.color2:hover,.color3:hover,.color4:hover{
color:rgb(250,250,250);
}
.color1{
background-color:rgba(80,120,215,0.9);
border-color:rgba(80,120,215,0.9);
}
.color1:hover{
background-color:rgb(80,120,215);
border-color:rgb(60,100,195) rgb(60,100,195) rgba(60,100,195,0) rgb(60,100,195);
}
.color2{
background-color:rgba(245,120,120,0.9);
border-color:rgba(245,120,120,0.9);
}
.color2:hover{
background-color:rgb(245,120,120);
border-color:rgb(225,100,100) rgb(225,100,100) rgba(60,100,195,0) rgb(225,100,100);
}
.color3{
background-color:rgba(80,215,120,0.9);
border-color:rgba(80,215,120,0.9);
}
.color3:hover{
background-color:rgb(80,215,120);
border-color:rgb(60,195,100) rgb(60,195,100) rgba(60,100,195,0) rgb(60,195,100);
}
.color4{
background-color:rgba(255,235,60,0.7);
border-color:rgba(255,235,60,0.7);
}
.color4:hover{
background-color:rgb(255,235,60);
border-color:rgb(245,225,40) rgb(245,225,40) rgba(60,100,195,0) rgb(245,225,40);
}
.dispVote{
font-family: 'Palanquin Dark', sans-serif;
font-size:10px;
padding-bottom: 1%;
}
.selectColor0,.selectColor1{
width:97%;
}
.selectColor3,.selectColor2{
margin-top:4px;
margin-bottom:4px;
}
.opt-container{
height:2%;
margin-top:2px;
margin-bottom: 2px;
display:flex;
justify-content:flex-start;
align-items:center;
}
.delete-opt3,.delete-opt4{
width:22px;
height:22px;
padding:0px;
font-size:15px;
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100);
margin-left:1%;
}
.delete-opt3:hover,.delete-opt4:hover{
color:rgb(240,240,240);
}
.alreadyVote{
display: none;
margin:4% auto 0% auto;
}
.alreadyVoteRdm{
display: none;
width:36%;
margin:6% 0 0% 0px;
align-self:flex-start;
}
.alreadyVoteAdd{
display: none;
margin:5% auto 0% auto;
}
.pollCreated{
display:flex;
flex-direction:column;
}
.myPollTitle{
cursor:pointer;
padding:20px;
margin-bottom: 20px;
}
.myPollTitle:hover{
color: rgb(90,120,160);
}
.morePoll-container{
width:106%;
box-shadow:0px -2px 0px rgb(250,250,250),0px -3px 1px rgb(235,235,235);
text-align:center;
vertical-align: central;
margin-left: -3%;
padding:20px;
}
.morePolls{
width:70%;
font-size:20px;
background-color:rgb(140,140,140);
font-family:'Palanquin Dark', sans-serif;
}
.morePolls:hover{
border-color:rgb(140,140,140);
color:rgb(140,140,140);
background-color:rgb(240,240,240);
}
.morePoll{
margin-left:5%;
margin-bottom: 9%;
width:90%;
padding:20px;
}
.morePolltxt{
margin-top: 0px;
}
.Alr{
font-size:10px;
margin-top:-10px;
}
.gh-footer{
width:20px;
height:20px;
}
html{
min-height: 100%;
position:relative;
}
footer{
text-align: center;
background-color:rgb(90,130,225);
color:rgb(255,255,255);
height: 60px;
padding: 10px;
box-shadow: 1px 0px 2px rgb(50,50, 200);
position:absolute;
overflow:hidden;
bottom: 0px;
width:100%;
left:0px;
} | public/css/myMain.css | header{
background-color:rgb(90,130,225);
color:rgb(255,255,255);
padding:2px;
height:70px;
box-shadow: 1px 0px 2px rgb(50,50, 200);
position:fixed;
width:100%;
top:0px;
left:0px;
z-index:2;
}
.menu1{
text-decoration: none;
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
margin: 20px 0px auto 20px;
font-size:20px;
}
.menu2{
text-decoration: none;
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
margin: 20px 20px auto 0px;
font-size:20px;
}
header a ~ p {
display: inline;
}
a{
color:rgb(255,255,255);
}
a:hover{
color:rgb(255,255,255);
}
.name {
color:rgb(255,255,255);
font-family: 'Palanquin Dark', sans-serif;
font-size: 40px;
margin:auto;
width:40%;
}
.LogginAppName{
color:rgb(255,255,255);;
font-family: 'Palanquin Dark', sans-serif;
font-size: 40px;
text-align: center;
}
.box{
background-color: rgb(240,240,240);
color:rgb(255,255,255);
border-color:rgb(220,220,220);
border-style:solid;
border-width:1px;
border-radius:2px;
box-shadow:inset 0px 0px 1px rgb(230,230,230);
}
.boxSize1{
margin-top:10%;
height: 300px;
width:90%;
margin-bottom: 5%;
}
.boxSize2,.boxSize21,.boxSize22{
margin-bottom:5%;
width:42.5%;
}
.boxSize21{
margin-left:5%;
}
.boxSize22{
margin-right: 5%;
}
.pollContainer{
display:flex;
flex-flow:row wrap;
}
.boxSize3,.boxSize4{
margin-top:2%;
margin-bottom: 5%;
width:50%;
height: 420px;
}
.boxSize4{
margin-bottom: 2%;
}
.boxSize5{
width:50%;
height:420px;
margin-top:2.5%;
margin-bottom: 6%;
}
.boxSize6{
margin-top:12%;
margin-bottom: 0%;
}
.boxSize7{
width:50%;
margin-top:12%;
margin-bottom:15%;
}
.rdmBtn{
color: rgb(255,255,255);
width:10%;
margin-left: 45%;
margin-bottom:2%;
}
.boxNewPoll{
background-color: rgb(240,240,240);
color:rgb(255,255,255);
border-color:rgb(220,220,220);
border-style:solid;
border-width:1px;
border-radius:2px;
box-shadow:inset 0px 0px 1px rgb(230,230,230);
width:50%;
margin-bottom:8%;
margin-top:12%;
}
h2{
font-family: 'Palanquin Dark', sans-serif;
font-size: 50px;
color:rgb(80,120,215);
margin-top: 35px;
}
.Welcome{
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
color:rgb(50,50,85);
}
.DashBtn{
width:33%;
margin: 50px 33% 10px auto;
}
.percent{
margin-top:-50px;
margin-bottom:25px;
text-align:center;
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
color:rgb(90,120,210);
}
.newPoll{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
}
.newPoll:hover{
color:rgb(255,255,255);
}
.myPolls{
background-color: rgb(80,120,215);
box-shadow: 0px 2px rgb(60,100,195)
}
.myPolls:hover{
color:rgb(255,255,255);
}
.rdmPoll:hover{
color:rgb(255,255,255);
}
.rdmPoll{
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100)
}
.RecentPolls,.MostPolls{
width: 106%;
color:rgb(50,60,90);
text-align:center;
vertical-align: central;
margin-left: -3%;
font-family: 'Palanquin Dark', sans-serif;
font-size: 20px;
padding:20px;
box-shadow:0px -2px 0px rgb(250,250,250),0px -3px 1px rgb(235,235,235);
}
.RecentPolls:hover,.MostPolls:hover{
background-color: rgba(210,210,210,0.5);
}
.recent{
font-size:12px;
margin-top:-4px;
margin-bottom: -10px;
}
.title{
margin-bottom: 7%;
}
.pollTitle,.pollTitle:hover{
color:rgb(50,60,90);
}
.pollTitle:hover{
color:rgb(70,80,110);
}
.logo{
width:14%;
height: 14%;
margin:3% 43% 4% 43%;
}
label{
color:rgb(60,90,165);
margin-top: 25px;
}
.newPollName{
padding:5px;
width:200px;
color:rgb(50,50,50);
margin:5px auto 0px auto;
}
input[type=text],select{
display:inline-block;
width: 100%;
}
.options{
padding:5px;
width:150px;
color:rgb(50,50,50);
margin:5px auto 0px auto;
}
.submitPoll{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
margin-top:5px;
width:100%;
margin-bottom:30px;
}
.submitPoll:hover{color:rgb(245,245,255);
}
.profile-box{
font-family: 'Palanquin Dark', sans-serif;
width:40%;
padding:30px;
margin-top:20%;
margin-left:30%;
color:rgb(70,110,215);
}
.displayProfile{
color:rgb(50,50,50);
}
.CreatedByRdm{
margin-top: -4%;
color:rgb(0,0,0);
}
.optBtn{
background-color: rgb(120,160,255);
box-shadow: 0px 2px rgb(100,140,235);
margin-top:30px;
width:100%;
margin-bottom:0px;
}
.optBtn:hover{color:rgb(245,245,255);
}
select{
margin-top:2px;
margin-bottom: 4px;
}
.pollAddedTitle{
text-align: center;
width:100%;
margin-top: 8%;
}
.pollName{
font-family: 'Palanquin Dark', sans-serif;
margin-top: 20px;
font-size: 30px;
color:rgb(80,120,215);
margin-bottom: 3%;
}
.graph,.graphPoll{
background-color:rgb(250,250,250);
height:60%;
width:70%;
margin: 0 auto;
border-color:rgb(235,240,245);
border-width:1px;
border-style: solid;
border-radius:2px;
display: flex;
flex-direction:row;
justify-content:space-around;
align-items:flex-end;
align-content:center;
box-shadow:inset 0px 10px 50px rgba(255,255,255,1);
}
.graphPoll{
height:75%;
margin-top:5%;
margin-bottom:-2%;
}
.btn-containor{
margin-left:15%;
width:70%;
margin-top:5%;
display:flex;
justify-content:space-around;
align-items:center;
}
.option1-btn,.option2-btn,.option3-btn,.option4-btn{
margin:2px;
padding:5px 2px 5px 2px;
}
.option1-btn,.option3-btn,.option4-btn{
background-color: rgb(80,215,120);
box-shadow: 0px 2px rgb(60,195,100);
}
.option2-btn{
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100)
}
.option1-btn:hover,.option2-btn:hover,.option3-btn:hover,.option4-btn:hover{
color:rgb(235,240,245);
}
.color1,.color2,.color3,.color4{
color:transparent;
width: 30%;
height: 7%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-left:2px;
margin-right:2px;
cursor:pointer;
border-width:2px;
border-style: solid;
transition:height 1s ease;
}
.color1:before,.color2:before,.color3:before,.color4:before{
height: 1%;
}
.color1:hover,.color2:hover,.color3:hover,.color4:hover{
color:rgb(250,250,250);
}
.color1{
background-color:rgba(80,120,215,0.9);
border-color:rgba(80,120,215,0.9);
}
.color1:hover{
background-color:rgb(80,120,215);
border-color:rgb(60,100,195) rgb(60,100,195) rgba(60,100,195,0) rgb(60,100,195);
}
.color2{
background-color:rgba(245,120,120,0.9);
border-color:rgba(245,120,120,0.9);
}
.color2:hover{
background-color:rgb(245,120,120);
border-color:rgb(225,100,100) rgb(225,100,100) rgba(60,100,195,0) rgb(225,100,100);
}
.color3{
background-color:rgba(80,215,120,0.9);
border-color:rgba(80,215,120,0.9);
}
.color3:hover{
background-color:rgb(80,215,120);
border-color:rgb(60,195,100) rgb(60,195,100) rgba(60,100,195,0) rgb(60,195,100);
}
.color4{
background-color:rgba(255,235,60,0.7);
border-color:rgba(255,235,60,0.7);
}
.color4:hover{
background-color:rgb(255,235,60);
border-color:rgb(245,225,40) rgb(245,225,40) rgba(60,100,195,0) rgb(245,225,40);
}
.dispVote{
font-family: 'Palanquin Dark', sans-serif;
font-size:10px;
padding-bottom: 1%;
}
.selectColor0,.selectColor1{
width:97%;
}
.selectColor3,.selectColor2{
margin-top:4px;
margin-bottom:4px;
}
.opt-container{
height:2%;
margin-top:2px;
margin-bottom: 2px;
display:flex;
justify-content:flex-start;
align-items:center;
}
.delete-opt3,.delete-opt4{
width:22px;
height:22px;
padding:0px;
font-size:15px;
background-color: rgb(245,120,120);
box-shadow: 0px 2px rgb(225,100,100);
margin-left:1%;
}
.delete-opt3:hover,.delete-opt4:hover{
color:rgb(240,240,240);
}
.alreadyVote{
display: none;
margin:4% auto 0% auto;
}
.alreadyVoteRdm{
display: none;
width:36%;
margin:6% 0 0% 0px;
align-self:flex-start;
}
.alreadyVoteAdd{
display: none;
margin:5% auto 0% auto;
}
.pollCreated{
display:flex;
flex-direction:column;
}
.myPollTitle{
cursor:pointer;
padding:20px;
margin-bottom: 20px;
}
.myPollTitle:hover{
color: rgb(90,120,160);
}
.morePoll-container{
width:106%;
box-shadow:0px -2px 0px rgb(250,250,250),0px -3px 1px rgb(235,235,235);
text-align:center;
vertical-align: central;
margin-left: -3%;
padding:20px;
}
.morePolls{
width:70%;
font-size:20px;
background-color:rgb(140,140,140);
font-family:'Palanquin Dark', sans-serif;
}
.morePolls:hover{
border-color:rgb(140,140,140);
color:rgb(140,140,140);
background-color:rgb(240,240,240);
}
.morePoll{
margin-left:5%;
margin-bottom: 9%;
width:90%;
padding:20px;
}
.morePolltxt{
margin-top: 0px;
}
.Alr{
font-size:10px;
margin-top:-10px;
}
.gh-footer{
width:20px;
height:20px;
}
html{
min-height: 100%;
position:relative;
}
footer{
text-align: center;
background-color:rgb(90,130,225);
color:rgb(255,255,255);
height: 60px;
padding: 10px;
box-shadow: 1px 0px 2px rgb(50,50, 200);
position:absolute;
overflow:hidden;
bottom: 0px;
width:100%;
left:0px;
} | 0.5 | 0.122471 |
body {
background-color: #000;
color: #fff;
margin: 5px; }
a {
text-decoration: none !important; }
/* Preferred colours */
.today_col {
background-color: #609;
color: #fff;
/* today */
background-image: linear-gradient(#609, #000); }
.sel_col {
background-color: #c00;
/* selected day */
background-image: linear-gradient(#c00, #000); }
.three_col {
background-color: #f60;
/* days with entries */
background-image: linear-gradient(#f60, #000); }
.four_col {
background-color: #c90;
/* days without entries */
background-image: linear-gradient(#c90, #000); }
.equal {
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
margin-bottom: 2em; }
input, select, button {
color: #000; }
ul#projectsmenu {
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
position: absolute;
top: 0;
right: 0;
margin-top: 0;
padding-left: 0;
border-bottom-left-radius: 2px;
box-shadow: -2px 2px 2px; }
ul#projectsmenu li {
list-style: none;
text-align: center;
font: bold 1em verdana;
border-bottom: 1px solid rgba(196, 196, 196, 0.7);
cursor: pointer; }
ul#projectsmenu li a {
display: block;
color: #ccc; }
ul#projectsmenu li a:hover {
background-color: rgba(255, 255, 255, 0.5);
color: #000; }
ul#projectsmenu li.sel {
color: yellow;
border: 0; }
ul#projectsmenu li.sel, ul#projectsmenu li a {
padding: 0; }
ul#projectsmenu li:last-child {
border: 0; }
ul.diaryheadings {
margin: 0;
padding: 0;
border-bottom: 0; }
ul.diaryheadings li {
width: 12.85%;
margin: 0;
padding: 0;
border-radius: .4em .4em 0 0; }
ul.diaryheadings li a {
display: block;
box-shadow: 1px 1px rgba(255, 255, 255, 0.3);
text-align: center;
padding: .1em 1em;
color: #fff;
font: bold 8pt verdana;
cursor: pointer;
border-radius: .8em .8em 0 0;
text-shadow: 2px 2px 1px grey; }
ul.diaryheadings li a:hover {
background: linear-gradient(#c00, #000);
color: #fff; }
ul.diaryheadings #li_nxtwkbtn {
text-align: right; }
ul.diaryheadings #li_prvwkbtn, ul.diaryheadings #li_nxtwkbtn {
width: 5%;
box-shadow: 0 0; }
ul.diaryheadings #li_prvwkbtn button {
border-radius: .8em 0 0 .8em;
width: 80%;
text-align: left; }
ul.diaryheadings #li_nxtwkbtn button {
border-radius: 0 .8em .8em 0;
width: 80%;
text-align: right; }
ul.diaryheadings #li_prvwkbtn button:hover, ul.diaryheadings #li_nxtwkbtn button:hover {
background-color: #c00;
color: #fff; }
#li_prvwkbtn button, #li_nxtwkbtn button, #dtPck .lbtn, #dtPck .rbtn {
cursor: pointer;
border: 1px solid grey;
font: bold 1em arial;
background-image: linear-gradient(#f00, #f90);
color: #900; }
/* Data entry textarea */
#txtInfo1 {
margin: 0;
padding: .3em;
height: 10em;
font: bold 1.2em/1.4em arial;
border: 0;
color: #fff;
border-radius: .8em; }
#txtInfo1 {
width: 100%; }
#upd_btn {
position: fixed;
bottom: 0;
left:0;
z-index: 2;
}
#ins_upd_dt {
margin-top: .5em; }
.ui-tooltip {
background: #cc6600 !important;
text-align: center;
padding: 0 20px 10px !important;
color: #fff !important;
border-radius: 20px;
font: bold 12px "Helvetica Neue", Sans-Serif !important;
text-transform: uppercase;
box-shadow: 0 0 7px black; }
.ui-tooltip .date_s {
font: bold 12px "Arial Black", Tahoma;
background-color: #000;
color: #fff;
border-radius: .3em;
padding: 0 4px 4px;
margin-bottom: 4px;
background-image: linear-gradient(#f90, red);
text-shadow: 1px 1px 1px #646464; }
/* Calendar styles */
.cal_container {
margin-top: 30em;
z-index: 3;
}
.tm {
position:fixed;
left:50%;
top:35px;
transform:translateX(-50%);
background-image: linear-gradient(#609, #000);
border:1px solid #fff;
border-radius:.3em;
color:#fff;
font-family:Impact,arial;
width:10em;
z-index:1;
font-weight:bold;
opacity:1;
text-align:center;
text-shadow: black;
}
#dtPck {
text-align: center;
background-image: linear-gradient(#c00, #000);
border-radius: .8em;
box-shadow: 2px 2px 2px #000;
/*.btnHide {display:none;position:absolute;width:2em;color:#c00;}*/ }
#dtPck tbody#d td {
font: bold .8em arial;
color: #fff;
background:navy;
border-radius: 0;
text-shadow: 2px 2px 1px #000; }
#dtPck #tblDate {
background-color: transparent;
width: 90%;
border-collapse: collapse;
text-align: center;
margin: 0 auto; }
#dtPck #tblDate caption {
background: rgba(255, 255, 255, 0.5);
color: #000;
font-variant: small-caps; }
#dtPck #tblDate td {
padding: 0;
margin: 0;
border-radius: .4em; }
#dtPck #tblDate td a {
display: block;
text-decoration: none;
font: bold 1.5em arial;
border-radius: .4em;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
text-shadow: 2px 2px 1px #000;
cursor: pointer; }
#dtPck .lbtn {
border-radius: .8em 0 0 .8em; }
#dtPck .rbtn {
border-radius: 0 .8em .8em 0; }
#dtPck #tblDate td {
/* today_col */ }
#dtPck #tblDate td.curDate {
background-color: #609;
color: #fff; }
#dtPck #tblDate td.three_col a {
background-color: #f60;
color: #fff;
/* three_col */ }
#dtPck #tblDate td.four_col a {
background-color: #c90;
color: #fff;
/* four_col */ }
#dtPck #tblDate td.sel_col a, #dtPck #tblDate td.sel_col a:hover, #dtPck #tblDate td a:hover {
background-color: #c00;
color: #fff; }
#dtPck #goToday {
position: fixed; left:60%; top:35px; z-index: 3; border: 0; font-weight: bold;
}
/*#dtPck #tblDate td {&.nohover, &.medHead {cursor: hand;}}*/
.timepick {
position: absolute;
background: navy;
border-radius: 250px;
width: 250px;
height: 250px;
font-size: 2em;
box-shadow: 1px 1px; }
.timepick div.cen {
text-align: center; }
.timepick span {
cursor: pointer;
background: blue;
border-radius: 2em;
display: inline-block;
width: 2em;
text-align: center;
background: linear-gradient(blue, navy); }
.timepick .minutes {
background: red; }
.activitysel {
position: absolute;
background: blue;
border-radius: .5em;
width: 700px; }
fieldset.whatdidyoudo input[name=timebox] {
width: 5em; }
fieldset.whatdidyoudo select {
font: 1.5em arial; }
fieldset.whatdidyoudo li img {
cursor: pointer; }
fieldset.whatdidyoudo img:hover {
transform: scale(2); }
/* Quick Add - 15/11/2016 */
.quickadd {
position: absolute;
top: 0;
left: 70%;
cursor: pointer;
font-weight: bold; }
.quickadddiv {
z-index: 2;
border-radius: .4em;
position: absolute;
top: 20px;
left: 800px;
background: linear-gradient(black, blue);
color: #fff;
border: 1px solid #fff;
padding: 1em; }
.quickadddiv ul {
margin: 1em 1em 1em 0;
padding-left: 1.3em; }
.quickadddiv li {
cursor: pointer; }
.quickadddiv li:hover {
background: #f00;
color: #fff; }
.quickadddiv li textarea {
width: 25em; }
.quickadddiv .newentry {
cursor: pointer;
font-weight: bold;
border-radius: .3em;
background: red;
text-align: center;
width: 5em; }
.quickadddiv .mode {
font-weight: bold; }
.quickadddiv .mode span {
cursor: pointer; }
.quickadddiv .mode span.highlight {
color: yellow;
cursor: default; }
/*# sourceMappingURL=styles.css.map */ | public/css/styles.css | body {
background-color: #000;
color: #fff;
margin: 5px; }
a {
text-decoration: none !important; }
/* Preferred colours */
.today_col {
background-color: #609;
color: #fff;
/* today */
background-image: linear-gradient(#609, #000); }
.sel_col {
background-color: #c00;
/* selected day */
background-image: linear-gradient(#c00, #000); }
.three_col {
background-color: #f60;
/* days with entries */
background-image: linear-gradient(#f60, #000); }
.four_col {
background-color: #c90;
/* days without entries */
background-image: linear-gradient(#c90, #000); }
.equal {
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
margin-bottom: 2em; }
input, select, button {
color: #000; }
ul#projectsmenu {
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
position: absolute;
top: 0;
right: 0;
margin-top: 0;
padding-left: 0;
border-bottom-left-radius: 2px;
box-shadow: -2px 2px 2px; }
ul#projectsmenu li {
list-style: none;
text-align: center;
font: bold 1em verdana;
border-bottom: 1px solid rgba(196, 196, 196, 0.7);
cursor: pointer; }
ul#projectsmenu li a {
display: block;
color: #ccc; }
ul#projectsmenu li a:hover {
background-color: rgba(255, 255, 255, 0.5);
color: #000; }
ul#projectsmenu li.sel {
color: yellow;
border: 0; }
ul#projectsmenu li.sel, ul#projectsmenu li a {
padding: 0; }
ul#projectsmenu li:last-child {
border: 0; }
ul.diaryheadings {
margin: 0;
padding: 0;
border-bottom: 0; }
ul.diaryheadings li {
width: 12.85%;
margin: 0;
padding: 0;
border-radius: .4em .4em 0 0; }
ul.diaryheadings li a {
display: block;
box-shadow: 1px 1px rgba(255, 255, 255, 0.3);
text-align: center;
padding: .1em 1em;
color: #fff;
font: bold 8pt verdana;
cursor: pointer;
border-radius: .8em .8em 0 0;
text-shadow: 2px 2px 1px grey; }
ul.diaryheadings li a:hover {
background: linear-gradient(#c00, #000);
color: #fff; }
ul.diaryheadings #li_nxtwkbtn {
text-align: right; }
ul.diaryheadings #li_prvwkbtn, ul.diaryheadings #li_nxtwkbtn {
width: 5%;
box-shadow: 0 0; }
ul.diaryheadings #li_prvwkbtn button {
border-radius: .8em 0 0 .8em;
width: 80%;
text-align: left; }
ul.diaryheadings #li_nxtwkbtn button {
border-radius: 0 .8em .8em 0;
width: 80%;
text-align: right; }
ul.diaryheadings #li_prvwkbtn button:hover, ul.diaryheadings #li_nxtwkbtn button:hover {
background-color: #c00;
color: #fff; }
#li_prvwkbtn button, #li_nxtwkbtn button, #dtPck .lbtn, #dtPck .rbtn {
cursor: pointer;
border: 1px solid grey;
font: bold 1em arial;
background-image: linear-gradient(#f00, #f90);
color: #900; }
/* Data entry textarea */
#txtInfo1 {
margin: 0;
padding: .3em;
height: 10em;
font: bold 1.2em/1.4em arial;
border: 0;
color: #fff;
border-radius: .8em; }
#txtInfo1 {
width: 100%; }
#upd_btn {
position: fixed;
bottom: 0;
left:0;
z-index: 2;
}
#ins_upd_dt {
margin-top: .5em; }
.ui-tooltip {
background: #cc6600 !important;
text-align: center;
padding: 0 20px 10px !important;
color: #fff !important;
border-radius: 20px;
font: bold 12px "Helvetica Neue", Sans-Serif !important;
text-transform: uppercase;
box-shadow: 0 0 7px black; }
.ui-tooltip .date_s {
font: bold 12px "Arial Black", Tahoma;
background-color: #000;
color: #fff;
border-radius: .3em;
padding: 0 4px 4px;
margin-bottom: 4px;
background-image: linear-gradient(#f90, red);
text-shadow: 1px 1px 1px #646464; }
/* Calendar styles */
.cal_container {
margin-top: 30em;
z-index: 3;
}
.tm {
position:fixed;
left:50%;
top:35px;
transform:translateX(-50%);
background-image: linear-gradient(#609, #000);
border:1px solid #fff;
border-radius:.3em;
color:#fff;
font-family:Impact,arial;
width:10em;
z-index:1;
font-weight:bold;
opacity:1;
text-align:center;
text-shadow: black;
}
#dtPck {
text-align: center;
background-image: linear-gradient(#c00, #000);
border-radius: .8em;
box-shadow: 2px 2px 2px #000;
/*.btnHide {display:none;position:absolute;width:2em;color:#c00;}*/ }
#dtPck tbody#d td {
font: bold .8em arial;
color: #fff;
background:navy;
border-radius: 0;
text-shadow: 2px 2px 1px #000; }
#dtPck #tblDate {
background-color: transparent;
width: 90%;
border-collapse: collapse;
text-align: center;
margin: 0 auto; }
#dtPck #tblDate caption {
background: rgba(255, 255, 255, 0.5);
color: #000;
font-variant: small-caps; }
#dtPck #tblDate td {
padding: 0;
margin: 0;
border-radius: .4em; }
#dtPck #tblDate td a {
display: block;
text-decoration: none;
font: bold 1.5em arial;
border-radius: .4em;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
text-shadow: 2px 2px 1px #000;
cursor: pointer; }
#dtPck .lbtn {
border-radius: .8em 0 0 .8em; }
#dtPck .rbtn {
border-radius: 0 .8em .8em 0; }
#dtPck #tblDate td {
/* today_col */ }
#dtPck #tblDate td.curDate {
background-color: #609;
color: #fff; }
#dtPck #tblDate td.three_col a {
background-color: #f60;
color: #fff;
/* three_col */ }
#dtPck #tblDate td.four_col a {
background-color: #c90;
color: #fff;
/* four_col */ }
#dtPck #tblDate td.sel_col a, #dtPck #tblDate td.sel_col a:hover, #dtPck #tblDate td a:hover {
background-color: #c00;
color: #fff; }
#dtPck #goToday {
position: fixed; left:60%; top:35px; z-index: 3; border: 0; font-weight: bold;
}
/*#dtPck #tblDate td {&.nohover, &.medHead {cursor: hand;}}*/
.timepick {
position: absolute;
background: navy;
border-radius: 250px;
width: 250px;
height: 250px;
font-size: 2em;
box-shadow: 1px 1px; }
.timepick div.cen {
text-align: center; }
.timepick span {
cursor: pointer;
background: blue;
border-radius: 2em;
display: inline-block;
width: 2em;
text-align: center;
background: linear-gradient(blue, navy); }
.timepick .minutes {
background: red; }
.activitysel {
position: absolute;
background: blue;
border-radius: .5em;
width: 700px; }
fieldset.whatdidyoudo input[name=timebox] {
width: 5em; }
fieldset.whatdidyoudo select {
font: 1.5em arial; }
fieldset.whatdidyoudo li img {
cursor: pointer; }
fieldset.whatdidyoudo img:hover {
transform: scale(2); }
/* Quick Add - 15/11/2016 */
.quickadd {
position: absolute;
top: 0;
left: 70%;
cursor: pointer;
font-weight: bold; }
.quickadddiv {
z-index: 2;
border-radius: .4em;
position: absolute;
top: 20px;
left: 800px;
background: linear-gradient(black, blue);
color: #fff;
border: 1px solid #fff;
padding: 1em; }
.quickadddiv ul {
margin: 1em 1em 1em 0;
padding-left: 1.3em; }
.quickadddiv li {
cursor: pointer; }
.quickadddiv li:hover {
background: #f00;
color: #fff; }
.quickadddiv li textarea {
width: 25em; }
.quickadddiv .newentry {
cursor: pointer;
font-weight: bold;
border-radius: .3em;
background: red;
text-align: center;
width: 5em; }
.quickadddiv .mode {
font-weight: bold; }
.quickadddiv .mode span {
cursor: pointer; }
.quickadddiv .mode span.highlight {
color: yellow;
cursor: default; }
/*# sourceMappingURL=styles.css.map */ | 0.285472 | 0.06489 |
#folder-box .ui-grid-header,
#folder-box .ui-grid-footer {
border: 0;
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eeeeee));
background-image: -webkit-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: -o-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: linear-gradient(to bottom, #f9f9f9, #eeeeee);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#ffeeeeee', GradientType=0);
}
#folder-box table {
border: 0;
}
#folder-box table th {
padding: 0.2rem 1rem;
}
#folder-box tr th:first-child,
#folder-box tr td:first-child {
border-left: 0;
}
#folder-box tr th:last-child,
#folder-box tr td:last-child {
border-right: 0;
}
.ui-grid-header {
line-height: 24px;
}
.ui-grid-header nav.btn-group {
text-align: left;
display: inline-block;
margin: 0;
font-weight: normal;
vertical-align: middle;
line-height: 21px;
}
.ui-grid-header nav.btn-group a.btn {
padding: 3px 10px 4px !important;
font-size: 13px;
vertical-align: middle;
color: #fff;
}
.ui-grid-header nav.btn-group a.btn-icon {
padding: 3px 5px 4px !important;
}
.ui-grid-header nav.btn-group a.btn-icon i {
vertical-align: top;
margin-top: 1px;
}
.ui-grid-header .dropdown-menu img.icon[src*="pipeline"] {
margin-left: 3px;
margin-right: 3px;
}
.filecol { width:100% }
.ui-grid table tbody td.filecell { text-align: left }
#table.small .permission { display:none; }
/* Grid
----------------------------------*/
.ui-grid { font-size:small}
.ui-grid .ui-grid-content { width: 100%; border-collapse: collapse; border-spacing:0; }
.ui-grid table thead th { white-space:nowrap; }
.ui-grid table tbody td { text-align: right; white-space:nowrap; }
.ui-grid table tbody td, .ui-grid .ui-grid-header, .ui-grid table thead a { padding: .4em; }
.ui-grid .ui-grid-header, .ui-grid .ui-grid-footer { padding: .8em .4em; text-align: center; }
.ui-grid .ui-grid-footer { background-image: none; font-weight: normal; text-align: left; }
.ui-grid table thead a { display: block; }
.ui-grid .ui-icon { float: left; } | webapp/styles/callimachus-folder-view.css |
#folder-box .ui-grid-header,
#folder-box .ui-grid-footer {
border: 0;
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#eeeeee));
background-image: -webkit-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: -o-linear-gradient(top, #f9f9f9, #eeeeee);
background-image: linear-gradient(to bottom, #f9f9f9, #eeeeee);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#ffeeeeee', GradientType=0);
}
#folder-box table {
border: 0;
}
#folder-box table th {
padding: 0.2rem 1rem;
}
#folder-box tr th:first-child,
#folder-box tr td:first-child {
border-left: 0;
}
#folder-box tr th:last-child,
#folder-box tr td:last-child {
border-right: 0;
}
.ui-grid-header {
line-height: 24px;
}
.ui-grid-header nav.btn-group {
text-align: left;
display: inline-block;
margin: 0;
font-weight: normal;
vertical-align: middle;
line-height: 21px;
}
.ui-grid-header nav.btn-group a.btn {
padding: 3px 10px 4px !important;
font-size: 13px;
vertical-align: middle;
color: #fff;
}
.ui-grid-header nav.btn-group a.btn-icon {
padding: 3px 5px 4px !important;
}
.ui-grid-header nav.btn-group a.btn-icon i {
vertical-align: top;
margin-top: 1px;
}
.ui-grid-header .dropdown-menu img.icon[src*="pipeline"] {
margin-left: 3px;
margin-right: 3px;
}
.filecol { width:100% }
.ui-grid table tbody td.filecell { text-align: left }
#table.small .permission { display:none; }
/* Grid
----------------------------------*/
.ui-grid { font-size:small}
.ui-grid .ui-grid-content { width: 100%; border-collapse: collapse; border-spacing:0; }
.ui-grid table thead th { white-space:nowrap; }
.ui-grid table tbody td { text-align: right; white-space:nowrap; }
.ui-grid table tbody td, .ui-grid .ui-grid-header, .ui-grid table thead a { padding: .4em; }
.ui-grid .ui-grid-header, .ui-grid .ui-grid-footer { padding: .8em .4em; text-align: center; }
.ui-grid .ui-grid-footer { background-image: none; font-weight: normal; text-align: left; }
.ui-grid table thead a { display: block; }
.ui-grid .ui-icon { float: left; } | 0.37399 | 0.09556 |
@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,800|Lora:400italic|Playfair+Display:700);
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'codropsicons';
src:url('../fonts/codropsicons/codropsicons.eot');
src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
url('../fonts/codropsicons/codropsicons.woff') format('woff'),
url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}
/* *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } */
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }
body {
background: #fff;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a {
color: #fff;
text-decoration: none;
}
/* To Navigation Style */
.codrops-top {
width: 100%;
position: absolute;
top: 0;
left: 0;
text-transform: uppercase;
font-weight: 800;
font-size: 1em;
padding: 0 32px;
letter-spacing: 1px;
z-index: 10000;
}
.codrops-top a {
display: inline-block;
color: #fff;
text-decoration: none;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
.codrops-top span.right {
float: right;
}
.codrops-top span.right a {
display: block;
float: left;
}
.codrops-icon:before {
text-transform: none;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-family: 'codropsicons';
text-align: center;
speak: none;
margin: 0 0.55em 0 0;
-webkit-font-smoothing: antialiased;
}
.codrops-icon-drop:before {
content: "\e001";
}
.codrops-icon-prev:before {
content: "\e004";
}
.codrops-demos {
padding: 0 0 1em;
position: relative;
}
.codrops-demos a {
font-weight: 800;
text-transform: uppercase;
font-size: 0.6em;
letter-spacing: 1px;
padding: 0.3em 0;
display: inline-block;
opacity: 0.7;
margin: 0 0.5em;
white-space: nowrap;
color: #cf4a5c;
}
.codrops-demos a:hover,
.codrops-demos a.current-demo {
opacity: 1;
color: #69606b;
}
.codrops-demos a.current-demo {
border-bottom: 3px solid #69606b;
}
@media screen and (max-width: 40em) {
.codrops-icon span {
display: none;
}
.related {
font-size: 80%;
}
} | css/demo.css | @import url(http://fonts.googleapis.com/css?family=Raleway:400,300,800|Lora:400italic|Playfair+Display:700);
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'codropsicons';
src:url('../fonts/codropsicons/codropsicons.eot');
src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
url('../fonts/codropsicons/codropsicons.woff') format('woff'),
url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}
/* *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } */
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }
body {
background: #fff;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a {
color: #fff;
text-decoration: none;
}
/* To Navigation Style */
.codrops-top {
width: 100%;
position: absolute;
top: 0;
left: 0;
text-transform: uppercase;
font-weight: 800;
font-size: 1em;
padding: 0 32px;
letter-spacing: 1px;
z-index: 10000;
}
.codrops-top a {
display: inline-block;
color: #fff;
text-decoration: none;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
.codrops-top span.right {
float: right;
}
.codrops-top span.right a {
display: block;
float: left;
}
.codrops-icon:before {
text-transform: none;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-family: 'codropsicons';
text-align: center;
speak: none;
margin: 0 0.55em 0 0;
-webkit-font-smoothing: antialiased;
}
.codrops-icon-drop:before {
content: "\e001";
}
.codrops-icon-prev:before {
content: "\e004";
}
.codrops-demos {
padding: 0 0 1em;
position: relative;
}
.codrops-demos a {
font-weight: 800;
text-transform: uppercase;
font-size: 0.6em;
letter-spacing: 1px;
padding: 0.3em 0;
display: inline-block;
opacity: 0.7;
margin: 0 0.5em;
white-space: nowrap;
color: #cf4a5c;
}
.codrops-demos a:hover,
.codrops-demos a.current-demo {
opacity: 1;
color: #69606b;
}
.codrops-demos a.current-demo {
border-bottom: 3px solid #69606b;
}
@media screen and (max-width: 40em) {
.codrops-icon span {
display: none;
}
.related {
font-size: 80%;
}
} | 0.242564 | 0.053899 |
TD.titleText {
BACKGROUND: #eff7ff; PADDING-left: 5px;
}
TABLE.view {
FONT-SIZE: 12px;
/*BORDER:#aca9ac 1px solid;*/
}
TD.headerTitle {
BACKGROUND: #d5e2ee;
BORDER: #aca9ac 1px solid;
WIDTH: 100%;
}
TD.headerLeft {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
}
TD.header {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
}
TD.headerRight {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
WIDTH: 100%;
}
TD.itemLeft {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
vertical-align:top;
}
TD.item {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
vertical-align:top;
}
TD.itemRight {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
WIDTH: 100%;
vertical-align:top;
}
FONT.current {
padding: 2px;
font-weight: bold;
color: #FFFFFF;
background-color:#00008B;
}
TABLE.srcView {
FONT-SIZE: 12px; BORDER-LEFT:#dcdcdc 1px solid;BORDER-RIGHT:#dcdcdc 1px solid; BORDER-BOTTOM:#dcdcdc 1px solid;
}
TD.lineCount {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
PADDING-RIGHT: 3px;
FONT-SIZE: 12px;
}
TD.srcLine {
WIDTH: 100%;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
}
PRE.srcLine {
BACKGROUND: #ffffff; MARGIN-BOTTOM: 0px; FONT-SIZE: 12px;
}
TD.footer {
BORDER-TOP:#dcdcdc 1px solid; FONT-SIZE: 9px
}
/* Token Colours */
FONT.CharacerLiteral { color: #FF00FF; }
FONT.StringLiteral { color: #FF00FF; }
FONT.SingleLineComment { color: #008000; }
FONT.FormalComment { color: #008000; }
FONT.MultiLineComment { color: #008000; }
FONT.ABSTRACT { color: #2020BF ; font-weight: normal }
FONT.BOOLEAN { color: #2020BF ; font-weight: normal }
FONT.BREAK { color: #2020BF ; font-weight: normal }
FONT.BYTE { color: #2020BF ; font-weight: normal }
FONT.CASE { color: #2020BF ; font-weight: normal }
FONT.CATCH { color: #2020BF ; font-weight: normal }
FONT.CHAR { color: #2020BF ; font-weight: normal }
FONT.CLASS { color: #2020BF ; font-weight: normal }
FONT.CONST { color: #2020BF ; font-weight: normal }
FONT.CONTINUE { color: #2020BF ; font-weight: normal }
FONT.DEFAULT { color: #2020BF ; font-weight: normal }
FONT.DO { color: #2020BF ; font-weight: normal }
FONT.DOUBLE { color: #2020BF ; font-weight: normal }
FONT.ELSE { color: #2020BF ; font-weight: normal }
FONT.EXTENDS { color: #2020BF ; font-weight: normal }
FONT.FALSE { color: #2020BF ; font-weight: normal }
FONT.FINAL { color: #2020BF ; font-weight: normal }
FONT.FINALLY { color: #2020BF ; font-weight: normal }
FONT.FLOAT { color: #2020BF ; font-weight: normal }
FONT.FOR { color: #2020BF ; font-weight: normal }
FONT.GOTO { color: #2020BF ; font-weight: normal }
FONT.IF { color: #2020BF ; font-weight: normal }
FONT.IMPLEMENTS { color: #2020BF ; font-weight: normal }
FONT.IMPORT { color: #2020BF ; font-weight: normal }
FONT.INSTANCEOF { color: #2020BF ; font-weight: normal }
FONT.INT { color: #2020BF ; font-weight: normal }
FONT.INTERFACE { color: #2020BF ; font-weight: normal }
FONT.LONG { color: #2020BF ; font-weight: normal }
FONT.NATIVE { color: #2020BF ; font-weight: normal }
FONT.NEW { color: #2020BF ; font-weight: normal }
FONT.PACKAGE { color: #2020BF ; font-weight: normal }
FONT.PRIVATE { color: #2020BF ; font-weight: normal }
FONT.PROTECTED { color: #2020BF ; font-weight: normal }
FONT.PUBLIC { color: #2020BF ; font-weight: normal }
FONT.RETURN { color: #2020BF ; font-weight: normal }
FONT.SHORT { color: #2020BF ; font-weight: normal }
FONT.STATIC { color: #2020BF ; font-weight: normal }
FONT.SUPER { color: #2020BF ; font-weight: normal }
FONT.SWITCH { color: #2020BF ; font-weight: normal }
FONT.SYCHRONIZED { color: #2020BF ; font-weight: normal }
FONT.THIS { color: #2020BF ; font-weight: normal }
FONT.THROW { color: #2020BF ; font-weight: normal }
FONT.THROWS { color: #2020BF ; font-weight: normal }
FONT.TRANSIENT { color: #2020BF ; font-weight: normal }
FONT.TRUE { color: #2020BF ; font-weight: normal }
FONT.TRY { color: #2020BF ; font-weight: normal }
FONT.VOID { color: #2020BF ; font-weight: normal }
FONT.VOLATILE { color: #2020BF ; font-weight: normal }
FONT.WHILE { color: #2020BF ; font-weight: normal }
FONT.StrictFP { color: #2020BF ; font-weight: normal }
FONT.LITERAL { color: #b27b8c }
FONT.IDENTIFIER { color: #000000 } | plugins/org.apache.forrest.plugin.input.wiki/resources/chaperon/misc/java.css | TD.titleText {
BACKGROUND: #eff7ff; PADDING-left: 5px;
}
TABLE.view {
FONT-SIZE: 12px;
/*BORDER:#aca9ac 1px solid;*/
}
TD.headerTitle {
BACKGROUND: #d5e2ee;
BORDER: #aca9ac 1px solid;
WIDTH: 100%;
}
TD.headerLeft {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
}
TD.header {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
}
TD.headerRight {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
WIDTH: 100%;
}
TD.itemLeft {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
vertical-align:top;
}
TD.item {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
vertical-align:top;
}
TD.itemRight {
BACKGROUND: #ffffff;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
WIDTH: 100%;
vertical-align:top;
}
FONT.current {
padding: 2px;
font-weight: bold;
color: #FFFFFF;
background-color:#00008B;
}
TABLE.srcView {
FONT-SIZE: 12px; BORDER-LEFT:#dcdcdc 1px solid;BORDER-RIGHT:#dcdcdc 1px solid; BORDER-BOTTOM:#dcdcdc 1px solid;
}
TD.lineCount {
BACKGROUND: #f6f6f6;
BORDER-LEFT: #aca9ac 1px solid;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
PADDING-RIGHT: 3px;
FONT-SIZE: 12px;
}
TD.srcLine {
WIDTH: 100%;
BORDER-BOTTOM: #aca9ac 1px solid;
BORDER-RIGHT: #aca9ac 1px solid;
}
PRE.srcLine {
BACKGROUND: #ffffff; MARGIN-BOTTOM: 0px; FONT-SIZE: 12px;
}
TD.footer {
BORDER-TOP:#dcdcdc 1px solid; FONT-SIZE: 9px
}
/* Token Colours */
FONT.CharacerLiteral { color: #FF00FF; }
FONT.StringLiteral { color: #FF00FF; }
FONT.SingleLineComment { color: #008000; }
FONT.FormalComment { color: #008000; }
FONT.MultiLineComment { color: #008000; }
FONT.ABSTRACT { color: #2020BF ; font-weight: normal }
FONT.BOOLEAN { color: #2020BF ; font-weight: normal }
FONT.BREAK { color: #2020BF ; font-weight: normal }
FONT.BYTE { color: #2020BF ; font-weight: normal }
FONT.CASE { color: #2020BF ; font-weight: normal }
FONT.CATCH { color: #2020BF ; font-weight: normal }
FONT.CHAR { color: #2020BF ; font-weight: normal }
FONT.CLASS { color: #2020BF ; font-weight: normal }
FONT.CONST { color: #2020BF ; font-weight: normal }
FONT.CONTINUE { color: #2020BF ; font-weight: normal }
FONT.DEFAULT { color: #2020BF ; font-weight: normal }
FONT.DO { color: #2020BF ; font-weight: normal }
FONT.DOUBLE { color: #2020BF ; font-weight: normal }
FONT.ELSE { color: #2020BF ; font-weight: normal }
FONT.EXTENDS { color: #2020BF ; font-weight: normal }
FONT.FALSE { color: #2020BF ; font-weight: normal }
FONT.FINAL { color: #2020BF ; font-weight: normal }
FONT.FINALLY { color: #2020BF ; font-weight: normal }
FONT.FLOAT { color: #2020BF ; font-weight: normal }
FONT.FOR { color: #2020BF ; font-weight: normal }
FONT.GOTO { color: #2020BF ; font-weight: normal }
FONT.IF { color: #2020BF ; font-weight: normal }
FONT.IMPLEMENTS { color: #2020BF ; font-weight: normal }
FONT.IMPORT { color: #2020BF ; font-weight: normal }
FONT.INSTANCEOF { color: #2020BF ; font-weight: normal }
FONT.INT { color: #2020BF ; font-weight: normal }
FONT.INTERFACE { color: #2020BF ; font-weight: normal }
FONT.LONG { color: #2020BF ; font-weight: normal }
FONT.NATIVE { color: #2020BF ; font-weight: normal }
FONT.NEW { color: #2020BF ; font-weight: normal }
FONT.PACKAGE { color: #2020BF ; font-weight: normal }
FONT.PRIVATE { color: #2020BF ; font-weight: normal }
FONT.PROTECTED { color: #2020BF ; font-weight: normal }
FONT.PUBLIC { color: #2020BF ; font-weight: normal }
FONT.RETURN { color: #2020BF ; font-weight: normal }
FONT.SHORT { color: #2020BF ; font-weight: normal }
FONT.STATIC { color: #2020BF ; font-weight: normal }
FONT.SUPER { color: #2020BF ; font-weight: normal }
FONT.SWITCH { color: #2020BF ; font-weight: normal }
FONT.SYCHRONIZED { color: #2020BF ; font-weight: normal }
FONT.THIS { color: #2020BF ; font-weight: normal }
FONT.THROW { color: #2020BF ; font-weight: normal }
FONT.THROWS { color: #2020BF ; font-weight: normal }
FONT.TRANSIENT { color: #2020BF ; font-weight: normal }
FONT.TRUE { color: #2020BF ; font-weight: normal }
FONT.TRY { color: #2020BF ; font-weight: normal }
FONT.VOID { color: #2020BF ; font-weight: normal }
FONT.VOLATILE { color: #2020BF ; font-weight: normal }
FONT.WHILE { color: #2020BF ; font-weight: normal }
FONT.StrictFP { color: #2020BF ; font-weight: normal }
FONT.LITERAL { color: #b27b8c }
FONT.IDENTIFIER { color: #000000 } | 0.326808 | 0.165155 |
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 100;
src: local(""), url("./lato-v17-latin-100.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-100italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 100;
src: local(""), url("./lato-v17-latin-100italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-100italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-300 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 300;
src: local(""), url("./lato-v17-latin-300.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-300italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 300;
src: local(""), url("./lato-v17-latin-300italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-300italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-regular - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 400;
src: local(""), url("./lato-v17-latin-regular.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 400;
src: local(""), url("./lato-v17-latin-italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 700;
src: local(""), url("./lato-v17-latin-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 700;
src: local(""), url("./lato-v17-latin-700italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-700italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-900 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 900;
src: local(""), url("./lato-v17-latin-900.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-900italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 900;
src: local(""), url("./lato-v17-latin-900italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-900italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
} | dashboard/src/assets/Lato/font-face.css | @font-face {
font-family: "Lato";
font-style: normal;
font-weight: 100;
src: local(""), url("./lato-v17-latin-100.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-100italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 100;
src: local(""), url("./lato-v17-latin-100italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-100italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-300 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 300;
src: local(""), url("./lato-v17-latin-300.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-300italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 300;
src: local(""), url("./lato-v17-latin-300italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-300italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-regular - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 400;
src: local(""), url("./lato-v17-latin-regular.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 400;
src: local(""), url("./lato-v17-latin-italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 700;
src: local(""), url("./lato-v17-latin-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 700;
src: local(""), url("./lato-v17-latin-700italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-700italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-900 - latin */
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 900;
src: local(""), url("./lato-v17-latin-900.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-900italic - latin */
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 900;
src: local(""), url("./lato-v17-latin-900italic.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */ url("./lato-v17-latin-900italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
} | 0.218253 | 0.062875 |
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body{
font-size: 16px;
font-family: 'Oswald', sans-serif;
}
.img-user{
text-align: center;
width: 88.2%;
height: 354px;
padding: 25px;
background-image: url("../vistas/imagenes/9934-azul-liso.jpg");
position: relative;
left: 72px;
}
.avatar{
width: 210px;
height: 210px;
border-radius: 50%;
position: relative;
left: 20px;
}
.info{
width: 100%;
margin: auto;
/*grid-template-columns: repeat(4, 1fr);*/
gap: 25px;
margin: 0.5px;
}
/*Navegacion*/
.main-info{
font-size: 16px;
display: flex;
justify-content: space-around;
background-color: #bebebe;
width: 88.2%;
height: 115px;
padding: 20px 0;
position: relative;
left: 72px;
}
.main-info .usuario{
position: relative;
left: -200px;
}
.main-info .correo{
position: relative;
left: -580px
}
button{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #6e717a;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 100px;
top: -10px;
}
.cerrar-perfil{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #5672a7;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 1060px;
top: -485px;
}
.borrar-perfil{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #5672a7;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 903px;
top: -424px;
}
.subir{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #56727a;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 148px;
top: -38px;
}
.subir{
padding: 11px 10px;
background: #5672a7;
color:#fff;
border:0px solid #fff;
}
.subir:hover{
background: rgba(94,125,227, .9);
}
button:hover {
background: rgba(94,125,227, .9);
} | public/styles/stylePerfil.css | *{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body{
font-size: 16px;
font-family: 'Oswald', sans-serif;
}
.img-user{
text-align: center;
width: 88.2%;
height: 354px;
padding: 25px;
background-image: url("../vistas/imagenes/9934-azul-liso.jpg");
position: relative;
left: 72px;
}
.avatar{
width: 210px;
height: 210px;
border-radius: 50%;
position: relative;
left: 20px;
}
.info{
width: 100%;
margin: auto;
/*grid-template-columns: repeat(4, 1fr);*/
gap: 25px;
margin: 0.5px;
}
/*Navegacion*/
.main-info{
font-size: 16px;
display: flex;
justify-content: space-around;
background-color: #bebebe;
width: 88.2%;
height: 115px;
padding: 20px 0;
position: relative;
left: 72px;
}
.main-info .usuario{
position: relative;
left: -200px;
}
.main-info .correo{
position: relative;
left: -580px
}
button{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #6e717a;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 100px;
top: -10px;
}
.cerrar-perfil{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #5672a7;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 1060px;
top: -485px;
}
.borrar-perfil{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #5672a7;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 903px;
top: -424px;
}
.subir{
padding: 0 20px;
height: 40px;
line-height: 40px;
border: none;
color: #fff;
background: #56727a;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
cursor: pointer;
position: relative;
left: 148px;
top: -38px;
}
.subir{
padding: 11px 10px;
background: #5672a7;
color:#fff;
border:0px solid #fff;
}
.subir:hover{
background: rgba(94,125,227, .9);
}
button:hover {
background: rgba(94,125,227, .9);
} | 0.306008 | 0.065995 |
@font-face {
font-family: 'Nanum Square';
src: url('./resources/fonts/NanumSquareL.ttf');
}
body {
-webkit-user-select: none;
padding: 0;
margin: 0;
background-color: #1a1a1a;
font-family: 'san-serif';
}
header {
position: fixed;
left: 0;
top: 0;
right: 0;
height: 30px;
overflow: visible;
}
#titlebar {
-webkit-app-region: drag;
display: inline-block;
height: 30px;
width: 100%;
background-color: #323232;
overflow: visible;
font-size: 0;
}
#titlebar-cover {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 30px;
background-color: #191919;
pointer-events: none;
opacity: 0;
}
#titlebar-topmargin {
-webkit-app-region: no-drag;
pointer-events: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 6px;
}
#titlebar-leftmargin {
-webkit-app-region: no-drag;
pointer-events: none;
position: fixed;
left: 0;
top: 0;
width: 6px;
height: 30px;
}
#titlebar-logo {
-webkit-app-region: drag;
display: inline-block;
float: left;
width: 30px;
height: 30px;
background-image: url("./resources/main-window/titlebar-logo.png");
background-position: center;
background-repeat: none;
background-size: cover;
}
#titlebar-menu {
-webkit-app-region: no-drag;
height: 30px;
display: inline-block;
float: left;
overflow: visible;
}
.titlebar-menu-button {
display: inline-block;
float: left;
line-height: 30px;
font-size: 13px;
padding-left: 8px;
padding-right: 8px;
background-color: transparent;
color: #d0d0d0;
}
.titlebar-menu-button:hover {
background-color: #3f3f3f;
color: #ffffff;
}
.titlebar-menu-button-open {
background-color: #3f3f3f;
color: #ffffff;
}
.titlebar-menu-button-open:hover {
background-color: #3f3f3f;
color: #ffffff;
}
.menu-menu {
background-color: #232323;
position: fixed;
min-width: 250px;
box-shadow: 1px 3px 3px 0px #111111;
padding-top: 6px;
padding-bottom: 6px;
}
.menu-menu-item {
color: #d0d0d0;
font-size: 13px;
padding-left: 20px;
padding-right: 20px;
height: 26px;
line-height: 26px;
overflow: hidden;
}
.menu-menu-item-label {
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
float: left;
pointer-events: none;
margin-right: 40px;
height: 30px;
white-space: nowrap;
}
.menu-menu-item-accelerator {
display: inline-block;
float: right;
pointer-events: none;
}
.menu-menu-item-arrow {
display: inline-block;
float: right;
pointer-events: none;
margin-right: -13px;
font-size: 9px;
}
.menu-menu-item:hover {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-open {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-open:hover {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-inactive {
color: #757575;
}
.menu-menu-item-inactive:hover {
color: #757575;
background-color: transparent;
}
.menu-menu-separator {
height: 9px;
padding-left: 12px;
padding-right: 12px;
}
.menu-menu-separator:hover {
background-color: transparent;
}
.menu-menu-separator-line {
height: 1px;
margin-top: 4px;
background-color: #909090;
}
.titlebar-button {
-webkit-app-region: no-drag;
float: right;
display: inline-block;
width: 45px;
height: 100%;
background-color: transparent;
background-position: center;
background-repeat: none;
background-size: cover;
}
.titlebar-button:hover {
background-color: #3f3f3f;
}
.titlebar-button-restore {
background-color: transparent;
}
.titlebar-button-restore:hover {
background-color: transparent;
}
#titlebar-closebutton {
background-image: url("./resources/main-window/close-button-white.png");
}
#titlebar-closebutton:hover {
background-color: #cc1122;
background-image: url("./resources/main-window/close-button-white.png");
}
#titlebar-maximizedbutton {
background-image: url("./resources/main-window/maximized-button-white.png");
}
#titlebar-unmaximizedbutton {
background-image: url("./resources/main-window/unmaximized-button-white.png");
}
#titlebar-minimizebutton {
background-image: url("./resources/main-window/minimize-button-white.png");
}
iframe {
width: 100%;
height: 100%;
border: none;
}
#window {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.window-window-div {
position: absolute;
}
.window-window {
}
.window-window-tab {
background-color: #282828;
} | engine/editor-dev/index.css | @font-face {
font-family: 'Nanum Square';
src: url('./resources/fonts/NanumSquareL.ttf');
}
body {
-webkit-user-select: none;
padding: 0;
margin: 0;
background-color: #1a1a1a;
font-family: 'san-serif';
}
header {
position: fixed;
left: 0;
top: 0;
right: 0;
height: 30px;
overflow: visible;
}
#titlebar {
-webkit-app-region: drag;
display: inline-block;
height: 30px;
width: 100%;
background-color: #323232;
overflow: visible;
font-size: 0;
}
#titlebar-cover {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 30px;
background-color: #191919;
pointer-events: none;
opacity: 0;
}
#titlebar-topmargin {
-webkit-app-region: no-drag;
pointer-events: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 6px;
}
#titlebar-leftmargin {
-webkit-app-region: no-drag;
pointer-events: none;
position: fixed;
left: 0;
top: 0;
width: 6px;
height: 30px;
}
#titlebar-logo {
-webkit-app-region: drag;
display: inline-block;
float: left;
width: 30px;
height: 30px;
background-image: url("./resources/main-window/titlebar-logo.png");
background-position: center;
background-repeat: none;
background-size: cover;
}
#titlebar-menu {
-webkit-app-region: no-drag;
height: 30px;
display: inline-block;
float: left;
overflow: visible;
}
.titlebar-menu-button {
display: inline-block;
float: left;
line-height: 30px;
font-size: 13px;
padding-left: 8px;
padding-right: 8px;
background-color: transparent;
color: #d0d0d0;
}
.titlebar-menu-button:hover {
background-color: #3f3f3f;
color: #ffffff;
}
.titlebar-menu-button-open {
background-color: #3f3f3f;
color: #ffffff;
}
.titlebar-menu-button-open:hover {
background-color: #3f3f3f;
color: #ffffff;
}
.menu-menu {
background-color: #232323;
position: fixed;
min-width: 250px;
box-shadow: 1px 3px 3px 0px #111111;
padding-top: 6px;
padding-bottom: 6px;
}
.menu-menu-item {
color: #d0d0d0;
font-size: 13px;
padding-left: 20px;
padding-right: 20px;
height: 26px;
line-height: 26px;
overflow: hidden;
}
.menu-menu-item-label {
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
float: left;
pointer-events: none;
margin-right: 40px;
height: 30px;
white-space: nowrap;
}
.menu-menu-item-accelerator {
display: inline-block;
float: right;
pointer-events: none;
}
.menu-menu-item-arrow {
display: inline-block;
float: right;
pointer-events: none;
margin-right: -13px;
font-size: 9px;
}
.menu-menu-item:hover {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-open {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-open:hover {
background-color: #2f2f2f;
color: #ffffff;
}
.menu-menu-item-inactive {
color: #757575;
}
.menu-menu-item-inactive:hover {
color: #757575;
background-color: transparent;
}
.menu-menu-separator {
height: 9px;
padding-left: 12px;
padding-right: 12px;
}
.menu-menu-separator:hover {
background-color: transparent;
}
.menu-menu-separator-line {
height: 1px;
margin-top: 4px;
background-color: #909090;
}
.titlebar-button {
-webkit-app-region: no-drag;
float: right;
display: inline-block;
width: 45px;
height: 100%;
background-color: transparent;
background-position: center;
background-repeat: none;
background-size: cover;
}
.titlebar-button:hover {
background-color: #3f3f3f;
}
.titlebar-button-restore {
background-color: transparent;
}
.titlebar-button-restore:hover {
background-color: transparent;
}
#titlebar-closebutton {
background-image: url("./resources/main-window/close-button-white.png");
}
#titlebar-closebutton:hover {
background-color: #cc1122;
background-image: url("./resources/main-window/close-button-white.png");
}
#titlebar-maximizedbutton {
background-image: url("./resources/main-window/maximized-button-white.png");
}
#titlebar-unmaximizedbutton {
background-image: url("./resources/main-window/unmaximized-button-white.png");
}
#titlebar-minimizebutton {
background-image: url("./resources/main-window/minimize-button-white.png");
}
iframe {
width: 100%;
height: 100%;
border: none;
}
#window {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.window-window-div {
position: absolute;
}
.window-window {
}
.window-window-tab {
background-color: #282828;
} | 0.402392 | 0.069732 |
body {
width: 1920px;
height: 1080px;
overflow: hidden;
background-color: black;
}
.hidden {
display: none;
}
.diamond {
display: inline-block;
width: 24px;
height: 24px;
margin: 0 10px 0 20px;
-webkit-transform: translate(5px, 2px) rotate(-45deg);
-moz-transform: translate(5px, 2px) rotate(-45deg);
-ms-transform: translate(5px, 2px) rotate(-45deg);
-o-transform: translate(5px, 2px) rotate(-45deg);
transform: translate(5px, 2px) rotate(-45deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.diamond-empty {
display: inline-block;
width: 16px;
height: 16px;
margin: 0 10px 0 20px;
border: solid 4px white;
-webkit-transform: translate(5px, 2px) rotate(-45deg);
-moz-transform: translate(5px, 2px) rotate(-45deg);
-ms-transform: translate(5px, 2px) rotate(-45deg);
-o-transform: translate(5px, 2px) rotate(-45deg);
transform: translate(5px, 2px) rotate(-45deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.tag {
white-space: nowrap;
}
#shade {
position: relative;
background: rgba(0, 0, 0, 0.5);
width: 1920px;
height: 1080px;
}
#logo {
position: absolute;
background-image: url(/images/otl.png);
background-size: 345px 344px;
width: 345px;
height: 344px;
top: 5px;
left: 787px;
}
#title {
position: absolute;
top: 360px;
color: #ff6600;
font-size: 36px;
text-align: center;
width: 1920px;
font-weight: bold;
}
#left-team {
position: absolute;
border: 2px solid;
left: 5px;
top: 175px;
font-size: 48px;
color: white;
width: 777px;
height: 48px;
display: grid;
grid-template-columns: repeat(2, auto);
}
#right-team {
position: absolute;
border: 2px solid;
right: 5px;
top: 175px;
font-size: 48px;
color: white;
width: 777px;
height: 48px;
display: grid;
grid-template-columns: repeat(2, auto);
grid-column-gap: 10px;
column-gap: 10px;
}
#left-rating .provisional, #right-rating .provisional {
color: #999999;
font-style: italic;
}
#left-rating {
position: absolute;
border: 1px solid;
left: 5px;
top: 232px;
font-size: 24px;
color: white;
height: 24px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
column-gap: 10px;
padding: 3px;
}
#right-rating {
position: absolute;
border: 1px solid;
right: 5px;
top: 232px;
font-size: 24px;
color: white;
height: 24px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
column-gap: 10px;
padding: 3px;
}
#head-to-head {
position: absolute;
top: 584px;
width: 1920px;
font-size: 24px;
color: #ff6600;
text-align: center;
}
#head-to-head .record {
color: white;
}
#previous {
position: absolute;
top: 642px;
color: white;
font-size: 24px;
width: 1920px;
}
#previous .grid {
margin: 0 auto;
display: grid;
grid-template-columns: 30% 20% 20% 30%;
max-width: 350px;
}
#previous .grid > div {
padding: 0 5px;
}
#previous .last {
grid-row: 1;
grid-column: 1 / span 4;
color: #ff6600;
text-align: center;
}
#previous .left-tag {
grid-row: 2;
grid-column: 1;
text-align: right;
}
#previous .left-score {
grid-row: 2;
grid-column: 2;
text-align: left;
}
#previous .right-tag {
grid-row: 2;
grid-column: 3;
text-align: right;
}
#previous .right-score {
grid-row: 2;
grid-column: 4;
text-align: left;
}
#previous .map {
grid-row: 3;
grid-column: 1 / span 4;
text-align: center;
}
#previous .date {
grid-row: 4;
grid-column: 1 / span 4;
text-align: center;
}
#previous .best {
grid-row: 5;
grid-column: 1 / span 4;
color: #ff6600;
margin-top: 10px;
text-align: center;
}
#previous .best-stats {
grid-row: 6;
grid-column: 1 / span 4;
text-align: center;
}
#left-roster {
display: grid;
grid-column-gap: 10px;
column-gap: 10px;
position: absolute;
left: 5px;
top: 270px;
color: white;
font-size: 20px;
}
#left-roster .header {
color: #ff6600;
}
#right-roster {
display: grid;
grid-column-gap: 10px;
column-gap: 10px;
position: absolute;
right: 5px;
top: 270px;
color: white;
font-size: 20px;
}
#right-roster .header {
color: #ff6600;
}
.roster-ta {
grid-template-columns: repeat(8, auto);
}
.roster-ctf {
grid-template-columns: repeat(8, auto);
}
#left-viewing {
position: absolute;
bottom: 502px;
right: 1133px;
text-align: right;
font-size: 14px;
color: white;
border: solid 1px;
padding: 5px;
}
#right-viewing {
position: absolute;
bottom: 502px;
left: 1133px;
font-size: 14px;
color: white;
border: solid 1px;
padding: 5px;
}
.twitch-image {
display: inline-block;
background-image: url(/images/twitch.png);
background-size: 16px 16px;
width: 16px;
height: 16px;
}
#left-viewing .player, #right-viewing .player {
font-size: 36px;
}
#left-viewing .twitch, #right-viewing .twitch {
font-size: 24px;
}
#left-frame {
position: absolute;
left: 5px;
bottom: 50px;
border: 2px solid;
padding: 5px;
width: 768px;
height: 432px;
}
#right-frame {
position: absolute;
right: 5px;
bottom: 50px;
border: 2px solid;
padding: 5px;
width: 768px;
height: 432px;
}
#left-player, #right-player {
width: 768px;
height: 432px;
}
.numeric {
font-family: "Overdigit" !important;
line-height: 0.95;
} | public/css/cast.css | body {
width: 1920px;
height: 1080px;
overflow: hidden;
background-color: black;
}
.hidden {
display: none;
}
.diamond {
display: inline-block;
width: 24px;
height: 24px;
margin: 0 10px 0 20px;
-webkit-transform: translate(5px, 2px) rotate(-45deg);
-moz-transform: translate(5px, 2px) rotate(-45deg);
-ms-transform: translate(5px, 2px) rotate(-45deg);
-o-transform: translate(5px, 2px) rotate(-45deg);
transform: translate(5px, 2px) rotate(-45deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.diamond-empty {
display: inline-block;
width: 16px;
height: 16px;
margin: 0 10px 0 20px;
border: solid 4px white;
-webkit-transform: translate(5px, 2px) rotate(-45deg);
-moz-transform: translate(5px, 2px) rotate(-45deg);
-ms-transform: translate(5px, 2px) rotate(-45deg);
-o-transform: translate(5px, 2px) rotate(-45deg);
transform: translate(5px, 2px) rotate(-45deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.tag {
white-space: nowrap;
}
#shade {
position: relative;
background: rgba(0, 0, 0, 0.5);
width: 1920px;
height: 1080px;
}
#logo {
position: absolute;
background-image: url(/images/otl.png);
background-size: 345px 344px;
width: 345px;
height: 344px;
top: 5px;
left: 787px;
}
#title {
position: absolute;
top: 360px;
color: #ff6600;
font-size: 36px;
text-align: center;
width: 1920px;
font-weight: bold;
}
#left-team {
position: absolute;
border: 2px solid;
left: 5px;
top: 175px;
font-size: 48px;
color: white;
width: 777px;
height: 48px;
display: grid;
grid-template-columns: repeat(2, auto);
}
#right-team {
position: absolute;
border: 2px solid;
right: 5px;
top: 175px;
font-size: 48px;
color: white;
width: 777px;
height: 48px;
display: grid;
grid-template-columns: repeat(2, auto);
grid-column-gap: 10px;
column-gap: 10px;
}
#left-rating .provisional, #right-rating .provisional {
color: #999999;
font-style: italic;
}
#left-rating {
position: absolute;
border: 1px solid;
left: 5px;
top: 232px;
font-size: 24px;
color: white;
height: 24px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
column-gap: 10px;
padding: 3px;
}
#right-rating {
position: absolute;
border: 1px solid;
right: 5px;
top: 232px;
font-size: 24px;
color: white;
height: 24px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 10px;
column-gap: 10px;
padding: 3px;
}
#head-to-head {
position: absolute;
top: 584px;
width: 1920px;
font-size: 24px;
color: #ff6600;
text-align: center;
}
#head-to-head .record {
color: white;
}
#previous {
position: absolute;
top: 642px;
color: white;
font-size: 24px;
width: 1920px;
}
#previous .grid {
margin: 0 auto;
display: grid;
grid-template-columns: 30% 20% 20% 30%;
max-width: 350px;
}
#previous .grid > div {
padding: 0 5px;
}
#previous .last {
grid-row: 1;
grid-column: 1 / span 4;
color: #ff6600;
text-align: center;
}
#previous .left-tag {
grid-row: 2;
grid-column: 1;
text-align: right;
}
#previous .left-score {
grid-row: 2;
grid-column: 2;
text-align: left;
}
#previous .right-tag {
grid-row: 2;
grid-column: 3;
text-align: right;
}
#previous .right-score {
grid-row: 2;
grid-column: 4;
text-align: left;
}
#previous .map {
grid-row: 3;
grid-column: 1 / span 4;
text-align: center;
}
#previous .date {
grid-row: 4;
grid-column: 1 / span 4;
text-align: center;
}
#previous .best {
grid-row: 5;
grid-column: 1 / span 4;
color: #ff6600;
margin-top: 10px;
text-align: center;
}
#previous .best-stats {
grid-row: 6;
grid-column: 1 / span 4;
text-align: center;
}
#left-roster {
display: grid;
grid-column-gap: 10px;
column-gap: 10px;
position: absolute;
left: 5px;
top: 270px;
color: white;
font-size: 20px;
}
#left-roster .header {
color: #ff6600;
}
#right-roster {
display: grid;
grid-column-gap: 10px;
column-gap: 10px;
position: absolute;
right: 5px;
top: 270px;
color: white;
font-size: 20px;
}
#right-roster .header {
color: #ff6600;
}
.roster-ta {
grid-template-columns: repeat(8, auto);
}
.roster-ctf {
grid-template-columns: repeat(8, auto);
}
#left-viewing {
position: absolute;
bottom: 502px;
right: 1133px;
text-align: right;
font-size: 14px;
color: white;
border: solid 1px;
padding: 5px;
}
#right-viewing {
position: absolute;
bottom: 502px;
left: 1133px;
font-size: 14px;
color: white;
border: solid 1px;
padding: 5px;
}
.twitch-image {
display: inline-block;
background-image: url(/images/twitch.png);
background-size: 16px 16px;
width: 16px;
height: 16px;
}
#left-viewing .player, #right-viewing .player {
font-size: 36px;
}
#left-viewing .twitch, #right-viewing .twitch {
font-size: 24px;
}
#left-frame {
position: absolute;
left: 5px;
bottom: 50px;
border: 2px solid;
padding: 5px;
width: 768px;
height: 432px;
}
#right-frame {
position: absolute;
right: 5px;
bottom: 50px;
border: 2px solid;
padding: 5px;
width: 768px;
height: 432px;
}
#left-player, #right-player {
width: 768px;
height: 432px;
}
.numeric {
font-family: "Overdigit" !important;
line-height: 0.95;
} | 0.499512 | 0.1881 |
@name monkeytype.com - 6/7/2021, 12:32:47 AM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Caspid's typing
@author Caspid
==/UserStyle== */
@-moz-document domain("monkeytype.com") {
body {
margin: 0;
padding: 0;
}
/* hide "monkey see" */
#top .logo .top {
display: none !important;
}
/* space between logo and menu */
#menu {
margin-left: 1em;
}
/* make logo thinner */
#top .logo .bottom,
.pageTest .ssWatermark,
#result .ssWatermark {
font-family: Open Sans;
font-weight: 200;
letter-spacing: -0.01em;
}
.pageTest .ssWatermark {
font-size: 1rem;
}
/* hide start test, "i" and leaderboards */
#menu #startTestButton,
.leaderboards.view-leaderboards,
.view-about {
display: none;
}
/* make restart button transparent/invisible */
#restartTestButton {
opacity: 0 !important;
}
/* make logo disappear while typing */
#top.focus .logo .bottom {
color: var(--bg-color)!important;
}
/* results headers use slightly dimmer text color instead of sub color */
#result .stats .group .top {
color: var(--text-color);
opacity: 0.9;
}
/* stop monkey from shaking */
#monkey {
opacity: 0.9;
animation: none;
}
/* hide "input history" until hovered */
#resultWordsHistory .title,
.leftright .right {
opacity: 0;
}
.title:hover,
.leftright .right:hover {
opacity: 1 !important;
}
/* hide "toggle words history" */
#showWordHistoryButton {
display: none;
}
/* make mouseover on input text use main color */
.words .word .wordInputAfter {
color: var(--balloon-text-color);
background: var(--main-color);
}
/* make input text the sub color */
#result #resultWordsHistory .correct/*, #result #resultReplay .correct*/
{
color: var(--sub-color);
}
.word letter.corrected {
border-bottom-style: solid;
}
.word letter.extraCorrected {
border-right-style: solid;
}
/* make buttons prettier */
#result .buttons {
margin-top: 2em;
}
#restartTestButton:hover,
#restartTestButton:focus,
#showWordHistoryButton:hover,
#showWordHistoryButton:focus,
#saveScreenshotButton:hover,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:hover,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:hover,
#nextTestButton:focus,
#practiseMissedWordsButton:hover,
#practiseMissedWordsButton:focus,
#watchReplayButton:hover,
#watchReplayButton:focus {
color: #fff;
background: var(--main-color);
}
#restartTestButton:hover,
#restartTestButton:focus,
#showWordHistoryButton:hover,
#showWordHistoryButton:focus,
#saveScreenshotButton:hover,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:hover,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:hover,
#nextTestButton:focus,
#practiseMissedWordsButton:hover,
#practiseMissedWordsButton:focus,
#watchReplayButton:hover,
#watchReplayButton:focus {}
#restartTestButton:focus,
#showWordHistoryButton:focus,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:focus,
#practiseMissedWordsButton:focus,
#watchReplayButton:focus {
background: var(--main-color);
}
} | data/usercss/205322.user.css | @name monkeytype.com - 6/7/2021, 12:32:47 AM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Caspid's typing
@author Caspid
==/UserStyle== */
@-moz-document domain("monkeytype.com") {
body {
margin: 0;
padding: 0;
}
/* hide "monkey see" */
#top .logo .top {
display: none !important;
}
/* space between logo and menu */
#menu {
margin-left: 1em;
}
/* make logo thinner */
#top .logo .bottom,
.pageTest .ssWatermark,
#result .ssWatermark {
font-family: Open Sans;
font-weight: 200;
letter-spacing: -0.01em;
}
.pageTest .ssWatermark {
font-size: 1rem;
}
/* hide start test, "i" and leaderboards */
#menu #startTestButton,
.leaderboards.view-leaderboards,
.view-about {
display: none;
}
/* make restart button transparent/invisible */
#restartTestButton {
opacity: 0 !important;
}
/* make logo disappear while typing */
#top.focus .logo .bottom {
color: var(--bg-color)!important;
}
/* results headers use slightly dimmer text color instead of sub color */
#result .stats .group .top {
color: var(--text-color);
opacity: 0.9;
}
/* stop monkey from shaking */
#monkey {
opacity: 0.9;
animation: none;
}
/* hide "input history" until hovered */
#resultWordsHistory .title,
.leftright .right {
opacity: 0;
}
.title:hover,
.leftright .right:hover {
opacity: 1 !important;
}
/* hide "toggle words history" */
#showWordHistoryButton {
display: none;
}
/* make mouseover on input text use main color */
.words .word .wordInputAfter {
color: var(--balloon-text-color);
background: var(--main-color);
}
/* make input text the sub color */
#result #resultWordsHistory .correct/*, #result #resultReplay .correct*/
{
color: var(--sub-color);
}
.word letter.corrected {
border-bottom-style: solid;
}
.word letter.extraCorrected {
border-right-style: solid;
}
/* make buttons prettier */
#result .buttons {
margin-top: 2em;
}
#restartTestButton:hover,
#restartTestButton:focus,
#showWordHistoryButton:hover,
#showWordHistoryButton:focus,
#saveScreenshotButton:hover,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:hover,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:hover,
#nextTestButton:focus,
#practiseMissedWordsButton:hover,
#practiseMissedWordsButton:focus,
#watchReplayButton:hover,
#watchReplayButton:focus {
color: #fff;
background: var(--main-color);
}
#restartTestButton:hover,
#restartTestButton:focus,
#showWordHistoryButton:hover,
#showWordHistoryButton:focus,
#saveScreenshotButton:hover,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:hover,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:hover,
#nextTestButton:focus,
#practiseMissedWordsButton:hover,
#practiseMissedWordsButton:focus,
#watchReplayButton:hover,
#watchReplayButton:focus {}
#restartTestButton:focus,
#showWordHistoryButton:focus,
#saveScreenshotButton:focus,
#restartTestButtonWithSameWordset:focus,
#nextTestButton:focus,
#practiseMissedWordsButton:focus,
#watchReplayButton:focus {
background: var(--main-color);
}
} | 0.304559 | 0.120361 |
* Colours
*/
body,
.infinite-loader,
#infinite-handle span {
background-color: #eae8dc;
}
a,
a:visited {
color: #2b6e9d;
}
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border-radius: 0;
border: 3px double #c7c4b4;
}
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
#infinite-handle span:hover,
.hero-area,
.bypostauthor .by-post-author {
background-color: #2b6e9d;
}
.dropdown-toggle {
border: 0;
}
blockquote:before,
blockquote:after {
background-color: #c5c3bf;
}
.jetpack-social-navigation a:hover,
.jetpack-social-navigation a:focus,
.entry-title a:hover,
.entry-meta a:hover,
.entry-footer a:hover,
.post-navigation a:hover,
.site-info a:hover,
.site-title a:hover {
color: #2b6e9d;
}
.contact-info-area {
border-color: #c7c4b4;
position: relative;
}
.site-header .contact-info-area {
border-bottom: 2px solid #c7c4b4;
}
.contact-info-area,
.contact-info-area a {
color: #222;
}
.contact-info-area a:focus,
.contact-info-area a:hover {
color: #2b6e9d;
}
.contact-info-area .icon {
fill: #2b6e9d;
}
.site-header .contact-info-area:before {
border-top: 1px solid #c7c4b4;
bottom: -5px;
content: "";
left: 0;
position: absolute;
width: 100%;
}
.site-title a {
color: #342707;
}
.hero-area .button {
border-color: rgba(0,0,0,0.5);
}
.hero-area .button {
background-color: #fff;
}
.hero-area .button:focus,
.hero-area .button:hover {
background-color: rgba(255,255,255,0.8);
opacity: 1.0;
}
#infinite-handle span:hover {
color: #fff;
}
.site-title a,
.main-navigation a {
color: #222;
}
@media all and (min-width: 768px) {
.main-navigation li:hover > a,
.main-navigation li.focus > a,
.main-navigation li.current-menu-item > a {
background-color: #2b6e9d;
}
}
@media all and (max-width: 768px) {
.main-navigation.toggled .menu {
background-color: #eae8dc;
}
.main-navigation.toggled li a:hover,
.main-navigation.toggled li a:focus,
.main-navigation.toggled li a:active {
background-color: #2b6e9d;
}
.main-navigation.toggled ul {
border-top-color: #c7c4b4;
}
.main-navigation > div {
border-radius: 0;
}
.main-navigation ul > li:first-child > a {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.main-navigation ul > li:last-child > a {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
.entry-title a {
color: #fff;
}
@media all and (min-width: 768px) {
.single-post article,
.page article {
border: 4px double #c7c4b4;
background-color: rgba(255,255,255,0.3);
}
}
.blog .entry-title a:hover,
.archive .entry-title a:hover,
.search .entry-title a:hover {
color: rgba(255,255,255,0.6);
}
.blog .entry-meta:before,
.blog .entry-meta:after,
.archive .entry-meta:before,
.archive .entry-meta:after,
.search .entry-meta:before,
.search .entry-meta:after {
color: rgba(255,255,255,0.5);
}
.comments-area,
.respond {
background-color: #dbd8cb;
}
.post-nav-wrapper,
.site-footer,
.widget-area,
.entry-author,
.entry-links,
.page-header,
.comments-area {
border-top-color: #c7c4b4;
}
.single.no-featured-image .site-header,
.page.no-featured-image .site-header,
.error-404 .page-header,
.no-results .page-header,
.search-no-results .page-header {
border-bottom-color: #c7c4b4;
}
.cat-links .icon,
.tags-links .icon,
.edit-link .icon {
fill: #aba899;
}
.respond {
border-top-color: #c7c4b4;
}
.comments-title {
border-bottom-color: #c7c4b4;
}
.comment-wrapper,
.pingback,
.trackback {
background: transparent;
}
.search-form .search-field {
background-color: #e5e4e1;
}
/**
* Fonts
*/
/* Body Text */
body,
button,
input,
select,
textarea,
.post-navigation a,
.site-description,
.header-search .s,
.entry-meta,
.site-footer,
.main-navigation a,
.entry-footer,
.posts-navigation,
.post-navigation a span,
.comment-actions,
.comment-navigation,
#wp-calendar tfoot a,
form,
input,
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span {
font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
}
.post-navigation a span,
.comment-actions a {
text-transform: none;
font-weight: 400;
}
.author-title {
font-size: 20px;
font-size: 2rem;
}
.entry-footer {
font-size: 14px;
font-size: 1.4rem;
}
.widget {
font-size: 16px;
font-size: 1.6rem;
}
.entry-meta,
.entry-meta a {
font-style: italic;
font-weight: 400;
}
.entry-content {
font-size: 18px;
font-size: 1.8rem;
}
.comment-content {
font-size: 16px;
font-size: 1.6rem;
}
/* Headers */
h1,
h2,
h3,
h4,
h5,
h6,
.archive .page-title,
.comment-header,
.site-title,
.entry-title {
font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
font-weight: 400;
}
.widget-title {
font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
font-size: 18px;
font-size: 1.8rem;
font-weight: 700;
text-transform: none;
}
.comments-title,
.comment-reply-title {
font-weight: 400;
}
/* De-uppercasing */
.main-navigation a,
.entry-meta,
.entry-meta a,
.archive .page-title,
.search .page-title,
.error404 .page-title,
.comment-navigation a,
.posts-navigation a,
.comments-title,
.comment-reply-title,
.site-info {
text-transform: none;
letter-spacing: 0;
}
/* Font Weights */
.entry-meta a,
.site-info {
font-weight: 400;
}
/**
* More layout-y changes
*/
/* Header */
@media screen and (min-width: 768px) {
.site-header {
padding-bottom: 16px;
}
}
/* Main Navigation */
.menu-toggle .icon {
margin-top: -2px;
}
.main-navigation ul ul > li:first-child > a,
.main-navigation ul ul > li:last-child > a {
border-radius: 0;
}
@media (min-width: 768px) {
.main-navigation li:hover > a,
.main-navigation li.focus > a,
.main-navigation li.current-menu-item > a {
border-radius: 0;
}
}
/* Hero/CTA Area */
.hero-area-wrapper {
text-align: center;
}
.hero-area-title {
padding-top: 2em;
position: relative;
}
.hero-area-title:before {
border-top: 3px solid rgba(255,255,255,0.8);
border-bottom: 1px solid rgba(255,255,255,0.6);
content: "";
height: 7px;
left: 5%;
position: absolute;
width: 90%;
top: 0;
}
.hero-area-title:after {
}
@media all and (min-width: 768px) {
.hero-area-title:before {
left: 50%;
margin-left: -250px;
width: 500px;
}
}
.hero-area.has-post-thumbnail {
-webkit-filter: sepia(0.3);
filter: sepia(0.3);
}
.hero-area-title,
.hero-area-content,
.hero-area-button {
-webkit-filter: none;
filter: none;
}
.hero-area-button .button {
position: relative;
}
.hero-area-button .button:before,
.hero-area-button .button:after {
border-top: 1px solid rgba(255,255,255,0.6);
content: "";
display: block;
position: absolute;
width: 3em;
top: 25px;
}
.hero-area-button .button:before {
right: 100%;
right: calc(100% + 20px);
}
.hero-area-button .button:after {
left: 100%;
left: calc(100% + 20px);;
}
/* Blog Posts page */
.entry-thumbnail {
-webkit-filter: sepia(0.3);
filter: sepia(0.3);
}
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media all and (min-width: 600px) {
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
border: 1px solid #fff;
bottom: auto;
left: 20%;
margin-top: -130px;
right: 20%;
top: 50%;
width: auto;
}
}
@media all and (min-width: 768px) {
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
left: 25%;
right: 25%;
}
.archive .entry-thumbnail + .entry-header:before,
.blog .entry-thumbnail + .entry-header:before,
.search .entry-thumbnail + .entry-header:before {
bottom: 4px;
left: 4px;
right: 4px;
border: 1px solid rgba(255,255,255,0.5);
content: "";
position: absolute;
top: 4px;
}
}
.archive .entry-thumbnail + .entry-header .entry-meta,
.archive .entry-thumbnail + .entry-header .entry-title,
.blog .entry-thumbnail + .entry-header .entry-meta,
.blog .entry-thumbnail + .entry-header .entry-title,
.search .entry-thumbnail + .entry-header .entry-meta,
.search .entry-thumbnail + .entry-header .entry-title {
position: relative;
z-index: 2;
}
/* Single Posts & Pages */
.single-post article,
.page article {
margin-bottom: 0;
padding-bottom: 30px;
}
.page .entry-footer {
padding-bottom: 70px;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding-top: 30px;
}
.page .hentry {
padding-bottom: 70px;
}
@media (min-width: 768px) {
.single-post article,
.page article {
margin-left: auto;
margin-right: auto;
max-width: 900px;
padding-left: 15px;
padding-right: 15px;
width: auto;
}
}
@media (min-width: 600px) {
.single-post article,
.page article {
margin-bottom: 20px;
margin-top: 20px;
padding-top: 50px;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding: 20px 0 40px;
}
.single-post .entry-footer,
.page .entry-footer {
margin-top: 0;
padding-top: 40px;
}
}
@media (min-width: 768px) {
.single-post article,
.page article {
margin-bottom: 70px;
margin-top: 70px;
padding-bottom: 70px;
padding-left: 70px;
padding-right: 70px;
padding-top: 70px;
}
.entry-title,
.page-content,
.entry-content,
.entry-summary,
.entry-footer,
.post-navigation,
.comments-wrapper,
.respond-wrapper {
max-width: 100%;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding: 20px 0 40px;
}
.single-post .entry-footer,
.page .entry-footer {
margin-top: 0;
padding-top: 40px;
}
}
.entry-meta:before,
.entry-meta:after {
content: "\007E";
margin: 0 0.2em;
}
.byline:before,
.comments-link:before {
content: "\2022";
}
.entry-author,
.entry-links {
padding-top: 40px;
}
/* Comments */
.comment-wrapper,
.pingback,
.trackback {
border-radius: 0;
}
.comment-wrapper:after {
display: none;
}
@media all and (min-width: 600px) {
.comment-wrapper {
padding-top: 20px;
padding-left: 0;
padding-right: 0;
}
}
@media all and (max-width: 600px) {
.bypostauthor .by-post-author {
top: 42px;
}
}
/* Widgets */
.widget-area {
border-top-style: double;
border-top-width: 4px;
}
/* Woocommerce */
.woocommerce-tabs ul.tabs li.active a {
color: #222;
}
.site-header-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a,
.site-header-cart:hover>li>a,
.site-header-cart.focus>li>a,
.site-header-cart>li:hover>a,
.site-header-cart>li.focus>a {
background: #2b6e9d;
border-radius: 0;
}
@media all and (max-width: 768px) {
.site-header-cart .cart-contents {
border-radius: 0;
border: 3px double #c7c4b4;
}
.main-navigation > div {
background: #eae8dc;
}
}
.star-rating span:before,
p.stars:hover a:before {
color: #2b6e9d;
}
.woocommerce-tabs ul.tabs,
.woocommerce-tabs ul.tabs li,
.single-product div.product .commentlist .comment,
.single-product div.product .cart,
.single-product div.product .product_meta,
.upsells.products, .related.products,
table.shop_table_responsive,
.woocommerce-cart-form tbody,
table.shop_table_responsive thead th,
table.shop_table_responsive tbody tr,
.woocommerce-checkout .shop_table thead,
.woocommerce-checkout .shop_table tbody,
.woocommerce-checkout .shop_table tfoot,
.woocommerce.widget_products .product_list_widget li,
.woocommerce.widget_recent_reviews .product_list_widget li,
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li,
.woocommerce.widget_top_rated_products .product_list_widget li,
.woocommerce.widget_recently_viewed_products .product_list_widget li,
.woocommerce.widget_products .product_list_widget li:last-child,
.woocommerce.widget_recent_reviews .product_list_widget li:last-child,
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li:last-child,
.woocommerce.widget_top_rated_products .product_list_widget li:last-child,
.woocommerce.widget_recently_viewed_products .product_list_widget li:last-child,
.woocommerce.widget_products .product_list_widget li:nth-last-child(2),
.woocommerce.widget_recent_reviews .product_list_widget li:nth-last-child(2),
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li:nth-last-child(2),
.woocommerce.widget_top_rated_products .product_list_widget li:nth-last-child(2),
.woocommerce.widget_recently_viewed_products .product_list_widget li:nth-last-child(2) {
border-color: #c7c4b4;
}
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a {
display: inline-block;
}
.woocommerce-tabs ul.tabs li.active {
border-bottom-color: #eae8dc;
}
.woocommerce.widget_product_search .woocommerce-product-search .search-field {
background-color: #e5e4e1;
}
.woocommerce-tabs ul.tabs li.active:hover a,
.woocommerce-tabs ul.tabs li.active a {
background-color: #eae8dc;
}
.woocommerce-MyAccount-navigation li:hover > a,
.woocommerce-MyAccount-navigation li.focus > a,
.woocommerce-tabs ul.tabs li:hover a {
background-color: #222;
}
.site-header-cart .cart-contents,
.site-header-cart .widget_shopping_cart_content .mini_cart_item .quantity,
.single-product div.product .commentlist .comment-text .meta,
.single-product div.product .commentlist .comment-text .description,
.single-product div.product .product_meta,
.single-product div.product .comment-reply-title,
.single-product div.product .entry-summary .price,
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-ordering select,
.woocommerce-MyAccount-content address,
.woocommerce-MyAccount-navigation a,
.woocommerce-tabs ul.tabs li a,
.woocommerce.widget .amount,
.woocommerce.widget .reviewer,
.woocommerce.widget .total,
.woocommerce.widget .quantity,
.woocommerce-tabs ul.tabs li a,
.onsale {
font-family: "Libre Baskerville", "Helvetica Neue", Helvetica, arial, sans-serif;
}
.single-product div.product .woocommerce-Reviews-title,
ul.products li.product .woocommerce-loop-product__title,
.woocommerce-tabs .panel h2:first-of-type,
.woocommerce-tabs ul.tabs li a,
.upsells.products>h2:first-of-type,
.related.products>h2:first-of-type,
.onsale {
text-transform: none;
} | styles/vintage.css | * Colours
*/
body,
.infinite-loader,
#infinite-handle span {
background-color: #eae8dc;
}
a,
a:visited {
color: #2b6e9d;
}
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border-radius: 0;
border: 3px double #c7c4b4;
}
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
#infinite-handle span:hover,
.hero-area,
.bypostauthor .by-post-author {
background-color: #2b6e9d;
}
.dropdown-toggle {
border: 0;
}
blockquote:before,
blockquote:after {
background-color: #c5c3bf;
}
.jetpack-social-navigation a:hover,
.jetpack-social-navigation a:focus,
.entry-title a:hover,
.entry-meta a:hover,
.entry-footer a:hover,
.post-navigation a:hover,
.site-info a:hover,
.site-title a:hover {
color: #2b6e9d;
}
.contact-info-area {
border-color: #c7c4b4;
position: relative;
}
.site-header .contact-info-area {
border-bottom: 2px solid #c7c4b4;
}
.contact-info-area,
.contact-info-area a {
color: #222;
}
.contact-info-area a:focus,
.contact-info-area a:hover {
color: #2b6e9d;
}
.contact-info-area .icon {
fill: #2b6e9d;
}
.site-header .contact-info-area:before {
border-top: 1px solid #c7c4b4;
bottom: -5px;
content: "";
left: 0;
position: absolute;
width: 100%;
}
.site-title a {
color: #342707;
}
.hero-area .button {
border-color: rgba(0,0,0,0.5);
}
.hero-area .button {
background-color: #fff;
}
.hero-area .button:focus,
.hero-area .button:hover {
background-color: rgba(255,255,255,0.8);
opacity: 1.0;
}
#infinite-handle span:hover {
color: #fff;
}
.site-title a,
.main-navigation a {
color: #222;
}
@media all and (min-width: 768px) {
.main-navigation li:hover > a,
.main-navigation li.focus > a,
.main-navigation li.current-menu-item > a {
background-color: #2b6e9d;
}
}
@media all and (max-width: 768px) {
.main-navigation.toggled .menu {
background-color: #eae8dc;
}
.main-navigation.toggled li a:hover,
.main-navigation.toggled li a:focus,
.main-navigation.toggled li a:active {
background-color: #2b6e9d;
}
.main-navigation.toggled ul {
border-top-color: #c7c4b4;
}
.main-navigation > div {
border-radius: 0;
}
.main-navigation ul > li:first-child > a {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.main-navigation ul > li:last-child > a {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
.entry-title a {
color: #fff;
}
@media all and (min-width: 768px) {
.single-post article,
.page article {
border: 4px double #c7c4b4;
background-color: rgba(255,255,255,0.3);
}
}
.blog .entry-title a:hover,
.archive .entry-title a:hover,
.search .entry-title a:hover {
color: rgba(255,255,255,0.6);
}
.blog .entry-meta:before,
.blog .entry-meta:after,
.archive .entry-meta:before,
.archive .entry-meta:after,
.search .entry-meta:before,
.search .entry-meta:after {
color: rgba(255,255,255,0.5);
}
.comments-area,
.respond {
background-color: #dbd8cb;
}
.post-nav-wrapper,
.site-footer,
.widget-area,
.entry-author,
.entry-links,
.page-header,
.comments-area {
border-top-color: #c7c4b4;
}
.single.no-featured-image .site-header,
.page.no-featured-image .site-header,
.error-404 .page-header,
.no-results .page-header,
.search-no-results .page-header {
border-bottom-color: #c7c4b4;
}
.cat-links .icon,
.tags-links .icon,
.edit-link .icon {
fill: #aba899;
}
.respond {
border-top-color: #c7c4b4;
}
.comments-title {
border-bottom-color: #c7c4b4;
}
.comment-wrapper,
.pingback,
.trackback {
background: transparent;
}
.search-form .search-field {
background-color: #e5e4e1;
}
/**
* Fonts
*/
/* Body Text */
body,
button,
input,
select,
textarea,
.post-navigation a,
.site-description,
.header-search .s,
.entry-meta,
.site-footer,
.main-navigation a,
.entry-footer,
.posts-navigation,
.post-navigation a span,
.comment-actions,
.comment-navigation,
#wp-calendar tfoot a,
form,
input,
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span {
font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
}
.post-navigation a span,
.comment-actions a {
text-transform: none;
font-weight: 400;
}
.author-title {
font-size: 20px;
font-size: 2rem;
}
.entry-footer {
font-size: 14px;
font-size: 1.4rem;
}
.widget {
font-size: 16px;
font-size: 1.6rem;
}
.entry-meta,
.entry-meta a {
font-style: italic;
font-weight: 400;
}
.entry-content {
font-size: 18px;
font-size: 1.8rem;
}
.comment-content {
font-size: 16px;
font-size: 1.6rem;
}
/* Headers */
h1,
h2,
h3,
h4,
h5,
h6,
.archive .page-title,
.comment-header,
.site-title,
.entry-title {
font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
font-weight: 400;
}
.widget-title {
font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
font-size: 18px;
font-size: 1.8rem;
font-weight: 700;
text-transform: none;
}
.comments-title,
.comment-reply-title {
font-weight: 400;
}
/* De-uppercasing */
.main-navigation a,
.entry-meta,
.entry-meta a,
.archive .page-title,
.search .page-title,
.error404 .page-title,
.comment-navigation a,
.posts-navigation a,
.comments-title,
.comment-reply-title,
.site-info {
text-transform: none;
letter-spacing: 0;
}
/* Font Weights */
.entry-meta a,
.site-info {
font-weight: 400;
}
/**
* More layout-y changes
*/
/* Header */
@media screen and (min-width: 768px) {
.site-header {
padding-bottom: 16px;
}
}
/* Main Navigation */
.menu-toggle .icon {
margin-top: -2px;
}
.main-navigation ul ul > li:first-child > a,
.main-navigation ul ul > li:last-child > a {
border-radius: 0;
}
@media (min-width: 768px) {
.main-navigation li:hover > a,
.main-navigation li.focus > a,
.main-navigation li.current-menu-item > a {
border-radius: 0;
}
}
/* Hero/CTA Area */
.hero-area-wrapper {
text-align: center;
}
.hero-area-title {
padding-top: 2em;
position: relative;
}
.hero-area-title:before {
border-top: 3px solid rgba(255,255,255,0.8);
border-bottom: 1px solid rgba(255,255,255,0.6);
content: "";
height: 7px;
left: 5%;
position: absolute;
width: 90%;
top: 0;
}
.hero-area-title:after {
}
@media all and (min-width: 768px) {
.hero-area-title:before {
left: 50%;
margin-left: -250px;
width: 500px;
}
}
.hero-area.has-post-thumbnail {
-webkit-filter: sepia(0.3);
filter: sepia(0.3);
}
.hero-area-title,
.hero-area-content,
.hero-area-button {
-webkit-filter: none;
filter: none;
}
.hero-area-button .button {
position: relative;
}
.hero-area-button .button:before,
.hero-area-button .button:after {
border-top: 1px solid rgba(255,255,255,0.6);
content: "";
display: block;
position: absolute;
width: 3em;
top: 25px;
}
.hero-area-button .button:before {
right: 100%;
right: calc(100% + 20px);
}
.hero-area-button .button:after {
left: 100%;
left: calc(100% + 20px);;
}
/* Blog Posts page */
.entry-thumbnail {
-webkit-filter: sepia(0.3);
filter: sepia(0.3);
}
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media all and (min-width: 600px) {
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
border: 1px solid #fff;
bottom: auto;
left: 20%;
margin-top: -130px;
right: 20%;
top: 50%;
width: auto;
}
}
@media all and (min-width: 768px) {
.archive .entry-thumbnail + .entry-header,
.blog .entry-thumbnail + .entry-header,
.search .entry-thumbnail + .entry-header {
left: 25%;
right: 25%;
}
.archive .entry-thumbnail + .entry-header:before,
.blog .entry-thumbnail + .entry-header:before,
.search .entry-thumbnail + .entry-header:before {
bottom: 4px;
left: 4px;
right: 4px;
border: 1px solid rgba(255,255,255,0.5);
content: "";
position: absolute;
top: 4px;
}
}
.archive .entry-thumbnail + .entry-header .entry-meta,
.archive .entry-thumbnail + .entry-header .entry-title,
.blog .entry-thumbnail + .entry-header .entry-meta,
.blog .entry-thumbnail + .entry-header .entry-title,
.search .entry-thumbnail + .entry-header .entry-meta,
.search .entry-thumbnail + .entry-header .entry-title {
position: relative;
z-index: 2;
}
/* Single Posts & Pages */
.single-post article,
.page article {
margin-bottom: 0;
padding-bottom: 30px;
}
.page .entry-footer {
padding-bottom: 70px;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding-top: 30px;
}
.page .hentry {
padding-bottom: 70px;
}
@media (min-width: 768px) {
.single-post article,
.page article {
margin-left: auto;
margin-right: auto;
max-width: 900px;
padding-left: 15px;
padding-right: 15px;
width: auto;
}
}
@media (min-width: 600px) {
.single-post article,
.page article {
margin-bottom: 20px;
margin-top: 20px;
padding-top: 50px;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding: 20px 0 40px;
}
.single-post .entry-footer,
.page .entry-footer {
margin-top: 0;
padding-top: 40px;
}
}
@media (min-width: 768px) {
.single-post article,
.page article {
margin-bottom: 70px;
margin-top: 70px;
padding-bottom: 70px;
padding-left: 70px;
padding-right: 70px;
padding-top: 70px;
}
.entry-title,
.page-content,
.entry-content,
.entry-summary,
.entry-footer,
.post-navigation,
.comments-wrapper,
.respond-wrapper {
max-width: 100%;
}
.single-post .entry-header,
.page-template-default .entry-header {
padding: 20px 0 40px;
}
.single-post .entry-footer,
.page .entry-footer {
margin-top: 0;
padding-top: 40px;
}
}
.entry-meta:before,
.entry-meta:after {
content: "\007E";
margin: 0 0.2em;
}
.byline:before,
.comments-link:before {
content: "\2022";
}
.entry-author,
.entry-links {
padding-top: 40px;
}
/* Comments */
.comment-wrapper,
.pingback,
.trackback {
border-radius: 0;
}
.comment-wrapper:after {
display: none;
}
@media all and (min-width: 600px) {
.comment-wrapper {
padding-top: 20px;
padding-left: 0;
padding-right: 0;
}
}
@media all and (max-width: 600px) {
.bypostauthor .by-post-author {
top: 42px;
}
}
/* Widgets */
.widget-area {
border-top-style: double;
border-top-width: 4px;
}
/* Woocommerce */
.woocommerce-tabs ul.tabs li.active a {
color: #222;
}
.site-header-cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a,
.site-header-cart:hover>li>a,
.site-header-cart.focus>li>a,
.site-header-cart>li:hover>a,
.site-header-cart>li.focus>a {
background: #2b6e9d;
border-radius: 0;
}
@media all and (max-width: 768px) {
.site-header-cart .cart-contents {
border-radius: 0;
border: 3px double #c7c4b4;
}
.main-navigation > div {
background: #eae8dc;
}
}
.star-rating span:before,
p.stars:hover a:before {
color: #2b6e9d;
}
.woocommerce-tabs ul.tabs,
.woocommerce-tabs ul.tabs li,
.single-product div.product .commentlist .comment,
.single-product div.product .cart,
.single-product div.product .product_meta,
.upsells.products, .related.products,
table.shop_table_responsive,
.woocommerce-cart-form tbody,
table.shop_table_responsive thead th,
table.shop_table_responsive tbody tr,
.woocommerce-checkout .shop_table thead,
.woocommerce-checkout .shop_table tbody,
.woocommerce-checkout .shop_table tfoot,
.woocommerce.widget_products .product_list_widget li,
.woocommerce.widget_recent_reviews .product_list_widget li,
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li,
.woocommerce.widget_top_rated_products .product_list_widget li,
.woocommerce.widget_recently_viewed_products .product_list_widget li,
.woocommerce.widget_products .product_list_widget li:last-child,
.woocommerce.widget_recent_reviews .product_list_widget li:last-child,
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li:last-child,
.woocommerce.widget_top_rated_products .product_list_widget li:last-child,
.woocommerce.widget_recently_viewed_products .product_list_widget li:last-child,
.woocommerce.widget_products .product_list_widget li:nth-last-child(2),
.woocommerce.widget_recent_reviews .product_list_widget li:nth-last-child(2),
.widget-area .woocommerce.widget_shopping_cart .product_list_widget li:nth-last-child(2),
.woocommerce.widget_top_rated_products .product_list_widget li:nth-last-child(2),
.woocommerce.widget_recently_viewed_products .product_list_widget li:nth-last-child(2) {
border-color: #c7c4b4;
}
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a {
display: inline-block;
}
.woocommerce-tabs ul.tabs li.active {
border-bottom-color: #eae8dc;
}
.woocommerce.widget_product_search .woocommerce-product-search .search-field {
background-color: #e5e4e1;
}
.woocommerce-tabs ul.tabs li.active:hover a,
.woocommerce-tabs ul.tabs li.active a {
background-color: #eae8dc;
}
.woocommerce-MyAccount-navigation li:hover > a,
.woocommerce-MyAccount-navigation li.focus > a,
.woocommerce-tabs ul.tabs li:hover a {
background-color: #222;
}
.site-header-cart .cart-contents,
.site-header-cart .widget_shopping_cart_content .mini_cart_item .quantity,
.single-product div.product .commentlist .comment-text .meta,
.single-product div.product .commentlist .comment-text .description,
.single-product div.product .product_meta,
.single-product div.product .comment-reply-title,
.single-product div.product .entry-summary .price,
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-ordering select,
.woocommerce-MyAccount-content address,
.woocommerce-MyAccount-navigation a,
.woocommerce-tabs ul.tabs li a,
.woocommerce.widget .amount,
.woocommerce.widget .reviewer,
.woocommerce.widget .total,
.woocommerce.widget .quantity,
.woocommerce-tabs ul.tabs li a,
.onsale {
font-family: "Libre Baskerville", "Helvetica Neue", Helvetica, arial, sans-serif;
}
.single-product div.product .woocommerce-Reviews-title,
ul.products li.product .woocommerce-loop-product__title,
.woocommerce-tabs .panel h2:first-of-type,
.woocommerce-tabs ul.tabs li a,
.upsells.products>h2:first-of-type,
.related.products>h2:first-of-type,
.onsale {
text-transform: none;
} | 0.345547 | 0.110471 |
*{margin:0;padding:0;}
body{font:16px/1.5 '微软雅黑';background:#fff;color:#333}
a{color:#333;text-decoration:none;}
/*a:link {color: #333;} 未访问的链接 */
/*a:visited {color: #333;} 已访问的链接 */
a:hover{color:#333;text-decoration:none;}
li {list-style-type:none;}
input ,textarea{outline:none;border:1px solid #ccc;}
table tr{
color:#333;
line-height:35px;
}
.floatfalse{
clear: both;
}
.floatleft{
float:left;
}
.floatright{
float:right;
}
.show{
display: block !important;
}
.hide{
display: none !important;
}
.pcdiv-all{
width:100%;
}
.pcdiv-auto{
width:1200px;
margin: 0px auto;
}
.margin-auto{
margin: 0px auto;
}
.color-red{
color:red;
}
.color-green{
color:green;
}
.color-blue{
color: #007DDB;
}
.color-hei{
color:#000;
}
.color-hui{
color:#666;
}
.goods_gkp_p{
color:red;
font-size: 17px;
font-weight:600;
}
.layui-form-select dl dd.layui-this{
background-color: red;
color: #fff;
}
.layui-select-title{
transition: all 0.4s;
border:1px solid #eee;
}
.layui-select-title:hover{
border:1px solid red;
}
.layui-form-onswitch {
border-color: red;
background-color: red;
}
.btnlist-a {
padding: 5px 10px;
background: #eee;
transition: all 0.4s;
}
.btnlist-a:hover{
background: red;
color:#fff;
}
/**分页**/
.page-div{
clear:both;
padding-top: 50px;
}
.pagination{
width:100%;
height:30px;
margin-top: 20px;border-left:1px solid #ccc;
}
.pagination li:hover{
background: #5a98de;color:#fff;
transition: all 0.5s;
}
.pagination li:hover a{
transition: all 0.5s;
color:#fff;
}
.pagination li{
min-width:30px;
height:30px;
border:1px solid #ccc;
border-left:none;
float:left;
text-align: center;
padding-left: 5px;
padding-right:5px;
}
.pagination li span,.pagination li a{
line-height:27px;
font-size:16px;
}
.active{
background: red;
color:#fff;
}
.pagetext{
width:50px;
}
.pagesubmit{
width:50px;
background: #eee;
cursor: pointer;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
background: red;
}
.layui-laypage a:hover{
color:red;
}
.goodsdetails-tul{
margin-left: -10px;
}
.goodsdetails-tul li{
min-width: 50px;
margin-left: 10px;
float:left;
font-size:17px;
height:40px;
line-height: 40px;
}
.goodstul-span{
margin-left: 10px;
}
.wushuju_text{
padding-top: 30px;
text-align: center;
background: #eee;
padding-bottom: 20px;
}
.fileimg-btn{
width: 100px;
padding: 5px 10px;
background: #eee;
cursor: pointer;
transition: all 0.4s;
display: block;
text-align: center;
}
.fileimg-btn:hover{
background: #ccc;
}
.ge_pic_icon_Infor{
padding-top: 20px;
}
.goods_cos{
width:100%;
height:100%;
position: fixed;
top:0px;
display: none;
opacity: 0;
}
.goodscos_bacg{
width:100%;
height:100%;
position: absolute;
top:0px;
background: rgba(0,0,0,0.5);
}
.goodscos_det{
width:100%;
height:500px;
position: absolute;
top:10%;
}
.goodscos_auto{
width:1000px;
min-height:500px;
background: #fff;
margin:0px auto;
position: relative;
}
.goodscos_auto2{
width:100%;
min-height:500px;
float: left;
background: #fff;
padding-top: 30px;
padding-bottom: 30px;
}
.goodscos_guanbi{
width:25px;
height:25px;
background: #fff;
position: absolute;
top:-10px;
right:-10px;
border-radius: 50%;
text-align: center;
line-height: 25px;
border:1px solid #ccc;
cursor: pointer;
transition: all 0.4s;
}
.goodscos_guanbi:hover{
color:#fff;
background: red;
}
.goods-text1{
width: 80%;
min-height: 500px;
clear: both;
margin: 0px auto;
border: 1px solid #ccc;
padding: 10px;
float: left;
background: #fff;
margin-left: 80px;
}
.goods-imgas{
width:45%;
height:500px;
border-right:1px solid #ccc;
}
.goods-bens{
width:50%;
margin-left: 20px;
}
#cantuanp{
color:red;
display: none;
}
.goodsbens-ul{
width:100%;
margin-top: -15px;
}
.goodsbens-ul li{
margin-top:20px;
width: 100%;
}
.layui-btn{
background: red;
} | public/template/pc/default/static/css/public/common.css | *{margin:0;padding:0;}
body{font:16px/1.5 '微软雅黑';background:#fff;color:#333}
a{color:#333;text-decoration:none;}
/*a:link {color: #333;} 未访问的链接 */
/*a:visited {color: #333;} 已访问的链接 */
a:hover{color:#333;text-decoration:none;}
li {list-style-type:none;}
input ,textarea{outline:none;border:1px solid #ccc;}
table tr{
color:#333;
line-height:35px;
}
.floatfalse{
clear: both;
}
.floatleft{
float:left;
}
.floatright{
float:right;
}
.show{
display: block !important;
}
.hide{
display: none !important;
}
.pcdiv-all{
width:100%;
}
.pcdiv-auto{
width:1200px;
margin: 0px auto;
}
.margin-auto{
margin: 0px auto;
}
.color-red{
color:red;
}
.color-green{
color:green;
}
.color-blue{
color: #007DDB;
}
.color-hei{
color:#000;
}
.color-hui{
color:#666;
}
.goods_gkp_p{
color:red;
font-size: 17px;
font-weight:600;
}
.layui-form-select dl dd.layui-this{
background-color: red;
color: #fff;
}
.layui-select-title{
transition: all 0.4s;
border:1px solid #eee;
}
.layui-select-title:hover{
border:1px solid red;
}
.layui-form-onswitch {
border-color: red;
background-color: red;
}
.btnlist-a {
padding: 5px 10px;
background: #eee;
transition: all 0.4s;
}
.btnlist-a:hover{
background: red;
color:#fff;
}
/**分页**/
.page-div{
clear:both;
padding-top: 50px;
}
.pagination{
width:100%;
height:30px;
margin-top: 20px;border-left:1px solid #ccc;
}
.pagination li:hover{
background: #5a98de;color:#fff;
transition: all 0.5s;
}
.pagination li:hover a{
transition: all 0.5s;
color:#fff;
}
.pagination li{
min-width:30px;
height:30px;
border:1px solid #ccc;
border-left:none;
float:left;
text-align: center;
padding-left: 5px;
padding-right:5px;
}
.pagination li span,.pagination li a{
line-height:27px;
font-size:16px;
}
.active{
background: red;
color:#fff;
}
.pagetext{
width:50px;
}
.pagesubmit{
width:50px;
background: #eee;
cursor: pointer;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
background: red;
}
.layui-laypage a:hover{
color:red;
}
.goodsdetails-tul{
margin-left: -10px;
}
.goodsdetails-tul li{
min-width: 50px;
margin-left: 10px;
float:left;
font-size:17px;
height:40px;
line-height: 40px;
}
.goodstul-span{
margin-left: 10px;
}
.wushuju_text{
padding-top: 30px;
text-align: center;
background: #eee;
padding-bottom: 20px;
}
.fileimg-btn{
width: 100px;
padding: 5px 10px;
background: #eee;
cursor: pointer;
transition: all 0.4s;
display: block;
text-align: center;
}
.fileimg-btn:hover{
background: #ccc;
}
.ge_pic_icon_Infor{
padding-top: 20px;
}
.goods_cos{
width:100%;
height:100%;
position: fixed;
top:0px;
display: none;
opacity: 0;
}
.goodscos_bacg{
width:100%;
height:100%;
position: absolute;
top:0px;
background: rgba(0,0,0,0.5);
}
.goodscos_det{
width:100%;
height:500px;
position: absolute;
top:10%;
}
.goodscos_auto{
width:1000px;
min-height:500px;
background: #fff;
margin:0px auto;
position: relative;
}
.goodscos_auto2{
width:100%;
min-height:500px;
float: left;
background: #fff;
padding-top: 30px;
padding-bottom: 30px;
}
.goodscos_guanbi{
width:25px;
height:25px;
background: #fff;
position: absolute;
top:-10px;
right:-10px;
border-radius: 50%;
text-align: center;
line-height: 25px;
border:1px solid #ccc;
cursor: pointer;
transition: all 0.4s;
}
.goodscos_guanbi:hover{
color:#fff;
background: red;
}
.goods-text1{
width: 80%;
min-height: 500px;
clear: both;
margin: 0px auto;
border: 1px solid #ccc;
padding: 10px;
float: left;
background: #fff;
margin-left: 80px;
}
.goods-imgas{
width:45%;
height:500px;
border-right:1px solid #ccc;
}
.goods-bens{
width:50%;
margin-left: 20px;
}
#cantuanp{
color:red;
display: none;
}
.goodsbens-ul{
width:100%;
margin-top: -15px;
}
.goodsbens-ul li{
margin-top:20px;
width: 100%;
}
.layui-btn{
background: red;
} | 0.384219 | 0.078678 |
Created on : 2016-11-5, 10:55:22
Author : ROL
*/
/*
全局CSS
*/
*{
margin: 0px;
padding: 0px;
z-index: 0;
font-family: "Microsoft YaHei";
font-size: 12px;
}
html, body {
height: 100%;
background-color: #eeeeee;
}
body,p,pre,blockquote,
h1,h2,h3,h4,h5,h6,
dl,dt,dd,ul,ol,li,
form,select,input,textarea,button,
table,caption,tr,th,td {
margin:0;
padding:0;
}
ol,ul {
list-style:none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
img {
max-width: 100%;
border:0 none;
}
a,a:hover,a:active {
color: #3a4658;
text-decoration:none;
}
input,button,textarea,select,option {
font-family:inherit;
font-size:100%;
outline: 0;
}
textarea {
overflow: auto;
resize: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input{
height: 26px;
}
/*
四大主体模块
*/
.left{
float: left;
width:240px;
height: 100%;
background-color: #3a4658;
position: fixed;
z-index: 10;
}
.right{
float: right;
width: 87%;
width:-moz-calc(100% - 240px);
width:-webkit-calc(100% - 240px);
width: calc(100% - 240px);
}
.top{
height: 60px;
background-color: white;
position: fixed;
width: 88%;
}
.bottom{
width: 100%;
position:fixed;
bottom:0;
z-index:999;
overflow:visible;
height: 60px;
background-color: white;
text-align: center;
line-height: 60px;
}
/*
菜单模块
*/
.menu li{
line-height: 45px;
cursor: pointer;
}
/*
20161122
*/
.menu svg{
color: white;
font-size: 20px;
}
.menu svg.icon{
margin: 0px 10px 0px 10px;
display:inline-block;
vertical-align:middle;
}
.menu div.icon{
margin: 0px 10px 0px 10px;
display:inline-block;
width:8px;
height:8px;
vertical-align:middle;
}
/*.frist_page{
background:url('../images/frist_page_default.png') center no-repeat;
background-size: 100% 100%;
width: 20px !important;
height: 20px !important;
}*/
.second_page{
width: 20px !important;
height: 20px !important;
}
.flod{
background:url('../images/icons-list.png') 0px -8px no-repeat;
}
.menu li.active>div.frist_page{
background:url('../images/frsit_page_active.png') center no-repeat;
background-size: 100% 100%;
width: 20px !important;
height: 20px !important;
}
.menu li.active>div.flod{
background:url('../images/icons-list.png') -8px 0px no-repeat;
}
.menu li.active>div.menu{
display: block;
}
.menu li.active{
background-color: #29323e;
}
.menu li.active>a{
color: #fd9702;
}
.menu a{
font-size: 14px;
color: white;
vertical-align: middle;
display: inline-block;
width:-moz-calc(100% - 44px*2);
width:-webkit-calc(100% - 44px*2);
width: calc(100% - 44px*2);
}
.frist>ul>li{
margin-bottom: 1px;
}
.second{
display: none;
}
.second li{
position: relative;
}
.third{
width: 160px;
color: black;
position: absolute;
left: 100%;
top: 0%;
display: none;
background: #fd9702;
}
.angle{
position: absolute;
top: 18px;
left: -6px;
}
li:hover>a{
color: #fd9702;
}
.third li:hover>a{
color: #3a4658;
}
.third a{
margin-left: 20px;
}
/*
头部用户信息模块
*/
.head_img{
/*background:red no-repeat;*/ /*20161122*/
background: url('../images/user-logo.png') center center no-repeat;
background-size: 100% 100%;
display:inline-block;
width:40px;
height:40px;
border-radius: 5px;
vertical-align:middle;
margin-left: 10px;
}
.user{
float: right;
width: 140px;
height: 100%;
line-height: 60px;
}
.user a{
color: #3a4658;
}
.user:hover{
background-color: #3a4658;
}
.user:hover a{
color: white;
}
.user_angle{
position: absolute;
top: 28px;
right: 15px;
margin-right: 10px;
}
.user_extend{
display: none;
line-height: 40px;
text-align: center;
background-color: #fd9702;
}
div.user.active>div.user_extend{
display: block !important;
}
.user_extend a{
color: white;
}
/*
内容页面
*/
.content{
margin: 70px 20px 100px 20px;
}
.body{
border-radius: 5px;
background-color: white;
padding: 20px 20px 50px 30px;
}
/* = 表单
------------------------------------------ */
/* 表单组件 */
.text,.textarea {
padding: 4px;
border: 1px solid #eeeeee;
background-color: #fff;
transition: all .3s linear;
}
.text {
width: 220px;
/*height: 20px;*/
vertical-align: middle;
}
.focus {
border: 1px solid #a6e1f3;
box-shadow: 0 0 12px #baf7ff;
}
.textarea {
display: block;
}
.textarea textarea {
width: 100%;
height: 100px;
border: 0 none;
}
.checkbox + .checkbox,
.radio + .radio {
margin-left: 15px;
}
.checkbox, .radio {
display: inline-block;
height: 26px;
line-height: 26px;
}
.checkbox input,
.radio input {
margin-right: 5px;
*margin-right: 1px;
vertical-align: -8px;
}
select {
padding: 2px;
height: 34px;
width: 240px;
border: 1px solid #eee;
border-radius: 3px;
}
select[multiple] {
height: 200px;
}
/* 普通表单 */
.form-horizontal .form-item {
margin-bottom: 10px;
}
.form-horizontal .item-label {
display: block;
margin-right: 5px;
height: 30px;
line-height: 30px;
font-weight: bold;
}
.form-horizontal .item-label .check-tips {
margin-left: 8px;
color: #aaa;
font-weight: normal;
}
.form-horizontal .controls {
overflow: hidden;
}
.form-horizontal .controls label + label {
margin-left: 15px;
}
.form-horizontal .controls .check-tips {
margin-left: 20px;
color: #999;
}
label.textarea ~ .check-tips {
margin-left: 0;
}
.form-horizontal .controls .block.check-tips,
.form-horizontal .controls .block.textarea {
display: block;
margin-left: 0;
margin-bottom: 10px;
}
/* 搜索表单 */
.search-form .sleft {
margin-right: 10px;
float: left;
border: 1px solid #ebebeb;
background-color: #fff;
}
.search-form .drop-down {
float: left;
width: 81px;
height: 28px;
line-height: 28px;
}
.search-form .sort-txt {
display: inline-block;
margin: 0 2px 0 4px;
padding-left: 6px;
width: 45px;
cursor: pointer;
}
.search-form .drop-down ul {
position: absolute;
margin-left: -1px;
background-color: #fff;
border: 1px solid #ebebeb;
}
.search-form .drop-down ul li {
border-top: 1px solid #ebebeb;
}
.search-form .drop-down ul li:first-child {
border-top-width: 0;
}
.search-form .drop-down ul a {
padding: 0 10px;
height: 30px;
line-height: 30px;
width:60px;
color: #404040;
}
.search-form .drop-down ul a:hover {
background-color: #f0f0f0;
border:none;
}
.search-form .search-input {
float: left;
padding: 2px 4px;
width: 180px;
height: 24px;
line-height: 26px;
border: 0 none;
}
.search-form .sch-btn {
float: left;
margin: 2px 2px 0 0;
padding: 0 10px;
height: 26px;
line-height: 26px;
vertical-align: middle;
}
.search-form .sch-btn:hover {
color: #fff;
text-decoration: none;
border-bottom: 0 none;
}
.btn-search {
display: inline-block;
margin-top: 5px;
width: 16px;
height: 16px;
background: url(../images/bg_icon.png) no-repeat -50px 0;
}
/* 高级搜索 */
.search-form .adv-sch-pannel {
margin-right: 0;
}
.search-form .adv-sch-pannel .dropdown {
right: 0;
left: auto;
padding: 15px 0 15px 15px;
white-space: nowrap;
}
.adv-sch-pannel .row {
display: inline-block;
*display: inline;
margin-right: 15px;
}
.adv-sch-pannel label{
width:70px;
display:inline-block;
}
.adv-sch-pannel .row{
margin-bottom:6px;
}
/* 表单宽度预设 */
.input-large {
width: 390px;
}
.input-mid {
width: 150px;
}
.input-small {
width: 100px;
}
.input-mini {
width: 50px;
}
.input-8x {
width: 400px;
}
.input-7x {
width: 350px;
}
.input-6x {
width: 300px;
}
.input-5x {
width: 250px;
}
.input-4x {
width: 200px;
}
.input-3x {
width: 150px;
}
.input-2x {
width: 100px;
}
.input-x {
width: 50px;
}
.must {
margin: 3px;
color: #f00;
font-style: normal;
font-weight: normal;
vertical-align: middle;
}
/* 获得焦点边框 */
.focus{
border: 1px solid #d1d1d1;
box-shadow: 0 0 12px #ECECEC;
}
/* = 表格(默认有斑马条纹)
------------------------------------------ */
.data-table {
margin: 10px 0;
}
.data-table table {
width: 100%;
border-collapse: collapse;
}
.data-table caption {
height: 30px;
line-height: 30px;
font-weight: 700;
}
.data-table thead th,
.data-table tbody td {
padding:8px;
height: 19px;
line-height: 19px;
font-weight: 400;
}
.data-table thead th {
text-align: left;
color:#fff;
background-color: #3a4658;
}
.data-table tbody tr {
background-color: #fefefe;
color: #686868;
}
.data-table tbody tr:nth-child(even) {
background-color: #f2f2f2;
}
/* 复选框的列宽 */
.row-selected {
width: 15px;
}
/* = 按钮
------------------------------------------ */
/* 常规按钮 */
.btn {
display: inline-block;
margin-left: 5px;
padding: 6px 16px;
font-size: 14px;
line-height: 18px;
color: #edffd1;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 0 none;
/*background-color: #4bbd00;*/
*outline: 0 none;
}
.btn:hover {
color: #ffffff;
text-decoration: none;
/*background-color: #4cdb00;*/
border-bottom: 0 none;
}
.submit-btn,
.btn-return {
padding: 10px 50px;
color: #fff;
font-weight: bold;
border-color: transparent;
}
.btn-return{
color: #3a4658;
}
.submit-btn {
background-color: #fd9702;
}
.submit-btn:hover {
color: #fff;
background-color: #eb8b00;
}
.add-btn{
background-color:#61c362;
}
.del-btn{
background-color:#fd9701;
}
.export-btn{
background-color:#ff6055;
}
.export-btn-out{
background-color:#428bca;
}
.sort-btn{
background-color:#4dc1f0;
}
.clear-btn{
background-color:#4dc1f0;
}
.edit-a{
color: #61c362;
}
.del-a{
color: #fd9701;
padding-left: 10px;
}
.btn[disabled],
.btn.disabled,
.btn[disabled]:hover,
.btn.disabled:hover {
background-color: #8d8d8d;
}
.save-btn {
padding: 10px 30px;
background-color: #3737BC;
}
.btn-mini {
padding: 4px 10px;
}
.btn-xlarge {
padding: 10px 30px;
}
/* 按钮组 */
.btn-toolbar .btn {
float: left;
margin-left: -1px;
border-radius: 0;
}
.btn-toolbar .btn:first-child {
border-radius: 3px 0 0 3px;
}
.btn-toolbar .btn:last-of-type {
border-radius: 0 3px 3px 0;
}
/* 带下拉框的按钮组 */
.btn-group,
.btn-group-click {
display: inline-block;
*display: inline;
position: relative;
margin-right: 5px;
vertical-align: middle;
}
.btn-group .btn,
.btn-group-click .btn {
margin-right: 0;
}
.btn-arrowdown,
.btn-arrowup {
display: inline-block;
margin-left: 10px;
width: 10px;
height: 5px;
vertical-align: middle;
background-image: url(../images/bg_icon.png);
background-repeat: no-repeat;
}
.btn-arrowdown {
background-position: 0 -25px;
}
.btn-arrowup {
background-position: -25px -25px;
}
.btn-group .dropdown,
.btn-group-click .dropdown {
display: none;
position: absolute;
top: 30px;
left: 0;
margin-top: 3px;
min-width: 85px;
border: 1px solid #ccc;
background-color: #fff;
}
.btn-group .dropdown a,
.btn-group-click .dropdown a {
padding: 6px 16px;
height: 18px;
line-height: 18px;
white-space: nowrap;
}
.btn-group .dropdown a:hover,
.btn-group-click .dropdown a:hover {
background-color: #eee;
}
/* = 标签导航
------------------------------------------ */
.tab-wrap {
margin-top: 10px;
}
.tab-nav {
margin-bottom: 15px;
padding-left: 1px;
border-bottom: 1px solid #e0e0e0;
}
.tab-nav li {
margin-bottom: -1px;
margin-left: -1px;
}
.tab-nav li a,
.tab-nav li a:hover {
padding: 0 20px;
height: 35px;
line-height: 35px;
font-weight: bold;
font-size: 16px;
border: 1px solid transparent;
border-top-width: 2px;
}
.tab-nav .current a,
.tab-nav .current a:hover {
border-color: #34b4e0 #e0e0e0 #f6f6f6;
}
.tab-content .tab-pane {
display: none;
}
.tab-content .in {
display: block;
}
/* = 面包屑导航
------------------------------------------ */
.breadcrumb {
margin: 10px 0px 20px 0px;
list-style: none;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb>li>a{
color: #bbb;
}
.breadcrumb > .active {
color: #fd9702;
}
.breadcrumb_title{
font-size: 28px;
color: #3a4658;
}
/* = 分类管理树形菜单(目前只支持3级)
------------------------------------------ */
.category {
margin: 10px 0;
border-bottom-width: 0;
background-color: #fff;
}
.category .hd {
font-weight: bold;
border-bottom: 1px solid #d4d4d4;
color:#fff;
background-color: #353535;
}
.category .cate-item dt {
border-bottom: 1px solid #E7E7E7;
}
.category dl,
.category dd,
.category input {
margin: 0;
}
.category .check,
.category .fold,
.category .order,
.category .name {
float: left;
height: 35px;
line-height: 35px;
}
.category .opt {
float: right;
width: 120px;
height: 35px;
line-height: 35px;
text-align: center;
}
.opt-btn {
float: right;
margin: 5px 10px 0 0;
}
.category .check {
width: 40px;
text-align: center;
}
.category .fold {
width: 50px;
text-align: center;
}
.category .fold i {
display: inline-block;
vertical-align: middle;
width: 17px;
height: 17px;
background-repeat: no-repeat;
}
.category .fold .icon-fold,
.category .fold .icon-unfold {
cursor: pointer;
background: url(../images/bg_icon.png) no-repeat;
}
.category .fold .icon-fold {
background-position: -100px -25px;
}
.category .fold .icon-unfold {
background-position: -125px -25px;
}
.category .order,
.category .order input {
text-align: center;
}
.category .order {
width: 90px;
}
.category .order input {
margin-bottom: 2px;
width: 40px;
}
.category .name input {
margin-bottom: 2px;
}
.category .add-sub-cate {
margin-left: 10px;
}
.category .add-sub-cate:hover {
text-decoration: none;
border-bottom: 0 none;
}
.category .btn-mod {
margin-left: 15px;
}
.category .root {
font-weight: bold;
}
.category .tab-sign {
display: inline-block;
margin-left: 15px;
height: 21px;
vertical-align: middle;
background-image: url(../images/tab_sign.png);
background-repeat: no-repeat;
}
.category .name .msg {
vertical-align: top;
font-weight: normal;
}
.category .name .error {
color: #B94A48;
}
.category .name .success {
color: #468847;
}
/* 顶级分类 */
.category > dl > dt .tab-sign {
display: none;
}
/* 二级分类 */
.category > dl > dd > dl > dt .tab-sign {
width: 55px;
background-position: 0 0;
}
.category > dl > dd > dl:last-child > dt .tab-sign {
background-position: -55px 0;
}
/* 三级分类 */
.category > dl > dd > dl > dd > dl > dt .tab-sign {
width: 110px;
background-position: 0 -30px;
}
.category > dl > dd > dl > dd > dl:last-child > dt .tab-sign {
background-position: 0 -60px;
}
.category > dl > dd > dl:last-child > dd > dl > dt .tab-sign {
background-position: 0 -90px;
}
.category > dl > dd > dl:last-child > dd > dl:last-child > dt .tab-sign {
background-position: 0 -120px;
}
.category > dl > dd > dl:last-child > dd > dl:last-child > dt .add-sub-cate{
display: none;
}
.category input{
height: 16px;
}
.icon-add {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;
background: url(../images/bg_icon.png) no-repeat 0 0;
}
.add-on {
width: 20px;
height: 20px;
display: inline-block;
position: relative;
top: 7px;
right: 25px;
}
.sort_bottom {
margin-top: 105px;
}
.sort_option select {
height: 250px;
width: 220px;
}
.sort_top {
margin-bottom: 10px;
}
.sort_top input {
height: 24px;
line-height: 26px;
margin-right: 30px;
border: 1px solid #ccc;
padding-left:5px;
}
.sort_btn button{
display: block;
margin-bottom: 15px;
}
.sort_option {
float: left;
margin-right: 16px;
}
.sort_confirm {
float: left;
}
.update-version {
font-size: 18px;
line-height: 3;
text-align: center;
width: 85%;
}
.update-version .error {
color: #B94A48;
}
.update-version .success {
color: #468847;
}
/**分页**/
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #3a4658;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color: #2a6496;
background-color: #eee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 2;
color: #fff;
cursor: default;
background-color: #3a4658;
border-color: #3a4658;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777;
cursor: not-allowed;
background-color: #fff;
border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* 提醒框 */
.alert {
color: #c09853;
font-weight: bold;
border: 1px solid #fbeed5;
background-color: #fcf8e3;
}
.alert .close {
float: right;
position: relative;
top: -2px;
right: -21px;
font: bold 20px/20px arial;
color: #fefefe;
opacity: 0.4;
}
.alert .close:hover {
opacity: 0.6;
}
button.close {
padding: 0;
cursor: pointer;
border: 0 none;
background: none;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 20px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.alert-info {
background-color: #61c362;
border-color: #d58512;
color: white;
}
.alert-error {
color: white;
border-color: #c9302c;
background-color: #ff6055;
}
.alert-success {
color: white;
background-color: #61c362;
border-color: #449d44;
}
#top-alert {
display: block;
top: 50px;
left: 220px;
right: 20px;
z-index: 3000;
margin-top: 20px;
padding-top: 12px;
padding-bottom: 12px;
overflow: hidden;
font-size: 16px;
}
#top-alert .close{
right:54px;
position: fixed;
top:200px;
}
.alert-content{
margin-left: 14px;
max-width:600px;
word-wrap: break-word;
word-break: break-word;
} | public/admin/css/base.css | Created on : 2016-11-5, 10:55:22
Author : ROL
*/
/*
全局CSS
*/
*{
margin: 0px;
padding: 0px;
z-index: 0;
font-family: "Microsoft YaHei";
font-size: 12px;
}
html, body {
height: 100%;
background-color: #eeeeee;
}
body,p,pre,blockquote,
h1,h2,h3,h4,h5,h6,
dl,dt,dd,ul,ol,li,
form,select,input,textarea,button,
table,caption,tr,th,td {
margin:0;
padding:0;
}
ol,ul {
list-style:none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
img {
max-width: 100%;
border:0 none;
}
a,a:hover,a:active {
color: #3a4658;
text-decoration:none;
}
input,button,textarea,select,option {
font-family:inherit;
font-size:100%;
outline: 0;
}
textarea {
overflow: auto;
resize: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input{
height: 26px;
}
/*
四大主体模块
*/
.left{
float: left;
width:240px;
height: 100%;
background-color: #3a4658;
position: fixed;
z-index: 10;
}
.right{
float: right;
width: 87%;
width:-moz-calc(100% - 240px);
width:-webkit-calc(100% - 240px);
width: calc(100% - 240px);
}
.top{
height: 60px;
background-color: white;
position: fixed;
width: 88%;
}
.bottom{
width: 100%;
position:fixed;
bottom:0;
z-index:999;
overflow:visible;
height: 60px;
background-color: white;
text-align: center;
line-height: 60px;
}
/*
菜单模块
*/
.menu li{
line-height: 45px;
cursor: pointer;
}
/*
20161122
*/
.menu svg{
color: white;
font-size: 20px;
}
.menu svg.icon{
margin: 0px 10px 0px 10px;
display:inline-block;
vertical-align:middle;
}
.menu div.icon{
margin: 0px 10px 0px 10px;
display:inline-block;
width:8px;
height:8px;
vertical-align:middle;
}
/*.frist_page{
background:url('../images/frist_page_default.png') center no-repeat;
background-size: 100% 100%;
width: 20px !important;
height: 20px !important;
}*/
.second_page{
width: 20px !important;
height: 20px !important;
}
.flod{
background:url('../images/icons-list.png') 0px -8px no-repeat;
}
.menu li.active>div.frist_page{
background:url('../images/frsit_page_active.png') center no-repeat;
background-size: 100% 100%;
width: 20px !important;
height: 20px !important;
}
.menu li.active>div.flod{
background:url('../images/icons-list.png') -8px 0px no-repeat;
}
.menu li.active>div.menu{
display: block;
}
.menu li.active{
background-color: #29323e;
}
.menu li.active>a{
color: #fd9702;
}
.menu a{
font-size: 14px;
color: white;
vertical-align: middle;
display: inline-block;
width:-moz-calc(100% - 44px*2);
width:-webkit-calc(100% - 44px*2);
width: calc(100% - 44px*2);
}
.frist>ul>li{
margin-bottom: 1px;
}
.second{
display: none;
}
.second li{
position: relative;
}
.third{
width: 160px;
color: black;
position: absolute;
left: 100%;
top: 0%;
display: none;
background: #fd9702;
}
.angle{
position: absolute;
top: 18px;
left: -6px;
}
li:hover>a{
color: #fd9702;
}
.third li:hover>a{
color: #3a4658;
}
.third a{
margin-left: 20px;
}
/*
头部用户信息模块
*/
.head_img{
/*background:red no-repeat;*/ /*20161122*/
background: url('../images/user-logo.png') center center no-repeat;
background-size: 100% 100%;
display:inline-block;
width:40px;
height:40px;
border-radius: 5px;
vertical-align:middle;
margin-left: 10px;
}
.user{
float: right;
width: 140px;
height: 100%;
line-height: 60px;
}
.user a{
color: #3a4658;
}
.user:hover{
background-color: #3a4658;
}
.user:hover a{
color: white;
}
.user_angle{
position: absolute;
top: 28px;
right: 15px;
margin-right: 10px;
}
.user_extend{
display: none;
line-height: 40px;
text-align: center;
background-color: #fd9702;
}
div.user.active>div.user_extend{
display: block !important;
}
.user_extend a{
color: white;
}
/*
内容页面
*/
.content{
margin: 70px 20px 100px 20px;
}
.body{
border-radius: 5px;
background-color: white;
padding: 20px 20px 50px 30px;
}
/* = 表单
------------------------------------------ */
/* 表单组件 */
.text,.textarea {
padding: 4px;
border: 1px solid #eeeeee;
background-color: #fff;
transition: all .3s linear;
}
.text {
width: 220px;
/*height: 20px;*/
vertical-align: middle;
}
.focus {
border: 1px solid #a6e1f3;
box-shadow: 0 0 12px #baf7ff;
}
.textarea {
display: block;
}
.textarea textarea {
width: 100%;
height: 100px;
border: 0 none;
}
.checkbox + .checkbox,
.radio + .radio {
margin-left: 15px;
}
.checkbox, .radio {
display: inline-block;
height: 26px;
line-height: 26px;
}
.checkbox input,
.radio input {
margin-right: 5px;
*margin-right: 1px;
vertical-align: -8px;
}
select {
padding: 2px;
height: 34px;
width: 240px;
border: 1px solid #eee;
border-radius: 3px;
}
select[multiple] {
height: 200px;
}
/* 普通表单 */
.form-horizontal .form-item {
margin-bottom: 10px;
}
.form-horizontal .item-label {
display: block;
margin-right: 5px;
height: 30px;
line-height: 30px;
font-weight: bold;
}
.form-horizontal .item-label .check-tips {
margin-left: 8px;
color: #aaa;
font-weight: normal;
}
.form-horizontal .controls {
overflow: hidden;
}
.form-horizontal .controls label + label {
margin-left: 15px;
}
.form-horizontal .controls .check-tips {
margin-left: 20px;
color: #999;
}
label.textarea ~ .check-tips {
margin-left: 0;
}
.form-horizontal .controls .block.check-tips,
.form-horizontal .controls .block.textarea {
display: block;
margin-left: 0;
margin-bottom: 10px;
}
/* 搜索表单 */
.search-form .sleft {
margin-right: 10px;
float: left;
border: 1px solid #ebebeb;
background-color: #fff;
}
.search-form .drop-down {
float: left;
width: 81px;
height: 28px;
line-height: 28px;
}
.search-form .sort-txt {
display: inline-block;
margin: 0 2px 0 4px;
padding-left: 6px;
width: 45px;
cursor: pointer;
}
.search-form .drop-down ul {
position: absolute;
margin-left: -1px;
background-color: #fff;
border: 1px solid #ebebeb;
}
.search-form .drop-down ul li {
border-top: 1px solid #ebebeb;
}
.search-form .drop-down ul li:first-child {
border-top-width: 0;
}
.search-form .drop-down ul a {
padding: 0 10px;
height: 30px;
line-height: 30px;
width:60px;
color: #404040;
}
.search-form .drop-down ul a:hover {
background-color: #f0f0f0;
border:none;
}
.search-form .search-input {
float: left;
padding: 2px 4px;
width: 180px;
height: 24px;
line-height: 26px;
border: 0 none;
}
.search-form .sch-btn {
float: left;
margin: 2px 2px 0 0;
padding: 0 10px;
height: 26px;
line-height: 26px;
vertical-align: middle;
}
.search-form .sch-btn:hover {
color: #fff;
text-decoration: none;
border-bottom: 0 none;
}
.btn-search {
display: inline-block;
margin-top: 5px;
width: 16px;
height: 16px;
background: url(../images/bg_icon.png) no-repeat -50px 0;
}
/* 高级搜索 */
.search-form .adv-sch-pannel {
margin-right: 0;
}
.search-form .adv-sch-pannel .dropdown {
right: 0;
left: auto;
padding: 15px 0 15px 15px;
white-space: nowrap;
}
.adv-sch-pannel .row {
display: inline-block;
*display: inline;
margin-right: 15px;
}
.adv-sch-pannel label{
width:70px;
display:inline-block;
}
.adv-sch-pannel .row{
margin-bottom:6px;
}
/* 表单宽度预设 */
.input-large {
width: 390px;
}
.input-mid {
width: 150px;
}
.input-small {
width: 100px;
}
.input-mini {
width: 50px;
}
.input-8x {
width: 400px;
}
.input-7x {
width: 350px;
}
.input-6x {
width: 300px;
}
.input-5x {
width: 250px;
}
.input-4x {
width: 200px;
}
.input-3x {
width: 150px;
}
.input-2x {
width: 100px;
}
.input-x {
width: 50px;
}
.must {
margin: 3px;
color: #f00;
font-style: normal;
font-weight: normal;
vertical-align: middle;
}
/* 获得焦点边框 */
.focus{
border: 1px solid #d1d1d1;
box-shadow: 0 0 12px #ECECEC;
}
/* = 表格(默认有斑马条纹)
------------------------------------------ */
.data-table {
margin: 10px 0;
}
.data-table table {
width: 100%;
border-collapse: collapse;
}
.data-table caption {
height: 30px;
line-height: 30px;
font-weight: 700;
}
.data-table thead th,
.data-table tbody td {
padding:8px;
height: 19px;
line-height: 19px;
font-weight: 400;
}
.data-table thead th {
text-align: left;
color:#fff;
background-color: #3a4658;
}
.data-table tbody tr {
background-color: #fefefe;
color: #686868;
}
.data-table tbody tr:nth-child(even) {
background-color: #f2f2f2;
}
/* 复选框的列宽 */
.row-selected {
width: 15px;
}
/* = 按钮
------------------------------------------ */
/* 常规按钮 */
.btn {
display: inline-block;
margin-left: 5px;
padding: 6px 16px;
font-size: 14px;
line-height: 18px;
color: #edffd1;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 0 none;
/*background-color: #4bbd00;*/
*outline: 0 none;
}
.btn:hover {
color: #ffffff;
text-decoration: none;
/*background-color: #4cdb00;*/
border-bottom: 0 none;
}
.submit-btn,
.btn-return {
padding: 10px 50px;
color: #fff;
font-weight: bold;
border-color: transparent;
}
.btn-return{
color: #3a4658;
}
.submit-btn {
background-color: #fd9702;
}
.submit-btn:hover {
color: #fff;
background-color: #eb8b00;
}
.add-btn{
background-color:#61c362;
}
.del-btn{
background-color:#fd9701;
}
.export-btn{
background-color:#ff6055;
}
.export-btn-out{
background-color:#428bca;
}
.sort-btn{
background-color:#4dc1f0;
}
.clear-btn{
background-color:#4dc1f0;
}
.edit-a{
color: #61c362;
}
.del-a{
color: #fd9701;
padding-left: 10px;
}
.btn[disabled],
.btn.disabled,
.btn[disabled]:hover,
.btn.disabled:hover {
background-color: #8d8d8d;
}
.save-btn {
padding: 10px 30px;
background-color: #3737BC;
}
.btn-mini {
padding: 4px 10px;
}
.btn-xlarge {
padding: 10px 30px;
}
/* 按钮组 */
.btn-toolbar .btn {
float: left;
margin-left: -1px;
border-radius: 0;
}
.btn-toolbar .btn:first-child {
border-radius: 3px 0 0 3px;
}
.btn-toolbar .btn:last-of-type {
border-radius: 0 3px 3px 0;
}
/* 带下拉框的按钮组 */
.btn-group,
.btn-group-click {
display: inline-block;
*display: inline;
position: relative;
margin-right: 5px;
vertical-align: middle;
}
.btn-group .btn,
.btn-group-click .btn {
margin-right: 0;
}
.btn-arrowdown,
.btn-arrowup {
display: inline-block;
margin-left: 10px;
width: 10px;
height: 5px;
vertical-align: middle;
background-image: url(../images/bg_icon.png);
background-repeat: no-repeat;
}
.btn-arrowdown {
background-position: 0 -25px;
}
.btn-arrowup {
background-position: -25px -25px;
}
.btn-group .dropdown,
.btn-group-click .dropdown {
display: none;
position: absolute;
top: 30px;
left: 0;
margin-top: 3px;
min-width: 85px;
border: 1px solid #ccc;
background-color: #fff;
}
.btn-group .dropdown a,
.btn-group-click .dropdown a {
padding: 6px 16px;
height: 18px;
line-height: 18px;
white-space: nowrap;
}
.btn-group .dropdown a:hover,
.btn-group-click .dropdown a:hover {
background-color: #eee;
}
/* = 标签导航
------------------------------------------ */
.tab-wrap {
margin-top: 10px;
}
.tab-nav {
margin-bottom: 15px;
padding-left: 1px;
border-bottom: 1px solid #e0e0e0;
}
.tab-nav li {
margin-bottom: -1px;
margin-left: -1px;
}
.tab-nav li a,
.tab-nav li a:hover {
padding: 0 20px;
height: 35px;
line-height: 35px;
font-weight: bold;
font-size: 16px;
border: 1px solid transparent;
border-top-width: 2px;
}
.tab-nav .current a,
.tab-nav .current a:hover {
border-color: #34b4e0 #e0e0e0 #f6f6f6;
}
.tab-content .tab-pane {
display: none;
}
.tab-content .in {
display: block;
}
/* = 面包屑导航
------------------------------------------ */
.breadcrumb {
margin: 10px 0px 20px 0px;
list-style: none;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb>li>a{
color: #bbb;
}
.breadcrumb > .active {
color: #fd9702;
}
.breadcrumb_title{
font-size: 28px;
color: #3a4658;
}
/* = 分类管理树形菜单(目前只支持3级)
------------------------------------------ */
.category {
margin: 10px 0;
border-bottom-width: 0;
background-color: #fff;
}
.category .hd {
font-weight: bold;
border-bottom: 1px solid #d4d4d4;
color:#fff;
background-color: #353535;
}
.category .cate-item dt {
border-bottom: 1px solid #E7E7E7;
}
.category dl,
.category dd,
.category input {
margin: 0;
}
.category .check,
.category .fold,
.category .order,
.category .name {
float: left;
height: 35px;
line-height: 35px;
}
.category .opt {
float: right;
width: 120px;
height: 35px;
line-height: 35px;
text-align: center;
}
.opt-btn {
float: right;
margin: 5px 10px 0 0;
}
.category .check {
width: 40px;
text-align: center;
}
.category .fold {
width: 50px;
text-align: center;
}
.category .fold i {
display: inline-block;
vertical-align: middle;
width: 17px;
height: 17px;
background-repeat: no-repeat;
}
.category .fold .icon-fold,
.category .fold .icon-unfold {
cursor: pointer;
background: url(../images/bg_icon.png) no-repeat;
}
.category .fold .icon-fold {
background-position: -100px -25px;
}
.category .fold .icon-unfold {
background-position: -125px -25px;
}
.category .order,
.category .order input {
text-align: center;
}
.category .order {
width: 90px;
}
.category .order input {
margin-bottom: 2px;
width: 40px;
}
.category .name input {
margin-bottom: 2px;
}
.category .add-sub-cate {
margin-left: 10px;
}
.category .add-sub-cate:hover {
text-decoration: none;
border-bottom: 0 none;
}
.category .btn-mod {
margin-left: 15px;
}
.category .root {
font-weight: bold;
}
.category .tab-sign {
display: inline-block;
margin-left: 15px;
height: 21px;
vertical-align: middle;
background-image: url(../images/tab_sign.png);
background-repeat: no-repeat;
}
.category .name .msg {
vertical-align: top;
font-weight: normal;
}
.category .name .error {
color: #B94A48;
}
.category .name .success {
color: #468847;
}
/* 顶级分类 */
.category > dl > dt .tab-sign {
display: none;
}
/* 二级分类 */
.category > dl > dd > dl > dt .tab-sign {
width: 55px;
background-position: 0 0;
}
.category > dl > dd > dl:last-child > dt .tab-sign {
background-position: -55px 0;
}
/* 三级分类 */
.category > dl > dd > dl > dd > dl > dt .tab-sign {
width: 110px;
background-position: 0 -30px;
}
.category > dl > dd > dl > dd > dl:last-child > dt .tab-sign {
background-position: 0 -60px;
}
.category > dl > dd > dl:last-child > dd > dl > dt .tab-sign {
background-position: 0 -90px;
}
.category > dl > dd > dl:last-child > dd > dl:last-child > dt .tab-sign {
background-position: 0 -120px;
}
.category > dl > dd > dl:last-child > dd > dl:last-child > dt .add-sub-cate{
display: none;
}
.category input{
height: 16px;
}
.icon-add {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;
background: url(../images/bg_icon.png) no-repeat 0 0;
}
.add-on {
width: 20px;
height: 20px;
display: inline-block;
position: relative;
top: 7px;
right: 25px;
}
.sort_bottom {
margin-top: 105px;
}
.sort_option select {
height: 250px;
width: 220px;
}
.sort_top {
margin-bottom: 10px;
}
.sort_top input {
height: 24px;
line-height: 26px;
margin-right: 30px;
border: 1px solid #ccc;
padding-left:5px;
}
.sort_btn button{
display: block;
margin-bottom: 15px;
}
.sort_option {
float: left;
margin-right: 16px;
}
.sort_confirm {
float: left;
}
.update-version {
font-size: 18px;
line-height: 3;
text-align: center;
width: 85%;
}
.update-version .error {
color: #B94A48;
}
.update-version .success {
color: #468847;
}
/**分页**/
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #3a4658;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
color: #2a6496;
background-color: #eee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 2;
color: #fff;
cursor: default;
background-color: #3a4658;
border-color: #3a4658;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777;
cursor: not-allowed;
background-color: #fff;
border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
/* 提醒框 */
.alert {
color: #c09853;
font-weight: bold;
border: 1px solid #fbeed5;
background-color: #fcf8e3;
}
.alert .close {
float: right;
position: relative;
top: -2px;
right: -21px;
font: bold 20px/20px arial;
color: #fefefe;
opacity: 0.4;
}
.alert .close:hover {
opacity: 0.6;
}
button.close {
padding: 0;
cursor: pointer;
border: 0 none;
background: none;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 20px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.alert-info {
background-color: #61c362;
border-color: #d58512;
color: white;
}
.alert-error {
color: white;
border-color: #c9302c;
background-color: #ff6055;
}
.alert-success {
color: white;
background-color: #61c362;
border-color: #449d44;
}
#top-alert {
display: block;
top: 50px;
left: 220px;
right: 20px;
z-index: 3000;
margin-top: 20px;
padding-top: 12px;
padding-bottom: 12px;
overflow: hidden;
font-size: 16px;
}
#top-alert .close{
right:54px;
position: fixed;
top:200px;
}
.alert-content{
margin-left: 14px;
max-width:600px;
word-wrap: break-word;
word-break: break-word;
} | 0.181372 | 0.114097 |
.fabric--bottom--right {
position: fixed;
display: block;
bottom: 28px;
right: 28px;
}
.fabric--top--left {
position: fixed;
display: block;
top: 28px;
left: 28px;
}
.fabric--bottom--left {
position: fixed;
display: block;
bottom: 28px;
left: 28px;
}
.fabric--top--right {
position: fixed;
display: block;
top: 28px;
right: 28px;
}
/*
12 column grid layout
*/
.fabric--row {
min-width: calc(100% - 16px);
max-width: calc(100% - 16px);
clear: both;
padding: 8px;
padding-bottom: 0px;
}
.fabric--col--12 {
max-width: calc(100% / 12 * 12 - 16px);
min-width: calc(100% / 12 * 12 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--11 {
max-width: calc(100% / 12 * 11 - 16px);
min-width: calc(100% / 12 * 11 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--10 {
max-width: calc(100% / 12 * 10 - 16px);
min-width: calc(100% / 12 * 10 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--9 {
max-width: calc(100% / 12 * 9 - 16px);
min-width: calc(100% / 12 * 9 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--8 {
max-width: calc(100% / 12 * 8 - 16px);
min-width: calc(100% / 12 * 8 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--7 {
max-width: calc(100% / 12 * 7 - 16px);
min-width: calc(100% / 12 * 7 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--6 {
max-width: calc(100% / 12 * 6 - 16px);
min-width: calc(100% / 12 * 6 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--5 {
max-width: calc(100% / 12 * 5 - 16px);
min-width: calc(100% / 12 * 5 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--4 {
max-width: calc(100% / 12 * 4 - 16px);
min-width: calc(100% / 12 * 4 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--3 {
max-width: calc(100% / 12 * 3 - 16px);
min-width: calc(100% / 12 * 3 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--2 {
max-width: calc(100% / 12 * 2 - 16px);
min-width: calc(100% / 12 * 2 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--1 {
max-width: calc(100% / 12 * 1 - 16px);
min-width: calc(100% / 12 * 1 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="fabric--col--"] {
max-width: calc(100% / 12 * 12 - 16px);
min-width: calc(100% / 12 * 12 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
}
/*
12 column grid layout FOR DATA TABLES
*/
.fabric--data--table .fabric--row {
min-width: 100%;
max-width: 100%;
clear: both;
padding: 0px;
display: flex;
flex-flow: row;
}
.fabric--data--table .fabric--col--12 {
max-width: calc(100% / 12 * 12);
min-width: calc(100% / 12 * 12);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--11 {
max-width: calc(100% / 12 * 11);
min-width: calc(100% / 12 * 11);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--10 {
max-width: calc(100% / 12 * 10);
min-width: calc(100% / 12 * 10);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--9 {
max-width: calc(100% / 12 * 9);
min-width: calc(100% / 12 * 9);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--8 {
max-width: calc(100% / 12 * 8);
min-width: calc(100% / 12 * 8);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--7 {
max-width: calc(100% / 12 * 7);
min-width: calc(100% / 12 * 7);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--6 {
max-width: calc(100% / 12 * 6);
min-width: calc(100% / 12 * 6);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--5 {
max-width: calc(100% / 12 * 5);
min-width: calc(100% / 12 * 5);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--4 {
max-width: calc(100% / 12 * 4);
min-width: calc(100% / 12 * 4);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--3 {
max-width: calc(100% / 12 * 3);
min-width: calc(100% / 12 * 3);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--2 {
max-width: calc(100% / 12 * 2);
min-width: calc(100% / 12 * 2);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--2 {
max-width: calc(100% / 12 * 2);
min-width: calc(100% / 12 * 2);
display: flex;
flex-flow: column;
float: left;
}
/*
Component width section
*/
/*Fixed width components*/
.fabric--width--1dp {
min-width: 1px;
max-width: 1px;
overflow-x: hidden;
}
.fabric--width--8dp {
min-width: 8px;
max-width: 8px;
overflow-x: hidden;
}
.fabric--width--16dp {
min-width: 16px;
max-width: 16px;
overflow-x: hidden;
}
.fabric--width--24dp,
.fabric--icon {
min-width: 24px;
max-width: 24px;
overflow-x: hidden;
}
.fabric--width--40dp {
min-width: 40px;
max-width: 40px;
overflow-x: hidden;
}
.fabric--width--56dp,
.fabric--fab {
min-width: 56px;
max-width: 56px;
overflow-x: hidden;
}
.fabric--width--64dp {
min-width: 64px;
max-width: 64px;
overflow-x: hidden;
}
.fabric--width--72dp {
min-width: 72px;
max-width: 72px;
overflow-x: hidden;
}
.fabric--width--96dp {
min-width: 96px;
max-width: 96px;
overflow-x: hidden;
}
.fabric--width--112dp {
min-width: 112px;
max-width: 112px;
overflow-x: hidden;
}
/*Dynamic width components*/
.fabric--width--100,
.fabric--app--bar,
.fabric--background,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--media img,
.fabric--card--header,
.fabric--data--table {
min-width: 100%;
max-width: 100%;
overflow-x: hidden;
}
/*Automatic width components*/
.fabric--width--auto,
.fabric--app--bar .fabric--nav--element,
.fabric--content,
.fabric--container p,
.fabric--button {
min-width: auto;
max-width: auto;
}
/*
Component height section
*/
/*Fixed height components*/
.fabric--height--1dp,
.fabric--seam,
.fabric--container hr {
min-height: 1px;
max-height: 1px;
overflow-y: hidden;
}
.fabric--height--8dp {
min-height: 8px;
max-height: 8px;
overflow-y: hidden;
}
.fabric--height--16dp {
min-height: 16px;
max-height: 16px;
overflow-y: hidden;
}
.fabric--height--24dp,
.fabric--icon {
min-height: 24px;
max-height: 24px;
overflow-y: hidden;
}
.fabric--height--40dp {
min-height: 40px;
max-height: 40px;
overflow-y: hidden;
}
.fabric--height--56dp,
.fabric--fab,
.fabric--app--bar,
.fabric--app--bar--spacing,
.fabric--bottom--navigation,
.fabric--card .fabric--card--action--area,
.fabric--card--header{
min-height: 56px;
max-height: 56px;
overflow-y: hidden;
}
.fabric--height--64dp,
.fabric--data--table .fabric--table--header {
min-height: 64px;
max-height: 64px;
overflow-y: hidden;
}
.fabric--height--72dp {
min-height: 72px;
max-height: 72px;
overflow-y: hidden;
}
.fabric--height--96dp {
min-height: 96px;
max-height: 96px;
overflow-y: hidden;
}
.fabric--height--112dp {
min-height: 112px;
max-height: 112px;
overflow-y: hidden;
}
/*Dynamic height components*/
.fabric--height--100,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column,
.fabric--data--table .fabric--row {
min-height: 100%;
max-height: 100%;
}
/*Automatic height components*/
.fabric--height--auto,
.fabric--content,
.fabric--container p,
.fabric--card .fabric--card--media img {
min-height: auto;
max-height: auto;
}
/*
Component inner spacing section (padding)
*/
/*Top padding*/
.fabric--padding--top--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card,
.fabric--card--header {
padding-top: 0px;
}
.fabric--padding--top--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column {
padding-top: 16px;
}
.fabric--padding--top--20dp,
.fabric--data--table .fabric--table--header {
padding-top: 20px;
}
/*Bottom padding*/
.fabric--padding--bottom--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card,
.fabric--card--header {
padding-bottom: 0px;
}
.fabric--padding--bottom--16dp,
.fabric--card .fabric--card--text,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column {
padding-bottom: 16px;
}
.fabric--padding--bottom--20dp {
padding-bottom: 20px;
}
/*Left padding*/
.fabric--padding--left--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card {
padding-left: 0px;
}
.fabric--padding--left--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header {
padding-left: 16px;
}
.fabric--padding--left--56dp,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column,
.fabric--data--table .fabric--table--header {
padding-left: 56px;
}
/*Right padding*/
.fabric--padding--right--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card {
padding-right: 0px;
}
.fabric--padding--right--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header {
padding-right: 16px;
}
.fabric--padding--right--56dp {
padding-right: 56px;
}
/*
Component outer spacing section (margin)
*/
/*Top margin*/
.fabric--margin--top--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-top: 0px;
}
.fabric--margin--top--8dp,
.fabric--card .fabric--card--header .fabric--icon {
margin-top: 8px;
}
.fabric--margin--top--14dp,
.fabric--app--bar .fabric--title {
margin-top: 14px;
}
.fabric--margin--top--16dp,
.fabric--fab .fabric--icon,
.fabric--app--bar .fabric--icon,
.fabric--card .fabric--card--action--area .fabric--button {
margin-top: 16px;
}
.fabric--margin--top--20dp,
.fabric--app--bar .fabric--button {
margin-top: 20px;
}
/*Bottom margin*/
.fabric--margin--bottom--minus--20dp,
.fabric--data--table .fabric--table--header {
margin-bottom: -20px;
}
.fabric--margin--bottom--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-bottom: 0px;
}
.fabric--margin--bottom--16dp,
.fabric--fab .fabric--icon {
margin-bottom: 16px;
}
/*Left margin*/
.fabric--margin--left--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-left: 0px;
}
.fabric--margin--left--16dp,
.fabric--fab .fabric--icon,
.fabric--app--bar .fabric--button,
.fabric--app--bar .fabric--nav--element,
.fabric--app--bar .fabric--title,
.fabric--card .fabric--card--action--area .fabric--button {
margin-left: 16px;
}
/*Right margin*/
.fabric--margin--right--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-right: 0px;
}
.fabric--margin--right--16dp,
.fabric--fab .fabric--icon,
.fabric--card .fabric--card--header .fabric--icon {
margin-right: 16px;
} | css/fabric--layout.css | .fabric--bottom--right {
position: fixed;
display: block;
bottom: 28px;
right: 28px;
}
.fabric--top--left {
position: fixed;
display: block;
top: 28px;
left: 28px;
}
.fabric--bottom--left {
position: fixed;
display: block;
bottom: 28px;
left: 28px;
}
.fabric--top--right {
position: fixed;
display: block;
top: 28px;
right: 28px;
}
/*
12 column grid layout
*/
.fabric--row {
min-width: calc(100% - 16px);
max-width: calc(100% - 16px);
clear: both;
padding: 8px;
padding-bottom: 0px;
}
.fabric--col--12 {
max-width: calc(100% / 12 * 12 - 16px);
min-width: calc(100% / 12 * 12 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--11 {
max-width: calc(100% / 12 * 11 - 16px);
min-width: calc(100% / 12 * 11 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--10 {
max-width: calc(100% / 12 * 10 - 16px);
min-width: calc(100% / 12 * 10 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--9 {
max-width: calc(100% / 12 * 9 - 16px);
min-width: calc(100% / 12 * 9 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--8 {
max-width: calc(100% / 12 * 8 - 16px);
min-width: calc(100% / 12 * 8 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--7 {
max-width: calc(100% / 12 * 7 - 16px);
min-width: calc(100% / 12 * 7 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--6 {
max-width: calc(100% / 12 * 6 - 16px);
min-width: calc(100% / 12 * 6 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--5 {
max-width: calc(100% / 12 * 5 - 16px);
min-width: calc(100% / 12 * 5 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--4 {
max-width: calc(100% / 12 * 4 - 16px);
min-width: calc(100% / 12 * 4 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--3 {
max-width: calc(100% / 12 * 3 - 16px);
min-width: calc(100% / 12 * 3 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--2 {
max-width: calc(100% / 12 * 2 - 16px);
min-width: calc(100% / 12 * 2 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
.fabric--col--1 {
max-width: calc(100% / 12 * 1 - 16px);
min-width: calc(100% / 12 * 1 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="fabric--col--"] {
max-width: calc(100% / 12 * 12 - 16px);
min-width: calc(100% / 12 * 12 - 16px);
padding: 8px;
padding-bottom: 0px;
display: inline-block;
float: left;
}
}
/*
12 column grid layout FOR DATA TABLES
*/
.fabric--data--table .fabric--row {
min-width: 100%;
max-width: 100%;
clear: both;
padding: 0px;
display: flex;
flex-flow: row;
}
.fabric--data--table .fabric--col--12 {
max-width: calc(100% / 12 * 12);
min-width: calc(100% / 12 * 12);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--11 {
max-width: calc(100% / 12 * 11);
min-width: calc(100% / 12 * 11);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--10 {
max-width: calc(100% / 12 * 10);
min-width: calc(100% / 12 * 10);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--9 {
max-width: calc(100% / 12 * 9);
min-width: calc(100% / 12 * 9);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--8 {
max-width: calc(100% / 12 * 8);
min-width: calc(100% / 12 * 8);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--7 {
max-width: calc(100% / 12 * 7);
min-width: calc(100% / 12 * 7);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--6 {
max-width: calc(100% / 12 * 6);
min-width: calc(100% / 12 * 6);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--5 {
max-width: calc(100% / 12 * 5);
min-width: calc(100% / 12 * 5);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--4 {
max-width: calc(100% / 12 * 4);
min-width: calc(100% / 12 * 4);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--3 {
max-width: calc(100% / 12 * 3);
min-width: calc(100% / 12 * 3);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--2 {
max-width: calc(100% / 12 * 2);
min-width: calc(100% / 12 * 2);
display: flex;
flex-flow: column;
float: left;
}
.fabric--data--table .fabric--col--2 {
max-width: calc(100% / 12 * 2);
min-width: calc(100% / 12 * 2);
display: flex;
flex-flow: column;
float: left;
}
/*
Component width section
*/
/*Fixed width components*/
.fabric--width--1dp {
min-width: 1px;
max-width: 1px;
overflow-x: hidden;
}
.fabric--width--8dp {
min-width: 8px;
max-width: 8px;
overflow-x: hidden;
}
.fabric--width--16dp {
min-width: 16px;
max-width: 16px;
overflow-x: hidden;
}
.fabric--width--24dp,
.fabric--icon {
min-width: 24px;
max-width: 24px;
overflow-x: hidden;
}
.fabric--width--40dp {
min-width: 40px;
max-width: 40px;
overflow-x: hidden;
}
.fabric--width--56dp,
.fabric--fab {
min-width: 56px;
max-width: 56px;
overflow-x: hidden;
}
.fabric--width--64dp {
min-width: 64px;
max-width: 64px;
overflow-x: hidden;
}
.fabric--width--72dp {
min-width: 72px;
max-width: 72px;
overflow-x: hidden;
}
.fabric--width--96dp {
min-width: 96px;
max-width: 96px;
overflow-x: hidden;
}
.fabric--width--112dp {
min-width: 112px;
max-width: 112px;
overflow-x: hidden;
}
/*Dynamic width components*/
.fabric--width--100,
.fabric--app--bar,
.fabric--background,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--media img,
.fabric--card--header,
.fabric--data--table {
min-width: 100%;
max-width: 100%;
overflow-x: hidden;
}
/*Automatic width components*/
.fabric--width--auto,
.fabric--app--bar .fabric--nav--element,
.fabric--content,
.fabric--container p,
.fabric--button {
min-width: auto;
max-width: auto;
}
/*
Component height section
*/
/*Fixed height components*/
.fabric--height--1dp,
.fabric--seam,
.fabric--container hr {
min-height: 1px;
max-height: 1px;
overflow-y: hidden;
}
.fabric--height--8dp {
min-height: 8px;
max-height: 8px;
overflow-y: hidden;
}
.fabric--height--16dp {
min-height: 16px;
max-height: 16px;
overflow-y: hidden;
}
.fabric--height--24dp,
.fabric--icon {
min-height: 24px;
max-height: 24px;
overflow-y: hidden;
}
.fabric--height--40dp {
min-height: 40px;
max-height: 40px;
overflow-y: hidden;
}
.fabric--height--56dp,
.fabric--fab,
.fabric--app--bar,
.fabric--app--bar--spacing,
.fabric--bottom--navigation,
.fabric--card .fabric--card--action--area,
.fabric--card--header{
min-height: 56px;
max-height: 56px;
overflow-y: hidden;
}
.fabric--height--64dp,
.fabric--data--table .fabric--table--header {
min-height: 64px;
max-height: 64px;
overflow-y: hidden;
}
.fabric--height--72dp {
min-height: 72px;
max-height: 72px;
overflow-y: hidden;
}
.fabric--height--96dp {
min-height: 96px;
max-height: 96px;
overflow-y: hidden;
}
.fabric--height--112dp {
min-height: 112px;
max-height: 112px;
overflow-y: hidden;
}
/*Dynamic height components*/
.fabric--height--100,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column,
.fabric--data--table .fabric--row {
min-height: 100%;
max-height: 100%;
}
/*Automatic height components*/
.fabric--height--auto,
.fabric--content,
.fabric--container p,
.fabric--card .fabric--card--media img {
min-height: auto;
max-height: auto;
}
/*
Component inner spacing section (padding)
*/
/*Top padding*/
.fabric--padding--top--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card,
.fabric--card--header {
padding-top: 0px;
}
.fabric--padding--top--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column {
padding-top: 16px;
}
.fabric--padding--top--20dp,
.fabric--data--table .fabric--table--header {
padding-top: 20px;
}
/*Bottom padding*/
.fabric--padding--bottom--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card,
.fabric--card--header {
padding-bottom: 0px;
}
.fabric--padding--bottom--16dp,
.fabric--card .fabric--card--text,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column {
padding-bottom: 16px;
}
.fabric--padding--bottom--20dp {
padding-bottom: 20px;
}
/*Left padding*/
.fabric--padding--left--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card {
padding-left: 0px;
}
.fabric--padding--left--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header {
padding-left: 16px;
}
.fabric--padding--left--56dp,
.fabric--data--table .fabric--text--column,
.fabric--data--table .fabric--numeric--column,
.fabric--data--table .fabric--table--header {
padding-left: 56px;
}
/*Right padding*/
.fabric--padding--right--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card {
padding-right: 0px;
}
.fabric--padding--right--16dp,
.fabric--card .fabric--card--text,
.fabric--card .fabric--card--header {
padding-right: 16px;
}
.fabric--padding--right--56dp {
padding-right: 56px;
}
/*
Component outer spacing section (margin)
*/
/*Top margin*/
.fabric--margin--top--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-top: 0px;
}
.fabric--margin--top--8dp,
.fabric--card .fabric--card--header .fabric--icon {
margin-top: 8px;
}
.fabric--margin--top--14dp,
.fabric--app--bar .fabric--title {
margin-top: 14px;
}
.fabric--margin--top--16dp,
.fabric--fab .fabric--icon,
.fabric--app--bar .fabric--icon,
.fabric--card .fabric--card--action--area .fabric--button {
margin-top: 16px;
}
.fabric--margin--top--20dp,
.fabric--app--bar .fabric--button {
margin-top: 20px;
}
/*Bottom margin*/
.fabric--margin--bottom--minus--20dp,
.fabric--data--table .fabric--table--header {
margin-bottom: -20px;
}
.fabric--margin--bottom--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-bottom: 0px;
}
.fabric--margin--bottom--16dp,
.fabric--fab .fabric--icon {
margin-bottom: 16px;
}
/*Left margin*/
.fabric--margin--left--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-left: 0px;
}
.fabric--margin--left--16dp,
.fabric--fab .fabric--icon,
.fabric--app--bar .fabric--button,
.fabric--app--bar .fabric--nav--element,
.fabric--app--bar .fabric--title,
.fabric--card .fabric--card--action--area .fabric--button {
margin-left: 16px;
}
/*Right margin*/
.fabric--margin--right--0dp,
.fabric--app--bar ul,
.fabric--card .fabric--card--media img,
.fabric--card .fabric--card--media,
.fabric--card .fabric--card--header p,
.fabric--card .fabric--card--header {
margin-right: 0px;
}
.fabric--margin--right--16dp,
.fabric--fab .fabric--icon,
.fabric--card .fabric--card--header .fabric--icon {
margin-right: 16px;
} | 0.528047 | 0.182371 |
body{
padding: 0;
margin: 0;
background-color: #151515;
height: 100vh;
}
.container{
display: flex;
align-items: center;
justify-content: space-around;
height: 100vh;
width: 100vw;
}
.containerNodes button{
border:0.05px #151515 solid;
border-radius: 0;
padding: 0;
margin: 0;
width: 100%;
}
button::after{
border:0.1px white solid;
border-radius: 0;
}
.containerRow{
display: flex;
width: 100%;
height: 100%;
}
.containerNodes{
width: 95vh;
height: 95vh;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.container input{
color:#C2C2C2;
border:1px #C2C2C2 solid;
background:none;
border-radius: 5px;
padding:5px;
margin: 5px;
}
.buttonMenu,.buttonSearch{
padding: 0 10px;
border:1px #C2C2C2 solid;
border-radius: 5px;
color:#C2C2C2;
background:none;
margin: 10px;
padding:5px;
}
section{
border: 1px #C2C2C2 solid;
border-radius: 10px;
padding:20px;
height: fit-content;
max-width: 20vw;
}
label{
color:#C2C2C2;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: space-between;
}
section>label>div{
width: 20px;
height: 20px;
border-radius: 3px;
margin-left: 5px;
border: 0.5px #C2C2C2 solid;
}
section>input{
display: none;
}
#sizeMatrix{
width: 50px;
}
section>div{
display: flex;
flex-direction: column;
}
.buttonSearch{
width:100%;
padding:20px;
font-size: 20px;
margin: 10px 0;
}
a{
color:#C2C2C2;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 20px;
position: absolute;
right: 0;
align-self: flex-end;
padding-right: 20px;
text-decoration: none;
}
a:hover{
text-decoration: underline;
} | src/styles.css | body{
padding: 0;
margin: 0;
background-color: #151515;
height: 100vh;
}
.container{
display: flex;
align-items: center;
justify-content: space-around;
height: 100vh;
width: 100vw;
}
.containerNodes button{
border:0.05px #151515 solid;
border-radius: 0;
padding: 0;
margin: 0;
width: 100%;
}
button::after{
border:0.1px white solid;
border-radius: 0;
}
.containerRow{
display: flex;
width: 100%;
height: 100%;
}
.containerNodes{
width: 95vh;
height: 95vh;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.container input{
color:#C2C2C2;
border:1px #C2C2C2 solid;
background:none;
border-radius: 5px;
padding:5px;
margin: 5px;
}
.buttonMenu,.buttonSearch{
padding: 0 10px;
border:1px #C2C2C2 solid;
border-radius: 5px;
color:#C2C2C2;
background:none;
margin: 10px;
padding:5px;
}
section{
border: 1px #C2C2C2 solid;
border-radius: 10px;
padding:20px;
height: fit-content;
max-width: 20vw;
}
label{
color:#C2C2C2;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: space-between;
}
section>label>div{
width: 20px;
height: 20px;
border-radius: 3px;
margin-left: 5px;
border: 0.5px #C2C2C2 solid;
}
section>input{
display: none;
}
#sizeMatrix{
width: 50px;
}
section>div{
display: flex;
flex-direction: column;
}
.buttonSearch{
width:100%;
padding:20px;
font-size: 20px;
margin: 10px 0;
}
a{
color:#C2C2C2;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 20px;
position: absolute;
right: 0;
align-self: flex-end;
padding-right: 20px;
text-decoration: none;
}
a:hover{
text-decoration: underline;
} | 0.390941 | 0.07267 |
.sw-ui-md .sum-http-method.md-button {
height: 24px;
line-height: 24px;
min-height: 24px;
min-width: 64px;
padding: 1px;
margin: 2px 6px 2px 2px;
transition: none;
}
.sw-ui-md .sum-http-code.md-button,
.sw-ui-md .sum-http-header.md-button {
height: 18px;
line-height: 18px;
min-height: 18px;
min-width: 18px;
margin: 2px;
border-radius: 9px;
font-family: monospace;
padding: 0 9px;
text-transform: none;
}
.sw-ui-md .sum-http-method.md-button.md-raised:not([disabled]),
.sw-ui-md .sum-http-code.md-button.md-raised:not([disabled]),
.sw-ui-md .sum-http-header.md-button.md-raised:not([disabled]) {
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}
.sw-ui-md md-sidenav .md-subheader + .layout-padding,
.sw-ui-md md-sidenav .md-subheader + .layout-padding > *:first-child,
.sw-ui-md md-sidenav .sum-subheader + .layout-padding,
.sw-ui-md md-sidenav .sum-subheader + .layout-padding > *:first-child {
padding-top: 0;
}
.sw-ui-md .sum-tools-in .md-button,
.sw-ui-md .sum-tools .md-button {
margin-bottom: 0;
min-width: 0;
margin-left: 0;
margin-right: 0;
}
.sw-ui-md .sum-tools .md-button:last-child {
margin-right: 16px;
}
.sw-ui-md md-sidenav md-input-container {
margin-top: 0;
margin-bottom: 0;
}
.sw-ui-md md-list-item .md-button,
.sw-ui-md .sum-link.md-button {
margin: 0 0 0 -4px;
padding: 0 4px 0 4px;
text-transform: none;
min-height: 0;
line-height: 1;
min-width: inherit;
}
.sw-ui-md md-list-item .md-button:hover,
.sw-ui-md md-list-item .md-button:focus,
.sw-ui-md .sum-link.md-button:hover,
.sw-ui-md .sum-link.md-button:focus {
background-color: transparent;
text-decoration: underline;
}
.sw-ui-md .md-body-1,
.sw-ui-md .md-body-2 {
line-height: 16px;
}
.sw-ui-md [ng-click] {
cursor: pointer;
}
[swagger-ui-material], body {
height: 100%;
width: 100%;
overflow: hidden;
}
.sw-ui-md md-list {
padding: 0;
}
.sw-ui-md md-list-item {
min-height: 64px;
}
.sw-ui-md .sum-path {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
line-height: 28px;
}
.sw-ui-md .sum-path-wrap {
line-height: 20px;
padding-top: 4px;
}
.sw-ui-md .sum-top {
padding-top: 0;
}
.sw-ui-md .sum-top > * {
padding-top: 0;
}
.sw-ui-md textarea {
font-family: monospace;
}
.sw-ui-md .pad {
margin-left: 16px;
text-indent: -8px;
padding-left: 8px;
}
.sw-ui-md .pad em {
opacity: 0.5;
}
.sw-ui-md .sum-wrap {
white-space: normal;
}
.sw-ui-md .sum-deprecated {
opacity: 0.5;
}
.sw-ui-md .sum-deprecated .sum-path {
text-decoration: line-through;
}
.sw-ui-md .sum-selected {
/* TODO: themed color */
background-color: rgb(238, 238, 238);
}
.sw-ui-md .sum-delay.ng-enter {
transition: 0.016s linear all 0.25s;
opacity: 0;
width: 0;
}
.sw-ui-md .sum-delay.ng-enter-stagger {
transition-delay: 0.25s;
transition-duration: 0s;
}
.sw-ui-md .sum-delay.ng-enter.ng-enter-active {
opacity: 1;
}
.sw-ui-md md-sidenav p {
margin-top: 0;
margin-bottom: 0;
}
.sw-ui-md .md-errors-spacer {
display: none;
}
.sw-ui-md .sum-param-info {
font-size: 12px;
line-height: 14px;
}
.sw-ui-md .sum-no-margin {
margin: 0;
}
.sw-ui-md .md-toolbar-tools > .md-button:first-child {
margin-right: 8px;
}
.sw-ui-md textarea {
line-height: 14px;
}
.sw-ui-md pre.sum-pre {
white-space: pre-wrap;
}
.sw-ui-md .sum-ind {
margin-left: 0;
}
.sw-ui-md md-input-container {
margin-left: -2px;
}
@media screen and (min-width: 800px) {
.sw-ui-md md-sidenav {
width: 336px;
max-width: 336px;
}
}
.sw-ui-md .md-avatar-icon {
opacity: 0.66;
}
.sw-ui-md a.truncate {
cursor: pointer;
}
.sw-ui-md .sum-slide-disabled [role="tabpanel"] {
transition: none;
}
.sw-ui-md .md-select-value :first-child {
text-overflow: ellipsis;
overflow: hidden;
max-width: calc(100% - 24px);
}
.sw-ui-md .sum-fade.ng-hide {
opacity: 0;
}
.sw-ui-md .sum-fade.ng-hide-remove {
transition: all ease-in-out 150ms;
transition-delay: 15ms;
}
.sum-uppercase {
text-transform: uppercase;
}
.sum-sentence::first-letter {
text-transform: uppercase;
}
md-dialog.sum-dialog {
max-width: 360px;
min-width: 280px;
}
md-dialog.sum-dialog-wide {
max-width: inherit;
min-width: 280px;
}
.sum-dialog-wide .markdown-body {
max-width: 640px;
}
.sw-ui-md span.md-button {
display: inline;
min-width: 0;
width: auto;
margin: 0;
padding: 0;
line-height: normal;
font-size: 13px;
font-weight: normal;
text-transform: none;
}
.sum-hide-spacer .md-errors-spacer {
display: none;
}
.sum-short-md p {
margin: 0;
}
.markdown-body {
font-family: inherit;
}
.markdown-body.md-body-2 {
font-size: 14px;
}
.sum-hide-tabs md-tabs-wrapper {
display: none;
}
md-tab-content:not(.md-active) * {
white-space: nowrap !important;
}
md-dialog md-toolbar {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
} | src/styles/swagger-ui-material.css | .sw-ui-md .sum-http-method.md-button {
height: 24px;
line-height: 24px;
min-height: 24px;
min-width: 64px;
padding: 1px;
margin: 2px 6px 2px 2px;
transition: none;
}
.sw-ui-md .sum-http-code.md-button,
.sw-ui-md .sum-http-header.md-button {
height: 18px;
line-height: 18px;
min-height: 18px;
min-width: 18px;
margin: 2px;
border-radius: 9px;
font-family: monospace;
padding: 0 9px;
text-transform: none;
}
.sw-ui-md .sum-http-method.md-button.md-raised:not([disabled]),
.sw-ui-md .sum-http-code.md-button.md-raised:not([disabled]),
.sw-ui-md .sum-http-header.md-button.md-raised:not([disabled]) {
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}
.sw-ui-md md-sidenav .md-subheader + .layout-padding,
.sw-ui-md md-sidenav .md-subheader + .layout-padding > *:first-child,
.sw-ui-md md-sidenav .sum-subheader + .layout-padding,
.sw-ui-md md-sidenav .sum-subheader + .layout-padding > *:first-child {
padding-top: 0;
}
.sw-ui-md .sum-tools-in .md-button,
.sw-ui-md .sum-tools .md-button {
margin-bottom: 0;
min-width: 0;
margin-left: 0;
margin-right: 0;
}
.sw-ui-md .sum-tools .md-button:last-child {
margin-right: 16px;
}
.sw-ui-md md-sidenav md-input-container {
margin-top: 0;
margin-bottom: 0;
}
.sw-ui-md md-list-item .md-button,
.sw-ui-md .sum-link.md-button {
margin: 0 0 0 -4px;
padding: 0 4px 0 4px;
text-transform: none;
min-height: 0;
line-height: 1;
min-width: inherit;
}
.sw-ui-md md-list-item .md-button:hover,
.sw-ui-md md-list-item .md-button:focus,
.sw-ui-md .sum-link.md-button:hover,
.sw-ui-md .sum-link.md-button:focus {
background-color: transparent;
text-decoration: underline;
}
.sw-ui-md .md-body-1,
.sw-ui-md .md-body-2 {
line-height: 16px;
}
.sw-ui-md [ng-click] {
cursor: pointer;
}
[swagger-ui-material], body {
height: 100%;
width: 100%;
overflow: hidden;
}
.sw-ui-md md-list {
padding: 0;
}
.sw-ui-md md-list-item {
min-height: 64px;
}
.sw-ui-md .sum-path {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
line-height: 28px;
}
.sw-ui-md .sum-path-wrap {
line-height: 20px;
padding-top: 4px;
}
.sw-ui-md .sum-top {
padding-top: 0;
}
.sw-ui-md .sum-top > * {
padding-top: 0;
}
.sw-ui-md textarea {
font-family: monospace;
}
.sw-ui-md .pad {
margin-left: 16px;
text-indent: -8px;
padding-left: 8px;
}
.sw-ui-md .pad em {
opacity: 0.5;
}
.sw-ui-md .sum-wrap {
white-space: normal;
}
.sw-ui-md .sum-deprecated {
opacity: 0.5;
}
.sw-ui-md .sum-deprecated .sum-path {
text-decoration: line-through;
}
.sw-ui-md .sum-selected {
/* TODO: themed color */
background-color: rgb(238, 238, 238);
}
.sw-ui-md .sum-delay.ng-enter {
transition: 0.016s linear all 0.25s;
opacity: 0;
width: 0;
}
.sw-ui-md .sum-delay.ng-enter-stagger {
transition-delay: 0.25s;
transition-duration: 0s;
}
.sw-ui-md .sum-delay.ng-enter.ng-enter-active {
opacity: 1;
}
.sw-ui-md md-sidenav p {
margin-top: 0;
margin-bottom: 0;
}
.sw-ui-md .md-errors-spacer {
display: none;
}
.sw-ui-md .sum-param-info {
font-size: 12px;
line-height: 14px;
}
.sw-ui-md .sum-no-margin {
margin: 0;
}
.sw-ui-md .md-toolbar-tools > .md-button:first-child {
margin-right: 8px;
}
.sw-ui-md textarea {
line-height: 14px;
}
.sw-ui-md pre.sum-pre {
white-space: pre-wrap;
}
.sw-ui-md .sum-ind {
margin-left: 0;
}
.sw-ui-md md-input-container {
margin-left: -2px;
}
@media screen and (min-width: 800px) {
.sw-ui-md md-sidenav {
width: 336px;
max-width: 336px;
}
}
.sw-ui-md .md-avatar-icon {
opacity: 0.66;
}
.sw-ui-md a.truncate {
cursor: pointer;
}
.sw-ui-md .sum-slide-disabled [role="tabpanel"] {
transition: none;
}
.sw-ui-md .md-select-value :first-child {
text-overflow: ellipsis;
overflow: hidden;
max-width: calc(100% - 24px);
}
.sw-ui-md .sum-fade.ng-hide {
opacity: 0;
}
.sw-ui-md .sum-fade.ng-hide-remove {
transition: all ease-in-out 150ms;
transition-delay: 15ms;
}
.sum-uppercase {
text-transform: uppercase;
}
.sum-sentence::first-letter {
text-transform: uppercase;
}
md-dialog.sum-dialog {
max-width: 360px;
min-width: 280px;
}
md-dialog.sum-dialog-wide {
max-width: inherit;
min-width: 280px;
}
.sum-dialog-wide .markdown-body {
max-width: 640px;
}
.sw-ui-md span.md-button {
display: inline;
min-width: 0;
width: auto;
margin: 0;
padding: 0;
line-height: normal;
font-size: 13px;
font-weight: normal;
text-transform: none;
}
.sum-hide-spacer .md-errors-spacer {
display: none;
}
.sum-short-md p {
margin: 0;
}
.markdown-body {
font-family: inherit;
}
.markdown-body.md-body-2 {
font-size: 14px;
}
.sum-hide-tabs md-tabs-wrapper {
display: none;
}
md-tab-content:not(.md-active) * {
white-space: nowrap !important;
}
md-dialog md-toolbar {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
} | 0.410166 | 0.045607 |
.Work_page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background-color: white;
}
.Work_page .left {
background-color: #3838c9;
color: #f7f7f7;
height: 700px;
width: 50vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
border-top-left-radius: 20vw;
}
.Work_page .left .heading {
font-family: Brandon bold;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 60px;
}
.Work_page .left .subheading {
font-family: Brandon light;
font-size: 18px;
}
.Work_page .right {
background-color: #3838c9;
height: 700px;
width: 50vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right .tweets {
width: 45vw;
background-color: white;
border-radius: 10px;
}
.Work_page .right .tweets .quotes {
margin: 8%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.Work_page .right .tweets .quotes img {
height: 80px;
}
.Work_page .right .tweets .tweet {
margin: 8%;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-transition-property: all;
transition-property: all;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.Work_page .right .tweets .tweet .head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right .tweets .tweet .head img {
height: 80px;
border-radius: 40px;
}
.Work_page .right .tweets .tweet .head .name {
width: 200px;
margin-left: 5%;
font-family: Brandon bold;
font-size: 20px;
}
.Work_page .right .tweets .tweet .head .work {
font-family: Brandon light;
margin-left: 5%;
font-size: 14px;
}
.Work_page .right .tweets .tweet .sub_head {
font-family: Brandon light;
font-size: 20px;
text-align: justify;
padding-right: 10%;
padding-top: 5%;
}
.Work_page .right .tweets .navigation_button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
margin: 8%;
}
.Work_page .right .tweets .navigation_button button {
background-color: none;
border: none;
cursor: pointer;
margin: 1%;
-webkit-transition-property: all;
transition-property: all;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
border-radius: 5px;
}
.Work_page .right .tweets .navigation_button button:hover {
-webkit-box-shadow: 0px 0px 5px #F64C72;
box-shadow: 0px 0px 5px #F64C72;
}
@media only screen and (max-width: 1070px) {
.Work_page {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.Work_page .left {
height: 400px;
width: 100%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right {
width: 100%;
height: 800px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.Work_page .right .tweets {
width: 80%;
}
.Work_page .right .tweets .quotes img {
height: 65px;
}
}
@media only screen and (max-width: 600px) {
.Work_page .left {
height: 300px;
}
.Work_page .left .heading {
font-size: 35px;
}
}
/*# sourceMappingURL=Workpage.css.map */ | src/components/landing/work page/css/Workpage.css | .Work_page {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background-color: white;
}
.Work_page .left {
background-color: #3838c9;
color: #f7f7f7;
height: 700px;
width: 50vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
border-top-left-radius: 20vw;
}
.Work_page .left .heading {
font-family: Brandon bold;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 60px;
}
.Work_page .left .subheading {
font-family: Brandon light;
font-size: 18px;
}
.Work_page .right {
background-color: #3838c9;
height: 700px;
width: 50vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right .tweets {
width: 45vw;
background-color: white;
border-radius: 10px;
}
.Work_page .right .tweets .quotes {
margin: 8%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.Work_page .right .tweets .quotes img {
height: 80px;
}
.Work_page .right .tweets .tweet {
margin: 8%;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-transition-property: all;
transition-property: all;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.Work_page .right .tweets .tweet .head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right .tweets .tweet .head img {
height: 80px;
border-radius: 40px;
}
.Work_page .right .tweets .tweet .head .name {
width: 200px;
margin-left: 5%;
font-family: Brandon bold;
font-size: 20px;
}
.Work_page .right .tweets .tweet .head .work {
font-family: Brandon light;
margin-left: 5%;
font-size: 14px;
}
.Work_page .right .tweets .tweet .sub_head {
font-family: Brandon light;
font-size: 20px;
text-align: justify;
padding-right: 10%;
padding-top: 5%;
}
.Work_page .right .tweets .navigation_button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
margin: 8%;
}
.Work_page .right .tweets .navigation_button button {
background-color: none;
border: none;
cursor: pointer;
margin: 1%;
-webkit-transition-property: all;
transition-property: all;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
border-radius: 5px;
}
.Work_page .right .tweets .navigation_button button:hover {
-webkit-box-shadow: 0px 0px 5px #F64C72;
box-shadow: 0px 0px 5px #F64C72;
}
@media only screen and (max-width: 1070px) {
.Work_page {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.Work_page .left {
height: 400px;
width: 100%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.Work_page .right {
width: 100%;
height: 800px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.Work_page .right .tweets {
width: 80%;
}
.Work_page .right .tweets .quotes img {
height: 65px;
}
}
@media only screen and (max-width: 600px) {
.Work_page .left {
height: 300px;
}
.Work_page .left .heading {
font-size: 35px;
}
}
/*# sourceMappingURL=Workpage.css.map */ | 0.335895 | 0.041833 |
/* .row {} ??? */
.grid {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
.grid--top {
align-items: flex-start;
}
.grid--bottom {
align-items: flex-end;
}
.grid--center {
align-items: center;
}
/* Cell */
.grid-cell {
flex: 1;
}
.grid--flexcells > .grid-cell {
display: flex;
}
.grid-cell--top {
align-self: flex-start;
}
.grid-cell--bottom {
align-self: flex-end;
}
.grid-cell--center {
align-self: center;
}
.grid-cell--autosize {
flex: none;
}
.grid-cell--non-shrink {
flex: 0 0 auto;
}
.grid-cell--basis-auto {
flex-basis: auto;
}
.grid-cell--order-0 {order: 0;}
.grid-cell--order-1 {order: 1;}
.grid-cell--order-2 {order: 2;}
.grid-cell--order-3 {order: 3;}
.grid-cell--order-4 {order: 4;}
.grid-cell--order-5 {order: 5;}
/* Grid > Cell */
.grid--fit > .grid-cell {
flex: 1;
}
.grid--full > .grid-cell {
flex: 0 0 100%;
}
.grid--2 > .grid-cell {
flex: 0 0 50%;
}
.grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.grid--4 > .grid-cell {
flex: 0 0 25%;
}
.grid--place {
justify-content: space-between;
}
.grid--place > .grid-cell {
flex: none;
}
.grid--place-center {
justify-content: center;
}
.grid--place-center > .grid-cell {
flex: none;
}
.grid--left {
justify-content: flex-start;
}
.grid--left > .grid-cell {
flex: 0 1 auto;
}
.grid--right {
justify-content: flex-end;
}
.grid--right > .grid-cell {
flex: 0 1 auto;
}
/* --break-sm */
/* for mobile phones */
@media (min-width:384px) {
.small-grid-cell--order-0 {order: 0;}
.small-grid-cell--order-1 {order: 1;}
.small-grid-cell--order-2 {order: 2;}
.small-grid-cell--order-3 {order: 3;}
.small-grid-cell--order-4 {order: 4;}
.small-grid-cell--order-5 {order: 5;}
.small-grid--fit > .grid-cell {
flex: 1;
}
.small-grid--full > .grid-cell {
flex: 0 0 100%;
}
.small-grid--place {
justify-content: space-between;
}
.small-grid--place > .grid-cell {
flex: none;
}
.small-grid--place-center {
justify-content: center;
}
.small-grid--place-center > .grid-cell {
flex: none;
}
.small-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.small-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.small-grid--4 > .grid-cell {
flex: 0 0 25%;
}
}
/* --break-md */
/* for tablets */
@media (min-width:576px) {
.med-grid-cell--order-0 {order: 0;}
.med-grid-cell--order-1 {order: 1;}
.med-grid-cell--order-2 {order: 2;}
.med-grid-cell--order-3 {order: 3;}
.med-grid-cell--order-4 {order: 4;}
.med-grid-cell--order-5 {order: 5;}
.med-grid--fit > .grid-cell {
flex: 1;
}
.med-grid--full > .grid-cell {
flex: 0 0 100%;
}
.med-grid--place {
justify-content: space-between;
}
.med-grid--place > .grid-cell {
flex: none;
}
.med-grid--place-center {
justify-content: center;
}
.med-grid--place-center > .grid-cell {
flex: none;
}
.med-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.med-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.med-grid--4 > .grid-cell {
flex: 0 0 25%;
}
}
/* (--break-lg */
/* for desktop */
@media (min-width:768px) {
.large-grid-cell--order-0 {order: 0;}
.large-grid-cell--order-1 {order: 1;}
.large-grid-cell--order-2 {order: 2;}
.large-grid-cell--order-3 {order: 3;}
.large-grid-cell--order-4 {order: 4;}
.large-grid-cell--order-5 {order: 5;}
.large-grid--fit > .grid-cell {
flex: 1;
}
.large-grid--full > .grid-cell {
flex: 0 0 100%;
}
.large-grid--place {
justify-content: space-between;
}
.large-grid--place > .grid-cell {
flex: none;
}
.large-grid--place-center {
justify-content: center;
}
.large-grid--place-center > .grid-cell {
flex: none;
}
.large-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.large-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.large-grid--4 > .grid-cell {
flex: 0 0 25%;
}
/* column*/
.large-column {
flex-direction: column;
}
}
/* --break-sm */
/* for mobile phones */
@media (min-width:384px) {
}
/* --break-md */
/* for tablets */
@media (min-width:576px) {
}
/* --break-lg */
/* for desktop */
@media (min-width:768px) {
}
/* column */
.column {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
align-items: center;
}
/* vertical alignment*/
.column--top {
justify-content: flex-start;
}
.column--bottom {
justify-content: flex-end;
}
.column--center {
justify-content: center;
} | css/grid.css |
/* .row {} ??? */
.grid {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
.grid--top {
align-items: flex-start;
}
.grid--bottom {
align-items: flex-end;
}
.grid--center {
align-items: center;
}
/* Cell */
.grid-cell {
flex: 1;
}
.grid--flexcells > .grid-cell {
display: flex;
}
.grid-cell--top {
align-self: flex-start;
}
.grid-cell--bottom {
align-self: flex-end;
}
.grid-cell--center {
align-self: center;
}
.grid-cell--autosize {
flex: none;
}
.grid-cell--non-shrink {
flex: 0 0 auto;
}
.grid-cell--basis-auto {
flex-basis: auto;
}
.grid-cell--order-0 {order: 0;}
.grid-cell--order-1 {order: 1;}
.grid-cell--order-2 {order: 2;}
.grid-cell--order-3 {order: 3;}
.grid-cell--order-4 {order: 4;}
.grid-cell--order-5 {order: 5;}
/* Grid > Cell */
.grid--fit > .grid-cell {
flex: 1;
}
.grid--full > .grid-cell {
flex: 0 0 100%;
}
.grid--2 > .grid-cell {
flex: 0 0 50%;
}
.grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.grid--4 > .grid-cell {
flex: 0 0 25%;
}
.grid--place {
justify-content: space-between;
}
.grid--place > .grid-cell {
flex: none;
}
.grid--place-center {
justify-content: center;
}
.grid--place-center > .grid-cell {
flex: none;
}
.grid--left {
justify-content: flex-start;
}
.grid--left > .grid-cell {
flex: 0 1 auto;
}
.grid--right {
justify-content: flex-end;
}
.grid--right > .grid-cell {
flex: 0 1 auto;
}
/* --break-sm */
/* for mobile phones */
@media (min-width:384px) {
.small-grid-cell--order-0 {order: 0;}
.small-grid-cell--order-1 {order: 1;}
.small-grid-cell--order-2 {order: 2;}
.small-grid-cell--order-3 {order: 3;}
.small-grid-cell--order-4 {order: 4;}
.small-grid-cell--order-5 {order: 5;}
.small-grid--fit > .grid-cell {
flex: 1;
}
.small-grid--full > .grid-cell {
flex: 0 0 100%;
}
.small-grid--place {
justify-content: space-between;
}
.small-grid--place > .grid-cell {
flex: none;
}
.small-grid--place-center {
justify-content: center;
}
.small-grid--place-center > .grid-cell {
flex: none;
}
.small-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.small-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.small-grid--4 > .grid-cell {
flex: 0 0 25%;
}
}
/* --break-md */
/* for tablets */
@media (min-width:576px) {
.med-grid-cell--order-0 {order: 0;}
.med-grid-cell--order-1 {order: 1;}
.med-grid-cell--order-2 {order: 2;}
.med-grid-cell--order-3 {order: 3;}
.med-grid-cell--order-4 {order: 4;}
.med-grid-cell--order-5 {order: 5;}
.med-grid--fit > .grid-cell {
flex: 1;
}
.med-grid--full > .grid-cell {
flex: 0 0 100%;
}
.med-grid--place {
justify-content: space-between;
}
.med-grid--place > .grid-cell {
flex: none;
}
.med-grid--place-center {
justify-content: center;
}
.med-grid--place-center > .grid-cell {
flex: none;
}
.med-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.med-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.med-grid--4 > .grid-cell {
flex: 0 0 25%;
}
}
/* (--break-lg */
/* for desktop */
@media (min-width:768px) {
.large-grid-cell--order-0 {order: 0;}
.large-grid-cell--order-1 {order: 1;}
.large-grid-cell--order-2 {order: 2;}
.large-grid-cell--order-3 {order: 3;}
.large-grid-cell--order-4 {order: 4;}
.large-grid-cell--order-5 {order: 5;}
.large-grid--fit > .grid-cell {
flex: 1;
}
.large-grid--full > .grid-cell {
flex: 0 0 100%;
}
.large-grid--place {
justify-content: space-between;
}
.large-grid--place > .grid-cell {
flex: none;
}
.large-grid--place-center {
justify-content: center;
}
.large-grid--place-center > .grid-cell {
flex: none;
}
.large-grid--2 > .grid-cell {
flex: 0 0 50%;
}
.large-grid--3 > .grid-cell {
flex: 0 0 33.3333%;
}
.large-grid--4 > .grid-cell {
flex: 0 0 25%;
}
/* column*/
.large-column {
flex-direction: column;
}
}
/* --break-sm */
/* for mobile phones */
@media (min-width:384px) {
}
/* --break-md */
/* for tablets */
@media (min-width:576px) {
}
/* --break-lg */
/* for desktop */
@media (min-width:768px) {
}
/* column */
.column {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
align-items: center;
}
/* vertical alignment*/
.column--top {
justify-content: flex-start;
}
.column--bottom {
justify-content: flex-end;
}
.column--center {
justify-content: center;
} | 0.277179 | 0.107954 |
@charset "utf-8";
@font-face {
font-family: 'OpenSansBold';
src: url('../fonts/OpenSansBold.eot?') format('eot'), url('../fonts/OpenSansBold.otf') format('opentype'), url('../fonts/OpenSansBold.woff') format('woff'), url('../fonts/OpenSansBold.ttf') format('truetype'), url('../fonts/OpenSansBold.svg#carbon') format('svg');
}
@font-face {
font-family: 'OpenSansLight';
src: url('../fonts/OpenSansLight.eot?') format('eot'), url('../fonts/OpenSansLight.otf') format('opentype'), url('../fonts/OpenSansLight.woff') format('woff'), url('../fonts/OpenSansLight.ttf') format('truetype'), url('../fonts/OpenSansLight.svg#helvetica') format('svg');
}
@font-face {
font-family: 'OpenSansRegular';
src: url('../fonts/OpenSansRegular.eot?') format('eot'), url('../fonts/OpenSansRegular.otf') format('opentype'), url('../fonts/OpenSansRegular.woff') format('woff'), url('../fonts/OpenSansRegular.ttf') format('truetype'), url('../fonts/OpenSansRegular.svg#helveticaBold') format('svg');
}
@font-face {
font-family: 'simplifica';
src: url('../fonts/simplifica.eot?') format('eot'), url('../fonts/simplifica.otf') format('opentype'), url('../fonts/simplifica.woff') format('woff'), url('../fonts/simplifica.ttf') format('truetype'), url('../fonts/simplifica.svg#neo') format('svg');
}
body {
margin: 0px;
padding: 0px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.texto1 {
position: absolute;
color: #014c64;
text-align: center;
font-family: 'OpenSansBold', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto2 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'OpenSansLight', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto3 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'OpenSansRegula', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto4 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'simplifica', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#clima {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
}
#opciones {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
background-image: url(../imagenes/fondo_menu.png);
background-size: 100% 100%;
}
#mapa {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
}
.dias {
width: 19%;
height: 65%;
position: relative;
float: left;
text-align: center;
font-family: 'OpenSansRegula', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
color: #FFF;
top: 30%;
text-transform: uppercase
}
.globito1{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito2{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito3{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito4{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito5{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito_texto{
position:absolute;
width:200%;
text-align:center;
bottom:-40%;
color:#FFFFFF;
margin-left:-50%;
font-family:OpenSansLight;
font-size:14px;
}
.mapas{
position:relative;
float:left;
background-image:url(../imagenes/mapa.jpg);
background-size:100% 100%;
background-repeat:no-repeat
} | www/css/estilos.css | @charset "utf-8";
@font-face {
font-family: 'OpenSansBold';
src: url('../fonts/OpenSansBold.eot?') format('eot'), url('../fonts/OpenSansBold.otf') format('opentype'), url('../fonts/OpenSansBold.woff') format('woff'), url('../fonts/OpenSansBold.ttf') format('truetype'), url('../fonts/OpenSansBold.svg#carbon') format('svg');
}
@font-face {
font-family: 'OpenSansLight';
src: url('../fonts/OpenSansLight.eot?') format('eot'), url('../fonts/OpenSansLight.otf') format('opentype'), url('../fonts/OpenSansLight.woff') format('woff'), url('../fonts/OpenSansLight.ttf') format('truetype'), url('../fonts/OpenSansLight.svg#helvetica') format('svg');
}
@font-face {
font-family: 'OpenSansRegular';
src: url('../fonts/OpenSansRegular.eot?') format('eot'), url('../fonts/OpenSansRegular.otf') format('opentype'), url('../fonts/OpenSansRegular.woff') format('woff'), url('../fonts/OpenSansRegular.ttf') format('truetype'), url('../fonts/OpenSansRegular.svg#helveticaBold') format('svg');
}
@font-face {
font-family: 'simplifica';
src: url('../fonts/simplifica.eot?') format('eot'), url('../fonts/simplifica.otf') format('opentype'), url('../fonts/simplifica.woff') format('woff'), url('../fonts/simplifica.ttf') format('truetype'), url('../fonts/simplifica.svg#neo') format('svg');
}
body {
margin: 0px;
padding: 0px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.texto1 {
position: absolute;
color: #014c64;
text-align: center;
font-family: 'OpenSansBold', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto2 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'OpenSansLight', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto3 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'OpenSansRegula', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.texto4 {
position: absolute;
color: #fff;
text-align: center;
font-family: 'simplifica', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#clima {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
}
#opciones {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
background-image: url(../imagenes/fondo_menu.png);
background-size: 100% 100%;
}
#mapa {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
}
.dias {
width: 19%;
height: 65%;
position: relative;
float: left;
text-align: center;
font-family: 'OpenSansRegula', Arial;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
color: #FFF;
top: 30%;
text-transform: uppercase
}
.globito1{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito2{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito3{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito4{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito5{
position:absolute;
background-image:url(../imagenes/globito.svg);
background-size:100% auto;
background-repeat:no-repeat;
top:0px;
text-align:center;
width:3.8%;
height:7%
}
.globito_texto{
position:absolute;
width:200%;
text-align:center;
bottom:-40%;
color:#FFFFFF;
margin-left:-50%;
font-family:OpenSansLight;
font-size:14px;
}
.mapas{
position:relative;
float:left;
background-image:url(../imagenes/mapa.jpg);
background-size:100% 100%;
background-repeat:no-repeat
} | 0.281998 | 0.044702 |
/* Shades of gray */
/*@define-color theme_selected_bg_color #787878;*/
/* Orient blue */
/*@define-color theme_selected_bg_color #1B779E;*/
/* Arch blue */
@define-color theme_selected_bg_color #1F77B7;
/* Cerulean blue */
/*@define-color theme_selected_bg_color #6484a4;*/
/* Patina green */
/*@define-color theme_selected_bg_color #3c7460;*/
/* Firebrick */
/*@define-color theme_selected_bg_color #c14e4e;*/
/* Harvest */
/*@define-color theme_selected_bg_color #AD8641;*/
/******************************************/
/*********** Window Manager ***************/
/******************************************/
/* These colors are exported for the window manager
and shouldn't be used in applications,read if you
used those and something break with a version upgrade
you're on your own... */
@define-color wm_title #ababab;
@define-color wm_unfocused_title #6d6d6d;
@define-color wm_bg #373737;
@define-color wm_bg_unfocused #373737;
@define-color wm_highlight #404040;
@define-color wm_button_close_bg #ababab;
@define-color wm_button_close_hover_bg #dcdcdc;
@define-color wm_button_close_active_bg #ffffff;
@define-color wm_icon_close_bg #373737;
@define-color wm_button_hover_bg #dcdcdc;
@define-color wm_button_active_bg #ffffff;
@define-color wm_button_hover_border #2b2b2b;
@define-color wm_icon_bg #ababab;
@define-color wm_icon_unfocused_bg #6d6d6d;
@define-color wm_icon_hover_bg #dcdcdc;
@define-color wm_icon_active_bg #ffffff;
/*******************************************/
/*** GTK NAMED COLORS - use responsibly! ***/
/*******************************************/
@define-color theme_base_color #515151;
@define-color theme_fg_color #f5f5f5;
@define-color theme_bg_color #404040;
@define-color theme_text_color #f5f5f5;
@define-color theme_selected_fg_color #ffffff;
@define-color theme_unfocused_base_color #4a4a4a;
@define-color theme_unfocused_fg_color #a3a3a3;
@define-color theme_unfocused_bg_color #373737;
@define-color theme_unfocused_text_color #a3a3a3;
@define-color theme_unfocused_selected_fg_color #f5f5f5;
@define-color theme_unfocused_selected_bg_color #808080;
@define-color placeholder_text_color rgba(170, 170, 170, 0.15);
@define-color borders #181818;
@define-color unfocused_borders #262626;
@define-color insensitive_bg_color #484848;
@define-color insensitive_fg_color #a3a3a3;
@define-color insensitive_base_color #484848;
@define-color unfocused_insensitive_color #484848;
@define-color warning_color #d41835;
@define-color error_color #eb6300;
@define-color success_color #5aa411;
/******************************************/
/************ COLOR VARIABLES *************/
/******************************************/
/* Base */
@define-color base_color @theme_base_color; /* #515151*/
@define-color base_dark_color #373737;
@define-color base_fg @theme_fg_color; /* #f5f5f5 */
@define-color base_bg @theme_bg_color; /* #404040 */
@define-color base_fg_insens @insensitive_fg_color; /* #a3a3a3 */
@define-color base_fg_insens_hover #cccccc;
@define-color base_fg_selected @theme_selected_fg_color; /* #ffffff */
@define-color base_fg_insens_selected #cccccc;
@define-color base_bg_selected @theme_selected_bg_color; /* Theme color */
@define-color base_bg_unfocused @theme_unfocused_bg_color;
/* Menu */
@define-color menu_bg @theme_bg_color; /* #404040 */
@define-color menu_bg_hover @theme_selected_bg_color; /* Theme color */
@define-color menu_arrow #595959;
@define-color menu_borders #313131; /* #292929 */
/* Border */
@define-color borders #232323;
@define-color borders_insens @unfocused_borders; /* #262626 */
@define-color borders_active #787878;
/* Sidebar */
@define-color sidebar_fg rgba(255, 255, 255, 0.75);
@define-color sidebar_bg #3a3a3a;
@define-color sidebar_bg_hover rgba(128, 128, 128, 0.32);
@define-color sidebar_placeholder #F08532;
/* Button and Entry */
@define-color button_bg #575757; /* = entry */
@define-color button_bg_hover #696969;
@define-color button_bg_active #757575;
@define-color button_bg_disabled #464646; /* = entry disabled */
@define-color button_bg_active_disabled #616161;
/* Button */
@define-color button_bg_suggest #747474;
@define-color button_bg_suggest_hover #868686;
@define-color button_bg_suggest_selected #999999;
@define-color stackswitcher_bg rgba(255, 255, 255, 0.15);
@define-color stackswitcher_bg_hover rgba(255, 255, 255, 0.25);
@define-color stackswitcher_bg_active rgba(255, 255, 255, 0.32);
@define-color stackswitcher_bg_disabled @button_bg_disabled;
/* Notebook Button and Entry */
@define-color note_button_bg #626262; /* = notebook: entry */
@define-color note_button_bg_hover #727272;
@define-color note_button_bg_active #828282;
@define-color note_button_bg_disabled #535353; /* = notebook: entry disabled */
/* Entry */
@define-color entry_bg #575757;
@define-color entry_bg_focus #3a3a3a;
/* Headerbar */
@define-color headerbar_fg rgba(255, 255, 255, 0.85);
@define-color headerbar_fg_insens rgba(245, 255, 255, 0.5);
/* Progressbar */
@define-color progressbar_bg #282828;
@define-color progressbar_bg_highlight #898989;
/* Scale */
@define-color scale_bg #282828;
@define-color scale_bg_highlight #898989;
@define-color scale_bg_insens #323232;
/* Slider */
@define-color slider #828282;
@define-color slider_hover #999999;
@define-color slider_active #a2a2a2;
@define-color slider_insens #6b6b6b;
/* Levelbar */
@define-color levelbar_trough #313131;
@define-color levelbar_block_low #f26d24;
@define-color levelbar_block_high #4caf50;
@define-color levelbar_block_full #b3b3b3;
@define-color levelbar_block_empty #656565;
@define-color levelbar_block_not_empty #868686;
/* Infobar */
@define-color infobar_bg #828282;
@define-color infobar_button_bg rgba(128, 128, 128, 0.5);
@define-color infobar_button_bg_hover rgba(255, 255, 255, 0.15);
@define-color infobar_button_bg_active rgba(255, 255, 255, 0.3);
@define-color infobar_border rgba(255, 255, 255, 0.75);
@define-color infobar_border_active rgba(255, 255, 255, 9);
/* Rubberband */
@define-color rubberband_bg rgba(255, 255, 255, 0.05);
@define-color rubberband_borders #262626;
/* Scrollbar */
@define-color scrollbar_border @borders; /* #232323 */
@define-color scrollbar_overlay #eaeaea;
@define-color scrollbar_slider #898989;
@define-color scrollbar_slider_hover #999999;
@define-color scrollbar_slider_active #b1b1b1;
@define-color scrollbar_slider_insens transparent;
@define-color scrollbar_trough #434343;
/* Warning and shutdown colors */
@define-color warning #c23b40;
@define-color warning_active @warning_color; /* #d41835 */
@define-color warning_selected #e4002b;
/* Error and restart colors */
@define-color error #d8712e;
@define-color error_active @error_color; /* #eb6300 */
@define-color error_selected #ff5600;
/* Treeview */
@define-color treeview_header_fg rgba(255, 255, 255, 0.6);
@define-color treeview_header_fg_hover rgba(255, 255, 255, 0.9);
@define-color treeview_header_bg @base_dark_color;
@define-color treeview_header_bg_hover #303030;
@define-color treeview_progress_bg #757575;
@define-color treeview_progress_bg_focus #858585;
@define-color treeview_progress_bg_trough #424242;
@define-color treeview_expander_fg #a6a6a6;
@define-color treeview_expander_fg_hover @theme_fg_color; /* #f5f5f5 */
/* Raw */
@define-color raw_bg_hover rgba(255, 255, 255, 0.12);
/* Tab */
@define-color tab_bg_activatable rgba(128, 128, 128, 0);
@define-color tab_bg_activatable_hover rgba(128, 128, 128, 0.12);
/* Link */
@define-color link_fg #cccccc;
@define-color link_fg_active #e6e6e6;
@define-color link_fg_visited #d6d6d6;
@define-color link_fg_selected #f5f5f5;
/* Images */
@define-color image_fg #a6a6a6;
/* Tooltip */
@define-color tooltip_bg #474747;
@define-color tooltip_border #191919;
/* Panel */
@define-color panel_bg #000000;
@define-color panel_button_bg transparent;
@define-color panel_button_bg_hover #4b4b4b;
@define-color panel_button_bg_selected #4b4b4b;
/* App notification */
@define-color app_notification_bg #404040;
/* Colorswatch */
@define-color colorswatch_bg #474747;
@define-color colorswatch_bg_hover #535353;
/* Separator */
@define-color separator_fg rgba(0, 0, 0, 0.4);
/* Drop */
@define-color drop_color @theme_selected_bg_color; /* Theme color */ | .themes/Shades-of-gray-Arch/gtk-3.0/gtk-colors.css |
/* Shades of gray */
/*@define-color theme_selected_bg_color #787878;*/
/* Orient blue */
/*@define-color theme_selected_bg_color #1B779E;*/
/* Arch blue */
@define-color theme_selected_bg_color #1F77B7;
/* Cerulean blue */
/*@define-color theme_selected_bg_color #6484a4;*/
/* Patina green */
/*@define-color theme_selected_bg_color #3c7460;*/
/* Firebrick */
/*@define-color theme_selected_bg_color #c14e4e;*/
/* Harvest */
/*@define-color theme_selected_bg_color #AD8641;*/
/******************************************/
/*********** Window Manager ***************/
/******************************************/
/* These colors are exported for the window manager
and shouldn't be used in applications,read if you
used those and something break with a version upgrade
you're on your own... */
@define-color wm_title #ababab;
@define-color wm_unfocused_title #6d6d6d;
@define-color wm_bg #373737;
@define-color wm_bg_unfocused #373737;
@define-color wm_highlight #404040;
@define-color wm_button_close_bg #ababab;
@define-color wm_button_close_hover_bg #dcdcdc;
@define-color wm_button_close_active_bg #ffffff;
@define-color wm_icon_close_bg #373737;
@define-color wm_button_hover_bg #dcdcdc;
@define-color wm_button_active_bg #ffffff;
@define-color wm_button_hover_border #2b2b2b;
@define-color wm_icon_bg #ababab;
@define-color wm_icon_unfocused_bg #6d6d6d;
@define-color wm_icon_hover_bg #dcdcdc;
@define-color wm_icon_active_bg #ffffff;
/*******************************************/
/*** GTK NAMED COLORS - use responsibly! ***/
/*******************************************/
@define-color theme_base_color #515151;
@define-color theme_fg_color #f5f5f5;
@define-color theme_bg_color #404040;
@define-color theme_text_color #f5f5f5;
@define-color theme_selected_fg_color #ffffff;
@define-color theme_unfocused_base_color #4a4a4a;
@define-color theme_unfocused_fg_color #a3a3a3;
@define-color theme_unfocused_bg_color #373737;
@define-color theme_unfocused_text_color #a3a3a3;
@define-color theme_unfocused_selected_fg_color #f5f5f5;
@define-color theme_unfocused_selected_bg_color #808080;
@define-color placeholder_text_color rgba(170, 170, 170, 0.15);
@define-color borders #181818;
@define-color unfocused_borders #262626;
@define-color insensitive_bg_color #484848;
@define-color insensitive_fg_color #a3a3a3;
@define-color insensitive_base_color #484848;
@define-color unfocused_insensitive_color #484848;
@define-color warning_color #d41835;
@define-color error_color #eb6300;
@define-color success_color #5aa411;
/******************************************/
/************ COLOR VARIABLES *************/
/******************************************/
/* Base */
@define-color base_color @theme_base_color; /* #515151*/
@define-color base_dark_color #373737;
@define-color base_fg @theme_fg_color; /* #f5f5f5 */
@define-color base_bg @theme_bg_color; /* #404040 */
@define-color base_fg_insens @insensitive_fg_color; /* #a3a3a3 */
@define-color base_fg_insens_hover #cccccc;
@define-color base_fg_selected @theme_selected_fg_color; /* #ffffff */
@define-color base_fg_insens_selected #cccccc;
@define-color base_bg_selected @theme_selected_bg_color; /* Theme color */
@define-color base_bg_unfocused @theme_unfocused_bg_color;
/* Menu */
@define-color menu_bg @theme_bg_color; /* #404040 */
@define-color menu_bg_hover @theme_selected_bg_color; /* Theme color */
@define-color menu_arrow #595959;
@define-color menu_borders #313131; /* #292929 */
/* Border */
@define-color borders #232323;
@define-color borders_insens @unfocused_borders; /* #262626 */
@define-color borders_active #787878;
/* Sidebar */
@define-color sidebar_fg rgba(255, 255, 255, 0.75);
@define-color sidebar_bg #3a3a3a;
@define-color sidebar_bg_hover rgba(128, 128, 128, 0.32);
@define-color sidebar_placeholder #F08532;
/* Button and Entry */
@define-color button_bg #575757; /* = entry */
@define-color button_bg_hover #696969;
@define-color button_bg_active #757575;
@define-color button_bg_disabled #464646; /* = entry disabled */
@define-color button_bg_active_disabled #616161;
/* Button */
@define-color button_bg_suggest #747474;
@define-color button_bg_suggest_hover #868686;
@define-color button_bg_suggest_selected #999999;
@define-color stackswitcher_bg rgba(255, 255, 255, 0.15);
@define-color stackswitcher_bg_hover rgba(255, 255, 255, 0.25);
@define-color stackswitcher_bg_active rgba(255, 255, 255, 0.32);
@define-color stackswitcher_bg_disabled @button_bg_disabled;
/* Notebook Button and Entry */
@define-color note_button_bg #626262; /* = notebook: entry */
@define-color note_button_bg_hover #727272;
@define-color note_button_bg_active #828282;
@define-color note_button_bg_disabled #535353; /* = notebook: entry disabled */
/* Entry */
@define-color entry_bg #575757;
@define-color entry_bg_focus #3a3a3a;
/* Headerbar */
@define-color headerbar_fg rgba(255, 255, 255, 0.85);
@define-color headerbar_fg_insens rgba(245, 255, 255, 0.5);
/* Progressbar */
@define-color progressbar_bg #282828;
@define-color progressbar_bg_highlight #898989;
/* Scale */
@define-color scale_bg #282828;
@define-color scale_bg_highlight #898989;
@define-color scale_bg_insens #323232;
/* Slider */
@define-color slider #828282;
@define-color slider_hover #999999;
@define-color slider_active #a2a2a2;
@define-color slider_insens #6b6b6b;
/* Levelbar */
@define-color levelbar_trough #313131;
@define-color levelbar_block_low #f26d24;
@define-color levelbar_block_high #4caf50;
@define-color levelbar_block_full #b3b3b3;
@define-color levelbar_block_empty #656565;
@define-color levelbar_block_not_empty #868686;
/* Infobar */
@define-color infobar_bg #828282;
@define-color infobar_button_bg rgba(128, 128, 128, 0.5);
@define-color infobar_button_bg_hover rgba(255, 255, 255, 0.15);
@define-color infobar_button_bg_active rgba(255, 255, 255, 0.3);
@define-color infobar_border rgba(255, 255, 255, 0.75);
@define-color infobar_border_active rgba(255, 255, 255, 9);
/* Rubberband */
@define-color rubberband_bg rgba(255, 255, 255, 0.05);
@define-color rubberband_borders #262626;
/* Scrollbar */
@define-color scrollbar_border @borders; /* #232323 */
@define-color scrollbar_overlay #eaeaea;
@define-color scrollbar_slider #898989;
@define-color scrollbar_slider_hover #999999;
@define-color scrollbar_slider_active #b1b1b1;
@define-color scrollbar_slider_insens transparent;
@define-color scrollbar_trough #434343;
/* Warning and shutdown colors */
@define-color warning #c23b40;
@define-color warning_active @warning_color; /* #d41835 */
@define-color warning_selected #e4002b;
/* Error and restart colors */
@define-color error #d8712e;
@define-color error_active @error_color; /* #eb6300 */
@define-color error_selected #ff5600;
/* Treeview */
@define-color treeview_header_fg rgba(255, 255, 255, 0.6);
@define-color treeview_header_fg_hover rgba(255, 255, 255, 0.9);
@define-color treeview_header_bg @base_dark_color;
@define-color treeview_header_bg_hover #303030;
@define-color treeview_progress_bg #757575;
@define-color treeview_progress_bg_focus #858585;
@define-color treeview_progress_bg_trough #424242;
@define-color treeview_expander_fg #a6a6a6;
@define-color treeview_expander_fg_hover @theme_fg_color; /* #f5f5f5 */
/* Raw */
@define-color raw_bg_hover rgba(255, 255, 255, 0.12);
/* Tab */
@define-color tab_bg_activatable rgba(128, 128, 128, 0);
@define-color tab_bg_activatable_hover rgba(128, 128, 128, 0.12);
/* Link */
@define-color link_fg #cccccc;
@define-color link_fg_active #e6e6e6;
@define-color link_fg_visited #d6d6d6;
@define-color link_fg_selected #f5f5f5;
/* Images */
@define-color image_fg #a6a6a6;
/* Tooltip */
@define-color tooltip_bg #474747;
@define-color tooltip_border #191919;
/* Panel */
@define-color panel_bg #000000;
@define-color panel_button_bg transparent;
@define-color panel_button_bg_hover #4b4b4b;
@define-color panel_button_bg_selected #4b4b4b;
/* App notification */
@define-color app_notification_bg #404040;
/* Colorswatch */
@define-color colorswatch_bg #474747;
@define-color colorswatch_bg_hover #535353;
/* Separator */
@define-color separator_fg rgba(0, 0, 0, 0.4);
/* Drop */
@define-color drop_color @theme_selected_bg_color; /* Theme color */ | 0.134733 | 0.02849 |
.main {
position : fixed;
top : 0;
bottom : 0;
left : 0;
right : 0;
overflow : hidden;
}
.main > div {
position : absolute;
width : 100%;
top : 40px;
bottom : 0;
display : none;
}
.main > div > * {
display : none;
width : 100%;
position : absolute;
bottom : 0;
top : 0;
}
#titleBar {
height : 40px;
position : relative;
z-index : 3;
display : none;
padding : 3px 0;
background-color : #333;
}
#titleBar[color="1"] {
background-color : #39a85a;
}
#titleBar[color="2"] {
background-color : #ffc000;
}
#titleBar[color="3"] {
background-color : #00b0d6;
}
#titleBar button {
border : 0 none;
display : block;
}
#titleBar > nav > button {
width : 36px;
height : 34px;
padding : 7px 13px;
background : url(../image/width24.png) no-repeat 0 -1055px content-box content-box;
}
#titleBar > p {
text-indent : 10px;
height : 100%;
font-size : 14px;
}
#titleBar strong {
line-height : 34px;
}
#titleBar > ul {
float : right;
height : auto;
}
#titleBar > ul button {
height : 34px;
width : 34px;
border : 5px solid rgba(0, 0, 0, 0.2);
margin-right : 3px;
background-color : rgba(0, 0, 0, 0.2);
background-clip : content-box !important;
background-origin : content-box !important;
}
#titleBar button[action~="submit"] {
background-image : url(../image/width24.png);
background-repeat : no-repeat;
background-position : 3px -248px;
}
#mask {
display : none;
position : absolute;
top : 0;
left : 0;
bottom : 0;
right : 0;
z-index : 4;
background-color : rgba(0, 0, 0, 0.7);
}
#mask > *:empty {
display : none;
}
#mask > article {
position : absolute;
left : 0;
top : 0;
right : 0;
bottom : 0;
}
.projectColor_orange, .projectColor_0 {
background-color : #f1af0f;
border-color : #f1af0f !important;
}
.projectColor_tan, .projectColor_1 {
background-color : #e26917;
border-color : #e26917 !important;
}
.projectColor_cyan, .projectColor_2 {
background-color : #39bead;
border-color : #39bead !important;
}
.projectColor_blue, .projectColor_3 {
background-color : #00b0d6;
border-color : #00b0d6 !important;
}
.projectColor_henna, .projectColor_4 {
background-color : #ce312d;
border-color : #ce312d !important;
}
.projectColor_purple, .projectColor_5 {
background-color : #867bc8;
border-color : #867bc8 !important;
}
.projectColor_gray, .projectColor_6 {
background-color : #6f6f6f;
border-color : #6f6f6f !important;
}
.largeAvatarPanel, .normalAvatarPanel {
width : 64px;
height : 64px;
border-radius : 64px;
overflow : hidden;
border : 1px solid #a1a1a1;
}
.largeAvatarPanel > img {
width : 62px;
height : 62px;
border-radius : 62px;
border : 2px solid #fff;
}
.normalAvatarPanel {
width : 48px;
height : 48px;
border-radius : 48px;
}
.normalAvatarPanel > img {
width : 46px;
height : 46px;
border-radius : 46px;
border : 2px solid #fff;
}
.smallAvatarPanel > img {
width : 20px;
height : 20px;
border-radius : 20px;
}
#mask .userIndexList aside {
bottom : 110px;
}
#createFirstProject > section li, #addProject > * {
height : 45px;
line-height : 25px;
padding : 10px;
overflow : hidden;
background-color : #fff;
}
#createFirstProject > section button, #addProject > section button {
width : 22px;
height : 22px;
border-radius : 22px;
border : 0 none;
margin-right : 10px;
}
#createFirstProject > section button:last-child, #addProject > section button:last-child {
margin-right : 0;
}
#createFirstProject > section button.selected, #addProject > section button.selected {
width : 30px;
height : 30px;
padding : 3px;
border-radius : 30px;
background-clip : content-box;
border : 1px solid;
margin : -4px 6px -4px -4px;
}
#createFirstProject > section button.selected:last-child, #addProject > section button.selected:last-child {
margin-right : -4px;
}
[attachmenttype] {
height : 34px;
width : 34px;
overflow : hidden;
margin : 2px;
}
[attachmenttype]:not([attachmenttype="voice"]) {
border : 0 none;
}
[attachmenttype="voice"] {
background : url(../image/width24.png) 0 -575px no-repeat content-box content-box;
padding : 4px;
}
[attachmenttype="voice"] > img {
display : none;
}
[attachmenttype] > img {
width : 100%;
height : 100%;
}
button[appearance="on_off"] {
width : 46px;
height : 20px;
border : 2px solid #737373;
padding : 1px;
background-clip : content-box;
background-origin : content-box;
background-color : #fff;
}
button[appearance="on_off"][status="0"] {
background-color : #ce302d;
}
button[appearance="on_off"] > small {
background-color : #6c6c6c;
height : 24px;
}
.inputing {
position : fixed !important;
top : 60px !important;
bottom : auto !important;
left : 50px !important;
right : 50px !important;
width : auto !important;
height : 70px !important;
line-height : 40px !important;
font-size : 40px !important;
border : 0 none !important;
background-color : #fff !important;
z-index : 5 !important;
outline : 5000px solid rgba(0, 0, 0, 0.3) !important;
} | www/common/css/ui.css | .main {
position : fixed;
top : 0;
bottom : 0;
left : 0;
right : 0;
overflow : hidden;
}
.main > div {
position : absolute;
width : 100%;
top : 40px;
bottom : 0;
display : none;
}
.main > div > * {
display : none;
width : 100%;
position : absolute;
bottom : 0;
top : 0;
}
#titleBar {
height : 40px;
position : relative;
z-index : 3;
display : none;
padding : 3px 0;
background-color : #333;
}
#titleBar[color="1"] {
background-color : #39a85a;
}
#titleBar[color="2"] {
background-color : #ffc000;
}
#titleBar[color="3"] {
background-color : #00b0d6;
}
#titleBar button {
border : 0 none;
display : block;
}
#titleBar > nav > button {
width : 36px;
height : 34px;
padding : 7px 13px;
background : url(../image/width24.png) no-repeat 0 -1055px content-box content-box;
}
#titleBar > p {
text-indent : 10px;
height : 100%;
font-size : 14px;
}
#titleBar strong {
line-height : 34px;
}
#titleBar > ul {
float : right;
height : auto;
}
#titleBar > ul button {
height : 34px;
width : 34px;
border : 5px solid rgba(0, 0, 0, 0.2);
margin-right : 3px;
background-color : rgba(0, 0, 0, 0.2);
background-clip : content-box !important;
background-origin : content-box !important;
}
#titleBar button[action~="submit"] {
background-image : url(../image/width24.png);
background-repeat : no-repeat;
background-position : 3px -248px;
}
#mask {
display : none;
position : absolute;
top : 0;
left : 0;
bottom : 0;
right : 0;
z-index : 4;
background-color : rgba(0, 0, 0, 0.7);
}
#mask > *:empty {
display : none;
}
#mask > article {
position : absolute;
left : 0;
top : 0;
right : 0;
bottom : 0;
}
.projectColor_orange, .projectColor_0 {
background-color : #f1af0f;
border-color : #f1af0f !important;
}
.projectColor_tan, .projectColor_1 {
background-color : #e26917;
border-color : #e26917 !important;
}
.projectColor_cyan, .projectColor_2 {
background-color : #39bead;
border-color : #39bead !important;
}
.projectColor_blue, .projectColor_3 {
background-color : #00b0d6;
border-color : #00b0d6 !important;
}
.projectColor_henna, .projectColor_4 {
background-color : #ce312d;
border-color : #ce312d !important;
}
.projectColor_purple, .projectColor_5 {
background-color : #867bc8;
border-color : #867bc8 !important;
}
.projectColor_gray, .projectColor_6 {
background-color : #6f6f6f;
border-color : #6f6f6f !important;
}
.largeAvatarPanel, .normalAvatarPanel {
width : 64px;
height : 64px;
border-radius : 64px;
overflow : hidden;
border : 1px solid #a1a1a1;
}
.largeAvatarPanel > img {
width : 62px;
height : 62px;
border-radius : 62px;
border : 2px solid #fff;
}
.normalAvatarPanel {
width : 48px;
height : 48px;
border-radius : 48px;
}
.normalAvatarPanel > img {
width : 46px;
height : 46px;
border-radius : 46px;
border : 2px solid #fff;
}
.smallAvatarPanel > img {
width : 20px;
height : 20px;
border-radius : 20px;
}
#mask .userIndexList aside {
bottom : 110px;
}
#createFirstProject > section li, #addProject > * {
height : 45px;
line-height : 25px;
padding : 10px;
overflow : hidden;
background-color : #fff;
}
#createFirstProject > section button, #addProject > section button {
width : 22px;
height : 22px;
border-radius : 22px;
border : 0 none;
margin-right : 10px;
}
#createFirstProject > section button:last-child, #addProject > section button:last-child {
margin-right : 0;
}
#createFirstProject > section button.selected, #addProject > section button.selected {
width : 30px;
height : 30px;
padding : 3px;
border-radius : 30px;
background-clip : content-box;
border : 1px solid;
margin : -4px 6px -4px -4px;
}
#createFirstProject > section button.selected:last-child, #addProject > section button.selected:last-child {
margin-right : -4px;
}
[attachmenttype] {
height : 34px;
width : 34px;
overflow : hidden;
margin : 2px;
}
[attachmenttype]:not([attachmenttype="voice"]) {
border : 0 none;
}
[attachmenttype="voice"] {
background : url(../image/width24.png) 0 -575px no-repeat content-box content-box;
padding : 4px;
}
[attachmenttype="voice"] > img {
display : none;
}
[attachmenttype] > img {
width : 100%;
height : 100%;
}
button[appearance="on_off"] {
width : 46px;
height : 20px;
border : 2px solid #737373;
padding : 1px;
background-clip : content-box;
background-origin : content-box;
background-color : #fff;
}
button[appearance="on_off"][status="0"] {
background-color : #ce302d;
}
button[appearance="on_off"] > small {
background-color : #6c6c6c;
height : 24px;
}
.inputing {
position : fixed !important;
top : 60px !important;
bottom : auto !important;
left : 50px !important;
right : 50px !important;
width : auto !important;
height : 70px !important;
line-height : 40px !important;
font-size : 40px !important;
border : 0 none !important;
background-color : #fff !important;
z-index : 5 !important;
outline : 5000px solid rgba(0, 0, 0, 0.3) !important;
} | 0.239172 | 0.116286 |
.center {
text-align: center;
vertical-align: middle;
}
#date-container {
}
.dateText {
font-size: 28;
margin-left: 16;
text-align: left;
vertical-align: bottom;
margin-bottom: 4;
}
.month {
font-size: 32;
text-align: center;
vertical-align: bottom;
margin-bottom: 4;
}
.dateButtonLeft {
font-size: 32;
text-align: right;
margin-right: 64;
vertical-align: bottom;
margin-bottom: 4;
width: auto;
}
.dateButtonRight {
font-size: 32;
text-align: right;
margin-right: 16;
vertical-align: bottom;
margin-bottom: 4;
}
.listText {
font-size: 30;
}
/* ListView {
animation-name: example;
animation-duration: 1s;
animation-timing-function: ease-out;
}
@keyframes example {
0% {
opacity: 0;
transform: translate(0,250);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
} */
.child-list-view-item {
color: black;
margin-left: 16;
margin-top: 16;
padding-bottom: 16;
font-size: 20;
}
.child-list-view {
margin-top: 16;
margin-right: 16 !important;
height: auto;
}
.list-color-red {
color: white;
background-color: #c60c30;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-blue {
color: white;
background-color: #00a5bd;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-yellow {
color: white;
background-color: #ffb81c;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-gray {
background-color: #5e6a71;
height: auto;
margin-bottom: 16;
border-radius: 3;
color: white;
}
.month-text {
color: white;
font-weight: bold;
padding-left: 12;
padding-top: 12;
padding-bottom: 12;
padding-right: 12;
font-size: 24;
background-color: #981e32;
}
.test {
font-size: 12;
height: auto;
margin-top: 0 !important;
margin-left: 0 !important;
margin-bottom: 0 !important;
padding-left: 8;
padding-top: 8;
padding-bottom: 8;
}
.bold-text {
font-weight: bold;
}
.session-time {
font-size: 12;
font-weight: bold;
}
.session-title {
font-size: 12;
} | app/views/home/app-page/choose-mentor-page/mentor/appointment/appointment.css | .center {
text-align: center;
vertical-align: middle;
}
#date-container {
}
.dateText {
font-size: 28;
margin-left: 16;
text-align: left;
vertical-align: bottom;
margin-bottom: 4;
}
.month {
font-size: 32;
text-align: center;
vertical-align: bottom;
margin-bottom: 4;
}
.dateButtonLeft {
font-size: 32;
text-align: right;
margin-right: 64;
vertical-align: bottom;
margin-bottom: 4;
width: auto;
}
.dateButtonRight {
font-size: 32;
text-align: right;
margin-right: 16;
vertical-align: bottom;
margin-bottom: 4;
}
.listText {
font-size: 30;
}
/* ListView {
animation-name: example;
animation-duration: 1s;
animation-timing-function: ease-out;
}
@keyframes example {
0% {
opacity: 0;
transform: translate(0,250);
}
100% {
opacity: 1;
transform: translate(0, 0);
}
} */
.child-list-view-item {
color: black;
margin-left: 16;
margin-top: 16;
padding-bottom: 16;
font-size: 20;
}
.child-list-view {
margin-top: 16;
margin-right: 16 !important;
height: auto;
}
.list-color-red {
color: white;
background-color: #c60c30;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-blue {
color: white;
background-color: #00a5bd;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-yellow {
color: white;
background-color: #ffb81c;
height: auto;
margin-bottom: 8;
border-radius: 3
}
.list-color-gray {
background-color: #5e6a71;
height: auto;
margin-bottom: 16;
border-radius: 3;
color: white;
}
.month-text {
color: white;
font-weight: bold;
padding-left: 12;
padding-top: 12;
padding-bottom: 12;
padding-right: 12;
font-size: 24;
background-color: #981e32;
}
.test {
font-size: 12;
height: auto;
margin-top: 0 !important;
margin-left: 0 !important;
margin-bottom: 0 !important;
padding-left: 8;
padding-top: 8;
padding-bottom: 8;
}
.bold-text {
font-weight: bold;
}
.session-time {
font-size: 12;
font-weight: bold;
}
.session-title {
font-size: 12;
} | 0.818882 | 0.168104 |
.cform-hidden {
position: absolute;
top: 0;
left: 0;
display: inline-block;
width: 0;
height: 0;
margin: 0;
padding: 0;
border: 0;
outline: 0;
visibility: hidden;
overflow: hidden;
}
/* line 44, ../scss/cform.style.scss */
.cform-template-input, .cform-file .cform-filename, .cform-text input, .cform-text textarea, .cform-checkbox, .cform-radio, .cform-select, .cform-multiselect {
padding: 3px;
margin: 0;
box-sizing: border-box;
background-color: #b6ccdd;
border: 1px solid #2a5170;
cursor: pointer;
}
/* line 52, ../scss/cform.style.scss */
.cform-template-input:hover, .cform-file .cform-filename:hover, .cform-text input:hover, .cform-text textarea:hover, .cform-checkbox:hover, .cform-radio:hover, .cform-select:hover, .cform-multiselect:hover {
border-color: #2a3741;
}
/* line 57, ../scss/cform.style.scss */
.cform-template-input:focus, .cform-file .cform-filename:focus, .cform-text input:focus, .cform-text textarea:focus, .cform-checkbox:focus, .cform-radio:focus, .cform-select:focus, .cform-multiselect:focus, .cform-template-input:active, .cform-file .cform-filename:active, .cform-text input:active, .cform-text textarea:active, .cform-checkbox:active, .cform-radio:active, .cform-select:active, .cform-multiselect:active {
border-color: #2a3741;
outline: 0;
}
/* line 63, ../scss/cform.style.scss */
.cform-control-template, .cform-submit input, .cform-button button, .cform-file .cform-control, .cform-select .cform-control {
padding: 5px 10px;
margin: 0;
background-color: #2a3741;
border: 1px solid #2a3741;
box-sizing: border-box;
font-size: 1em;
color: #fff;
cursor: pointer;
}
/* line 75, ../scss/cform.style.scss */
.cform-control-template:hover, .cform-submit input:hover, .cform-button button:hover, .cform-file .cform-control:hover, .cform-select .cform-control:hover {
background-color: #529632;
outline: 0;
}
/* line 82, ../scss/cform.style.scss */
.cform-submit input {
text-align: center;
}
/* line 88, ../scss/cform.style.scss */
.cform-button button {
text-align: center;
}
/* line 94, ../scss/cform.style.scss */
.cform-file {
position: relative;
}
/* line 97, ../scss/cform.style.scss */
.cform-file .cform-control {
width: 120px;
text-align: center;
}
/* line 104, ../scss/cform.style.scss */
.cform-file .cform-filename {
position: absolute;
top: 0;
bottom: 0;
left: 120px;
right: 0;
padding-left: 10px;
line-height: 2em;
font-size: 0.75em;
overflow: hidden;
}
/* line 118, ../scss/cform.style.scss */
.cform-text input {
padding: 5px 10px;
color: #2a3741;
}
/* line 123, ../scss/cform.style.scss */
.cform-text textarea {
padding: 5px 10px;
color: #2a3741;
}
/* line 130, ../scss/cform.style.scss */
.cform-checkbox {
position: relative;
display: inline-block;
width: 18px;
height: 18px;
box-sizing: border-box;
cursor: pointer;
}
/* line 140, ../scss/cform.style.scss */
.cform-checkbox .cform-marker {
display: none;
width: 10px;
height: 10px;
background-color: #2a5170;
}
/* line 147, ../scss/cform.style.scss */
.cform-checkbox.checked .cform-marker {
display: block;
}
/* line 153, ../scss/cform.style.scss */
.cform-radio {
position: relative;
display: inline-block;
width: 18px;
height: 18px;
box-sizing: border-box;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
border-radius: 9px;
cursor: pointer;
}
/* line 165, ../scss/cform.style.scss */
.cform-radio .cform-marker {
display: none;
width: 10px;
height: 10px;
background-color: #2a5170;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* line 174, ../scss/cform.style.scss */
.cform-radio.checked .cform-marker {
display: block;
}
/* line 180, ../scss/cform.style.scss */
.cform-select {
padding: 0;
position: relative;
border: none;
}
/* line 191, ../scss/cform.style.scss */
.cform-select ul {
position: absolute;
top: 100%;
left: -1px;
margin: 0;
padding: 0;
width: 100%;
max-height: 0px;
list-style: none;
overflow: hidden;
background-color: #b6ccdd;
border-left: 1px solid #b6ccdd;
border-bottom: 1px solid #b6ccdd;
border-right: 1px solid #b6ccdd;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
/* line 209, ../scss/cform.style.scss */
.cform-select ul li {
padding: 4px 8px;
color: #2a5170;
}
/* line 213, ../scss/cform.style.scss */
.cform-select ul li.selected {
color: #fff;
background-color: #1162a0;
}
/* line 217, ../scss/cform.style.scss */
.cform-select ul li:hover {
color: #fff;
background-color: #529632;
}
/* line 225, ../scss/cform.style.scss */
.cform-select:hover ul {
max-height: 1000px;
}
/* line 231, ../scss/cform.style.scss */
.cform-multiselect {
padding: 0;
}
/* line 235, ../scss/cform.style.scss */
.cform-multiselect ul {
margin: 0;
padding: 0;
width: 100%;
list-style: none;
overflow: hidden;
background-color: #b6ccdd;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
/* line 247, ../scss/cform.style.scss */
.cform-multiselect ul li {
padding: 4px 8px;
color: #2a5170;
}
/* line 251, ../scss/cform.style.scss */
.cform-multiselect ul li.selected {
color: #fff;
background-color: #1162a0;
}
/* line 255, ../scss/cform.style.scss */
.cform-multiselect ul li:hover {
color: #fff;
background-color: #529632;
} | public/static/index/css/cform.style.css | .cform-hidden {
position: absolute;
top: 0;
left: 0;
display: inline-block;
width: 0;
height: 0;
margin: 0;
padding: 0;
border: 0;
outline: 0;
visibility: hidden;
overflow: hidden;
}
/* line 44, ../scss/cform.style.scss */
.cform-template-input, .cform-file .cform-filename, .cform-text input, .cform-text textarea, .cform-checkbox, .cform-radio, .cform-select, .cform-multiselect {
padding: 3px;
margin: 0;
box-sizing: border-box;
background-color: #b6ccdd;
border: 1px solid #2a5170;
cursor: pointer;
}
/* line 52, ../scss/cform.style.scss */
.cform-template-input:hover, .cform-file .cform-filename:hover, .cform-text input:hover, .cform-text textarea:hover, .cform-checkbox:hover, .cform-radio:hover, .cform-select:hover, .cform-multiselect:hover {
border-color: #2a3741;
}
/* line 57, ../scss/cform.style.scss */
.cform-template-input:focus, .cform-file .cform-filename:focus, .cform-text input:focus, .cform-text textarea:focus, .cform-checkbox:focus, .cform-radio:focus, .cform-select:focus, .cform-multiselect:focus, .cform-template-input:active, .cform-file .cform-filename:active, .cform-text input:active, .cform-text textarea:active, .cform-checkbox:active, .cform-radio:active, .cform-select:active, .cform-multiselect:active {
border-color: #2a3741;
outline: 0;
}
/* line 63, ../scss/cform.style.scss */
.cform-control-template, .cform-submit input, .cform-button button, .cform-file .cform-control, .cform-select .cform-control {
padding: 5px 10px;
margin: 0;
background-color: #2a3741;
border: 1px solid #2a3741;
box-sizing: border-box;
font-size: 1em;
color: #fff;
cursor: pointer;
}
/* line 75, ../scss/cform.style.scss */
.cform-control-template:hover, .cform-submit input:hover, .cform-button button:hover, .cform-file .cform-control:hover, .cform-select .cform-control:hover {
background-color: #529632;
outline: 0;
}
/* line 82, ../scss/cform.style.scss */
.cform-submit input {
text-align: center;
}
/* line 88, ../scss/cform.style.scss */
.cform-button button {
text-align: center;
}
/* line 94, ../scss/cform.style.scss */
.cform-file {
position: relative;
}
/* line 97, ../scss/cform.style.scss */
.cform-file .cform-control {
width: 120px;
text-align: center;
}
/* line 104, ../scss/cform.style.scss */
.cform-file .cform-filename {
position: absolute;
top: 0;
bottom: 0;
left: 120px;
right: 0;
padding-left: 10px;
line-height: 2em;
font-size: 0.75em;
overflow: hidden;
}
/* line 118, ../scss/cform.style.scss */
.cform-text input {
padding: 5px 10px;
color: #2a3741;
}
/* line 123, ../scss/cform.style.scss */
.cform-text textarea {
padding: 5px 10px;
color: #2a3741;
}
/* line 130, ../scss/cform.style.scss */
.cform-checkbox {
position: relative;
display: inline-block;
width: 18px;
height: 18px;
box-sizing: border-box;
cursor: pointer;
}
/* line 140, ../scss/cform.style.scss */
.cform-checkbox .cform-marker {
display: none;
width: 10px;
height: 10px;
background-color: #2a5170;
}
/* line 147, ../scss/cform.style.scss */
.cform-checkbox.checked .cform-marker {
display: block;
}
/* line 153, ../scss/cform.style.scss */
.cform-radio {
position: relative;
display: inline-block;
width: 18px;
height: 18px;
box-sizing: border-box;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
border-radius: 9px;
cursor: pointer;
}
/* line 165, ../scss/cform.style.scss */
.cform-radio .cform-marker {
display: none;
width: 10px;
height: 10px;
background-color: #2a5170;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* line 174, ../scss/cform.style.scss */
.cform-radio.checked .cform-marker {
display: block;
}
/* line 180, ../scss/cform.style.scss */
.cform-select {
padding: 0;
position: relative;
border: none;
}
/* line 191, ../scss/cform.style.scss */
.cform-select ul {
position: absolute;
top: 100%;
left: -1px;
margin: 0;
padding: 0;
width: 100%;
max-height: 0px;
list-style: none;
overflow: hidden;
background-color: #b6ccdd;
border-left: 1px solid #b6ccdd;
border-bottom: 1px solid #b6ccdd;
border-right: 1px solid #b6ccdd;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
/* line 209, ../scss/cform.style.scss */
.cform-select ul li {
padding: 4px 8px;
color: #2a5170;
}
/* line 213, ../scss/cform.style.scss */
.cform-select ul li.selected {
color: #fff;
background-color: #1162a0;
}
/* line 217, ../scss/cform.style.scss */
.cform-select ul li:hover {
color: #fff;
background-color: #529632;
}
/* line 225, ../scss/cform.style.scss */
.cform-select:hover ul {
max-height: 1000px;
}
/* line 231, ../scss/cform.style.scss */
.cform-multiselect {
padding: 0;
}
/* line 235, ../scss/cform.style.scss */
.cform-multiselect ul {
margin: 0;
padding: 0;
width: 100%;
list-style: none;
overflow: hidden;
background-color: #b6ccdd;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
/* line 247, ../scss/cform.style.scss */
.cform-multiselect ul li {
padding: 4px 8px;
color: #2a5170;
}
/* line 251, ../scss/cform.style.scss */
.cform-multiselect ul li.selected {
color: #fff;
background-color: #1162a0;
}
/* line 255, ../scss/cform.style.scss */
.cform-multiselect ul li:hover {
color: #fff;
background-color: #529632;
} | 0.300848 | 0.037857 |
.bx-sls .dropdown-block {
border: 1px solid #bdbdbd;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 2px #ebebeb;
box-shadow: inset 0 1px 2px #ebebeb;
font-size: 14px;
padding: 0 22px 0 30px;
position: relative;
background-color: #fff;
}
.bx-sls .dropdown-block-ui {
font-size: 14px;
padding: 0 22px 0 30px;
position: relative;
background-color: #fff;
margin-top: 5px;
}
.bx-sls .dropdown-arrow {
background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/dropdown-errow.png) no-repeat center center;
height: 100%;
top: 0;
right: 0;
position: absolute;
width: 22px;
}
.bx-sls .bx-ui-sls-container {
overflow: hidden;
min-height:25px;
}
.bx-sls .bx-ui-sls-pane {
border: 1px solid #bdbdbd;
border-radius: 2px;
-webkit-box-shadow: 0 2px 3px #c7c7c7;
box-shadow: 0 2px 3px #c7c7c7;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: none;
max-height: 200px;
overflow-y: auto;
left: 0;
top: 35px;
padding: 5px 5px 3px 5px;
position: absolute;
width: 100%;
}
.bx-sls .dropdown-active .bx-ui-sls-pane {
display: block;
}
.bx-sls .bx-ui-sls-variants {
list-style: none;
margin: 0;
padding: 0;
}
.bx-sls .dropdown-item {
border-radius: 2px;
padding: 7px 4px 7px 10px;
margin-bottom: 2px;
}
.bx-sls .dropdown-item:hover {
background-color: #f1f3f5;
cursor: pointer;
}
.bx-sls .dropdown-img {
border: none;
display: inline-block;
height: 12px;
margin: 3px 12px 0 0;
vertical-align: top;
width: 16px;
}
.bx-sls .dropdown-item-text {
/*makeup:color: #212121;*/
color: #aba8ac;
display: inline-block;
/*max-width: 220px;*/ /*silly limitation*/
vertical-align: top;
}
.bx-sls .dropdown-item-text span{
color: #25282c;
}
.bx-sls .dropdown-list-title {
border-bottom: 1px solid #e5e5e5;
height: 37px;
line-height: 37px;
padding-left: 8px;
}
.bx-sls .dropdown-icon {
background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/lens.png) no-repeat center center;
height: 14px;
left: 10px;
position: absolute;
top: 10px;
width: 14px;
}
.bx-sls .quick-locations{
margin-bottom: 5px;
}
.bx-sls .quick-location-tag {
background-color: #f2f5f8;
border: 1px solid #cad3dc;
border-radius: 3px;
color: #1e55b9;
display: inline-block;
font-size: 15px;
height: 27px;
line-height: 26px;
margin: 0 3px;
padding: 0 14px;
text-decoration: none;
margin-bottom: 10px;
}
.bx-sls .quick-location-tag:hover{
background-color: #fafafa;
}
.bx-sls .dropdown-fade2white{
width: 46px;
height: 31px;
position: absolute;
top: 2px;
right: 0;
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(30%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}
.bx-sls .bx-ui-sls-clear{
background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -3386px no-repeat scroll;
width: 30px;
height: 30px;
cursor: pointer;
cursor: hand;
margin-top: 2px;
position: absolute;
top: 0px;
right: 0px;
display: block;
}
.bx-sls .bx-ui-sls-clear:hover{
background-position: 6px -3418px;
}
.bx-sls .bx-ui-sls-loader{
background-image: url(/bitrix/panel/main/images/waiter-white.gif) !important;
background-repeat: no-repeat !important;
background-position: right -1px !important;
width: 30px;
height: 30px;
position: absolute;
top: 3px;
right: 2px;
display: none;
}
.bx-sls .bx-ui-sls-go-edit{
display: none;
}
.bx-sls .bx-ui-sls-pane{
max-height: 300px;
}
.bx-sls input::-ms-clear {
display: none;
}
.bx-sls input[type="text"]{
position: relative;
}
.bx-sls .bx-ui-sls-fake,
.bx-sls .bx-ui-sls-route {
position: absolute !important;
top: 0;
left: 0;
color: #000 !important;
opacity: 1 !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding:0 22px 0 0 !important;
background-position: right 1px;
background-repeat: no-repeat;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
height: 33px;
width: 100%;
outline: none;
z-index:10;
}
.bx-sls .bx-ui-sls-route{
color: #aba8ac !important;
z-index:5;
}
.bx-sls .bx-ui-sls-pane{
background-color: #fff;
z-index: 999;
border: 1px solid #87919c;
}
.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant,
.bx-sls .bx-ui-sls-error{
padding: 10px 10px;
}
.bx-sls .bx-ui-sls-error{
color: #ff2222;
padding-left: 30px;
position: relative;
}
.bx-sls .bx-ui-sls-error div{
position: absolute;
top: 0px;
left: 0px;
width: 25px;
height: 25px;
background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -2895px no-repeat scroll;
}
.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant:hover,
.bx-sls .bx-ui-sls-variant-active{
background-color: #E0E8EA;
}
.adm-sls-edit-link{
margin-top: 10px;
}
/* CSS-modes below: admin, public; */
.bx-admin-mode .bx-sls-go-edit{
margin-left: 10px;
display: none;
}
.bx-admin-mode .dropdown-block {
border-color: #87919c #959ea9 #9ea7b1;
border-radius: 4px;
-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
height: 25px;
}
.bx-sls.bx-admin-mode .bx-ui-sls-fake,
.bx-sls.bx-admin-mode .bx-ui-sls-route {
height: 25px;
}
.bx-admin-mode .dropdown-icon {
top: 7px;
}
.bx-admin-mode .dropdown-fade2white {
height: 22px;
}
.bx-admin-mode .dropdown-fade2white {
right: 1px;
}
.bx-admin-mode .bx-ui-sls-clear {
background-position: 6px -3389px;
height: 22px;
}
.bx-admin-mode .bx-ui-sls-clear:hover{
background-position: 6px -3421px;
}
.bx-admin-mode .bx-ui-sls-loader {
background-position: right -4px !important;
height: 21px;
}
.bx-admin-mode .bx-ui-sls-pane {
top: 27px;
} | www/html/bitrix/modules/sale/install/components/bitrix/sale.location.selector.search/templates/.default/style.css |
.bx-sls .dropdown-block {
border: 1px solid #bdbdbd;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 2px #ebebeb;
box-shadow: inset 0 1px 2px #ebebeb;
font-size: 14px;
padding: 0 22px 0 30px;
position: relative;
background-color: #fff;
}
.bx-sls .dropdown-block-ui {
font-size: 14px;
padding: 0 22px 0 30px;
position: relative;
background-color: #fff;
margin-top: 5px;
}
.bx-sls .dropdown-arrow {
background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/dropdown-errow.png) no-repeat center center;
height: 100%;
top: 0;
right: 0;
position: absolute;
width: 22px;
}
.bx-sls .bx-ui-sls-container {
overflow: hidden;
min-height:25px;
}
.bx-sls .bx-ui-sls-pane {
border: 1px solid #bdbdbd;
border-radius: 2px;
-webkit-box-shadow: 0 2px 3px #c7c7c7;
box-shadow: 0 2px 3px #c7c7c7;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: none;
max-height: 200px;
overflow-y: auto;
left: 0;
top: 35px;
padding: 5px 5px 3px 5px;
position: absolute;
width: 100%;
}
.bx-sls .dropdown-active .bx-ui-sls-pane {
display: block;
}
.bx-sls .bx-ui-sls-variants {
list-style: none;
margin: 0;
padding: 0;
}
.bx-sls .dropdown-item {
border-radius: 2px;
padding: 7px 4px 7px 10px;
margin-bottom: 2px;
}
.bx-sls .dropdown-item:hover {
background-color: #f1f3f5;
cursor: pointer;
}
.bx-sls .dropdown-img {
border: none;
display: inline-block;
height: 12px;
margin: 3px 12px 0 0;
vertical-align: top;
width: 16px;
}
.bx-sls .dropdown-item-text {
/*makeup:color: #212121;*/
color: #aba8ac;
display: inline-block;
/*max-width: 220px;*/ /*silly limitation*/
vertical-align: top;
}
.bx-sls .dropdown-item-text span{
color: #25282c;
}
.bx-sls .dropdown-list-title {
border-bottom: 1px solid #e5e5e5;
height: 37px;
line-height: 37px;
padding-left: 8px;
}
.bx-sls .dropdown-icon {
background: url(/bitrix/components/bitrix/sale.location.selector.search/templates/.default/images/lens.png) no-repeat center center;
height: 14px;
left: 10px;
position: absolute;
top: 10px;
width: 14px;
}
.bx-sls .quick-locations{
margin-bottom: 5px;
}
.bx-sls .quick-location-tag {
background-color: #f2f5f8;
border: 1px solid #cad3dc;
border-radius: 3px;
color: #1e55b9;
display: inline-block;
font-size: 15px;
height: 27px;
line-height: 26px;
margin: 0 3px;
padding: 0 14px;
text-decoration: none;
margin-bottom: 10px;
}
.bx-sls .quick-location-tag:hover{
background-color: #fafafa;
}
.bx-sls .dropdown-fade2white{
width: 46px;
height: 31px;
position: absolute;
top: 2px;
right: 0;
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(30%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}
.bx-sls .bx-ui-sls-clear{
background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -3386px no-repeat scroll;
width: 30px;
height: 30px;
cursor: pointer;
cursor: hand;
margin-top: 2px;
position: absolute;
top: 0px;
right: 0px;
display: block;
}
.bx-sls .bx-ui-sls-clear:hover{
background-position: 6px -3418px;
}
.bx-sls .bx-ui-sls-loader{
background-image: url(/bitrix/panel/main/images/waiter-white.gif) !important;
background-repeat: no-repeat !important;
background-position: right -1px !important;
width: 30px;
height: 30px;
position: absolute;
top: 3px;
right: 2px;
display: none;
}
.bx-sls .bx-ui-sls-go-edit{
display: none;
}
.bx-sls .bx-ui-sls-pane{
max-height: 300px;
}
.bx-sls input::-ms-clear {
display: none;
}
.bx-sls input[type="text"]{
position: relative;
}
.bx-sls .bx-ui-sls-fake,
.bx-sls .bx-ui-sls-route {
position: absolute !important;
top: 0;
left: 0;
color: #000 !important;
opacity: 1 !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding:0 22px 0 0 !important;
background-position: right 1px;
background-repeat: no-repeat;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
height: 33px;
width: 100%;
outline: none;
z-index:10;
}
.bx-sls .bx-ui-sls-route{
color: #aba8ac !important;
z-index:5;
}
.bx-sls .bx-ui-sls-pane{
background-color: #fff;
z-index: 999;
border: 1px solid #87919c;
}
.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant,
.bx-sls .bx-ui-sls-error{
padding: 10px 10px;
}
.bx-sls .bx-ui-sls-error{
color: #ff2222;
padding-left: 30px;
position: relative;
}
.bx-sls .bx-ui-sls-error div{
position: absolute;
top: 0px;
left: 0px;
width: 25px;
height: 25px;
background: url(/bitrix/panel/main/images/bx-admin-sprite-small.png) 6px -2895px no-repeat scroll;
}
.bx-sls .bx-ui-sls-variants .bx-ui-sls-variant:hover,
.bx-sls .bx-ui-sls-variant-active{
background-color: #E0E8EA;
}
.adm-sls-edit-link{
margin-top: 10px;
}
/* CSS-modes below: admin, public; */
.bx-admin-mode .bx-sls-go-edit{
margin-left: 10px;
display: none;
}
.bx-admin-mode .dropdown-block {
border-color: #87919c #959ea9 #9ea7b1;
border-radius: 4px;
-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 2px 2px -1px rgba(180, 188, 191, 0.7) inset;
height: 25px;
}
.bx-sls.bx-admin-mode .bx-ui-sls-fake,
.bx-sls.bx-admin-mode .bx-ui-sls-route {
height: 25px;
}
.bx-admin-mode .dropdown-icon {
top: 7px;
}
.bx-admin-mode .dropdown-fade2white {
height: 22px;
}
.bx-admin-mode .dropdown-fade2white {
right: 1px;
}
.bx-admin-mode .bx-ui-sls-clear {
background-position: 6px -3389px;
height: 22px;
}
.bx-admin-mode .bx-ui-sls-clear:hover{
background-position: 6px -3421px;
}
.bx-admin-mode .bx-ui-sls-loader {
background-position: right -4px !important;
height: 21px;
}
.bx-admin-mode .bx-ui-sls-pane {
top: 27px;
} | 0.29584 | 0.072735 |
body {
margin:5px;
padding:0px;
font-size:11px;
line-height:13px;
font-weight:400;
font-family:verdana,geneva,helvetica;
background-color:white;
}
TH {
font-size:11px;
line-height:13px;
font-weight:700;
font-family:verdana,geneva,helvetica;
margin:0px 0px 0px 0px;
border-top-style:none;
border-right-style:none;
border-left-style:none;
border-collapse: collapse;
PADDING-RIGHT: 4px;
PADDING-LEFT: 4px;
}
H2 {
line-height:16px;
}
p {
font-size:10px;
line-height:12px;
font-weight:400;
font-family:verdana,geneva,helvetica;
margin:0px 0px 0px 0px;
}
TD {
PADDING-RIGHT: 4px;
PADDING-LEFT: 4px;
font-family:verdana,geneva,helvetica;
font-size:10px;
line-height:14px;
}
A.plainText {
text-decoration:none;
font-weight:100;
font-family:verdana,geneva,helvetica;
font-size:10px;
color:black
}
A {
text-decoration:none;
font-weight:700;
font-family:verdana,geneva,helvetica;
font-size:11px;
color:rgb(51,51,102);
}
input {
font-size:11px;
line-height:13px;
font-weight:500;
font-family:verdana,geneva,helvetica;
}
select {
font-size:11px;
line-height:13px;
font-weight:500;
font-family:verdana,geneva,helvetica;
}
DIV.error {
width:500px;
background-color:#ff99cc;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.warning {
width:500px;
background-color:#ffCCCC;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.note {
width:500px;
background-color:#CCFFFF;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.text{
font-size:11px;
line-height:13px;
font-family:verdana,geneva,helvetica;
}
DIV.edit_title{
font-size:16px;
line-height:18px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header1{
font-size:14px;
line-height:16px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header2{
font-size:12px;
line-height:14px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header3{
font-size:11px;
line-height:13px;
font-weight:700;
font-family:verdana,geneva,helvetica;
} | src/main/webapp/images/dab_files/xdat.css |
body {
margin:5px;
padding:0px;
font-size:11px;
line-height:13px;
font-weight:400;
font-family:verdana,geneva,helvetica;
background-color:white;
}
TH {
font-size:11px;
line-height:13px;
font-weight:700;
font-family:verdana,geneva,helvetica;
margin:0px 0px 0px 0px;
border-top-style:none;
border-right-style:none;
border-left-style:none;
border-collapse: collapse;
PADDING-RIGHT: 4px;
PADDING-LEFT: 4px;
}
H2 {
line-height:16px;
}
p {
font-size:10px;
line-height:12px;
font-weight:400;
font-family:verdana,geneva,helvetica;
margin:0px 0px 0px 0px;
}
TD {
PADDING-RIGHT: 4px;
PADDING-LEFT: 4px;
font-family:verdana,geneva,helvetica;
font-size:10px;
line-height:14px;
}
A.plainText {
text-decoration:none;
font-weight:100;
font-family:verdana,geneva,helvetica;
font-size:10px;
color:black
}
A {
text-decoration:none;
font-weight:700;
font-family:verdana,geneva,helvetica;
font-size:11px;
color:rgb(51,51,102);
}
input {
font-size:11px;
line-height:13px;
font-weight:500;
font-family:verdana,geneva,helvetica;
}
select {
font-size:11px;
line-height:13px;
font-weight:500;
font-family:verdana,geneva,helvetica;
}
DIV.error {
width:500px;
background-color:#ff99cc;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.warning {
width:500px;
background-color:#ffCCCC;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.note {
width:500px;
background-color:#CCFFFF;
border-width:1px;
border-style:solid;
font-size:14px;
line-height:16px;
font-weight:500;
font-family:verdana,geneva,helvetica;
overflow:auto;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align:left;
clear:left;
}
DIV.text{
font-size:11px;
line-height:13px;
font-family:verdana,geneva,helvetica;
}
DIV.edit_title{
font-size:16px;
line-height:18px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header1{
font-size:14px;
line-height:16px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header2{
font-size:12px;
line-height:14px;
font-weight:700;
font-family:verdana,geneva,helvetica;
}
DIV.edit_header3{
font-size:11px;
line-height:13px;
font-weight:700;
font-family:verdana,geneva,helvetica;
} | 0.141163 | 0.043732 |
*{
margin: 0;
padding: 0;
}
@font-face{
font-family: rock;
src: url(/assets/fonts/jrfocout.ttf);
}
@font-face{
font-family: paper;
src: url(/assets/fonts/cutthepaper.ttf);
}
@font-face{
font-family: scissors;
src: url(/assets/fonts/scissors.ttf);
}
body{
background: #485563; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #29323c, #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.container{
width: 100%;
background: none;
}
.flex{
display: block;
margin: auto auto;
}
header{
width: 90%;
margin: auto auto;
display: block;
padding-top: 5%;
padding-bottom: 5%;
text-align: center;
}
header h1{
width: 100%;
word-break: break-all;
}
header h1 span{
display: inline-block;
margin: 0 10px 0 10px;
line-height: 60px;
font-weight: 200;
}
.rock{
font-family: "rock";
color: #870000;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.paper{
font-family: "paper";
letter-spacing: 3px;
font-size: 46px;
font-weight: 100;
color: #2980B9;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.scissors{
font-family: "scissors";
font-size: 48px;
color: #1f4037; /* fallback for old browsers */
font-weight: bolder;
letter-spacing: 3px;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
main{
width: 90%;
margin: auto auto;
height: auto;
position: relative;
/* margin-top: 25%; */
}
main span{
width: 50%;
display: block;
/* height: 150px; */
border-radius: 10px;
line-height: 1rem;
text-align: center;
}
main span:hover{
cursor: pointer;
}
.item-rock{
position: absolute;
top: 4rem;
left: 0;
background: #870000; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(135, 0, 0, 0.514), #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, rgba(72, 85, 99, 0.075), rgba(135, 0, 0, 0.514), rgba(72, 85, 99, 0.075)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#870000;
z-index: 9;
font-family: "rock";
font-size: 2rem;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
.item-paper{
position: absolute;
top: 4rem;
right: 0;
z-index: 11;
background: #2980B9; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(41, 127, 185, 0.514), rgba(72, 85, 99, 0.075)); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(41, 127, 185, 0.514), rgba(72, 85, 99, 0.075));/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#2980B9;
font-family: "paper";
font-size: 3rem;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.item-scissors{
position: absolute;
top:0;
left: 0;
right: 0;
background: #99f2c8; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(153, 242, 200, 0.288), rgba(72, 85, 99, 0.075)#485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, rgba(72, 85, 99, 0.075), rgba(153, 242, 200, 0.205), rgba(72, 85, 99, 0.075)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#99f2c8;
z-index: 12;
left:0;
right: 0;
top:8rem;
margin: 0 auto;
font-family: "scissors";
font-size: 2rem;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
.item-result{
display: none;
}
.player-container{
display: inline-block;
width: 46%;
margin: 0;
padding: 0;
float: left;
}
.system-container{
display: inline-block;
width: 46%;
margin: 0;
padding: 0;
float: right;
}
.versus{
float: left;
width: 7%;
}
.player{
color:red;
}
.system{
color:red;
}
.btn-container{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 1% auto 0 auto;
display: block;
background-color: none;
width: 20%;
height: 3rem;
}
.btn-container button{
color:#870000;
background-color: #29323c;
border: none;
width: 100%;
height: fit-content;
border-radius: 5px;
}
button:hover{
cursor: pointer;
} | assets/css/main.css | *{
margin: 0;
padding: 0;
}
@font-face{
font-family: rock;
src: url(/assets/fonts/jrfocout.ttf);
}
@font-face{
font-family: paper;
src: url(/assets/fonts/cutthepaper.ttf);
}
@font-face{
font-family: scissors;
src: url(/assets/fonts/scissors.ttf);
}
body{
background: #485563; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #29323c, #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.container{
width: 100%;
background: none;
}
.flex{
display: block;
margin: auto auto;
}
header{
width: 90%;
margin: auto auto;
display: block;
padding-top: 5%;
padding-bottom: 5%;
text-align: center;
}
header h1{
width: 100%;
word-break: break-all;
}
header h1 span{
display: inline-block;
margin: 0 10px 0 10px;
line-height: 60px;
font-weight: 200;
}
.rock{
font-family: "rock";
color: #870000;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.paper{
font-family: "paper";
letter-spacing: 3px;
font-size: 46px;
font-weight: 100;
color: #2980B9;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.scissors{
font-family: "scissors";
font-size: 48px;
color: #1f4037; /* fallback for old browsers */
font-weight: bolder;
letter-spacing: 3px;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
main{
width: 90%;
margin: auto auto;
height: auto;
position: relative;
/* margin-top: 25%; */
}
main span{
width: 50%;
display: block;
/* height: 150px; */
border-radius: 10px;
line-height: 1rem;
text-align: center;
}
main span:hover{
cursor: pointer;
}
.item-rock{
position: absolute;
top: 4rem;
left: 0;
background: #870000; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(135, 0, 0, 0.514), #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, rgba(72, 85, 99, 0.075), rgba(135, 0, 0, 0.514), rgba(72, 85, 99, 0.075)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#870000;
z-index: 9;
font-family: "rock";
font-size: 2rem;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
.item-paper{
position: absolute;
top: 4rem;
right: 0;
z-index: 11;
background: #2980B9; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(41, 127, 185, 0.514), rgba(72, 85, 99, 0.075)); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(41, 127, 185, 0.514), rgba(72, 85, 99, 0.075));/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#2980B9;
font-family: "paper";
font-size: 3rem;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.item-scissors{
position: absolute;
top:0;
left: 0;
right: 0;
background: #99f2c8; /* fallback for old browsers */
background: -webkit-linear-gradient(to top,rgba(72, 85, 99, 0.075), rgba(153, 242, 200, 0.288), rgba(72, 85, 99, 0.075)#485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, rgba(72, 85, 99, 0.075), rgba(153, 242, 200, 0.205), rgba(72, 85, 99, 0.075)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color:#99f2c8;
z-index: 12;
left:0;
right: 0;
top:8rem;
margin: 0 auto;
font-family: "scissors";
font-size: 2rem;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
.item-result{
display: none;
}
.player-container{
display: inline-block;
width: 46%;
margin: 0;
padding: 0;
float: left;
}
.system-container{
display: inline-block;
width: 46%;
margin: 0;
padding: 0;
float: right;
}
.versus{
float: left;
width: 7%;
}
.player{
color:red;
}
.system{
color:red;
}
.btn-container{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 1% auto 0 auto;
display: block;
background-color: none;
width: 20%;
height: 3rem;
}
.btn-container button{
color:#870000;
background-color: #29323c;
border: none;
width: 100%;
height: fit-content;
border-radius: 5px;
}
button:hover{
cursor: pointer;
} | 0.317215 | 0.061621 |
*
{
margin: 0px;
padding: 0px;
}
body
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
background-color: #e9eaed;
color: #000;
width: 100%;
}
#container
{
width: 1200px;
margin: 15px auto 0px auto;
}
#navbar
{
width: 100%;
background-color: #39b1a4;
border-bottom: 1px solid #39b1a4;
height: 40px;
-webkit-box-shadow: 0 2px 2px 2px #888;
-moz-box-shadow: 0 2px 2px 2px #888;
box-shadow: 0 2px 2px 2px #888;
}
#container
{
width: 1200px;
margin: 15px auto 0px auto;
}
#login-right
{
float: right;
width: 35%;
}
#login-right h2
{
color: #fff;
text-shadow: 1px 1px 3px #000;
line-height: 50px;
}
#login-right button
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #888;
padding: 7px;
background-color: #dc4d38;
cursor: pointer;
}
.login-margin
{
margin-top: 80px;
}
.btn-signin
{
width: 122px;
font-size: 18px;
}
.btn-login
{
width: 212px;
float: right;
margin-right: 55px;
}
.short-pass
{
width: 230px;
}
#login-right input
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #888;
padding: 5px;
margin-bottom: 3px;
}
#login-right p
{
color: #fff;
text-shadow: 1px 1px 5px #000;
text-indent: 12px;
}
.login-margin
{
margin-top: 80px;
}
.name
{
width: 170px;
}
.long
{
width: 356px;
}
.margin-radio
{
margin-top: 5px;
margin-left: 80px;
}
#login-left
{
float: left;
width: 64.6%;
height: 520px;
}
#login-left p
{
color: #fff;
text-shadow: 1px 1px 5px #000;
font-size: 25px;
line-height: 35px;
text-align: center;
}
#login-left h1
{
color: #fff;
text-shadow: 1px 1px 3px #000;
font-size: 40px;
line-height: 50px;
text-align: center;
margin-top: 130px;
}
#passwordsignup{
width:147px;
font-size:16px;
border-radius:5px;
padding:5px;
}
footer
{
position: absolute;
text-align: center;
color: #fff;
text-shadow: 1px 1px 3px #000;
width: 1200px;
margin-bottom:10px;
}
.clear
{
clear: both;
} | css/index.css | *
{
margin: 0px;
padding: 0px;
}
body
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
background-color: #e9eaed;
color: #000;
width: 100%;
}
#container
{
width: 1200px;
margin: 15px auto 0px auto;
}
#navbar
{
width: 100%;
background-color: #39b1a4;
border-bottom: 1px solid #39b1a4;
height: 40px;
-webkit-box-shadow: 0 2px 2px 2px #888;
-moz-box-shadow: 0 2px 2px 2px #888;
box-shadow: 0 2px 2px 2px #888;
}
#container
{
width: 1200px;
margin: 15px auto 0px auto;
}
#login-right
{
float: right;
width: 35%;
}
#login-right h2
{
color: #fff;
text-shadow: 1px 1px 3px #000;
line-height: 50px;
}
#login-right button
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #888;
padding: 7px;
background-color: #dc4d38;
cursor: pointer;
}
.login-margin
{
margin-top: 80px;
}
.btn-signin
{
width: 122px;
font-size: 18px;
}
.btn-login
{
width: 212px;
float: right;
margin-right: 55px;
}
.short-pass
{
width: 230px;
}
#login-right input
{
font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size: 18px;
line-height: 18px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #888;
padding: 5px;
margin-bottom: 3px;
}
#login-right p
{
color: #fff;
text-shadow: 1px 1px 5px #000;
text-indent: 12px;
}
.login-margin
{
margin-top: 80px;
}
.name
{
width: 170px;
}
.long
{
width: 356px;
}
.margin-radio
{
margin-top: 5px;
margin-left: 80px;
}
#login-left
{
float: left;
width: 64.6%;
height: 520px;
}
#login-left p
{
color: #fff;
text-shadow: 1px 1px 5px #000;
font-size: 25px;
line-height: 35px;
text-align: center;
}
#login-left h1
{
color: #fff;
text-shadow: 1px 1px 3px #000;
font-size: 40px;
line-height: 50px;
text-align: center;
margin-top: 130px;
}
#passwordsignup{
width:147px;
font-size:16px;
border-radius:5px;
padding:5px;
}
footer
{
position: absolute;
text-align: center;
color: #fff;
text-shadow: 1px 1px 3px #000;
width: 1200px;
margin-bottom:10px;
}
.clear
{
clear: both;
} | 0.178418 | 0.050729 |
@font-face {
font-family: weblysleekuisl;
src: url(weblysleekuisl.ttf);
}
body {
font-family: weblysleekuisl;
background-image: url('img/bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
}
.desktop {
width: 100%;
height: calc(100vh - 42px);
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: flex-start;
}
.desktop-app-box {
width: 70px;
height: 70px;
display: block;
margin: 3px;
margin-bottom: 28px;
color: #fff;
font-size: 12px;
text-align: center;
line-height: 14px;
border: 1px solid transparent;
}
.desktop-app-box:hover {
background-color: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.4);
}
.desktop-app-box:active,
.desktop-app-box:focus {
background-color: rgba(255, 255, 255, 0.3);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.desktop-app-box-large {
height: 84px;
margin-bottom: 14px;
}
.desktop-app-box img {
height: 46px;
width: 46px;
margin-bottom: 5px;
}
.start-center::-webkit-scrollbar,
.start-right::-webkit-scrollbar {
background-color: rgba(90, 90, 90, 0.4);
width: 13px;
}
.start-center::-webkit-scrollbar-button:vertical:increment,
.start-right::-webkit-scrollbar-button:vertical:increment {
background-image: url('icon/arrow-down.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.start-center::-webkit-scrollbar-button:vertical:decrement,
.start-right::-webkit-scrollbar-button:vertical:decrement {
background-image: url('icon/arrow-up.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.start-center::-webkit-scrollbar-button,
.start-right::-webkit-scrollbar-button {
background-color: rgba(90, 90, 90, 0.1);
}
.start-center::-webkit-scrollbar-button:hover,
.start-right::-webkit-scrollbar-button:hover {
background-color: rgba(180, 180, 180, 0.6);
}
.start-center::-webkit-scrollbar-button:active,
.start-right::-webkit-scrollbar-button:active {
background-color: rgba(180, 180, 180, 0.9);
}
.start-center::-webkit-scrollbar-track,
.start-right::-webkit-scrollbar-track {
background-color: rgba(90, 90, 90, 0.4);
}
.start-center::-webkit-scrollbar-track-piece,
.start-right::-webkit-scrollbar-track-piece {
/* 4 */
}
.start-center::-webkit-scrollbar-thumb,
.start-right::-webkit-scrollbar-thumb {
background-color: rgba(180, 180, 180, 0.3);
}
.start-center::-webkit-scrollbar-thumb:hover,
.start-right::-webkit-scrollbar-thumb:hover {
background-color: rgba(180, 180, 180, 0.6);
}
.start-center::-webkit-scrollbar-thumb:active,
.start-right::-webkit-scrollbar-thumb:active {
background-color: rgba(180, 180, 180, 0.9);
}
.start-center::-webkit-scrollbar-corner,
.start-right::-webkit-scrollbar-corner {
/* 6 */
}
.start-center::-webkit-resizer .inline-flex,
.start-right::-webkit-resizer .inline-flex {
height: 550px !important;
display: inline-flex !important;
}
.start {
width: 630px !important;
height: 550px;
max-height: calc(100vh - 52px);
background-color: rgba(19, 19, 19, 0.7);
position: fixed;
left: 0;
bottom: 42px;
color: #fff;
display: none;
cursor: default;
opacity: 1 !important;
}
.start-left,
.start-center,
.start-right {
display: inline-block;
vertical-align: top;
font-size: 12px;
}
.start-left {
width: 50px;
height: 100%;
vertical-align: middle;
text-align: center;
}
.start-left-btn {
width: 50px;
height: 50px;
display: block;
vertical-align: middle;
}
.start-left-btn:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-left-btn:active {
background-color: rgba(90, 90, 90, 0.8);
}
.start-left img {
height: 20px;
width: auto;
padding-top: 15px;
}
.start-left-bottom {
position: absolute;
bottom: 0px;
}
.start-center {
width: 255px;
max-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
.start-center:hover {
overflow-y: auto;
}
.start-more-btn {
margin-left: 3px;
}
.start-center h2:first-child {
margin-top: 5px;
}
.start-center h2 {
padding: 16px 15px 10px 15px;
}
.start-center h2:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-center h2:active {
background-color: rgba(90, 90, 90, 0.8);
filter: blur(0.5px);
}
.start-center h3 {
padding: 11px 15px 12px 15px;
}
.start-center h3:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-center h3:active {
background-color: rgba(90, 90, 90, 0.8);
filter: blur(0.5px);
padding: 11px 17px 12px 17px;
font-size: 11.8px;
}
.start-center h3:active .start-app-icon {
height: 31px;
width: 31px;
}
.start-hidden-h3 {
display: none;
}
.start-app-icon {
height: 32px;
width: 32px;
background-color: #0078D7;
display: inline-block;
margin-top: -10px;
margin-bottom: -10px;
margin-right: 10px;
text-align: center;
vertical-align: middle;
}
.start-app-icon-small {
width: 70%;
height: 70%;
margin-top: 15%;
}
.start-app-icon-mid {
width: 80%;
height: 80%;
margin-top: 10%;
}
.start-app-icon-large {
width: 90%;
height: 90%;
margin-top: 5%;
}
.start-right {
width: 316px;
max-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
font-size: 0;
}
.start-right:hover {
overflow-y: auto;
}
.start-right h2 {
padding: 11px 15px 12px 2px;
margin-top: 3px;
margin-bottom: 3px;
font-size: 12px;
}
.start-right h2:first-child {
margin-top: 5px;
padding: 16px 15px 12px 2px;
}
.start-right-1x1 {
height: 96px;
width: 96px;
display: inline-table;
background-color: #0078D7;
margin: 2px;
}
.start-right-2x1 {
height: 96px;
width: 196px;
display: inline-table;
background-color: #0078D7;
margin: 2px;
color: #fff;
}
.start-right-calendar {
font-size: 14px;
text-align: center;
display: inline-block;
}
.start-right-calendar span {
font-size: 24px;
}
.taskbar {
height: 42px;
width: 100%;
background-color: rgba(19, 19, 19, 0.7);
position: fixed;
bottom: 0;
cursor: default;
}
.taskbar-left {
height: 42px;
display: inline-block;
font-size: 0;
}
.taskbar-left div {
height: 42px;
width: 50px;
display: table-cell;
font-size: 16px;
vertical-align: middle;
text-align: center;
}
.taskbar-left div:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.taskbar-left div:active {
background-color: rgba(90, 90, 90, 0.1);
}
.taskbar-left img {
height: 20px;
width: auto;
padding-right: 5px;
}
.taskbar-start-btn img {
height: 16px;
width: auto;
filter: brightness(0) invert(1);
}
.taskbar-start-btn:hover img {
filter: brightness(1) invert(0);
}
.taskbar-right {
float: right;
height: 42px;
display: inline-block;
font-size: 0;
color: #fff;
}
.taskbar-right img {
height: 16px;
width: auto;
padding-right: 0px;
}
.taskbar-right div {
height: 42px;
display: table-cell;
font-size: 12px;
vertical-align: middle;
text-align: center;
}
.taskbar-right-reg {
width: 24px;
}
.taskbar-right div:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.taskbar-right div:active {
background-color: rgba(90, 90, 90, 0.1);
}
.taskbar-lang-btn {
width: 38px;
}
.taskbar-time-btn {
width: 65px;
line-height: 18px;
}
.taskbar-notification-btn {
width: 38px;
}
.taskbar-desktop-btn-space {
width: 8px;
}
.taskbar-desktop-btn {
width: 4px;
border-left: 1px solid #666;
}
.taskbar-desktop-btn-space:hover,
.taskbar-desktop-btn-space:active {
background-color: rgba(19, 19, 19, 0.7) !important;
}
.right-click-menu {
background: #2b2b2b;
border: 1px solid #a0a0a0;
color: #fff;
position: absolute;
z-index: 999999;
display: none;
box-shadow: 2px 6px 2px rgba(20, 20, 20, 0.6);
font-size: 13px;
}
.right-click-menu hr {
border: 0;
border-bottom: 1px solid #888;
margin: 5px 10px
}
.right-click-menu ul {
list-style: none;
padding: 0;
margin: 0;
padding: 8px 0;
}
.right-click-menu ul a {
text-decoration: none;
cursor: default;
}
.right-click-menu ul li {
width: 260px;
padding: 9px 14px 9px 34px;
background-color: #2b2b2b;
color: #fff;
}
.right-click-menu ul .right-click-menu-hvicon {
padding: 9px 14px 9px 14px;
width: 280px;
}
.right-click-menu ul li:hover {
background-color: #414141;
color: #fff;
}
.right-click-menu img {
width: 14px;
height: 14px;
margin-bottom: -2px;
margin-right: 8px;
}
.right-click-menu .right-click-menu-more {
width: 14px;
height: 16px;
margin-top: -1px;
float: right;
margin-right: -4px;
}
.right-click-sub-menu {
display: none;
} | login_styles/style.css | @font-face {
font-family: weblysleekuisl;
src: url(weblysleekuisl.ttf);
}
body {
font-family: weblysleekuisl;
background-image: url('img/bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
}
.desktop {
width: 100%;
height: calc(100vh - 42px);
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: flex-start;
}
.desktop-app-box {
width: 70px;
height: 70px;
display: block;
margin: 3px;
margin-bottom: 28px;
color: #fff;
font-size: 12px;
text-align: center;
line-height: 14px;
border: 1px solid transparent;
}
.desktop-app-box:hover {
background-color: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.4);
}
.desktop-app-box:active,
.desktop-app-box:focus {
background-color: rgba(255, 255, 255, 0.3);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.desktop-app-box-large {
height: 84px;
margin-bottom: 14px;
}
.desktop-app-box img {
height: 46px;
width: 46px;
margin-bottom: 5px;
}
.start-center::-webkit-scrollbar,
.start-right::-webkit-scrollbar {
background-color: rgba(90, 90, 90, 0.4);
width: 13px;
}
.start-center::-webkit-scrollbar-button:vertical:increment,
.start-right::-webkit-scrollbar-button:vertical:increment {
background-image: url('icon/arrow-down.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.start-center::-webkit-scrollbar-button:vertical:decrement,
.start-right::-webkit-scrollbar-button:vertical:decrement {
background-image: url('icon/arrow-up.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.start-center::-webkit-scrollbar-button,
.start-right::-webkit-scrollbar-button {
background-color: rgba(90, 90, 90, 0.1);
}
.start-center::-webkit-scrollbar-button:hover,
.start-right::-webkit-scrollbar-button:hover {
background-color: rgba(180, 180, 180, 0.6);
}
.start-center::-webkit-scrollbar-button:active,
.start-right::-webkit-scrollbar-button:active {
background-color: rgba(180, 180, 180, 0.9);
}
.start-center::-webkit-scrollbar-track,
.start-right::-webkit-scrollbar-track {
background-color: rgba(90, 90, 90, 0.4);
}
.start-center::-webkit-scrollbar-track-piece,
.start-right::-webkit-scrollbar-track-piece {
/* 4 */
}
.start-center::-webkit-scrollbar-thumb,
.start-right::-webkit-scrollbar-thumb {
background-color: rgba(180, 180, 180, 0.3);
}
.start-center::-webkit-scrollbar-thumb:hover,
.start-right::-webkit-scrollbar-thumb:hover {
background-color: rgba(180, 180, 180, 0.6);
}
.start-center::-webkit-scrollbar-thumb:active,
.start-right::-webkit-scrollbar-thumb:active {
background-color: rgba(180, 180, 180, 0.9);
}
.start-center::-webkit-scrollbar-corner,
.start-right::-webkit-scrollbar-corner {
/* 6 */
}
.start-center::-webkit-resizer .inline-flex,
.start-right::-webkit-resizer .inline-flex {
height: 550px !important;
display: inline-flex !important;
}
.start {
width: 630px !important;
height: 550px;
max-height: calc(100vh - 52px);
background-color: rgba(19, 19, 19, 0.7);
position: fixed;
left: 0;
bottom: 42px;
color: #fff;
display: none;
cursor: default;
opacity: 1 !important;
}
.start-left,
.start-center,
.start-right {
display: inline-block;
vertical-align: top;
font-size: 12px;
}
.start-left {
width: 50px;
height: 100%;
vertical-align: middle;
text-align: center;
}
.start-left-btn {
width: 50px;
height: 50px;
display: block;
vertical-align: middle;
}
.start-left-btn:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-left-btn:active {
background-color: rgba(90, 90, 90, 0.8);
}
.start-left img {
height: 20px;
width: auto;
padding-top: 15px;
}
.start-left-bottom {
position: absolute;
bottom: 0px;
}
.start-center {
width: 255px;
max-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
.start-center:hover {
overflow-y: auto;
}
.start-more-btn {
margin-left: 3px;
}
.start-center h2:first-child {
margin-top: 5px;
}
.start-center h2 {
padding: 16px 15px 10px 15px;
}
.start-center h2:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-center h2:active {
background-color: rgba(90, 90, 90, 0.8);
filter: blur(0.5px);
}
.start-center h3 {
padding: 11px 15px 12px 15px;
}
.start-center h3:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.start-center h3:active {
background-color: rgba(90, 90, 90, 0.8);
filter: blur(0.5px);
padding: 11px 17px 12px 17px;
font-size: 11.8px;
}
.start-center h3:active .start-app-icon {
height: 31px;
width: 31px;
}
.start-hidden-h3 {
display: none;
}
.start-app-icon {
height: 32px;
width: 32px;
background-color: #0078D7;
display: inline-block;
margin-top: -10px;
margin-bottom: -10px;
margin-right: 10px;
text-align: center;
vertical-align: middle;
}
.start-app-icon-small {
width: 70%;
height: 70%;
margin-top: 15%;
}
.start-app-icon-mid {
width: 80%;
height: 80%;
margin-top: 10%;
}
.start-app-icon-large {
width: 90%;
height: 90%;
margin-top: 5%;
}
.start-right {
width: 316px;
max-height: 100%;
overflow-x: hidden;
overflow-y: hidden;
font-size: 0;
}
.start-right:hover {
overflow-y: auto;
}
.start-right h2 {
padding: 11px 15px 12px 2px;
margin-top: 3px;
margin-bottom: 3px;
font-size: 12px;
}
.start-right h2:first-child {
margin-top: 5px;
padding: 16px 15px 12px 2px;
}
.start-right-1x1 {
height: 96px;
width: 96px;
display: inline-table;
background-color: #0078D7;
margin: 2px;
}
.start-right-2x1 {
height: 96px;
width: 196px;
display: inline-table;
background-color: #0078D7;
margin: 2px;
color: #fff;
}
.start-right-calendar {
font-size: 14px;
text-align: center;
display: inline-block;
}
.start-right-calendar span {
font-size: 24px;
}
.taskbar {
height: 42px;
width: 100%;
background-color: rgba(19, 19, 19, 0.7);
position: fixed;
bottom: 0;
cursor: default;
}
.taskbar-left {
height: 42px;
display: inline-block;
font-size: 0;
}
.taskbar-left div {
height: 42px;
width: 50px;
display: table-cell;
font-size: 16px;
vertical-align: middle;
text-align: center;
}
.taskbar-left div:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.taskbar-left div:active {
background-color: rgba(90, 90, 90, 0.1);
}
.taskbar-left img {
height: 20px;
width: auto;
padding-right: 5px;
}
.taskbar-start-btn img {
height: 16px;
width: auto;
filter: brightness(0) invert(1);
}
.taskbar-start-btn:hover img {
filter: brightness(1) invert(0);
}
.taskbar-right {
float: right;
height: 42px;
display: inline-block;
font-size: 0;
color: #fff;
}
.taskbar-right img {
height: 16px;
width: auto;
padding-right: 0px;
}
.taskbar-right div {
height: 42px;
display: table-cell;
font-size: 12px;
vertical-align: middle;
text-align: center;
}
.taskbar-right-reg {
width: 24px;
}
.taskbar-right div:hover {
background-color: rgba(90, 90, 90, 0.5);
}
.taskbar-right div:active {
background-color: rgba(90, 90, 90, 0.1);
}
.taskbar-lang-btn {
width: 38px;
}
.taskbar-time-btn {
width: 65px;
line-height: 18px;
}
.taskbar-notification-btn {
width: 38px;
}
.taskbar-desktop-btn-space {
width: 8px;
}
.taskbar-desktop-btn {
width: 4px;
border-left: 1px solid #666;
}
.taskbar-desktop-btn-space:hover,
.taskbar-desktop-btn-space:active {
background-color: rgba(19, 19, 19, 0.7) !important;
}
.right-click-menu {
background: #2b2b2b;
border: 1px solid #a0a0a0;
color: #fff;
position: absolute;
z-index: 999999;
display: none;
box-shadow: 2px 6px 2px rgba(20, 20, 20, 0.6);
font-size: 13px;
}
.right-click-menu hr {
border: 0;
border-bottom: 1px solid #888;
margin: 5px 10px
}
.right-click-menu ul {
list-style: none;
padding: 0;
margin: 0;
padding: 8px 0;
}
.right-click-menu ul a {
text-decoration: none;
cursor: default;
}
.right-click-menu ul li {
width: 260px;
padding: 9px 14px 9px 34px;
background-color: #2b2b2b;
color: #fff;
}
.right-click-menu ul .right-click-menu-hvicon {
padding: 9px 14px 9px 14px;
width: 280px;
}
.right-click-menu ul li:hover {
background-color: #414141;
color: #fff;
}
.right-click-menu img {
width: 14px;
height: 14px;
margin-bottom: -2px;
margin-right: 8px;
}
.right-click-menu .right-click-menu-more {
width: 14px;
height: 16px;
margin-top: -1px;
float: right;
margin-right: -4px;
}
.right-click-sub-menu {
display: none;
} | 0.511717 | 0.057812 |
@import url("https://fonts.googleapis.com/css2?family=Lemon&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #d3d3d3;
}
/* ***********************GAME********************** */
#game {
position: absolute;
width: 1088px;
height: 544px;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 12px solid rgba(50, 50, 50, 0.8);
border-radius: 25px;
background: black;
box-shadow: 12px 12px 15px 0 rgba(0, 0, 0, 0.5),
-8px -8px 12px 0 rgba(255, 255, 255, 0.5);
}
/* *************************SCORE*************************** */
#scoreBlue,
#scoreRed {
position: absolute;
font-size: 100px;
font-weight: bold;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
color: rgba(255, 255, 255, 0.2);
top: 210px;
}
.point {
color: rgba(255, 255, 255, 0.5);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.5);
}
#scoreBlue {
left: 250px;
}
#scoreRed {
right: 250px;
}
/* ***********************PADDLE********************** */
#leftPaddle,
#rightPaddle {
position: absolute;
width: 15px;
height: 70px;
border-radius: 5px;
transition: 0.1s;
/* top: 237px; */
}
#leftPaddle {
background: blue;
/* left: 10px; */
}
.left {
background: blue;
box-shadow: 0 0 5px blue, 0 0 25px blue, 0 0 50px blue, 0 0 200px blue;
}
#rightPaddle {
background: red;
/* right: 10px; */
}
.right {
background: red;
box-shadow: 0 0 5px red, 0 0 25px red, 0 0 50px red, 0 0 200px red;
}
/* ***********************Center Line********************** */
#center {
position: absolute;
height: 100%;
top: 0px;
left: 50%;
border-right: 2px dashed rgba(255, 255, 255, 0.4);
border-left: 2px dashed rgba(255, 255, 255, 0.4);
}
/* ***********************Ball********************** */
#ball {
position: absolute;
width: 20px;
height: 20px;
background: darkorange;
border-radius: 50%;
box-shadow: 0 0 5px orange, 0 0 25px orange, 0 0 50px orange, 0 0 200px orange;
border: none;
} | style.css | @import url("https://fonts.googleapis.com/css2?family=Lemon&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #d3d3d3;
}
/* ***********************GAME********************** */
#game {
position: absolute;
width: 1088px;
height: 544px;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 12px solid rgba(50, 50, 50, 0.8);
border-radius: 25px;
background: black;
box-shadow: 12px 12px 15px 0 rgba(0, 0, 0, 0.5),
-8px -8px 12px 0 rgba(255, 255, 255, 0.5);
}
/* *************************SCORE*************************** */
#scoreBlue,
#scoreRed {
position: absolute;
font-size: 100px;
font-weight: bold;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
color: rgba(255, 255, 255, 0.2);
top: 210px;
}
.point {
color: rgba(255, 255, 255, 0.5);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.5);
}
#scoreBlue {
left: 250px;
}
#scoreRed {
right: 250px;
}
/* ***********************PADDLE********************** */
#leftPaddle,
#rightPaddle {
position: absolute;
width: 15px;
height: 70px;
border-radius: 5px;
transition: 0.1s;
/* top: 237px; */
}
#leftPaddle {
background: blue;
/* left: 10px; */
}
.left {
background: blue;
box-shadow: 0 0 5px blue, 0 0 25px blue, 0 0 50px blue, 0 0 200px blue;
}
#rightPaddle {
background: red;
/* right: 10px; */
}
.right {
background: red;
box-shadow: 0 0 5px red, 0 0 25px red, 0 0 50px red, 0 0 200px red;
}
/* ***********************Center Line********************** */
#center {
position: absolute;
height: 100%;
top: 0px;
left: 50%;
border-right: 2px dashed rgba(255, 255, 255, 0.4);
border-left: 2px dashed rgba(255, 255, 255, 0.4);
}
/* ***********************Ball********************** */
#ball {
position: absolute;
width: 20px;
height: 20px;
background: darkorange;
border-radius: 50%;
box-shadow: 0 0 5px orange, 0 0 25px orange, 0 0 50px orange, 0 0 200px orange;
border: none;
} | 0.401923 | 0.098642 |
:root {
--main-bg-color: #fafafa;
--main-text-color: #103456;
--main-link-color: #894c84;
--main-link-hover-color: #fafafa;
}
@media (prefers-color-scheme: dark) {
:root {
--main-bg-color: #242424;
--main-text-color: #17ab5c;
--main-link-color: #bf64b7;
--main-link-hover-color: #000000;
}
}
body {
font: 100%/1.5em sans-serif;
margin: 0;
padding: 1.5em;
background: var(--main-bg-color);
color: var(--main-text-color);
}
a, .slide label {
text-decoration: none;
color: var(--main-link-color);
}
a:hover, .slide label:hover, button[type=submit]:hover {
color: var(--main-link-hover-color);
background: var(--main-link-color);
}
a.button {
appearance: button;
text-decoration: none;
padding: 0 5px;
border: 1px solid var(--main-link-color);
}
.header {
font-size: 2.5em;
text-align: center;
margin: 1em 0;
color: var(--main-link-color);
}
.wrapper {
margin: 0 auto;
padding: 1em;
max-width: 64em;
}
.menu {
display: block;
float: left;
overflow: hidden;
padding: 4px;
max-width: 12em;
white-space: nowrap;
text-overflow: ellipsis;
}
.listitem {
display: block;
font-family: monospace;
font-size: 1.2em;
white-space: nowrap;
}
.tableitem {
font-family: monospace;
font-size: 1.2em;
white-space: nowrap;
}
.content {
float: left;
font-size: 1em;
margin-left: 2em;
padding: 4px;
max-width: 50em;
overflow: auto;
}
.tunnel.established {
color: #56B734;
}
.tunnel.expiring {
color: #D3AE3F;
}
.tunnel.failed {
color: #D33F3F;
}
.tunnel.building {
color: #434343;
}
caption {
font-size: 1.5em;
text-align: center;
color: var(--main-link-color);
}
table {
display: table;
border-collapse: collapse;
text-align: center;
}
table.extaddr {
text-align: left;
}
table.services {
width: 100%;
}
textarea {
background-color: var(--main-bg-color);
color: var(--main-text-color);
word-break: break-all;
}
.streamdest {
width: 120px;
max-width: 240px;
overflow: hidden;
text-overflow: ellipsis;
}
.slide div.slidecontent, .slide [type="checkbox"] {
display: none;
}
.slide [type="checkbox"]:checked ~ div.slidecontent {
display: block;
margin-top: 0;
padding: 0;
}
.disabled {
color: #D33F3F;
}
.enabled {
color: #56B734;
}
button[type=submit] {
background-color: transparent;
color: var(--main-link-color);
text-decoration: none;
padding: 5px;
border: 1px solid var(--main-link-color);
font-size: 14px;
}
input, select, select option {
background-color: var(--main-bg-color);
color: var(--main-link-color);
padding: 5px;
border: 1px solid var(--main-link-color);
font-size: 14px;
}
input:focus, select:focus, select option:focus {
outline: none;
}
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
}
@media screen and (max-width: 1150px) { /* adaptive style */
.wrapper {
max-width: 58em;
}
.content {
max-width: 40em;
}
}
@media screen and (max-width: 980px) {
body {
font: 100%/1.2em sans-serif;
padding: 1.2em 0 0 0;
}
.menu {
width: 100%;
max-width: unset;
display: block;
float: none;
position: unset;
font-size: 16px;
text-align: center;
}
.menu a, .commands a {
display: inline-block;
padding: 4px;
}
.content {
float: none;
margin-left: unset;
margin-top: 16px;
max-width: 100%;
width: 100%;
text-align: center;
}
a, .slide label {
display: block;
}
.header {
margin: unset;
font-size: 1.5em;
}
small {
display: block
}
a.button {
appearance: button;
text-decoration: none;
margin-top: 10px;
padding: 6px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
width: -webkit-fill-available;
}
input, select {
width: 35%;
text-align: center;
padding: 5px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
font-size: 18px;
}
table.extaddr {
margin: auto;
text-align: unset;
}
textarea {
width: -webkit-fill-available;
height: auto;
padding: 5px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
font-size: 12px;
}
button[type=submit] {
padding: 5px 15px;
background: transparent;
border: 2px solid var(--main-link-color);
cursor: pointer;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
height: 36px;
display: -webkit-inline-box;
margin-top: 10px;
}
} | contrib/webconsole/style.css | :root {
--main-bg-color: #fafafa;
--main-text-color: #103456;
--main-link-color: #894c84;
--main-link-hover-color: #fafafa;
}
@media (prefers-color-scheme: dark) {
:root {
--main-bg-color: #242424;
--main-text-color: #17ab5c;
--main-link-color: #bf64b7;
--main-link-hover-color: #000000;
}
}
body {
font: 100%/1.5em sans-serif;
margin: 0;
padding: 1.5em;
background: var(--main-bg-color);
color: var(--main-text-color);
}
a, .slide label {
text-decoration: none;
color: var(--main-link-color);
}
a:hover, .slide label:hover, button[type=submit]:hover {
color: var(--main-link-hover-color);
background: var(--main-link-color);
}
a.button {
appearance: button;
text-decoration: none;
padding: 0 5px;
border: 1px solid var(--main-link-color);
}
.header {
font-size: 2.5em;
text-align: center;
margin: 1em 0;
color: var(--main-link-color);
}
.wrapper {
margin: 0 auto;
padding: 1em;
max-width: 64em;
}
.menu {
display: block;
float: left;
overflow: hidden;
padding: 4px;
max-width: 12em;
white-space: nowrap;
text-overflow: ellipsis;
}
.listitem {
display: block;
font-family: monospace;
font-size: 1.2em;
white-space: nowrap;
}
.tableitem {
font-family: monospace;
font-size: 1.2em;
white-space: nowrap;
}
.content {
float: left;
font-size: 1em;
margin-left: 2em;
padding: 4px;
max-width: 50em;
overflow: auto;
}
.tunnel.established {
color: #56B734;
}
.tunnel.expiring {
color: #D3AE3F;
}
.tunnel.failed {
color: #D33F3F;
}
.tunnel.building {
color: #434343;
}
caption {
font-size: 1.5em;
text-align: center;
color: var(--main-link-color);
}
table {
display: table;
border-collapse: collapse;
text-align: center;
}
table.extaddr {
text-align: left;
}
table.services {
width: 100%;
}
textarea {
background-color: var(--main-bg-color);
color: var(--main-text-color);
word-break: break-all;
}
.streamdest {
width: 120px;
max-width: 240px;
overflow: hidden;
text-overflow: ellipsis;
}
.slide div.slidecontent, .slide [type="checkbox"] {
display: none;
}
.slide [type="checkbox"]:checked ~ div.slidecontent {
display: block;
margin-top: 0;
padding: 0;
}
.disabled {
color: #D33F3F;
}
.enabled {
color: #56B734;
}
button[type=submit] {
background-color: transparent;
color: var(--main-link-color);
text-decoration: none;
padding: 5px;
border: 1px solid var(--main-link-color);
font-size: 14px;
}
input, select, select option {
background-color: var(--main-bg-color);
color: var(--main-link-color);
padding: 5px;
border: 1px solid var(--main-link-color);
font-size: 14px;
}
input:focus, select:focus, select option:focus {
outline: none;
}
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
}
@media screen and (max-width: 1150px) { /* adaptive style */
.wrapper {
max-width: 58em;
}
.content {
max-width: 40em;
}
}
@media screen and (max-width: 980px) {
body {
font: 100%/1.2em sans-serif;
padding: 1.2em 0 0 0;
}
.menu {
width: 100%;
max-width: unset;
display: block;
float: none;
position: unset;
font-size: 16px;
text-align: center;
}
.menu a, .commands a {
display: inline-block;
padding: 4px;
}
.content {
float: none;
margin-left: unset;
margin-top: 16px;
max-width: 100%;
width: 100%;
text-align: center;
}
a, .slide label {
display: block;
}
.header {
margin: unset;
font-size: 1.5em;
}
small {
display: block
}
a.button {
appearance: button;
text-decoration: none;
margin-top: 10px;
padding: 6px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
width: -webkit-fill-available;
}
input, select {
width: 35%;
text-align: center;
padding: 5px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
font-size: 18px;
}
table.extaddr {
margin: auto;
text-align: unset;
}
textarea {
width: -webkit-fill-available;
height: auto;
padding: 5px;
border: 2px solid var(--main-link-color);
border-radius: 5px;
font-size: 12px;
}
button[type=submit] {
padding: 5px 15px;
background: transparent;
border: 2px solid var(--main-link-color);
cursor: pointer;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
height: 36px;
display: -webkit-inline-box;
margin-top: 10px;
}
} | 0.266644 | 0.087213 |
.Container {
height: 100%;
width: 100%;
background: #fffbf5;
display: flex;
flex-direction: column;
align-items: stretch;
border-right: 1px solid #e6e0e6;
}
.Content {
flex: auto;
overflow-y: auto;
overflow-x: hidden;
}
.WidgetContainer {
flex: none;
}
.CategoriesList {
flex-grow: 1;
}
.Loading {
padding: 30px;
}
.LogoImage {
cursor: pointer;
height: 30px;
margin-right: 10px;
}
.Search {
position: relative;
flex: none;
color: #770c56;
font-weight: 600;
font-size: 20px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #faf6f0;
border-bottom: 1px solid #e6e0e6;
word-break: break-all;
}
.SearchField {
padding: 0.75rem 1rem;
border: 0;
width: 100%;
font-size: 1rem;
}
.SearchCancel {
height: 16px;
width: 16px;
top: 50%;
right: 9px;
margin-top: -9px;
cursor: pointer;
background-image: url('./img/cancel.svg');
background-size: 16px;
position: absolute;
right: 1.5rem;
}
.Category:first-child {
margin-top: 0;
}
.CategoryHeader {
font-weight: 600;
font-size: 1rem;
line-height: 1;
color: #4a3142;
padding: 0.5rem 1rem;
border-bottom: 1px solid #e6e0e6;
position: sticky;
top: 0;
background-color: #fffbf5;
}
.Item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(255, 255, 255, 0.65);
padding: 0.5rem 1rem;
border-bottom: 1px solid #e6e0e6;
text-decoration: none;
}
.Item-isSelected,
.Item-isSelected:hover {
background-color: #fff0f3;
}
.Item:hover {
background: #fdf6f9;
}
.Item-type-jsdoc .ItemHeader {
font-family: monospace;
}
.ItemHeader {
font-size: 1rem;
margin-bottom: 0.4px;
word-break: break-all;
color: #4c193c;
}
.ItemText {
font-weight: 400;
font-size: 0.9rem;
color: #7b6d77;
}
.ItemIcon {
background-image: url('./img/icon.svg');
background-size: 16px;
width: 16px;
height: 16px;
flex-shrink: 0;
margin-left: 10px;
}
.NoResultsContainer {
display: flex;
flex-grow: 1;
align-items: center;
justify-content: center;
}
.NoResultsText {
font-weight: 400;
font-size: 15px;
line-height: 18px;
color: #7b6d77;
} | src/ui/screens/Docs/Finder/style.css | .Container {
height: 100%;
width: 100%;
background: #fffbf5;
display: flex;
flex-direction: column;
align-items: stretch;
border-right: 1px solid #e6e0e6;
}
.Content {
flex: auto;
overflow-y: auto;
overflow-x: hidden;
}
.WidgetContainer {
flex: none;
}
.CategoriesList {
flex-grow: 1;
}
.Loading {
padding: 30px;
}
.LogoImage {
cursor: pointer;
height: 30px;
margin-right: 10px;
}
.Search {
position: relative;
flex: none;
color: #770c56;
font-weight: 600;
font-size: 20px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #faf6f0;
border-bottom: 1px solid #e6e0e6;
word-break: break-all;
}
.SearchField {
padding: 0.75rem 1rem;
border: 0;
width: 100%;
font-size: 1rem;
}
.SearchCancel {
height: 16px;
width: 16px;
top: 50%;
right: 9px;
margin-top: -9px;
cursor: pointer;
background-image: url('./img/cancel.svg');
background-size: 16px;
position: absolute;
right: 1.5rem;
}
.Category:first-child {
margin-top: 0;
}
.CategoryHeader {
font-weight: 600;
font-size: 1rem;
line-height: 1;
color: #4a3142;
padding: 0.5rem 1rem;
border-bottom: 1px solid #e6e0e6;
position: sticky;
top: 0;
background-color: #fffbf5;
}
.Item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(255, 255, 255, 0.65);
padding: 0.5rem 1rem;
border-bottom: 1px solid #e6e0e6;
text-decoration: none;
}
.Item-isSelected,
.Item-isSelected:hover {
background-color: #fff0f3;
}
.Item:hover {
background: #fdf6f9;
}
.Item-type-jsdoc .ItemHeader {
font-family: monospace;
}
.ItemHeader {
font-size: 1rem;
margin-bottom: 0.4px;
word-break: break-all;
color: #4c193c;
}
.ItemText {
font-weight: 400;
font-size: 0.9rem;
color: #7b6d77;
}
.ItemIcon {
background-image: url('./img/icon.svg');
background-size: 16px;
width: 16px;
height: 16px;
flex-shrink: 0;
margin-left: 10px;
}
.NoResultsContainer {
display: flex;
flex-grow: 1;
align-items: center;
justify-content: center;
}
.NoResultsText {
font-weight: 400;
font-size: 15px;
line-height: 18px;
color: #7b6d77;
} | 0.415847 | 0.078219 |
a:hover {
transition: all 0.5s ease-in-out;
text-decoration: none !important;
}
body {
margin: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0;
}
h2 {
margin: 0;
padding: 0;
}
h3 {
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
}
p {
padding: 0;
margin: 0;
}
li {
padding: 0;
margin: 0;
}
.fa-phone {
transform: rotate(90deg);
}
/* header-full ------------------------------------------------- */
@font-face {
font-family: 'Nirmala';
src: url("../font/Nirmala.ttf");
src: url("../font/Nirmala.ttf"), url("../font/Nirmala.ttf");
}
.header-full {
min-height: 70px;
transition: all 0.5s ease-in-out;
}
.logo img {
top: 55px;
position: absolute;
display: inline-block;
<<<<<<< HEAD
=======
<<<<<<< HEAD
>>>>>>> 24cbc8c79ab8bec081143e1a1bf77687e9595b15
transition: all 1s ease-in-out;
z-index: 1000;
}
.phone {
padding: 25px 0;
font-size: 14px;
color: rgb(255, 255, 255);
text-align: right;
font-weight: 400;
font-family: 'Nirmala';
transition-delay: .5s;
letter-spacing: 3px;
transition: all 0.5s ease-in-out;
}
.phone a {
font-size: 14px;
font-weight: 400;
color: rgb(255, 255, 255);
font-family: 'Nirmala';
transition-delay: .5s;
margin: 0 auto;
}
.phone a:hover {
color: rgb(59, 194, 241);
font-weight: 600;
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
/* nav------------------------------------------- */
.nav-block {
padding: 0;
}
.navbar-nav {
padding-left: 17%;
}
.navigation {
background-color: rgb(215, 21, 12);
}
.navbar {
border-radius: 0px;
margin-bottom: 0px;
border: 0px solid rgba(0, 0, 0, 0);
}
.navbar-nav>li>a {
font-family: 'Poppins', sans-serif;
padding-top: 10px;
padding-bottom: 10px;
font-size: 13px;
margin-left: 10px;
font-weight: 600;
}
.navbar {
min-height: 50px;
transition: all 0.5s ease-in-out;
}
.navbar-inverse {
transition: all 0.5s ease-in-out;
padding: 10px 0;
background-color: transparent;
}
.navbar-inverse .navbar-nav>li>a {
color: rgb(251, 251, 251);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
color: rgb(59, 194, 241);
background-color: rgba(251, 251, 251, 0);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
color: rgb(59, 194, 241);
transition: all 0.5s ease-in-out;
background-color: rgba(251, 251, 251, 0);
}
.navbar-nav a {
position: relative;
}
.navbar-nav a:after {
content: '';
position: absolute;
width: 0;
height: 1px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
transition: all 0.5s ease-in-out;
}
.navbar-nav a:hover:after {
width: 100%;
left: 0;
transition: all 0.5s ease-in-out;
background: #fff;
}
/* slider------------------------------------- */
.carousel-caption .btn {
text-shadow: none;
color: rgb(5, 5, 5);
font-size: 16px;
font-family: 'Roboto', sans-serif;
position: absolute;
top: b;
padding: 8px 15px;
padding-bottom: 6px;
top: 59.6%;
}
.carousel-caption h3 {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 36px;
color: rgb(252, 250, 250);
padding-bottom: 90px;
text-shadow: -1px -2px 5px rgb(215, 21, 12);
}
.carousel-caption {
left: -16%;
padding-bottom: 75px;
width: 100%;
}
.carousel-caption2 {
left: -30%;
padding-bottom: 85px;
width: 100%;
position: absolute;
bottom: 20px;
}
.carousel-caption span {
font-weight: 500;
font-size: 23px;
padding-left: 17%;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
transition: all 0.5s ease-in-out;
width: 100%;
}
.slider-full img {
width: 100%;
}
.slider-full {
background-color: rgb(215, 21, 12);
}
.slider-box {
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
background-color: rgb(255, 255, 255);
width: 64%;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: -110px;
padding: 25px 30px;
}
.slider-box p {
font-family: 'Lato', sans-serif;
font-size: 17px;
color: #333333;
font-weight: 400;
padding-top: 10px;
}
.slider-box a {
transition: all 0.5s ease-in-out;
font-weight: 400;
font-size: 13px;
display: inline-block;
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
background-color: rgb(8, 58, 125);
border: 2px solid rgb(8, 58, 125);
padding: 8px 5px;
}
.slider-box a:hover {
transition: all 0.5s ease-in-out;
border: 2px solid rgb(95, 108, 125);
}
.hvr-rectangle-out:before {
background: rgb(255, 255, 255);
transition: all 0.5s ease-in-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
color: rgb(8, 58, 125);
}
.form-1 .btn {
display: inline-block;
padding: 7px 12px;
}
.form-1 .form-control {
height: 37px;
}
.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.box-b {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
-moz-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(215, 21, 12);
border-color: rgb(215, 21, 12);
}
.card {
font-family: 'Nirmala';
width: 240px;
min-height: 300px;
background-color: rgb(255, 255, 255);
}
.form-1 {
padding-left: 30px;
}
.box-img {
text-align: center;
padding: 15px 0;
}
.card-body {
padding: 15px 10px;
}
.card-body p:nth-of-type(1) {
text-transform: uppercase;
font-size: 14px;
padding-bottom: 5px;
}
.text-1 {
width: 350px;
}
.card-body h4 {
margin: 0;
font-size: 17px;
font-weight: 600;
padding-bottom: 10px;
}
.card-body p {
font-size: 14px;
line-height: 20px;
}
.card-body p:nth-of-type(2) {
line-height: 20px;
font-size: 13px;
}
.cart button {
border: 0;
background-color: rgb(215, 21, 12);
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
font-size: 17px;
font-weight: 500;
}
.cart {
padding: 15px 76px;
}
.form-1 li {
display: inline-block;
padding-left: 15px;
}
.inner-full {
margin-top: 150px;
}
/* shink */
.shink-fix {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
z-index: 1000;
transition: 1s ease;
transition: all 0.5s ease-in-out;
}
.shrink-header-phone {
padding: 10px 0 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-full {
min-height: 0;
transition: all 1s ease-in-out;
margin-top: -30px;
}
.shrink-slider-img {
padding-top: 0px;
transition: all 0.5s ease-in-out;
}
.shrink-header-logo {
transition: all 0.9s ease-in-out !important;
width: 30%;
top: 32px !important;
left: 10%;
}
.shrink-header-navbar {
padding: 10px 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-navbar-fix {
transition: all s ease-in-out;
min-height: 0;
}
.shrink-header-phone-a:hover {
transition: all 0.5s ease-in-out;
color: #131313;
}
/* container-a------------------------------- */
.container-a {
padding: 10px 0 0;
background-color: rgb(215, 21, 12);
font-family: 'Nirmala';
color: rgb(255, 255, 255);
min-height: 70px;
}
.container-a img {
float: left;
}
.container-a p {
padding: 10px;
font-size: 17px;
font-weight: 500;
text-align: center;
}
.blank_1 {
background-color: rgb(230, 230, 230);
width: 190px;
height: 455px;
}
.blank_2 {
background-color: rgb(230, 230, 230);
width: 100%;
height: 140px;
}
/* .container-b--------------------------------- */
.container-b {
font-family: 'Nirmala';
font-weight: 500;
font-size: 14px;
}
.container-b .row {
padding: 15px 0;
}
.container-b p {
color: rgb(0, 0, 0);
line-height: 25px;
}
.container-b a {
color: rgb(0, 0, 0);
transition: all 0.5s ease-in-out;
}
.container-b a:hover {
color: rgb(215, 21, 12);
transition: all 0.5s ease-in-out;
}
.b-left p {
font-weight: 600;
}
.container-b ul {
list-style-type: none;
padding-left: 40px;
}
.container-b li {
line-height: 21px;
color: rgb(90, 90, 90);
}
.zoom {
padding: 30px 0 20px;
transition: transform 1s;
/* Animation */
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.zoom-1 {
transition: transform 1s;
/* Animation */
}
.zoom-1:hover {
transform: scale(1.3);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.b-left {
padding: 40px;
background-color: #ffffff
}
.left-ft h4 {
font-weight: 600;
font-size: 20px;
}
.left-ft ul {
list-style-type: none;
}
.left-ft strong {
padding-bottom: 5px;
}
.left-ft a {
color: rgb(230, 230, 230);
}
.left-ft a:hover {
color: rgb(215, 21, 12);
}
.left-ft li {
font-size: 15px;
font-weight: 500;
line-height: 25px;
}
.footer {
font-family: 'Nirmala';
padding: 40px 0;
color: rgb(255, 255, 255);
min-height: 340px;
background: url(../images/footer.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.ft-right .box-3 p {
font-size: 16px;
font-weight: 500;
line-height: 30px;
}
.ft-right img {
width: 80%;
padding-bottom: 15px;
}
/* footer-copyright */
.container-footer-copyright {
font-family: 'Poppins', sans-serif;
padding: 15px 0;
letter-spacing: 1px;
font-size: 15px;
background-color: rgb(249, 249, 249);
text-align: center;
font-weight: 600;
}
.container-footer-copyright a {
color: rgb(249, 249, 249);
}
.container-footer-copyright a:hover {
color: rgb(246, 16, 54);
transition: all 0.5s ease-in-out;
}
.home-newsletter .single .form-control {
height: 40px;
background: rgb(249, 249, 249);
border-color: transparent;
border-radius: 3px;
}
.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #243c4f;
}
.home-newsletter .single .btn {
min-height: 40px;
border-radius: 3px;
background: rgb(215, 21, 12);
color: rgb(255, 255, 255);
}
.input-group-btn {
padding: 0 70px 0 15px;
}
.top-1 p {
padding-bottom: 10px;
}
.home-newsletter {
padding-bottom: 15px;
}
#button {
display: inline-block;
background-color: rgba(215, 21, 12, 0.26);
width: 50px;
height: 50px;
text-align: center;
border-radius: 4px;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
#button::after {
content: "\f077";
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 20px;
line-height: 50px;
color: #fff;
}
#button:hover {
cursor: pointer;
background-color: rgb(215, 21, 12);
}
#button:active {
background-color: rgb(215, 21, 12);
}
#button.show {
opacity: 1;
visibility: visible;
}
.header-inner-row {
padding: 10px 0;
}
.nv-inner {
padding-left: 0% !important;
padding-top: 3%;
}
.inner-logo img {
margin: 0 auto;
}
.cart-2 {
padding: 35px 40px 10px 16px;
}
.space-div {
padding-bottom: 10px;
}
.side-tbl p {
text-align: center;
}
.innr-div {
padding: 60px 0;
}
.table-div {
font-family: 'Lato', sans-serif;
padding: 40px 0;
}
form.example input[type=text] {
border-radius: 8px 0 0px 8px;
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}
form.example button {
border-radius: 0px 8px 8px 0px;
float: left;
width: 9%;
padding: 10px;
background: rgba(215, 21, 12);
color: rgb(255, 255, 255);
font-size: 17px;
border: 1px solid rgb(128, 128, 128);
border-left: none;
cursor: pointer;
transition: all 0.5s ease-in-out;
}
form.example button:hover {
transition: all 0.5s ease-in-out;
background: rgba(215, 21, 12, 0.68);
}
form.example::after {
content: "";
clear: both;
display: table;
}
.ds-img{
width: 35% !important;
display: table;
margin: 0 auto;
}
.table-div .fa-shopping-cart {
font-size: 19px;
display: table;
margin: 20px auto;
}
.checkbox-inline .tick {
margin: 0 auto;
margin-left: 0 !important;
}
.thed-up {
font-family: 'Poppins', sans-serif;
color: #fff;
background-color: #333333;
}
.table-div a {
color: #0000ee;
}
.table-div a:hover {
color: #000;
}
.part-v-left {
text-align: center;
}
.img-thumbnail {
background-color: rgb(200, 200, 200);
border: 2px solid rgb(221, 221, 221);
}
.box {
border: 1px solid rgb(37, 36, 36);
min-height: 240px;
}
.inner-full h5 {
font-weight: 700;
font-size: 16px;
}
.tbl-row {
padding: 10px 0 !important;
}
.datasheet-img{
width: 94%;
display: table;
margin: 0 auto;
}
.zoom-with-pad{
padding: 0px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.logo img {
top: 5px;
left: 4%;
width: 30%;
}
.shrink-header-phone {
margin-top: -35px;
}
.shrink-header-logo {
top: -35px !important;
}
.carousel-caption span {
font-size: 17px;
padding-left: 0%;
}
.carousel-caption {
left: 6%;
padding-bottom: 20px;
width: 100%;
}
.carousel-caption h3 {
font-size: 27px;
padding-bottom: 0px;
}
.carousel-caption2 {
left: 20%;
padding-bottom: 20px;
width: 60%;
}
.container-a-mob {
text-align: center;
padding: 20px 0 10px;
background-color: rgba(72, 72, 72, 0.83);
}
.form-1 {
padding-left: 0px;
}
.b-left {
padding: 15px;
}
.right-b .col-sm-12 {
margin-left: -20px;
width: 53%;
}
.container-a p {
padding: 5px 0;
font-size: 14px;
}
.ft-right {
padding: 20px 0;
}
.phone {
padding: 25px 0 25px 45%;
font-size: 14px;
text-align: center;
}
.navbar-nav {
padding-left: 0%;
}
.navbar-nav>li>a {
font-size: 12px;
margin-left: 3px;
}
.cart {
padding: 15px 0px;
}
}
/*landscape*/
@media (min-width: 992px) and (max-width: 1199px) {
.header-left {
display: none;
}
.shrink-header-navbar-fix .navbar-nav {
padding-left: 19%;
}
.shrink-header-logo {
top: 44px !important;
}
.shrink-header-navbar {
padding: 20px 0px;
}
.navbar-nav {
padding-left: 15%;
}
.navbar-nav {
padding-left: 46%;
}
.nav-block {
width: 80%;
}
.logo img {
top: 71px;
}
.carousel-caption h3 {
padding-bottom: 20px;
font-size: 31px;
}
.carousel-caption2 {
left: -15%;
padding-bottom: 60px;
bottom: -30px;
}
.carousel-caption .btn {
top: 61.6%;
}
.carousel-caption {
left: -15%;
padding-bottom: 15px;
}
.carousel-caption span {
font-size: 20px;
padding-left: 19%;
}
.r-box {
width: 32%;
}
.left-ft {
width: 45%;
}
.container-a p {
padding: 5px 0px;
font-size: 16px;
font-weight: 500;
text-align: center;
}
}
/*Mobile View*/
@media screen and (max-width: 767px) {
.phone a {
font-size: 16px;
}
.header-full {
background-color: rgb(109, 109, 109);
}
.navbar-toggle {
background-color: rgba(222, 222, 222, 0.79);
}
.phone {
padding: 10px 0;
font-size: 12px;
letter-spacing: 1px;
text-align: center;
}
.navbar-nav {
padding-left: 0;
}
.logo img {
top: 5px;
position: relative;
left: 0px;
right: 0;
margin: 0 auto;
}
.shrink-header-phone {
margin-top: -30%;
}
.shrink-header-logo {
width: 100%;
top: -40px !important;
left: 10%;
}
.shrink-header-full {
margin-top: -80px;
}
.navbar-inverse .navbar-brand {
color: rgb(255, 255, 255);
}
.cart {
padding: 0px 15px;
text-align: center;
}
.slider-full {
padding-top: 200px;
}
.carousel-caption2 {
right: 0;
left: 0;
padding-bottom: 0px;
width: 50%;
bottom: 10px;
margin: 0 auto;
}
.container-a-mob {
padding: 10px 0;
background-color: rgba(72, 72, 72, 0.83);
}
.form-1 {
padding-left: 0px;
}
.btn-info {
color: rgb(4, 4, 4);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.form-1 li {
display: block;
padding: 0px 10px;
}
.form-1 .btn {
display: block;
margin: 0 auto;
}
.form-1 .form-control {
height: 35px;
}
.text-1 {
width: 100%;
}
.container-a p {
padding: 15px 0;
font-size: 15px;
}
.b-left {
padding: 15px;
}
.card {
margin: 0 auto;
margin-bottom: 25px;
}
.home-newsletter .single .form-control {
height: 40px;
}
.home-newsletter .single .btn {
min-height: 40px;
}
.input-group-btn {
padding: 0 5px;
}
.left-ft {
padding: 0;
}
.ft-right {
padding: 0;
}
.box-t-1 {
padding-bottom: 15px;
}
.box-3 {
padding-bottom: 15px;
}
.ft-right img {
margin: 0 auto;
}
.fb {
text-align: center;
}
.container-footer-copyright {
letter-spacing: 0px;
font-size: 13px;
}
}
@media (min-width: 1400px) {
.logo img {
left: -15%;
}
.carousel-caption {
left: -9%;
}
.carousel-caption span {
padding-left: 12%;
}
.form-1 {
padding-left: 40px;
}
.cart {
padding: 15px 6px;
}
}
/* @media (min-width: 1400px){
.container-b .row {
margin: 0 auto;
width: 1370px;
}
<<<<<<< HEAD
} */
=======
} */
=======
transition: all 0.5s ease-in-out;
z-index: 1000;
left: -5px;
}
.phone {
padding: 25px 0;
font-size: 14px;
color: rgb(255, 255, 255);
text-align: right;
font-weight: 400;
font-family: 'Nirmala';
transition-delay: .5s;
letter-spacing: 3px;
transition: all 0.5s ease-in-out;
}
.phone a {
font-size: 14px;
font-weight: 400;
color: rgb(255, 255, 255);
font-family: 'Nirmala';
transition-delay: .5s;
margin: 0 auto;
}
.phone a:hover {
color: rgb(59, 194, 241);
font-weight: 600;
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
/* nav------------------------------------------- */
.nav-block {
padding: 0;
}
.navbar-nav {
padding-left: 17%;
}
.navigation {
background-color: rgb(215, 21, 12);
}
.navbar {
border-radius: 0px;
margin-bottom: 0px;
border: 0px solid rgba(0, 0, 0, 0);
}
.navbar-nav>li>a {
font-family: 'Poppins', sans-serif;
padding-top: 10px;
padding-bottom: 10px;
font-size: 13px;
margin-left: 10px;
font-weight: 600;
}
.navbar {
min-height: 50px;
transition: all 0.5s ease-in-out;
}
.navbar-inverse {
transition: all 0.5s ease-in-out;
padding: 10px 0;
background-color: rgb(215, 21, 12);
}
.navbar-inverse .navbar-nav>li>a {
color: rgb(251, 251, 251);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
color: rgb(59, 194, 241);
background-color: rgba(251, 251, 251, 0);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
color: rgb(59, 194, 241);
transition: all 0.5s ease-in-out;
background-color: rgba(251, 251, 251, 0);
}
.navbar-nav a {
position: relative;
}
.navbar-nav a:after {
content: '';
position: absolute;
width: 0;
height: 1px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
transition: all 0.5s ease-in-out;
}
.navbar-nav a:hover:after {
width: 100%;
left: 0;
transition: all 0.5s ease-in-out;
background: #fff;
}
/* slider------------------------------------- */
.carousel-caption .btn {
text-shadow: none;
color: rgb(5, 5, 5);
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
.carousel-caption h3 {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 36px;
color: rgb(252, 250, 250);
padding-bottom: 90px;
text-shadow: -1px -2px 5px rgb(215, 21, 12);
}
.carousel-caption {
left: -16%;
padding-bottom: 75px;
width: 100%;
}
.carousel-caption2 {
left: -30%;
padding-bottom: 85px;
width: 100%;
position: absolute;
bottom: 20px;
}
.carousel-caption span {
font-weight: 500;
font-size: 23px;
padding-left: 17%;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
transition: all 0.5s ease-in-out;
width: 100%;
}
.slider-full {
background-color: rgb(215, 21, 12);
}
.slider-box {
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
background-color: rgb(255, 255, 255);
width: 64%;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: -110px;
padding: 25px 30px;
}
.slider-box p {
font-family: 'Lato', sans-serif;
font-size: 17px;
color: #333333;
font-weight: 400;
padding-top: 10px;
}
.slider-box a {
transition: all 0.5s ease-in-out;
font-weight: 400;
font-size: 13px;
display: inline-block;
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
background-color: rgb(8, 58, 125);
border: 2px solid rgb(8, 58, 125);
padding: 8px 5px;
}
.slider-box a:hover {
transition: all 0.5s ease-in-out;
border: 2px solid rgb(95, 108, 125);
}
.hvr-rectangle-out:before {
background: rgb(255, 255, 255);
transition: all 0.5s ease-in-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
color: rgb(8, 58, 125);
}
.form-1 .btn {
display: inline-block;
padding: 7px 12px;
}
.form-1 .form-control {
height: 37px;
}
.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.box-b {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
-moz-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(215, 21, 12);
border-color: rgb(215, 21, 12);
}
.card {
font-family: 'Nirmala';
width: 240px;
min-height: 300px;
background-color: rgb(255, 255, 255);
}
.form-1 {
padding-left: 120px;
}
.box-img {
text-align: center;
padding: 15px 0;
}
.card-body {
padding: 15px 10px;
}
.card-body p:nth-of-type(1) {
text-transform: uppercase;
font-size: 14px;
padding-bottom: 5px;
}
.text-1 {
width: 350px;
}
.card-body h4 {
margin: 0;
font-size: 17px;
font-weight: 600;
padding-bottom: 10px;
}
.card-body p {
font-size: 14px;
line-height: 20px;
}
.card-body p:nth-of-type(2) {
line-height: 20px;
font-size: 13px;
}
.cart button {
border: 0;
background-color: rgb(215, 21, 12);
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
font-size: 17px;
font-weight: 500;
}
.cart {
padding: 15px 76px;
}
.form-1 li {
display: inline-block;
padding-left: 15px;
}
/* shink */
.shink-fix {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
z-index: 1000;
transition: 1s ease;
transition: all 0.5s ease-in-out;
}
.shrink-header-phone {
padding: 10px 0 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-full {
min-height: 0;
transition: all 0.5s ease-in-out;
background-color: rgb(215, 21, 12);
top: -50px;
}
.shrink-slider-img {
padding-top: 0px;
transition: all 0.5s ease-in-out;
}
.shrink-header-logo {
transition: all 0.5s ease-in-out;
width: 40%;
top: 7px !important;
}
.shrink-header-navbar {
padding: 10px 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-navbar-fix {
transition: all 0.5s ease-in-out;
min-height: 0;
}
.shrink-header-phone-a:hover {
transition: all 0.5s ease-in-out;
color: #131313;
}
/* container-a------------------------------- */
.container-a {
padding: 20px 0;
background-color: rgb(215, 21, 12);
font-family: 'Nirmala';
color: rgb(255, 255, 255);
min-height: 70px;
}
.container-a img {
float: left;
}
.container-a p {
padding: 10px;
font-size: 17px;
font-weight: 500;
text-align: center;
}
.blank_1 {
background-color: rgb(230, 230, 230);
width: 190px;
height: 455px;
}
.blank_2 {
background-color: rgb(230, 230, 230);
width: 100%;
height: 140px;
}
/* .container-b--------------------------------- */
.container-b {
font-family: 'Nirmala';
font-weight: 500;
font-size: 14px;
}
.container-b .row {
padding: 15px 0;
}
.container-b p {
color: rgb(0, 0, 0);
line-height: 25px;
}
.b-left p {
font-weight: 600;
}
.container-b ul {
list-style-type: none;
padding-left: 40px;
}
.container-b li {
line-height: 21px;
color: rgb(90, 90, 90);
}
.b-left {
padding: 40px;
background-color: #ffffff
}
.left-ft h4 {
font-weight: 600;
font-size: 20px;
}
.left-ft ul {
list-style-type: none;
}
.left-ft strong {
padding-bottom: 5px;
}
.left-ft a {
color: rgb(230, 230, 230);
}
.left-ft a:hover {
color: rgb(215, 21, 12);
}
.left-ft li {
font-size: 15px;
font-weight: 500;
line-height: 25px;
}
.footer {
font-family: 'Nirmala';
padding: 40px 0;
color: rgb(255, 255, 255);
min-height: 340px;
background: url(../images/footer.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.ft-right .box-3 p {
font-size: 16px;
font-weight: 500;
line-height: 30px;
}
.ft-right img {
width: 80%;
padding-bottom: 15px;
}
/* footer-copyright */
.container-footer-copyright {
font-family: 'Poppins', sans-serif;
padding: 15px 0;
letter-spacing: 1px;
font-size: 15px;
background-color: rgb(249, 249, 249);
text-align: center;
font-weight: 600;
}
.container-footer-copyright a {
color: rgb(249, 249, 249);
}
.container-footer-copyright a:hover {
color: rgb(246, 16, 54);
transition: all 0.5s ease-in-out;
}
.home-newsletter .single .form-control {
height: 50px;
background: rgb(249, 249, 249);
border-color: transparent;
border-radius: 3px;
}
.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #243c4f;
}
.home-newsletter .single .btn {
min-height: 50px;
border-radius: 3px;
background: rgb(215, 21, 12);
color: rgb(255, 255, 255);
}
.input-group-btn {
padding: 0 70px 0 15px;
}
.top-1 p {
padding-bottom: 10px;
}
.home-newsletter {
padding-bottom: 15px;
}
#button {
display: inline-block;
background-color: rgba(215, 21, 12, 0.26);
width: 50px;
height: 50px;
text-align: center;
border-radius: 4px;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
#button::after {
content: "\f077";
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 2em;
line-height: 50px;
color: #fff;
}
#button:hover {
cursor: pointer;
background-color: rgb(215, 21, 12);
}
#button:active {
background-color: rgb(215, 21, 12);
}
#button.show {
opacity: 1;
visibility: visible;
@media screen and (min-width: 768px) and (max-width: 991px) {}
/*landscape*/
@media (min-width: 992px) and (max-width: 1199px) {}
/*Mobile View*/
@media screen and (max-width: 767px) {
.logo img {
margin: 0 auto;
}
.phone {
font-size: 20px;
text-align: center;
}
.phone a {
font-size: 27px;
}
.header-full {
padding: 20px 0 5px;
}
.shrink-header-logo {
width: 100%;
}
.shrink-header-phone {
padding: 10px 0;
}
.navbar-inverse .navbar-brand {
color: rgb(255, 255, 255);
}
.navbar-toggle {
background-color: rgba(113, 113, 113, 0.96);
}
.navbar {
display: block;
}
.navbar-inverse {
padding: 0px 0;
}
.navbar-nav {
padding-left: 0px;
}
.navbar-nav>li>a {
font-size: 14px;
margin-top: 4px;
margin-right: 0px;
}
.container-a {
padding: 20px 0;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
padding-top: 175px;
}
.container-a h1 {
padding-bottom: 15px;
font-size: 28px;
}
}
>>>>>>> branch 'master' of https://github.com/chathurangaudawaththa/onsenss.git
>>>>>>> 24cbc8c79ab8bec081143e1a1bf77687e9595b15 | public/css/stylesheet.css | a:hover {
transition: all 0.5s ease-in-out;
text-decoration: none !important;
}
body {
margin: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0;
}
h2 {
margin: 0;
padding: 0;
}
h3 {
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
}
p {
padding: 0;
margin: 0;
}
li {
padding: 0;
margin: 0;
}
.fa-phone {
transform: rotate(90deg);
}
/* header-full ------------------------------------------------- */
@font-face {
font-family: 'Nirmala';
src: url("../font/Nirmala.ttf");
src: url("../font/Nirmala.ttf"), url("../font/Nirmala.ttf");
}
.header-full {
min-height: 70px;
transition: all 0.5s ease-in-out;
}
.logo img {
top: 55px;
position: absolute;
display: inline-block;
<<<<<<< HEAD
=======
<<<<<<< HEAD
>>>>>>> 24cbc8c79ab8bec081143e1a1bf77687e9595b15
transition: all 1s ease-in-out;
z-index: 1000;
}
.phone {
padding: 25px 0;
font-size: 14px;
color: rgb(255, 255, 255);
text-align: right;
font-weight: 400;
font-family: 'Nirmala';
transition-delay: .5s;
letter-spacing: 3px;
transition: all 0.5s ease-in-out;
}
.phone a {
font-size: 14px;
font-weight: 400;
color: rgb(255, 255, 255);
font-family: 'Nirmala';
transition-delay: .5s;
margin: 0 auto;
}
.phone a:hover {
color: rgb(59, 194, 241);
font-weight: 600;
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
/* nav------------------------------------------- */
.nav-block {
padding: 0;
}
.navbar-nav {
padding-left: 17%;
}
.navigation {
background-color: rgb(215, 21, 12);
}
.navbar {
border-radius: 0px;
margin-bottom: 0px;
border: 0px solid rgba(0, 0, 0, 0);
}
.navbar-nav>li>a {
font-family: 'Poppins', sans-serif;
padding-top: 10px;
padding-bottom: 10px;
font-size: 13px;
margin-left: 10px;
font-weight: 600;
}
.navbar {
min-height: 50px;
transition: all 0.5s ease-in-out;
}
.navbar-inverse {
transition: all 0.5s ease-in-out;
padding: 10px 0;
background-color: transparent;
}
.navbar-inverse .navbar-nav>li>a {
color: rgb(251, 251, 251);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
color: rgb(59, 194, 241);
background-color: rgba(251, 251, 251, 0);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
color: rgb(59, 194, 241);
transition: all 0.5s ease-in-out;
background-color: rgba(251, 251, 251, 0);
}
.navbar-nav a {
position: relative;
}
.navbar-nav a:after {
content: '';
position: absolute;
width: 0;
height: 1px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
transition: all 0.5s ease-in-out;
}
.navbar-nav a:hover:after {
width: 100%;
left: 0;
transition: all 0.5s ease-in-out;
background: #fff;
}
/* slider------------------------------------- */
.carousel-caption .btn {
text-shadow: none;
color: rgb(5, 5, 5);
font-size: 16px;
font-family: 'Roboto', sans-serif;
position: absolute;
top: b;
padding: 8px 15px;
padding-bottom: 6px;
top: 59.6%;
}
.carousel-caption h3 {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 36px;
color: rgb(252, 250, 250);
padding-bottom: 90px;
text-shadow: -1px -2px 5px rgb(215, 21, 12);
}
.carousel-caption {
left: -16%;
padding-bottom: 75px;
width: 100%;
}
.carousel-caption2 {
left: -30%;
padding-bottom: 85px;
width: 100%;
position: absolute;
bottom: 20px;
}
.carousel-caption span {
font-weight: 500;
font-size: 23px;
padding-left: 17%;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
transition: all 0.5s ease-in-out;
width: 100%;
}
.slider-full img {
width: 100%;
}
.slider-full {
background-color: rgb(215, 21, 12);
}
.slider-box {
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
background-color: rgb(255, 255, 255);
width: 64%;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: -110px;
padding: 25px 30px;
}
.slider-box p {
font-family: 'Lato', sans-serif;
font-size: 17px;
color: #333333;
font-weight: 400;
padding-top: 10px;
}
.slider-box a {
transition: all 0.5s ease-in-out;
font-weight: 400;
font-size: 13px;
display: inline-block;
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
background-color: rgb(8, 58, 125);
border: 2px solid rgb(8, 58, 125);
padding: 8px 5px;
}
.slider-box a:hover {
transition: all 0.5s ease-in-out;
border: 2px solid rgb(95, 108, 125);
}
.hvr-rectangle-out:before {
background: rgb(255, 255, 255);
transition: all 0.5s ease-in-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
color: rgb(8, 58, 125);
}
.form-1 .btn {
display: inline-block;
padding: 7px 12px;
}
.form-1 .form-control {
height: 37px;
}
.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.box-b {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
-moz-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(215, 21, 12);
border-color: rgb(215, 21, 12);
}
.card {
font-family: 'Nirmala';
width: 240px;
min-height: 300px;
background-color: rgb(255, 255, 255);
}
.form-1 {
padding-left: 30px;
}
.box-img {
text-align: center;
padding: 15px 0;
}
.card-body {
padding: 15px 10px;
}
.card-body p:nth-of-type(1) {
text-transform: uppercase;
font-size: 14px;
padding-bottom: 5px;
}
.text-1 {
width: 350px;
}
.card-body h4 {
margin: 0;
font-size: 17px;
font-weight: 600;
padding-bottom: 10px;
}
.card-body p {
font-size: 14px;
line-height: 20px;
}
.card-body p:nth-of-type(2) {
line-height: 20px;
font-size: 13px;
}
.cart button {
border: 0;
background-color: rgb(215, 21, 12);
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
font-size: 17px;
font-weight: 500;
}
.cart {
padding: 15px 76px;
}
.form-1 li {
display: inline-block;
padding-left: 15px;
}
.inner-full {
margin-top: 150px;
}
/* shink */
.shink-fix {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
z-index: 1000;
transition: 1s ease;
transition: all 0.5s ease-in-out;
}
.shrink-header-phone {
padding: 10px 0 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-full {
min-height: 0;
transition: all 1s ease-in-out;
margin-top: -30px;
}
.shrink-slider-img {
padding-top: 0px;
transition: all 0.5s ease-in-out;
}
.shrink-header-logo {
transition: all 0.9s ease-in-out !important;
width: 30%;
top: 32px !important;
left: 10%;
}
.shrink-header-navbar {
padding: 10px 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-navbar-fix {
transition: all s ease-in-out;
min-height: 0;
}
.shrink-header-phone-a:hover {
transition: all 0.5s ease-in-out;
color: #131313;
}
/* container-a------------------------------- */
.container-a {
padding: 10px 0 0;
background-color: rgb(215, 21, 12);
font-family: 'Nirmala';
color: rgb(255, 255, 255);
min-height: 70px;
}
.container-a img {
float: left;
}
.container-a p {
padding: 10px;
font-size: 17px;
font-weight: 500;
text-align: center;
}
.blank_1 {
background-color: rgb(230, 230, 230);
width: 190px;
height: 455px;
}
.blank_2 {
background-color: rgb(230, 230, 230);
width: 100%;
height: 140px;
}
/* .container-b--------------------------------- */
.container-b {
font-family: 'Nirmala';
font-weight: 500;
font-size: 14px;
}
.container-b .row {
padding: 15px 0;
}
.container-b p {
color: rgb(0, 0, 0);
line-height: 25px;
}
.container-b a {
color: rgb(0, 0, 0);
transition: all 0.5s ease-in-out;
}
.container-b a:hover {
color: rgb(215, 21, 12);
transition: all 0.5s ease-in-out;
}
.b-left p {
font-weight: 600;
}
.container-b ul {
list-style-type: none;
padding-left: 40px;
}
.container-b li {
line-height: 21px;
color: rgb(90, 90, 90);
}
.zoom {
padding: 30px 0 20px;
transition: transform 1s;
/* Animation */
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.zoom-1 {
transition: transform 1s;
/* Animation */
}
.zoom-1:hover {
transform: scale(1.3);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.b-left {
padding: 40px;
background-color: #ffffff
}
.left-ft h4 {
font-weight: 600;
font-size: 20px;
}
.left-ft ul {
list-style-type: none;
}
.left-ft strong {
padding-bottom: 5px;
}
.left-ft a {
color: rgb(230, 230, 230);
}
.left-ft a:hover {
color: rgb(215, 21, 12);
}
.left-ft li {
font-size: 15px;
font-weight: 500;
line-height: 25px;
}
.footer {
font-family: 'Nirmala';
padding: 40px 0;
color: rgb(255, 255, 255);
min-height: 340px;
background: url(../images/footer.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.ft-right .box-3 p {
font-size: 16px;
font-weight: 500;
line-height: 30px;
}
.ft-right img {
width: 80%;
padding-bottom: 15px;
}
/* footer-copyright */
.container-footer-copyright {
font-family: 'Poppins', sans-serif;
padding: 15px 0;
letter-spacing: 1px;
font-size: 15px;
background-color: rgb(249, 249, 249);
text-align: center;
font-weight: 600;
}
.container-footer-copyright a {
color: rgb(249, 249, 249);
}
.container-footer-copyright a:hover {
color: rgb(246, 16, 54);
transition: all 0.5s ease-in-out;
}
.home-newsletter .single .form-control {
height: 40px;
background: rgb(249, 249, 249);
border-color: transparent;
border-radius: 3px;
}
.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #243c4f;
}
.home-newsletter .single .btn {
min-height: 40px;
border-radius: 3px;
background: rgb(215, 21, 12);
color: rgb(255, 255, 255);
}
.input-group-btn {
padding: 0 70px 0 15px;
}
.top-1 p {
padding-bottom: 10px;
}
.home-newsletter {
padding-bottom: 15px;
}
#button {
display: inline-block;
background-color: rgba(215, 21, 12, 0.26);
width: 50px;
height: 50px;
text-align: center;
border-radius: 4px;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
#button::after {
content: "\f077";
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 20px;
line-height: 50px;
color: #fff;
}
#button:hover {
cursor: pointer;
background-color: rgb(215, 21, 12);
}
#button:active {
background-color: rgb(215, 21, 12);
}
#button.show {
opacity: 1;
visibility: visible;
}
.header-inner-row {
padding: 10px 0;
}
.nv-inner {
padding-left: 0% !important;
padding-top: 3%;
}
.inner-logo img {
margin: 0 auto;
}
.cart-2 {
padding: 35px 40px 10px 16px;
}
.space-div {
padding-bottom: 10px;
}
.side-tbl p {
text-align: center;
}
.innr-div {
padding: 60px 0;
}
.table-div {
font-family: 'Lato', sans-serif;
padding: 40px 0;
}
form.example input[type=text] {
border-radius: 8px 0 0px 8px;
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}
form.example button {
border-radius: 0px 8px 8px 0px;
float: left;
width: 9%;
padding: 10px;
background: rgba(215, 21, 12);
color: rgb(255, 255, 255);
font-size: 17px;
border: 1px solid rgb(128, 128, 128);
border-left: none;
cursor: pointer;
transition: all 0.5s ease-in-out;
}
form.example button:hover {
transition: all 0.5s ease-in-out;
background: rgba(215, 21, 12, 0.68);
}
form.example::after {
content: "";
clear: both;
display: table;
}
.ds-img{
width: 35% !important;
display: table;
margin: 0 auto;
}
.table-div .fa-shopping-cart {
font-size: 19px;
display: table;
margin: 20px auto;
}
.checkbox-inline .tick {
margin: 0 auto;
margin-left: 0 !important;
}
.thed-up {
font-family: 'Poppins', sans-serif;
color: #fff;
background-color: #333333;
}
.table-div a {
color: #0000ee;
}
.table-div a:hover {
color: #000;
}
.part-v-left {
text-align: center;
}
.img-thumbnail {
background-color: rgb(200, 200, 200);
border: 2px solid rgb(221, 221, 221);
}
.box {
border: 1px solid rgb(37, 36, 36);
min-height: 240px;
}
.inner-full h5 {
font-weight: 700;
font-size: 16px;
}
.tbl-row {
padding: 10px 0 !important;
}
.datasheet-img{
width: 94%;
display: table;
margin: 0 auto;
}
.zoom-with-pad{
padding: 0px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.logo img {
top: 5px;
left: 4%;
width: 30%;
}
.shrink-header-phone {
margin-top: -35px;
}
.shrink-header-logo {
top: -35px !important;
}
.carousel-caption span {
font-size: 17px;
padding-left: 0%;
}
.carousel-caption {
left: 6%;
padding-bottom: 20px;
width: 100%;
}
.carousel-caption h3 {
font-size: 27px;
padding-bottom: 0px;
}
.carousel-caption2 {
left: 20%;
padding-bottom: 20px;
width: 60%;
}
.container-a-mob {
text-align: center;
padding: 20px 0 10px;
background-color: rgba(72, 72, 72, 0.83);
}
.form-1 {
padding-left: 0px;
}
.b-left {
padding: 15px;
}
.right-b .col-sm-12 {
margin-left: -20px;
width: 53%;
}
.container-a p {
padding: 5px 0;
font-size: 14px;
}
.ft-right {
padding: 20px 0;
}
.phone {
padding: 25px 0 25px 45%;
font-size: 14px;
text-align: center;
}
.navbar-nav {
padding-left: 0%;
}
.navbar-nav>li>a {
font-size: 12px;
margin-left: 3px;
}
.cart {
padding: 15px 0px;
}
}
/*landscape*/
@media (min-width: 992px) and (max-width: 1199px) {
.header-left {
display: none;
}
.shrink-header-navbar-fix .navbar-nav {
padding-left: 19%;
}
.shrink-header-logo {
top: 44px !important;
}
.shrink-header-navbar {
padding: 20px 0px;
}
.navbar-nav {
padding-left: 15%;
}
.navbar-nav {
padding-left: 46%;
}
.nav-block {
width: 80%;
}
.logo img {
top: 71px;
}
.carousel-caption h3 {
padding-bottom: 20px;
font-size: 31px;
}
.carousel-caption2 {
left: -15%;
padding-bottom: 60px;
bottom: -30px;
}
.carousel-caption .btn {
top: 61.6%;
}
.carousel-caption {
left: -15%;
padding-bottom: 15px;
}
.carousel-caption span {
font-size: 20px;
padding-left: 19%;
}
.r-box {
width: 32%;
}
.left-ft {
width: 45%;
}
.container-a p {
padding: 5px 0px;
font-size: 16px;
font-weight: 500;
text-align: center;
}
}
/*Mobile View*/
@media screen and (max-width: 767px) {
.phone a {
font-size: 16px;
}
.header-full {
background-color: rgb(109, 109, 109);
}
.navbar-toggle {
background-color: rgba(222, 222, 222, 0.79);
}
.phone {
padding: 10px 0;
font-size: 12px;
letter-spacing: 1px;
text-align: center;
}
.navbar-nav {
padding-left: 0;
}
.logo img {
top: 5px;
position: relative;
left: 0px;
right: 0;
margin: 0 auto;
}
.shrink-header-phone {
margin-top: -30%;
}
.shrink-header-logo {
width: 100%;
top: -40px !important;
left: 10%;
}
.shrink-header-full {
margin-top: -80px;
}
.navbar-inverse .navbar-brand {
color: rgb(255, 255, 255);
}
.cart {
padding: 0px 15px;
text-align: center;
}
.slider-full {
padding-top: 200px;
}
.carousel-caption2 {
right: 0;
left: 0;
padding-bottom: 0px;
width: 50%;
bottom: 10px;
margin: 0 auto;
}
.container-a-mob {
padding: 10px 0;
background-color: rgba(72, 72, 72, 0.83);
}
.form-1 {
padding-left: 0px;
}
.btn-info {
color: rgb(4, 4, 4);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.form-1 li {
display: block;
padding: 0px 10px;
}
.form-1 .btn {
display: block;
margin: 0 auto;
}
.form-1 .form-control {
height: 35px;
}
.text-1 {
width: 100%;
}
.container-a p {
padding: 15px 0;
font-size: 15px;
}
.b-left {
padding: 15px;
}
.card {
margin: 0 auto;
margin-bottom: 25px;
}
.home-newsletter .single .form-control {
height: 40px;
}
.home-newsletter .single .btn {
min-height: 40px;
}
.input-group-btn {
padding: 0 5px;
}
.left-ft {
padding: 0;
}
.ft-right {
padding: 0;
}
.box-t-1 {
padding-bottom: 15px;
}
.box-3 {
padding-bottom: 15px;
}
.ft-right img {
margin: 0 auto;
}
.fb {
text-align: center;
}
.container-footer-copyright {
letter-spacing: 0px;
font-size: 13px;
}
}
@media (min-width: 1400px) {
.logo img {
left: -15%;
}
.carousel-caption {
left: -9%;
}
.carousel-caption span {
padding-left: 12%;
}
.form-1 {
padding-left: 40px;
}
.cart {
padding: 15px 6px;
}
}
/* @media (min-width: 1400px){
.container-b .row {
margin: 0 auto;
width: 1370px;
}
<<<<<<< HEAD
} */
=======
} */
=======
transition: all 0.5s ease-in-out;
z-index: 1000;
left: -5px;
}
.phone {
padding: 25px 0;
font-size: 14px;
color: rgb(255, 255, 255);
text-align: right;
font-weight: 400;
font-family: 'Nirmala';
transition-delay: .5s;
letter-spacing: 3px;
transition: all 0.5s ease-in-out;
}
.phone a {
font-size: 14px;
font-weight: 400;
color: rgb(255, 255, 255);
font-family: 'Nirmala';
transition-delay: .5s;
margin: 0 auto;
}
.phone a:hover {
color: rgb(59, 194, 241);
font-weight: 600;
text-decoration: underline;
transition: all 0.5s ease-in-out;
}
/* nav------------------------------------------- */
.nav-block {
padding: 0;
}
.navbar-nav {
padding-left: 17%;
}
.navigation {
background-color: rgb(215, 21, 12);
}
.navbar {
border-radius: 0px;
margin-bottom: 0px;
border: 0px solid rgba(0, 0, 0, 0);
}
.navbar-nav>li>a {
font-family: 'Poppins', sans-serif;
padding-top: 10px;
padding-bottom: 10px;
font-size: 13px;
margin-left: 10px;
font-weight: 600;
}
.navbar {
min-height: 50px;
transition: all 0.5s ease-in-out;
}
.navbar-inverse {
transition: all 0.5s ease-in-out;
padding: 10px 0;
background-color: rgb(215, 21, 12);
}
.navbar-inverse .navbar-nav>li>a {
color: rgb(251, 251, 251);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
color: rgb(59, 194, 241);
background-color: rgba(251, 251, 251, 0);
transition: all 0.5s ease-in-out;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
color: rgb(59, 194, 241);
transition: all 0.5s ease-in-out;
background-color: rgba(251, 251, 251, 0);
}
.navbar-nav a {
position: relative;
}
.navbar-nav a:after {
content: '';
position: absolute;
width: 0;
height: 1px;
display: block;
margin-top: 5px;
right: 0;
background: #fff;
transition: width .2s ease;
-webkit-transition: width .2s ease;
transition: all 0.5s ease-in-out;
}
.navbar-nav a:hover:after {
width: 100%;
left: 0;
transition: all 0.5s ease-in-out;
background: #fff;
}
/* slider------------------------------------- */
.carousel-caption .btn {
text-shadow: none;
color: rgb(5, 5, 5);
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
.carousel-caption h3 {
font-family: 'Roboto', sans-serif;
font-weight: 500;
font-size: 36px;
color: rgb(252, 250, 250);
padding-bottom: 90px;
text-shadow: -1px -2px 5px rgb(215, 21, 12);
}
.carousel-caption {
left: -16%;
padding-bottom: 75px;
width: 100%;
}
.carousel-caption2 {
left: -30%;
padding-bottom: 85px;
width: 100%;
position: absolute;
bottom: 20px;
}
.carousel-caption span {
font-weight: 500;
font-size: 23px;
padding-left: 17%;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
transition: all 0.5s ease-in-out;
width: 100%;
}
.slider-full {
background-color: rgb(215, 21, 12);
}
.slider-box {
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
background-color: rgb(255, 255, 255);
width: 64%;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: -110px;
padding: 25px 30px;
}
.slider-box p {
font-family: 'Lato', sans-serif;
font-size: 17px;
color: #333333;
font-weight: 400;
padding-top: 10px;
}
.slider-box a {
transition: all 0.5s ease-in-out;
font-weight: 400;
font-size: 13px;
display: inline-block;
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
background-color: rgb(8, 58, 125);
border: 2px solid rgb(8, 58, 125);
padding: 8px 5px;
}
.slider-box a:hover {
transition: all 0.5s ease-in-out;
border: 2px solid rgb(95, 108, 125);
}
.hvr-rectangle-out:before {
background: rgb(255, 255, 255);
transition: all 0.5s ease-in-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
color: rgb(8, 58, 125);
}
.form-1 .btn {
display: inline-block;
padding: 7px 12px;
}
.form-1 .form-control {
height: 37px;
}
.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(236, 236, 236);
border-color: rgb(8, 8, 8);
}
.box-b {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
-moz-box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
box-shadow: 0px 0px 3px 0px rgba(171, 169, 171, 1);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open>.dropdown-toggle.btn-info {
color: rgb(255, 255, 255);
background-color: rgb(215, 21, 12);
border-color: rgb(215, 21, 12);
}
.card {
font-family: 'Nirmala';
width: 240px;
min-height: 300px;
background-color: rgb(255, 255, 255);
}
.form-1 {
padding-left: 120px;
}
.box-img {
text-align: center;
padding: 15px 0;
}
.card-body {
padding: 15px 10px;
}
.card-body p:nth-of-type(1) {
text-transform: uppercase;
font-size: 14px;
padding-bottom: 5px;
}
.text-1 {
width: 350px;
}
.card-body h4 {
margin: 0;
font-size: 17px;
font-weight: 600;
padding-bottom: 10px;
}
.card-body p {
font-size: 14px;
line-height: 20px;
}
.card-body p:nth-of-type(2) {
line-height: 20px;
font-size: 13px;
}
.cart button {
border: 0;
background-color: rgb(215, 21, 12);
font-family: 'Poppins', sans-serif;
color: rgb(255, 255, 255);
font-size: 17px;
font-weight: 500;
}
.cart {
padding: 15px 76px;
}
.form-1 li {
display: inline-block;
padding-left: 15px;
}
/* shink */
.shink-fix {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
z-index: 1000;
transition: 1s ease;
transition: all 0.5s ease-in-out;
}
.shrink-header-phone {
padding: 10px 0 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-full {
min-height: 0;
transition: all 0.5s ease-in-out;
background-color: rgb(215, 21, 12);
top: -50px;
}
.shrink-slider-img {
padding-top: 0px;
transition: all 0.5s ease-in-out;
}
.shrink-header-logo {
transition: all 0.5s ease-in-out;
width: 40%;
top: 7px !important;
}
.shrink-header-navbar {
padding: 10px 0;
transition: all 0.5s ease-in-out;
}
.shrink-header-navbar-fix {
transition: all 0.5s ease-in-out;
min-height: 0;
}
.shrink-header-phone-a:hover {
transition: all 0.5s ease-in-out;
color: #131313;
}
/* container-a------------------------------- */
.container-a {
padding: 20px 0;
background-color: rgb(215, 21, 12);
font-family: 'Nirmala';
color: rgb(255, 255, 255);
min-height: 70px;
}
.container-a img {
float: left;
}
.container-a p {
padding: 10px;
font-size: 17px;
font-weight: 500;
text-align: center;
}
.blank_1 {
background-color: rgb(230, 230, 230);
width: 190px;
height: 455px;
}
.blank_2 {
background-color: rgb(230, 230, 230);
width: 100%;
height: 140px;
}
/* .container-b--------------------------------- */
.container-b {
font-family: 'Nirmala';
font-weight: 500;
font-size: 14px;
}
.container-b .row {
padding: 15px 0;
}
.container-b p {
color: rgb(0, 0, 0);
line-height: 25px;
}
.b-left p {
font-weight: 600;
}
.container-b ul {
list-style-type: none;
padding-left: 40px;
}
.container-b li {
line-height: 21px;
color: rgb(90, 90, 90);
}
.b-left {
padding: 40px;
background-color: #ffffff
}
.left-ft h4 {
font-weight: 600;
font-size: 20px;
}
.left-ft ul {
list-style-type: none;
}
.left-ft strong {
padding-bottom: 5px;
}
.left-ft a {
color: rgb(230, 230, 230);
}
.left-ft a:hover {
color: rgb(215, 21, 12);
}
.left-ft li {
font-size: 15px;
font-weight: 500;
line-height: 25px;
}
.footer {
font-family: 'Nirmala';
padding: 40px 0;
color: rgb(255, 255, 255);
min-height: 340px;
background: url(../images/footer.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.ft-right .box-3 p {
font-size: 16px;
font-weight: 500;
line-height: 30px;
}
.ft-right img {
width: 80%;
padding-bottom: 15px;
}
/* footer-copyright */
.container-footer-copyright {
font-family: 'Poppins', sans-serif;
padding: 15px 0;
letter-spacing: 1px;
font-size: 15px;
background-color: rgb(249, 249, 249);
text-align: center;
font-weight: 600;
}
.container-footer-copyright a {
color: rgb(249, 249, 249);
}
.container-footer-copyright a:hover {
color: rgb(246, 16, 54);
transition: all 0.5s ease-in-out;
}
.home-newsletter .single .form-control {
height: 50px;
background: rgb(249, 249, 249);
border-color: transparent;
border-radius: 3px;
}
.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #243c4f;
}
.home-newsletter .single .btn {
min-height: 50px;
border-radius: 3px;
background: rgb(215, 21, 12);
color: rgb(255, 255, 255);
}
.input-group-btn {
padding: 0 70px 0 15px;
}
.top-1 p {
padding-bottom: 10px;
}
.home-newsletter {
padding-bottom: 15px;
}
#button {
display: inline-block;
background-color: rgba(215, 21, 12, 0.26);
width: 50px;
height: 50px;
text-align: center;
border-radius: 4px;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
#button::after {
content: "\f077";
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 2em;
line-height: 50px;
color: #fff;
}
#button:hover {
cursor: pointer;
background-color: rgb(215, 21, 12);
}
#button:active {
background-color: rgb(215, 21, 12);
}
#button.show {
opacity: 1;
visibility: visible;
@media screen and (min-width: 768px) and (max-width: 991px) {}
/*landscape*/
@media (min-width: 992px) and (max-width: 1199px) {}
/*Mobile View*/
@media screen and (max-width: 767px) {
.logo img {
margin: 0 auto;
}
.phone {
font-size: 20px;
text-align: center;
}
.phone a {
font-size: 27px;
}
.header-full {
padding: 20px 0 5px;
}
.shrink-header-logo {
width: 100%;
}
.shrink-header-phone {
padding: 10px 0;
}
.navbar-inverse .navbar-brand {
color: rgb(255, 255, 255);
}
.navbar-toggle {
background-color: rgba(113, 113, 113, 0.96);
}
.navbar {
display: block;
}
.navbar-inverse {
padding: 0px 0;
}
.navbar-nav {
padding-left: 0px;
}
.navbar-nav>li>a {
font-size: 14px;
margin-top: 4px;
margin-right: 0px;
}
.container-a {
padding: 20px 0;
}
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
padding-top: 175px;
}
.container-a h1 {
padding-bottom: 15px;
font-size: 28px;
}
}
>>>>>>> branch 'master' of https://github.com/chathurangaudawaththa/onsenss.git
>>>>>>> 24cbc8c79ab8bec081143e1a1bf77687e9595b15 | 0.403332 | 0.089853 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
body {
background-color: #fafafa;
font-family: 'Open Sans', sans-serif;
}
.container-lg {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 1rem;
}
.party-links {
display: flex;
flex-direction: column;
align-items: center;
}
.party-form {
margin-top: 20px;
padding: 20px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
background-color: #fff;
}
.form-group+.form-group {
margin-top: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
display: block;
width: 100%;
padding: 3px 8px;
border-radius: 3px;
border: 1px solid #dadada;
line-height: 1.6;
}
.party-form button {
display: block;
width: 100%;
margin-top: 20px;
padding: 10px;
border: none;
border-radius: 3px;
background-color: rebeccapurple;
color: #fff;
font-size: 1rem;
}
.party-btn {
font-size: 1.6rem;
border: none;
background-color: rgb(97, 97, 231);
border-radius: 0.3rem;
padding: 0.5rem 1rem;
color: #fff;
box-shadow: 0.2rem 0.3rem 0.8rem rgba(0, 0, 0, 0.1);
transition: ease-in-out 0.25s box-shadow;
}
.party-btn:focus {
outline: none;
box-shadow: 0.2rem 0.3rem 0.8rem rgba(0, 0, 0, 0.1), 0 0 0 0.2rem rgba(97, 97, 231, 0.3);
}
.party-divider {
padding: 1.5rem 0;
}
.party-forms form {
width: 350px;
max-width: 100%;
display: none;
}
.party-forms form.active {
display: block;
}
.player-page {
width: 1000px;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.player-page .party-form,
.player-page form {
margin-bottom: 20px;
width: 500px;
max-width: 100%;
background-color: #fff;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 5px;
}
.video-player {
width: 1200px;
max-width: 100%;
position: relative;
box-shadow: 0.1rem 0.3rem 1rem rgba(85, 85, 85, 0.7);
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
display: none;
}
.player-page.selected .video-player {
display: block;
}
.player-page.selected #video-form {
display: none;
}
.video-wrapper {
position: relative;
z-index: 0;
width: 100%;
height: 100%;
}
.video-wrapper::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
background-color: #000;
transition: ease-in-out 0.25s opacity;
z-index: 1;
pointer-events: none;
}
.video-player.popup-active .video-wrapper::after {
opacity: 0.5;
}
.video {
width: 100%;
height: 100%;
display: block;
pointer-events: none;
position: relative;
z-index: 0;
}
.controls {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
background-color: rgba(0, 0, 0, 0);
transition: ease-in-out 0.25s background-color;
transition-delay: 1.5s;
flex-direction: column;
overflow: hidden;
}
.buttons {
padding: 8px;
transform: translateY(100%);
transition: ease-in-out 0.25s;
opacity: 0;
transition-property: transform, opacity;
transition-delay: inherit;
display: flex;
align-items: center;
justify-content: space-between;
}
.buttons .btn-group {
display: flex;
align-items: center;
}
.buttons .player-btn {
background: none;
cursor: pointer;
outline: none;
border: none;
padding: 5px;
font-size: 28px;
}
.buttons .player-btn::before {
font-family: "Font Awesome 5 Free";
font-weight: 600;
width: 1em;
height: 1em;
display: block;
font-size: 1em;
color: #fff;
-webkit-font-smoothing: antialiased;
}
#play-btn::before {
content: "\f144";
}
#rev-btn::before {
content: "\f100";
}
#for-btn::before {
content: "\f101";
}
#video-player.playing #play-btn::before {
content: "\f28b";
}
#full-scr {
font-size: 24px;
}
#full-scr::before {
content: "\f065";
}
#video-player.full-scr #full-scr::before {
content: "\f066";
}
#video-player .clock {
display: inline-block;
color: #fff;
margin-left: 1rem;
margin-right: 1rem;
}
.progress-bar {
height: 6px;
position: relative;
background-color: rgba(85, 85, 85, 0.5);
margin-top: 4px;
transform-origin: bottom;
transition: ease-in-out 0.25s;
transition-property: transform, background-color;
transition-delay: inherit;
}
.progress-bar>.progress {
width: 0;
display: block;
margin: 0;
height: 100%;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
background-color: rgb(255, 94, 0);
background-image: linear-gradient(center bottom,
rgb(255, 94, 0) 37%,
rgb(243, 126, 59) 69%);
box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
inset 0 -2px 6px rgba(0, 0, 0, 0.4);
position: relative;
overflow: hidden;
transition: linear 0.25s width;
}
.video-player:hover .controls,
.video-player:not(.playing) .controls {
background-color: rgba(0, 0, 0, 0.5);
transition-delay: 0s;
}
.video-player:hover .buttons,
.video-player:not(.playing) .buttons {
transform: translateY(0);
opacity: 1;
transition-delay: 0s;
}
.video-player:hover .progress-bar,
.video-player:not(.playing) .progress-bar {
transform: scaleY(1.8);
background-color: rgb(85, 85, 85);
transition-delay: 0s;
}
.video-player.inactive.playing {
cursor: none;
}
.video-player.inactive.playing .progress-bar {
transform: scaleY(0);
transition-delay: 0s;
}
.video-player.inactive.playing .buttons {
transform: translateY(100%);
}
.video-player.inactive.playing .controls {
background-color: rgba(0, 0, 0, 0);
}
.video-player.no-controls #play-btn,
.video-player.no-controls #rev-btn,
.video-player.no-controls #for-btn {
display: none;
} | static/css/style.css | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
body {
background-color: #fafafa;
font-family: 'Open Sans', sans-serif;
}
.container-lg {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 1rem;
}
.party-links {
display: flex;
flex-direction: column;
align-items: center;
}
.party-form {
margin-top: 20px;
padding: 20px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
background-color: #fff;
}
.form-group+.form-group {
margin-top: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
display: block;
width: 100%;
padding: 3px 8px;
border-radius: 3px;
border: 1px solid #dadada;
line-height: 1.6;
}
.party-form button {
display: block;
width: 100%;
margin-top: 20px;
padding: 10px;
border: none;
border-radius: 3px;
background-color: rebeccapurple;
color: #fff;
font-size: 1rem;
}
.party-btn {
font-size: 1.6rem;
border: none;
background-color: rgb(97, 97, 231);
border-radius: 0.3rem;
padding: 0.5rem 1rem;
color: #fff;
box-shadow: 0.2rem 0.3rem 0.8rem rgba(0, 0, 0, 0.1);
transition: ease-in-out 0.25s box-shadow;
}
.party-btn:focus {
outline: none;
box-shadow: 0.2rem 0.3rem 0.8rem rgba(0, 0, 0, 0.1), 0 0 0 0.2rem rgba(97, 97, 231, 0.3);
}
.party-divider {
padding: 1.5rem 0;
}
.party-forms form {
width: 350px;
max-width: 100%;
display: none;
}
.party-forms form.active {
display: block;
}
.player-page {
width: 1000px;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.player-page .party-form,
.player-page form {
margin-bottom: 20px;
width: 500px;
max-width: 100%;
background-color: #fff;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 5px;
}
.video-player {
width: 1200px;
max-width: 100%;
position: relative;
box-shadow: 0.1rem 0.3rem 1rem rgba(85, 85, 85, 0.7);
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
display: none;
}
.player-page.selected .video-player {
display: block;
}
.player-page.selected #video-form {
display: none;
}
.video-wrapper {
position: relative;
z-index: 0;
width: 100%;
height: 100%;
}
.video-wrapper::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
background-color: #000;
transition: ease-in-out 0.25s opacity;
z-index: 1;
pointer-events: none;
}
.video-player.popup-active .video-wrapper::after {
opacity: 0.5;
}
.video {
width: 100%;
height: 100%;
display: block;
pointer-events: none;
position: relative;
z-index: 0;
}
.controls {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
background-color: rgba(0, 0, 0, 0);
transition: ease-in-out 0.25s background-color;
transition-delay: 1.5s;
flex-direction: column;
overflow: hidden;
}
.buttons {
padding: 8px;
transform: translateY(100%);
transition: ease-in-out 0.25s;
opacity: 0;
transition-property: transform, opacity;
transition-delay: inherit;
display: flex;
align-items: center;
justify-content: space-between;
}
.buttons .btn-group {
display: flex;
align-items: center;
}
.buttons .player-btn {
background: none;
cursor: pointer;
outline: none;
border: none;
padding: 5px;
font-size: 28px;
}
.buttons .player-btn::before {
font-family: "Font Awesome 5 Free";
font-weight: 600;
width: 1em;
height: 1em;
display: block;
font-size: 1em;
color: #fff;
-webkit-font-smoothing: antialiased;
}
#play-btn::before {
content: "\f144";
}
#rev-btn::before {
content: "\f100";
}
#for-btn::before {
content: "\f101";
}
#video-player.playing #play-btn::before {
content: "\f28b";
}
#full-scr {
font-size: 24px;
}
#full-scr::before {
content: "\f065";
}
#video-player.full-scr #full-scr::before {
content: "\f066";
}
#video-player .clock {
display: inline-block;
color: #fff;
margin-left: 1rem;
margin-right: 1rem;
}
.progress-bar {
height: 6px;
position: relative;
background-color: rgba(85, 85, 85, 0.5);
margin-top: 4px;
transform-origin: bottom;
transition: ease-in-out 0.25s;
transition-property: transform, background-color;
transition-delay: inherit;
}
.progress-bar>.progress {
width: 0;
display: block;
margin: 0;
height: 100%;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
background-color: rgb(255, 94, 0);
background-image: linear-gradient(center bottom,
rgb(255, 94, 0) 37%,
rgb(243, 126, 59) 69%);
box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
inset 0 -2px 6px rgba(0, 0, 0, 0.4);
position: relative;
overflow: hidden;
transition: linear 0.25s width;
}
.video-player:hover .controls,
.video-player:not(.playing) .controls {
background-color: rgba(0, 0, 0, 0.5);
transition-delay: 0s;
}
.video-player:hover .buttons,
.video-player:not(.playing) .buttons {
transform: translateY(0);
opacity: 1;
transition-delay: 0s;
}
.video-player:hover .progress-bar,
.video-player:not(.playing) .progress-bar {
transform: scaleY(1.8);
background-color: rgb(85, 85, 85);
transition-delay: 0s;
}
.video-player.inactive.playing {
cursor: none;
}
.video-player.inactive.playing .progress-bar {
transform: scaleY(0);
transition-delay: 0s;
}
.video-player.inactive.playing .buttons {
transform: translateY(100%);
}
.video-player.inactive.playing .controls {
background-color: rgba(0, 0, 0, 0);
}
.video-player.no-controls #play-btn,
.video-player.no-controls #rev-btn,
.video-player.no-controls #for-btn {
display: none;
} | 0.352536 | 0.060641 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(zip.4chan.org),
domain(4chan.org),
domain(orz.4chan.org),
domain(cgi.4chan.org)
{body
{background:url("http://img16.imageshack.us/img16/918/konachancom63350hyuugah.jpg") !important;
background-opacity = 0.8;
background-attachment:fixed !important;
background-position:bottom right !important;
background-color: rgb(0,0,0) !important;
background-repeat:no-repeat !important;
color: #eee !important;}
*{
font: 10pt "Comic Sans MS";
}
a {
color: rgb(0,0,255) !important;
}
hr {
display: none !important;
}
#navtop, #navbot {
background: #000;
color: #000 !important;
width: 100%;
text-align: center;
height: 12pt;
font-size: 7pt !important;
}
#navtop *, #navbot * {
color: #eee;
font-size: 8pt;
display: inline;
}
#navtop a:hover, #navbot a:hover {
background: #555;
}
form {
margin: 1em;
}
.inputtext, textarea {
width: 295px;
}
.rules {
display: none;
}
td.postblock {
background: #000 !important;
border: 1px solid #009 !important;
color: rgb(255,255,255) !important;
}
td.postblock * {
font-size: 8pt;
}
td.reply, td.replyhl {
background-color:#333 !important;
border: 1px solid #555 !important;
color: #eee !important;
-moz-border-radius: 8px;
}
td.replyhl {
background-color: rgb(0,0,0) !important;
border: 1px solid rgb(0,0,0) !important;
color: rgb(0,0,0) !important;
}
.postername, .filesize, span.filetitle, .filesize a, a.linkmail, a.quotejs, .replytitle, .commentpostername, .omittedposts, .abbr {
color: rgb(150,150,150) !important;
font-size: 7pt;
}
span.filetitle, .replytitle {
color: rgb(0,0,0) !important;
}
#hd, small, font[size="1"], font[size="2"], #ft, #filter-button, #option-button, #navtopr, #navbotr, .logo,.logo font b span, .doubledash, img.rotating, input[type="button"], td[align="right"] {
display: none !important;
}
.pages {
background: #444 !important;
border: 1px solid #555 !important;
}
.pages td {
color: #444 !important;
font-size: 4pt;
}
.pages td a, .pages td b {
color: rgb(0,0,0) !important;
font-size: 8pt;
}
.pages td b {
background-color: #000;
}
.pages input {
display: none !important;
}
.pages td:first-child {
display: none;
}
pre, textarea, input:not([type="button"]):not([type="checkbox"]):not([type="submit"]):not([type="reset"]), select {
font-size: 8pt ! important; color: #fff !important; background: #000 !important; border-color: #009 !important;
}
input[type="submit"] {
background: #000 !important;
color: rgb(255,255,255) !important;
border: 1px solid rgb(0,0,255);
-moz-appearance: none;
font-size: 9pt;
}
th {
background: #000 !important;
}
th font {
font-size: 8pt;
}
input[type="file"] {
opacity: 0.12 !important;
}
td.deletebuttons {
font-size: 8pt !important;
color:rgb(255,255,255) !important;
}
.commentpostername a.linkmail[href="mailto:sage"]:after {
content: " (sage)";
}
.rotating {display:none !important;}
a[href^="http://www.drowle.com"]{display:none !important;}
a[href^="http://track.teenmodels.com/"]{display:none !important;}
hr {display:none !important;}
[style^="width: 300px; position: absolute;left: 10%; border:1px solid black;"] {display:none !important;}
img.thumb,img[src*="/thumb/"] {
background:transparent !important;
border:solid 1px rgb(0,0,255) !important;
-moz-border-radius:10px !important;
opacity:.85 !important;
z-index:3 !important;
}
td.replyhl, td.reply{-moz-border-radius:37px !important; !important;background-color:rgb(0,0,0) !important;color:rgb(255,255,255) !important;
border:solid 1px rgb(0,0,255) !important
}} | data/usercss/31775.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain(zip.4chan.org),
domain(4chan.org),
domain(orz.4chan.org),
domain(cgi.4chan.org)
{body
{background:url("http://img16.imageshack.us/img16/918/konachancom63350hyuugah.jpg") !important;
background-opacity = 0.8;
background-attachment:fixed !important;
background-position:bottom right !important;
background-color: rgb(0,0,0) !important;
background-repeat:no-repeat !important;
color: #eee !important;}
*{
font: 10pt "Comic Sans MS";
}
a {
color: rgb(0,0,255) !important;
}
hr {
display: none !important;
}
#navtop, #navbot {
background: #000;
color: #000 !important;
width: 100%;
text-align: center;
height: 12pt;
font-size: 7pt !important;
}
#navtop *, #navbot * {
color: #eee;
font-size: 8pt;
display: inline;
}
#navtop a:hover, #navbot a:hover {
background: #555;
}
form {
margin: 1em;
}
.inputtext, textarea {
width: 295px;
}
.rules {
display: none;
}
td.postblock {
background: #000 !important;
border: 1px solid #009 !important;
color: rgb(255,255,255) !important;
}
td.postblock * {
font-size: 8pt;
}
td.reply, td.replyhl {
background-color:#333 !important;
border: 1px solid #555 !important;
color: #eee !important;
-moz-border-radius: 8px;
}
td.replyhl {
background-color: rgb(0,0,0) !important;
border: 1px solid rgb(0,0,0) !important;
color: rgb(0,0,0) !important;
}
.postername, .filesize, span.filetitle, .filesize a, a.linkmail, a.quotejs, .replytitle, .commentpostername, .omittedposts, .abbr {
color: rgb(150,150,150) !important;
font-size: 7pt;
}
span.filetitle, .replytitle {
color: rgb(0,0,0) !important;
}
#hd, small, font[size="1"], font[size="2"], #ft, #filter-button, #option-button, #navtopr, #navbotr, .logo,.logo font b span, .doubledash, img.rotating, input[type="button"], td[align="right"] {
display: none !important;
}
.pages {
background: #444 !important;
border: 1px solid #555 !important;
}
.pages td {
color: #444 !important;
font-size: 4pt;
}
.pages td a, .pages td b {
color: rgb(0,0,0) !important;
font-size: 8pt;
}
.pages td b {
background-color: #000;
}
.pages input {
display: none !important;
}
.pages td:first-child {
display: none;
}
pre, textarea, input:not([type="button"]):not([type="checkbox"]):not([type="submit"]):not([type="reset"]), select {
font-size: 8pt ! important; color: #fff !important; background: #000 !important; border-color: #009 !important;
}
input[type="submit"] {
background: #000 !important;
color: rgb(255,255,255) !important;
border: 1px solid rgb(0,0,255);
-moz-appearance: none;
font-size: 9pt;
}
th {
background: #000 !important;
}
th font {
font-size: 8pt;
}
input[type="file"] {
opacity: 0.12 !important;
}
td.deletebuttons {
font-size: 8pt !important;
color:rgb(255,255,255) !important;
}
.commentpostername a.linkmail[href="mailto:sage"]:after {
content: " (sage)";
}
.rotating {display:none !important;}
a[href^="http://www.drowle.com"]{display:none !important;}
a[href^="http://track.teenmodels.com/"]{display:none !important;}
hr {display:none !important;}
[style^="width: 300px; position: absolute;left: 10%; border:1px solid black;"] {display:none !important;}
img.thumb,img[src*="/thumb/"] {
background:transparent !important;
border:solid 1px rgb(0,0,255) !important;
-moz-border-radius:10px !important;
opacity:.85 !important;
z-index:3 !important;
}
td.replyhl, td.reply{-moz-border-radius:37px !important; !important;background-color:rgb(0,0,0) !important;color:rgb(255,255,255) !important;
border:solid 1px rgb(0,0,255) !important
}} | 0.245627 | 0.151624 |
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
html,
body {
border: 0;
margin: 0;
height: 100%;
font-family: "微软雅黑", "幼圆", "microsoft yahei";
overflow: hidden;
}
#mview_background {
z-index: -3;
width: 100%;
height: 100%;
position: fixed;
min-height: 475px;
/* 图片地址 */
background-image: url("../assets/login/HB.svg");
background-repeat: no-repeat;
background-size: cover;
}
#mlogin_left {
height: 292px;
width: 740px;
background-color: rgba(0, 0, 0, .8);
position: absolute;
top: 26%;
right: 10%;
box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}
#mlogin_left_context {
position: absolute;
padding: 12px 16px;
color: #fff;
}
.mlogin_context_footer {
color: #666;
position: absolute;
bottom: 8px;
left: 16px;
}
#mlogin_right {
opacity: 0.9;
height: 420px;
width: 310px;
min-height: 420px;
background-color: #fff;
position: absolute;
right: 8%;
top: -20%;
box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}
#mlogin_center {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
#mlogin_view {
padding: 24px;
}
#mlogin_view h4 {
font-size: 28px;
color: #7fb2de;
}
#mlogin_form {
margin-top: 20px;
}
.mlogin_forge {
margin-top: 10px;
margin-left: 6px;
display: block;
float: right;
}
/* 输入 */
.minput {
width: 100%;
padding: 6px 10px;
border-width: 1px;
border-color: #666;
border-color: rgba(0, 0, 0, .6);
height: 36px;
outline: none;
border-style: solid;
background-color: rgba(255, 255, 255, .4);
-webkit-appearance: textfield;
letter-spacing: normal;
word-spacing: normal;
text-indent: 0px;
margin-bottom: 10px;
}
.mbutton {
border-color: #0067b8;
background-color: #0067b8;
color: #fff;
width: 100%;
height: 36px;
border-width: 1px;
display: inline-block;
min-width: 100px;
padding: 4px 12px 4px 12px;
margin-top: 4px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
touch-action: manipulation;
animation: ActionFadeIn 1s;
animation-fill-mode: forwards;
/* align-self: flex-end; */
}
.mbutton:hover {
background-color: #005ea7;
}
/* 小 */
.phone {
display: none;
}
@media (max-width: 840px) {
#mlogin_left {
width: 100%;
height: 100%;
top: 0;
right: 0;
}
#mlogin_right {
width: 100%;
height: 100%;
top: 0;
right: 0;
}
.mlogin_context_footer {
left: 24px;
}
.phone_not {
display: none;
}
.phone {
display: block;
}
}
/* 动画 */
@keyframes Loading1 {
0% {
background-color: rgba(0, 0, 0, 0.1);
}
100% {
background-color: rgba(0, 0, 0, 0.8);
}
}
@keyframes Loading2 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | public/css/main.css | a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
html,
body {
border: 0;
margin: 0;
height: 100%;
font-family: "微软雅黑", "幼圆", "microsoft yahei";
overflow: hidden;
}
#mview_background {
z-index: -3;
width: 100%;
height: 100%;
position: fixed;
min-height: 475px;
/* 图片地址 */
background-image: url("../assets/login/HB.svg");
background-repeat: no-repeat;
background-size: cover;
}
#mlogin_left {
height: 292px;
width: 740px;
background-color: rgba(0, 0, 0, .8);
position: absolute;
top: 26%;
right: 10%;
box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}
#mlogin_left_context {
position: absolute;
padding: 12px 16px;
color: #fff;
}
.mlogin_context_footer {
color: #666;
position: absolute;
bottom: 8px;
left: 16px;
}
#mlogin_right {
opacity: 0.9;
height: 420px;
width: 310px;
min-height: 420px;
background-color: #fff;
position: absolute;
right: 8%;
top: -20%;
box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}
#mlogin_center {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
#mlogin_view {
padding: 24px;
}
#mlogin_view h4 {
font-size: 28px;
color: #7fb2de;
}
#mlogin_form {
margin-top: 20px;
}
.mlogin_forge {
margin-top: 10px;
margin-left: 6px;
display: block;
float: right;
}
/* 输入 */
.minput {
width: 100%;
padding: 6px 10px;
border-width: 1px;
border-color: #666;
border-color: rgba(0, 0, 0, .6);
height: 36px;
outline: none;
border-style: solid;
background-color: rgba(255, 255, 255, .4);
-webkit-appearance: textfield;
letter-spacing: normal;
word-spacing: normal;
text-indent: 0px;
margin-bottom: 10px;
}
.mbutton {
border-color: #0067b8;
background-color: #0067b8;
color: #fff;
width: 100%;
height: 36px;
border-width: 1px;
display: inline-block;
min-width: 100px;
padding: 4px 12px 4px 12px;
margin-top: 4px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
touch-action: manipulation;
animation: ActionFadeIn 1s;
animation-fill-mode: forwards;
/* align-self: flex-end; */
}
.mbutton:hover {
background-color: #005ea7;
}
/* 小 */
.phone {
display: none;
}
@media (max-width: 840px) {
#mlogin_left {
width: 100%;
height: 100%;
top: 0;
right: 0;
}
#mlogin_right {
width: 100%;
height: 100%;
top: 0;
right: 0;
}
.mlogin_context_footer {
left: 24px;
}
.phone_not {
display: none;
}
.phone {
display: block;
}
}
/* 动画 */
@keyframes Loading1 {
0% {
background-color: rgba(0, 0, 0, 0.1);
}
100% {
background-color: rgba(0, 0, 0, 0.8);
}
}
@keyframes Loading2 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
} | 0.485844 | 0.139748 |
.i {
display: flex;
background: linear-gradient(to right, black, rgb(73, 72, 72));
justify-content: space-between;
font-family: poppins;
font-weight: bold;
height: 100vh;
}
.i-left {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.i-left-wrapper {
padding: 30px;
height: 50%;
}
.i-hey {
font-size: 30px;
font-weight: 300;
color: blanchedalmond;
font-family: "Times New Roman", Times, serif;
font-family: poppins;
}
.i-name {
font-size: 50px;
overflow: hidden;
color: cornsilk;
font-family: poppins;
}
.i-tags {
height: 50px;
overflow: hidden;
font-family: poppins;
font-style: bold;
}
.i-tags-wrapper {
height: 100%;
animation: move 10s ease-in-out infinite alternate;
}
.desc {
color: darkgrey;
font-size: 18px;
font-family: poppins;
font-weight: bold;
}
@keyframes move {
25% {
transform: translateY(-50px);
}
50% {
transform: translateY(-100px);
}
75% {
transform: translateY(-150px);
}
100% {
transform: translateY(-200px);
}
}
.i-tags-item {
height: 50px;
font-size: 25px;
font-weight: bold;
color: rgb(81, 212, 81);
display: flex;
align-items: center;
}
.i-right {
flex: 1;
width: 30%;
flex-direction: column;
margin-right: auto;
overflow: hidden;
}
.i-Home {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 3%;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.i-About {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 4%;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
display: flex;
align-items: center;
}
.i-Contact {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 4%;
display: flex;
align-items: center;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
} | src/CSS/Intro.css | .i {
display: flex;
background: linear-gradient(to right, black, rgb(73, 72, 72));
justify-content: space-between;
font-family: poppins;
font-weight: bold;
height: 100vh;
}
.i-left {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.i-left-wrapper {
padding: 30px;
height: 50%;
}
.i-hey {
font-size: 30px;
font-weight: 300;
color: blanchedalmond;
font-family: "Times New Roman", Times, serif;
font-family: poppins;
}
.i-name {
font-size: 50px;
overflow: hidden;
color: cornsilk;
font-family: poppins;
}
.i-tags {
height: 50px;
overflow: hidden;
font-family: poppins;
font-style: bold;
}
.i-tags-wrapper {
height: 100%;
animation: move 10s ease-in-out infinite alternate;
}
.desc {
color: darkgrey;
font-size: 18px;
font-family: poppins;
font-weight: bold;
}
@keyframes move {
25% {
transform: translateY(-50px);
}
50% {
transform: translateY(-100px);
}
75% {
transform: translateY(-150px);
}
100% {
transform: translateY(-200px);
}
}
.i-tags-item {
height: 50px;
font-size: 25px;
font-weight: bold;
color: rgb(81, 212, 81);
display: flex;
align-items: center;
}
.i-right {
flex: 1;
width: 30%;
flex-direction: column;
margin-right: auto;
overflow: hidden;
}
.i-Home {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 3%;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.i-About {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 4%;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
display: flex;
align-items: center;
}
.i-Contact {
padding-right: 4%;
padding-left: 4%;
margin-top: 1%;
margin-right: 4%;
display: flex;
align-items: center;
height: 5%;
background-color: darkkhaki;
border-radius: 20px;
} | 0.683842 | 0.156652 |
.primary_block {
margin-bottom: 40px; }
.top-hr {
background: #C4C4C4;
height: 5px;
margin: 2px 0 31px; }
.product-heading-h5 {
color: #999999;
font-weight: 200;
margin: 3px 0 8px;
font-size: 19px;
font-family: "Open Sans", sans-serif; }
.box-security .product-heading-h5 {
margin: 3px 0 -8px; }
@media (max-width: 1199px) {
.box-security .product-heading-h5 {
margin-bottom: 8px; } }
.primary_block .pb-left-column img {
width: 100%;
height: auto; }
a.fancybox-nav {
outline: 0; }
/* .pb-left-column ***************************************************************************** */
.pb-left-column #image-block {
display: block;
cursor: pointer;
background: #fff; }
@media (max-width: 767px) {
.pb-left-column #image-block {
width: 280px;
margin: 0 auto; } }
.pb-left-column #image-block img {
background: #fbfbfb;
width: 100%; }
.pb-left-column #image-block #view_full_size .span_link {
background: rgba(226, 226, 226, 0.8) none repeat scroll 0 0;
border-radius: 100%;
color: #fff;
font-size: 18px;
height: 50px;
left: 0;
line-height: 50px;
margin: 0 auto;
position: absolute;
right: 0;
text-align: center;
top: 35%;
width: 50px;
opacity:0;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.pb-left-column .pb-left-column-i:hover #image-block #view_full_size .span_link {
opacity:1;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.pb-left-column #image-block #view_full_size .span_link:hover{
background:#222;
}
.pb-left-column #image-block a.jqzoom div div img {
width: auto;
max-width: 10000px; }
.pb-left-column #image-block a.jqzoom div div .zoomWrapper {
border: none; }
.pb-left-column #image-block .zoomPad {
z-index: auto !important; }
.pb-left-column #image-block .new-box,
.pb-left-column #image-block .sale-box {
z-index: 5002; }
/* miniatures */
.pb-left-column #views_block {
position:relative;
margin-top: 10px; }
@media (max-width: 767px) {
.pb-left-column #views_block {
width: 250px;
margin: 10px auto 0px auto; } }
.pb-left-column-i{
border:1px solid #e2e2e2;
padding:20px;
position:relative;
}
#thumbs_list {
overflow: hidden;
float: left;
width: 100%; }
#thumbs_list ul#thumbs_list_frame {
list-style-type: none;
padding-left: 0;
overflow: hidden; }
#thumbs_list li {
float: left;
width: 76px;
cursor: pointer;
margin-right:10px;
line-height: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
@media (min-width: 992px) and (max-width: 1199px){
#thumbs_list li {
width: 105px;
}
}
@media (min-width: 767px) and (max-width: 991px){
#thumbs_list li {
width: 100px;
}
}
#thumbs_list li:last-child{
margin:0;
}
#thumbs_list li a {
border:1px solid transparent;
display: block;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background: #fbfbfb; }
#thumbs_list li a:hover, #thumbs_list li a.shown {
border-color:#e2e2e2}
.show-right-column.hide-left-column #thumbs_list, .hide-right-column.show-left-column #thumbs_list {}
.NextPre{
}
span.view_scroll_spacer {}
@media (min-width: 992px) and (max-width: 1199px) {
.NextPre{
padding-top: 20px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.NextPre {
padding-top: 2px;
}
}
@media (max-width: 767px) {
.NextPre {
padding-top: 19px;
} }
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer { }
@media (min-width: 992px) and (max-width: 1199px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer { } }
@media (min-width: 768px) and (max-width: 991px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer {} }
@media (max-width: 767px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer {} }
#view_scroll_left,
#view_scroll_right {
background: #dddddd none repeat scroll 0 0;
border: 1px solid #dddddd;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
color: #fff;
display: block !important;
height: 35px;
line-height: 35px;
margin: 2px 0;
overflow: hidden;
position: absolute;
text-align: center;
top: 25%;
width: 35px;}
@media (min-width: 768px) and (max-width: 991px) {
#view_scroll_left,
#view_scroll_right { } }
#view_scroll_left:before,
#view_scroll_right:before {
font-family: "FontAwesome";
font-size: 18px;
line-height: 30px;}
#view_scroll_left:hover,
#view_scroll_right:hover {
background:#ff3333;
border-color:#ff3333;
color: #fff; }
#view_scroll_right {
right: -15px;
}
#view_scroll_right:before {
content: "\f105"; }
#view_scroll_left {
left: -15px; }
#view_scroll_left:before {
content: "\f104";
padding-right: 2px; }
.resetimg {
padding: 10px 0 0; }
.resetimg #resetImages i {
margin-right: 6px; }
.view_scroll_spacer {}
@media (min-width: 768px) and (max-width: 991px) {
.view_scroll_spacer { } }
/* link list */
#usefull_link_block {
list-style-type: none; }
#usefull_link_block li a {
color: #fff;
font-size: 0;
font-weight: 700;
position: relative;
padding:0;
line-height: 22px;
display: inline-block; }
#usefull_link_block li a span{
display:none;
}
#usefull_link_block li a:before {
font-family: "FontAwesome";
color: #333;
font-size: 19px;
line-height: 24px;
position: absolute;
top:0;
left: 0;
font-weight: normal; }
#usefull_link_block li a:hover {
color: #000; }
@media (min-width: 768px) and (max-width: 991px) {
#usefull_link_block li.print {
padding: 0;
border: none; } }
#usefull_link_block li.print a:before {
content: "\f02f"; }
#usefull_link_block li.sendtofriend a:before {
content: "\f003"; }
#usefull_link_block li#left_share_fb {
clear: both;
float: none; }
#usefull_link_block li#left_share_fb a {
padding-left: 18px; }
#usefull_link_block li#left_share_fb a:before {
content: "\f09a"; }
#usefull_link_block li#favoriteproducts_block_extra_remove, #usefull_link_block li#favoriteproducts_block_extra_add, #usefull_link_block li#favoriteproducts_block_extra_removed, #usefull_link_block li#favoriteproducts_block_extra_added {
cursor: pointer;
font-weight: 700;
clear: both;
float: none;
margin: 0 0 8px 0;
border: none;
padding: 0;
position: relative; }
#usefull_link_block li#favoriteproducts_block_extra_remove:before, #usefull_link_block li#favoriteproducts_block_extra_add:before, #usefull_link_block li#favoriteproducts_block_extra_removed:before, #usefull_link_block li#favoriteproducts_block_extra_added:before {
font-family: "FontAwesome";
color: #333;
font-size: 19px;
line-height: 24px;
position: absolute;
top: -2px;
left: 0;
font-weight: normal;
content: "\f08a"; }
#usefull_link_block li#favoriteproducts_block_extra_remove:hover, #usefull_link_block li#favoriteproducts_block_extra_add:hover, #usefull_link_block li#favoriteproducts_block_extra_removed:hover, #usefull_link_block li#favoriteproducts_block_extra_added:hover {
color: #000; }
#usefull_link_block li#favoriteproducts_block_extra_removed:before {
content: "\f004"; }
/* pb-left-column ****************************************************************************** */
.pb-center-column {
margin-bottom: 30px;
/* form */ }
.pb-center-column h1 {
color: #222222;
font-family: "Lato",sans-serif;
font-size: 26px;
font-weight: 700;
line-height: 1;
margin: 0 0 20px;}
.pb-center-column p {}
.pb-center-column #product_reference {
margin-bottom: 6px; }
.pb-center-column #short_description_block {
color: #666; }
.pb-center-column #short_description_block .buttons_bottom_block{
margin-bottom:30px;
}
.pb-center-column #short_description_block .buttons_bottom_block .button{
color: #2d2d2d;
font-family: "Lato",sans-serif;
font-size: 14px;
font-style: italic;
line-height: 1;
padding: 0;
background:none;
border:none;
border-bottom:1px solid #2d2d2d;
}
.pb-center-column #short_description_block .buttons_bottom_block .button:hover{
color:#ff3333;
border-color:#ff3333;
}
.pb-center-column #short_description_block #short_description_content {
word-wrap: break-word; }
.pb-center-column #short_description_block #short_description_content p {
color: #333333;
font-size: 15px;
line-height: 25px;}
.pb-center-column #buy_block {
padding-top: 10px;}
.pb-center-column #buy_block label {
color: #161616;
display: block;
font-size: 15px;
font-weight: 700;
line-height: 1;}
.pb-center-column #buy_block p.price {
padding: 0; }
.pb-center-column #color_picker p {
padding-bottom: 5px;
font-weight: 700; }
#product p#loyalty {
padding: 17px 0 15px 35px;
border-top: 1px solid #d6d4d4;
border-bottom: 1px solid #d6d4d4;
margin: 10px 0 -5px;
position: relative; }
#product p#loyalty b {
color: #333; }
#product p#loyalty:before {
content: "\f024";
font-family: "FontAwesome";
color: #cfcccc;
font-size: 26px;
line-height: 28px;
position: absolute;
top: 16px;
left: 0; }
#page .rte {
color: #666666;
font-size: 14px;
line-height: 24px;
padding: 0;
word-wrap: break-word; }
#page .rte p {
color: #666666;
font-size: 16px;
font-weight: 400;
line-height: 25px;
margin-bottom: 10px;
min-height: 1px;
}
#attributes-ii{
margin-bottom:20px;
}
#attributes fieldset {margin-bottom: 10px;}
#attributes fieldset label {
vertical-align: top;
display: block; }
#attributes .attribute_list {overflow:hidden;}
#attributes .attribute_list .form-control {}
#attributes .attribute_list .form-control option {
background: #fff;
color: #666; }
#attributes .attribute_list ul {
clear: both; }
#attributes .attribute_list ul li {
float: left;
margin-right: 10px; }
#attributes .attribute_list input.attribute_radio {
float: left;
margin-left: 3px; }
#attributes .attribute_list div.radio,
#attributes .attribute_list div.radio span,
#attributes .attribute_list div.radio input {
float: none;
display: inline-block; }
#attributes .attribute_list #color_to_pick_list {
list-style-type: none; }
#attributes .attribute_list #color_to_pick_list li {
float: left;
margin: 0 3px 3px 0;
padding: 1px;
border: 1px solid #d6d4d4;
clear: none;
width: 26px;
height: 26px; }
#attributes .attribute_list #color_to_pick_list li a.color_pick {
display: block;
height: 22px;
width: 22px;
cursor: pointer; }
#attributes .attribute_list #color_to_pick_list li a.color_pick img {
display: block;
height: 22px;
width: 22px; }
#attributes .attribute_list #color_to_pick_list li.selected {
border: 1px solid #4d4d4d; }
div.selector select,
div.selector span,
div.selector {
width:100% !important;
line-height: 40px;
height: 40px;}
.product_attributes,
.box-cart-bottom {
}
.box-cart-bottom {
border-bottom: 1px solid #e2e2e2;
border-top: 1px solid #e2e2e2;
overflow: hidden;
padding: 30px 0 20px;
}
#short_description_content a,
.page-product-box .rte a {
color: #333333;
text-decoration: underline; }
#short_description_content a.btn,
.page-product-box .rte a.btn {
text-decoration: none; }
.box-info-product {
}
.box-info-product p#quantity_wanted_p {
float: left;
margin-bottom: 10px;
margin-right: 20px;
display:inline;
}
.box-info-product p#quantity_wanted_p label{
float: left;
line-height: 40px;
margin-bottom: 0;
margin-right: 15px;
}
.box-info-product .exclusive {
background:none;
border:none;
padding: 0;
position: relative;
display: block;}
/* .box-info-product .exclusive:before {
font-family: "FontAwesome";
position: absolute;
top: 0;
left: 0;
bottom: 0;
color: #fff;
font-size: 25px;
line-height: 47px;
text-shadow: 0 1px #015883;
content: "\f07a";
z-index: 2;
width: 51px;
text-align: center;
border: 1px solid #06b2e6;
-moz-border-radius: 5px 0 0 5px;
-webkit-border-radius: 5px;
border-radius: 5px 0 0 5px; } */
@media (max-width: 991px) {
.box-info-product .exclusive:before {
display: none; } }
/* .box-info-product .exclusive.added:before {
content: "\f00c"; } */
/* .box-info-product .exclusive.added.disabled:before, .box-info-product .exclusive.disabled:before {
height: 51px;
content: "\f110";
animation: 2s linear 0s normal none infinite spin;
-webkit-animation: 2s linear 0s normal none infinite spin;
-moz-animation: 2s linear 0s normal none infinite spin;
border: none; } */
/* .box-info-product .exclusive:after {
background: url(../img/border-1.gif) repeat-y 0 0;
position: absolute;
top: 0;
bottom: 0;
left: 51px;
content: "";
width: 1px;
z-index: 2; } */
@media (max-width: 991px) {
.box-info-product .exclusive:after {
display: none; } }
.box-info-product .exclusive span {
background: #fff none repeat scroll 0 0;
border: 1px solid #b8b8b8;
border-radius: 5px;
color: #222222;
display: block !important;
font-family: "Montserrat",sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 40px;
padding: 0 20px;
text-transform: uppercase;
transition: all 0.3s ease 0s;}
.box-info-product .exclusive span i{
margin-right:5px;
}
.box-info-product .exclusive.added span i:before{
content: "\4e";
}
.box-info-product .exclusive.added span ,
.box-info-product .exclusive:hover span {
background-color:#ff4949;
border-color:#ff4949;
color:#fff;
}
.text-right{
text-align:right;
}
#center_column.col-sm-9 .col-md-3 .box-info-product {
background: #f6f6f6;
border: 1px solid #d2d0d0;
border-top: 1px solid #b0afaf;
border-bottom: 1px solid #b0afaf; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive {
padding: 0;
border-top: 1px solid #0079b6;
border-right: 1px solid #006fa8;
border-left: 1px solid #006fa8;
border-bottom: 1px solid #012740;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
display: block;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOWFkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwN2FiNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #009ad0), color-stop(100%, #007ab7));
background-image: -moz-linear-gradient(#009ad0, #007ab7);
background-image: -webkit-linear-gradient(#009ad0, #007ab7);
background-image: linear-gradient(#009ad0, #007ab7);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009ad0', endColorstr='#007ab7',GradientType=0 ); }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:before {
font-family: "FontAwesome";
position: relative;
top: 0;
left: 0;
bottom: 0;
color: #fff;
font-size: 25px;
line-height: 47px;
text-shadow: 0 1px #015883;
content: "\f07a";
z-index: 2;
width: 51px;
text-align: center;
border: none;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0; }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:before {
display: none; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.added:before {
content: "\f00c"; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.added.disabled:before, #center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.disabled:before {
content: "\f110";
animation: 2s linear 0s normal none infinite spin;
-webkit-animation: 2s linear 0s normal none infinite spin;
-moz-animation: 2s linear 0s normal none infinite spin;
border: none; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:after {
background: none;
position: absolute;
top: 0;
bottom: 0;
left: 51px;
content: "";
width: 1px;
z-index: 2; }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:after {
display: none; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
font-weight: 500;
font-size: 18px;
line-height: 22px;
border: none;
border-top: 1px solid #006fa8;
text-shadow: 0 1px #015883;
padding: 12px 16px 14px;
color: #fff;
display: block !important;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease; }
@media (max-width: 1199px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
font-size: 16px; } }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
padding: 8px 12px 10px;
text-align: center; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:hover {
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #007ab7), color-stop(100%, #009ad0));
background-image: -moz-linear-gradient(#007ab7, #009ad0);
background-image: -webkit-linear-gradient(#007ab7, #009ad0);
background-image: linear-gradient(#007ab7, #009ad0);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007ab7', endColorstr='#009ad0',GradientType=0 );
background-position: 0 0; }
/* table_data_sheet */
.table-data-sheet {
border-bottom: 1px solid #d6d4d4;
width: 100%;
margin: 0 0 20px;
background: #fff; }
.table-data-sheet tr {
border-top: 1px solid #d6d4d4; }
.table-data-sheet tr.even {
background: #fdfdfd; }
.table-data-sheet tr td {
padding: 10px 20px 11px; }
.table-data-sheet tr td:first-child {
border-right: 1px solid #d6d4d4;
width: 30%;
font-weight: 700;
color: #333; }
/* table product-discounts */
table.table-product-discounts {
border: none;
border-bottom: 1px solid #d6d4d4;
border-right: 1px solid #d6d4d4;
width: 50%;
margin: 0 0 20px;
background: #fff; }
@media (max-width: 767px) {
table.table-product-discounts {
width: 100%; } }
table.table-product-discounts tr th {
background: #fbfbfb;
color: #333;
font-weight: 700;
border: none;
font-weight: 700; }
table.table-product-discounts tr td,
table.table-product-discounts tr th {
border-left: 1px solid #d6d4d4;
width: 33%;
padding: 10px 20px 11px;
border-top: 1px solid #d6d4d4;
border-right: none;
text-shadow: none;
text-transform: none;
font-weight: 13px;
line-height: 18px;
border-bottom: none; }
/* accessories */
.accessories-block .block_description {
display: none; }
.accessories-block .exclusive span {
font-size: 13px;
line-height: 18px;
padding: 2px 8px 3px;
text-decoration: none; }
.accessories-block .exclusive span:focus, .accessories-block .exclusive span:active {
text-decoration: none; }
.accessories-block .product-name {
margin-bottom: 5px; }
.accessories-block .product-name a {
font-size: 15px;
line-height: 18px;
color: #3a3939; }
.accessories-block .product-name a:hover {
color: #515151; }
.accessories-block div ul li a {
display: inline-block; }
.accessories-block div ul li.s_title_block a,
.accessories-block div ul li.s_title_block span {
font-weight: 700; }
/* quantity_wanted */
#quantity_wanted_p input {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: medium none !important;
float: left;
height: 33px;
color:#ff3333;
padding: 0 6px;
text-align: center;
width: 50px; }
#quantity_wanted_p .qty-ii{
background: #f6f6f6 none repeat scroll 0 0;
border: 1px solid #e2e2e2;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
display: inline;
float: left;
padding: 3px 5px;
}
#quantity_wanted_p .btn {
background:none;
border: medium none;
float: left;}
#quantity_wanted_p .btn:hover{
color:#000;
}
#quantity_wanted_p .btn span{
border:none;
background:none;
padding:0;
}
#quantity_wanted_p label {
display: block;
margin-bottom: 7px; }
/* availability_statut */
#availability_statut span#availability_label,
#availability_date_label {
display: inline-block;
width: 125px;
font-weight: 700;
font-size: 12px;
text-align: right; }
#quantityAvailable {
color: #333;
font-size: 13px;
line-height: 18px;
font-weight: 700; }
#availability_value,
#last_quantities {
color: #fff;
font-weight: 700;
line-height: 18px;
display: inline-block;
padding: 3px 8px 4px;
margin-left: 5px; }
#availability_value{
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: medium none;
color: #333;
font-size: 14px;
}
#last_quantities {
background: #fe9126;
border: 1px solid #e4752b;
padding: 4px 8px 3px;
position: relative;
top: 1px;
margin-left: 0px; }
#availability_statut,
#pQuantityAvailable {
display: inline-block; }
#pQuantityAvailable span {
font-weight: 700;
color: #333; }
/* box-security */
.box-security {
border-top: 1px solid #dfdede;
padding: 19px 19px 6px;
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fbfbfb));
background-image: -moz-linear-gradient(#ffffff, #fbfbfb);
background-image: -webkit-linear-gradient(#ffffff, #fbfbfb);
background-image: linear-gradient(#ffffff, #fbfbfb);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fbfbfb',GradientType=0 ); }
p label{
color: #333333;
font-size: 13px;
font-weight: 400;
margin-right: 5px;
}
#product_condition .editable,
#product_reference .editable{
color: #333;
font-family: "Lato",sans-serif;
font-size: 14px;
font-weight: 700;
}
/* prices */
.content_prices {
border-top: 1px solid #e2e2e2;
margin-top: 20px;
padding: 30px 0;
}
.discount {
display: none; }
.our_price_display {
color: #666666;
font-size: 20px;
font-weight: 400;
margin-bottom:10px;
line-height: 1;}
@media (max-width: 991px) {
.our_price_display {
font-size: 26px;
line-height: 28px; } }
.our_price_display .price {
color: #ff3333;
font-size: 24px;
font-weight: 700;
line-height: 1;}
#old_price .price {
color: #878787;
font-size: 18px;
white-space: nowrap;
font-family: "Lato",sans-serif;
}
@media (max-width: 991px) {
.our_price_display .price {
font-size: 26px;
line-height: 28px; } }
#old_price {
font-size: 18px;
text-decoration: line-through;
display: inline-block;
line-height: 23px; }
#reduction_percent,
#reduction_amount {
color: #ff1313;
float: left;
font-size: 18px;
line-height: 23px;
margin-right: 10px;}
#reduction_percent span,
#reduction_amount span {
display: block; }
.hide-left-column.hide-right-column #reduction_percent, .hide-left-column.hide-right-column
#reduction_amount {
display: inline-block; }
/* online_only */
.pb-center-column p.online_only {
font-weight: 700;
font-size: 13px;
color: #f13340;
text-align: left; }
#labCart{
display: inline;
float: left;
margin-right:10px;
}
#usefull_link_block,
.box-cart-bottom .buttons_bottom_block {
float:left;
display:inline;
}
.buttons_bottom_block #wishlist_button {
font-weight: 700; }
/* SEND TO FRIEND (pop-in) ##################################################################### */
#send_friend_form {
width: 555px;
overflow: hidden; }
@media (max-width: 767px) {
#send_friend_form {
width: 280px; } }
#send_friend_form .product img {
margin: 0 0 10px 0;
border: 1px solid #d6d4d4; }
#send_friend_form .product p {
padding: 0;
color: #333; }
#send_friend_form .product p .product_name {
font-size: 12px;
color: #000; }
#send_friend_form .form_container {
padding: 10px 15px;
border: 1px solid #d6d4d4;
background: #fbfbfb; }
#send_friend_form .form_container p.intro_form {
padding-bottom: 6px;
font-weight: 700;
font-size: 13px;
color: #333; }
#send_friend_form .form_container p.txt_required {
padding-bottom: 0;
color: #666; }
#send_friend_form .form_container .text {
padding-bottom: 10px; }
#send_friend_form .form_container .text label {
display: block;
padding: 0;
width: 100%;
font-size: 12px; }
#send_friend_form .form_container .text input {
padding: 0 5px;
height: 22px;
width: 100%;
border: 1px solid #d6d4d4;
font-size: 12px;
color: #666; }
#send_friend_form .submit {
margin-top: 20px;
padding-bottom: 0;
text-align: right; }
/* PERSONNALISATION ##################################################################### */
p.infoCustomizable {
margin-bottom: 30px; }
ul#uploadable_files,
ul#text_fields {
list-style-type: none; }
.customizableProductsFile,
.customizableProductsText {
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #d6d4d4; }
.customizationUploadLine {
padding-bottom: 10px; }
.customizationUploadLine label {
display: block;
vertical-align: top; }
.customizationUploadLine textarea {
width: 50%;
border: 1px solid #d6d4d4;
color: #777777; }
.customizationUploadBrowse img + a {
position: relative;
top: -51px; }
#customizedDatas {
float: right; }
/******************************************************************
Quick View Styles
******************************************************************/
#product.content_only div.primary_block {
padding: 20px;
margin-bottom: 0; }
@media (max-width: 991px) {
#product.content_only div.primary_block {
margin-right: 0; } }
#product.content_only .pb-left-column #image-block {
margin:15px;
}
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-left-column {
width: 100%;
float: none; } }
#product.content_only div.primary_block div.pb-left-column span.view_scroll_spacer {}
#product.content_only div.primary_block div.pb-left-column #views_block {
margin: 0;
padding: 15px;
}
#product.content_only div.primary_block div.pb-left-column #thumbs_list {}
#product.content_only div.primary_block div.pb-left-column #thumbs_list li{
width: 117px;
}
#product.content_only #view_scroll_left{
left:0;
}
#product.content_only #view_scroll_right{
right:0;
}
@media (min-width: 700px) and (max-width: 1199px){
#product.content_only div.primary_block div.pb-left-column #thumbs_list li{
width: 80px;
}
}
#product.content_only div.primary_block div.pb-center-column {
padding: 0 20px;
margin-bottom: 0;
min-height: 623px;
height: 100%; }
@media (max-width: 991px) {
#product.content_only div.primary_block div.pb-center-column {
min-height: 440px; } }
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-center-column {
width: 100%;
float: none; } }
#product.content_only div.primary_block div.pb-center-column .product_comments_block_extra {
padding-right: 0; }
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-center-column .comments_advices li {
display: block; }
#product.content_only div.primary_block div.pb-center-column .comments_advices a.reviews {
margin: 0;
padding: 0;
border: none; } }
#product.content_only div.primary_block div.pb-center-column #ShareDiv {
position: absolute;
bottom: 8px; }
#product.content_only div.primary_block div.pb-right-column {
width: 25.5%;
padding-right: 15px;
padding-left: 0; }
#product.content_only div.primary_block div.pb-right-column .box-info-product {
border-top-width: 0px;
border-right: none;
border-bottom: none;
min-height: 623px;
height: 100%;
-moz-border-radius: 0 4px 4px 0;
-webkit-border-radius: 0;
border-radius: 0 4px 4px 0;
position: relative;
padding-bottom: 125px; }
@media (max-width: 991px) {
#product.content_only div.primary_block div.pb-right-column .box-info-product {
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 1px solid #d6d4d4; } }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive {
display: block;
width: 100%; }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive:before, #product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive:after {
display: block; }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive span {
font-size: 20px;
text-align: center; }
@media (max-width: 1199px) {
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive span {
padding: 12px 22px 14px 70px;
font-size: 20px; } }
#product.content_only div.primary_block div.pb-right-column .box-info-product .box-cart-bottom {
right: 0;
left: 0; }
#product.content_only div.primary_block div.pb-right-column #attributes .attribute_list .form-control {
width: 230px; }
#product.content_only div.primary_block div.pb-right-column .product_attributes,
#product.content_only div.primary_block div.pb-right-column .box-cart-bottom {
-moz-box-shadow: transparent 0px 0px 0px;
-webkit-box-shadow: transparent 0px 0px 0px;
box-shadow: transparent 0px 0px 0px; }
#product.content_only div.primary_block div.pb-right-column .product_attributes {
padding-top: 0; }
.addsharethisinner .stButton .stArrow {
display: none !important; }
@media (max-width: 1050px) {
#product.content_only div.primary_block div.pb-left-column,
#product.content_only section.primary_block div.pb-left-column {
width: 100%;
padding-right: 15px; }
#product.content_only div.primary_block div.pb-left-column #image-block, #product.content_only div.primary_block div.pb-left-column #views_block,
#product.content_only section.primary_block div.pb-left-column #image-block,
#product.content_only section.primary_block div.pb-left-column #views_block {
max-width: 470px;
width: 100%;
margin-left: auto;
margin-right: auto; }
#product.content_only div.primary_block div.pb-left-column #thumbs_list li,
#product.content_only section.primary_block div.pb-left-column #thumbs_list li {}
#product.content_only div.primary_block div.pb-left-column #thumbs_list li img,
#product.content_only section.primary_block div.pb-left-column #thumbs_list li img {}
#product.content_only div.primary_block div.pb-center-column,
#product.content_only section.primary_block div.pb-center-column {
padding-left: 35px; }
#product.content_only div.primary_block div.pb-right-column,
#product.content_only section.primary_block div.pb-right-column {
width: 50%;
float: left; }
#product.content_only div.primary_block div.pb-right-column .box-info-product,
#product.content_only section.primary_block div.pb-right-column .box-info-product {
border-top-width: 1px;
min-height: 1px; } }
/***** IE code ****/
.lab-accessories,
#productscategory_list{
}
.lab-accessories .product_image{
display:block;
}
#usefull_link_block li a,
.box-cart-bottom #wishlist_button_nopop{
display:block;
}
.box-cart-bottom #wishlist_button_nopop{
display:none !important;
}
.box-cart-bottom #wishlist_button_nopop span{
display:none;
}
.box-cart-bottom #wishlist_button_nopop,
#usefull_link_block li{
float:left;
display:inline;
margin-right:10px;
height: 40px;
width: 40px;
line-height: 40px;
position: :relative;
}
#usefull_link_block li a::before,
.box-cart-bottom #wishlist_button_nopop:before{
background: #fff none repeat scroll 0 0;
border: 1px solid #d7d7d7;
-webkit-border-radius:5px;
-moz-border-radius:5px;
-ms-border-radius:5px;
-o-border-radius:5px;
border-radius:5px;
color: #d7d7d7;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
position: absolute;
top: :0;
left: :0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#usefull_link_block li a:hover:before,
.box-cart-bottom #wishlist_button_nopop:hover:before{
border-color:#ff3333;
background-color:#ff3333;
color:#fff;
}
.socialsharing_product{
margin: 10px 0 0;
padding-top: 10px;
clear:left;
}
.more-info{
margin-bottom:40px
}
.more-info-ii{
}
.more-info-ii .idTabs{
display:inline-block;
margin-bottom:10px;
}
.more-info-ii .idTabs li{
padding: 0 20px;
float:left;
}
.more-info-ii .idTabs li:first-child{
padding-left:0;
}
.more-info-ii .idTabs li a{
color: #222222;
cursor: pointer;
display: inline;
float: left;
font-size: 18px;
font-weight: 700;
line-height: 1;
padding-bottom: 15px;
position: relative;
}
.more-info-ii .idTabs li a:before {
border-bottom: 2px solid #ff3333;
bottom:0;
content: "";
left: 0;
margin:0 auto;
position: absolute;
width: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.more-info-ii .idTabs li a.selected,
.more-info-ii .idTabs li a:hover{
color:#ff3333;
}
.more-info-ii .idTabs li a:hover:before,
.more-info-ii .idTabs li a.selected:before {
width: 25px;
}
.more-info .tab-content {
border:1px solid #e2e2e2;
padding:30px;
}
#product_payment_logos{
clear:both;
padding-top: 20px;
}
@media (max-width: 767px) {
.pb-center-column #buy_block label{
width:65px;
}
#attributes fieldset{
margin-bottom:10px;
}
#attributes-ii{
padding-bottom:10px;
}
}
@media (max-width: 480px) {
.more-info-ii .idTabs li{
font-size: 12px;
padding: 0 13px;
}
}
/*# sourceMappingURL=product.css.map */ | public/front/css/lab_techstore_home1/css/product.css | .primary_block {
margin-bottom: 40px; }
.top-hr {
background: #C4C4C4;
height: 5px;
margin: 2px 0 31px; }
.product-heading-h5 {
color: #999999;
font-weight: 200;
margin: 3px 0 8px;
font-size: 19px;
font-family: "Open Sans", sans-serif; }
.box-security .product-heading-h5 {
margin: 3px 0 -8px; }
@media (max-width: 1199px) {
.box-security .product-heading-h5 {
margin-bottom: 8px; } }
.primary_block .pb-left-column img {
width: 100%;
height: auto; }
a.fancybox-nav {
outline: 0; }
/* .pb-left-column ***************************************************************************** */
.pb-left-column #image-block {
display: block;
cursor: pointer;
background: #fff; }
@media (max-width: 767px) {
.pb-left-column #image-block {
width: 280px;
margin: 0 auto; } }
.pb-left-column #image-block img {
background: #fbfbfb;
width: 100%; }
.pb-left-column #image-block #view_full_size .span_link {
background: rgba(226, 226, 226, 0.8) none repeat scroll 0 0;
border-radius: 100%;
color: #fff;
font-size: 18px;
height: 50px;
left: 0;
line-height: 50px;
margin: 0 auto;
position: absolute;
right: 0;
text-align: center;
top: 35%;
width: 50px;
opacity:0;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.pb-left-column .pb-left-column-i:hover #image-block #view_full_size .span_link {
opacity:1;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.pb-left-column #image-block #view_full_size .span_link:hover{
background:#222;
}
.pb-left-column #image-block a.jqzoom div div img {
width: auto;
max-width: 10000px; }
.pb-left-column #image-block a.jqzoom div div .zoomWrapper {
border: none; }
.pb-left-column #image-block .zoomPad {
z-index: auto !important; }
.pb-left-column #image-block .new-box,
.pb-left-column #image-block .sale-box {
z-index: 5002; }
/* miniatures */
.pb-left-column #views_block {
position:relative;
margin-top: 10px; }
@media (max-width: 767px) {
.pb-left-column #views_block {
width: 250px;
margin: 10px auto 0px auto; } }
.pb-left-column-i{
border:1px solid #e2e2e2;
padding:20px;
position:relative;
}
#thumbs_list {
overflow: hidden;
float: left;
width: 100%; }
#thumbs_list ul#thumbs_list_frame {
list-style-type: none;
padding-left: 0;
overflow: hidden; }
#thumbs_list li {
float: left;
width: 76px;
cursor: pointer;
margin-right:10px;
line-height: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
@media (min-width: 992px) and (max-width: 1199px){
#thumbs_list li {
width: 105px;
}
}
@media (min-width: 767px) and (max-width: 991px){
#thumbs_list li {
width: 100px;
}
}
#thumbs_list li:last-child{
margin:0;
}
#thumbs_list li a {
border:1px solid transparent;
display: block;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background: #fbfbfb; }
#thumbs_list li a:hover, #thumbs_list li a.shown {
border-color:#e2e2e2}
.show-right-column.hide-left-column #thumbs_list, .hide-right-column.show-left-column #thumbs_list {}
.NextPre{
}
span.view_scroll_spacer {}
@media (min-width: 992px) and (max-width: 1199px) {
.NextPre{
padding-top: 20px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.NextPre {
padding-top: 2px;
}
}
@media (max-width: 767px) {
.NextPre {
padding-top: 19px;
} }
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer { }
@media (min-width: 992px) and (max-width: 1199px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer { } }
@media (min-width: 768px) and (max-width: 991px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer {} }
@media (max-width: 767px) {
.show-right-column.hide-left-column span.view_scroll_spacer, .hide-right-column.show-left-column span.view_scroll_spacer {} }
#view_scroll_left,
#view_scroll_right {
background: #dddddd none repeat scroll 0 0;
border: 1px solid #dddddd;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
border-radius: 100%;
color: #fff;
display: block !important;
height: 35px;
line-height: 35px;
margin: 2px 0;
overflow: hidden;
position: absolute;
text-align: center;
top: 25%;
width: 35px;}
@media (min-width: 768px) and (max-width: 991px) {
#view_scroll_left,
#view_scroll_right { } }
#view_scroll_left:before,
#view_scroll_right:before {
font-family: "FontAwesome";
font-size: 18px;
line-height: 30px;}
#view_scroll_left:hover,
#view_scroll_right:hover {
background:#ff3333;
border-color:#ff3333;
color: #fff; }
#view_scroll_right {
right: -15px;
}
#view_scroll_right:before {
content: "\f105"; }
#view_scroll_left {
left: -15px; }
#view_scroll_left:before {
content: "\f104";
padding-right: 2px; }
.resetimg {
padding: 10px 0 0; }
.resetimg #resetImages i {
margin-right: 6px; }
.view_scroll_spacer {}
@media (min-width: 768px) and (max-width: 991px) {
.view_scroll_spacer { } }
/* link list */
#usefull_link_block {
list-style-type: none; }
#usefull_link_block li a {
color: #fff;
font-size: 0;
font-weight: 700;
position: relative;
padding:0;
line-height: 22px;
display: inline-block; }
#usefull_link_block li a span{
display:none;
}
#usefull_link_block li a:before {
font-family: "FontAwesome";
color: #333;
font-size: 19px;
line-height: 24px;
position: absolute;
top:0;
left: 0;
font-weight: normal; }
#usefull_link_block li a:hover {
color: #000; }
@media (min-width: 768px) and (max-width: 991px) {
#usefull_link_block li.print {
padding: 0;
border: none; } }
#usefull_link_block li.print a:before {
content: "\f02f"; }
#usefull_link_block li.sendtofriend a:before {
content: "\f003"; }
#usefull_link_block li#left_share_fb {
clear: both;
float: none; }
#usefull_link_block li#left_share_fb a {
padding-left: 18px; }
#usefull_link_block li#left_share_fb a:before {
content: "\f09a"; }
#usefull_link_block li#favoriteproducts_block_extra_remove, #usefull_link_block li#favoriteproducts_block_extra_add, #usefull_link_block li#favoriteproducts_block_extra_removed, #usefull_link_block li#favoriteproducts_block_extra_added {
cursor: pointer;
font-weight: 700;
clear: both;
float: none;
margin: 0 0 8px 0;
border: none;
padding: 0;
position: relative; }
#usefull_link_block li#favoriteproducts_block_extra_remove:before, #usefull_link_block li#favoriteproducts_block_extra_add:before, #usefull_link_block li#favoriteproducts_block_extra_removed:before, #usefull_link_block li#favoriteproducts_block_extra_added:before {
font-family: "FontAwesome";
color: #333;
font-size: 19px;
line-height: 24px;
position: absolute;
top: -2px;
left: 0;
font-weight: normal;
content: "\f08a"; }
#usefull_link_block li#favoriteproducts_block_extra_remove:hover, #usefull_link_block li#favoriteproducts_block_extra_add:hover, #usefull_link_block li#favoriteproducts_block_extra_removed:hover, #usefull_link_block li#favoriteproducts_block_extra_added:hover {
color: #000; }
#usefull_link_block li#favoriteproducts_block_extra_removed:before {
content: "\f004"; }
/* pb-left-column ****************************************************************************** */
.pb-center-column {
margin-bottom: 30px;
/* form */ }
.pb-center-column h1 {
color: #222222;
font-family: "Lato",sans-serif;
font-size: 26px;
font-weight: 700;
line-height: 1;
margin: 0 0 20px;}
.pb-center-column p {}
.pb-center-column #product_reference {
margin-bottom: 6px; }
.pb-center-column #short_description_block {
color: #666; }
.pb-center-column #short_description_block .buttons_bottom_block{
margin-bottom:30px;
}
.pb-center-column #short_description_block .buttons_bottom_block .button{
color: #2d2d2d;
font-family: "Lato",sans-serif;
font-size: 14px;
font-style: italic;
line-height: 1;
padding: 0;
background:none;
border:none;
border-bottom:1px solid #2d2d2d;
}
.pb-center-column #short_description_block .buttons_bottom_block .button:hover{
color:#ff3333;
border-color:#ff3333;
}
.pb-center-column #short_description_block #short_description_content {
word-wrap: break-word; }
.pb-center-column #short_description_block #short_description_content p {
color: #333333;
font-size: 15px;
line-height: 25px;}
.pb-center-column #buy_block {
padding-top: 10px;}
.pb-center-column #buy_block label {
color: #161616;
display: block;
font-size: 15px;
font-weight: 700;
line-height: 1;}
.pb-center-column #buy_block p.price {
padding: 0; }
.pb-center-column #color_picker p {
padding-bottom: 5px;
font-weight: 700; }
#product p#loyalty {
padding: 17px 0 15px 35px;
border-top: 1px solid #d6d4d4;
border-bottom: 1px solid #d6d4d4;
margin: 10px 0 -5px;
position: relative; }
#product p#loyalty b {
color: #333; }
#product p#loyalty:before {
content: "\f024";
font-family: "FontAwesome";
color: #cfcccc;
font-size: 26px;
line-height: 28px;
position: absolute;
top: 16px;
left: 0; }
#page .rte {
color: #666666;
font-size: 14px;
line-height: 24px;
padding: 0;
word-wrap: break-word; }
#page .rte p {
color: #666666;
font-size: 16px;
font-weight: 400;
line-height: 25px;
margin-bottom: 10px;
min-height: 1px;
}
#attributes-ii{
margin-bottom:20px;
}
#attributes fieldset {margin-bottom: 10px;}
#attributes fieldset label {
vertical-align: top;
display: block; }
#attributes .attribute_list {overflow:hidden;}
#attributes .attribute_list .form-control {}
#attributes .attribute_list .form-control option {
background: #fff;
color: #666; }
#attributes .attribute_list ul {
clear: both; }
#attributes .attribute_list ul li {
float: left;
margin-right: 10px; }
#attributes .attribute_list input.attribute_radio {
float: left;
margin-left: 3px; }
#attributes .attribute_list div.radio,
#attributes .attribute_list div.radio span,
#attributes .attribute_list div.radio input {
float: none;
display: inline-block; }
#attributes .attribute_list #color_to_pick_list {
list-style-type: none; }
#attributes .attribute_list #color_to_pick_list li {
float: left;
margin: 0 3px 3px 0;
padding: 1px;
border: 1px solid #d6d4d4;
clear: none;
width: 26px;
height: 26px; }
#attributes .attribute_list #color_to_pick_list li a.color_pick {
display: block;
height: 22px;
width: 22px;
cursor: pointer; }
#attributes .attribute_list #color_to_pick_list li a.color_pick img {
display: block;
height: 22px;
width: 22px; }
#attributes .attribute_list #color_to_pick_list li.selected {
border: 1px solid #4d4d4d; }
div.selector select,
div.selector span,
div.selector {
width:100% !important;
line-height: 40px;
height: 40px;}
.product_attributes,
.box-cart-bottom {
}
.box-cart-bottom {
border-bottom: 1px solid #e2e2e2;
border-top: 1px solid #e2e2e2;
overflow: hidden;
padding: 30px 0 20px;
}
#short_description_content a,
.page-product-box .rte a {
color: #333333;
text-decoration: underline; }
#short_description_content a.btn,
.page-product-box .rte a.btn {
text-decoration: none; }
.box-info-product {
}
.box-info-product p#quantity_wanted_p {
float: left;
margin-bottom: 10px;
margin-right: 20px;
display:inline;
}
.box-info-product p#quantity_wanted_p label{
float: left;
line-height: 40px;
margin-bottom: 0;
margin-right: 15px;
}
.box-info-product .exclusive {
background:none;
border:none;
padding: 0;
position: relative;
display: block;}
/* .box-info-product .exclusive:before {
font-family: "FontAwesome";
position: absolute;
top: 0;
left: 0;
bottom: 0;
color: #fff;
font-size: 25px;
line-height: 47px;
text-shadow: 0 1px #015883;
content: "\f07a";
z-index: 2;
width: 51px;
text-align: center;
border: 1px solid #06b2e6;
-moz-border-radius: 5px 0 0 5px;
-webkit-border-radius: 5px;
border-radius: 5px 0 0 5px; } */
@media (max-width: 991px) {
.box-info-product .exclusive:before {
display: none; } }
/* .box-info-product .exclusive.added:before {
content: "\f00c"; } */
/* .box-info-product .exclusive.added.disabled:before, .box-info-product .exclusive.disabled:before {
height: 51px;
content: "\f110";
animation: 2s linear 0s normal none infinite spin;
-webkit-animation: 2s linear 0s normal none infinite spin;
-moz-animation: 2s linear 0s normal none infinite spin;
border: none; } */
/* .box-info-product .exclusive:after {
background: url(../img/border-1.gif) repeat-y 0 0;
position: absolute;
top: 0;
bottom: 0;
left: 51px;
content: "";
width: 1px;
z-index: 2; } */
@media (max-width: 991px) {
.box-info-product .exclusive:after {
display: none; } }
.box-info-product .exclusive span {
background: #fff none repeat scroll 0 0;
border: 1px solid #b8b8b8;
border-radius: 5px;
color: #222222;
display: block !important;
font-family: "Montserrat",sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 40px;
padding: 0 20px;
text-transform: uppercase;
transition: all 0.3s ease 0s;}
.box-info-product .exclusive span i{
margin-right:5px;
}
.box-info-product .exclusive.added span i:before{
content: "\4e";
}
.box-info-product .exclusive.added span ,
.box-info-product .exclusive:hover span {
background-color:#ff4949;
border-color:#ff4949;
color:#fff;
}
.text-right{
text-align:right;
}
#center_column.col-sm-9 .col-md-3 .box-info-product {
background: #f6f6f6;
border: 1px solid #d2d0d0;
border-top: 1px solid #b0afaf;
border-bottom: 1px solid #b0afaf; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive {
padding: 0;
border-top: 1px solid #0079b6;
border-right: 1px solid #006fa8;
border-left: 1px solid #006fa8;
border-bottom: 1px solid #012740;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
display: block;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOWFkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwN2FiNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #009ad0), color-stop(100%, #007ab7));
background-image: -moz-linear-gradient(#009ad0, #007ab7);
background-image: -webkit-linear-gradient(#009ad0, #007ab7);
background-image: linear-gradient(#009ad0, #007ab7);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009ad0', endColorstr='#007ab7',GradientType=0 ); }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:before {
font-family: "FontAwesome";
position: relative;
top: 0;
left: 0;
bottom: 0;
color: #fff;
font-size: 25px;
line-height: 47px;
text-shadow: 0 1px #015883;
content: "\f07a";
z-index: 2;
width: 51px;
text-align: center;
border: none;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0; }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:before {
display: none; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.added:before {
content: "\f00c"; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.added.disabled:before, #center_column.col-sm-9 .col-md-3 .box-info-product .exclusive.disabled:before {
content: "\f110";
animation: 2s linear 0s normal none infinite spin;
-webkit-animation: 2s linear 0s normal none infinite spin;
-moz-animation: 2s linear 0s normal none infinite spin;
border: none; }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:after {
background: none;
position: absolute;
top: 0;
bottom: 0;
left: 51px;
content: "";
width: 1px;
z-index: 2; }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:after {
display: none; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
font-weight: 500;
font-size: 18px;
line-height: 22px;
border: none;
border-top: 1px solid #006fa8;
text-shadow: 0 1px #015883;
padding: 12px 16px 14px;
color: #fff;
display: block !important;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease; }
@media (max-width: 1199px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
font-size: 16px; } }
@media (max-width: 991px) {
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive span {
padding: 8px 12px 10px;
text-align: center; } }
#center_column.col-sm-9 .col-md-3 .box-info-product .exclusive:hover {
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #007ab7), color-stop(100%, #009ad0));
background-image: -moz-linear-gradient(#007ab7, #009ad0);
background-image: -webkit-linear-gradient(#007ab7, #009ad0);
background-image: linear-gradient(#007ab7, #009ad0);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007ab7', endColorstr='#009ad0',GradientType=0 );
background-position: 0 0; }
/* table_data_sheet */
.table-data-sheet {
border-bottom: 1px solid #d6d4d4;
width: 100%;
margin: 0 0 20px;
background: #fff; }
.table-data-sheet tr {
border-top: 1px solid #d6d4d4; }
.table-data-sheet tr.even {
background: #fdfdfd; }
.table-data-sheet tr td {
padding: 10px 20px 11px; }
.table-data-sheet tr td:first-child {
border-right: 1px solid #d6d4d4;
width: 30%;
font-weight: 700;
color: #333; }
/* table product-discounts */
table.table-product-discounts {
border: none;
border-bottom: 1px solid #d6d4d4;
border-right: 1px solid #d6d4d4;
width: 50%;
margin: 0 0 20px;
background: #fff; }
@media (max-width: 767px) {
table.table-product-discounts {
width: 100%; } }
table.table-product-discounts tr th {
background: #fbfbfb;
color: #333;
font-weight: 700;
border: none;
font-weight: 700; }
table.table-product-discounts tr td,
table.table-product-discounts tr th {
border-left: 1px solid #d6d4d4;
width: 33%;
padding: 10px 20px 11px;
border-top: 1px solid #d6d4d4;
border-right: none;
text-shadow: none;
text-transform: none;
font-weight: 13px;
line-height: 18px;
border-bottom: none; }
/* accessories */
.accessories-block .block_description {
display: none; }
.accessories-block .exclusive span {
font-size: 13px;
line-height: 18px;
padding: 2px 8px 3px;
text-decoration: none; }
.accessories-block .exclusive span:focus, .accessories-block .exclusive span:active {
text-decoration: none; }
.accessories-block .product-name {
margin-bottom: 5px; }
.accessories-block .product-name a {
font-size: 15px;
line-height: 18px;
color: #3a3939; }
.accessories-block .product-name a:hover {
color: #515151; }
.accessories-block div ul li a {
display: inline-block; }
.accessories-block div ul li.s_title_block a,
.accessories-block div ul li.s_title_block span {
font-weight: 700; }
/* quantity_wanted */
#quantity_wanted_p input {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: medium none !important;
float: left;
height: 33px;
color:#ff3333;
padding: 0 6px;
text-align: center;
width: 50px; }
#quantity_wanted_p .qty-ii{
background: #f6f6f6 none repeat scroll 0 0;
border: 1px solid #e2e2e2;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
display: inline;
float: left;
padding: 3px 5px;
}
#quantity_wanted_p .btn {
background:none;
border: medium none;
float: left;}
#quantity_wanted_p .btn:hover{
color:#000;
}
#quantity_wanted_p .btn span{
border:none;
background:none;
padding:0;
}
#quantity_wanted_p label {
display: block;
margin-bottom: 7px; }
/* availability_statut */
#availability_statut span#availability_label,
#availability_date_label {
display: inline-block;
width: 125px;
font-weight: 700;
font-size: 12px;
text-align: right; }
#quantityAvailable {
color: #333;
font-size: 13px;
line-height: 18px;
font-weight: 700; }
#availability_value,
#last_quantities {
color: #fff;
font-weight: 700;
line-height: 18px;
display: inline-block;
padding: 3px 8px 4px;
margin-left: 5px; }
#availability_value{
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: medium none;
color: #333;
font-size: 14px;
}
#last_quantities {
background: #fe9126;
border: 1px solid #e4752b;
padding: 4px 8px 3px;
position: relative;
top: 1px;
margin-left: 0px; }
#availability_statut,
#pQuantityAvailable {
display: inline-block; }
#pQuantityAvailable span {
font-weight: 700;
color: #333; }
/* box-security */
.box-security {
border-top: 1px solid #dfdede;
padding: 19px 19px 6px;
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fbfbfb));
background-image: -moz-linear-gradient(#ffffff, #fbfbfb);
background-image: -webkit-linear-gradient(#ffffff, #fbfbfb);
background-image: linear-gradient(#ffffff, #fbfbfb);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fbfbfb',GradientType=0 ); }
p label{
color: #333333;
font-size: 13px;
font-weight: 400;
margin-right: 5px;
}
#product_condition .editable,
#product_reference .editable{
color: #333;
font-family: "Lato",sans-serif;
font-size: 14px;
font-weight: 700;
}
/* prices */
.content_prices {
border-top: 1px solid #e2e2e2;
margin-top: 20px;
padding: 30px 0;
}
.discount {
display: none; }
.our_price_display {
color: #666666;
font-size: 20px;
font-weight: 400;
margin-bottom:10px;
line-height: 1;}
@media (max-width: 991px) {
.our_price_display {
font-size: 26px;
line-height: 28px; } }
.our_price_display .price {
color: #ff3333;
font-size: 24px;
font-weight: 700;
line-height: 1;}
#old_price .price {
color: #878787;
font-size: 18px;
white-space: nowrap;
font-family: "Lato",sans-serif;
}
@media (max-width: 991px) {
.our_price_display .price {
font-size: 26px;
line-height: 28px; } }
#old_price {
font-size: 18px;
text-decoration: line-through;
display: inline-block;
line-height: 23px; }
#reduction_percent,
#reduction_amount {
color: #ff1313;
float: left;
font-size: 18px;
line-height: 23px;
margin-right: 10px;}
#reduction_percent span,
#reduction_amount span {
display: block; }
.hide-left-column.hide-right-column #reduction_percent, .hide-left-column.hide-right-column
#reduction_amount {
display: inline-block; }
/* online_only */
.pb-center-column p.online_only {
font-weight: 700;
font-size: 13px;
color: #f13340;
text-align: left; }
#labCart{
display: inline;
float: left;
margin-right:10px;
}
#usefull_link_block,
.box-cart-bottom .buttons_bottom_block {
float:left;
display:inline;
}
.buttons_bottom_block #wishlist_button {
font-weight: 700; }
/* SEND TO FRIEND (pop-in) ##################################################################### */
#send_friend_form {
width: 555px;
overflow: hidden; }
@media (max-width: 767px) {
#send_friend_form {
width: 280px; } }
#send_friend_form .product img {
margin: 0 0 10px 0;
border: 1px solid #d6d4d4; }
#send_friend_form .product p {
padding: 0;
color: #333; }
#send_friend_form .product p .product_name {
font-size: 12px;
color: #000; }
#send_friend_form .form_container {
padding: 10px 15px;
border: 1px solid #d6d4d4;
background: #fbfbfb; }
#send_friend_form .form_container p.intro_form {
padding-bottom: 6px;
font-weight: 700;
font-size: 13px;
color: #333; }
#send_friend_form .form_container p.txt_required {
padding-bottom: 0;
color: #666; }
#send_friend_form .form_container .text {
padding-bottom: 10px; }
#send_friend_form .form_container .text label {
display: block;
padding: 0;
width: 100%;
font-size: 12px; }
#send_friend_form .form_container .text input {
padding: 0 5px;
height: 22px;
width: 100%;
border: 1px solid #d6d4d4;
font-size: 12px;
color: #666; }
#send_friend_form .submit {
margin-top: 20px;
padding-bottom: 0;
text-align: right; }
/* PERSONNALISATION ##################################################################### */
p.infoCustomizable {
margin-bottom: 30px; }
ul#uploadable_files,
ul#text_fields {
list-style-type: none; }
.customizableProductsFile,
.customizableProductsText {
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #d6d4d4; }
.customizationUploadLine {
padding-bottom: 10px; }
.customizationUploadLine label {
display: block;
vertical-align: top; }
.customizationUploadLine textarea {
width: 50%;
border: 1px solid #d6d4d4;
color: #777777; }
.customizationUploadBrowse img + a {
position: relative;
top: -51px; }
#customizedDatas {
float: right; }
/******************************************************************
Quick View Styles
******************************************************************/
#product.content_only div.primary_block {
padding: 20px;
margin-bottom: 0; }
@media (max-width: 991px) {
#product.content_only div.primary_block {
margin-right: 0; } }
#product.content_only .pb-left-column #image-block {
margin:15px;
}
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-left-column {
width: 100%;
float: none; } }
#product.content_only div.primary_block div.pb-left-column span.view_scroll_spacer {}
#product.content_only div.primary_block div.pb-left-column #views_block {
margin: 0;
padding: 15px;
}
#product.content_only div.primary_block div.pb-left-column #thumbs_list {}
#product.content_only div.primary_block div.pb-left-column #thumbs_list li{
width: 117px;
}
#product.content_only #view_scroll_left{
left:0;
}
#product.content_only #view_scroll_right{
right:0;
}
@media (min-width: 700px) and (max-width: 1199px){
#product.content_only div.primary_block div.pb-left-column #thumbs_list li{
width: 80px;
}
}
#product.content_only div.primary_block div.pb-center-column {
padding: 0 20px;
margin-bottom: 0;
min-height: 623px;
height: 100%; }
@media (max-width: 991px) {
#product.content_only div.primary_block div.pb-center-column {
min-height: 440px; } }
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-center-column {
width: 100%;
float: none; } }
#product.content_only div.primary_block div.pb-center-column .product_comments_block_extra {
padding-right: 0; }
@media (max-width: 479px) {
#product.content_only div.primary_block div.pb-center-column .comments_advices li {
display: block; }
#product.content_only div.primary_block div.pb-center-column .comments_advices a.reviews {
margin: 0;
padding: 0;
border: none; } }
#product.content_only div.primary_block div.pb-center-column #ShareDiv {
position: absolute;
bottom: 8px; }
#product.content_only div.primary_block div.pb-right-column {
width: 25.5%;
padding-right: 15px;
padding-left: 0; }
#product.content_only div.primary_block div.pb-right-column .box-info-product {
border-top-width: 0px;
border-right: none;
border-bottom: none;
min-height: 623px;
height: 100%;
-moz-border-radius: 0 4px 4px 0;
-webkit-border-radius: 0;
border-radius: 0 4px 4px 0;
position: relative;
padding-bottom: 125px; }
@media (max-width: 991px) {
#product.content_only div.primary_block div.pb-right-column .box-info-product {
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
border: 1px solid #d6d4d4; } }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive {
display: block;
width: 100%; }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive:before, #product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive:after {
display: block; }
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive span {
font-size: 20px;
text-align: center; }
@media (max-width: 1199px) {
#product.content_only div.primary_block div.pb-right-column .box-info-product #add_to_cart .exclusive span {
padding: 12px 22px 14px 70px;
font-size: 20px; } }
#product.content_only div.primary_block div.pb-right-column .box-info-product .box-cart-bottom {
right: 0;
left: 0; }
#product.content_only div.primary_block div.pb-right-column #attributes .attribute_list .form-control {
width: 230px; }
#product.content_only div.primary_block div.pb-right-column .product_attributes,
#product.content_only div.primary_block div.pb-right-column .box-cart-bottom {
-moz-box-shadow: transparent 0px 0px 0px;
-webkit-box-shadow: transparent 0px 0px 0px;
box-shadow: transparent 0px 0px 0px; }
#product.content_only div.primary_block div.pb-right-column .product_attributes {
padding-top: 0; }
.addsharethisinner .stButton .stArrow {
display: none !important; }
@media (max-width: 1050px) {
#product.content_only div.primary_block div.pb-left-column,
#product.content_only section.primary_block div.pb-left-column {
width: 100%;
padding-right: 15px; }
#product.content_only div.primary_block div.pb-left-column #image-block, #product.content_only div.primary_block div.pb-left-column #views_block,
#product.content_only section.primary_block div.pb-left-column #image-block,
#product.content_only section.primary_block div.pb-left-column #views_block {
max-width: 470px;
width: 100%;
margin-left: auto;
margin-right: auto; }
#product.content_only div.primary_block div.pb-left-column #thumbs_list li,
#product.content_only section.primary_block div.pb-left-column #thumbs_list li {}
#product.content_only div.primary_block div.pb-left-column #thumbs_list li img,
#product.content_only section.primary_block div.pb-left-column #thumbs_list li img {}
#product.content_only div.primary_block div.pb-center-column,
#product.content_only section.primary_block div.pb-center-column {
padding-left: 35px; }
#product.content_only div.primary_block div.pb-right-column,
#product.content_only section.primary_block div.pb-right-column {
width: 50%;
float: left; }
#product.content_only div.primary_block div.pb-right-column .box-info-product,
#product.content_only section.primary_block div.pb-right-column .box-info-product {
border-top-width: 1px;
min-height: 1px; } }
/***** IE code ****/
.lab-accessories,
#productscategory_list{
}
.lab-accessories .product_image{
display:block;
}
#usefull_link_block li a,
.box-cart-bottom #wishlist_button_nopop{
display:block;
}
.box-cart-bottom #wishlist_button_nopop{
display:none !important;
}
.box-cart-bottom #wishlist_button_nopop span{
display:none;
}
.box-cart-bottom #wishlist_button_nopop,
#usefull_link_block li{
float:left;
display:inline;
margin-right:10px;
height: 40px;
width: 40px;
line-height: 40px;
position: :relative;
}
#usefull_link_block li a::before,
.box-cart-bottom #wishlist_button_nopop:before{
background: #fff none repeat scroll 0 0;
border: 1px solid #d7d7d7;
-webkit-border-radius:5px;
-moz-border-radius:5px;
-ms-border-radius:5px;
-o-border-radius:5px;
border-radius:5px;
color: #d7d7d7;
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
position: absolute;
top: :0;
left: :0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
#usefull_link_block li a:hover:before,
.box-cart-bottom #wishlist_button_nopop:hover:before{
border-color:#ff3333;
background-color:#ff3333;
color:#fff;
}
.socialsharing_product{
margin: 10px 0 0;
padding-top: 10px;
clear:left;
}
.more-info{
margin-bottom:40px
}
.more-info-ii{
}
.more-info-ii .idTabs{
display:inline-block;
margin-bottom:10px;
}
.more-info-ii .idTabs li{
padding: 0 20px;
float:left;
}
.more-info-ii .idTabs li:first-child{
padding-left:0;
}
.more-info-ii .idTabs li a{
color: #222222;
cursor: pointer;
display: inline;
float: left;
font-size: 18px;
font-weight: 700;
line-height: 1;
padding-bottom: 15px;
position: relative;
}
.more-info-ii .idTabs li a:before {
border-bottom: 2px solid #ff3333;
bottom:0;
content: "";
left: 0;
margin:0 auto;
position: absolute;
width: 0;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.more-info-ii .idTabs li a.selected,
.more-info-ii .idTabs li a:hover{
color:#ff3333;
}
.more-info-ii .idTabs li a:hover:before,
.more-info-ii .idTabs li a.selected:before {
width: 25px;
}
.more-info .tab-content {
border:1px solid #e2e2e2;
padding:30px;
}
#product_payment_logos{
clear:both;
padding-top: 20px;
}
@media (max-width: 767px) {
.pb-center-column #buy_block label{
width:65px;
}
#attributes fieldset{
margin-bottom:10px;
}
#attributes-ii{
padding-bottom:10px;
}
}
@media (max-width: 480px) {
.more-info-ii .idTabs li{
font-size: 12px;
padding: 0 13px;
}
}
/*# sourceMappingURL=product.css.map */ | 0.360039 | 0.084758 |
.wl-xianshi-neirong{
width: 90%;
min-height: 200px;
margin: 0 auto;
padding-bottom: 100px;
}
.wl-all-title{
width: 100%;
height: 50px;
line-height: 50px;
color: #333333;
font-size: 14px;
}
.wl-all-neirong{
width: 100%;
min-height: 120px;
padding: 10px 0 10px 0 ;
border-bottom: 1px solid #f1f1f1;
}
.wl-all-left{
width: 135px;
height: 98px;
float: left;
}
.wl-all-left img{
width: 135px;
height: 98px;
float: left;
background: #fdf6f6;
color: transparent;
}
.wl-all-center{
width: 560px;
min-height: 98px;
overflow: hidden;
float: left;
padding: 0 15px 0 15px;
}
.wl-all-right{
width: 70px;
height: 98px;
color: #A0A0A0;
padding-top: 10px;
font-size: 14px;
float: left;
text-align: center;
}
.wl-all-right a:hover{
color: white!important;
text-decoration: none;
background: #7DB0E8;
border-radius: 3px;
}
.wl-all-center dl{
width: 95%;
height: 41px;
font-size: 16px;
min-height: 20px;
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.wl-all-center dt{
width: 60px;
height: 22px;
line-height: 22px;
text-align: center;
background: #FFFAF5;
color: #FEB091;
font-size: 13px;
margin: 5px 0 5px 0;
}
.wl-all-center dd{
color: #A0A0A0;
font-size: 13px;
margin-top: 8px;
}
.layui-box{
margin-top: 20px!important;
float: right;
margin-right: 20px!important;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
background: #7DB0E8!important;
}
.layui-laypage>a:first-child:hover{
color: #7DB0E8!important;
}
.layui-laypage>a:last-child:hover{
color: #7DB0E8!important;
}
.demo1{
width: 180px;
height: 60px;
text-align: center;
line-height: 60px;
font-size: 18px;
position: absolute;
top: 140px;
background: #7DB0E8;
color: white;
}
.wl-renzhengs1{
width: 180px;
height: 60px;
color: #333333;
display: block;
line-height: 60px;
font-size: 18px;
text-align: center;
cursor: pointer;
background: white;
position: absolute;
top: 70px;
}
.actoe{
color: #333333;
background: white;
}
.wl-list{
width: 100%;
min-height: 50px;
border: 1px solid #f1f1f1;
}
.wl-project{
width: 100%;
min-height: 30px;
border-bottom: 1px solid #f1f1f1;
color: #888888;
font-size: 13px;
}
.wl-project div:nth-child(1){
width:50px;
height: 30px;
float: left;
line-height: 30px;
text-align: center;
}
.wl-liebiao{
width: 93%;
float: left;
padding:4px;
border-left: 1px solid #f1f1f1;
}
.wl-liebiao span{
height: 30px;
line-height: 30px;
text-align: center;
width: fit-content;
z-index: 999999!important;
border-radius: 5px;
cursor: pointer;
padding: 2px 7px 3px 5px;
}
.wl-sorting{
width: 100%;
background: #F5F5F5;
height: 50px;
border:1px solid #E5E5E5;
margin-top: 20px;
z-index: 999999;
cursor: pointer;
}
.wl-sorting li{
width: 25%;
height: 48px;
line-height: 50px;
text-align: center;
float: left;
color: #888888;
font-size: 15px;
}
.wl-shangpin-quan{
width: 23.6%;
min-height: 50px;
border: 1px solid #EEEEEE;
margin: 20px 5px 0 5px;
line-height: 20px!important;
float: left;
cursor: pointer;
}
.wl-shangpin-quan dl{
width: 95%;
height: 180px;
padding: 5px;
}
.wl-shangpin-quan dl>img{
width: 100%;
height: 180px;
display: block;
background: #EEEEEE;
}
.wl-shang-title{
height: 40px;
color: #000000;
font-size: 16px;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
padding: 15px 5px 0 5px;
}
.wl-yiyuan{
color: #999999;
font-size: 13px;
padding: 5px;
}
.wl-jiage{
color: #F24F4F;
font-size: 18px; padding: 5px;
}
.wl-fenxiao{
width: 100%;
height: 40px;
line-height: 40px;
text-align: center;
border-top: 1px solid #EEEEEE;
color: #888888;
font-size: 16px;
}
.active{
background:#FFFFFF;
border-bottom: 2px solid #7DB0E8;
color: #7DB0E8!important;
}
.se{
background:#7DB0E8 ;
color: white;
}
.wl-shangpin-quan:hover{
box-shadow: 1px 1px 4px #eee;
}
.wl-fenxiao:hover{
background: #7DB0E8;
color: #FFFFFF;
}
.wl-tijiao:hover{
background: #7DB0E8;
color: #FFFFFF;
}
.wl-top-title{
width: 90%;
margin: 0 auto;
min-height: 180px;
border-bottom: 1px solid #F1F1F1;
padding: 15px;
}
.wl-top-img{
width:180px;
height: 150px;
float: left;
background: #EEEEEE;
}
.wl-top-img img{
width: 180px;
height: 150px;
}
.wl-top-right{
width: 70%;
height: 150px;
float: left;
padding: 0 10px 0 10px;
}
.wl-top-liebiao{
width: 180px;
min-height: 50px;
background: white;
}
.wl-top-liebiao li{
position: relative;
width: 180px!important;
line-height: 60px!important;
font-size: 18px!important;
text-align: center!important;
cursor: pointer!important;
}
.wl-tutu{
margin-right:10px;
}
.wl-xiala{
position: absolute;
right: 28px;
color: #999999!important;
}
.wl-biao{
position: absolute;
top: 0px;
left: 15px;
}
.wl-shiming{
width: 180px!important;
line-height: 60px!important;
font-size: 18px!important;
text-align: center!important;
cursor: pointer!important;
background: white;
position: relative;
top: 15px;
}
.wl-nide a{
color: black!important;
}
.action{
background: #7DB0E8;
color: white!important;
}
.wl-jiagewa{
font-size: 20px;
color: #F24F4F;
}
.wl-yiyuan-tuijian{
color: #999999;
font-size: 13px;
padding: 5px;
}
.wl-tuijian-title{
width: 95%;
font-size: 16px;
min-height: 20px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.wl-tuijian-fabu{
width: 60px;
height: 22px;
line-height: 22px;
text-align: center;
background: #FFFAF5;
color: #FEB091;
font-size: 13px;
margin: 5px 0 5px 0;
float: left;
}
.wl-tuijian-time{
color: #A0A0A0;
font-size: 13px;
float: left;
margin-left: 10px;
margin-top: 8px;
}
.padding{
padding-bottom: 100px;
}
.wl-sorting li:hover{
color: #7DB0E8!important;
}
.wl-sorting-gao{
width: 100%!important;
display: none;
position: relative;
}
.wl-sorting-gao li{
width: 100%;
background: #FFFFFF;
border-left: 1px solid #E5E5E5;
border-bottom: 1px solid #E5E5E5;
border-right: 1px solid #E5E5E5;
}
.wl-all-center:hover{
color:#7DB0E8;
}
.wl-all-right a{
display: inline-block;
width: 40px;
text-align: center;
height: 25px;
line-height: 25px;
}
#wl-fenye{
width:30%;
float: right;
min-height: 100px;
}
.web-fabiao {
width: 100%;
height: 60px;
font-size: 15px;
}
.web-fabiao li:nth-child(1) {
width: 10%;
height: 60px;
line-height: 60px;
text-align: center;
}
.web-fabiao li {
float: left;
}
.web-fabiao li:nth-child(2) {
width: 80%;
margin-top: 9px;
}
.web-fabiao li>input {
width: 100%;
height: 35px;
line-height: 35px;
border-bottom: 1px solid #EEEEEE;
margin-top: 5px;
}
.wl-loading{
width: 100%;min-height: 50px;position: relative;top: 40px;
}
#click-reload-more{
width: 50%;position: absolute;left: 0;right: 0;margin: 0 auto
}
.wl-weifabiao{
width: 300px;
height: 300px;
margin: 0 auto;
margin-top: 90px;
text-align: center;
}
.wl-weifabiao dl{
margin-top: 20px;
font-size: 100px!important;
color: #7DB0E8!important;
}
.wl-weifabiao dt{
margin-top: 20px;
font-size: 16px!important;
}
.wl-top-liebiao li{
list-style: none;
}
.wl-tijiao {
width: 100px!important;
height: 30px!important;
line-height: 30px!important;
background: #EEEEEE;
color: #909090;
font-size: 13px;
text-align: center;
border-radius: 3px;
float: right;
margin-right: 50px;
margin-top: 50px;
cursor: pointer;
}
.web-btn {
width: 100%;
min-height: 95px;
border-top: 2px solid #f1f1f1;
margin-top: 100px;
}
.w-e-text-container{
height: 500px!important;
} | public/static/web/css1/my_article.css | .wl-xianshi-neirong{
width: 90%;
min-height: 200px;
margin: 0 auto;
padding-bottom: 100px;
}
.wl-all-title{
width: 100%;
height: 50px;
line-height: 50px;
color: #333333;
font-size: 14px;
}
.wl-all-neirong{
width: 100%;
min-height: 120px;
padding: 10px 0 10px 0 ;
border-bottom: 1px solid #f1f1f1;
}
.wl-all-left{
width: 135px;
height: 98px;
float: left;
}
.wl-all-left img{
width: 135px;
height: 98px;
float: left;
background: #fdf6f6;
color: transparent;
}
.wl-all-center{
width: 560px;
min-height: 98px;
overflow: hidden;
float: left;
padding: 0 15px 0 15px;
}
.wl-all-right{
width: 70px;
height: 98px;
color: #A0A0A0;
padding-top: 10px;
font-size: 14px;
float: left;
text-align: center;
}
.wl-all-right a:hover{
color: white!important;
text-decoration: none;
background: #7DB0E8;
border-radius: 3px;
}
.wl-all-center dl{
width: 95%;
height: 41px;
font-size: 16px;
min-height: 20px;
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.wl-all-center dt{
width: 60px;
height: 22px;
line-height: 22px;
text-align: center;
background: #FFFAF5;
color: #FEB091;
font-size: 13px;
margin: 5px 0 5px 0;
}
.wl-all-center dd{
color: #A0A0A0;
font-size: 13px;
margin-top: 8px;
}
.layui-box{
margin-top: 20px!important;
float: right;
margin-right: 20px!important;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
background: #7DB0E8!important;
}
.layui-laypage>a:first-child:hover{
color: #7DB0E8!important;
}
.layui-laypage>a:last-child:hover{
color: #7DB0E8!important;
}
.demo1{
width: 180px;
height: 60px;
text-align: center;
line-height: 60px;
font-size: 18px;
position: absolute;
top: 140px;
background: #7DB0E8;
color: white;
}
.wl-renzhengs1{
width: 180px;
height: 60px;
color: #333333;
display: block;
line-height: 60px;
font-size: 18px;
text-align: center;
cursor: pointer;
background: white;
position: absolute;
top: 70px;
}
.actoe{
color: #333333;
background: white;
}
.wl-list{
width: 100%;
min-height: 50px;
border: 1px solid #f1f1f1;
}
.wl-project{
width: 100%;
min-height: 30px;
border-bottom: 1px solid #f1f1f1;
color: #888888;
font-size: 13px;
}
.wl-project div:nth-child(1){
width:50px;
height: 30px;
float: left;
line-height: 30px;
text-align: center;
}
.wl-liebiao{
width: 93%;
float: left;
padding:4px;
border-left: 1px solid #f1f1f1;
}
.wl-liebiao span{
height: 30px;
line-height: 30px;
text-align: center;
width: fit-content;
z-index: 999999!important;
border-radius: 5px;
cursor: pointer;
padding: 2px 7px 3px 5px;
}
.wl-sorting{
width: 100%;
background: #F5F5F5;
height: 50px;
border:1px solid #E5E5E5;
margin-top: 20px;
z-index: 999999;
cursor: pointer;
}
.wl-sorting li{
width: 25%;
height: 48px;
line-height: 50px;
text-align: center;
float: left;
color: #888888;
font-size: 15px;
}
.wl-shangpin-quan{
width: 23.6%;
min-height: 50px;
border: 1px solid #EEEEEE;
margin: 20px 5px 0 5px;
line-height: 20px!important;
float: left;
cursor: pointer;
}
.wl-shangpin-quan dl{
width: 95%;
height: 180px;
padding: 5px;
}
.wl-shangpin-quan dl>img{
width: 100%;
height: 180px;
display: block;
background: #EEEEEE;
}
.wl-shang-title{
height: 40px;
color: #000000;
font-size: 16px;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
padding: 15px 5px 0 5px;
}
.wl-yiyuan{
color: #999999;
font-size: 13px;
padding: 5px;
}
.wl-jiage{
color: #F24F4F;
font-size: 18px; padding: 5px;
}
.wl-fenxiao{
width: 100%;
height: 40px;
line-height: 40px;
text-align: center;
border-top: 1px solid #EEEEEE;
color: #888888;
font-size: 16px;
}
.active{
background:#FFFFFF;
border-bottom: 2px solid #7DB0E8;
color: #7DB0E8!important;
}
.se{
background:#7DB0E8 ;
color: white;
}
.wl-shangpin-quan:hover{
box-shadow: 1px 1px 4px #eee;
}
.wl-fenxiao:hover{
background: #7DB0E8;
color: #FFFFFF;
}
.wl-tijiao:hover{
background: #7DB0E8;
color: #FFFFFF;
}
.wl-top-title{
width: 90%;
margin: 0 auto;
min-height: 180px;
border-bottom: 1px solid #F1F1F1;
padding: 15px;
}
.wl-top-img{
width:180px;
height: 150px;
float: left;
background: #EEEEEE;
}
.wl-top-img img{
width: 180px;
height: 150px;
}
.wl-top-right{
width: 70%;
height: 150px;
float: left;
padding: 0 10px 0 10px;
}
.wl-top-liebiao{
width: 180px;
min-height: 50px;
background: white;
}
.wl-top-liebiao li{
position: relative;
width: 180px!important;
line-height: 60px!important;
font-size: 18px!important;
text-align: center!important;
cursor: pointer!important;
}
.wl-tutu{
margin-right:10px;
}
.wl-xiala{
position: absolute;
right: 28px;
color: #999999!important;
}
.wl-biao{
position: absolute;
top: 0px;
left: 15px;
}
.wl-shiming{
width: 180px!important;
line-height: 60px!important;
font-size: 18px!important;
text-align: center!important;
cursor: pointer!important;
background: white;
position: relative;
top: 15px;
}
.wl-nide a{
color: black!important;
}
.action{
background: #7DB0E8;
color: white!important;
}
.wl-jiagewa{
font-size: 20px;
color: #F24F4F;
}
.wl-yiyuan-tuijian{
color: #999999;
font-size: 13px;
padding: 5px;
}
.wl-tuijian-title{
width: 95%;
font-size: 16px;
min-height: 20px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.wl-tuijian-fabu{
width: 60px;
height: 22px;
line-height: 22px;
text-align: center;
background: #FFFAF5;
color: #FEB091;
font-size: 13px;
margin: 5px 0 5px 0;
float: left;
}
.wl-tuijian-time{
color: #A0A0A0;
font-size: 13px;
float: left;
margin-left: 10px;
margin-top: 8px;
}
.padding{
padding-bottom: 100px;
}
.wl-sorting li:hover{
color: #7DB0E8!important;
}
.wl-sorting-gao{
width: 100%!important;
display: none;
position: relative;
}
.wl-sorting-gao li{
width: 100%;
background: #FFFFFF;
border-left: 1px solid #E5E5E5;
border-bottom: 1px solid #E5E5E5;
border-right: 1px solid #E5E5E5;
}
.wl-all-center:hover{
color:#7DB0E8;
}
.wl-all-right a{
display: inline-block;
width: 40px;
text-align: center;
height: 25px;
line-height: 25px;
}
#wl-fenye{
width:30%;
float: right;
min-height: 100px;
}
.web-fabiao {
width: 100%;
height: 60px;
font-size: 15px;
}
.web-fabiao li:nth-child(1) {
width: 10%;
height: 60px;
line-height: 60px;
text-align: center;
}
.web-fabiao li {
float: left;
}
.web-fabiao li:nth-child(2) {
width: 80%;
margin-top: 9px;
}
.web-fabiao li>input {
width: 100%;
height: 35px;
line-height: 35px;
border-bottom: 1px solid #EEEEEE;
margin-top: 5px;
}
.wl-loading{
width: 100%;min-height: 50px;position: relative;top: 40px;
}
#click-reload-more{
width: 50%;position: absolute;left: 0;right: 0;margin: 0 auto
}
.wl-weifabiao{
width: 300px;
height: 300px;
margin: 0 auto;
margin-top: 90px;
text-align: center;
}
.wl-weifabiao dl{
margin-top: 20px;
font-size: 100px!important;
color: #7DB0E8!important;
}
.wl-weifabiao dt{
margin-top: 20px;
font-size: 16px!important;
}
.wl-top-liebiao li{
list-style: none;
}
.wl-tijiao {
width: 100px!important;
height: 30px!important;
line-height: 30px!important;
background: #EEEEEE;
color: #909090;
font-size: 13px;
text-align: center;
border-radius: 3px;
float: right;
margin-right: 50px;
margin-top: 50px;
cursor: pointer;
}
.web-btn {
width: 100%;
min-height: 95px;
border-top: 2px solid #f1f1f1;
margin-top: 100px;
}
.w-e-text-container{
height: 500px!important;
} | 0.380759 | 0.089973 |
@font-face {
font-family :'OOPS-GLYPHICONS';
src:url('../font/bootstrap3-glyphicons.ttf') format('truetype');
}
[class^="oops-"] {
font-family : 'OOPS-GLYPHICONS';
position : relative;
top : 1px;
display : inline-block;
font-style : normal;
font-weight : normal;
line-height : 1;
-webkit-font-smoothing : antialiased;
-moz-osx-font-smoothing : grayscale;
}
.oops-asterisk:before { content: "\002a"; }
.oops-plus:before { content: "\002b"; }
.oops-euro:before, .oops-eur:before { content: "\20ac"; }
.oops-minus:before { content: "\2212"; }
.oops-cloud:before { content: "\2601"; }
.oops-envelope:before { content: "\2709"; }
.oops-pencil:before { content: "\270f"; }
.oops-glass:before { content: "\e001"; }
.oops-music:before { content: "\e002"; }
.oops-search:before { content: "\e003"; }
.oops-heart:before { content: "\e005"; }
.oops-star:before { content: "\e006"; }
.oops-star-empty:before { content: "\e007"; }
.oops-user:before { content: "\e008"; }
.oops-film:before { content: "\e009"; }
.oops-th-large:before { content: "\e010"; }
.oops-th:before { content: "\e011"; }
.oops-th-list:before { content: "\e012"; }
.oops-ok:before { content: "\e013"; }
.oops-remove:before { content: "\e014"; }
.oops-zoom-in:before { content: "\e015"; }
.oops-zoom-out:before { content: "\e016"; }
.oops-off:before { content: "\e017"; }
.oops-signal:before { content: "\e018"; }
.oops-cog:before { content: "\e019"; }
.oops-trash:before { content: "\e020"; }
.oops-home:before { content: "\e021"; }
.oops-file:before { content: "\e022"; }
.oops-time:before { content: "\e023"; }
.oops-road:before { content: "\e024"; }
.oops-download-alt:before { content: "\e025"; }
.oops-download:before { content: "\e026"; }
.oops-upload:before { content: "\e027"; }
.oops-inbox:before { content: "\e028"; }
.oops-play-circle:before { content: "\e029"; }
.oops-repeat:before { content: "\e030"; }
.oops-refresh:before { content: "\e031"; }
.oops-list-alt:before { content: "\e032"; }
.oops-lock:before { content: "\e033"; }
.oops-flag:before { content: "\e034"; }
.oops-headphones:before { content: "\e035"; }
.oops-volume-off:before { content: "\e036"; }
.oops-volume-down:before { content: "\e037"; }
.oops-volume-up:before { content: "\e038"; }
.oops-qrcode:before { content: "\e039"; }
.oops-barcode:before { content: "\e040"; }
.oops-tag:before { content: "\e041"; }
.oops-tags:before { content: "\e042"; }
.oops-book:before { content: "\e043"; }
.oops-bookmark:before { content: "\e044"; }
.oops-print:before { content: "\e045"; }
.oops-camera:before { content: "\e046"; }
.oops-font:before { content: "\e047"; }
.oops-bold:before { content: "\e048"; }
.oops-italic:before { content: "\e049"; }
.oops-text-height:before { content: "\e050"; }
.oops-text-width:before { content: "\e051"; }
.oops-align-left:before { content: "\e052"; }
.oops-align-center:before { content: "\e053"; }
.oops-align-right:before { content: "\e054"; }
.oops-align-justify:before { content: "\e055"; }
.oops-list:before { content: "\e056"; }
.oops-indent-left:before { content: "\e057"; }
.oops-indent-right:before { content: "\e058"; }
.oops-facetime-video:before { content: "\e059"; }
.oops-picture:before { content: "\e060"; }
.oops-map-marker:before { content: "\e062"; }
.oops-adjust:before { content: "\e063"; }
.oops-tint:before { content: "\e064"; }
.oops-edit:before { content: "\e065"; }
.oops-share:before { content: "\e066"; }
.oops-check:before { content: "\e067"; }
.oops-move:before { content: "\e068"; }
.oops-step-backward:before { content: "\e069"; }
.oops-fast-backward:before { content: "\e070"; }
.oops-backward:before { content: "\e071"; }
.oops-play:before { content: "\e072"; }
.oops-pause:before { content: "\e073"; }
.oops-stop:before { content: "\e074"; }
.oops-forward:before { content: "\e075"; }
.oops-fast-forward:before { content: "\e076"; }
.oops-step-forward:before { content: "\e077"; }
.oops-eject:before { content: "\e078"; }
.oops-chevron-left:before { content: "\e079"; }
.oops-chevron-right:before { content: "\e080"; }
.oops-plus-sign:before { content: "\e081"; }
.oops-minus-sign:before { content: "\e082"; }
.oops-remove-sign:before { content: "\e083"; }
.oops-ok-sign:before { content: "\e084"; }
.oops-question-sign:before { content: "\e085"; }
.oops-info-sign:before { content: "\e086"; }
.oops-screenshot:before { content: "\e087"; }
.oops-remove-circle:before { content: "\e088"; }
.oops-ok-circle:before { content: "\e089"; }
.oops-ban-circle:before { content: "\e090"; }
.oops-arrow-left:before { content: "\e091"; }
.oops-arrow-right:before { content: "\e092"; }
.oops-arrow-up:before { content: "\e093"; }
.oops-arrow-down:before { content: "\e094"; }
.oops-share-alt:before { content: "\e095"; }
.oops-resize-full:before { content: "\e096"; }
.oops-resize-small:before { content: "\e097"; }
.oops-exclamation-sign:before { content: "\e101"; }
.oops-gift:before { content: "\e102"; }
.oops-leaf:before { content: "\e103"; }
.oops-fire:before { content: "\e104"; }
.oops-eye-open:before { content: "\e105"; }
.oops-eye-close:before { content: "\e106"; }
.oops-warning-sign:before { content: "\e107"; }
.oops-plane:before { content: "\e108"; }
.oops-calendar:before { content: "\e109"; }
.oops-random:before { content: "\e110"; }
.oops-comment:before { content: "\e111"; }
.oops-magnet:before { content: "\e112"; }
.oops-chevron-up:before { content: "\e113"; }
.oops-chevron-down:before { content: "\e114"; }
.oops-retweet:before { content: "\e115"; }
.oops-shopping-cart:before { content: "\e116"; }
.oops-folder-close:before { content: "\e117"; }
.oops-folder-open:before { content: "\e118"; }
.oops-resize-vertical:before { content: "\e119"; }
.oops-resize-horizontal:before { content: "\e120"; }
.oops-hdd:before { content: "\e121"; }
.oops-bullhorn:before { content: "\e122"; }
.oops-bell:before { content: "\e123"; }
.oops-certificate:before { content: "\e124"; }
.oops-thumbs-up:before { content: "\e125"; }
.oops-thumbs-down:before { content: "\e126"; }
.oops-hand-right:before { content: "\e127"; }
.oops-hand-left:before { content: "\e128"; }
.oops-hand-up:before { content: "\e129"; }
.oops-hand-down:before { content: "\e130"; }
.oops-circle-arrow-right:before { content: "\e131"; }
.oops-circle-arrow-left:before { content: "\e132"; }
.oops-circle-arrow-up:before { content: "\e133"; }
.oops-circle-arrow-down:before { content: "\e134"; }
.oops-globe:before { content: "\e135"; }
.oops-wrench:before { content: "\e136"; }
.oops-tasks:before { content: "\e137"; }
.oops-filter:before { content: "\e138"; }
.oops-briefcase:before { content: "\e139"; }
.oops-fullscreen:before { content: "\e140"; }
.oops-dashboard:before { content: "\e141"; }
.oops-paperclip:before { content: "\e142"; }
.oops-heart-empty:before { content: "\e143"; }
.oops-link:before { content: "\e144"; }
.oops-phone:before { content: "\e145"; }
.oops-pushpin:before { content: "\e146"; }
.oops-usd:before { content: "\e148"; }
.oops-gbp:before { content: "\e149"; }
.oops-sort:before { content: "\e150"; }
.oops-sort-by-alphabet:before { content: "\e151"; }
.oops-sort-by-alphabet-alt:before { content: "\e152"; }
.oops-sort-by-order:before { content: "\e153"; }
.oops-sort-by-order-alt:before { content: "\e154"; }
.oops-sort-by-attributes:before { content: "\e155"; }
.oops-sort-by-attributes-alt:before { content: "\e156"; }
.oops-unchecked:before { content: "\e157"; }
.oops-expand:before { content: "\e158"; }
.oops-collapse-down:before { content: "\e159"; }
.oops-collapse-up:before { content: "\e160"; }
.oops-log-in:before { content: "\e161"; }
.oops-flash:before { content: "\e162"; }
.oops-log-out:before { content: "\e163"; }
.oops-new-window:before { content: "\e164"; }
.oops-record:before { content: "\e165"; }
.oops-save:before { content: "\e166"; }
.oops-open:before { content: "\e167"; }
.oops-saved:before { content: "\e168"; }
.oops-import:before { content: "\e169"; }
.oops-export:before { content: "\e170"; }
.oops-send:before { content: "\e171"; }
.oops-floppy-disk:before { content: "\e172"; }
.oops-floppy-saved:before { content: "\e173"; }
.oops-floppy-remove:before { content: "\e174"; }
.oops-floppy-save:before { content: "\e175"; }
.oops-floppy-open:before { content: "\e176"; }
.oops-credit-card:before { content: "\e177"; }
.oops-transfer:before { content: "\e178"; }
.oops-cutlery:before { content: "\e179"; }
.oops-header:before { content: "\e180"; }
.oops-compressed:before { content: "\e181"; }
.oops-earphone:before { content: "\e182"; }
.oops-phone-alt:before { content: "\e183"; }
.oops-tower:before { content: "\e184"; }
.oops-stats:before { content: "\e185"; }
.oops-sd-video:before { content: "\e186"; }
.oops-hd-video:before { content: "\e187"; }
.oops-subtitles:before { content: "\e188"; }
.oops-sound-stereo:before { content: "\e189"; }
.oops-sound-dolby:before { content: "\e190"; }
.oops-sound-5-1:before { content: "\e191"; }
.oops-sound-6-1:before { content: "\e192"; }
.oops-sound-7-1:before { content: "\e193"; }
.oops-copyright-mark:before { content: "\e194"; }
.oops-registration-mark:before { content: "\e195"; }
.oops-cloud-download:before { content: "\e197"; }
.oops-cloud-upload:before { content: "\e198"; }
.oops-tree-conifer:before { content: "\e199"; }
.oops-tree-deciduous:before { content: "\e200"; }
.oops-cd:before { content: "\e201"; }
.oops-save-file:before { content: "\e202"; }
.oops-open-file:before { content: "\e203"; }
.oops-level-up:before { content: "\e204"; }
.oops-copy:before { content: "\e205"; }
.oops-paste:before { content: "\e206"; }
.oops-alert:before { content: "\e209"; }
.oops-equalizer:before { content: "\e210"; }
.oops-king:before { content: "\e211"; }
.oops-queen:before { content: "\e212"; }
.oops-pawn:before { content: "\e213"; }
.oops-bishop:before { content: "\e214"; }
.oops-knight:before { content: "\e215"; }
.oops-baby-formula:before { content: "\e216"; }
.oops-tent:before { content: "\26fa"; }
.oops-blackboard:before { content: "\e218"; }
.oops-bed:before { content: "\e219"; }
.oops-apple:before { content: "\f8ff"; }
.oops-erase:before { content: "\e221"; }
.oops-hourglass:before { content: "\231b"; }
.oops-lamp:before { content: "\e223"; }
.oops-duplicate:before { content: "\e224"; }
.oops-piggy-bank:before { content: "\e225"; }
.oops-scissors:before { content: "\e226"; }
.oops-bitcoin:before { content: "\e227"; }
.oops-btc:before { content: "\e227"; }
.oops-xbt:before { content: "\e227"; }
.oops-yen:before { content: "\00a5"; }
.oops-jpy:before { content: "\00a5"; }
.oops-ruble:before { content: "\20bd"; }
.oops-rub:before { content: "\20bd"; }
.oops-scale:before { content: "\e230"; }
.oops-ice-lolly:before { content: "\e231"; }
.oops-ice-lolly-tasted:before { content: "\e232"; }
.oops-education:before { content: "\e233"; }
.oops-option-horizontal:before { content: "\e234"; }
.oops-option-vertical:before { content: "\e235"; }
.oops-menu-hamburger:before { content: "\e236"; }
.oops-modal-window:before { content: "\e237"; }
.oops-oil:before { content: "\e238"; }
.oops-grain:before { content: "\e239"; }
.oops-sunglasses:before { content: "\e240"; }
.oops-text-size:before { content: "\e241"; }
.oops-text-color:before { content: "\e242"; }
.oops-text-background:before { content: "\e243"; }
.oops-object-align-top:before { content: "\e244"; }
.oops-object-align-bottom:before { content: "\e245"; }
.oops-object-align-horizontal:before { content: "\e246"; }
.oops-object-align-left:before { content: "\e247"; }
.oops-object-align-vertical:before { content: "\e248"; }
.oops-object-align-right:before { content: "\e249"; }
.oops-triangle-right:before { content: "\e250"; }
.oops-triangle-left:before { content: "\e251"; }
.oops-triangle-bottom:before { content: "\e252"; }
.oops-triangle-top:before { content: "\e253"; }
.oops-console:before { content: "\e254"; }
.oops-superscript:before { content: "\e255"; }
.oops-subscript:before { content: "\e256"; }
.oops-menu-left:before { content: "\e257"; }
.oops-menu-right:before { content: "\e258"; }
.oops-menu-down:before { content: "\e259"; }
.oops-menu-up:before { content: "\e260"; } | src/oops.glyphicons-bootstrap.css | @font-face {
font-family :'OOPS-GLYPHICONS';
src:url('../font/bootstrap3-glyphicons.ttf') format('truetype');
}
[class^="oops-"] {
font-family : 'OOPS-GLYPHICONS';
position : relative;
top : 1px;
display : inline-block;
font-style : normal;
font-weight : normal;
line-height : 1;
-webkit-font-smoothing : antialiased;
-moz-osx-font-smoothing : grayscale;
}
.oops-asterisk:before { content: "\002a"; }
.oops-plus:before { content: "\002b"; }
.oops-euro:before, .oops-eur:before { content: "\20ac"; }
.oops-minus:before { content: "\2212"; }
.oops-cloud:before { content: "\2601"; }
.oops-envelope:before { content: "\2709"; }
.oops-pencil:before { content: "\270f"; }
.oops-glass:before { content: "\e001"; }
.oops-music:before { content: "\e002"; }
.oops-search:before { content: "\e003"; }
.oops-heart:before { content: "\e005"; }
.oops-star:before { content: "\e006"; }
.oops-star-empty:before { content: "\e007"; }
.oops-user:before { content: "\e008"; }
.oops-film:before { content: "\e009"; }
.oops-th-large:before { content: "\e010"; }
.oops-th:before { content: "\e011"; }
.oops-th-list:before { content: "\e012"; }
.oops-ok:before { content: "\e013"; }
.oops-remove:before { content: "\e014"; }
.oops-zoom-in:before { content: "\e015"; }
.oops-zoom-out:before { content: "\e016"; }
.oops-off:before { content: "\e017"; }
.oops-signal:before { content: "\e018"; }
.oops-cog:before { content: "\e019"; }
.oops-trash:before { content: "\e020"; }
.oops-home:before { content: "\e021"; }
.oops-file:before { content: "\e022"; }
.oops-time:before { content: "\e023"; }
.oops-road:before { content: "\e024"; }
.oops-download-alt:before { content: "\e025"; }
.oops-download:before { content: "\e026"; }
.oops-upload:before { content: "\e027"; }
.oops-inbox:before { content: "\e028"; }
.oops-play-circle:before { content: "\e029"; }
.oops-repeat:before { content: "\e030"; }
.oops-refresh:before { content: "\e031"; }
.oops-list-alt:before { content: "\e032"; }
.oops-lock:before { content: "\e033"; }
.oops-flag:before { content: "\e034"; }
.oops-headphones:before { content: "\e035"; }
.oops-volume-off:before { content: "\e036"; }
.oops-volume-down:before { content: "\e037"; }
.oops-volume-up:before { content: "\e038"; }
.oops-qrcode:before { content: "\e039"; }
.oops-barcode:before { content: "\e040"; }
.oops-tag:before { content: "\e041"; }
.oops-tags:before { content: "\e042"; }
.oops-book:before { content: "\e043"; }
.oops-bookmark:before { content: "\e044"; }
.oops-print:before { content: "\e045"; }
.oops-camera:before { content: "\e046"; }
.oops-font:before { content: "\e047"; }
.oops-bold:before { content: "\e048"; }
.oops-italic:before { content: "\e049"; }
.oops-text-height:before { content: "\e050"; }
.oops-text-width:before { content: "\e051"; }
.oops-align-left:before { content: "\e052"; }
.oops-align-center:before { content: "\e053"; }
.oops-align-right:before { content: "\e054"; }
.oops-align-justify:before { content: "\e055"; }
.oops-list:before { content: "\e056"; }
.oops-indent-left:before { content: "\e057"; }
.oops-indent-right:before { content: "\e058"; }
.oops-facetime-video:before { content: "\e059"; }
.oops-picture:before { content: "\e060"; }
.oops-map-marker:before { content: "\e062"; }
.oops-adjust:before { content: "\e063"; }
.oops-tint:before { content: "\e064"; }
.oops-edit:before { content: "\e065"; }
.oops-share:before { content: "\e066"; }
.oops-check:before { content: "\e067"; }
.oops-move:before { content: "\e068"; }
.oops-step-backward:before { content: "\e069"; }
.oops-fast-backward:before { content: "\e070"; }
.oops-backward:before { content: "\e071"; }
.oops-play:before { content: "\e072"; }
.oops-pause:before { content: "\e073"; }
.oops-stop:before { content: "\e074"; }
.oops-forward:before { content: "\e075"; }
.oops-fast-forward:before { content: "\e076"; }
.oops-step-forward:before { content: "\e077"; }
.oops-eject:before { content: "\e078"; }
.oops-chevron-left:before { content: "\e079"; }
.oops-chevron-right:before { content: "\e080"; }
.oops-plus-sign:before { content: "\e081"; }
.oops-minus-sign:before { content: "\e082"; }
.oops-remove-sign:before { content: "\e083"; }
.oops-ok-sign:before { content: "\e084"; }
.oops-question-sign:before { content: "\e085"; }
.oops-info-sign:before { content: "\e086"; }
.oops-screenshot:before { content: "\e087"; }
.oops-remove-circle:before { content: "\e088"; }
.oops-ok-circle:before { content: "\e089"; }
.oops-ban-circle:before { content: "\e090"; }
.oops-arrow-left:before { content: "\e091"; }
.oops-arrow-right:before { content: "\e092"; }
.oops-arrow-up:before { content: "\e093"; }
.oops-arrow-down:before { content: "\e094"; }
.oops-share-alt:before { content: "\e095"; }
.oops-resize-full:before { content: "\e096"; }
.oops-resize-small:before { content: "\e097"; }
.oops-exclamation-sign:before { content: "\e101"; }
.oops-gift:before { content: "\e102"; }
.oops-leaf:before { content: "\e103"; }
.oops-fire:before { content: "\e104"; }
.oops-eye-open:before { content: "\e105"; }
.oops-eye-close:before { content: "\e106"; }
.oops-warning-sign:before { content: "\e107"; }
.oops-plane:before { content: "\e108"; }
.oops-calendar:before { content: "\e109"; }
.oops-random:before { content: "\e110"; }
.oops-comment:before { content: "\e111"; }
.oops-magnet:before { content: "\e112"; }
.oops-chevron-up:before { content: "\e113"; }
.oops-chevron-down:before { content: "\e114"; }
.oops-retweet:before { content: "\e115"; }
.oops-shopping-cart:before { content: "\e116"; }
.oops-folder-close:before { content: "\e117"; }
.oops-folder-open:before { content: "\e118"; }
.oops-resize-vertical:before { content: "\e119"; }
.oops-resize-horizontal:before { content: "\e120"; }
.oops-hdd:before { content: "\e121"; }
.oops-bullhorn:before { content: "\e122"; }
.oops-bell:before { content: "\e123"; }
.oops-certificate:before { content: "\e124"; }
.oops-thumbs-up:before { content: "\e125"; }
.oops-thumbs-down:before { content: "\e126"; }
.oops-hand-right:before { content: "\e127"; }
.oops-hand-left:before { content: "\e128"; }
.oops-hand-up:before { content: "\e129"; }
.oops-hand-down:before { content: "\e130"; }
.oops-circle-arrow-right:before { content: "\e131"; }
.oops-circle-arrow-left:before { content: "\e132"; }
.oops-circle-arrow-up:before { content: "\e133"; }
.oops-circle-arrow-down:before { content: "\e134"; }
.oops-globe:before { content: "\e135"; }
.oops-wrench:before { content: "\e136"; }
.oops-tasks:before { content: "\e137"; }
.oops-filter:before { content: "\e138"; }
.oops-briefcase:before { content: "\e139"; }
.oops-fullscreen:before { content: "\e140"; }
.oops-dashboard:before { content: "\e141"; }
.oops-paperclip:before { content: "\e142"; }
.oops-heart-empty:before { content: "\e143"; }
.oops-link:before { content: "\e144"; }
.oops-phone:before { content: "\e145"; }
.oops-pushpin:before { content: "\e146"; }
.oops-usd:before { content: "\e148"; }
.oops-gbp:before { content: "\e149"; }
.oops-sort:before { content: "\e150"; }
.oops-sort-by-alphabet:before { content: "\e151"; }
.oops-sort-by-alphabet-alt:before { content: "\e152"; }
.oops-sort-by-order:before { content: "\e153"; }
.oops-sort-by-order-alt:before { content: "\e154"; }
.oops-sort-by-attributes:before { content: "\e155"; }
.oops-sort-by-attributes-alt:before { content: "\e156"; }
.oops-unchecked:before { content: "\e157"; }
.oops-expand:before { content: "\e158"; }
.oops-collapse-down:before { content: "\e159"; }
.oops-collapse-up:before { content: "\e160"; }
.oops-log-in:before { content: "\e161"; }
.oops-flash:before { content: "\e162"; }
.oops-log-out:before { content: "\e163"; }
.oops-new-window:before { content: "\e164"; }
.oops-record:before { content: "\e165"; }
.oops-save:before { content: "\e166"; }
.oops-open:before { content: "\e167"; }
.oops-saved:before { content: "\e168"; }
.oops-import:before { content: "\e169"; }
.oops-export:before { content: "\e170"; }
.oops-send:before { content: "\e171"; }
.oops-floppy-disk:before { content: "\e172"; }
.oops-floppy-saved:before { content: "\e173"; }
.oops-floppy-remove:before { content: "\e174"; }
.oops-floppy-save:before { content: "\e175"; }
.oops-floppy-open:before { content: "\e176"; }
.oops-credit-card:before { content: "\e177"; }
.oops-transfer:before { content: "\e178"; }
.oops-cutlery:before { content: "\e179"; }
.oops-header:before { content: "\e180"; }
.oops-compressed:before { content: "\e181"; }
.oops-earphone:before { content: "\e182"; }
.oops-phone-alt:before { content: "\e183"; }
.oops-tower:before { content: "\e184"; }
.oops-stats:before { content: "\e185"; }
.oops-sd-video:before { content: "\e186"; }
.oops-hd-video:before { content: "\e187"; }
.oops-subtitles:before { content: "\e188"; }
.oops-sound-stereo:before { content: "\e189"; }
.oops-sound-dolby:before { content: "\e190"; }
.oops-sound-5-1:before { content: "\e191"; }
.oops-sound-6-1:before { content: "\e192"; }
.oops-sound-7-1:before { content: "\e193"; }
.oops-copyright-mark:before { content: "\e194"; }
.oops-registration-mark:before { content: "\e195"; }
.oops-cloud-download:before { content: "\e197"; }
.oops-cloud-upload:before { content: "\e198"; }
.oops-tree-conifer:before { content: "\e199"; }
.oops-tree-deciduous:before { content: "\e200"; }
.oops-cd:before { content: "\e201"; }
.oops-save-file:before { content: "\e202"; }
.oops-open-file:before { content: "\e203"; }
.oops-level-up:before { content: "\e204"; }
.oops-copy:before { content: "\e205"; }
.oops-paste:before { content: "\e206"; }
.oops-alert:before { content: "\e209"; }
.oops-equalizer:before { content: "\e210"; }
.oops-king:before { content: "\e211"; }
.oops-queen:before { content: "\e212"; }
.oops-pawn:before { content: "\e213"; }
.oops-bishop:before { content: "\e214"; }
.oops-knight:before { content: "\e215"; }
.oops-baby-formula:before { content: "\e216"; }
.oops-tent:before { content: "\26fa"; }
.oops-blackboard:before { content: "\e218"; }
.oops-bed:before { content: "\e219"; }
.oops-apple:before { content: "\f8ff"; }
.oops-erase:before { content: "\e221"; }
.oops-hourglass:before { content: "\231b"; }
.oops-lamp:before { content: "\e223"; }
.oops-duplicate:before { content: "\e224"; }
.oops-piggy-bank:before { content: "\e225"; }
.oops-scissors:before { content: "\e226"; }
.oops-bitcoin:before { content: "\e227"; }
.oops-btc:before { content: "\e227"; }
.oops-xbt:before { content: "\e227"; }
.oops-yen:before { content: "\00a5"; }
.oops-jpy:before { content: "\00a5"; }
.oops-ruble:before { content: "\20bd"; }
.oops-rub:before { content: "\20bd"; }
.oops-scale:before { content: "\e230"; }
.oops-ice-lolly:before { content: "\e231"; }
.oops-ice-lolly-tasted:before { content: "\e232"; }
.oops-education:before { content: "\e233"; }
.oops-option-horizontal:before { content: "\e234"; }
.oops-option-vertical:before { content: "\e235"; }
.oops-menu-hamburger:before { content: "\e236"; }
.oops-modal-window:before { content: "\e237"; }
.oops-oil:before { content: "\e238"; }
.oops-grain:before { content: "\e239"; }
.oops-sunglasses:before { content: "\e240"; }
.oops-text-size:before { content: "\e241"; }
.oops-text-color:before { content: "\e242"; }
.oops-text-background:before { content: "\e243"; }
.oops-object-align-top:before { content: "\e244"; }
.oops-object-align-bottom:before { content: "\e245"; }
.oops-object-align-horizontal:before { content: "\e246"; }
.oops-object-align-left:before { content: "\e247"; }
.oops-object-align-vertical:before { content: "\e248"; }
.oops-object-align-right:before { content: "\e249"; }
.oops-triangle-right:before { content: "\e250"; }
.oops-triangle-left:before { content: "\e251"; }
.oops-triangle-bottom:before { content: "\e252"; }
.oops-triangle-top:before { content: "\e253"; }
.oops-console:before { content: "\e254"; }
.oops-superscript:before { content: "\e255"; }
.oops-subscript:before { content: "\e256"; }
.oops-menu-left:before { content: "\e257"; }
.oops-menu-right:before { content: "\e258"; }
.oops-menu-down:before { content: "\e259"; }
.oops-menu-up:before { content: "\e260"; } | 0.284477 | 0.095771 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
/* -----------------------------------------------------------------
- General Styles
----------------------------------------------------------------- */
body {
direction: rtl;
text-align: right;
}
.bg-triangles {
background-position: right top, left bottom;
}
/* -----------------------------------------------------------------
- Typography
----------------------------------------------------------------- */
.title-icon {
margin-left: 0.5rem;
margin-right: 0;
}
.title__separate::before, .title__separate::after {
left: auto;
right: 0;
}
@media only screen and (max-width: 991px) {
.block-quote {
padding-left: 0;
padding-right: 3.75rem;
}
}
@media only screen and (max-width: 580px) {
.block-quote {
padding-right: 0;
}
}
.block-quote::before {
left: auto;
right: -3.375rem;
}
@media only screen and (max-width: 991px) {
.block-quote::before {
left: auto;
right: 0;
}
}
@media only screen and (max-width: 580px) {
.block-quote::before {
left: 0;
right: auto;
}
}
.block-quote__author {
padding-left: 0;
padding-right: 3rem;
}
@media only screen and (max-width: 580px) {
.block-quote__author {
padding-left: 0;
padding-right: 2rem;
}
}
.block-quote__author::before {
left: auto;
right: 0;
}
/* -----------------------------------------------------------------
- Form
----------------------------------------------------------------- */
.form-control {
text-align: right;
}
.form-control__icon {
padding-left: 0;
padding-left: 3.375rem;
}
@media only screen and (max-width: 580px) {
.form-control__icon {
padding-left: 0;
padding-left: 2.8125rem;
}
}
.form-group .font-icon {
left: auto;
right: 2.375rem;
}
@media only screen and (max-width: 580px) {
.form-group .font-icon {
left: auto;
right: 2.125rem;
}
}
.help-block {
padding-left: 0;
padding-right: 0.375rem;
}
.custom-control-label {
padding-left: 0;
padding-right: 0.5rem;
}
.btn .font-icon {
margin-left: 0.375rem;
margin-right: 0;
}
.dropdown-menu::before {
left: auto;
right: 1.125rem;
}
/* -----------------------------------------------------------------
- Preloader
----------------------------------------------------------------- */
.preloader__progress {
left: auto;
right: 0 span;
right-left: auto;
right-right: 0;
}
/* -----------------------------------------------------------------
- Header
----------------------------------------------------------------- */
.header__left {
padding-left: 1.875rem;
padding-right: 0;
}
.header__left::before {
left: 0;
right: auto;
}
@media only screen and (max-width: 991px) {
.header__left {
padding-left: 0;
}
.header__left::before {
left: 0;
right: auto;
}
}
.header__right {
padding-left: 0;
padding-right: 1.875rem;
}
@media only screen and (max-width: 991px) {
.header__right {
padding-right: 0;
}
}
.header__base-info {
margin-left: 0;
margin-right: 1.5rem;
}
@media only screen and (max-width: 991px) {
.header__base-info {
margin-right: 0;
}
}
.header__social li {
margin-left: 1rem;
margin-right: 0;
}
.header__social li:last-child {
margin-left: 0;
}
/* -----------------------------------------------------------------
- Sections
----------------------------------------------------------------- */
.social__link {
margin-left: 0;
margin-right: 0.8125rem;
}
.social__link:first-child {
margin-right: 0;
}
/* -----------------------------------------------------------------
- Portfolio
----------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
.filter__item {
padding-left: 1rem;
padding-right: 0;
}
.filter__item::before {
left: 6px;
right: auto;
}
.filter__item:last-child {
padding-left: 0;
}
}
@media only screen and (max-width: 768px) {
.select {
text-align: right;
}
.select .placeholder:after {
left: 2px;
right: auto;
}
.select ul {
left: auto;
right: 0;
}
.select ul li {
text-align: right;
}
}
/* -----------------------------------------------------------------
- News
----------------------------------------------------------------- */
.news-item__date {
border-radius: 0 20px 0 20px;
}
/* -----------------------------------------------------------------
- Single post
----------------------------------------------------------------- */
.footer-post__share .font-icon {
margin-left: 0.6875rem;
margin-right: 0;
}
.comment-box .comment-box {
margin-left: 0;
margin-right: 3rem;
}
@media only screen and (max-width: 580px) {
.comment-box .comment-box {
margin-left: 0;
margin-right: 1.25rem;
}
}
.comment-box__inner {
padding-left: 1.25rem;
padding-right: 1.375rem;
}
@media only screen and (max-width: 580px) {
.comment-box__inner {
padding-left: 1rem;
padding-right: 1.125rem;
}
}
.comment-box .avatar {
margin-left: 1rem;
margin-right: 0;
}
.comment-box__footer li {
margin-left: 2rem;
margin-right: 0;
}
@media only screen and (max-width: 580px) {
.comment-box__footer li {
margin-left: 1rem;
margin-right: 0;
}
}
.comment-box__footer li:last-child {
margin-left: 0;
}
.comment-box__footer span {
padding-left: 0;
padding-right: 0.375rem;
}
.comment-form .textarea {
padding-left: 4.5rem;
padding-right: 2.875rem;
}
@media only screen and (max-width: 580px) {
.comment-form .textarea {
padding-left: 3.25rem;
padding-right: 2.5rem;
}
}
.comment-form .btn {
margin-left: 0.5rem;
margin-right: 0;
left: 0;
right: auto;
}
.comment-form .dropdown {
margin-left: 0;
margin-right: 1rem;
}
.comment-form .dropdown-menu {
margin-left: 0;
margin-right: -1rem;
}
.social-auth__item {
margin-left: 0.375rem;
margin-right: 0;
}
/* -----------------------------------------------------------------
- Testimonials
----------------------------------------------------------------- */
.review-item {
background-position: left 1.875rem top 1.875rem;
}
.review-item__textbox {
margin-left: 0;
margin-right: 1rem;
}
@media only screen and (max-width: 580px) {
.review-item__textbox {
margin-right: 0;
}
}
/* -----------------------------------------------------------------
- Timeline
----------------------------------------------------------------- */
.timeline {
padding-left: 0;
padding-right: .5rem;
}
.timeline__item {
border-left: 0;
border-right: 1px solid #EBF0F2;
padding-left: 0;
padding-right: 1.4rem;
}
.timeline__item::before {
left: auto;
right: -5px;
}
/* -----------------------------------------------------------------
- Timeline
----------------------------------------------------------------- */
.timeline {
padding-left: 0;
padding-right: 0.5rem;
}
.timeline__item {
border-left-width: 0;
border-right-width: 1px;
padding-left: 0;
padding-right: 1.375rem;
}
.timeline__item::before {
left: 0;
right: -0.3125rem;
}
/* Progress */
.progress {
text-align: left;
}
.progress .progress-text {
left: auto;
right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.progress-text span:nth-child(2) {
float: left;
}
}
/* -----------------------------------------------------------------
- Other
----------------------------------------------------------------- */
.back-to-top {
left: 40px;
right: 0;
}
@media only screen and (max-width: 580px) {
.back-to-top {
display: none !important;
}
} | static/styles/style-rtl.css | @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
/* -----------------------------------------------------------------
- General Styles
----------------------------------------------------------------- */
body {
direction: rtl;
text-align: right;
}
.bg-triangles {
background-position: right top, left bottom;
}
/* -----------------------------------------------------------------
- Typography
----------------------------------------------------------------- */
.title-icon {
margin-left: 0.5rem;
margin-right: 0;
}
.title__separate::before, .title__separate::after {
left: auto;
right: 0;
}
@media only screen and (max-width: 991px) {
.block-quote {
padding-left: 0;
padding-right: 3.75rem;
}
}
@media only screen and (max-width: 580px) {
.block-quote {
padding-right: 0;
}
}
.block-quote::before {
left: auto;
right: -3.375rem;
}
@media only screen and (max-width: 991px) {
.block-quote::before {
left: auto;
right: 0;
}
}
@media only screen and (max-width: 580px) {
.block-quote::before {
left: 0;
right: auto;
}
}
.block-quote__author {
padding-left: 0;
padding-right: 3rem;
}
@media only screen and (max-width: 580px) {
.block-quote__author {
padding-left: 0;
padding-right: 2rem;
}
}
.block-quote__author::before {
left: auto;
right: 0;
}
/* -----------------------------------------------------------------
- Form
----------------------------------------------------------------- */
.form-control {
text-align: right;
}
.form-control__icon {
padding-left: 0;
padding-left: 3.375rem;
}
@media only screen and (max-width: 580px) {
.form-control__icon {
padding-left: 0;
padding-left: 2.8125rem;
}
}
.form-group .font-icon {
left: auto;
right: 2.375rem;
}
@media only screen and (max-width: 580px) {
.form-group .font-icon {
left: auto;
right: 2.125rem;
}
}
.help-block {
padding-left: 0;
padding-right: 0.375rem;
}
.custom-control-label {
padding-left: 0;
padding-right: 0.5rem;
}
.btn .font-icon {
margin-left: 0.375rem;
margin-right: 0;
}
.dropdown-menu::before {
left: auto;
right: 1.125rem;
}
/* -----------------------------------------------------------------
- Preloader
----------------------------------------------------------------- */
.preloader__progress {
left: auto;
right: 0 span;
right-left: auto;
right-right: 0;
}
/* -----------------------------------------------------------------
- Header
----------------------------------------------------------------- */
.header__left {
padding-left: 1.875rem;
padding-right: 0;
}
.header__left::before {
left: 0;
right: auto;
}
@media only screen and (max-width: 991px) {
.header__left {
padding-left: 0;
}
.header__left::before {
left: 0;
right: auto;
}
}
.header__right {
padding-left: 0;
padding-right: 1.875rem;
}
@media only screen and (max-width: 991px) {
.header__right {
padding-right: 0;
}
}
.header__base-info {
margin-left: 0;
margin-right: 1.5rem;
}
@media only screen and (max-width: 991px) {
.header__base-info {
margin-right: 0;
}
}
.header__social li {
margin-left: 1rem;
margin-right: 0;
}
.header__social li:last-child {
margin-left: 0;
}
/* -----------------------------------------------------------------
- Sections
----------------------------------------------------------------- */
.social__link {
margin-left: 0;
margin-right: 0.8125rem;
}
.social__link:first-child {
margin-right: 0;
}
/* -----------------------------------------------------------------
- Portfolio
----------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
.filter__item {
padding-left: 1rem;
padding-right: 0;
}
.filter__item::before {
left: 6px;
right: auto;
}
.filter__item:last-child {
padding-left: 0;
}
}
@media only screen and (max-width: 768px) {
.select {
text-align: right;
}
.select .placeholder:after {
left: 2px;
right: auto;
}
.select ul {
left: auto;
right: 0;
}
.select ul li {
text-align: right;
}
}
/* -----------------------------------------------------------------
- News
----------------------------------------------------------------- */
.news-item__date {
border-radius: 0 20px 0 20px;
}
/* -----------------------------------------------------------------
- Single post
----------------------------------------------------------------- */
.footer-post__share .font-icon {
margin-left: 0.6875rem;
margin-right: 0;
}
.comment-box .comment-box {
margin-left: 0;
margin-right: 3rem;
}
@media only screen and (max-width: 580px) {
.comment-box .comment-box {
margin-left: 0;
margin-right: 1.25rem;
}
}
.comment-box__inner {
padding-left: 1.25rem;
padding-right: 1.375rem;
}
@media only screen and (max-width: 580px) {
.comment-box__inner {
padding-left: 1rem;
padding-right: 1.125rem;
}
}
.comment-box .avatar {
margin-left: 1rem;
margin-right: 0;
}
.comment-box__footer li {
margin-left: 2rem;
margin-right: 0;
}
@media only screen and (max-width: 580px) {
.comment-box__footer li {
margin-left: 1rem;
margin-right: 0;
}
}
.comment-box__footer li:last-child {
margin-left: 0;
}
.comment-box__footer span {
padding-left: 0;
padding-right: 0.375rem;
}
.comment-form .textarea {
padding-left: 4.5rem;
padding-right: 2.875rem;
}
@media only screen and (max-width: 580px) {
.comment-form .textarea {
padding-left: 3.25rem;
padding-right: 2.5rem;
}
}
.comment-form .btn {
margin-left: 0.5rem;
margin-right: 0;
left: 0;
right: auto;
}
.comment-form .dropdown {
margin-left: 0;
margin-right: 1rem;
}
.comment-form .dropdown-menu {
margin-left: 0;
margin-right: -1rem;
}
.social-auth__item {
margin-left: 0.375rem;
margin-right: 0;
}
/* -----------------------------------------------------------------
- Testimonials
----------------------------------------------------------------- */
.review-item {
background-position: left 1.875rem top 1.875rem;
}
.review-item__textbox {
margin-left: 0;
margin-right: 1rem;
}
@media only screen and (max-width: 580px) {
.review-item__textbox {
margin-right: 0;
}
}
/* -----------------------------------------------------------------
- Timeline
----------------------------------------------------------------- */
.timeline {
padding-left: 0;
padding-right: .5rem;
}
.timeline__item {
border-left: 0;
border-right: 1px solid #EBF0F2;
padding-left: 0;
padding-right: 1.4rem;
}
.timeline__item::before {
left: auto;
right: -5px;
}
/* -----------------------------------------------------------------
- Timeline
----------------------------------------------------------------- */
.timeline {
padding-left: 0;
padding-right: 0.5rem;
}
.timeline__item {
border-left-width: 0;
border-right-width: 1px;
padding-left: 0;
padding-right: 1.375rem;
}
.timeline__item::before {
left: 0;
right: -0.3125rem;
}
/* Progress */
.progress {
text-align: left;
}
.progress .progress-text {
left: auto;
right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.progress-text span:nth-child(2) {
float: left;
}
}
/* -----------------------------------------------------------------
- Other
----------------------------------------------------------------- */
.back-to-top {
left: 40px;
right: 0;
}
@media only screen and (max-width: 580px) {
.back-to-top {
display: none !important;
}
} | 0.431824 | 0.078607 |
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
height: 100vh;
width: 100vw;
background-image: url("../back/background.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: top;
justify-content: center;
align-items: center;
}
.taskbar {
display: flex;
justify-content: center;
position: fixed;
bottom: 0;
left: 10px;
width: 15%;
background: rgba(255, 255, 255, 0.281);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border-radius: 10px 10px 0px 0px;
height: 40px;
}
#sub_sub_title {
position: fixed;
color: #fff;
padding: 10px;
text-align: center;
font-weight: 400;
text-shadow: 0 1px 0 rgba(167, 109, 109, 0.2);
font-size: 2.8em;
margin-top: 0em;
margin-right: 5%;
margin-bottom: 2%;
font-size: 1.1em;
width: 100%;
font-family: "Comfortaa", cursive;
}
.container {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
background: #fff;
padding: 20px 30px;
width: 420px;
border-radius: 5px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.container header {
font-size: 24px;
font-weight: 600;
line-height: 33px;
}
.container #sub {
font-size: 19px;
/* font-weight: 400;
line-height: 33px; */
}
.container form {
margin: 20px 5px 10px 5px;
position: relative;
}
.container form .field {
height: 45px;
width: 100%;
display: flex;
position: relative;
}
form .field input {
width: 100%;
height: 100%;
border: 1px solid lightgrey;
padding-left: 15px;
outline: none;
border-radius: 5px;
font-size: 17px;
transition: all 0.3s;
}
form .field input:focus {
border-color: #27ae60;
box-shadow: inset 0 0 3px #2fd072;
}
form .field .showBtn {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 15px;
font-weight: 600;
cursor: pointer;
display: none;
user-select: none;
}
form .indicator {
height: 10px;
margin-top: 30px;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: space-between;
display: none;
}
form .indicator span {
position: relative;
height: 100%;
width: 100%;
background: lightgrey;
border-radius: 5px;
}
form .indicator span:nth-child(2) {
margin: 0 3px;
}
form .indicator span.active:before {
position: absolute;
content: "";
top: 0;
left: 0;
height: 100%;
width: 100%;
border-radius: 5px;
}
.indicator span.weak:before {
background-color: #ff4757;
}
.indicator span.medium:before {
background-color: orange;
}
.indicator span.strong:before {
background-color: #23ad5c;
}
.report {
display: flex;
text-align: center;
justify-content: center;
align-self: center;
}
.report .text {
display: flex;
justify-content: center;
font-size: 20px;
font-weight: 500;
display: none;
margin-bottom: -10px;
}
.report .text.weak {
color: #ff4757;
}
.report .text.medium {
color: orange;
}
.report .text.strong {
color: #23ad5c;
}
.info {
padding-top: 30px;
font-size: 12px;
}
.fa {
color: #ff4757;
} | Style/password_checker.css | @import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
height: 100vh;
width: 100vw;
background-image: url("../back/background.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: top;
justify-content: center;
align-items: center;
}
.taskbar {
display: flex;
justify-content: center;
position: fixed;
bottom: 0;
left: 10px;
width: 15%;
background: rgba(255, 255, 255, 0.281);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border-radius: 10px 10px 0px 0px;
height: 40px;
}
#sub_sub_title {
position: fixed;
color: #fff;
padding: 10px;
text-align: center;
font-weight: 400;
text-shadow: 0 1px 0 rgba(167, 109, 109, 0.2);
font-size: 2.8em;
margin-top: 0em;
margin-right: 5%;
margin-bottom: 2%;
font-size: 1.1em;
width: 100%;
font-family: "Comfortaa", cursive;
}
.container {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
background: #fff;
padding: 20px 30px;
width: 420px;
border-radius: 5px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.container header {
font-size: 24px;
font-weight: 600;
line-height: 33px;
}
.container #sub {
font-size: 19px;
/* font-weight: 400;
line-height: 33px; */
}
.container form {
margin: 20px 5px 10px 5px;
position: relative;
}
.container form .field {
height: 45px;
width: 100%;
display: flex;
position: relative;
}
form .field input {
width: 100%;
height: 100%;
border: 1px solid lightgrey;
padding-left: 15px;
outline: none;
border-radius: 5px;
font-size: 17px;
transition: all 0.3s;
}
form .field input:focus {
border-color: #27ae60;
box-shadow: inset 0 0 3px #2fd072;
}
form .field .showBtn {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 15px;
font-weight: 600;
cursor: pointer;
display: none;
user-select: none;
}
form .indicator {
height: 10px;
margin-top: 30px;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: space-between;
display: none;
}
form .indicator span {
position: relative;
height: 100%;
width: 100%;
background: lightgrey;
border-radius: 5px;
}
form .indicator span:nth-child(2) {
margin: 0 3px;
}
form .indicator span.active:before {
position: absolute;
content: "";
top: 0;
left: 0;
height: 100%;
width: 100%;
border-radius: 5px;
}
.indicator span.weak:before {
background-color: #ff4757;
}
.indicator span.medium:before {
background-color: orange;
}
.indicator span.strong:before {
background-color: #23ad5c;
}
.report {
display: flex;
text-align: center;
justify-content: center;
align-self: center;
}
.report .text {
display: flex;
justify-content: center;
font-size: 20px;
font-weight: 500;
display: none;
margin-bottom: -10px;
}
.report .text.weak {
color: #ff4757;
}
.report .text.medium {
color: orange;
}
.report .text.strong {
color: #23ad5c;
}
.info {
padding-top: 30px;
font-size: 12px;
}
.fa {
color: #ff4757;
} | 0.355663 | 0.080285 |
body > header > h1 {font-size:250%; font-weight:normal; font-style: normal; color:navy;}
body > header > h2 {font-size:146%; font-weight:normal; font-style: normal; color:midnightblue;}
body > header > h3 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
body > header > h4 {font-size:108%; font-weight:normal; font-style: normal; color: darkslateblue;}
body > header > h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
body > header > h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h1 {font-size:146%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
main > section h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
main > section h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h1 {font-size:196%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
aside > header > h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
aside > header > h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h1 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
article h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
article h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;} | css/prj/header.css | body > header > h1 {font-size:250%; font-weight:normal; font-style: normal; color:navy;}
body > header > h2 {font-size:146%; font-weight:normal; font-style: normal; color:midnightblue;}
body > header > h3 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
body > header > h4 {font-size:108%; font-weight:normal; font-style: normal; color: darkslateblue;}
body > header > h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
body > header > h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h1 {font-size:146%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
main > section h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
main > section h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
main > section h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h1 {font-size:196%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
aside > header > h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
aside > header > h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
aside > header > h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h1 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h2 {font-size:122%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h3 {font-size:108%; font-weight:normal; font-style: normal; color:darkslateblue;}
article h4 {font-size:100%; font-weight:normal; font-style: normal; color: darkslateblue;}
article h5 {font-size:100%; font-weight:bold; font-style: normal; color:darkslateblue;}
article h6 {font-size:100%; font-weight:normal; font-style: normal; color:darkslateblue;} | 0.550607 | 0.213931 |
meta.foundation-mq-small {
font-family: "/only screen and (max-width: 40em)/";
width: 0em;
}
meta.foundation-mq-medium {
font-family: "/only screen and (min-width:40.063em)/";
width: 40.063em;
}
meta.foundation-mq-large {
font-family: "/only screen and (min-width:64.063em)/";
width: 64.063em;
}
meta.foundation-mq-xlarge {
font-family: "/only screen and (min-width:90.063em)/";
width: 90.063em;
}
meta.foundation-mq-xxlarge {
font-family: "/only screen and (min-width:120.063em)/";
width: 120.063em;
}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
font-size: 100%;
}
body {
background: #f7f7f7;
color: #444444;
padding: 0;
margin: 0;
font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
font-weight: normal;
font-style: normal;
line-height: 1;
position: relative;
cursor: default;
}
a:hover {
cursor: pointer;
}
img,
object,
embed {
max-width: 100%;
height: auto;
}
object,
embed {
height: 100%;
}
img {
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
max-width: none !important;
}
.left {
float: left !important;
}
.right {
float: right !important;
}
.clearfix {
*zoom: 1;
}
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-justify {
text-align: justify !important;
}
.hide {
display: none;
}
.start {
float: left !important;
}
.end {
float: right !important;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
display: inline-block;
vertical-align: middle;
}
textarea {
height: auto;
min-height: 50px;
}
select {
width: 100%;
}
ul.pagination {
display: block;
height: 1.5rem;
margin-left: -0.3125rem;
}
ul.pagination li {
height: 1.5rem;
color: #222222;
font-size: 0.875rem;
margin-left: 0.3125rem;
}
ul.pagination li a {
display: block;
padding: 0.0625rem 0.625rem 0.0625rem;
color: #999999;
-webkit-border-radius: 3px;
border-radius: 3px;
}
ul.pagination li:hover a,
ul.pagination li a:focus {
background: #e6e6e6;
}
ul.pagination li.unavailable a {
cursor: default;
color: #999999;
}
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus {
background: transparent;
}
ul.pagination li.current a {
background: #008cba;
color: white;
font-weight: bold;
cursor: default;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus {
background: #008cba;
}
ul.pagination li {
float: left;
display: block;
}
/* Pagination centred wrapper */
.pagination-centered {
text-align: center;
}
.pagination-centered ul.pagination li {
float: none;
display: inline-block;
}
/* Start to customize Reverie */
a, a:visited, a:hover, a:visited:hover {
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
figure {
margin: 0 auto 1.25rem;
}
figure img {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
img.alignright {
float: right;
margin: 0 0 18px 18px;
}
img.alignleft {
float: left;
margin: 0 18px 18px 0;
}
img.aligncenter {
display: block;
margin: 18px auto;
}
.gallery dt, .gallery dl {
display: inline-block;
}
.gallery dl {
margin-left: 0.5625rem;
margin-right: 0.5625rem;
}
figure.figure {
margin: 0 auto;
display: table;
}
figure.figure figcaption {
font-size: 0.875rem;
line-height: 1.4;
font-style: italic;
padding: 8px 10px;
color: #999;
margin-bottom: 1.25rem;
display: table-caption;
caption-side: bottom;
}
figure.alignright.figure {
float: right;
margin: 0 0 18px 18px;
}
figure.alignleft.figure {
float: left;
margin: 0 18px 18px 0;
}
.footer-widget {
background-color: #eee;
}
body > header.contain-to-grid {
margin-bottom: 0;
max-width: 100%;
padding-bottom: 0;
}
body > header.contain-to-grid h1 {
padding-left: 3.125rem;
font-weight: bold;
}
#content {
background-color: #fff;
border: 1px solid #ddd;
}
.index-card {
border-bottom: 1px solid #ddd;
padding-bottom: 2rem;
margin-bottom: 2rem;
}
span.author,
time {
font-size: 0.9375rem;
color: #999;
}
span.author a,
time a {
color: #999;
font-weight: bold;
}
span.author a:hover, span.author a:focus,
time a:hover,
time a:focus {
color: #444444;
}
.entry-author {
background-color: #fbfbfb;
border: none;
padding: 3.125rem 5rem;
margin: 3.125rem -0.9375rem;
}
.entry-author .avatar {
margin-right: 2.5rem;
margin-bottom: 1.5rem;
}
.entry-author h4 a {
color: #999;
}
.entry-author h4 a:hover, .entry-author h4 a:focus {
color: #444444;
}
.entry-author p {
color: #bbb;
}
.post header,
.page header {
margin-bottom: 1.25rem;
}
.entry-tags {
color: #999;
font-size: 0.9375rem;
}
.entry-tags a {
color: #999;
}
.entry-tags a:hover, .entry-tags a:focus {
color: #444444;
}
.page-numbers {
color: #999;
display: block;
height: 1.5rem;
margin-left: -0.3125rem;
}
.page-numbers li {
height: 1.5rem;
color: #222222;
font-size: 0.875rem;
margin-left: 0.3125rem;
}
.page-numbers li a {
display: block;
padding: 0.0625rem 0.625rem 0.0625rem;
color: #999999;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.page-numbers li:hover a,
.page-numbers li a:focus {
background: #e6e6e6;
}
.page-numbers li.unavailable a {
cursor: default;
color: #999999;
}
.page-numbers li.unavailable:hover a, .page-numbers li.unavailable a:focus {
background: transparent;
}
.page-numbers li.current a {
background: #008cba;
color: white;
font-weight: bold;
cursor: default;
}
.page-numbers li.current a:hover, .page-numbers li.current a:focus {
background: #008cba;
}
.page-numbers li {
float: left;
display: block;
}
.pagination-centered ul.page-numbers li {
float: none;
display: inline-block;
}
.page-numbers li span.current {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.page-numbers li {
margin-left: 0.5rem;
}
.page-numbers li span:hover a,
.page-numbers li span a:focus {
background: #e6e6e6;
}
.page-numbers li span.current {
background: #008cba;
padding: 0.0625rem 0.625rem 0.0625rem;
color: white;
font-weight: bold;
cursor: default;
}
.avatar {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
}
ol.commentlist {
margin-left: 0;
margin-top: 2em;
}
ol.commentlist p {
font-size: 0.9375rem;
line-height: 1.5;
}
ol.commentlist ul.children {
margin-left: 4rem;
}
ol.commentlist li {
list-style: none;
margin-bottom: 2em;
}
ol.commentlist li .comment-author img {
float: left;
margin: 0 1em 0 0;
}
ol.commentlist li .author-meta {
display: inline-block;
}
ol.commentlist li .author-meta cite.fn {
font-style: normal;
font-weight: 600;
margin-right: 0.5rem;
}
ol.commentlist li .author-meta time a {
color: #ccc;
font-size: 0.875rem;
margin-right: 0.5rem;
}
ol.commentlist li .author-meta .comment-edit-link {
color: #bbb;
font-size: 0.875rem;
}
ol.commentlist li section.comment {
margin-left: 4rem;
margin-bottom: 2rem;
}
ol.commentlist li section.comment a.comment-reply-link {
font-size: 0.875rem;
font-weight: 600;
color: #bbb;
}
ol.commentlist li section.comment a.comment-reply-link:hover, ol.commentlist li section.comment a.comment-reply-link:focus {
color: #444444;
}
#sidebar {
margin-top: 1.25rem;
}
#sidebar .panel, .footer-widget .panel {
border: none;
background-color: #eee;
padding: 1.5rem 1.875rem;
}
#sidebar .panel a, .footer-widget .panel a {
color: #999;
font-size: 0.9375rem;
}
#sidebar .panel a:hover, #sidebar .panel a:focus, .footer-widget .panel a:hover, .footer-widget .panel a:focus {
color: #444444;
}
#sidebar ul, .footer-widget ul {
list-style-type: none;
margin-left: 0;
}
#sidebar .widget h4, .footer-widget .widget h4 {
text-transform: uppercase;
font-size: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #ddd;
color: #888;
font-weight: 600;
}
footer.full-width {
background-color: #fff;
border-top: 1px solid #ccc;
padding-top: 3rem;
}
footer.full-width p {
font-size: 0.875rem;
}
footer.full-width a {
color: #666;
font-size: 0.9375rem;
}
footer.full-width a:hover, footer.full-width a:focus {
color: #444444;
}
footer.full-width .love-reverie {
border-top: 1px solid #ccc;
padding-top: 1.5rem;
}
.admin-bar > .fixed {
margin-top: 2rem;
}
.f-topbar-fixed > .container {
margin-top: 2rem;
}
.metaslider {
margin-bottom: 2rem;
}
.center {
text-align: center;
}
.page-id-57 > header {
padding-bottom: 0;
}
body {
background: orange !important;
}
@media only screen {
.entry-author .avatar {
margin-bottom: 1.25rem;
}
}
@media only screen and (min-width: 40.063em) {
#content {
padding: 3.125rem;
}
.entry-author {
margin: 3.125rem -3.125rem;
}
}
@media only screen and (min-width: 64.063em) {
#sidebar {
padding-left: 1.875rem;
padding-right: 0;
margin-top: 0;
}
.footer-widget {
margin-top: 3rem;
padding-top: 2rem;
}
} | css/oldstyle.css | meta.foundation-mq-small {
font-family: "/only screen and (max-width: 40em)/";
width: 0em;
}
meta.foundation-mq-medium {
font-family: "/only screen and (min-width:40.063em)/";
width: 40.063em;
}
meta.foundation-mq-large {
font-family: "/only screen and (min-width:64.063em)/";
width: 64.063em;
}
meta.foundation-mq-xlarge {
font-family: "/only screen and (min-width:90.063em)/";
width: 90.063em;
}
meta.foundation-mq-xxlarge {
font-family: "/only screen and (min-width:120.063em)/";
width: 120.063em;
}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
font-size: 100%;
}
body {
background: #f7f7f7;
color: #444444;
padding: 0;
margin: 0;
font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
font-weight: normal;
font-style: normal;
line-height: 1;
position: relative;
cursor: default;
}
a:hover {
cursor: pointer;
}
img,
object,
embed {
max-width: 100%;
height: auto;
}
object,
embed {
height: 100%;
}
img {
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
max-width: none !important;
}
.left {
float: left !important;
}
.right {
float: right !important;
}
.clearfix {
*zoom: 1;
}
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-justify {
text-align: justify !important;
}
.hide {
display: none;
}
.start {
float: left !important;
}
.end {
float: right !important;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
display: inline-block;
vertical-align: middle;
}
textarea {
height: auto;
min-height: 50px;
}
select {
width: 100%;
}
ul.pagination {
display: block;
height: 1.5rem;
margin-left: -0.3125rem;
}
ul.pagination li {
height: 1.5rem;
color: #222222;
font-size: 0.875rem;
margin-left: 0.3125rem;
}
ul.pagination li a {
display: block;
padding: 0.0625rem 0.625rem 0.0625rem;
color: #999999;
-webkit-border-radius: 3px;
border-radius: 3px;
}
ul.pagination li:hover a,
ul.pagination li a:focus {
background: #e6e6e6;
}
ul.pagination li.unavailable a {
cursor: default;
color: #999999;
}
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus {
background: transparent;
}
ul.pagination li.current a {
background: #008cba;
color: white;
font-weight: bold;
cursor: default;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus {
background: #008cba;
}
ul.pagination li {
float: left;
display: block;
}
/* Pagination centred wrapper */
.pagination-centered {
text-align: center;
}
.pagination-centered ul.pagination li {
float: none;
display: inline-block;
}
/* Start to customize Reverie */
a, a:visited, a:hover, a:visited:hover {
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
figure {
margin: 0 auto 1.25rem;
}
figure img {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
img.alignright {
float: right;
margin: 0 0 18px 18px;
}
img.alignleft {
float: left;
margin: 0 18px 18px 0;
}
img.aligncenter {
display: block;
margin: 18px auto;
}
.gallery dt, .gallery dl {
display: inline-block;
}
.gallery dl {
margin-left: 0.5625rem;
margin-right: 0.5625rem;
}
figure.figure {
margin: 0 auto;
display: table;
}
figure.figure figcaption {
font-size: 0.875rem;
line-height: 1.4;
font-style: italic;
padding: 8px 10px;
color: #999;
margin-bottom: 1.25rem;
display: table-caption;
caption-side: bottom;
}
figure.alignright.figure {
float: right;
margin: 0 0 18px 18px;
}
figure.alignleft.figure {
float: left;
margin: 0 18px 18px 0;
}
.footer-widget {
background-color: #eee;
}
body > header.contain-to-grid {
margin-bottom: 0;
max-width: 100%;
padding-bottom: 0;
}
body > header.contain-to-grid h1 {
padding-left: 3.125rem;
font-weight: bold;
}
#content {
background-color: #fff;
border: 1px solid #ddd;
}
.index-card {
border-bottom: 1px solid #ddd;
padding-bottom: 2rem;
margin-bottom: 2rem;
}
span.author,
time {
font-size: 0.9375rem;
color: #999;
}
span.author a,
time a {
color: #999;
font-weight: bold;
}
span.author a:hover, span.author a:focus,
time a:hover,
time a:focus {
color: #444444;
}
.entry-author {
background-color: #fbfbfb;
border: none;
padding: 3.125rem 5rem;
margin: 3.125rem -0.9375rem;
}
.entry-author .avatar {
margin-right: 2.5rem;
margin-bottom: 1.5rem;
}
.entry-author h4 a {
color: #999;
}
.entry-author h4 a:hover, .entry-author h4 a:focus {
color: #444444;
}
.entry-author p {
color: #bbb;
}
.post header,
.page header {
margin-bottom: 1.25rem;
}
.entry-tags {
color: #999;
font-size: 0.9375rem;
}
.entry-tags a {
color: #999;
}
.entry-tags a:hover, .entry-tags a:focus {
color: #444444;
}
.page-numbers {
color: #999;
display: block;
height: 1.5rem;
margin-left: -0.3125rem;
}
.page-numbers li {
height: 1.5rem;
color: #222222;
font-size: 0.875rem;
margin-left: 0.3125rem;
}
.page-numbers li a {
display: block;
padding: 0.0625rem 0.625rem 0.0625rem;
color: #999999;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.page-numbers li:hover a,
.page-numbers li a:focus {
background: #e6e6e6;
}
.page-numbers li.unavailable a {
cursor: default;
color: #999999;
}
.page-numbers li.unavailable:hover a, .page-numbers li.unavailable a:focus {
background: transparent;
}
.page-numbers li.current a {
background: #008cba;
color: white;
font-weight: bold;
cursor: default;
}
.page-numbers li.current a:hover, .page-numbers li.current a:focus {
background: #008cba;
}
.page-numbers li {
float: left;
display: block;
}
.pagination-centered ul.page-numbers li {
float: none;
display: inline-block;
}
.page-numbers li span.current {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.page-numbers li {
margin-left: 0.5rem;
}
.page-numbers li span:hover a,
.page-numbers li span a:focus {
background: #e6e6e6;
}
.page-numbers li span.current {
background: #008cba;
padding: 0.0625rem 0.625rem 0.0625rem;
color: white;
font-weight: bold;
cursor: default;
}
.avatar {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
}
ol.commentlist {
margin-left: 0;
margin-top: 2em;
}
ol.commentlist p {
font-size: 0.9375rem;
line-height: 1.5;
}
ol.commentlist ul.children {
margin-left: 4rem;
}
ol.commentlist li {
list-style: none;
margin-bottom: 2em;
}
ol.commentlist li .comment-author img {
float: left;
margin: 0 1em 0 0;
}
ol.commentlist li .author-meta {
display: inline-block;
}
ol.commentlist li .author-meta cite.fn {
font-style: normal;
font-weight: 600;
margin-right: 0.5rem;
}
ol.commentlist li .author-meta time a {
color: #ccc;
font-size: 0.875rem;
margin-right: 0.5rem;
}
ol.commentlist li .author-meta .comment-edit-link {
color: #bbb;
font-size: 0.875rem;
}
ol.commentlist li section.comment {
margin-left: 4rem;
margin-bottom: 2rem;
}
ol.commentlist li section.comment a.comment-reply-link {
font-size: 0.875rem;
font-weight: 600;
color: #bbb;
}
ol.commentlist li section.comment a.comment-reply-link:hover, ol.commentlist li section.comment a.comment-reply-link:focus {
color: #444444;
}
#sidebar {
margin-top: 1.25rem;
}
#sidebar .panel, .footer-widget .panel {
border: none;
background-color: #eee;
padding: 1.5rem 1.875rem;
}
#sidebar .panel a, .footer-widget .panel a {
color: #999;
font-size: 0.9375rem;
}
#sidebar .panel a:hover, #sidebar .panel a:focus, .footer-widget .panel a:hover, .footer-widget .panel a:focus {
color: #444444;
}
#sidebar ul, .footer-widget ul {
list-style-type: none;
margin-left: 0;
}
#sidebar .widget h4, .footer-widget .widget h4 {
text-transform: uppercase;
font-size: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #ddd;
color: #888;
font-weight: 600;
}
footer.full-width {
background-color: #fff;
border-top: 1px solid #ccc;
padding-top: 3rem;
}
footer.full-width p {
font-size: 0.875rem;
}
footer.full-width a {
color: #666;
font-size: 0.9375rem;
}
footer.full-width a:hover, footer.full-width a:focus {
color: #444444;
}
footer.full-width .love-reverie {
border-top: 1px solid #ccc;
padding-top: 1.5rem;
}
.admin-bar > .fixed {
margin-top: 2rem;
}
.f-topbar-fixed > .container {
margin-top: 2rem;
}
.metaslider {
margin-bottom: 2rem;
}
.center {
text-align: center;
}
.page-id-57 > header {
padding-bottom: 0;
}
body {
background: orange !important;
}
@media only screen {
.entry-author .avatar {
margin-bottom: 1.25rem;
}
}
@media only screen and (min-width: 40.063em) {
#content {
padding: 3.125rem;
}
.entry-author {
margin: 3.125rem -3.125rem;
}
}
@media only screen and (min-width: 64.063em) {
#sidebar {
padding-left: 1.875rem;
padding-right: 0;
margin-top: 0;
}
.footer-widget {
margin-top: 3rem;
padding-top: 2rem;
}
} | 0.416797 | 0.085901 |
*{
margin: 0px;
padding: 0px;
}
html{
margin: 0px;
padding: 0px;
width: 100%;
}
body{
margin: 0px;
padding: 0px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.title{
width: 100%;
height: 70px;
display: flex;
flex-direction: row;
justify-content: center;
align-items:center ;
}
.titles{
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items:center ;
}
.title_content{
width: 98%;
height: 70px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items:center ;
}
.title_contents{
width: 98%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items:center ;
}
.title_content span{
display: inline-block;
font-size: 42px;
/*color: #343434;*/
padding: 5px 10px;
margin: 0px;
}
.title_content span:first-child{
font-weight: bold;
}
.title_content span:nth-child(2){
font-size: 48px;
}
.title_contents span{
display: inline-block;
font-size: 30px;
/*color: #343434;*/
padding: 5px 10px;
margin: 0px;
color: cornflowerblue;
}
.bg1{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg1>img{
display: block;
width: 100%;
height: auto;
}
.bg2{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg2>img{
display: block;
width: 100%;
height: auto;
}
.zz{
margin-top: 50px;
margin-bottom: 20px;
width: 100%;
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url(../img/bg3.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-origin: border-box;
}
.zzhead{
width: 70%;
height: auto;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.zzB{
width: 20%;
height: 1px;
background-color:#606060 ;
}
.zzB_title{
width: 50%;
height: 75px;
font-size: 39px;
line-height: 75px;
text-align: center;
border: 1px solid #404040;
color: #404040;
font-weight: bold;
}
.bg3{
width: 100%;
height: 2000px;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
background-image: url(../img/4.png);
background-origin: border-box;
background-repeat: no-repeat;
background-size:100% 100% ;
}
.bg3top{
height: 400px;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg3top>p{
margin: 0;
padding: 0;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.bg3topdiv{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bg3topdiv a{
display: block;
color: #FFF;
font-size: 30px;
text-decoration: none;
margin: 20px auto;
width: auto;
height: auto;
padding: 20px 35px;
background-color: #44B5FF;
}
.bg3center{
height: 700px;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg3center>p{
margin: 0;
padding: 0;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.bg3center>img{
display: block;
width: 400px;
height: 400px;
}
.bg3centerdiv{
font-size: 36px;
color: #000;
} | css/new_file.css | *{
margin: 0px;
padding: 0px;
}
html{
margin: 0px;
padding: 0px;
width: 100%;
}
body{
margin: 0px;
padding: 0px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.title{
width: 100%;
height: 70px;
display: flex;
flex-direction: row;
justify-content: center;
align-items:center ;
}
.titles{
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items:center ;
}
.title_content{
width: 98%;
height: 70px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items:center ;
}
.title_contents{
width: 98%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items:center ;
}
.title_content span{
display: inline-block;
font-size: 42px;
/*color: #343434;*/
padding: 5px 10px;
margin: 0px;
}
.title_content span:first-child{
font-weight: bold;
}
.title_content span:nth-child(2){
font-size: 48px;
}
.title_contents span{
display: inline-block;
font-size: 30px;
/*color: #343434;*/
padding: 5px 10px;
margin: 0px;
color: cornflowerblue;
}
.bg1{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg1>img{
display: block;
width: 100%;
height: auto;
}
.bg2{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg2>img{
display: block;
width: 100%;
height: auto;
}
.zz{
margin-top: 50px;
margin-bottom: 20px;
width: 100%;
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url(../img/bg3.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-origin: border-box;
}
.zzhead{
width: 70%;
height: auto;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.zzB{
width: 20%;
height: 1px;
background-color:#606060 ;
}
.zzB_title{
width: 50%;
height: 75px;
font-size: 39px;
line-height: 75px;
text-align: center;
border: 1px solid #404040;
color: #404040;
font-weight: bold;
}
.bg3{
width: 100%;
height: 2000px;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
background-image: url(../img/4.png);
background-origin: border-box;
background-repeat: no-repeat;
background-size:100% 100% ;
}
.bg3top{
height: 400px;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg3top>p{
margin: 0;
padding: 0;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.bg3topdiv{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bg3topdiv a{
display: block;
color: #FFF;
font-size: 30px;
text-decoration: none;
margin: 20px auto;
width: auto;
height: auto;
padding: 20px 35px;
background-color: #44B5FF;
}
.bg3center{
height: 700px;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center ;
}
.bg3center>p{
margin: 0;
padding: 0;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.bg3center>img{
display: block;
width: 400px;
height: 400px;
}
.bg3centerdiv{
font-size: 36px;
color: #000;
} | 0.189784 | 0.056107 |
@import url("../dijit.css");
.dijitIconSave,
.dijitIconPrint,
.dijitIconCut,
.dijitIconCopy,
.dijitIconClear,
.dijitIconDelete,
.dijitIconUndo,
.dijitIconEdit,
.dijitIconNewTask,
.dijitIconEditTask,
.dijitIconEditProperty,
.dijitIconTask,
.dijitIconFilter,
.dijitIconConfigure,
.dijitIconSearch,
.dijitIconApplication,
.dijitIconBookmark,
.dijitIconChart,
.dijitIconConnector,
.dijitIconDatabase,
.dijitIconDocuments,
.dijitIconMail,
.dijitLeaf,
.dijitIconFile,
.dijitIconFunction,
.dijitIconKey,
.dijitIconPackage,
.dijitIconSample,
.dijitIconTable,
.dijitIconUsers,
.dijitFolderClosed,
.dijitIconFolderClosed,
.dijitFolderOpened,
.dijitIconFolderOpen,
.dijitIconError {
background-image: url(../../icons/images/commonIconsObjActEnabled.png);
width: 16px;
height: 16px;
}
.dj_ie6 .dijitIconSave,
.dj_ie6 .dijitIconPrint,
.dj_ie6 .dijitIconCut,
.dj_ie6 .dijitIconCopy,
.dj_ie6 .dijitIconClear,
.dj_ie6 .dijitIconDelete,
.dj_ie6 .dijitIconUndo,
.dj_ie6 .dijitIconEdit,
.dj_ie6 .dijitIconNewTask,
.dj_ie6 .dijitIconEditTask,
.dj_ie6 .dijitIconEditProperty,
.dj_ie6 .dijitIconTask,
.dj_ie6 .dijitIconFilter,
.dj_ie6 .dijitIconConfigure,
.dj_ie6 .dijitIconSearch,
.dj_ie6 .dijitIconApplication,
.dj_ie6 .dijitIconBookmark,
.dj_ie6 .dijitIconChart,
.dj_ie6 .dijitIconConnector,
.dj_ie6 .dijitIconDatabase,
.dj_ie6 .dijitIconDocuments,
.dj_ie6 .dijitIconMail,
.dj_ie6 .dijitLeaf,
.dj_ie6 .dijitIconFile,
.dj_ie6 .dijitIconFunction,
.dj_ie6 .dijitIconKey,
.dj_ie6 .dijitIconPackage,
.dj_ie6 .dijitIconSample,
.dj_ie6 .dijitIconTable,
.dj_ie6 .dijitIconUsers,
.dj_ie6 .dijitFolderClosed,
.dj_ie6 .dijitIconFolderClosed,
.dj_ie6 .dijitFolderOpened,
.dj_ie6 .dijitIconFolderOpen,
.dj_ie6 .dijitIconError {
background-image: url(../../icons/images/commonIconsObjActEnabled8bit.png);
}
.dijitDisabled .dijitIconSave,
.dijitDisabled .dijitIconPrint,
.dijitDisabled .dijitIconCut,
.dijitDisabled .dijitIconCopy,
.dijitDisabled .dijitIconClear,
.dijitDisabled .dijitIconDelete,
.dijitDisabled .dijitIconUndo,
.dijitDisabled .dijitIconEdit,
.dijitDisabled .dijitIconNewTask,
.dijitDisabled .dijitIconEditTask,
.dijitDisabled .dijitIconEditProperty,
.dijitDisabled .dijitIconTask,
.dijitDisabled .dijitIconFilter,
.dijitDisabled .dijitIconConfigure,
.dijitDisabled .dijitIconSearch,
.dijitDisabled .dijitIconApplication,
.dijitDisabled .dijitIconBookmark,
.dijitDisabled .dijitIconChart,
.dijitDisabled .dijitIconConnector,
.dijitDisabled .dijitIconDatabase,
.dijitDisabled .dijitIconDocuments,
.dijitDisabled .dijitIconMail,
.dijitDisabled .dijitLeaf,
.dijitDisabled .dijitIconFile,
.dijitDisabled .dijitIconFunction,
.dijitDisabled .dijitIconKey,
.dijitDisabled .dijitIconPackage,
.dijitDisabled .dijitIconSample,
.dijitDisabled .dijitIconTable,
.dijitDisabled .dijitIconUsers,
.dijitDisabled .dijitFolderClosed,
.dijitDisabled .dijitIconFolderClosed,
.dijitDisabled .dijitFolderOpened,
.dijitDisabled .dijitIconFolderOpen,
.dijitDisabled .dijitIconError {
background-image: url(../../icons/images/commonIconsObjActDisabled.png);
}
.dijitIconSave { background-position: 0px; }
.dijitIconPrint { background-position: -16px; }
.dijitIconCut { background-position: -32px; }
.dijitIconCopy { background-position: -48px; }
.dijitIconClear { background-position: -64px; }
.dijitIconDelete { background-position: -80px; }
.dijitIconUndo { background-position: -96px; }
.dijitIconEdit { background-position: -112px; }
.dijitIconNewTask { background-position: -128px; }
.dijitIconEditTask { background-position: -144px; }
.dijitIconEditProperty { background-position: -166px; }
.dijitIconTask { background-position: -176px; }
.dijitIconFilter { background-position: -192px; }
.dijitIconConfigure { background-position: -208px; }
.dijitIconSearch { background-position: -224px; }
.dijitIconError { background-position: -496px; }
.dijitIconApplication { background-position: -240px; }
.dijitIconBookmark { background-position: -256px; }
.dijitIconChart { background-position: -272px; }
.dijitIconConnector { background-position: -288px; }
.dijitIconDatabase { background-position: -304px; }
.dijitIconDocuments { background-position: -320px; }
.dijitIconMail { background-position: -336px; }
.dijitIconFile, .dijitLeaf { background-position: -352px; }
.dijitIconFunction { background-position: -368px; }
.dijitIconKey { background-position: -384px; }
.dijitIconPackage{ background-position: -400px; }
.dijitIconSample { background-position: -416px; }
.dijitIconTable { background-position: -432px; }
.dijitIconUsers { background-position: -448px; }
.dijitIconFolderClosed, .dijitFolderClosed { background-position: -464px; }
.dijitIconFolderOpen, .dijitFolderOpened { background-position: -480px; }
.tundra .dojoDndItemBefore {
border-top: 2px solid #369;
}
.tundra .dojoDndItemAfter {
border-bottom: 2px solid #369;
}
.tundra .dojoDndItemOver {
cursor:pointer;
}
.tundra table.dojoDndAvatar { -moz-border-radius: 0; border: 1px solid #ccc; border-collapse: collapse; background-color: #fff; font-size: 75%; color: black;}
.tundra .dojoDndAvatar td { border: none; }
.tundra .dojoDndAvatar tr { border: none; }
.tundra .dojoDndAvatarHeader td { height: 20px; padding: 0 0 0 21px; }
.tundra .dojoDndAvatarItem td { padding: 2px;}
.tundra.dojoDndMove .dojoDndAvatarHeader {background-color: #f58383; background-image: url(images/dndNoMove.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndCopy .dojoDndAvatarHeader {background-color: #f58383; background-image: url(images/dndNoCopy.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndMove .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-color: #97e68d; background-image: url(images/dndMove.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndCopy .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-color: #97e68d; background-image: url(images/dndCopy.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra .dijitContentPaneLoading {
background:url(images/loading.gif) no-repeat left center;
padding-left:25px;
}
.tundra .dijitContentPaneError {
background:url(images/warning.png) no-repeat left center;
padding-left:25px;
}
.tundra .dijitContentPane {
padding: 0px;
}
.tundra .dijitTabContainerTop-dijitContentPane,
.tundra .dijitTabContainerLeft-dijitContentPane,
.tundra .dijitTabContainerBottom-dijitContentPane,
.tundra .dijitTabContainerRight-dijitContentPane,
.tundra .dijitAccordionContainer-dijitContentPane {
background-color: #fff;
padding: 5px;
}
.tundra .dijitSplitContainer-dijitContentPane,
.tundra .dijitBorderContainer-dijitContentPane {
background-color: #fff;
padding: 5px;
}
.tundra .dijitTabPaneWrapper {
background:#fff;
border:1px solid #ccc;
margin: 0;
padding: 0;
}
.tundra .dijitTab {
line-height:normal;
margin-right:4px;
padding:0px;
border:1px solid #ccc;
background:#e2e2e2 url(images/tabEnabled.png) repeat-x;
}
.tundra .dijitTabInnerDiv {
padding:2px 8px 2px 9px;
}
.tundra .dijitTabSpacer {
display: none;
}
.tundra .dijitTabContainer .tabStripRBtn {
margin-right: 20px;
}
.tundra .dijitTabContainer .tabStripLBtn {
margin-left: 20px;
}
.tundra .nowrapTabStrip .dijitTab {
top: 2px;
}
.tundra .dijitTabContainerBottom .nowrapTabStrip .dijitTab {
top: 0px;
bottom: 2px;
}
.tundra .dijitTabChecked {
background-color:#fff;
border-color: #ccc;
background-image:none;
}
.tundra .dijitTabHover {
color: #243C5F;
border-top-color:#92a0b3;
border-left-color:#92a0b3;
border-right-color:#92a0b3;
border-bottom-color:#92a0b3;
background:#e2e2e2 url(images/tabHover.gif) repeat-x;
}
.tundra .dijitTabContainerTop .dijitTabHover {
border-bottom-color:#ccc;
}
.tundra .dijitTabContainerBottom .dijitTabHover {
border-top-color:#ccc;
}
.tundra .dijitTabContainerLeft .dijitTabHover {
border-right-color:#ccc;
}
.tundra .dijitTabContainerRight .dijitTabHover {
border-left-color:#ccc;
}
.tundra .dijitTabContainer .dijitTabCheckedHover {
color: inherit;
border:1px solid #ccc;
background:#fff;
}
.tundra .dijitTab .tabLabel {
min-height: 12px;
display: inline-block;
}
.tundra .dijitTabContainerNested .dijitTabListWrapper {
height: auto;
}
.tundra .dijitTabContainerNested .dijitTabContainerTop-tabs {
border-bottom: 1px solid #CCC;
}
.tundra .dijitTabContainerTabListNested .dijitTab {
background: none;
border: none;
top: 0px;
}
.tundra .dijitTabContainerTabListNested .dijitTab .dijitTabContent {
}
.tundra .dijitTabContainerTabListNested .dijitTabHover .dijitTabContent .tabLabel {
text-decoration: underline;
}
.tundra .dijitTabContainerTabListNested .dijitTabChecked .dijitTabContent .tabLabel {
text-decoration: underline;
font-weight: bold;
}
.tundra .dijitTabContainer .dijitTabPaneWrapperNested {
border: none;
}
.tundra .dijitTabCloseButton {
background: url(images/tabClose.png) no-repeat right top;
width: 12px;
height: 12px;
}
.dj_ie6 .tundra .dijitTabCloseButton {
background-image : url(images/tabClose.gif);
}
.tundra .dijitTabCloseButtonHover {
background-image : url(images/tabCloseHover.png);
}
.dj_ie6 .tundra .dijitTabCloseButtonHover {
background-image : url(images/tabCloseHover.gif);
}
.tundra .dijitTabContainerTop-tabs {
margin-bottom: 0px;
border-color: #cccccc;
padding-left: 3px;
background-position: bottom;
}
.tundra .dijitTabContainerTop-tabs .dijitTab {
top: 0px;
margin-bottom: -1px;
}
.tundra .dijitTabContainerTop-container {
border-top: none;
}
.tundra .dijitTabContainerTop-tabs .dijitTabChecked {
border-bottom-color:white;
}
.tundra .dijitTabContainerTop-tabs,
.tundra .dijitTabContainerBottom-tabs {
padding-left: 3px;
padding-right: 3px;
}
.tundra .dijitTabContainerTopStrip {
border-top: 1px solid #CCC;
border-right: 1px solid #CCC;
border-left: 1px solid #CCC;
padding-top: 2px;
background: #f2f2f2;
}
.tundra .dijitTabContainerTopNone {
padding-top: 0px;
}
.tundra .dijitTabContainerBottom-tabs {
margin-top: 0px;
border-color: #cccccc;
background-position: top;
padding-left: 3px;
}
.tundra .dijitTabContainerBottom-tabs .dijitTab {
bottom: 0px;
margin-top: -1px;
}
.tundra .dijitTabContainerBottom-container {
border-bottom: none;
}
.tundra .dijitTabContainerBottom-tabs .dijitTabChecked {
border-top-color:white;
}
.tundra .dijitTabContainerBottomStrip {
padding-bottom: 2px;
border: 1px solid #ccc;
background: #f2f2f2;
border-top: none;
}
.tundra .dijitTabContainerRight-tabs {
border-color: #ccc;
height: 100%;
padding-top: 3px;
}
.tundra .dijitTabContainerRightStrip {
margin-left: -1px;
}
.tundra .dijitTabContainerRight-container {
border-right: none;
}
.tundra .dijitTabContainerRight-tabs .dijitTabChecked {
border-left-color:white;
}
.tundra .dijitTabContainerRightStrip {
padding-right: 2px;
border: 1px solid #ccc;
}
.tundra .dijitTabContainerRightStrip {
background: #f2f2f2;
}
.tundra .dijitTabContainerLeft-tabs {
border-color: #ccc;
padding-top: 3px;
height: 100%;
}
.tundra .dijitTabContainerLeft-container {
border-left: none;
}
.tundra .dijitTabContainerLeft-tabs .dijitTabChecked {
border-right-color:white;
}
.tundra .dijitTabContainerLeftStrip {
padding-left: 2px;
border: 1px solid #ccc;
background: #f2f2f2;
border-right: none;
}
.tundra .dijitTabContainerLeft-tabs .dijitTab,
.tundra .dijitTabContainerRight-tabs .dijitTab {
margin-right:0px;
margin-bottom:4px;
}
.tundra .dijitTabContainerTop-dijitContentPane .dijitTabContainerTop-tabs {
border-left: 0px solid #ccc;
border-top: 0px solid #ccc;
border-right: 0px solid #ccc;
padding-top: 0px;
padding-left: 0px;
}
.tundra .dijitTabContainer .tabStripButton {
margin-right: 0;
padding-top: 2px;
z-index: 12;
}
.tundra .dijitTabContainerBottom .tabStripButton {
padding-top: 2px;
}
.tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv {
padding-bottom: 3px;
padding-top: 1px;
}
.tundra .tabStripButton .dijitTabInnerDiv {
padding: 3px 2px 4px 2px;
}
.dj_ie6 .tundra .tabStripButton .dijitTabInnerDiv,
.dj_ie7 .tundra .tabStripButton .dijitTabInnerDiv,
.dj_opera .tundra .tabStripButton .dijitTabInnerDiv {
padding-bottom: 5px;
}
.dj_ie6 .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv,
.dj_ie7 .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv,
.dj_opera .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv {
padding-bottom: 4px;
}
.tundra .dijitTabStripIcon {
height: 14px;
width: 14px;
background: url(images/spriteRoundedIconsSmall.png) no-repeat left top ;
}
.dj_ie6 .tundra .dijitTabStripIcon {
background-image: url(images/spriteRoundedIconsSmall.gif);
}
.tundra .dijitTabStripSlideRightIcon {
background-position: -30px top;
}
.tundra .dijitTabStripMenuIcon {
background-position: -15px top;
}
.tundra .dijitAccordionContainer {
border-color: #ccc;
background-color: #fff;
}
.tundra .dijitAccordionTitle {
background:#fafafa url(images/titleBar.png) repeat-x bottom left;
border-top: 1px solid #bfbfbf;
padding: 4px 4px 4px 8px;
}
.tundra .dijitAccordionTitleHover {
background: #f8fafd url(images/accordionItemHover.gif) bottom repeat-x;
}
.tundra .dijitAccordionTitleSelected {
background: #f9f9f9 url(images/accordionItemActive.gif) bottom repeat-x;
font-weight: bold;
border-top: 1px solid #aaaaaa;
border-bottom: 1px solid #bfbfbf;
padding: 4px 4px 4px 8px;
}
.tundra .dijitSplitContainerSizerH {
background:url(images/splitContainerSizerV.png) repeat-y #fff;
border:0;
border-left:1px solid #bfbfbf;
border-right:1px solid #bfbfbf;
width:7px;
}
.tundra .dijitSplitContainerSizerH .thumb {
background:url(images/splitContainerSizerV-thumb.png) no-repeat #ccc;
left:1px;
width:3px;
height:19px;
overflow: hidden;
}
.tundra .dijitSplitContainerSizerV {
background:url(images/splitContainerSizerH.png) repeat-x #fff;
border:0;
border-top:1px solid #bfbfbf;
border-bottom:1px solid #bfbfbf;
height:7px;
}
.tundra .dijitSplitContainerSizerV .thumb {
background:url(images/splitContainerSizerH-thumb.png) no-repeat #ccc;
top:1px;
width:19px;
height:3px;
overflow: hidden;
}
.tundra .dijitBorderContainer {
background-color: #fcfcfc;
padding: 5px;
}
.tundra .dijitSplitContainer-child,
.tundra .dijitBorderContainer-child {
border: 1px #ccc solid;
}
.tundra .dijitBorderContainer-dijitTabContainerTop,
.tundra .dijitBorderContainer-dijitTabContainerBottom,
.tundra .dijitBorderContainer-dijitTabContainerLeft,
.tundra .dijitBorderContainer-dijitTabContainerRight {
border: none;
}
.tundra .dijitBorderContainer-dijitBorderContainer {
border: none;
padding: 0px;
}
.tundra .dijitSplitterH,
.tundra .dijitGutterH {
background:#fcfcfc;
border:0;
height:5px;
}
.tundra .dijitSplitterH .dijitSplitterThumb {
background:#B0B0B0 none;
height:1px;
top:2px;
width:19px;
}
.tundra .dijitSplitterV,
.tundra .dijitGutterV {
background:#fcfcfc;
border:0;
width:5px;
}
.tundra .dijitSplitterV .dijitSplitterThumb {
background:#B0B0B0 none;
height:19px;
left:2px;
width:1px;
}
.tundra .dijitSplitterActive {
font-size: 1px;
background-image: none;
background-color: #aaa;
-moz-opacity: 0.6;
opacity: 0.6;
filter: Alpha(Opacity=60);
margin: 0;
}
.tundra .dijitInputContainer INPUT,
.tundra .dijitTextBox {
margin: 0em 0.1em;
}
.tundra .dijitTextArea {
padding: 3px;
}
.tundra .dijitTextBox {
background:#fff url(images/validationInputBg.png) repeat-x top left;
#background:#fff url(images/validationInputBg.gif) repeat-x top left;
border:1px solid #b3b3b3;
}
.tundra .dijitComboBox .dijitButtonNode {
padding: 0 0.2em;
}
.tundra .dijitTextBox .dijitButtonNode {
border-color: #9b9b9b;
}
.tundra .dijitTextBoxFocused {
border-color:#406b9b;
}
.tundra .dijitTextBoxFocused .dijitButtonNode {
border-color:#366dba;
}
.tundra .dijitError {
background-color:#f9f7ba;
background-image:none;
}
.tundra .dijitErrorFocused {
background-color:#f9f999;
background-image:none;
}
.tundra .dijitValidationIcon {
width: 16px;
background: transparent url(images/warning.png) no-repeat center center;
}
.tundra .dijitComboBoxHighlightMatch {
background-color:#a5beda;
}
.tundra .dijitFocusedLabel {
outline: 1px dotted #666666;
}
.tundra .dijitButtonNode {
border: 1px solid #c0c0c0;
border-bottom: 1px solid #9b9b9b;
padding: 0.1em 0.2em 0.2em 0.2em;
background: #fff url(images/buttonEnabled.png) repeat-x bottom left;
}
.tundra .dijitButtonText {
text-align: center;
padding: 0 0.3em;
}
.tundra .dijitDisabled .dijitButtonText {
color: #7F7F7F;
}
.tundra .dijitArrowButton {
color: #111;
}
.tundra .dijitComboButton .dijitDownArrowButton {
padding-right:4px;
}
.tundra .dijitTextBoxReadOnly,
.tundra .dijitTextBoxReadOnly .dijitButtonNode,
.tundra .dijitButtonDisabled .dijitButtonNode,
.tundra .dijitToggleButtonDisabled .dijitButtonNode,
.tundra .dijitDropDownButtonDisabled .dijitButtonNode,
.tundra .dijitComboButtonDisabled .dijitButtonNode,
.tundra .dijitTextBoxDisabled,
.tundra .dijitTextBoxDisabled .dijitButtonNode {
border-color: #d5d5d5 #d5d5d5 #bdbdbd #d5d5d5;
background:#e4e4e4 url(images/buttonDisabled.png) top repeat-x;
}
.tundra .dijitButtonHover .dijitButtonNode,
.tundra .dijitButtonNodeHover,
.tundra .dijitToggleButtonHover .dijitButtonNode,
.tundra .dijitDropDownButtonHover .dijitButtonNode,
.tundra .dijitComboButton .dijitButtonContentsHover,
.tundra .dijitComboButton .dijitDownArrowButtonHover {
border-color: #a5beda;
border-bottom-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitDownArrowButtonHover,
.tundra .dijitUpArrowButtonHover {
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitUpArrowButtonActive,
.tundra .dijitDownArrowButtonActive,
.tundra .dijitButtonActive .dijitButtonNode,
.tundra .dijitToggleButtonActive .dijitButtonNode,
.tundra .dijitDropDownButtonActive .dijitButtonNode,
.tundra .dijitButtonContentsActive,
.tundra .dijitStackController .dijitToggleButtonChecked .dijitButtonNode {
border-color:#366dba;
background: #ededed url(images/buttonActive.png) bottom repeat-x;
}
.tundra .dijitArrowButtonInner {
background:url(images/spriteArrows.png) no-repeat scroll 0px center;
width: 7px;
height: 7px;
margin: 0px 4px 0px 4px;
}
.tundra .dijitTextBox .dijitArrowButtonInner {
background-position: 0 center;
}
.dj_ie6 .tundra .dijitArrowButtonInner {
background-image:url(images/spriteArrows.gif);
}
.tundra .dijitLeftArrowButton .dijitArrowButtonInner {
background-position: -7px center;
}
.tundra .dijitRightArrowButton .dijitArrowButtonInner {
background-position: -14px center;
}
.tundra .dijitUpArrowButton .dijitArrowButtonInner {
background-position: -21px center;
}
.tundra .dijitDisabled .dijitArrowButtonInner {
background-position: -28px center;
}
.tundra .dijitDisabled .dijitLeftArrowButton .dijitArrowButtonInner {
background-position: -35px center;
}
.tundra .dijitDisabled .dijitRightArrowButton .dijitArrowButtonInner {
background-position: -42px center;
}
.tundra .dijitDisabled .dijitUpArrowButton .dijitArrowButtonInner {
background-position: -49px center;
}
.dj_webkit .tundra .dijitSpinner .dijitUpArrowButton .dijitArrowButtonInner {
margin-top: -1px;
}
.dj_ie .tundra .dijitSpinner .dijitDownArrowButton .dijitArrowButtonInner {
margin-top: -2px;
}
.dj_ie8 .tundra .dijitSpinner .dijitDownArrowButton .dijitArrowButtonInner {
margin-top: -1px;
}
.tundra .dijitSpinnerButtonContainer {
width: auto;
padding: 0;
}
.tundra .dijitSpinner .dijitArrowButton {
width: 15px;
}
.tundra .dijitSpinner .dijitSpinnerButtonInner {
width: 15px;
}
.tundra .dijitSpinner .dijitArrowButtonInner .dijitInputField {
padding: 0;
}
.tundra .dijitToggleButton .dijitCheckBoxIcon {
background-image: url(images/checkmarkNoBorder.png);
}
.dj_ie6 .tundra .dijitToggleButton .dijitCheckBoxIcon {
background-image: url(images/checkmarkNoBorder.gif);
}
.tundra .dijitCheckBox,
.tundra .dijitCheckBoxIcon {
background-image: url(images/checkmark.png);
background-repeat: no-repeat;
width: 16px;
height: 16px;
margin: 0 2px 0 0;
padding: 0;
}
.dj_ie6 .tundra .dijitCheckBox,
.dj_ie6 .tundra .dijitCheckBoxIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitCheckBox,
.tundra .dijitToggleButton .dijitCheckBoxIcon {
background-position: -16px;
}
.tundra .dijitCheckBoxChecked,
.tundra .dijitToggleButtonChecked .dijitCheckBoxIcon {
background-position: 0px;
}
.tundra .dijitCheckBoxDisabled {
background-position: -48px;
}
.tundra .dijitCheckBoxCheckedDisabled {
background-position: -32px;
}
.tundra .dijitCheckBoxHover {
background-position: -80px;
}
.tundra .dijitCheckBoxCheckedHover {
background-position: -64px;
}
.tundra .dijitRadio,
.tundra .dijitRadioIcon {
background-image: url(images/checkmark.png);
background-repeat: no-repeat;
width: 16px;
height: 16px;
margin: 0;
padding: 0;
}
.dj_ie6 .tundra .dijitRadio,
.dj_ie6 .tundra .dijitRadioIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitToggleButton .dijitRadioIcon {
background-image: url(images/checkmarkNoBorder.png);
}
.dj_ie6 .tundra .dijitToggleButton .dijitRadioIcon {
background-image: url(images/checkmarkNoBorder.gif);
}
.tundra .dijitRadio,
.tundra .dijitRadioIcon {
background-position: -112px;
}
.tundra .dijitRadioDisabled {
background-position: -144px;
}
.tundra .dijitRadioHover {
background-position: -176px;
}
.tundra .dijitRadioChecked,
.tundra .dijitRadioCheckedHover,
.tundra .dijitToggleButtonChecked .dijitRadioIcon {
background-position: -96px;
}
.tundra .dijitRadioCheckedDisabled {
background-position: -128px;
}
.tundra .dijitSliderProgressBarH {
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFull.png) repeat-x top left;
}
.tundra .dijitSliderProgressBarV {
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFullVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderFocused .dijitSliderProgressBarH,
.tundra .dijitSliderFocused .dijitSliderLeftBumper {
background-image:url(images/sliderFullFocus.png);
}
.tundra .dijitSliderFocused .dijitSliderProgressBarV,
.tundra .dijitSliderFocused .dijitSliderBottomBumper {
background-image:url(images/sliderFullVerticalFocus.png);
}
.tundra .dijitSliderRemainingBarV {
border-color: #b4b4b4;
background: #dcdcdc url(images/sliderEmptyVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderRemainingBarH {
border-color: #b4b4b4;
background: #dcdcdc url(images/sliderEmpty.png) repeat-x top left;
}
.tundra .dijitSliderBar {
border-style: solid;
outline:1px;
}
.tundra .dijitSliderFocused .dijitSliderBar {
border-color:#888;
}
.tundra .dijitSliderImageHandleH {
border:0px;
width:16px;
height:16px;
background:url(images/preciseSliderThumb.png) no-repeat center top;
}
.tundra .dijitSliderFocused .dijitSliderImageHandleH {
background-image:url(images/preciseSliderThumbFocus.png);
#background-image:url(images/preciseSliderThumbFocus.gif);
}
.dj_ie6 .tundra .dijitSliderImageHandleH {
background-image:url(images/preciseSliderThumb.gif);
}
.tundra .dijitSliderLeftBumper {
border-left-width: 1px;
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFull.png) repeat-x top left;
}
.tundra .dijitSliderRightBumper {
background: #dcdcdc url(images/sliderEmpty.png) repeat-x top left;
border-color: #b4b4b4;
border-right-width: 1px;
}
.tundra .dijitSliderImageHandleV {
border:0px;
width:16px;
height:16px;
background:url(images/sliderThumb.png) no-repeat center center;
}
.tundra .dijitSliderFocused .dijitSliderImageHandleV {
background-image:url(images/sliderThumbFocus.png);
}
.dj_ie6 .tundra .dijitSliderFocused .dijitSliderImageHandleV {
background-image:url(images/sliderThumbFocus.gif);
}
.tundra .dijitSliderBottomBumper {
border-bottom-width: 1px;
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFullVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderTopBumper {
background: #dcdcdc url(images/sliderEmptyVertical.png) repeat-y top left;
border-color: #b4b4b4;
border-top-width: 1px;
}
.tundra .dijitSliderDecrementIconH,
.tundra .dijitSliderDecrementIconV,
.tundra .dijitSliderIncrementIconH,
.tundra .dijitSliderIncrementIconV {
background-image: url(images/spriteArrows.png);
background-repeat: no-repeat;
margin: 5px;
height: 7px;
width: 7px;
font-size: 1px;
}
.dj_ie6 .tundra .dijitSliderDecrementIconH,
.dj_ie6 .tundra .dijitSliderDecrementIconV,
.dj_ie6 .tundra .dijitSliderIncrementIconH,
.dj_ie6 .tundra .dijitSliderIncrementIconV {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitSliderDecrementIconH {
background-position: -7px 0px;
}
.tundra .dijitSliderIncrementIconH {
background-position: -14px 0px;
}
.tundra .dijitSliderDecrementIconV {
background-position: 0px 0px;
}
.tundra .dijitSliderIncrementIconV {
background-position: -21px 0px;
}
.tundra .dijitSliderButtonInner {
visibility:hidden;
}
.tundra .dijitSliderReadOnly *,
.tundra .dijitSliderDisabled * {
border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5;
color: #bdbdbd;
}
.tundra .dijitSliderReadOnly .dijitSliderDecrementIconH,
.tundra .dijitSliderDisabled .dijitSliderDecrementIconH {
background-position: -35px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderIncrementIconH,
.tundra .dijitSliderDisabled .dijitSliderIncrementIconH {
background-position: -42px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderDecrementIconV,
.tundra .dijitSliderDisabled .dijitSliderDecrementIconV {
background-position: -28px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderIncrementIconV,
.tundra .dijitSliderDisabled .dijitSliderIncrementIconV {
background-position: -49px 0px;
}
.tundra .dijitSelect .dijitButtonNode {
padding: 0px;
}
.tundra .dijitSelect .dijitButtonNode .dijitArrowButtonInner {
margin: 0px 4px 0px 5px;
}
.tundra .dijitSelect .dijitButtonContents {
padding-top: 1px;
background:#fff url(images/validationInputBg.png) repeat-x top left;
#background:#fff url(images/validationInputBg.gif) repeat-x top left;
}
.tundra .dijitSelectHover .dijitButtonContents,
.tundra .dijitSelectActive .dijitButtonContents,
.tundra .dijitSelectOpened .dijitButtonContents,
.tundra .dijitSelectDisabled .dijitButtonContents,
.tundra .dijitSelectReadOnly .dijitButtonContents{
background: transparent none;
}
.dj_ie .tundra .dijitSelect .dijitButtonContents {
padding-top: 0px;
}
.tundra .dijitSelectDisabled .dijitButtonNode {
border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5;
background:#e4e4e4 url(images/buttonDisabled.png) top repeat-x;
}
.dj_ie .tundra .dijitSelectDisabled .dijitButtonNode * {
filter: gray() alpha(opacity=50);
}
.tundra .dijitSelectHover .dijitButtonNode {
border-color:#a5beda;
border-bottom-color:#5c7590;
border-right-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitSelectActive .dijitButtonNode,
.tundra .dijitSelectOpened .dijitButtonNode {
border-color:#366dba;
background: #ededed url(images/buttonActive.png) bottom repeat-x;
}
.tundra .dijitSelectMenu td {
padding: 0em;
}
.tundra .dijitSelectMenu .dijitMenuItemLabel,
.tundra .dijitSelectMenu .dijitMenuArrowCell {
padding: 0.1em 0.2em;
}
.tundra .dijitTreeNode {
background-image : url(images/i.gif);
background-repeat : repeat-y;
zoom: 1;
}
.tundra .dijitTreeIsLast {
background: url(images/i_half.gif) no-repeat;
}
.tundra .dijitTreeIsRoot {
margin-left: 0;
background-image: none;
}
.tundra .dijitTreeExpando {
width: 18px;
height: 18px;
}
.tundra .dijitTreeRow {
padding-bottom: 2px;
}
.tundra .dijitTreeContent {
min-height: 18px;
min-width: 18px;
}
.tundra .dijitTreeRowSelected .dijitTreeLabel {
background:#e2ebfe;
}
.tundra .dijitTreeRowHover {
background-image: url(images/treeHover.png);
background-repeat: repeat;
background-color: transparent !important;
}
.tundra .dijitTreeExpandoOpened {
background-image: url(images/treeExpand_minus.gif);
}
.tundra .dijitTreeExpandoClosed {
background-image: url(images/treeExpand_plus.gif);
}
.tundra .dijitTreeExpandoLeaf {
background-image: url(images/treeExpand_leaf.gif);
}
.tundra .dijitTreeExpandoLoading {
background-image: url(images/treeExpand_loading.gif);
}
.tundra .dijitTreeIcon {
width: 16px;
height: 16px;
}
.tundra .dijitFolderOpened {
background: url(images/folderOpened.gif) no-repeat;
}
.tundra .dijitFolderClosed {
background: url(images/folderClosed.gif) no-repeat;
}
.tundra .dijitLeaf {
background: url(images/leaf.gif) no-repeat;
}
.tundra .dijitTreeNode .dojoDndItemBefore,
.tundra .dijitTreeNode .dojoDndItemAfter {
border-bottom: none;
border-top: none;
}
.tundra .dijitTreeNode .dojoDndItemBefore .dijitTreeContent {
border-top: 2px solid #369;
}
.tundra .dijitTreeNode .dojoDndItemAfter .dijitTreeContent {
border-bottom: 2px solid #369;
}
.tundra .dijitProgressBar {
margin:2px 0px 2px 0px;
}
.tundra .dijitProgressBarEmpty {
background:#fff url(images/progressBarEmpty.png) repeat-x center center;
border-color: #a2a2a2 #b8b8b8 #b8b8b8 #a2a2a2;
}
.tundra .dijitProgressBarTile {
background:#f0f0f0 url(images/progressBarFull.png) repeat-x center center;
}
.tundra .dijitProgressBarFull {
border-right:1px solid #b8b8b8;
}
.tundra .dijitProgressBarLabel {
color:#293a4b;
}
.tundra .dijitProgressBarIndeterminate .dijitProgressBarTile {
background:#cad2de url(images/progressBarAnim.gif) repeat-x center center;
}
.tundra .dijitTitlePaneTitle {
background: #cccccc;
background:#fff url(images/titleBar.png) repeat-x bottom left;
border:1px solid #bfbfbf;
padding:3px 4px;
}
.tundra .dijitTitlePaneTitleHover {
background: #f8fafd url(images/accordionItemHover.gif) bottom repeat-x;
}
.tundra .dijitTitlePane .dijitArrowNode {
background-image: url(images/spriteArrows.png);
background-repeat: no-repeat;
background-position: 0px 0px;
height: 7px;
width: 7px;
}
.dj_ie6 .tundra .dijitTitlePane .dijitArrowNode {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitTitlePane .dijitClosed .dijitArrowNode {
background-position: -14px 0px;
}
.tundra .dijitTitlePaneContentOuter {
background: #ffffff;
border:1px solid #bfbfbf;
border-top: 0px;
}
.tundra .dijitTitlePaneContentInner {
padding:10px;
}
.tundra .dijitTitlePaneTextNode {
margin-left: 4px;
margin-right: 4px;
}
.tundra .dijitCalendarIncrementControl {
width:15px;
height:15px;
background-image: url(images/spriteRoundedIconsSmall.png);
background-repeat: no-repeat
}
.dj_ie6 .tundra .dijitCalendarIncrementControl {
font-size:.1em;
background-image: url(images/spriteRoundedIconsSmall.gif);
}
.tundra .dijitA11ySideArrow {
display: none;
}
.tundra .dijitCalendarDecrease {
background-position: top left;
}
.tundra .dijitCalendarIncrease {
background-position: -30px top;
}
.tundra .dijitCalendarContainer {
font-size: 100%;
border-spacing: 0;
border-collapse: separate;
border: 1px solid #ccc;
margin: 0;
}
.tundra .dijitCalendarMonthContainer th {
background:#d3d3d3 url(images/titleBar.png) repeat-x top;
padding-top:.3em;
padding-bottom:.2em;
text-align:center;
}
.dj_ie6 .tundra .dijitCalendarMonthContainer th {
padding-top:.2em;
padding-bottom:.1em;
}
.tundra .dijitCalendarDayLabelTemplate {
background:white url(images/calendarDayLabel.png) repeat-x bottom;
font-weight:normal;
padding-top:.15em;
padding-bottom:0em;
border-top: 1px solid #eeeeee;
color:#293a4b;
text-align:center;
}
.tundra .dijitCalendarBodyContainer {
border-bottom: 1px solid #eeeeee;
}
.tundra .dijitCalendarMonthLabel {
color:#293a4b;
font-weight: bold;
}
.tundra .dijitCalendarDateTemplate {
font-size: 0.9em;
font-weight: bold;
text-align: center;
padding: 0.3em 0.3em 0.05em 0.3em;
letter-spacing: 1px;
}
.dj_ie .tundra .dijitCalendarDateTemplate {
padding: 0.1em .33em 0.02em .33em;
}
.tundra .dijitCalendarPreviousMonth,
.tundra .dijitCalendarNextMonth {
color:#999999;
background-color:#f8f8f8;
}
.tundra .dijitCalendarCurrentMonth {
background-color: white;
}
.tundra .dijitCalendarCurrentDate {
text-decoration:underline;
font-weight:bold;
}
.tundra .dijitCalendarHoveredDate {
background-color: #e2ebf2;
}
.tundra .dijitCalendarDisabledDate {
text-decoration: line-through;
background-color: white;
}
.tundra .dijitCalendarSelectedDate {
background-color:#bbc4d0 !important;
color:black !important;
}
.tundra .dijitCalendarYearContainer {
background:white url(images/calendarYearLabel.png) repeat-x bottom;
border-top:1px solid #ccc;
}
.tundra .dijitCalendarYearLabel {
margin:0;
padding:0.4em 0 0.25em 0;
text-align:center;
}
.tundra .dijitCalendarSelectedYear {
color:black;
padding:0.2em;
padding-bottom:0.1em;
background-color:#bbc4d0 !important;
}
.tundra .dijitCalendarNextYear,
.tundra .dijitCalendarPreviousYear {
color:black !important;
font-weight:normal;
}
.tundra .dijitTimePickerTick,
.tundra .dijitTimePickerMarker {
border-color: #ccc;
}
.tundra .dijitTimePickerTick {
color:white;
}
.tundra .dijitTimePickerMarker {
background:#d3d3d3 url(images/titleBar.png) repeat-x top;
color:#293a4b;
font-weight: bold;
}
.tundra .dijitTimePickerItemSelected {
color: black;
background: #bbc4d0 none;
}
.tundra .dijitTimePickerItemHover {
background: #60a1ea none;
color:white;
}
.tundra .dijitTimePickerItemHover,
.tundra .dijitTimePickerItemSelected {
position: relative;
z-index: 10;
}
.tundra .dijitTimePickerTick .dijitTimePickerItemInner {
font-size:0.4em;
}
.tundra .dijitTimePickerItemHover .dijitTimePickerItemInner,
.tundra .dijitTimePickerItemSelected .dijitTimePickerItemInner {
font-size:1em;
}
.tundra .dijitTimePickerMarkerHover {
border-top: 1px solid #ccc;
}
.tundra .dijitTimePickerTickHover,
.tundra .dijitTimePickerTickSelected {
margin-top:-0.3em;
margin-bottom:-0.3em;
border-bottom: none;
}
.tundra .dijitToolbar {
border-bottom: 1px solid #ccc;
background:#eaeaea url(images/titleBar.png) repeat-x top left;
}
.dj_ie6 .tundra .dijitToolbar {
height: 10px;
}
.tundra .dijitToolbar .dijitButtonNode,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContents,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButton {
background: none;
margin: 0px;
padding: 0px;
border: none;
font-size: 12px;
}
.tundra .dijitToolbar .dijitButton,
.tundra .dijitToolbar .dijitToggleButton,
.tundra .dijitToolbar .dijitDropDownButton,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContents,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButton {
background: none;
padding: 1px;
}
.tundra .dijitToolbar .dijitButtonChecked,
.tundra .dijitToolbar .dijitToggleButtonChecked {
background-color:#d4dff2;
border:1px solid #316ac5;
padding: 0px;
}
.tundra .dijitToolbar .dijitButtonCheckedHover,
.tundra .dijitToolbar .dijitToggleButtonCheckedHover
{
background-color:#abc1e5;
border:1px solid #316ac5;
padding: 0px;
}
.tundra .dijitToolbar .dijitButtonHover,
.tundra .dijitToolbar .dijitToggleButtonHover,
.tundra .dijitToolbar .dijitDropDownButtonHover,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContentsHover,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButtonHover {
border: 1px solid #869cbf;
padding: 0px;
background-color:#e1e5f0;
}
.tundra .dijitToolbar label {
padding: 3px 3px 0 6px;
}
.dj_ie .tundra .dijitToolbar .dijitComboButton .dijitButtonContentsFocused,
.dj_ie .tundra .dijitToolbar .dijitComboButton .dijitDownArrowButtonFocused {
border: 1px #555 dotted !important;
padding: 0px;
}
.tundra .dijitToolbarSeparator {
background: url(../../icons/images/editorIconsEnabled.png);
}
.tundra .dijitToolbarRtl .dijitToolbarSeparator {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.tundra .dijitDialog {
background: #fff;
border: 1px solid #7eabcd;
padding: 0px;
-webkit-box-shadow: 0px 5px 10px #adadad;
}
.tundra .dijitDialogPaneContent {
background: #fff;
border-top: 1px solid #d3d3d3;
padding:10px;
}
.tundra .dijitDialogTitleBar {
background: #fafafa url(images/titleBar.png) repeat-x top left;
padding: 5px 6px 3px 6px;
outline:0;
}
.tundra .dijitDialogTitle {
font-weight: bold;
padding: 0px 4px;
}
.tundra .dijitDialogCloseIcon {
background: url(images/tabClose.png) no-repeat right top;
position: absolute;
vertical-align: middle;
right: 6px;
top: 4px;
height: 15px;
width: 15px;
}
.dj_ie6 .tundra .dijitDialogCloseIcon {
background : url(images/tabClose.gif) no-repeat right top;
}
.tundra .dijitDialogCloseIconHover {
background: url(images/tabCloseHover.png) no-repeat right top;
}
.dj_ie6 .tundra .dijitDialogCloseIconHover {
background : url(images/tabCloseHover.gif) no-repeat right top;
}
.tundra .dijitTooltip,
.tundra .dijitTooltipDialog {
background: transparent;
}
.dijitTooltipBelow {
padding-top: 13px;
}
.dijitTooltipAbove {
padding-bottom: 13px;
}
.tundra .dijitTooltipContainer {
background: #ffffff url(images/popupMenuBg.gif) repeat-x bottom left;
border: 1px solid #7eabcd;
padding: 0.45em;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.tundra .dijitTooltipConnector {
border:0px;
z-index: 2;
}
.tundra .dijitTooltipABRight .dijitTooltipConnector {
left: auto !important;
right: 3px;
}
.tundra .dijitTooltipBelow .dijitTooltipConnector {
top: 0px;
left: 3px;
background:url(images/tooltipConnectorUp.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipBelow .dijitTooltipConnector {
background-image: url(images/tooltipConnectorUp.gif);
}
.tundra .dijitTooltipAbove .dijitTooltipConnector {
bottom: 0px;
left: 3px;
background:url(images/tooltipConnectorDown.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipAbove .dijitTooltipConnector {
background-image: url(images/tooltipConnectorDown.gif);
}
.dj_ie6 .tundra .dijitTooltipAbove .dijitTooltipConnector {
bottom: -3px;
}
.tundra .dijitTooltipLeft {
padding-right: 14px;
}
.dj_ie6 .tundra .dijitTooltipLeft {
padding-left: 15px;
}
.tundra .dijitTooltipLeft .dijitTooltipConnector {
right: 0px;
bottom: 3px;
background:url(images/tooltipConnectorRight.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipLeft .dijitTooltipConnector {
background-image: url(images/tooltipConnectorRight.gif);
}
.tundra .dijitTooltipRight {
padding-left: 14px;
}
.tundra .dijitTooltipRight .dijitTooltipConnector {
left: 0px;
bottom: 3px;
background:url(images/tooltipConnectorLeft.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipRight .dijitTooltipConnector {
background-image: url(images/tooltipConnectorLeft.gif);
}
.dj_webkit .tundra .dijitTooltipContainer {
-webkit-box-shadow: 0px 5px 10px #adadad;
}
.tundra .dijitMenu,
.tundra .dijitMenuBar {
border: 1px solid #7eabcd;
margin: 0px;
padding: 0px;
background-color: #f7f7f7;
}
.tundra .dijitBorderContainer .dijitMenuBar {
border:1px solid #ccc;
}
.tundra .dijitMenuItem {
font-family: sans-serif;
margin: 0;
}
.tundra .dijitMenuItem {
padding: 4px 5px;
}
.tundra .dijitMenuPreviousButton, .tundra .dijitMenuNextButton {
font-style: italic;
}
.tundra .dijitMenuItem td {
padding: 2px;
}
.tundra .dijitMenuPassive .dijitMenuItemHover,
.tundra .dijitMenuItemSelected {
background-color: #3559ac;
color:#fff;
}
.tundra .dijitMenuItemIcon {
width: 16px;
height: 16px;
}
.tundra .dijitMenuExpand {
width: 7px;
height: 7px;
background-image: url(images/spriteArrows.png);
background-position: -14px 0px;
}
.dj_ie6 .tundra .dijitMenuExpand {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitMenuSeparatorTop {
border-bottom: 1px solid #9b9b9b;
}
.tundra .dijitMenuSeparatorBottom {
border-top: 1px solid #e8e8e8;
}
.tundra .dijitCheckedMenuItemIconChar {
display: none;
}
.tundra .dijitCheckedMenuItemIcon {
background-image: url(images/checkmark.png);
background-position: -80px;
}
.dj_ie6 .tundra .dijitCheckedMenuItemIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon {
background-position: -64px;
}
.dijitEditor {
border:1px solid #bfbfbf;
border-top:0;
}
.tundra .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled.png);
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.tundra .dijitDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled.png);
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.dijitDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.dijitEditorIconSep { background-position: 0px; }
.dijitEditorIconSave { background-position: -18px; }
.dijitEditorIconPrint { background-position: -36px; }
.dijitEditorIconCut { background-position: -54px; }
.dijitEditorIconCopy { background-position: -72px; }
.dijitEditorIconPaste { background-position: -90px; }
.dijitEditorIconDelete { background-position: -108px; }
.dijitEditorIconCancel { background-position: -126px; }
.dijitEditorIconUndo { background-position: -144px; }
.dijitEditorIconRedo { background-position: -162px; }
.dijitEditorIconSelectAll { background-position: -180px; }
.dijitEditorIconBold { background-position: -198px; }
.dijitEditorIconItalic { background-position: -216px; }
.dijitEditorIconUnderline { background-position: -234px; }
.dijitEditorIconStrikethrough { background-position: -252px; }
.dijitEditorIconSuperscript { background-position: -270px; }
.dijitEditorIconSubscript { background-position: -288px; }
.dijitEditorIconJustifyCenter { background-position: -306px; }
.dijitEditorIconJustifyFull { background-position: -324px; }
.dijitEditorIconJustifyLeft { background-position: -342px; }
.dijitEditorIconJustifyRight { background-position: -360px; }
.dijitEditorIconIndent { background-position: -378px; }
.dijitEditorIconOutdent { background-position: -396px; }
.dijitEditorIconListBulletIndent { background-position: -414px; }
.dijitEditorIconListBulletOutdent { background-position: -432px; }
.dijitEditorIconListNumIndent { background-position: -450px; }
.dijitEditorIconListNumOutdent { background-position: -468px; }
.dijitEditorIconTabIndent { background-position: -486px; }
.dijitEditorIconLeftToRight { background-position: -504px; }
.dijitEditorIconRightToLeft, .dijitEditorIconToggleDir { background-position: -522px; }
.dijitEditorIconBackColor { background-position: -540px; }
.dijitEditorIconForeColor { background-position: -558px; }
.dijitEditorIconHiliteColor { background-position: -576px; }
.dijitEditorIconNewPage { background-position: -594px; }
.dijitEditorIconInsertImage { background-position: -612px; }
.dijitEditorIconInsertTable { background-position: -630px; }
.dijitEditorIconSpace { background-position: -648px; }
.dijitEditorIconInsertHorizontalRule { background-position: -666px; }
.dijitEditorIconInsertOrderedList { background-position: -684px; }
.dijitEditorIconInsertUnorderedList { background-position: -702px; }
.dijitEditorIconCreateLink { background-position: -720px; }
.dijitEditorIconUnlink { background-position: -738px; }
.dijitEditorIconViewSource { background-position: -756px; }
.dijitEditorIconRemoveFormat { background-position: -774px; }
.dijitEditorIconFullScreen { background-position: -792px; }
.dijitEditorIconWikiword { background-position: -810px; }
.dijitColorPalette {
border:1px solid #7eabcd;
background:#fff;
-moz-border-radius: 0px !important;
}
.dijitRtl .dijitPlaceHolder {
left: auto;
right: 0;
}
.dijitMenuItemRtl {
text-align: right;
}
.dj_iequirks .dijitComboButtonRtl BUTTON {
float:left;
}
.dijit_a11y .dijitTextBoxRtl .dijitValidationContainer,
.dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijitComboBoxRtl .dijitArrowButtonContainer {
border-right-width: 1px !important;
border-right-style: solid !important;
border-left-width: 0px !important;
border-left-style: none !important;
}
.dijit_a11y .dijitTextBoxRtl .dijitValidationContainer,
.dijit_a11y .dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijit_a11y .dijitComboBoxRtl .dijitArrowButtonContainer {
border-right: 1px solid black !important;
border-left: 0px none black !important;
}
.dijitSpinnerRtl .dijitSpinnerButtonContainer .dijitArrowButton {
right: 0;
left: auto;
}
.dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijitTextBoxRtl .dijitValidationContainer,
.dijitTextBoxRtl .dijitArrowButtonContainer {
float: left;
}
.dijitCalendarRtl .dijitCalendarNextYear {
margin:0 0.55em 0 0;
}
.dijitCalendarRtl .dijitCalendarPreviousYear {
margin:0 0 0 0.55em;
}
.dijitSliderRtl .dijitSliderImageHandleV {
left:auto;
}
.dijitSliderRtl .dijitSliderImageHandleH {
left:-50%;
}
.dijitSliderRtl .dijitSliderMoveableH {
right:auto;
left:0;
}
.dijitSliderRtl .dijitRuleContainerV {
float:right;
}
.dj_ie .dijitSliderRtl .dijitRuleContainerV {
text-align:right;
}
.dj_ie .dijitSliderRtl .dijitRuleLabelV {
text-align:left;
}
.dj_ie .dijitSliderRtl .dijitRuleLabelH {
zoom:1;
}
.dijitSliderRtl .dijitSliderProgressBarH {
float:right;
right:0;
left:auto;
}
.dijitRtl .dijitContentPaneLoading, .dijitRtl .dijitContentPaneError {
background-position:right;
padding-right:25px;
}
.dijitTabRtl .dijitTabCloseButton {
margin-left: 0px;
margin-right: 1em;
}
.dj_ie .dijitTimePickerRtl .dijitTimePickerItem {
width:100%;
}
.dijitColorPaletteRtl .dijitColorPaletteUnder {
left: auto;
right: 0;
}
.dijitSelectRtl .dijitButtonContents {
text-align: right;
}
.tundra .dijitCalendarRtl .dijitCalendarDecrease {
background-position: -30px top;
}
.tundra .dijitCalendarRtl .dijitCalendarIncrease {
background-position: 0px top;
}
.dj_ie6 .tundra .dijitTimePickerRtl .dijitTimePickerMarkerHover,
.dj_ie7 .tundra .dijitTimePickerRtl .dijitTimePickerMarkerHover {
border-top: 0px;
}
.tundra .dijitDialogRtl .dijitDialogCloseIcon {
right: auto;
left: 5px;
}
.tundra .dijitEditorRtl .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.tundra .dijitEditorRtlDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled_rtl.png);
}
.dijitEditorRtl .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.dijitEditorRtlDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled_rtl.png);
}
.dijitToolbarRtl .dijitToolbarSeparator {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.tundra .dijitMenuItemRtl .dijitMenuExpand {
background-position: -7px 0px;
}
.tundra .dijitTreeNodeRtl,
.tundra .dijitTreeNodeRtl .dijitTreeExpandoLeaf {
background-image: none;
}
.tundra .dijitTreeNodeRtl .dijitTreeExpandoOpened {
background-image: url(images/treeExpand_minus_rtl.gif);
}
.tundra .dijitTreeNodeRtl .dijitTreeExpandoClosed {
background-image: url(images/treeExpand_plus_rtl.gif);
}
.tundra .dijitTitlePaneRtl .dijitClosed .dijitArrowNode {
background-position: -7px 0px;
}
.tundra .dijitTabRtl {
-moz-box-orient:horizontal;
text-align: right;
}
.tundra .dijitTabRtl .dijitTabInnerDiv {
padding:2px 9px 2px 8px;
}
.tundra .tabStrip-disabled .tabStripButtonRtl .dijitTabInnerDiv {
padding-bottom: 3px;
padding-top: 1px;
}
.tundra .tabStripButtonRtl .dijitTabInnerDiv {
padding: 3px 2px 4px 2px;
}
.tundra .dijitTabPaneWrapper {
#zoom: 1;
}
.dj_ie-rtl .tundra .dijitTabContainerLeft-tabs {
margin-left: 1px !important;
}
.dj_ie-rtl .tundra .dijitTabContainerRight-tabs {
margin-right: 1px !important;
}
.tundra .dijitTabContainerLeft-tabs .dijitTabRtl,
.tundra .dijitTabContainerRight-tabs .dijitTabRtl {
margin-left:0px;
}
.dj_ie .tundra .dijitTabRtl .dijitTabInnerDiv {
width : 0.1% !important;
}
.dj_iequirks-rtl .tundra .dijitTabContainerTopNone,
.dj_iequirks-rtl .tundra .dijitTabContainerBottomNone {
border-left: 1px solid #fff;
border-right: 1px solid #fff;
}
.tundra .dijitSliderRtl .dijitSliderProgressBarH,
.tundra .dijitSliderRtl .dijitSliderRemainingBarH,
.tundra .dijitSliderRtl .dijitSliderLeftBumper,
.tundra .dijitSliderRtl .dijitSliderRightBumper,
.tundra .dijitSliderRtl .dijitSliderTopBumper {
background-position: top right;
}
.tundra .dijitSliderRtl .dijitSliderProgressBarV,
.tundra .dijitSliderRtl .dijitSliderRemainingBarV,
.tundra .dijitSliderRtl .dijitSliderBottomBumper {
background-position: bottom right;
}
.tundra .dijitSliderRtl .dijitSliderLeftBumper {
border-left-width: 0px;
border-right-width: 1px;
}
.tundra .dijitSliderRtl .dijitSliderRightBumper {
border-left-width: 1px;
border-right-width: 0px;
}
.tundra .dijitSliderRtl .dijitSliderIncrementIconH {
background-position: -7px 0px;
}
.tundra .dijitSliderRtl .dijitSliderDecrementIconH {
background-position: -14px 0px;
} | public_html/js/dojo/dijit/themes/tundra/tundra.css | @import url("../dijit.css");
.dijitIconSave,
.dijitIconPrint,
.dijitIconCut,
.dijitIconCopy,
.dijitIconClear,
.dijitIconDelete,
.dijitIconUndo,
.dijitIconEdit,
.dijitIconNewTask,
.dijitIconEditTask,
.dijitIconEditProperty,
.dijitIconTask,
.dijitIconFilter,
.dijitIconConfigure,
.dijitIconSearch,
.dijitIconApplication,
.dijitIconBookmark,
.dijitIconChart,
.dijitIconConnector,
.dijitIconDatabase,
.dijitIconDocuments,
.dijitIconMail,
.dijitLeaf,
.dijitIconFile,
.dijitIconFunction,
.dijitIconKey,
.dijitIconPackage,
.dijitIconSample,
.dijitIconTable,
.dijitIconUsers,
.dijitFolderClosed,
.dijitIconFolderClosed,
.dijitFolderOpened,
.dijitIconFolderOpen,
.dijitIconError {
background-image: url(../../icons/images/commonIconsObjActEnabled.png);
width: 16px;
height: 16px;
}
.dj_ie6 .dijitIconSave,
.dj_ie6 .dijitIconPrint,
.dj_ie6 .dijitIconCut,
.dj_ie6 .dijitIconCopy,
.dj_ie6 .dijitIconClear,
.dj_ie6 .dijitIconDelete,
.dj_ie6 .dijitIconUndo,
.dj_ie6 .dijitIconEdit,
.dj_ie6 .dijitIconNewTask,
.dj_ie6 .dijitIconEditTask,
.dj_ie6 .dijitIconEditProperty,
.dj_ie6 .dijitIconTask,
.dj_ie6 .dijitIconFilter,
.dj_ie6 .dijitIconConfigure,
.dj_ie6 .dijitIconSearch,
.dj_ie6 .dijitIconApplication,
.dj_ie6 .dijitIconBookmark,
.dj_ie6 .dijitIconChart,
.dj_ie6 .dijitIconConnector,
.dj_ie6 .dijitIconDatabase,
.dj_ie6 .dijitIconDocuments,
.dj_ie6 .dijitIconMail,
.dj_ie6 .dijitLeaf,
.dj_ie6 .dijitIconFile,
.dj_ie6 .dijitIconFunction,
.dj_ie6 .dijitIconKey,
.dj_ie6 .dijitIconPackage,
.dj_ie6 .dijitIconSample,
.dj_ie6 .dijitIconTable,
.dj_ie6 .dijitIconUsers,
.dj_ie6 .dijitFolderClosed,
.dj_ie6 .dijitIconFolderClosed,
.dj_ie6 .dijitFolderOpened,
.dj_ie6 .dijitIconFolderOpen,
.dj_ie6 .dijitIconError {
background-image: url(../../icons/images/commonIconsObjActEnabled8bit.png);
}
.dijitDisabled .dijitIconSave,
.dijitDisabled .dijitIconPrint,
.dijitDisabled .dijitIconCut,
.dijitDisabled .dijitIconCopy,
.dijitDisabled .dijitIconClear,
.dijitDisabled .dijitIconDelete,
.dijitDisabled .dijitIconUndo,
.dijitDisabled .dijitIconEdit,
.dijitDisabled .dijitIconNewTask,
.dijitDisabled .dijitIconEditTask,
.dijitDisabled .dijitIconEditProperty,
.dijitDisabled .dijitIconTask,
.dijitDisabled .dijitIconFilter,
.dijitDisabled .dijitIconConfigure,
.dijitDisabled .dijitIconSearch,
.dijitDisabled .dijitIconApplication,
.dijitDisabled .dijitIconBookmark,
.dijitDisabled .dijitIconChart,
.dijitDisabled .dijitIconConnector,
.dijitDisabled .dijitIconDatabase,
.dijitDisabled .dijitIconDocuments,
.dijitDisabled .dijitIconMail,
.dijitDisabled .dijitLeaf,
.dijitDisabled .dijitIconFile,
.dijitDisabled .dijitIconFunction,
.dijitDisabled .dijitIconKey,
.dijitDisabled .dijitIconPackage,
.dijitDisabled .dijitIconSample,
.dijitDisabled .dijitIconTable,
.dijitDisabled .dijitIconUsers,
.dijitDisabled .dijitFolderClosed,
.dijitDisabled .dijitIconFolderClosed,
.dijitDisabled .dijitFolderOpened,
.dijitDisabled .dijitIconFolderOpen,
.dijitDisabled .dijitIconError {
background-image: url(../../icons/images/commonIconsObjActDisabled.png);
}
.dijitIconSave { background-position: 0px; }
.dijitIconPrint { background-position: -16px; }
.dijitIconCut { background-position: -32px; }
.dijitIconCopy { background-position: -48px; }
.dijitIconClear { background-position: -64px; }
.dijitIconDelete { background-position: -80px; }
.dijitIconUndo { background-position: -96px; }
.dijitIconEdit { background-position: -112px; }
.dijitIconNewTask { background-position: -128px; }
.dijitIconEditTask { background-position: -144px; }
.dijitIconEditProperty { background-position: -166px; }
.dijitIconTask { background-position: -176px; }
.dijitIconFilter { background-position: -192px; }
.dijitIconConfigure { background-position: -208px; }
.dijitIconSearch { background-position: -224px; }
.dijitIconError { background-position: -496px; }
.dijitIconApplication { background-position: -240px; }
.dijitIconBookmark { background-position: -256px; }
.dijitIconChart { background-position: -272px; }
.dijitIconConnector { background-position: -288px; }
.dijitIconDatabase { background-position: -304px; }
.dijitIconDocuments { background-position: -320px; }
.dijitIconMail { background-position: -336px; }
.dijitIconFile, .dijitLeaf { background-position: -352px; }
.dijitIconFunction { background-position: -368px; }
.dijitIconKey { background-position: -384px; }
.dijitIconPackage{ background-position: -400px; }
.dijitIconSample { background-position: -416px; }
.dijitIconTable { background-position: -432px; }
.dijitIconUsers { background-position: -448px; }
.dijitIconFolderClosed, .dijitFolderClosed { background-position: -464px; }
.dijitIconFolderOpen, .dijitFolderOpened { background-position: -480px; }
.tundra .dojoDndItemBefore {
border-top: 2px solid #369;
}
.tundra .dojoDndItemAfter {
border-bottom: 2px solid #369;
}
.tundra .dojoDndItemOver {
cursor:pointer;
}
.tundra table.dojoDndAvatar { -moz-border-radius: 0; border: 1px solid #ccc; border-collapse: collapse; background-color: #fff; font-size: 75%; color: black;}
.tundra .dojoDndAvatar td { border: none; }
.tundra .dojoDndAvatar tr { border: none; }
.tundra .dojoDndAvatarHeader td { height: 20px; padding: 0 0 0 21px; }
.tundra .dojoDndAvatarItem td { padding: 2px;}
.tundra.dojoDndMove .dojoDndAvatarHeader {background-color: #f58383; background-image: url(images/dndNoMove.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndCopy .dojoDndAvatarHeader {background-color: #f58383; background-image: url(images/dndNoCopy.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndMove .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-color: #97e68d; background-image: url(images/dndMove.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra.dojoDndCopy .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-color: #97e68d; background-image: url(images/dndCopy.png); background-repeat: no-repeat; background-position: 2px center;}
.tundra .dijitContentPaneLoading {
background:url(images/loading.gif) no-repeat left center;
padding-left:25px;
}
.tundra .dijitContentPaneError {
background:url(images/warning.png) no-repeat left center;
padding-left:25px;
}
.tundra .dijitContentPane {
padding: 0px;
}
.tundra .dijitTabContainerTop-dijitContentPane,
.tundra .dijitTabContainerLeft-dijitContentPane,
.tundra .dijitTabContainerBottom-dijitContentPane,
.tundra .dijitTabContainerRight-dijitContentPane,
.tundra .dijitAccordionContainer-dijitContentPane {
background-color: #fff;
padding: 5px;
}
.tundra .dijitSplitContainer-dijitContentPane,
.tundra .dijitBorderContainer-dijitContentPane {
background-color: #fff;
padding: 5px;
}
.tundra .dijitTabPaneWrapper {
background:#fff;
border:1px solid #ccc;
margin: 0;
padding: 0;
}
.tundra .dijitTab {
line-height:normal;
margin-right:4px;
padding:0px;
border:1px solid #ccc;
background:#e2e2e2 url(images/tabEnabled.png) repeat-x;
}
.tundra .dijitTabInnerDiv {
padding:2px 8px 2px 9px;
}
.tundra .dijitTabSpacer {
display: none;
}
.tundra .dijitTabContainer .tabStripRBtn {
margin-right: 20px;
}
.tundra .dijitTabContainer .tabStripLBtn {
margin-left: 20px;
}
.tundra .nowrapTabStrip .dijitTab {
top: 2px;
}
.tundra .dijitTabContainerBottom .nowrapTabStrip .dijitTab {
top: 0px;
bottom: 2px;
}
.tundra .dijitTabChecked {
background-color:#fff;
border-color: #ccc;
background-image:none;
}
.tundra .dijitTabHover {
color: #243C5F;
border-top-color:#92a0b3;
border-left-color:#92a0b3;
border-right-color:#92a0b3;
border-bottom-color:#92a0b3;
background:#e2e2e2 url(images/tabHover.gif) repeat-x;
}
.tundra .dijitTabContainerTop .dijitTabHover {
border-bottom-color:#ccc;
}
.tundra .dijitTabContainerBottom .dijitTabHover {
border-top-color:#ccc;
}
.tundra .dijitTabContainerLeft .dijitTabHover {
border-right-color:#ccc;
}
.tundra .dijitTabContainerRight .dijitTabHover {
border-left-color:#ccc;
}
.tundra .dijitTabContainer .dijitTabCheckedHover {
color: inherit;
border:1px solid #ccc;
background:#fff;
}
.tundra .dijitTab .tabLabel {
min-height: 12px;
display: inline-block;
}
.tundra .dijitTabContainerNested .dijitTabListWrapper {
height: auto;
}
.tundra .dijitTabContainerNested .dijitTabContainerTop-tabs {
border-bottom: 1px solid #CCC;
}
.tundra .dijitTabContainerTabListNested .dijitTab {
background: none;
border: none;
top: 0px;
}
.tundra .dijitTabContainerTabListNested .dijitTab .dijitTabContent {
}
.tundra .dijitTabContainerTabListNested .dijitTabHover .dijitTabContent .tabLabel {
text-decoration: underline;
}
.tundra .dijitTabContainerTabListNested .dijitTabChecked .dijitTabContent .tabLabel {
text-decoration: underline;
font-weight: bold;
}
.tundra .dijitTabContainer .dijitTabPaneWrapperNested {
border: none;
}
.tundra .dijitTabCloseButton {
background: url(images/tabClose.png) no-repeat right top;
width: 12px;
height: 12px;
}
.dj_ie6 .tundra .dijitTabCloseButton {
background-image : url(images/tabClose.gif);
}
.tundra .dijitTabCloseButtonHover {
background-image : url(images/tabCloseHover.png);
}
.dj_ie6 .tundra .dijitTabCloseButtonHover {
background-image : url(images/tabCloseHover.gif);
}
.tundra .dijitTabContainerTop-tabs {
margin-bottom: 0px;
border-color: #cccccc;
padding-left: 3px;
background-position: bottom;
}
.tundra .dijitTabContainerTop-tabs .dijitTab {
top: 0px;
margin-bottom: -1px;
}
.tundra .dijitTabContainerTop-container {
border-top: none;
}
.tundra .dijitTabContainerTop-tabs .dijitTabChecked {
border-bottom-color:white;
}
.tundra .dijitTabContainerTop-tabs,
.tundra .dijitTabContainerBottom-tabs {
padding-left: 3px;
padding-right: 3px;
}
.tundra .dijitTabContainerTopStrip {
border-top: 1px solid #CCC;
border-right: 1px solid #CCC;
border-left: 1px solid #CCC;
padding-top: 2px;
background: #f2f2f2;
}
.tundra .dijitTabContainerTopNone {
padding-top: 0px;
}
.tundra .dijitTabContainerBottom-tabs {
margin-top: 0px;
border-color: #cccccc;
background-position: top;
padding-left: 3px;
}
.tundra .dijitTabContainerBottom-tabs .dijitTab {
bottom: 0px;
margin-top: -1px;
}
.tundra .dijitTabContainerBottom-container {
border-bottom: none;
}
.tundra .dijitTabContainerBottom-tabs .dijitTabChecked {
border-top-color:white;
}
.tundra .dijitTabContainerBottomStrip {
padding-bottom: 2px;
border: 1px solid #ccc;
background: #f2f2f2;
border-top: none;
}
.tundra .dijitTabContainerRight-tabs {
border-color: #ccc;
height: 100%;
padding-top: 3px;
}
.tundra .dijitTabContainerRightStrip {
margin-left: -1px;
}
.tundra .dijitTabContainerRight-container {
border-right: none;
}
.tundra .dijitTabContainerRight-tabs .dijitTabChecked {
border-left-color:white;
}
.tundra .dijitTabContainerRightStrip {
padding-right: 2px;
border: 1px solid #ccc;
}
.tundra .dijitTabContainerRightStrip {
background: #f2f2f2;
}
.tundra .dijitTabContainerLeft-tabs {
border-color: #ccc;
padding-top: 3px;
height: 100%;
}
.tundra .dijitTabContainerLeft-container {
border-left: none;
}
.tundra .dijitTabContainerLeft-tabs .dijitTabChecked {
border-right-color:white;
}
.tundra .dijitTabContainerLeftStrip {
padding-left: 2px;
border: 1px solid #ccc;
background: #f2f2f2;
border-right: none;
}
.tundra .dijitTabContainerLeft-tabs .dijitTab,
.tundra .dijitTabContainerRight-tabs .dijitTab {
margin-right:0px;
margin-bottom:4px;
}
.tundra .dijitTabContainerTop-dijitContentPane .dijitTabContainerTop-tabs {
border-left: 0px solid #ccc;
border-top: 0px solid #ccc;
border-right: 0px solid #ccc;
padding-top: 0px;
padding-left: 0px;
}
.tundra .dijitTabContainer .tabStripButton {
margin-right: 0;
padding-top: 2px;
z-index: 12;
}
.tundra .dijitTabContainerBottom .tabStripButton {
padding-top: 2px;
}
.tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv {
padding-bottom: 3px;
padding-top: 1px;
}
.tundra .tabStripButton .dijitTabInnerDiv {
padding: 3px 2px 4px 2px;
}
.dj_ie6 .tundra .tabStripButton .dijitTabInnerDiv,
.dj_ie7 .tundra .tabStripButton .dijitTabInnerDiv,
.dj_opera .tundra .tabStripButton .dijitTabInnerDiv {
padding-bottom: 5px;
}
.dj_ie6 .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv,
.dj_ie7 .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv,
.dj_opera .tundra .tabStrip-disabled .tabStripButton .dijitTabInnerDiv {
padding-bottom: 4px;
}
.tundra .dijitTabStripIcon {
height: 14px;
width: 14px;
background: url(images/spriteRoundedIconsSmall.png) no-repeat left top ;
}
.dj_ie6 .tundra .dijitTabStripIcon {
background-image: url(images/spriteRoundedIconsSmall.gif);
}
.tundra .dijitTabStripSlideRightIcon {
background-position: -30px top;
}
.tundra .dijitTabStripMenuIcon {
background-position: -15px top;
}
.tundra .dijitAccordionContainer {
border-color: #ccc;
background-color: #fff;
}
.tundra .dijitAccordionTitle {
background:#fafafa url(images/titleBar.png) repeat-x bottom left;
border-top: 1px solid #bfbfbf;
padding: 4px 4px 4px 8px;
}
.tundra .dijitAccordionTitleHover {
background: #f8fafd url(images/accordionItemHover.gif) bottom repeat-x;
}
.tundra .dijitAccordionTitleSelected {
background: #f9f9f9 url(images/accordionItemActive.gif) bottom repeat-x;
font-weight: bold;
border-top: 1px solid #aaaaaa;
border-bottom: 1px solid #bfbfbf;
padding: 4px 4px 4px 8px;
}
.tundra .dijitSplitContainerSizerH {
background:url(images/splitContainerSizerV.png) repeat-y #fff;
border:0;
border-left:1px solid #bfbfbf;
border-right:1px solid #bfbfbf;
width:7px;
}
.tundra .dijitSplitContainerSizerH .thumb {
background:url(images/splitContainerSizerV-thumb.png) no-repeat #ccc;
left:1px;
width:3px;
height:19px;
overflow: hidden;
}
.tundra .dijitSplitContainerSizerV {
background:url(images/splitContainerSizerH.png) repeat-x #fff;
border:0;
border-top:1px solid #bfbfbf;
border-bottom:1px solid #bfbfbf;
height:7px;
}
.tundra .dijitSplitContainerSizerV .thumb {
background:url(images/splitContainerSizerH-thumb.png) no-repeat #ccc;
top:1px;
width:19px;
height:3px;
overflow: hidden;
}
.tundra .dijitBorderContainer {
background-color: #fcfcfc;
padding: 5px;
}
.tundra .dijitSplitContainer-child,
.tundra .dijitBorderContainer-child {
border: 1px #ccc solid;
}
.tundra .dijitBorderContainer-dijitTabContainerTop,
.tundra .dijitBorderContainer-dijitTabContainerBottom,
.tundra .dijitBorderContainer-dijitTabContainerLeft,
.tundra .dijitBorderContainer-dijitTabContainerRight {
border: none;
}
.tundra .dijitBorderContainer-dijitBorderContainer {
border: none;
padding: 0px;
}
.tundra .dijitSplitterH,
.tundra .dijitGutterH {
background:#fcfcfc;
border:0;
height:5px;
}
.tundra .dijitSplitterH .dijitSplitterThumb {
background:#B0B0B0 none;
height:1px;
top:2px;
width:19px;
}
.tundra .dijitSplitterV,
.tundra .dijitGutterV {
background:#fcfcfc;
border:0;
width:5px;
}
.tundra .dijitSplitterV .dijitSplitterThumb {
background:#B0B0B0 none;
height:19px;
left:2px;
width:1px;
}
.tundra .dijitSplitterActive {
font-size: 1px;
background-image: none;
background-color: #aaa;
-moz-opacity: 0.6;
opacity: 0.6;
filter: Alpha(Opacity=60);
margin: 0;
}
.tundra .dijitInputContainer INPUT,
.tundra .dijitTextBox {
margin: 0em 0.1em;
}
.tundra .dijitTextArea {
padding: 3px;
}
.tundra .dijitTextBox {
background:#fff url(images/validationInputBg.png) repeat-x top left;
#background:#fff url(images/validationInputBg.gif) repeat-x top left;
border:1px solid #b3b3b3;
}
.tundra .dijitComboBox .dijitButtonNode {
padding: 0 0.2em;
}
.tundra .dijitTextBox .dijitButtonNode {
border-color: #9b9b9b;
}
.tundra .dijitTextBoxFocused {
border-color:#406b9b;
}
.tundra .dijitTextBoxFocused .dijitButtonNode {
border-color:#366dba;
}
.tundra .dijitError {
background-color:#f9f7ba;
background-image:none;
}
.tundra .dijitErrorFocused {
background-color:#f9f999;
background-image:none;
}
.tundra .dijitValidationIcon {
width: 16px;
background: transparent url(images/warning.png) no-repeat center center;
}
.tundra .dijitComboBoxHighlightMatch {
background-color:#a5beda;
}
.tundra .dijitFocusedLabel {
outline: 1px dotted #666666;
}
.tundra .dijitButtonNode {
border: 1px solid #c0c0c0;
border-bottom: 1px solid #9b9b9b;
padding: 0.1em 0.2em 0.2em 0.2em;
background: #fff url(images/buttonEnabled.png) repeat-x bottom left;
}
.tundra .dijitButtonText {
text-align: center;
padding: 0 0.3em;
}
.tundra .dijitDisabled .dijitButtonText {
color: #7F7F7F;
}
.tundra .dijitArrowButton {
color: #111;
}
.tundra .dijitComboButton .dijitDownArrowButton {
padding-right:4px;
}
.tundra .dijitTextBoxReadOnly,
.tundra .dijitTextBoxReadOnly .dijitButtonNode,
.tundra .dijitButtonDisabled .dijitButtonNode,
.tundra .dijitToggleButtonDisabled .dijitButtonNode,
.tundra .dijitDropDownButtonDisabled .dijitButtonNode,
.tundra .dijitComboButtonDisabled .dijitButtonNode,
.tundra .dijitTextBoxDisabled,
.tundra .dijitTextBoxDisabled .dijitButtonNode {
border-color: #d5d5d5 #d5d5d5 #bdbdbd #d5d5d5;
background:#e4e4e4 url(images/buttonDisabled.png) top repeat-x;
}
.tundra .dijitButtonHover .dijitButtonNode,
.tundra .dijitButtonNodeHover,
.tundra .dijitToggleButtonHover .dijitButtonNode,
.tundra .dijitDropDownButtonHover .dijitButtonNode,
.tundra .dijitComboButton .dijitButtonContentsHover,
.tundra .dijitComboButton .dijitDownArrowButtonHover {
border-color: #a5beda;
border-bottom-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitDownArrowButtonHover,
.tundra .dijitUpArrowButtonHover {
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitUpArrowButtonActive,
.tundra .dijitDownArrowButtonActive,
.tundra .dijitButtonActive .dijitButtonNode,
.tundra .dijitToggleButtonActive .dijitButtonNode,
.tundra .dijitDropDownButtonActive .dijitButtonNode,
.tundra .dijitButtonContentsActive,
.tundra .dijitStackController .dijitToggleButtonChecked .dijitButtonNode {
border-color:#366dba;
background: #ededed url(images/buttonActive.png) bottom repeat-x;
}
.tundra .dijitArrowButtonInner {
background:url(images/spriteArrows.png) no-repeat scroll 0px center;
width: 7px;
height: 7px;
margin: 0px 4px 0px 4px;
}
.tundra .dijitTextBox .dijitArrowButtonInner {
background-position: 0 center;
}
.dj_ie6 .tundra .dijitArrowButtonInner {
background-image:url(images/spriteArrows.gif);
}
.tundra .dijitLeftArrowButton .dijitArrowButtonInner {
background-position: -7px center;
}
.tundra .dijitRightArrowButton .dijitArrowButtonInner {
background-position: -14px center;
}
.tundra .dijitUpArrowButton .dijitArrowButtonInner {
background-position: -21px center;
}
.tundra .dijitDisabled .dijitArrowButtonInner {
background-position: -28px center;
}
.tundra .dijitDisabled .dijitLeftArrowButton .dijitArrowButtonInner {
background-position: -35px center;
}
.tundra .dijitDisabled .dijitRightArrowButton .dijitArrowButtonInner {
background-position: -42px center;
}
.tundra .dijitDisabled .dijitUpArrowButton .dijitArrowButtonInner {
background-position: -49px center;
}
.dj_webkit .tundra .dijitSpinner .dijitUpArrowButton .dijitArrowButtonInner {
margin-top: -1px;
}
.dj_ie .tundra .dijitSpinner .dijitDownArrowButton .dijitArrowButtonInner {
margin-top: -2px;
}
.dj_ie8 .tundra .dijitSpinner .dijitDownArrowButton .dijitArrowButtonInner {
margin-top: -1px;
}
.tundra .dijitSpinnerButtonContainer {
width: auto;
padding: 0;
}
.tundra .dijitSpinner .dijitArrowButton {
width: 15px;
}
.tundra .dijitSpinner .dijitSpinnerButtonInner {
width: 15px;
}
.tundra .dijitSpinner .dijitArrowButtonInner .dijitInputField {
padding: 0;
}
.tundra .dijitToggleButton .dijitCheckBoxIcon {
background-image: url(images/checkmarkNoBorder.png);
}
.dj_ie6 .tundra .dijitToggleButton .dijitCheckBoxIcon {
background-image: url(images/checkmarkNoBorder.gif);
}
.tundra .dijitCheckBox,
.tundra .dijitCheckBoxIcon {
background-image: url(images/checkmark.png);
background-repeat: no-repeat;
width: 16px;
height: 16px;
margin: 0 2px 0 0;
padding: 0;
}
.dj_ie6 .tundra .dijitCheckBox,
.dj_ie6 .tundra .dijitCheckBoxIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitCheckBox,
.tundra .dijitToggleButton .dijitCheckBoxIcon {
background-position: -16px;
}
.tundra .dijitCheckBoxChecked,
.tundra .dijitToggleButtonChecked .dijitCheckBoxIcon {
background-position: 0px;
}
.tundra .dijitCheckBoxDisabled {
background-position: -48px;
}
.tundra .dijitCheckBoxCheckedDisabled {
background-position: -32px;
}
.tundra .dijitCheckBoxHover {
background-position: -80px;
}
.tundra .dijitCheckBoxCheckedHover {
background-position: -64px;
}
.tundra .dijitRadio,
.tundra .dijitRadioIcon {
background-image: url(images/checkmark.png);
background-repeat: no-repeat;
width: 16px;
height: 16px;
margin: 0;
padding: 0;
}
.dj_ie6 .tundra .dijitRadio,
.dj_ie6 .tundra .dijitRadioIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitToggleButton .dijitRadioIcon {
background-image: url(images/checkmarkNoBorder.png);
}
.dj_ie6 .tundra .dijitToggleButton .dijitRadioIcon {
background-image: url(images/checkmarkNoBorder.gif);
}
.tundra .dijitRadio,
.tundra .dijitRadioIcon {
background-position: -112px;
}
.tundra .dijitRadioDisabled {
background-position: -144px;
}
.tundra .dijitRadioHover {
background-position: -176px;
}
.tundra .dijitRadioChecked,
.tundra .dijitRadioCheckedHover,
.tundra .dijitToggleButtonChecked .dijitRadioIcon {
background-position: -96px;
}
.tundra .dijitRadioCheckedDisabled {
background-position: -128px;
}
.tundra .dijitSliderProgressBarH {
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFull.png) repeat-x top left;
}
.tundra .dijitSliderProgressBarV {
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFullVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderFocused .dijitSliderProgressBarH,
.tundra .dijitSliderFocused .dijitSliderLeftBumper {
background-image:url(images/sliderFullFocus.png);
}
.tundra .dijitSliderFocused .dijitSliderProgressBarV,
.tundra .dijitSliderFocused .dijitSliderBottomBumper {
background-image:url(images/sliderFullVerticalFocus.png);
}
.tundra .dijitSliderRemainingBarV {
border-color: #b4b4b4;
background: #dcdcdc url(images/sliderEmptyVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderRemainingBarH {
border-color: #b4b4b4;
background: #dcdcdc url(images/sliderEmpty.png) repeat-x top left;
}
.tundra .dijitSliderBar {
border-style: solid;
outline:1px;
}
.tundra .dijitSliderFocused .dijitSliderBar {
border-color:#888;
}
.tundra .dijitSliderImageHandleH {
border:0px;
width:16px;
height:16px;
background:url(images/preciseSliderThumb.png) no-repeat center top;
}
.tundra .dijitSliderFocused .dijitSliderImageHandleH {
background-image:url(images/preciseSliderThumbFocus.png);
#background-image:url(images/preciseSliderThumbFocus.gif);
}
.dj_ie6 .tundra .dijitSliderImageHandleH {
background-image:url(images/preciseSliderThumb.gif);
}
.tundra .dijitSliderLeftBumper {
border-left-width: 1px;
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFull.png) repeat-x top left;
}
.tundra .dijitSliderRightBumper {
background: #dcdcdc url(images/sliderEmpty.png) repeat-x top left;
border-color: #b4b4b4;
border-right-width: 1px;
}
.tundra .dijitSliderImageHandleV {
border:0px;
width:16px;
height:16px;
background:url(images/sliderThumb.png) no-repeat center center;
}
.tundra .dijitSliderFocused .dijitSliderImageHandleV {
background-image:url(images/sliderThumbFocus.png);
}
.dj_ie6 .tundra .dijitSliderFocused .dijitSliderImageHandleV {
background-image:url(images/sliderThumbFocus.gif);
}
.tundra .dijitSliderBottomBumper {
border-bottom-width: 1px;
border-color: #aab0bb;
background: #c0c2c5 url(images/sliderFullVertical.png) repeat-y bottom left;
}
.tundra .dijitSliderTopBumper {
background: #dcdcdc url(images/sliderEmptyVertical.png) repeat-y top left;
border-color: #b4b4b4;
border-top-width: 1px;
}
.tundra .dijitSliderDecrementIconH,
.tundra .dijitSliderDecrementIconV,
.tundra .dijitSliderIncrementIconH,
.tundra .dijitSliderIncrementIconV {
background-image: url(images/spriteArrows.png);
background-repeat: no-repeat;
margin: 5px;
height: 7px;
width: 7px;
font-size: 1px;
}
.dj_ie6 .tundra .dijitSliderDecrementIconH,
.dj_ie6 .tundra .dijitSliderDecrementIconV,
.dj_ie6 .tundra .dijitSliderIncrementIconH,
.dj_ie6 .tundra .dijitSliderIncrementIconV {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitSliderDecrementIconH {
background-position: -7px 0px;
}
.tundra .dijitSliderIncrementIconH {
background-position: -14px 0px;
}
.tundra .dijitSliderDecrementIconV {
background-position: 0px 0px;
}
.tundra .dijitSliderIncrementIconV {
background-position: -21px 0px;
}
.tundra .dijitSliderButtonInner {
visibility:hidden;
}
.tundra .dijitSliderReadOnly *,
.tundra .dijitSliderDisabled * {
border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5;
color: #bdbdbd;
}
.tundra .dijitSliderReadOnly .dijitSliderDecrementIconH,
.tundra .dijitSliderDisabled .dijitSliderDecrementIconH {
background-position: -35px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderIncrementIconH,
.tundra .dijitSliderDisabled .dijitSliderIncrementIconH {
background-position: -42px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderDecrementIconV,
.tundra .dijitSliderDisabled .dijitSliderDecrementIconV {
background-position: -28px 0px;
}
.tundra .dijitSliderReadOnly .dijitSliderIncrementIconV,
.tundra .dijitSliderDisabled .dijitSliderIncrementIconV {
background-position: -49px 0px;
}
.tundra .dijitSelect .dijitButtonNode {
padding: 0px;
}
.tundra .dijitSelect .dijitButtonNode .dijitArrowButtonInner {
margin: 0px 4px 0px 5px;
}
.tundra .dijitSelect .dijitButtonContents {
padding-top: 1px;
background:#fff url(images/validationInputBg.png) repeat-x top left;
#background:#fff url(images/validationInputBg.gif) repeat-x top left;
}
.tundra .dijitSelectHover .dijitButtonContents,
.tundra .dijitSelectActive .dijitButtonContents,
.tundra .dijitSelectOpened .dijitButtonContents,
.tundra .dijitSelectDisabled .dijitButtonContents,
.tundra .dijitSelectReadOnly .dijitButtonContents{
background: transparent none;
}
.dj_ie .tundra .dijitSelect .dijitButtonContents {
padding-top: 0px;
}
.tundra .dijitSelectDisabled .dijitButtonNode {
border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5;
background:#e4e4e4 url(images/buttonDisabled.png) top repeat-x;
}
.dj_ie .tundra .dijitSelectDisabled .dijitButtonNode * {
filter: gray() alpha(opacity=50);
}
.tundra .dijitSelectHover .dijitButtonNode {
border-color:#a5beda;
border-bottom-color:#5c7590;
border-right-color:#5c7590;
color:#243C5F;
background:#fcfdff url(images/buttonHover.png) repeat-x bottom;
}
.tundra .dijitSelectActive .dijitButtonNode,
.tundra .dijitSelectOpened .dijitButtonNode {
border-color:#366dba;
background: #ededed url(images/buttonActive.png) bottom repeat-x;
}
.tundra .dijitSelectMenu td {
padding: 0em;
}
.tundra .dijitSelectMenu .dijitMenuItemLabel,
.tundra .dijitSelectMenu .dijitMenuArrowCell {
padding: 0.1em 0.2em;
}
.tundra .dijitTreeNode {
background-image : url(images/i.gif);
background-repeat : repeat-y;
zoom: 1;
}
.tundra .dijitTreeIsLast {
background: url(images/i_half.gif) no-repeat;
}
.tundra .dijitTreeIsRoot {
margin-left: 0;
background-image: none;
}
.tundra .dijitTreeExpando {
width: 18px;
height: 18px;
}
.tundra .dijitTreeRow {
padding-bottom: 2px;
}
.tundra .dijitTreeContent {
min-height: 18px;
min-width: 18px;
}
.tundra .dijitTreeRowSelected .dijitTreeLabel {
background:#e2ebfe;
}
.tundra .dijitTreeRowHover {
background-image: url(images/treeHover.png);
background-repeat: repeat;
background-color: transparent !important;
}
.tundra .dijitTreeExpandoOpened {
background-image: url(images/treeExpand_minus.gif);
}
.tundra .dijitTreeExpandoClosed {
background-image: url(images/treeExpand_plus.gif);
}
.tundra .dijitTreeExpandoLeaf {
background-image: url(images/treeExpand_leaf.gif);
}
.tundra .dijitTreeExpandoLoading {
background-image: url(images/treeExpand_loading.gif);
}
.tundra .dijitTreeIcon {
width: 16px;
height: 16px;
}
.tundra .dijitFolderOpened {
background: url(images/folderOpened.gif) no-repeat;
}
.tundra .dijitFolderClosed {
background: url(images/folderClosed.gif) no-repeat;
}
.tundra .dijitLeaf {
background: url(images/leaf.gif) no-repeat;
}
.tundra .dijitTreeNode .dojoDndItemBefore,
.tundra .dijitTreeNode .dojoDndItemAfter {
border-bottom: none;
border-top: none;
}
.tundra .dijitTreeNode .dojoDndItemBefore .dijitTreeContent {
border-top: 2px solid #369;
}
.tundra .dijitTreeNode .dojoDndItemAfter .dijitTreeContent {
border-bottom: 2px solid #369;
}
.tundra .dijitProgressBar {
margin:2px 0px 2px 0px;
}
.tundra .dijitProgressBarEmpty {
background:#fff url(images/progressBarEmpty.png) repeat-x center center;
border-color: #a2a2a2 #b8b8b8 #b8b8b8 #a2a2a2;
}
.tundra .dijitProgressBarTile {
background:#f0f0f0 url(images/progressBarFull.png) repeat-x center center;
}
.tundra .dijitProgressBarFull {
border-right:1px solid #b8b8b8;
}
.tundra .dijitProgressBarLabel {
color:#293a4b;
}
.tundra .dijitProgressBarIndeterminate .dijitProgressBarTile {
background:#cad2de url(images/progressBarAnim.gif) repeat-x center center;
}
.tundra .dijitTitlePaneTitle {
background: #cccccc;
background:#fff url(images/titleBar.png) repeat-x bottom left;
border:1px solid #bfbfbf;
padding:3px 4px;
}
.tundra .dijitTitlePaneTitleHover {
background: #f8fafd url(images/accordionItemHover.gif) bottom repeat-x;
}
.tundra .dijitTitlePane .dijitArrowNode {
background-image: url(images/spriteArrows.png);
background-repeat: no-repeat;
background-position: 0px 0px;
height: 7px;
width: 7px;
}
.dj_ie6 .tundra .dijitTitlePane .dijitArrowNode {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitTitlePane .dijitClosed .dijitArrowNode {
background-position: -14px 0px;
}
.tundra .dijitTitlePaneContentOuter {
background: #ffffff;
border:1px solid #bfbfbf;
border-top: 0px;
}
.tundra .dijitTitlePaneContentInner {
padding:10px;
}
.tundra .dijitTitlePaneTextNode {
margin-left: 4px;
margin-right: 4px;
}
.tundra .dijitCalendarIncrementControl {
width:15px;
height:15px;
background-image: url(images/spriteRoundedIconsSmall.png);
background-repeat: no-repeat
}
.dj_ie6 .tundra .dijitCalendarIncrementControl {
font-size:.1em;
background-image: url(images/spriteRoundedIconsSmall.gif);
}
.tundra .dijitA11ySideArrow {
display: none;
}
.tundra .dijitCalendarDecrease {
background-position: top left;
}
.tundra .dijitCalendarIncrease {
background-position: -30px top;
}
.tundra .dijitCalendarContainer {
font-size: 100%;
border-spacing: 0;
border-collapse: separate;
border: 1px solid #ccc;
margin: 0;
}
.tundra .dijitCalendarMonthContainer th {
background:#d3d3d3 url(images/titleBar.png) repeat-x top;
padding-top:.3em;
padding-bottom:.2em;
text-align:center;
}
.dj_ie6 .tundra .dijitCalendarMonthContainer th {
padding-top:.2em;
padding-bottom:.1em;
}
.tundra .dijitCalendarDayLabelTemplate {
background:white url(images/calendarDayLabel.png) repeat-x bottom;
font-weight:normal;
padding-top:.15em;
padding-bottom:0em;
border-top: 1px solid #eeeeee;
color:#293a4b;
text-align:center;
}
.tundra .dijitCalendarBodyContainer {
border-bottom: 1px solid #eeeeee;
}
.tundra .dijitCalendarMonthLabel {
color:#293a4b;
font-weight: bold;
}
.tundra .dijitCalendarDateTemplate {
font-size: 0.9em;
font-weight: bold;
text-align: center;
padding: 0.3em 0.3em 0.05em 0.3em;
letter-spacing: 1px;
}
.dj_ie .tundra .dijitCalendarDateTemplate {
padding: 0.1em .33em 0.02em .33em;
}
.tundra .dijitCalendarPreviousMonth,
.tundra .dijitCalendarNextMonth {
color:#999999;
background-color:#f8f8f8;
}
.tundra .dijitCalendarCurrentMonth {
background-color: white;
}
.tundra .dijitCalendarCurrentDate {
text-decoration:underline;
font-weight:bold;
}
.tundra .dijitCalendarHoveredDate {
background-color: #e2ebf2;
}
.tundra .dijitCalendarDisabledDate {
text-decoration: line-through;
background-color: white;
}
.tundra .dijitCalendarSelectedDate {
background-color:#bbc4d0 !important;
color:black !important;
}
.tundra .dijitCalendarYearContainer {
background:white url(images/calendarYearLabel.png) repeat-x bottom;
border-top:1px solid #ccc;
}
.tundra .dijitCalendarYearLabel {
margin:0;
padding:0.4em 0 0.25em 0;
text-align:center;
}
.tundra .dijitCalendarSelectedYear {
color:black;
padding:0.2em;
padding-bottom:0.1em;
background-color:#bbc4d0 !important;
}
.tundra .dijitCalendarNextYear,
.tundra .dijitCalendarPreviousYear {
color:black !important;
font-weight:normal;
}
.tundra .dijitTimePickerTick,
.tundra .dijitTimePickerMarker {
border-color: #ccc;
}
.tundra .dijitTimePickerTick {
color:white;
}
.tundra .dijitTimePickerMarker {
background:#d3d3d3 url(images/titleBar.png) repeat-x top;
color:#293a4b;
font-weight: bold;
}
.tundra .dijitTimePickerItemSelected {
color: black;
background: #bbc4d0 none;
}
.tundra .dijitTimePickerItemHover {
background: #60a1ea none;
color:white;
}
.tundra .dijitTimePickerItemHover,
.tundra .dijitTimePickerItemSelected {
position: relative;
z-index: 10;
}
.tundra .dijitTimePickerTick .dijitTimePickerItemInner {
font-size:0.4em;
}
.tundra .dijitTimePickerItemHover .dijitTimePickerItemInner,
.tundra .dijitTimePickerItemSelected .dijitTimePickerItemInner {
font-size:1em;
}
.tundra .dijitTimePickerMarkerHover {
border-top: 1px solid #ccc;
}
.tundra .dijitTimePickerTickHover,
.tundra .dijitTimePickerTickSelected {
margin-top:-0.3em;
margin-bottom:-0.3em;
border-bottom: none;
}
.tundra .dijitToolbar {
border-bottom: 1px solid #ccc;
background:#eaeaea url(images/titleBar.png) repeat-x top left;
}
.dj_ie6 .tundra .dijitToolbar {
height: 10px;
}
.tundra .dijitToolbar .dijitButtonNode,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContents,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButton {
background: none;
margin: 0px;
padding: 0px;
border: none;
font-size: 12px;
}
.tundra .dijitToolbar .dijitButton,
.tundra .dijitToolbar .dijitToggleButton,
.tundra .dijitToolbar .dijitDropDownButton,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContents,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButton {
background: none;
padding: 1px;
}
.tundra .dijitToolbar .dijitButtonChecked,
.tundra .dijitToolbar .dijitToggleButtonChecked {
background-color:#d4dff2;
border:1px solid #316ac5;
padding: 0px;
}
.tundra .dijitToolbar .dijitButtonCheckedHover,
.tundra .dijitToolbar .dijitToggleButtonCheckedHover
{
background-color:#abc1e5;
border:1px solid #316ac5;
padding: 0px;
}
.tundra .dijitToolbar .dijitButtonHover,
.tundra .dijitToolbar .dijitToggleButtonHover,
.tundra .dijitToolbar .dijitDropDownButtonHover,
.tundra .dijitToolbar .dijitComboButton .dijitButtonContentsHover,
.tundra .dijitToolbar .dijitComboButton .dijitDownArrowButtonHover {
border: 1px solid #869cbf;
padding: 0px;
background-color:#e1e5f0;
}
.tundra .dijitToolbar label {
padding: 3px 3px 0 6px;
}
.dj_ie .tundra .dijitToolbar .dijitComboButton .dijitButtonContentsFocused,
.dj_ie .tundra .dijitToolbar .dijitComboButton .dijitDownArrowButtonFocused {
border: 1px #555 dotted !important;
padding: 0px;
}
.tundra .dijitToolbarSeparator {
background: url(../../icons/images/editorIconsEnabled.png);
}
.tundra .dijitToolbarRtl .dijitToolbarSeparator {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.tundra .dijitDialog {
background: #fff;
border: 1px solid #7eabcd;
padding: 0px;
-webkit-box-shadow: 0px 5px 10px #adadad;
}
.tundra .dijitDialogPaneContent {
background: #fff;
border-top: 1px solid #d3d3d3;
padding:10px;
}
.tundra .dijitDialogTitleBar {
background: #fafafa url(images/titleBar.png) repeat-x top left;
padding: 5px 6px 3px 6px;
outline:0;
}
.tundra .dijitDialogTitle {
font-weight: bold;
padding: 0px 4px;
}
.tundra .dijitDialogCloseIcon {
background: url(images/tabClose.png) no-repeat right top;
position: absolute;
vertical-align: middle;
right: 6px;
top: 4px;
height: 15px;
width: 15px;
}
.dj_ie6 .tundra .dijitDialogCloseIcon {
background : url(images/tabClose.gif) no-repeat right top;
}
.tundra .dijitDialogCloseIconHover {
background: url(images/tabCloseHover.png) no-repeat right top;
}
.dj_ie6 .tundra .dijitDialogCloseIconHover {
background : url(images/tabCloseHover.gif) no-repeat right top;
}
.tundra .dijitTooltip,
.tundra .dijitTooltipDialog {
background: transparent;
}
.dijitTooltipBelow {
padding-top: 13px;
}
.dijitTooltipAbove {
padding-bottom: 13px;
}
.tundra .dijitTooltipContainer {
background: #ffffff url(images/popupMenuBg.gif) repeat-x bottom left;
border: 1px solid #7eabcd;
padding: 0.45em;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.tundra .dijitTooltipConnector {
border:0px;
z-index: 2;
}
.tundra .dijitTooltipABRight .dijitTooltipConnector {
left: auto !important;
right: 3px;
}
.tundra .dijitTooltipBelow .dijitTooltipConnector {
top: 0px;
left: 3px;
background:url(images/tooltipConnectorUp.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipBelow .dijitTooltipConnector {
background-image: url(images/tooltipConnectorUp.gif);
}
.tundra .dijitTooltipAbove .dijitTooltipConnector {
bottom: 0px;
left: 3px;
background:url(images/tooltipConnectorDown.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipAbove .dijitTooltipConnector {
background-image: url(images/tooltipConnectorDown.gif);
}
.dj_ie6 .tundra .dijitTooltipAbove .dijitTooltipConnector {
bottom: -3px;
}
.tundra .dijitTooltipLeft {
padding-right: 14px;
}
.dj_ie6 .tundra .dijitTooltipLeft {
padding-left: 15px;
}
.tundra .dijitTooltipLeft .dijitTooltipConnector {
right: 0px;
bottom: 3px;
background:url(images/tooltipConnectorRight.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipLeft .dijitTooltipConnector {
background-image: url(images/tooltipConnectorRight.gif);
}
.tundra .dijitTooltipRight {
padding-left: 14px;
}
.tundra .dijitTooltipRight .dijitTooltipConnector {
left: 0px;
bottom: 3px;
background:url(images/tooltipConnectorLeft.png) no-repeat top left;
width:16px;
height:14px;
}
.dj_ie .tundra .dijitTooltipRight .dijitTooltipConnector {
background-image: url(images/tooltipConnectorLeft.gif);
}
.dj_webkit .tundra .dijitTooltipContainer {
-webkit-box-shadow: 0px 5px 10px #adadad;
}
.tundra .dijitMenu,
.tundra .dijitMenuBar {
border: 1px solid #7eabcd;
margin: 0px;
padding: 0px;
background-color: #f7f7f7;
}
.tundra .dijitBorderContainer .dijitMenuBar {
border:1px solid #ccc;
}
.tundra .dijitMenuItem {
font-family: sans-serif;
margin: 0;
}
.tundra .dijitMenuItem {
padding: 4px 5px;
}
.tundra .dijitMenuPreviousButton, .tundra .dijitMenuNextButton {
font-style: italic;
}
.tundra .dijitMenuItem td {
padding: 2px;
}
.tundra .dijitMenuPassive .dijitMenuItemHover,
.tundra .dijitMenuItemSelected {
background-color: #3559ac;
color:#fff;
}
.tundra .dijitMenuItemIcon {
width: 16px;
height: 16px;
}
.tundra .dijitMenuExpand {
width: 7px;
height: 7px;
background-image: url(images/spriteArrows.png);
background-position: -14px 0px;
}
.dj_ie6 .tundra .dijitMenuExpand {
background-image: url(images/spriteArrows.gif);
}
.tundra .dijitMenuSeparatorTop {
border-bottom: 1px solid #9b9b9b;
}
.tundra .dijitMenuSeparatorBottom {
border-top: 1px solid #e8e8e8;
}
.tundra .dijitCheckedMenuItemIconChar {
display: none;
}
.tundra .dijitCheckedMenuItemIcon {
background-image: url(images/checkmark.png);
background-position: -80px;
}
.dj_ie6 .tundra .dijitCheckedMenuItemIcon {
background-image: url(images/checkmark.gif);
}
.tundra .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon {
background-position: -64px;
}
.dijitEditor {
border:1px solid #bfbfbf;
border-top:0;
}
.tundra .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled.png);
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.tundra .dijitDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled.png);
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.dijitDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled.png);
}
.dijitEditorIconSep { background-position: 0px; }
.dijitEditorIconSave { background-position: -18px; }
.dijitEditorIconPrint { background-position: -36px; }
.dijitEditorIconCut { background-position: -54px; }
.dijitEditorIconCopy { background-position: -72px; }
.dijitEditorIconPaste { background-position: -90px; }
.dijitEditorIconDelete { background-position: -108px; }
.dijitEditorIconCancel { background-position: -126px; }
.dijitEditorIconUndo { background-position: -144px; }
.dijitEditorIconRedo { background-position: -162px; }
.dijitEditorIconSelectAll { background-position: -180px; }
.dijitEditorIconBold { background-position: -198px; }
.dijitEditorIconItalic { background-position: -216px; }
.dijitEditorIconUnderline { background-position: -234px; }
.dijitEditorIconStrikethrough { background-position: -252px; }
.dijitEditorIconSuperscript { background-position: -270px; }
.dijitEditorIconSubscript { background-position: -288px; }
.dijitEditorIconJustifyCenter { background-position: -306px; }
.dijitEditorIconJustifyFull { background-position: -324px; }
.dijitEditorIconJustifyLeft { background-position: -342px; }
.dijitEditorIconJustifyRight { background-position: -360px; }
.dijitEditorIconIndent { background-position: -378px; }
.dijitEditorIconOutdent { background-position: -396px; }
.dijitEditorIconListBulletIndent { background-position: -414px; }
.dijitEditorIconListBulletOutdent { background-position: -432px; }
.dijitEditorIconListNumIndent { background-position: -450px; }
.dijitEditorIconListNumOutdent { background-position: -468px; }
.dijitEditorIconTabIndent { background-position: -486px; }
.dijitEditorIconLeftToRight { background-position: -504px; }
.dijitEditorIconRightToLeft, .dijitEditorIconToggleDir { background-position: -522px; }
.dijitEditorIconBackColor { background-position: -540px; }
.dijitEditorIconForeColor { background-position: -558px; }
.dijitEditorIconHiliteColor { background-position: -576px; }
.dijitEditorIconNewPage { background-position: -594px; }
.dijitEditorIconInsertImage { background-position: -612px; }
.dijitEditorIconInsertTable { background-position: -630px; }
.dijitEditorIconSpace { background-position: -648px; }
.dijitEditorIconInsertHorizontalRule { background-position: -666px; }
.dijitEditorIconInsertOrderedList { background-position: -684px; }
.dijitEditorIconInsertUnorderedList { background-position: -702px; }
.dijitEditorIconCreateLink { background-position: -720px; }
.dijitEditorIconUnlink { background-position: -738px; }
.dijitEditorIconViewSource { background-position: -756px; }
.dijitEditorIconRemoveFormat { background-position: -774px; }
.dijitEditorIconFullScreen { background-position: -792px; }
.dijitEditorIconWikiword { background-position: -810px; }
.dijitColorPalette {
border:1px solid #7eabcd;
background:#fff;
-moz-border-radius: 0px !important;
}
.dijitRtl .dijitPlaceHolder {
left: auto;
right: 0;
}
.dijitMenuItemRtl {
text-align: right;
}
.dj_iequirks .dijitComboButtonRtl BUTTON {
float:left;
}
.dijit_a11y .dijitTextBoxRtl .dijitValidationContainer,
.dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijitComboBoxRtl .dijitArrowButtonContainer {
border-right-width: 1px !important;
border-right-style: solid !important;
border-left-width: 0px !important;
border-left-style: none !important;
}
.dijit_a11y .dijitTextBoxRtl .dijitValidationContainer,
.dijit_a11y .dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijit_a11y .dijitComboBoxRtl .dijitArrowButtonContainer {
border-right: 1px solid black !important;
border-left: 0px none black !important;
}
.dijitSpinnerRtl .dijitSpinnerButtonContainer .dijitArrowButton {
right: 0;
left: auto;
}
.dijitTextBoxRtl .dijitSpinnerButtonContainer,
.dijitTextBoxRtl .dijitValidationContainer,
.dijitTextBoxRtl .dijitArrowButtonContainer {
float: left;
}
.dijitCalendarRtl .dijitCalendarNextYear {
margin:0 0.55em 0 0;
}
.dijitCalendarRtl .dijitCalendarPreviousYear {
margin:0 0 0 0.55em;
}
.dijitSliderRtl .dijitSliderImageHandleV {
left:auto;
}
.dijitSliderRtl .dijitSliderImageHandleH {
left:-50%;
}
.dijitSliderRtl .dijitSliderMoveableH {
right:auto;
left:0;
}
.dijitSliderRtl .dijitRuleContainerV {
float:right;
}
.dj_ie .dijitSliderRtl .dijitRuleContainerV {
text-align:right;
}
.dj_ie .dijitSliderRtl .dijitRuleLabelV {
text-align:left;
}
.dj_ie .dijitSliderRtl .dijitRuleLabelH {
zoom:1;
}
.dijitSliderRtl .dijitSliderProgressBarH {
float:right;
right:0;
left:auto;
}
.dijitRtl .dijitContentPaneLoading, .dijitRtl .dijitContentPaneError {
background-position:right;
padding-right:25px;
}
.dijitTabRtl .dijitTabCloseButton {
margin-left: 0px;
margin-right: 1em;
}
.dj_ie .dijitTimePickerRtl .dijitTimePickerItem {
width:100%;
}
.dijitColorPaletteRtl .dijitColorPaletteUnder {
left: auto;
right: 0;
}
.dijitSelectRtl .dijitButtonContents {
text-align: right;
}
.tundra .dijitCalendarRtl .dijitCalendarDecrease {
background-position: -30px top;
}
.tundra .dijitCalendarRtl .dijitCalendarIncrease {
background-position: 0px top;
}
.dj_ie6 .tundra .dijitTimePickerRtl .dijitTimePickerMarkerHover,
.dj_ie7 .tundra .dijitTimePickerRtl .dijitTimePickerMarkerHover {
border-top: 0px;
}
.tundra .dijitDialogRtl .dijitDialogCloseIcon {
right: auto;
left: 5px;
}
.tundra .dijitEditorRtl .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.tundra .dijitEditorRtlDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled_rtl.png);
}
.dijitEditorRtl .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.dijitEditorRtlDisabled .dijitEditorIcon {
background-image: url(../../icons/images/editorIconsDisabled_rtl.png);
}
.dijitToolbarRtl .dijitToolbarSeparator {
background-image: url(../../icons/images/editorIconsEnabled_rtl.png);
}
.tundra .dijitMenuItemRtl .dijitMenuExpand {
background-position: -7px 0px;
}
.tundra .dijitTreeNodeRtl,
.tundra .dijitTreeNodeRtl .dijitTreeExpandoLeaf {
background-image: none;
}
.tundra .dijitTreeNodeRtl .dijitTreeExpandoOpened {
background-image: url(images/treeExpand_minus_rtl.gif);
}
.tundra .dijitTreeNodeRtl .dijitTreeExpandoClosed {
background-image: url(images/treeExpand_plus_rtl.gif);
}
.tundra .dijitTitlePaneRtl .dijitClosed .dijitArrowNode {
background-position: -7px 0px;
}
.tundra .dijitTabRtl {
-moz-box-orient:horizontal;
text-align: right;
}
.tundra .dijitTabRtl .dijitTabInnerDiv {
padding:2px 9px 2px 8px;
}
.tundra .tabStrip-disabled .tabStripButtonRtl .dijitTabInnerDiv {
padding-bottom: 3px;
padding-top: 1px;
}
.tundra .tabStripButtonRtl .dijitTabInnerDiv {
padding: 3px 2px 4px 2px;
}
.tundra .dijitTabPaneWrapper {
#zoom: 1;
}
.dj_ie-rtl .tundra .dijitTabContainerLeft-tabs {
margin-left: 1px !important;
}
.dj_ie-rtl .tundra .dijitTabContainerRight-tabs {
margin-right: 1px !important;
}
.tundra .dijitTabContainerLeft-tabs .dijitTabRtl,
.tundra .dijitTabContainerRight-tabs .dijitTabRtl {
margin-left:0px;
}
.dj_ie .tundra .dijitTabRtl .dijitTabInnerDiv {
width : 0.1% !important;
}
.dj_iequirks-rtl .tundra .dijitTabContainerTopNone,
.dj_iequirks-rtl .tundra .dijitTabContainerBottomNone {
border-left: 1px solid #fff;
border-right: 1px solid #fff;
}
.tundra .dijitSliderRtl .dijitSliderProgressBarH,
.tundra .dijitSliderRtl .dijitSliderRemainingBarH,
.tundra .dijitSliderRtl .dijitSliderLeftBumper,
.tundra .dijitSliderRtl .dijitSliderRightBumper,
.tundra .dijitSliderRtl .dijitSliderTopBumper {
background-position: top right;
}
.tundra .dijitSliderRtl .dijitSliderProgressBarV,
.tundra .dijitSliderRtl .dijitSliderRemainingBarV,
.tundra .dijitSliderRtl .dijitSliderBottomBumper {
background-position: bottom right;
}
.tundra .dijitSliderRtl .dijitSliderLeftBumper {
border-left-width: 0px;
border-right-width: 1px;
}
.tundra .dijitSliderRtl .dijitSliderRightBumper {
border-left-width: 1px;
border-right-width: 0px;
}
.tundra .dijitSliderRtl .dijitSliderIncrementIconH {
background-position: -7px 0px;
}
.tundra .dijitSliderRtl .dijitSliderDecrementIconH {
background-position: -14px 0px;
} | 0.143848 | 0.066873 |
width: 100%;
height: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
}
#script-detail-page-box {
display: flex;
flex-direction: column;
flex-grow: 1;
}
#script-detail-content-box {
display: flex;
flex-direction: row;
color: white;
flex-grow: 1;
background-color: rgb(60, 60, 60);
}
#script-detail-content {
margin-left: auto;
margin-right: auto;
}
#script-detail-info {
position: relative;
min-height:100%;
min-width: 330px;
background-color: rgb(41, 41, 41);
display: flex;
flex-direction: column;
}
#script-detail-script {
flex-grow: 1;
}
#script-detail-info * {
padding: 10px;
margin: 5px 10px 5px 10px;
flex-direction: column;
align-items: flex-start;
font-family: 'system-ui';
}
#script-detail-info-description {
border:1px solid rgb(41, 41, 41);
white-space: pre-line;
padding: 9px;
margin: 5px 10px;
height: 300px;
}
#script-detail-info-owner a {
color: white;
text-decoration: none;
margin: 0px;
padding: 0px;
}
#script-detail-info-owner i {
margin: 0px;
padding: 0px;
}
#script-detail-info-title {
padding: 10px;
margin: 5px 10px;
font-size: 24px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
#script-detail-info-title i {
margin: 0px;
padding: 0px;
}
#script-detail-info-author-box {
margin: 0px;
padding: 0px;
}
#script-detail-info-author-box div {
padding: 0px 10px;
margin: 0px 10px;
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
#script-detail-info-author-value {
padding: 0px 10px;
margin: 0px 10px;
}
#script-detail-info-author-value div {
padding: 0px;
margin: 0px;
color: grey;
}
#script-detail-info-select {
width: 150px;
margin-top: 20px;
margin-left: auto;
margin-right: 20px;
margin-bottom: 20px;
background-color: rgb(77, 77, 77);
color: white;
}
#script-detail-info-select:focus {
outline: none;
}
#script-detail-script-box {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
margin-left: auto;
margin-right: auto;
overflow-x: auto;
}
#script-detail-hide-button {
right: -70px;
top: -5px;
position: absolute;
padding: 0px;
height: 50px;
width: 50px;
margin-left: auto;
border: 30px solid;
border-top-color: rgb(55, 55, 55);
border-right-color: rgb(60,60,60);
border-bottom-color: rgb(60, 60, 60);
border-left-color: rgb(55, 55, 55);
background-color: rgb(55, 55, 55);
}
#script-detail-hide-button p {
color: white;
position: relative;
right: 44px;
bottom: 33px;
transform: rotate(-45deg);
}
#script-detail-hide-button:hover {
border-left-color: rgb(77, 77, 77);
border-top-color: rgb(77, 77, 77);
}
#script-detail-show-button {
display: block;
position: absolute;
padding: 0px;
height: 50px;
width: 50px;
margin-left: auto;
border: 30px solid;
border-top-color: rgb(55, 55, 55);
border-right-color: rgb(60,60,60);
border-bottom-color: rgb(60, 60, 60);
border-left-color: rgb(55, 55, 55);
background-color: rgb(55,55,55);
}
#script-detail-show-button p {
color: white;
position: relative;
right: 21px;
bottom: 19px;
transform: rotate(-45deg);
}
#script-detail-show-button:hover {
border-left-color: rgb(77, 77, 77);
border-top-color: rgb(77, 77, 77);
}
#script-detail-error-permission {
height: 92vh;
width: 100vw;
box-sizing: border-box;
background-color: rgb(40,40,40);
color: white;
text-align: center;
padding: 50px;
font: 20px "system-ui";
}
#script-detail-nav-box {
min-width: 140px;
}
@media only screen and (max-width: 1024px) {
#script-detail-script-box {
width: 95vw;
}
}
@media only screen and (max-width: 769px) {
#script-detail-info {
display: none;
}
#script-detail-nav-box {
display: none;
}
#script-detail-script-box {
margin-left: auto !important;
margin-right: auto !important;
width: 95vw !important;
}
.script-list.large {
width: 95vw !important;
}
.script-list-characters-list.large {
width: 46.5% !important;
}
.script-list-character-box {
width: 100% !important;
}
.script-list-character-image.large {
width: 13% !important;
}
.script-list-character-image.large img {
height: 4vw !important;
}
.script-list-characters-box.large {
width: 46.5% !important;
}
.script-list-character-text-box.large {
width: 87% !important;
}
.script-list-character-desc.large {
width: 100% !important;
font-size: 9px !important;
height: 16px !important;
}
.script-list-footer-disclaimer.large {
font-size: 8px !important;
}
}
@media only screen and (max-width: 697px) {
.script-list-characters-list.large {
width: 93% !important;
}
.script-list-character-box {
width: 100% !important;
}
.script-list-type-box-townsfolk {
max-height: none !important;
}
.script-list-type-box-non-townsfolk {
max-height: none !important;
padding-top: 15px;
}
.script-list-character-image.large {
width: 17% !important;
}
.script-list-character-image.large img {
height: 9vw !important;
}
.script-list-characters-box.large {
width: 100% !important;
}
.script-list-character-text-box.large {
width: 83% !important;
}
.script-list-character-desc.large {
width: 100% !important;
font-size: 12px !important;
height: 18px !important;
}
.script-list-footer-disclaimer.large {
font-size: 8px !important;
width: 80% !important;
}
.script-list-character-desc {
display: inline !important;
}
} | frontend/static/css/script_detail.css | width: 100%;
height: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
}
#script-detail-page-box {
display: flex;
flex-direction: column;
flex-grow: 1;
}
#script-detail-content-box {
display: flex;
flex-direction: row;
color: white;
flex-grow: 1;
background-color: rgb(60, 60, 60);
}
#script-detail-content {
margin-left: auto;
margin-right: auto;
}
#script-detail-info {
position: relative;
min-height:100%;
min-width: 330px;
background-color: rgb(41, 41, 41);
display: flex;
flex-direction: column;
}
#script-detail-script {
flex-grow: 1;
}
#script-detail-info * {
padding: 10px;
margin: 5px 10px 5px 10px;
flex-direction: column;
align-items: flex-start;
font-family: 'system-ui';
}
#script-detail-info-description {
border:1px solid rgb(41, 41, 41);
white-space: pre-line;
padding: 9px;
margin: 5px 10px;
height: 300px;
}
#script-detail-info-owner a {
color: white;
text-decoration: none;
margin: 0px;
padding: 0px;
}
#script-detail-info-owner i {
margin: 0px;
padding: 0px;
}
#script-detail-info-title {
padding: 10px;
margin: 5px 10px;
font-size: 24px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
#script-detail-info-title i {
margin: 0px;
padding: 0px;
}
#script-detail-info-author-box {
margin: 0px;
padding: 0px;
}
#script-detail-info-author-box div {
padding: 0px 10px;
margin: 0px 10px;
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
#script-detail-info-author-value {
padding: 0px 10px;
margin: 0px 10px;
}
#script-detail-info-author-value div {
padding: 0px;
margin: 0px;
color: grey;
}
#script-detail-info-select {
width: 150px;
margin-top: 20px;
margin-left: auto;
margin-right: 20px;
margin-bottom: 20px;
background-color: rgb(77, 77, 77);
color: white;
}
#script-detail-info-select:focus {
outline: none;
}
#script-detail-script-box {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
margin-left: auto;
margin-right: auto;
overflow-x: auto;
}
#script-detail-hide-button {
right: -70px;
top: -5px;
position: absolute;
padding: 0px;
height: 50px;
width: 50px;
margin-left: auto;
border: 30px solid;
border-top-color: rgb(55, 55, 55);
border-right-color: rgb(60,60,60);
border-bottom-color: rgb(60, 60, 60);
border-left-color: rgb(55, 55, 55);
background-color: rgb(55, 55, 55);
}
#script-detail-hide-button p {
color: white;
position: relative;
right: 44px;
bottom: 33px;
transform: rotate(-45deg);
}
#script-detail-hide-button:hover {
border-left-color: rgb(77, 77, 77);
border-top-color: rgb(77, 77, 77);
}
#script-detail-show-button {
display: block;
position: absolute;
padding: 0px;
height: 50px;
width: 50px;
margin-left: auto;
border: 30px solid;
border-top-color: rgb(55, 55, 55);
border-right-color: rgb(60,60,60);
border-bottom-color: rgb(60, 60, 60);
border-left-color: rgb(55, 55, 55);
background-color: rgb(55,55,55);
}
#script-detail-show-button p {
color: white;
position: relative;
right: 21px;
bottom: 19px;
transform: rotate(-45deg);
}
#script-detail-show-button:hover {
border-left-color: rgb(77, 77, 77);
border-top-color: rgb(77, 77, 77);
}
#script-detail-error-permission {
height: 92vh;
width: 100vw;
box-sizing: border-box;
background-color: rgb(40,40,40);
color: white;
text-align: center;
padding: 50px;
font: 20px "system-ui";
}
#script-detail-nav-box {
min-width: 140px;
}
@media only screen and (max-width: 1024px) {
#script-detail-script-box {
width: 95vw;
}
}
@media only screen and (max-width: 769px) {
#script-detail-info {
display: none;
}
#script-detail-nav-box {
display: none;
}
#script-detail-script-box {
margin-left: auto !important;
margin-right: auto !important;
width: 95vw !important;
}
.script-list.large {
width: 95vw !important;
}
.script-list-characters-list.large {
width: 46.5% !important;
}
.script-list-character-box {
width: 100% !important;
}
.script-list-character-image.large {
width: 13% !important;
}
.script-list-character-image.large img {
height: 4vw !important;
}
.script-list-characters-box.large {
width: 46.5% !important;
}
.script-list-character-text-box.large {
width: 87% !important;
}
.script-list-character-desc.large {
width: 100% !important;
font-size: 9px !important;
height: 16px !important;
}
.script-list-footer-disclaimer.large {
font-size: 8px !important;
}
}
@media only screen and (max-width: 697px) {
.script-list-characters-list.large {
width: 93% !important;
}
.script-list-character-box {
width: 100% !important;
}
.script-list-type-box-townsfolk {
max-height: none !important;
}
.script-list-type-box-non-townsfolk {
max-height: none !important;
padding-top: 15px;
}
.script-list-character-image.large {
width: 17% !important;
}
.script-list-character-image.large img {
height: 9vw !important;
}
.script-list-characters-box.large {
width: 100% !important;
}
.script-list-character-text-box.large {
width: 83% !important;
}
.script-list-character-desc.large {
width: 100% !important;
font-size: 12px !important;
height: 18px !important;
}
.script-list-footer-disclaimer.large {
font-size: 8px !important;
width: 80% !important;
}
.script-list-character-desc {
display: inline !important;
}
} | 0.453504 | 0.051463 |
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200&display=swap');
.Signup-wrapper{
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
}
.signup-form-wrapper{
display: flex;
height: 600px;
width: 300px;
justify-content: center;
flex-direction: column;
}
.login-form-wrapper{
display: flex;
height: 500px;
width: 300px;
justify-content: center;
flex-direction: column;
}
.signup-form-title{
display: flex;
height: 100px;
width: 100%;
padding: 10px;
align-items: center;
justify-content: center;
}
.logo-title-wrapper{
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
}
.logo-title-wrapper h2{
color: white;
font-size: 40px;
}
.logo-title-wrapper h2 i{
font-size: 40px;
}
.signup-form{
display: flex;
height: 400px;
width: 100%;
justify-content: center;
}
.signup-form form{
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
padding: 10px;
}
.signup-form form input{
margin-top: 16px;
font-size: 14px;
font-family: 'Cairo', sans-serif;
font-weight: bold;
background: none;
border: none;
color: white;
border-bottom: 0.5px solid gray;
padding: 6px;
}
.signup-form form input:hover{
border-color: indianred;
}
.signup-form form input:focus{
outline: none;
border-color: tomato;
}
.signup-form form button{
display: flex;
height: 30px;
align-items: center;
justify-content: center;
font-size: 14px;
font-family: 'Cairo', sans-serif;
background: rgba(255, 99, 71, 0.775);
color: white;
border: none;
padding: 4px;
transition-timing-function: ease;
transition-duration: 0.4s;
margin-top: 16px;
font-weight: bolder;
}
.signup-form form button:hover{
background: rgb(255, 74, 42);
}
.linker{
font-size: 14px;
color: white;
text-decoration: none;
font-family: monospace;
margin-top: 20px;
transition-timing-function: ease;
transition-duration: 0.2s;
}
.linker:hover{
color: tomato;
} | src/components/signupLogin.css | @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200&display=swap');
.Signup-wrapper{
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
}
.signup-form-wrapper{
display: flex;
height: 600px;
width: 300px;
justify-content: center;
flex-direction: column;
}
.login-form-wrapper{
display: flex;
height: 500px;
width: 300px;
justify-content: center;
flex-direction: column;
}
.signup-form-title{
display: flex;
height: 100px;
width: 100%;
padding: 10px;
align-items: center;
justify-content: center;
}
.logo-title-wrapper{
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
}
.logo-title-wrapper h2{
color: white;
font-size: 40px;
}
.logo-title-wrapper h2 i{
font-size: 40px;
}
.signup-form{
display: flex;
height: 400px;
width: 100%;
justify-content: center;
}
.signup-form form{
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
padding: 10px;
}
.signup-form form input{
margin-top: 16px;
font-size: 14px;
font-family: 'Cairo', sans-serif;
font-weight: bold;
background: none;
border: none;
color: white;
border-bottom: 0.5px solid gray;
padding: 6px;
}
.signup-form form input:hover{
border-color: indianred;
}
.signup-form form input:focus{
outline: none;
border-color: tomato;
}
.signup-form form button{
display: flex;
height: 30px;
align-items: center;
justify-content: center;
font-size: 14px;
font-family: 'Cairo', sans-serif;
background: rgba(255, 99, 71, 0.775);
color: white;
border: none;
padding: 4px;
transition-timing-function: ease;
transition-duration: 0.4s;
margin-top: 16px;
font-weight: bolder;
}
.signup-form form button:hover{
background: rgb(255, 74, 42);
}
.linker{
font-size: 14px;
color: white;
text-decoration: none;
font-family: monospace;
margin-top: 20px;
transition-timing-function: ease;
transition-duration: 0.2s;
}
.linker:hover{
color: tomato;
} | 0.438304 | 0.077762 |
@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
:root {
--pink-fair : #FFEFEA;
--white-solid : #FFFFFF;
--gray-mine-shaft : #333333;
--gray-alto : #DADADA;
--box-shadow : rgba(0, 0, 0, 0.3);
}
* {
box-sizing : border-box;
}
body {
background-color : var(--pink-fair);
font-family : "Lato", sans-serif;
min-height : 100vh;
margin : 0;
}
h1 {
text-align : center;
}
.container {
margin : auto;
padding : 20px;
}
.btn {
cursor : pointer;
background-color : darksalmon;
border : 0;
border-radius : 4px;
color : var(--white-solid);
font-size : 16px;
padding : 8px;
}
.btn:active {
transform : scale(0.98);
}
.btn:focus,
select:focus {
outline : 0;
}
.btn-toggle {
display : block;
margin : auto;
margin-bottom : 20px;
}
.text-box {
width : 70%;
position : absolute;
top : 30%;
left : 50%;
transform : translate(-50%, -800%);
background-color : var(--gray-mine-shaft);
color : var(--white-solid);
padding : 20px;
border-radius : 5px;
transition : all 1.2s ease-in-out;
}
.text-box.show {
transform : translate(-50%, 0);
}
.text-box select {
background-color : darksalmon;
border : 0;
color : var(--white-solid);
font-size : 12px;
height : 30px;
width : 100%;
}
.text-box textarea {
border : 1px solid var(--gray-alto);
border-radius : 4px;
font-size : 16px;
padding : 8px;
margin : 15px 0;
width : 100%;
height : 150px;
}
.text-box .btn {
width : 100%;
}
.text-box .close {
float : right;
text-align : center;
cursor : pointer;
}
main {
display : grid;
grid-template-columns : repeat(4, 1fr);
grid-gap : 10px;
}
.box {
box-shadow : 0 2px 10px 0 var(--box-shadow);
border-radius : 5px;
cursor : pointer;
/* make the text as flex */
display : flex;
flex-direction : column;
overflow : hidden;
transition : box-shadow 0.2s ease-out;
}
.box.active {
box-shadow : 0 0 10px 5px darksalmon;
}
.box img {
width : 100%;
object-fit : cover;
height : 400px;
}
.box .info {
background-color : darksalmon;
color : var(--white-solid);
font-size : 18px;
letter-spacing : 1px;
text-transform : uppercase;
margin : 0;
padding : 10px;
text-align : center;
height : 15%;
}
@media (max-width: 1100px) {
main {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 760px) {
main {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 500px) {
main {
grid-template-columns: 1fr;
}
} | 13_speech_text_reader_speech_sysnthesis/style.css | @import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
:root {
--pink-fair : #FFEFEA;
--white-solid : #FFFFFF;
--gray-mine-shaft : #333333;
--gray-alto : #DADADA;
--box-shadow : rgba(0, 0, 0, 0.3);
}
* {
box-sizing : border-box;
}
body {
background-color : var(--pink-fair);
font-family : "Lato", sans-serif;
min-height : 100vh;
margin : 0;
}
h1 {
text-align : center;
}
.container {
margin : auto;
padding : 20px;
}
.btn {
cursor : pointer;
background-color : darksalmon;
border : 0;
border-radius : 4px;
color : var(--white-solid);
font-size : 16px;
padding : 8px;
}
.btn:active {
transform : scale(0.98);
}
.btn:focus,
select:focus {
outline : 0;
}
.btn-toggle {
display : block;
margin : auto;
margin-bottom : 20px;
}
.text-box {
width : 70%;
position : absolute;
top : 30%;
left : 50%;
transform : translate(-50%, -800%);
background-color : var(--gray-mine-shaft);
color : var(--white-solid);
padding : 20px;
border-radius : 5px;
transition : all 1.2s ease-in-out;
}
.text-box.show {
transform : translate(-50%, 0);
}
.text-box select {
background-color : darksalmon;
border : 0;
color : var(--white-solid);
font-size : 12px;
height : 30px;
width : 100%;
}
.text-box textarea {
border : 1px solid var(--gray-alto);
border-radius : 4px;
font-size : 16px;
padding : 8px;
margin : 15px 0;
width : 100%;
height : 150px;
}
.text-box .btn {
width : 100%;
}
.text-box .close {
float : right;
text-align : center;
cursor : pointer;
}
main {
display : grid;
grid-template-columns : repeat(4, 1fr);
grid-gap : 10px;
}
.box {
box-shadow : 0 2px 10px 0 var(--box-shadow);
border-radius : 5px;
cursor : pointer;
/* make the text as flex */
display : flex;
flex-direction : column;
overflow : hidden;
transition : box-shadow 0.2s ease-out;
}
.box.active {
box-shadow : 0 0 10px 5px darksalmon;
}
.box img {
width : 100%;
object-fit : cover;
height : 400px;
}
.box .info {
background-color : darksalmon;
color : var(--white-solid);
font-size : 18px;
letter-spacing : 1px;
text-transform : uppercase;
margin : 0;
padding : 10px;
text-align : center;
height : 15%;
}
@media (max-width: 1100px) {
main {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 760px) {
main {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 500px) {
main {
grid-template-columns: 1fr;
}
} | 0.501953 | 0.151906 |
* {
box-sizing: border-box;
}
html {
font-family: 'Work Sans', sans-serif;
}
body {
margin: 0;
padding: 0;
height: 100%;
overflow-y: hidden;
}
.content-wrapper {
position: relative;
height: 100vh;
}
.title {
display: block;
padding: 0;
}
.subtitle {
display: block;
margin: 0;
padding: 0;
font-weight: 500;
}
.description {
line-height: 1.6;
}
.user-input {
position: relative;
}
.user-beverage {
display: block;
border-width: 1.5px;
border: solid black;
height: 50px;
}
.search-coffee-btn {
display: block;
background: black;
font-family: 'Work Sans', sans-serif;
text-transform: uppercase;
color: white;
text-decoration: none;
border: none;
cursor: pointer;
height: 50px;
}
.search-coffee-btn:hover {
background: white;
color: black;
border: solid black;
border-width: 1.5px;
}
::placeholder {
color: black;
font-weight: 300;
opacity: 0.6;
font-family: 'Work Sans', sans-serif;
}
input[type="text"] {
color: black;
font-weight: 500;
font-family: 'Work Sans', sans-serif;
}
.docs-footer a {
text-decoration: none;
color: black;
}
.docs-footer a:hover {
color: grey;
}
/* End general style */
/* For small devices */
@media only screen and (max-width: 640px) {
.wrapper {
width: 80%;
display: block;
margin: 0 auto;
padding-top: 3.5em;
}
.img-wrapper {
max-width: 80%;
height: 100%;
margin: 0 auto;
text-align: center;
}
.img-wrapper img {
width: 90%;
height: 35%;
margin-top: 1.5em;
}
.title {
font-size: 40px;
margin-top: 0.7em;
margin-bottom: 15px;
}
.subtitle {
font-size: 24px;
}
.description {
font-size: 16px;
margin-bottom: 2em;
}
/* User input */
.user-beverage {
width: 100%;
}
.search-coffee-btn {
font-size: 14px;
padding: 10px 18px;
height: 40px;
margin-top: 20px;
}
input[type="text"] {
padding-left: 12px;
color: black;
font-weight: 500;
font-size: 12px;
}
::placeholder {
font-size: 14px;
}
.docs-footer {
position: absolute;
top: 2em;
}
.docs-footer a {
font-size: 14px;
}
}
/* For medium devices */
@media only screen and (min-width: 641px) and (max-width: 1199px) {
.wrapper {
width: 80%;
display: block;
margin: 0 auto;
padding-top: 3.5em;
}
.img-wrapper {
max-width: 60%;
height: 100%;
margin: 0 auto;
text-align: center;
}
.img-wrapper img {
width: 90%;
height: 45%;
margin-top: 2em;
}
.title {
font-size: 40px;
margin-top: 0.7em;
margin-bottom: 15px;
}
.subtitle {
font-size: 24px;
}
.description {
font-size: 16px;
margin-bottom: 2em;
}
/* User input */
.user-beverage {
width: 70%;
display: inline-block;
}
.search-coffee-btn {
display: inline-block;
font-size: 16px;
padding: 14px 22px;
margin-left: 20px;
}
input[type="text"] {
padding-left: 12px;
color: black;
font-weight: 500;
font-size: 14px;
}
::placeholder {
font-size: 16px;
}
.docs-footer {
position: absolute;
top: 2em;
}
.docs-footer a {
font-size: 14px;
}
}
/* For large devices */
@media only screen and (min-width: 1200px) {
.content-wrapper {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.wrapper {
width: 45%;
margin: 8%;
/* position: absolute; */
}
.img-wrapper {
width: 45%;
/* display: block; */
top: 7em;
right: 0;
margin: 0;
/* position: absolute; */
}
.img-wrapper img {
width: 100%;
height: 60%;
}
.title {
font-size: 80px;
margin-bottom: 20px;
}
.subtitle {
font-size: 34px;
}
.description {
font-size: 18px;
}
.user-beverage {
width: 90%;
margin-top: 2em;
}
.search-coffee-btn {
font-size: 16px;
padding: 14px 22px;
margin-top: 20px;
}
::placeholder {
font-size: 16px;
}
input[type="text"] {
padding-left: 15px;
font-size: 16px;
}
.docs-footer {
position: absolute;
bottom: -6em;
}
}
/* For very large devices */
@media only screen and (min-width: 1299px) {
.content-wrapper {
display: flex;
}
.wrapper {
width: 45%;
margin: 8%;
/* position: absolute; */
}
.img-wrapper {
width: 45%;
/* display: block; */
top: 0;
right: 2em;
margin: 0;
/* position: absolute; */
}
.img-wrapper img {
width: 100%;
height: 65%;
}
.title {
font-size: 80px;
margin-bottom: 20px;
}
.subtitle {
font-size: 34px;
}
.description {
font-size: 18px;
}
.user-beverage {
display: inline-block;
/* width: 480px; */
width: 60%;
margin-top: 2em;
}
.search-coffee-btn {
display: inline-block;
font-size: 16px;
padding: 14px 22px;
margin-left: 20px;
}
::placeholder {
font-size: 16px;
}
input[type="text"] {
padding-left: 15px;
font-size: 16px;
}
.docs-footer {
position: absolute;
bottom: -10em;
}
} | app/public/css/main.css | * {
box-sizing: border-box;
}
html {
font-family: 'Work Sans', sans-serif;
}
body {
margin: 0;
padding: 0;
height: 100%;
overflow-y: hidden;
}
.content-wrapper {
position: relative;
height: 100vh;
}
.title {
display: block;
padding: 0;
}
.subtitle {
display: block;
margin: 0;
padding: 0;
font-weight: 500;
}
.description {
line-height: 1.6;
}
.user-input {
position: relative;
}
.user-beverage {
display: block;
border-width: 1.5px;
border: solid black;
height: 50px;
}
.search-coffee-btn {
display: block;
background: black;
font-family: 'Work Sans', sans-serif;
text-transform: uppercase;
color: white;
text-decoration: none;
border: none;
cursor: pointer;
height: 50px;
}
.search-coffee-btn:hover {
background: white;
color: black;
border: solid black;
border-width: 1.5px;
}
::placeholder {
color: black;
font-weight: 300;
opacity: 0.6;
font-family: 'Work Sans', sans-serif;
}
input[type="text"] {
color: black;
font-weight: 500;
font-family: 'Work Sans', sans-serif;
}
.docs-footer a {
text-decoration: none;
color: black;
}
.docs-footer a:hover {
color: grey;
}
/* End general style */
/* For small devices */
@media only screen and (max-width: 640px) {
.wrapper {
width: 80%;
display: block;
margin: 0 auto;
padding-top: 3.5em;
}
.img-wrapper {
max-width: 80%;
height: 100%;
margin: 0 auto;
text-align: center;
}
.img-wrapper img {
width: 90%;
height: 35%;
margin-top: 1.5em;
}
.title {
font-size: 40px;
margin-top: 0.7em;
margin-bottom: 15px;
}
.subtitle {
font-size: 24px;
}
.description {
font-size: 16px;
margin-bottom: 2em;
}
/* User input */
.user-beverage {
width: 100%;
}
.search-coffee-btn {
font-size: 14px;
padding: 10px 18px;
height: 40px;
margin-top: 20px;
}
input[type="text"] {
padding-left: 12px;
color: black;
font-weight: 500;
font-size: 12px;
}
::placeholder {
font-size: 14px;
}
.docs-footer {
position: absolute;
top: 2em;
}
.docs-footer a {
font-size: 14px;
}
}
/* For medium devices */
@media only screen and (min-width: 641px) and (max-width: 1199px) {
.wrapper {
width: 80%;
display: block;
margin: 0 auto;
padding-top: 3.5em;
}
.img-wrapper {
max-width: 60%;
height: 100%;
margin: 0 auto;
text-align: center;
}
.img-wrapper img {
width: 90%;
height: 45%;
margin-top: 2em;
}
.title {
font-size: 40px;
margin-top: 0.7em;
margin-bottom: 15px;
}
.subtitle {
font-size: 24px;
}
.description {
font-size: 16px;
margin-bottom: 2em;
}
/* User input */
.user-beverage {
width: 70%;
display: inline-block;
}
.search-coffee-btn {
display: inline-block;
font-size: 16px;
padding: 14px 22px;
margin-left: 20px;
}
input[type="text"] {
padding-left: 12px;
color: black;
font-weight: 500;
font-size: 14px;
}
::placeholder {
font-size: 16px;
}
.docs-footer {
position: absolute;
top: 2em;
}
.docs-footer a {
font-size: 14px;
}
}
/* For large devices */
@media only screen and (min-width: 1200px) {
.content-wrapper {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.wrapper {
width: 45%;
margin: 8%;
/* position: absolute; */
}
.img-wrapper {
width: 45%;
/* display: block; */
top: 7em;
right: 0;
margin: 0;
/* position: absolute; */
}
.img-wrapper img {
width: 100%;
height: 60%;
}
.title {
font-size: 80px;
margin-bottom: 20px;
}
.subtitle {
font-size: 34px;
}
.description {
font-size: 18px;
}
.user-beverage {
width: 90%;
margin-top: 2em;
}
.search-coffee-btn {
font-size: 16px;
padding: 14px 22px;
margin-top: 20px;
}
::placeholder {
font-size: 16px;
}
input[type="text"] {
padding-left: 15px;
font-size: 16px;
}
.docs-footer {
position: absolute;
bottom: -6em;
}
}
/* For very large devices */
@media only screen and (min-width: 1299px) {
.content-wrapper {
display: flex;
}
.wrapper {
width: 45%;
margin: 8%;
/* position: absolute; */
}
.img-wrapper {
width: 45%;
/* display: block; */
top: 0;
right: 2em;
margin: 0;
/* position: absolute; */
}
.img-wrapper img {
width: 100%;
height: 65%;
}
.title {
font-size: 80px;
margin-bottom: 20px;
}
.subtitle {
font-size: 34px;
}
.description {
font-size: 18px;
}
.user-beverage {
display: inline-block;
/* width: 480px; */
width: 60%;
margin-top: 2em;
}
.search-coffee-btn {
display: inline-block;
font-size: 16px;
padding: 14px 22px;
margin-left: 20px;
}
::placeholder {
font-size: 16px;
}
input[type="text"] {
padding-left: 15px;
font-size: 16px;
}
.docs-footer {
position: absolute;
bottom: -10em;
}
} | 0.577138 | 0.124001 |
body {
font-size: 16px;
font-family: 'Georgia', sans-serif;
}
@font-face {
font-family: 'Georgia';
src: url('../fonts/Georgia.ttf') format('truetype');
/* IE6-IE8 */
}
footer {
color: #3A6099;
font-style: italic;
text-align: right;
margin: 30px 0
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.brand_name {
font-style: italic;
margin: 10px 0 0 30px;
color: #3A6099;
}
.container {
width: 1100px;
}
header {
padding: 30px 0;
}
.logo {
width: 80px;
}
.row {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
margin-bottom: 0;
}
.col-md-9 {
text-align: right;
}
.navbar {
margin-top: 0;
margin-bottom: 0;
display: flex;
}
ul {
margin-bottom: 0;
}
.navbar-nav li {
font-size: 16px;
}
.company-name {
font-size: 20px;
color: #3A6099;
margin-left: 10px;
}
.header {
display: flex;
justify-content: space-between;
}
.language li img {
width: 30px;
}
.language {
display: flex;
padding-inline-start: 0;
}
.language li {
list-style: none;
margin-left: 10px;
padding: 10px 0;
}
.content01 img {
max-width: 100%;
}
.chapter {
margin: 20px 0;
}
.content01 p {
margin-bottom: 20px;
}
#l_question h2 {
text-align: center;
font-size: 60px;
margin-bottom: 50px
}
#l_question .question {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
}
#l_question .question p {
font-size: 40px;
width: 250px;
padding: 0 20px;
text-align: center;
}
#l_question .question p.first {
color: #1902C6
}
#l_question .question p.last {
color: #1B6910
}
#l_question .question .btn {
flex: auto;
border-radius: 100px;
transition: background-color 0.4s ease 0s;
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
cursor: pointer;
width: 40px;
padding: 0
}
#l_question .question .btn01:hover {
background-color: #131a5f
}
#l_question .question .btn02:hover, #l_question .question .btn03:hover, #l_question .question .btn04:hover {
background-color: #1d2998
}
#l_question .question .btn05:hover {
background-color: #000;
color: #f5d448
}
#l_question .question .btn06:hover {
background-color: #123208
}
#l_question .question .btn07:hover {
background-color: #40631a
}
#l_question .question .btn08:hover {
background-color: #668827
}
#l_question .question .btn09:hover {
background-color: #6c8d2c
}
.btn01 {
height: 374px;
background: rgba(25, 2, 198, 1);
}
.btn02 {
height: 299px;
background-color: rgba(103, 74, 224, 1)
}
.btn03 {
height: 197px;
background-color: rgba(137, 115, 231, 1)
}
.btn04 {
height: 118px;
background-color: rgba(165, 148, 236, 1)
}
.btn05 {
height: 42px;
width: 108px !important;
background-color: rgba(217, 217, 217, 1);
color: #fff
}
.btn06 {
height: 118px;
background-color: rgba(143, 214, 0, 1)
}
.btn07 {
height: 197px;
background-color: rgba(131, 196, 0, 1)
}
.btn08 {
height: 299px;
background-color: rgba(117, 176, 0, 1)
}
.btn09 {
height: 374px;
background-color: rgba(108, 162, 0, 1)
}
#l_result h2 {
color: #3a79dd;
}
#l_result table {width: 100%}
#l_result th, #l_result td {border: solid 1px #000; padding: 10px; text-align: center;}
#l_result th.gray {background: #bfbfbf}
#l_result th.color01 {background-color: #5a82b6; color: #fff}
#l_result th.color02 {background-color: #3a7c28; color: #fff}
#l_result th.color03 {background-color: #d7d20f; color: #fff}
#l_result th.color04 {background-color: #ba211b; color: #fff} | asset/css/homepage/index.css | body {
font-size: 16px;
font-family: 'Georgia', sans-serif;
}
@font-face {
font-family: 'Georgia';
src: url('../fonts/Georgia.ttf') format('truetype');
/* IE6-IE8 */
}
footer {
color: #3A6099;
font-style: italic;
text-align: right;
margin: 30px 0
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.brand_name {
font-style: italic;
margin: 10px 0 0 30px;
color: #3A6099;
}
.container {
width: 1100px;
}
header {
padding: 30px 0;
}
.logo {
width: 80px;
}
.row {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
margin-bottom: 0;
}
.col-md-9 {
text-align: right;
}
.navbar {
margin-top: 0;
margin-bottom: 0;
display: flex;
}
ul {
margin-bottom: 0;
}
.navbar-nav li {
font-size: 16px;
}
.company-name {
font-size: 20px;
color: #3A6099;
margin-left: 10px;
}
.header {
display: flex;
justify-content: space-between;
}
.language li img {
width: 30px;
}
.language {
display: flex;
padding-inline-start: 0;
}
.language li {
list-style: none;
margin-left: 10px;
padding: 10px 0;
}
.content01 img {
max-width: 100%;
}
.chapter {
margin: 20px 0;
}
.content01 p {
margin-bottom: 20px;
}
#l_question h2 {
text-align: center;
font-size: 60px;
margin-bottom: 50px
}
#l_question .question {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
}
#l_question .question p {
font-size: 40px;
width: 250px;
padding: 0 20px;
text-align: center;
}
#l_question .question p.first {
color: #1902C6
}
#l_question .question p.last {
color: #1B6910
}
#l_question .question .btn {
flex: auto;
border-radius: 100px;
transition: background-color 0.4s ease 0s;
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
cursor: pointer;
width: 40px;
padding: 0
}
#l_question .question .btn01:hover {
background-color: #131a5f
}
#l_question .question .btn02:hover, #l_question .question .btn03:hover, #l_question .question .btn04:hover {
background-color: #1d2998
}
#l_question .question .btn05:hover {
background-color: #000;
color: #f5d448
}
#l_question .question .btn06:hover {
background-color: #123208
}
#l_question .question .btn07:hover {
background-color: #40631a
}
#l_question .question .btn08:hover {
background-color: #668827
}
#l_question .question .btn09:hover {
background-color: #6c8d2c
}
.btn01 {
height: 374px;
background: rgba(25, 2, 198, 1);
}
.btn02 {
height: 299px;
background-color: rgba(103, 74, 224, 1)
}
.btn03 {
height: 197px;
background-color: rgba(137, 115, 231, 1)
}
.btn04 {
height: 118px;
background-color: rgba(165, 148, 236, 1)
}
.btn05 {
height: 42px;
width: 108px !important;
background-color: rgba(217, 217, 217, 1);
color: #fff
}
.btn06 {
height: 118px;
background-color: rgba(143, 214, 0, 1)
}
.btn07 {
height: 197px;
background-color: rgba(131, 196, 0, 1)
}
.btn08 {
height: 299px;
background-color: rgba(117, 176, 0, 1)
}
.btn09 {
height: 374px;
background-color: rgba(108, 162, 0, 1)
}
#l_result h2 {
color: #3a79dd;
}
#l_result table {width: 100%}
#l_result th, #l_result td {border: solid 1px #000; padding: 10px; text-align: center;}
#l_result th.gray {background: #bfbfbf}
#l_result th.color01 {background-color: #5a82b6; color: #fff}
#l_result th.color02 {background-color: #3a7c28; color: #fff}
#l_result th.color03 {background-color: #d7d20f; color: #fff}
#l_result th.color04 {background-color: #ba211b; color: #fff} | 0.303525 | 0.089058 |
body {
margin: 0;
font-family: "Titillium Web", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
/* Common CSS */
.container {
padding: 60px 20px 20px 20px;
margin: 0 auto;
width: 100%;
max-width: 750px;
transition: all ease-in-out 0.3s;
box-sizing: border-box;
}
.text-center {
text-align: center;
}
.backButton {
text-decoration: none;
color: #e84e36;
}
.backButton:hover {
text-decoration: underline;
}
/* Blog CSS */
.blog {
margin-bottom: 30px;
padding-bottom: 100px;
}
.blogTitle {
font-size: 40px;
margin-bottom: 20px;
line-height: 50px;
color: #333;
}
.blogAuthor {
font-size: 15px;
color: #b1b1b4;
margin-bottom: 10px;
}
.blogAuthor span {
color: #000;
text-transform: capitalize;
}
.postDetails {
padding-top: 20px;
}
/* Share CSS */
.shareTo {
margin: 20px 0 20px;
padding: 10px 0;
float: left;
width: 100%;
border-top: solid 1px #d0d0d0;
border-bottom: solid 1px #d0d0d0;
}
.shareTo svg {
margin-right: 5px;
}
.shareCount {
float: left;
text-align: center;
padding-left: 30px;
font-weight: bold;
line-height: 20px;
padding-top: 4px;
}
.shareCount span {
font-weight: normal;
font-size: 12px;
}
.shareButtons {
float: left;
border-left: solid 1px #d0d0d0;
padding-left: 30px;
margin-top: 7px;
margin-left: 30px;
}
.shareButtons a {
float: left;
transition: all ease-in-out 0.3s;
}
.shareButtons a:hover {
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
}
/* Read More Button */
.readMore {
position: relative;
display: inline-block;
width: auto;
color: #ecf0f1;
text-decoration: none;
border-radius: 5px;
border: solid 1px #f73619;
background: #e84e36;
text-align: center;
margin-top: 20px;
padding: 10px 18px 8px;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
transition: all 0.1s;
-webkit-box-shadow: 0px 6px 0px #a81600;
-moz-box-shadow: 0px 6px 0px #a81600;
box-shadow: 0px 6px 0px #a81600;
cursor: pointer;
}
.readMore:active {
-webkit-box-shadow: 0px 2px 0px #a81600;
-moz-box-shadow: 0px 2px 0px #a81600;
box-shadow: 0px 2px 0px #a81600;
position: relative;
top: 4px;
}
.deleteButton {
position: relative;
display: inline-block;
width: auto;
color: #e84e36;
text-decoration: none;
border-radius: 5px;
border: solid 1px #f73619;
background: #fff;
text-align: center;
margin-top: 20px;
padding: 10px 35px 8px;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
transition: all 0.1s;
-webkit-box-shadow: 0px 6px 0px #a81600;
-moz-box-shadow: 0px 6px 0px #a81600;
box-shadow: 0px 6px 0px #a81600;
cursor: pointer;
margin-left: 10px;
}
.deleteButton:active {
-webkit-box-shadow: 0px 2px 0px #a81600;
-moz-box-shadow: 0px 2px 0px #a81600;
box-shadow: 0px 2px 0px #a81600;
position: relative;
top: 4px;
}
/* Form */
.form {
padding-top: 30px;
}
.input-container {
height: 50px;
position: relative;
width: 100%;
margin-bottom: 30px;
}
.input-container.textarea {
height: 150px;
}
.input-container.textarea .input {
padding-top: 15px;
}
.input {
background-color: #f6fafa;
border-radius: 12px;
border: 0;
box-sizing: border-box;
font-size: 18px;
height: 100%;
outline: 0;
padding: 0px 20px 0;
width: 100%;
}
.cut {
background-color: #fff;
border-radius: 10px;
height: 20px;
left: 20px;
position: absolute;
top: -20px;
transform: translateY(0);
transition: transform 200ms;
width: 76px;
}
.cut-short {
width: 55px;
}
.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
transform: translateY(8px);
}
.placeholder {
color: #65657b;
font-family: sans-serif;
left: 20px;
pointer-events: none;
position: absolute;
transform-origin: 0 50%;
transition: transform 200ms, color 200ms;
top: 17px;
}
.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
transform: translateY(-30px) translateX(10px) scale(0.75);
}
.input:not(:placeholder-shown) ~ .placeholder {
color: #808097;
}
.input:focus ~ .placeholder {
color: #e84e36;
} | src/index.css | body {
margin: 0;
font-family: "Titillium Web", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
/* Common CSS */
.container {
padding: 60px 20px 20px 20px;
margin: 0 auto;
width: 100%;
max-width: 750px;
transition: all ease-in-out 0.3s;
box-sizing: border-box;
}
.text-center {
text-align: center;
}
.backButton {
text-decoration: none;
color: #e84e36;
}
.backButton:hover {
text-decoration: underline;
}
/* Blog CSS */
.blog {
margin-bottom: 30px;
padding-bottom: 100px;
}
.blogTitle {
font-size: 40px;
margin-bottom: 20px;
line-height: 50px;
color: #333;
}
.blogAuthor {
font-size: 15px;
color: #b1b1b4;
margin-bottom: 10px;
}
.blogAuthor span {
color: #000;
text-transform: capitalize;
}
.postDetails {
padding-top: 20px;
}
/* Share CSS */
.shareTo {
margin: 20px 0 20px;
padding: 10px 0;
float: left;
width: 100%;
border-top: solid 1px #d0d0d0;
border-bottom: solid 1px #d0d0d0;
}
.shareTo svg {
margin-right: 5px;
}
.shareCount {
float: left;
text-align: center;
padding-left: 30px;
font-weight: bold;
line-height: 20px;
padding-top: 4px;
}
.shareCount span {
font-weight: normal;
font-size: 12px;
}
.shareButtons {
float: left;
border-left: solid 1px #d0d0d0;
padding-left: 30px;
margin-top: 7px;
margin-left: 30px;
}
.shareButtons a {
float: left;
transition: all ease-in-out 0.3s;
}
.shareButtons a:hover {
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.43);
}
/* Read More Button */
.readMore {
position: relative;
display: inline-block;
width: auto;
color: #ecf0f1;
text-decoration: none;
border-radius: 5px;
border: solid 1px #f73619;
background: #e84e36;
text-align: center;
margin-top: 20px;
padding: 10px 18px 8px;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
transition: all 0.1s;
-webkit-box-shadow: 0px 6px 0px #a81600;
-moz-box-shadow: 0px 6px 0px #a81600;
box-shadow: 0px 6px 0px #a81600;
cursor: pointer;
}
.readMore:active {
-webkit-box-shadow: 0px 2px 0px #a81600;
-moz-box-shadow: 0px 2px 0px #a81600;
box-shadow: 0px 2px 0px #a81600;
position: relative;
top: 4px;
}
.deleteButton {
position: relative;
display: inline-block;
width: auto;
color: #e84e36;
text-decoration: none;
border-radius: 5px;
border: solid 1px #f73619;
background: #fff;
text-align: center;
margin-top: 20px;
padding: 10px 35px 8px;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
transition: all 0.1s;
-webkit-box-shadow: 0px 6px 0px #a81600;
-moz-box-shadow: 0px 6px 0px #a81600;
box-shadow: 0px 6px 0px #a81600;
cursor: pointer;
margin-left: 10px;
}
.deleteButton:active {
-webkit-box-shadow: 0px 2px 0px #a81600;
-moz-box-shadow: 0px 2px 0px #a81600;
box-shadow: 0px 2px 0px #a81600;
position: relative;
top: 4px;
}
/* Form */
.form {
padding-top: 30px;
}
.input-container {
height: 50px;
position: relative;
width: 100%;
margin-bottom: 30px;
}
.input-container.textarea {
height: 150px;
}
.input-container.textarea .input {
padding-top: 15px;
}
.input {
background-color: #f6fafa;
border-radius: 12px;
border: 0;
box-sizing: border-box;
font-size: 18px;
height: 100%;
outline: 0;
padding: 0px 20px 0;
width: 100%;
}
.cut {
background-color: #fff;
border-radius: 10px;
height: 20px;
left: 20px;
position: absolute;
top: -20px;
transform: translateY(0);
transition: transform 200ms;
width: 76px;
}
.cut-short {
width: 55px;
}
.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
transform: translateY(8px);
}
.placeholder {
color: #65657b;
font-family: sans-serif;
left: 20px;
pointer-events: none;
position: absolute;
transform-origin: 0 50%;
transition: transform 200ms, color 200ms;
top: 17px;
}
.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
transform: translateY(-30px) translateX(10px) scale(0.75);
}
.input:not(:placeholder-shown) ~ .placeholder {
color: #808097;
}
.input:focus ~ .placeholder {
color: #e84e36;
} | 0.375936 | 0.074973 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
@import url( animation.css);
@import url(AgapeConnectOveride.css);
/*!
* Bootstrap v2.3.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
.clearfix {
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
clear: both;
}
.hide-text {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.input-block-level {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a:hover,
a:active {
outline: 0;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
/* Responsive images (ensure images don't scale beyond their parents) */
max-width: 100%;
/* Part 1: Set a maxium relative to the parent */
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
max-width: none;
}
button,
input,
select,
textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
}
button,
input {
*overflow: visible;
line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
textarea {
overflow: auto;
vertical-align: top;
}
@media print {
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
.img-rounded {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.img-polaroid {
padding: 4px;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.img-circle {
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
}
.row {
margin-left: -20px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 940px;
}
.span12 {
width: 940px;
}
.span11 {
width: 860px;
}
.span10 {
width: 780px;
}
.span9 {
width: 700px;
}
.span8 {
width: 620px;
}
.span7 {
width: 540px;
}
.span6 {
width: 460px;
}
.span5 {
width: 380px;
}
.span4 {
width: 300px;
}
.span3 {
width: 220px;
}
.span2 {
width: 140px;
}
.span1 {
width: 60px;
}
.offset12 {
margin-left: 980px;
}
.offset11 {
margin-left: 900px;
}
.offset10 {
margin-left: 820px;
}
.offset9 {
margin-left: 740px;
}
.offset8 {
margin-left: 660px;
}
.offset7 {
margin-left: 580px;
}
.offset6 {
margin-left: 500px;
}
.offset5 {
margin-left: 420px;
}
.offset4 {
margin-left: 340px;
}
.offset3 {
margin-left: 260px;
}
.offset2 {
margin-left: 180px;
}
.offset1 {
margin-left: 100px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.127659574468085%;
*margin-left: 2.074468085106383%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.127659574468085%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.48936170212765%;
*width: 91.43617021276594%;
}
.row-fluid .span10 {
width: 82.97872340425532%;
*width: 82.92553191489361%;
}
.row-fluid .span9 {
width: 74.46808510638297%;
*width: 74.41489361702126%;
}
.row-fluid .span8 {
width: 65.95744680851064%;
*width: 65.90425531914893%;
}
.row-fluid .span7 {
width: 57.44680851063829%;
*width: 57.39361702127659%;
}
.row-fluid .span6 {
width: 48.93617021276595%;
*width: 48.88297872340425%;
}
.row-fluid .span5 {
width: 40.42553191489362%;
*width: 40.37234042553192%;
}
.row-fluid .span4 {
width: 31.914893617021278%;
*width: 31.861702127659576%;
}
.row-fluid .span3 {
width: 23.404255319148934%;
*width: 23.351063829787233%;
}
.row-fluid .span2 {
width: 14.893617021276595%;
*width: 14.840425531914894%;
}
.row-fluid .span1 {
width: 6.382978723404255%;
*width: 6.329787234042553%;
}
.row-fluid .offset12 {
margin-left: 104.25531914893617%;
*margin-left: 104.14893617021275%;
}
.row-fluid .offset12:first-child {
margin-left: 102.12765957446808%;
*margin-left: 102.02127659574467%;
}
.row-fluid .offset11 {
margin-left: 95.74468085106382%;
*margin-left: 95.6382978723404%;
}
.row-fluid .offset11:first-child {
margin-left: 93.61702127659574%;
*margin-left: 93.51063829787232%;
}
.row-fluid .offset10 {
margin-left: 87.23404255319149%;
*margin-left: 87.12765957446807%;
}
.row-fluid .offset10:first-child {
margin-left: 85.1063829787234%;
*margin-left: 84.99999999999999%;
}
.row-fluid .offset9 {
margin-left: 78.72340425531914%;
*margin-left: 78.61702127659572%;
}
.row-fluid .offset9:first-child {
margin-left: 76.59574468085106%;
*margin-left: 76.48936170212764%;
}
.row-fluid .offset8 {
margin-left: 70.2127659574468%;
*margin-left: 70.10638297872339%;
}
.row-fluid .offset8:first-child {
margin-left: 68.08510638297872%;
*margin-left: 67.9787234042553%;
}
.row-fluid .offset7 {
margin-left: 61.70212765957446%;
*margin-left: 61.59574468085106%;
}
.row-fluid .offset7:first-child {
margin-left: 59.574468085106375%;
*margin-left: 59.46808510638297%;
}
.row-fluid .offset6 {
margin-left: 53.191489361702125%;
*margin-left: 53.085106382978715%;
}
.row-fluid .offset6:first-child {
margin-left: 51.063829787234035%;
*margin-left: 50.95744680851063%;
}
.row-fluid .offset5 {
margin-left: 44.68085106382979%;
*margin-left: 44.57446808510638%;
}
.row-fluid .offset5:first-child {
margin-left: 42.5531914893617%;
*margin-left: 42.4468085106383%;
}
.row-fluid .offset4 {
margin-left: 36.170212765957444%;
*margin-left: 36.06382978723405%;
}
.row-fluid .offset4:first-child {
margin-left: 34.04255319148936%;
*margin-left: 33.93617021276596%;
}
.row-fluid .offset3 {
margin-left: 27.659574468085104%;
*margin-left: 27.5531914893617%;
}
.row-fluid .offset3:first-child {
margin-left: 25.53191489361702%;
*margin-left: 25.425531914893618%;
}
.row-fluid .offset2 {
margin-left: 19.148936170212764%;
*margin-left: 19.04255319148936%;
}
.row-fluid .offset2:first-child {
margin-left: 17.02127659574468%;
*margin-left: 16.914893617021278%;
}
.row-fluid .offset1 {
margin-left: 10.638297872340425%;
*margin-left: 10.53191489361702%;
}
.row-fluid .offset1:first-child {
margin-left: 8.51063829787234%;
*margin-left: 8.404255319148938%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
float: right;
}
.container {
margin-right: auto;
margin-left: auto;
*zoom: 1;
}
.container:before,
.container:after {
display: table;
content: "";
line-height: 0;
}
.container:after {
clear: both;
}
.container-fluid {
padding-right: 20px;
padding-left: 20px;
*zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
display: table;
content: "";
line-height: 0;
}
.container-fluid:after {
clear: both;
}
.lead {
margin-bottom: 20px;
font-size: 21px;
font-weight: 200;
line-height: 30px;
}
small {
font-size: 85%;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
cite {
font-style: normal;
}
.muted {
color: #999999;
}
a.muted:hover,
a.muted:focus {
color: #808080;
}
.text-warning {
color: #c09853;
}
a.text-warning:hover,
a.text-warning:focus {
color: #a47e3c;
}
.text-error {
color: #b94a48;
}
a.text-error:hover,
a.text-error:focus {
color: #953b39;
}
.text-info {
color: #3a87ad;
}
a.text-info:hover,
a.text-info:focus {
color: #2d6987;
}
.text-success {
color: #468847;
}
a.text-success:hover,
a.text-success:focus {
color: #356635;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: inherit;
font-weight: bold;
color: inherit;
text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
font-weight: normal;
line-height: 1;
color: #999999;
}
h1 small {
font-size: 24.5px;
}
h2 small {
font-size: 17.5px;
}
h3 small {
font-size: 14px;
}
h4 small {
font-size: 14px;
}
.page-header {
padding-bottom: 9px;
margin: 20px 0 30px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
padding: 0;
margin: 0 0 10px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
margin-bottom: 0;
}
li {
line-height: 20px;
}
ul.unstyled,
ol.unstyled {
margin-left: 0;
list-style: none;
}
ul.inline,
ol.inline {
margin-left: 0;
list-style: none;
}
ul.inline > li,
ol.inline > li {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-bottom: 20px;
}
dt,
dd {
line-height: 20px;
}
dt {
font-weight: bold;
}
dd {
margin-left: 10px;
}
.dl-horizontal {
*zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
display: table;
content: "";
line-height: 0;
}
.dl-horizontal:after {
clear: both;
}
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
hr {
margin: 20px 0;
border: 0;
border-top: 1px solid #eeeeee;
border-bottom: 1px solid #ffffff;
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #999999;
}
abbr.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 21px;
margin: 0px 0 42px 0;
font-family:Arial;
background:url(images/quote.png) 21px 15px no-repeat #f4f4f4;
font-style:italic;
color:#848484;
position:relative;
border:none;
}
blockquote p {
margin-bottom: 0;
font-size: 13px;
font-weight: 300;
line-height: 22.5px;
text-indent:50px;
}
blockquote small {
display: block;
line-height: 18px;
font-size:12px;
position:absolute;
bottom:-42px;
left:20%;
background:url(images/cssspirit.png) no-repeat 0px -156px;
padding:24px 0 0 30px;
}
blockquote small:before {
content: '\2014 \00A0';
}
blockquote.pull-right {
float: right;
padding-right: 15px;
padding-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
text-align: right;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
content: "";
}
address {
display: block;
margin-bottom: 18px;
font-style: normal;
line-height: 18px;
}
small {
font-size: 100%;
}
cite {
font-style: normal;
}
code,
pre {
padding: 0 3px 2px;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 12px;
color: #333333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
code {
padding: 2px 4px;
color: #d14;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 20px;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: pre-wrap;
background-color: #f5f5f5;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
pre.prettyprint {
margin-bottom: 20px;
}
pre code {
padding: 0;
color: inherit;
white-space: pre;
white-space: pre-wrap;
background-color: transparent;
border: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.label,
.badge {
display: inline-block;
padding: 2px 4px;
font-size: 11.844px;
font-weight: bold;
line-height: 14px;
color: #ffffff;
vertical-align: baseline;
white-space: nowrap;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #999999;
}
.label {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.badge {
padding-left: 9px;
padding-right: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
}
.label:empty,
.badge:empty {
display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.label-important,
.badge-important {
background-color: #b94a48;
}
.label-important[href],
.badge-important[href] {
background-color: #953b39;
}
.label-warning,
.badge-warning {
background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
background-color: #c67605;
}
.label-success,
.badge-success {
background-color: #468847;
}
.label-success[href],
.badge-success[href] {
background-color: #356635;
}
.label-info,
.badge-info {
background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
position: relative;
top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
top: 0;
}
table {
max-width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}
.table {
width: 100%;
margin-bottom: 20px;
}
.table th,
.table td {
padding: 8px;
line-height: 20px;
text-align: left;
vertical-align: top;
border-top: 1px solid #dddddd;
}
.table th {
font-weight: bold;
}
.table thead th {
vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
border-top: 0;
}
.table tbody + tbody {
border-top: 2px solid #dddddd;
}
.table .table {
background-color: #ffffff;
}
.table-condensed th,
.table-condensed td {
padding: 4px 5px;
}
.table-bordered {
border: 1px solid #dddddd;
border-collapse: separate;
*border-collapse: collapse;
border-left: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomright: 0;
border-bottom-right-radius: 0;
}
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
background-color: #f5f5f5;
}
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
display: table-cell;
float: none;
margin-left: 0;
}
.table td.span1,
.table th.span1 {
float: none;
width: 44px;
margin-left: 0;
}
.table td.span2,
.table th.span2 {
float: none;
width: 124px;
margin-left: 0;
}
.table td.span3,
.table th.span3 {
float: none;
width: 204px;
margin-left: 0;
}
.table td.span4,
.table th.span4 {
float: none;
width: 284px;
margin-left: 0;
}
.table td.span5,
.table th.span5 {
float: none;
width: 364px;
margin-left: 0;
}
.table td.span6,
.table th.span6 {
float: none;
width: 444px;
margin-left: 0;
}
.table td.span7,
.table th.span7 {
float: none;
width: 524px;
margin-left: 0;
}
.table td.span8,
.table th.span8 {
float: none;
width: 604px;
margin-left: 0;
}
.table td.span9,
.table th.span9 {
float: none;
width: 684px;
margin-left: 0;
}
.table td.span10,
.table th.span10 {
float: none;
width: 764px;
margin-left: 0;
}
.table td.span11,
.table th.span11 {
float: none;
width: 844px;
margin-left: 0;
}
.table td.span12,
.table th.span12 {
float: none;
width: 924px;
margin-left: 0;
}
.table tbody tr.success > td {
background-color: #dff0d8;
}
.table tbody tr.error > td {
background-color: #f2dede;
}
.table tbody tr.warning > td {
background-color: #fcf8e3;
}
.table tbody tr.info > td {
background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td {
background-color: #d0e9c6;
}
.table-hover tbody tr.error:hover > td {
background-color: #ebcccc;
}
.table-hover tbody tr.warning:hover > td {
background-color: #faf2cc;
}
.table-hover tbody tr.info:hover > td {
background-color: #c4e3f3;
}
.uneditable-input,
.uneditable-textarea {
color: #999999;
background-color: #fcfcfc;
border-color: #cccccc;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
cursor: not-allowed;
}
.uneditable-input {
overflow: hidden;
white-space: nowrap;
}
.uneditable-textarea {
width: auto;
height: auto;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
float: left;
margin-left: -20px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
display: inline-block;
padding-top: 5px;
margin-bottom: 0;
vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
margin-left: 10px;
}
.input-mini {
width: 60px;
}
.input-small {
width: 90px;
}
.input-medium {
width: 150px;
}
.input-large {
width: 210px;
}
.input-xlarge {
width: 270px;
}
.input-xxlarge {
width: 530px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
float: none;
margin-left: 0;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
display: inline-block;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 926px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 846px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 766px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 686px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 606px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 526px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 446px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 366px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 286px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 206px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 126px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 46px;
}
.controls-row {
*zoom: 1;
}
.controls-row:before,
.controls-row:after {
display: table;
content: "";
line-height: 0;
}
.controls-row:after {
clear: both;
}
.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
float: left;
}
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
padding-top: 5px;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
cursor: not-allowed;
background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
background-color: transparent;
}
.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
color: #c09853;
}
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
color: #c09853;
}
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
border-color: #c09853;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
border-color: #a47e3c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
color: #c09853;
background-color: #fcf8e3;
border-color: #c09853;
}
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
color: #b94a48;
}
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
color: #b94a48;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
border-color: #b94a48;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
border-color: #953b39;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
color: #b94a48;
background-color: #f2dede;
border-color: #b94a48;
}
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
color: #468847;
}
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
color: #468847;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
border-color: #468847;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
border-color: #356635;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
color: #468847;
background-color: #dff0d8;
border-color: #468847;
}
.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
color: #3a87ad;
}
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
color: #3a87ad;
}
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
border-color: #3a87ad;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
border-color: #2d6987;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
color: #3a87ad;
background-color: #d9edf7;
border-color: #3a87ad;
}
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
color: #b94a48;
border-color: #ee5f5b;
}
input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
border-color: #e9322d;
-webkit-box-shadow: 0 0 6px #f8b9b7;
-moz-box-shadow: 0 0 6px #f8b9b7;
box-shadow: 0 0 6px #f8b9b7;
}
.form-actions {
padding: 19px 20px 20px;
margin-top: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
*zoom: 1;
}
.form-actions:before,
.form-actions:after {
display: table;
content: "";
line-height: 0;
}
.form-actions:after {
clear: both;
}
.help-block,
.help-inline {
color: #595959;
}
.help-block {
display: block;
margin-bottom: 10px;
}
.help-inline {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
vertical-align: middle;
padding-left: 5px;
}
.input-append,
.input-prepend {
display: inline-block;
margin-bottom: 10px;
vertical-align: middle;
font-size: 0;
white-space: nowrap;
}
.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input,
.input-append .dropdown-menu,
.input-prepend .dropdown-menu,
.input-append .popover,
.input-prepend .popover {
font-size: 14px;
}
.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input {
position: relative;
margin-bottom: 0;
*margin-left: 0;
vertical-align: top;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-append input:focus,
.input-prepend input:focus,
.input-append select:focus,
.input-prepend select:focus,
.input-append .uneditable-input:focus,
.input-prepend .uneditable-input:focus {
z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
display: inline-block;
width: auto;
height: 20px;
min-width: 16px;
padding: 4px 5px;
font-size: 14px;
font-weight: normal;
line-height: 20px;
text-align: center;
text-shadow: 0 1px 0 #ffffff;
background-color: #eeeeee;
border: 1px solid #ccc;
}
.input-append .add-on,
.input-prepend .add-on,
.input-append .btn,
.input-prepend .btn,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .btn-group > .dropdown-toggle {
vertical-align: top;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.input-append .active,
.input-prepend .active {
background-color: #a9dba9;
border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-append input + .btn-group .btn:last-child,
.input-append select + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
margin-left: -1px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.input-prepend.input-append input + .btn-group .btn,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group .btn {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .btn-group:first-child {
margin-left: 0;
}
input.search-query {
padding-right: 14px;
padding-right: 4px \9;
padding-left: 14px;
padding-left: 4px \9;
/* IE7-8 doesn't have border-radius, so don't indent the padding */
margin-bottom: 0;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.form-search .input-append .search-query {
-webkit-border-radius: 14px 0 0 14px;
-moz-border-radius: 14px 0 0 14px;
border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
-webkit-border-radius: 0 14px 14px 0;
-moz-border-radius: 0 14px 14px 0;
border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
-webkit-border-radius: 0 14px 14px 0;
-moz-border-radius: 0 14px 14px 0;
border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
-webkit-border-radius: 14px 0 0 14px;
-moz-border-radius: 14px 0 0 14px;
border-radius: 14px 0 0 14px;
}
.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
margin-bottom: 0;
vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
display: none;
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
padding-left: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
float: left;
margin-right: 3px;
margin-left: 0;
}
.control-group {
margin-bottom: 10px;
}
legend + .control-group {
margin-top: 20px;
-webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
margin-bottom: 20px;
*zoom: 1;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
display: table;
content: "";
line-height: 0;
}
.form-horizontal .control-group:after {
clear: both;
}
.form-horizontal .control-label {
float: left;
width: 160px;
padding-top: 5px;
text-align: right;
}
.form-horizontal .controls {
*display: inline-block;
*padding-left: 20px;
margin-left: 180px;
*margin-left: 0;
}
.form-horizontal .controls:first-child {
*padding-left: 180px;
}
.form-horizontal .help-block {
margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
margin-top: 10px;
}
.form-horizontal .form-actions {
padding-left: 180px;
}
.btn {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
text-decoration:none!important;
*zoom: 1;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
line-height: 20px;
text-align: center;
vertical-align: middle;
cursor: pointer;
color: #333333!important;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #e6e6e6;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border: 1px solid #cccccc;
*border: 0;
border-bottom-color: #b3b3b3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
*margin-left: .3em;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
color: #333333;
background-color: #e6e6e6;
*background-color: #d9d9d9;
}
.btn:active,
.btn.active {
background-color: #cccccc \9;
}
.btn:first-child {
*margin-left: 0;
}
.btn:hover,
.btn:focus {
color: #333333;
text-decoration: none;
background-position: 0 -15px;
-webkit-transition: background-position 0.1s linear;
-moz-transition: background-position 0.1s linear;
-o-transition: background-position 0.1s linear;
transition: background-position 0.1s linear;
}
.btn:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn.active,
.btn:active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
cursor: default;
background-image: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.btn-large {
padding: 11px 19px;
font-size: 17.5px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
margin-top: 4px;
}
.btn-small {
padding: 2px 10px;
font-size: 11.9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
margin-top: -1px;
}
.btn-mini {
padding: 0 6px;
font-size: 10.5px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #006dcc;
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
border-color: #0044cc #0044cc #002a80;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #0044cc;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
color: #ffffff;
background-color: #0044cc;
*background-color: #003bb3;
}
.btn-primary:active,
.btn-primary.active {
background-color: #003399 \9;
}
.btn-warning {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #faa732;
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
border-color: #f89406 #f89406 #ad6704;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #f89406;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
color: #ffffff;
background-color: #f89406;
*background-color: #df8505;
}
.btn-warning:active,
.btn-warning.active {
background-color: #c67605 \9;
}
.btn-danger {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #da4f49;
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
border-color: #bd362f #bd362f #802420;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #bd362f;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
color: #ffffff;
background-color: #bd362f;
*background-color: #a9302a;
}
.btn-danger:active,
.btn-danger.active {
background-color: #942a25 \9;
}
.btn-success {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #5bb75b;
background-image: -moz-linear-gradient(top, #62c462, #51a351);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
background-image: -o-linear-gradient(top, #62c462, #51a351);
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
border-color: #51a351 #51a351 #387038;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #51a351;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
color: #ffffff;
background-color: #51a351;
*background-color: #499249;
}
.btn-success:active,
.btn-success.active {
background-color: #408140 \9;
}
.btn-info {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #49afcd;
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
border-color: #2f96b4 #2f96b4 #1f6377;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #2f96b4;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
color: #ffffff;
background-color: #2f96b4;
*background-color: #2a85a0;
}
.btn-info:active,
.btn-info.active {
background-color: #24748c \9;
}
.btn-inverse {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #363636;
background-image: -moz-linear-gradient(top, #444444, #222222);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
background-image: -webkit-linear-gradient(top, #444444, #222222);
background-image: -o-linear-gradient(top, #444444, #222222);
background-image: linear-gradient(to bottom, #444444, #222222);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
border-color: #222222 #222222 #000000;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #222222;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
color: #ffffff;
background-color: #222222;
*background-color: #151515;
}
.btn-inverse:active,
.btn-inverse.active {
background-color: #080808 \9;
}
button.btn,
input[type="submit"].btn {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
padding: 0;
border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
*padding-top: 7px;
*padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
*padding-top: 1px;
*padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
background-color: transparent;
background-image: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.btn-link {
border-color: transparent;
cursor: pointer;
color: #0088cc;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
color: #005580;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
color: #333333;
text-decoration: none;
}
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
*margin-right: .3em;
line-height: 14px;
vertical-align: text-top;
background-image: url("images/glyphicons-halflings.png");
background-position: 14px 14px;
background-repeat: no-repeat;
margin-top: 1px;
}
/* White icons with optional class, or on hover/focus/active states of certain elements */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
background-image: url("images/glyphicons-halflings-white.png");
}
.icon-glass {
background-position: 0 0;
}
.icon-music {
background-position: -24px 0;
}
.icon-search {
background-position: -48px 0;
}
.icon-envelope {
background-position: -72px 0;
}
.icon-heart {
background-position: -96px 0;
}
.icon-star {
background-position: -120px 0;
}
.icon-star-empty {
background-position: -144px 0;
}
.icon-user {
background-position: -168px 0;
}
.icon-film {
background-position: -192px 0;
}
.icon-th-large {
background-position: -216px 0;
}
.icon-th {
background-position: -240px 0;
}
.icon-th-list {
background-position: -264px 0;
}
.icon-ok {
background-position: -288px 0;
}
.icon-remove {
background-position: -312px 0;
}
.icon-zoom-in {
background-position: -336px 0;
}
.icon-zoom-out {
background-position: -360px 0;
}
.icon-off {
background-position: -384px 0;
}
.icon-signal {
background-position: -408px 0;
}
.icon-cog {
background-position: -432px 0;
}
.icon-trash {
background-position: -456px 0;
}
.icon-home {
background-position: 0 -24px;
}
.icon-file {
background-position: -24px -24px;
}
.icon-time {
background-position: -48px -24px;
}
.icon-road {
background-position: -72px -24px;
}
.icon-download-alt {
background-position: -96px -24px;
}
.icon-download {
background-position: -120px -24px;
}
.icon-upload {
background-position: -144px -24px;
}
.icon-inbox {
background-position: -168px -24px;
}
.icon-play-circle {
background-position: -192px -24px;
}
.icon-repeat {
background-position: -216px -24px;
}
.icon-refresh {
background-position: -240px -24px;
}
.icon-list-alt {
background-position: -264px -24px;
}
.icon-lock {
background-position: -287px -24px;
}
.icon-flag {
background-position: -312px -24px;
}
.icon-headphones {
background-position: -336px -24px;
}
.icon-volume-off {
background-position: -360px -24px;
}
.icon-volume-down {
background-position: -384px -24px;
}
.icon-volume-up {
background-position: -408px -24px;
}
.icon-qrcode {
background-position: -432px -24px;
}
.icon-barcode {
background-position: -456px -24px;
}
.icon-tag {
background-position: 0 -48px;
}
.icon-tags {
background-position: -25px -48px;
}
.icon-book {
background-position: -48px -48px;
}
.icon-bookmark {
background-position: -72px -48px;
}
.icon-print {
background-position: -96px -48px;
}
.icon-camera {
background-position: -120px -48px;
}
.icon-font {
background-position: -144px -48px;
}
.icon-bold {
background-position: -167px -48px;
}
.icon-italic {
background-position: -192px -48px;
}
.icon-text-height {
background-position: -216px -48px;
}
.icon-text-width {
background-position: -240px -48px;
}
.icon-align-left {
background-position: -264px -48px;
}
.icon-align-center {
background-position: -288px -48px;
}
.icon-align-right {
background-position: -312px -48px;
}
.icon-align-justify {
background-position: -336px -48px;
}
.icon-list {
background-position: -360px -48px;
}
.icon-indent-left {
background-position: -384px -48px;
}
.icon-indent-right {
background-position: -408px -48px;
}
.icon-facetime-video {
background-position: -432px -48px;
}
.icon-picture {
background-position: -456px -48px;
}
.icon-pencil {
background-position: 0 -72px;
}
.icon-map-marker {
background-position: -24px -72px;
}
.icon-adjust {
background-position: -48px -72px;
}
.icon-tint {
background-position: -72px -72px;
}
.icon-edit {
background-position: -96px -72px;
}
.icon-share {
background-position: -120px -72px;
}
.icon-check {
background-position: -144px -72px;
}
.icon-move {
background-position: -168px -72px;
}
.icon-step-backward {
background-position: -192px -72px;
}
.icon-fast-backward {
background-position: -216px -72px;
}
.icon-backward {
background-position: -240px -72px;
}
.icon-play {
background-position: -264px -72px;
}
.icon-pause {
background-position: -288px -72px;
}
.icon-stop {
background-position: -312px -72px;
}
.icon-forward {
background-position: -336px -72px;
}
.icon-fast-forward {
background-position: -360px -72px;
}
.icon-step-forward {
background-position: -384px -72px;
}
.icon-eject {
background-position: -408px -72px;
}
.icon-chevron-left {
background-position: -432px -72px;
}
.icon-chevron-right {
background-position: -456px -72px;
}
.icon-plus-sign {
background-position: 0 -96px;
}
.icon-minus-sign {
background-position: -24px -96px;
}
.icon-remove-sign {
background-position: -48px -96px;
}
.icon-ok-sign {
background-position: -72px -96px;
}
.icon-question-sign {
background-position: -96px -96px;
}
.icon-info-sign {
background-position: -120px -96px;
}
.icon-screenshot {
background-position: -144px -96px;
}
.icon-remove-circle {
background-position: -168px -96px;
}
.icon-ok-circle {
background-position: -192px -96px;
}
.icon-ban-circle {
background-position: -216px -96px;
}
.icon-arrow-left {
background-position: -240px -96px;
}
.icon-arrow-right {
background-position: -264px -96px;
}
.icon-arrow-up {
background-position: -289px -96px;
}
.icon-arrow-down {
background-position: -312px -96px;
}
.icon-share-alt {
background-position: -336px -96px;
}
.icon-resize-full {
background-position: -360px -96px;
}
.icon-resize-small {
background-position: -384px -96px;
}
.icon-plus {
background-position: -408px -96px;
}
.icon-minus {
background-position: -433px -96px;
}
.icon-asterisk {
background-position: -456px -96px;
}
.icon-exclamation-sign {
background-position: 0 -120px;
}
.icon-gift {
background-position: -24px -120px;
}
.icon-leaf {
background-position: -48px -120px;
}
.icon-fire {
background-position: -72px -120px;
}
.icon-eye-open {
background-position: -96px -120px;
}
.icon-eye-close {
background-position: -120px -120px;
}
.icon-warning-sign {
background-position: -144px -120px;
}
.icon-plane {
background-position: -168px -120px;
}
.icon-calendar {
background-position: -192px -120px;
}
.icon-random {
background-position: -216px -120px;
width: 16px;
}
.icon-comment {
background-position: -240px -120px;
}
.icon-magnet {
background-position: -264px -120px;
}
.icon-chevron-up {
background-position: -288px -120px;
}
.icon-chevron-down {
background-position: -313px -119px;
}
.icon-retweet {
background-position: -336px -120px;
}
.icon-shopping-cart {
background-position: -360px -120px;
}
.icon-folder-close {
background-position: -384px -120px;
width: 16px;
}
.icon-folder-open {
background-position: -408px -120px;
width: 16px;
}
.icon-resize-vertical {
background-position: -432px -119px;
}
.icon-resize-horizontal {
background-position: -456px -118px;
}
.icon-hdd {
background-position: 0 -144px;
}
.icon-bullhorn {
background-position: -24px -144px;
}
.icon-bell {
background-position: -48px -144px;
}
.icon-certificate {
background-position: -72px -144px;
}
.icon-thumbs-up {
background-position: -96px -144px;
}
.icon-thumbs-down {
background-position: -120px -144px;
}
.icon-hand-right {
background-position: -144px -144px;
}
.icon-hand-left {
background-position: -168px -144px;
}
.icon-hand-up {
background-position: -192px -144px;
}
.icon-hand-down {
background-position: -216px -144px;
}
.icon-circle-arrow-right {
background-position: -240px -144px;
}
.icon-circle-arrow-left {
background-position: -264px -144px;
}
.icon-circle-arrow-up {
background-position: -288px -144px;
}
.icon-circle-arrow-down {
background-position: -312px -144px;
}
.icon-globe {
background-position: -336px -144px;
}
.icon-wrench {
background-position: -360px -144px;
}
.icon-tasks {
background-position: -384px -144px;
}
.icon-filter {
background-position: -408px -144px;
}
.icon-briefcase {
background-position: -432px -144px;
}
.icon-fullscreen {
background-position: -456px -144px;
}
.btn-group {
position: relative;
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
font-size: 0;
vertical-align: middle;
white-space: nowrap;
*margin-left: .3em;
}
.btn-group:first-child {
*margin-left: 0;
}
.btn-group + .btn-group {
margin-left: 5px;
}
.btn-toolbar {
font-size: 0;
margin-top: 10px;
margin-bottom: 10px;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group {
margin-left: 5px;
}
.btn-group > .btn {
position: relative;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-group > .btn + .btn {
margin-left: -1px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
font-size: 14px;
}
.btn-group > .btn-mini {
font-size: 10.5px;
}
.btn-group > .btn-small {
font-size: 11.9px;
}
.btn-group > .btn-large {
font-size: 17.5px;
}
.btn-group > .btn:first-child {
margin-left: 0;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.btn-group > .btn.large:first-child {
margin-left: 0;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topleft: 6px;
border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-left-radius: 6px;
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
-webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
*padding-top: 5px;
*padding-bottom: 5px;
}
.btn-group > .btn-mini + .dropdown-toggle {
padding-left: 5px;
padding-right: 5px;
*padding-top: 2px;
*padding-bottom: 2px;
}
.btn-group > .btn-small + .dropdown-toggle {
*padding-top: 5px;
*padding-bottom: 4px;
}
.btn-group > .btn-large + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
*padding-top: 7px;
*padding-bottom: 7px;
}
.btn-group.open .dropdown-toggle {
background-image: none;
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn-group.open .btn.dropdown-toggle {
background-color: #e6e6e6;
}
.btn-group.open .btn-primary.dropdown-toggle {
background-color: #0044cc;
}
.btn-group.open .btn-warning.dropdown-toggle {
background-color: #f89406;
}
.btn-group.open .btn-danger.dropdown-toggle {
background-color: #bd362f;
}
.btn-group.open .btn-success.dropdown-toggle {
background-color: #51a351;
}
.btn-group.open .btn-info.dropdown-toggle {
background-color: #2f96b4;
}
.btn-group.open .btn-inverse.dropdown-toggle {
background-color: #222222;
}
.btn .caret {
margin-top: 8px;
margin-left: 0;
}
.btn-large .caret {
margin-top: 6px;
}
.btn-large .caret {
border-left-width: 5px;
border-right-width: 5px;
border-top-width: 5px;
}
.btn-mini .caret,
.btn-small .caret {
margin-top: 8px;
}
.dropup .btn-large .caret {
border-bottom-width: 5px;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.btn-group-vertical {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
}
.btn-group-vertical > .btn {
display: block;
float: none;
max-width: 100%;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-group-vertical > .btn + .btn {
margin-left: 0;
margin-top: -1px;
}
.btn-group-vertical > .btn:first-child {
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.btn-group-vertical > .btn:last-child {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.btn-group-vertical > .btn-large:first-child {
-webkit-border-radius: 6px 6px 0 0;
-moz-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
}
.btn-group-vertical > .btn-large:last-child {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.nav {
margin-left: 0;
margin-bottom: 20px;
list-style: none;
}
.nav > li > a {
display: block;
}
.nav > li > a:hover {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li > a > img {
max-width: none;
}
.nav > .pull-right {
float: right;
}
.nav-header {
display: block;
padding: 3px 15px;
font-size: 11px;
font-weight: bold;
line-height: 20px;
color: #999999;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
text-transform: uppercase;
}
.nav li + .nav-header {
margin-top: 9px;
}
.nav-list {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 0;
}
.nav-list > li > a,
.nav-list .nav-header {
margin-left: -15px;
margin-right: -15px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.nav-list > li > a {
padding: 3px 15px;
}
.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc;
}
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
margin-right: 2px;
}
.nav-list .divider {
*width: 100%;
height: 1px;
margin: 9px 1px;
*margin: -5px 0 5px;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}
.nav-tabs,
.nav-pills {
*zoom: 1;
}
.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
display: table;
content: "";
line-height: 0;
}
.nav-tabs:after,
.nav-pills:after {
clear: both;
}
.nav-tabs > li,
.nav-pills > li {
float: left;
}
.nav-tabs > li > a,
.nav-pills > li > a {
padding-right: 12px;
padding-left: 12px;
margin-right: 2px;
line-height: 14px;
}
.nav-tabs {
border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
margin-bottom: -1px;
}
.nav-tabs > li > a {
padding-top: 8px;
padding-bottom: 8px;
line-height: 18px;
border: 1px solid transparent;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default;
}
.nav-pills > li > a {
padding-top: 8px;
padding-bottom: 8px;
margin-top: 2px;
margin-bottom: 2px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
color: #ffffff;
background-color: #0088cc;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li > a {
margin-right: 0;
}
.nav-tabs.nav-stacked {
border-bottom: 0;
}
.nav-tabs.nav-stacked > li > a {
border: 1px solid #ddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.nav-tabs.nav-stacked > li:first-child > a {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.nav-tabs.nav-stacked > li:last-child > a {
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
border-color: #ddd;
z-index: 2;
}
.nav-pills.nav-stacked > li > a {
margin-bottom: 3px;
}
.nav-pills.nav-stacked > li:last-child > a {
margin-bottom: 1px;
}
.nav-tabs .dropdown-menu {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.nav-pills .dropdown-menu {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.nav .dropdown-toggle .caret {
border-top-color: #0088cc;
border-bottom-color: #0088cc;
margin-top: 6px;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
border-top-color: #005580;
border-bottom-color: #005580;
}
/* move down carets for tabs */
.nav-tabs .dropdown-toggle .caret {
margin-top: 8px;
}
.nav .active .dropdown-toggle .caret {
border-top-color: #fff;
border-bottom-color: #fff;
}
.nav-tabs .active .dropdown-toggle .caret {
border-top-color: #555555;
border-bottom-color: #555555;
}
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
color: #ffffff;
background-color: #999999;
border-color: #999999;
}
.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
opacity: 1;
filter: alpha(opacity=100);
}
.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
border-color: #999999;
}
.tabbable {
*zoom: 1;
}
.tabbable:before,
.tabbable:after {
display: table;
content: "";
line-height: 0;
}
.tabbable:after {
clear: both;
}
.tab-content {
overflow: auto;
}
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-bottom-color: transparent;
border-top-color: #ddd;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 74px;
margin-right: 0;
margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #ffffff;
}
.nav > .disabled > a {
color: #999999;
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
cursor: default;
}
.navbar {
overflow: visible;
margin-bottom: 20px;
*position: relative;
*z-index: 2;
}
.navbar-inner {
min-height: 40px;
padding-left: 20px;
padding-right: 20px;
background-color: #fafafa;
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
border: 1px solid #d4d4d4;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
*zoom: 1;
}
.navbar-inner:before,
.navbar-inner:after {
display: table;
content: "";
line-height: 0;
}
.navbar-inner:after {
clear: both;
}
.navbar .container {
width: auto;
}
.nav-collapse.collapse {
height: auto;
overflow: visible;
}
.navbar .brand {
float: left;
display: block;
padding: 10px 20px 10px;
margin-left: -20px;
font-size: 20px;
font-weight: 200;
color: #777777;
text-shadow: 0 1px 0 #ffffff;
}
.navbar .brand:hover,
.navbar .brand:focus {
text-decoration: none;
}
.navbar-text {
margin-bottom: 0;
line-height: 40px;
color: #777777;
}
.navbar-link {
color: #777777;
}
.navbar-link:hover,
.navbar-link:focus {
color: #333333;
}
.navbar .divider-vertical {
height: 40px;
margin: 0 9px;
border-left: 1px solid #f2f2f2;
border-right: 1px solid #ffffff;
}
.navbar .btn,
.navbar .btn-group {
margin-top: 5px;
}
.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
margin-top: 0;
}
.navbar-form {
margin-bottom: 0;
*zoom: 1;
}
.navbar-form:before,
.navbar-form:after {
display: table;
content: "";
line-height: 0;
}
.navbar-form:after {
clear: both;
}
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
margin-top: 5px;
}
.navbar-form input,
.navbar-form select,
.navbar-form .btn {
display: inline-block;
margin-bottom: 0;
}
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
margin-top: 3px;
}
.navbar-form .input-append,
.navbar-form .input-prepend {
margin-top: 5px;
white-space: nowrap;
}
.navbar-form .input-append input,
.navbar-form .input-prepend input {
margin-top: 0;
}
.navbar-search {
position: relative;
float: left;
margin-top: 5px;
margin-bottom: 0;
}
.navbar-search .search-query {
margin-bottom: 0;
padding: 4px 14px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
font-weight: normal;
line-height: 1;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
.navbar-static-top {
position: static;
margin-bottom: 0;
}
.navbar-static-top .navbar-inner {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
margin-bottom: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
border-width: 0 0 1px;
}
.navbar-fixed-bottom .navbar-inner {
border-width: 1px 0 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
padding-left: 0;
padding-right: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 940px;
}
.navbar-fixed-top {
top: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
box-shadow: 0 1px 10px rgba(0,0,0,.1);
}
.navbar-fixed-bottom {
bottom: 0;
}
.navbar-fixed-bottom .navbar-inner {
-webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
-moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
box-shadow: 0 -1px 10px rgba(0,0,0,.1);
}
.navbar .nav {
position: relative;
left: 0;
display: block;
float: left;
margin: 0 10px 0 0;
}
.navbar .nav.pull-right {
float: right;
margin-right: 0;
}
.navbar .nav > li {
float: left;
}
.navbar .nav > li > a {
float: none;
padding: 10px 15px 10px;
color: #777777;
text-decoration: none;
text-shadow: 0 1px 0 #ffffff;
}
.navbar .nav .dropdown-toggle .caret {
margin-top: 8px;
}
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
background-color: transparent;
color: #333333;
text-decoration: none;
}
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
color: #555555;
text-decoration: none;
background-color: #e5e5e5;
-webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
-moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
.navbar .btn-navbar {
display: none;
float: right;
padding: 7px 10px;
margin-left: 5px;
margin-right: 5px;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #ededed;
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
border-color: #e5e5e5 #e5e5e5 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #e5e5e5;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
color: #ffffff;
background-color: #e5e5e5;
*background-color: #d9d9d9;
}
.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
background-color: #cccccc \9;
}
.navbar .btn-navbar .icon-bar {
display: block;
width: 18px;
height: 2px;
background-color: #f5f5f5;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn-navbar .icon-bar + .icon-bar {
margin-top: 3px;
}
.navbar .nav > li > .dropdown-menu:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -7px;
left: 9px;
}
.navbar .nav > li > .dropdown-menu:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 10px;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
border-top: 7px solid #ccc;
border-top-color: rgba(0, 0, 0, 0.2);
border-bottom: 0;
bottom: -7px;
top: auto;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
border-top: 6px solid #ffffff;
border-bottom: 0;
bottom: -6px;
top: auto;
}
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
border-top-color: #333333;
border-bottom-color: #333333;
}
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
background-color: #e5e5e5;
color: #555555;
}
.navbar .nav li.dropdown > .dropdown-toggle .caret {
border-top-color: #777777;
border-bottom-color: #777777;
}
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
border-top-color: #555555;
border-bottom-color: #555555;
}
.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
left: auto;
right: 0;
}
.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
left: auto;
right: 12px;
}
.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
left: auto;
right: 13px;
}
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
left: auto;
right: 100%;
margin-left: 0;
margin-right: -1px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.navbar-inverse .navbar-inner {
background-color: #1b1b1b;
background-image: -moz-linear-gradient(top, #222222, #111111);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
background-image: -webkit-linear-gradient(top, #222222, #111111);
background-image: -o-linear-gradient(top, #222222, #111111);
background-image: linear-gradient(to bottom, #222222, #111111);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
border-color: #252525;
}
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
color: #999999;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-inverse .brand:hover,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:focus {
color: #ffffff;
}
.navbar-inverse .brand {
color: #999999;
}
.navbar-inverse .navbar-text {
color: #999999;
}
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
background-color: transparent;
color: #ffffff;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
color: #ffffff;
background-color: #111111;
}
.navbar-inverse .navbar-link {
color: #999999;
}
.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
color: #ffffff;
}
.navbar-inverse .divider-vertical {
border-left-color: #111111;
border-right-color: #222222;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
background-color: #111111;
color: #ffffff;
}
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
border-top-color: #999999;
border-bottom-color: #999999;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.navbar-inverse .navbar-search .search-query {
color: #ffffff;
background-color: #515151;
border-color: #111111;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
}
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
padding: 5px 15px;
color: #333333;
text-shadow: 0 1px 0 #ffffff;
background-color: #ffffff;
border: 0;
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
outline: 0;
}
.navbar-inverse .btn-navbar {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #0e0e0e;
background-image: -moz-linear-gradient(top, #151515, #040404);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
background-image: -webkit-linear-gradient(top, #151515, #040404);
background-image: -o-linear-gradient(top, #151515, #040404);
background-image: linear-gradient(to bottom, #151515, #040404);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
border-color: #040404 #040404 #000000;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #040404;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
color: #ffffff;
background-color: #040404;
*background-color: #000000;
}
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
background-color: #000000 \9;
}
.pagination {
margin: 20px 0;
}
.pagination ul {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
margin-left: 0;
margin-bottom: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination ul > li {
display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
float: left;
padding: 4px 12px;
line-height: 20px;
text-decoration: none;
background-color: #ffffff;
border: 1px solid #dddddd;
border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
color: #999999;
cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
color: #999999;
background-color: transparent;
cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
border-left-width: 1px;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.pagination-centered {
text-align: center;
}
.pagination-right {
text-align: right;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span {
padding: 11px 19px;
font-size: 17.5px;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topleft: 6px;
border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
-webkit-border-top-left-radius: 3px;
-moz-border-radius-topleft: 3px;
border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
-webkit-border-top-right-radius: 3px;
-moz-border-radius-topright: 3px;
border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-bottomright: 3px;
border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
padding: 2px 10px;
font-size: 11.9px;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
padding: 0 6px;
font-size: 10.5px;
}
.thumbnails {
margin-left: -20px;
list-style: none;
*zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
display: table;
content: "";
line-height: 0;
}
.thumbnails:after {
clear: both;
}
.row-fluid .thumbnails {
margin-left: 0;
}
.thumbnails > li {
float: left;
margin-bottom: 20px;
margin-left: 20px;
}
.thumbnail {
display: block;
padding: 4px;
line-height: 20px;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
border-color: #0088cc;
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.thumbnail > img {
display: block;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.thumbnail .caption {
padding: 9px;
color: #555555;
}
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
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;
}
.alert,
.alert h4 {
color: #c09853;
}
.alert h4 {
margin: 0;
}
.alert .close {
position: relative;
top: -2px;
right: -21px;
line-height: 20px;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.alert-success h4 {
color: #468847;
}
.alert-danger,
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
color: #b94a48;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #3a87ad;
}
.alert-info h4 {
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;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-moz-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-ms-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-o-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #f7f7f7;
background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.progress .bar {
width: 0%;
height: 100%;
color: #ffffff;
float: left;
font-size: 12px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #0e90d2;
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
background-image: -o-linear-gradient(top, #149bdf, #0480be);
background-image: linear-gradient(to bottom, #149bdf, #0480be);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: width 0.6s ease;
-moz-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress .bar + .bar {
-webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
-moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
}
.progress-striped .bar {
background-color: #149bdf;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
-moz-background-size: 40px 40px;
-o-background-size: 40px 40px;
background-size: 40px 40px;
}
.progress.active .bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-moz-animation: progress-bar-stripes 2s linear infinite;
-ms-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar,
.progress .bar-danger {
background-color: #dd514c;
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
background-color: #ee5f5b;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-success .bar,
.progress .bar-success {
background-color: #5eb95e;
background-image: -moz-linear-gradient(top, #62c462, #57a957);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
background-image: -o-linear-gradient(top, #62c462, #57a957);
background-image: linear-gradient(to bottom, #62c462, #57a957);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.progress-success.progress-striped .bar,
.progress-striped .bar-success {
background-color: #62c462;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-info .bar,
.progress .bar-info {
background-color: #4bb1cf;
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.progress-info.progress-striped .bar,
.progress-striped .bar-info {
background-color: #5bc0de;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-warning .bar,
.progress .bar-warning {
background-color: #faa732;
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}
.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
background-color: #fbb450;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.hero-unit {
padding: 60px;
margin-bottom: 30px;
font-size: 18px;
font-weight: 200;
line-height: 30px;
color: inherit;
background-color: #eeeeee;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.hero-unit h1 {
margin-bottom: 0;
font-size: 60px;
line-height: 1;
color: inherit;
letter-spacing: -1px;
}
.hero-unit li {
line-height: 30px;
}
.media,
.media-body {
overflow: hidden;
*overflow: visible;
zoom: 1;
}
.media,
.media .media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media-object {
display: block;
}
.media-heading {
margin: 0 0 5px;
}
.media > .pull-left {
margin-right: 10px;
}
.media > .pull-right {
margin-left: 10px;
}
.media-list {
margin-left: 0;
list-style: none;
}
.tooltip {
position: absolute;
z-index: 1020;
display: block;
visibility: visible;
padding: 5px;
font-size: 11px;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.tooltip.top {
margin-top: -2px;
}
.tooltip.right {
margin-left: 2px;
}
.tooltip.bottom {
margin-top: 2px;
}
.tooltip.left {
margin-left: -2px;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #000000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid #000000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #000000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid #000000;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #ffffff;
text-align: center;
text-decoration: none;
background-color: #000000;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: none;
max-width: 276px;
padding: 1px;
text-align: left;
background-color: #ffffff;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
white-space: normal;
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
font-weight: normal;
line-height: 18px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}
.popover-title:empty {
display: none;
}
.popover-content {
padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover .arrow {
border-width: 11px;
}
.popover .arrow:after {
border-width: 10px;
content: "";
}
.popover.top .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.popover.top .arrow:after {
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #ffffff;
}
.popover.right .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #ffffff;
}
.popover.bottom .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.popover.bottom .arrow:after {
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #ffffff;
}
.popover.left .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
right: 1px;
border-right-width: 0;
border-left-color: #ffffff;
bottom: -10px;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.modal {
position: fixed;
top: 10%;
left: 50%;
z-index: 1050;
width: 560px;
margin-left: -280px;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
*border: 1px solid #999;
/* IE6-7 */
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
outline: none;
}
.modal.fade {
-webkit-transition: opacity .3s linear, top .3s ease-out;
-moz-transition: opacity .3s linear, top .3s ease-out;
-o-transition: opacity .3s linear, top .3s ease-out;
transition: opacity .3s linear, top .3s ease-out;
top: -25%;
}
.modal.fade.in {
top: 10%;
}
.modal-header {
padding: 9px 15px;
border-bottom: 1px solid #eee;
}
.modal-header .close {
margin-top: 2px;
}
.modal-header h3 {
margin: 0;
line-height: 30px;
}
.modal-body {
position: relative;
overflow-y: auto;
max-height: 400px;
padding: 15px;
}
.modal-form {
margin-bottom: 0;
}
.modal-footer {
padding: 14px 15px 15px;
margin-bottom: 0;
text-align: right;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: inset 0 1px 0 #ffffff;
-moz-box-shadow: inset 0 1px 0 #ffffff;
box-shadow: inset 0 1px 0 #ffffff;
*zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
display: table;
content: "";
line-height: 0;
}
.modal-footer:after {
clear: both;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle {
*margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
outline: 0;
}
.caret {
display: inline-block;
width: 0;
height: 0;
vertical-align: top;
border-top: 4px solid #000000;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
content: "";
}
.dropdown .caret {
margin-top: 8px;
margin-left: 2px;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
*width: 100%;
height: 1px;
margin: 9px 1px;
*margin: -5px 0 5px;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 20px;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
text-decoration: none;
color: #ffffff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
outline: 0;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: default;
}
.open {
*z-index: 1000;
}
.open > .dropdown-menu {
display: block;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px solid #000000;
content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropup .dropdown-submenu > .dropdown-menu {
top: auto;
bottom: 0;
margin-top: 0;
margin-bottom: -2px;
-webkit-border-radius: 5px 5px 5px 0;
-moz-border-radius: 5px 5px 5px 0;
border-radius: 5px 5px 5px 0;
}
.dropdown-submenu > a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.dropdown .dropdown-menu .nav-header {
padding-left: 20px;
padding-right: 20px;
}
.typeahead {
z-index: 1051;
margin-top: 2px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.accordion {
}
.accordion-group {
margin-bottom: 1px;
border-bottom: 1px solid #ebebeb;
}
.accordion-heading {
border-bottom: 0;
zoom:1;
}
.accordion-heading .accordion-toggle {
display: block;
padding:15px;
text-decoration:none!important;
color:#444;
font-size:14px;
line-height:18px;
-webkit-transition: background-color 0.35s ease;
-moz-transition: background-color 0.35s ease;
-ms-transition: background-color 0.35s ease;
-o-transition: background-color 0.35s ease;
transition: background-color 0.35s ease;
outline:none;
background-image:url(images/plus.png);
background-position:100% 50%;
background-repeat:no-repeat;
}
.accordion-heading .accordion-toggle.actived,
.accordion-heading .accordion-toggle.actived:hover{
color:#fff;
background-image:url(images/minus.png);
background-position:100% 50%;
background-repeat:no-repeat;
}
.accordion-heading .accordion-toggle:hover{
color:#fff;
background-image:url(images/plus_hover.png);
}
.accordion-toggle {
cursor: pointer;
}
.accordion-inner {
padding: 9px 15px;
}
.carousel {
position: relative;
margin-bottom: 20px;
line-height: 1;
}
.carousel-inner {
overflow: hidden;
width: 100%;
position: relative;
}
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-moz-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
line-height: 1;
}
.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 {
position: absolute;
top: 40%;
left: 15px;
width: 40px;
height: 40px;
margin-top: -20px;
font-size: 60px;
font-weight: 100;
line-height: 30px;
color: #ffffff;
text-align: center;
background: #222222;
border: 3px solid #ffffff;
-webkit-border-radius: 23px;
-moz-border-radius: 23px;
border-radius: 23px;
opacity: 0.5;
filter: alpha(opacity=50);
}
.carousel-control.right {
left: auto;
right: 15px;
}
.carousel-control:hover,
.carousel-control:focus {
color: #ffffff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.carousel-indicators {
position: absolute;
top: 15px;
right: 15px;
z-index: 5;
margin: 0;
list-style: none;
}
.carousel-indicators li {
display: block;
float: left;
width: 10px;
height: 10px;
margin-left: 5px;
text-indent: -999px;
background-color: #ccc;
background-color: rgba(255, 255, 255, 0.25);
border-radius: 5px;
}
.carousel-indicators .active {
background-color: #fff;
}
.carousel-caption {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 15px;
background: #333333;
background: rgba(0, 0, 0, 0.75);
}
.carousel-caption h4,
.carousel-caption p {
color: #ffffff;
line-height: 20px;
}
.carousel-caption h4 {
margin: 0 0 5px;
}
.carousel-caption p {
margin-bottom: 0;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.well-large {
padding: 24px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.well-small {
padding: 9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 20px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.hide {
display: none;
}
.show {
display: block;
}
.invisible {
visibility: hidden;
}
.affix {
position: fixed;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-moz-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
-moz-transition: height 0.35s ease;
-o-transition: height 0.35s ease;
transition: height 0.35s ease;
}
.collapse.in {
height: auto;
}
@-ms-viewport {
width: device-width;
}
.hidden {
display: none;
visibility: hidden;
}
.visible-phone {
display: none !important;
}
.visible-tablet {
display: none !important;
}
.hidden-desktop {
display: none !important;
}
.visible-desktop {
display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important ;
}
.visible-tablet {
display: inherit !important;
}
.hidden-tablet {
display: none !important;
}
}
@media (max-width: 767px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important;
}
.visible-phone {
display: inherit !important;
}
.hidden-phone {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: inherit !important;
}
.hidden-print {
display: none !important;
}
}
@media (max-width: 767px) {
.navbar-fixed-top,
.navbar-fixed-bottom,
.navbar-static-top {
margin-left: -20px;
margin-right: -20px;
}
.container-fluid {
padding: 0;
}
.dl-horizontal dt {
float: none;
clear: none;
width: auto;
text-align: left;
}
.dl-horizontal dd {
margin-left: 0;
}
.container {
width: auto;
}
.row-fluid {
width: 100%;
}
.row,
.thumbnails {
margin-left: 0;
}
.thumbnails > li {
float: none;
margin-left: 0;
}
[class*="span"],
.uneditable-input[class*="span"],
.row-fluid [class*="span"] {
float: none;
display: block;
width: 100%;
margin-left: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.span12,
.row-fluid .span12 {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.row-fluid [class*="offset"]:first-child {
margin-left: 0;
}
.input-large,
.input-xlarge,
.input-xxlarge,
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.input-prepend input,
.input-append input,
.input-prepend input[class*="span"],
.input-append input[class*="span"] {
display: inline-block;
width: auto;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 0;
}
.modal {
position: fixed;
top: 20px;
left: 20px;
right: 20px;
width: auto;
margin: 0;
}
.modal.fade {
top: -100px;
}
.modal.fade.in {
top: 20px;
}
}
@media (max-width: 480px) {
.nav-collapse {
-webkit-transform: translate3d(0, 0, 0);
}
.page-header h1 small {
display: block;
line-height: 20px;
}
input[type="checkbox"],
input[type="radio"] {
border: 1px solid #ccc;
}
.form-horizontal .control-label {
float: none;
width: auto;
padding-top: 0;
text-align: left;
}
.form-horizontal .controls {
margin-left: 0;
}
.form-horizontal .control-list {
padding-top: 0;
}
.form-horizontal .form-actions {
padding-left: 10px;
padding-right: 10px;
}
.media .pull-left,
.media .pull-right {
float: none;
display: block;
margin-bottom: 10px;
}
.media-object {
margin-right: 0;
margin-left: 0;
}
.modal {
top: 10px;
left: 10px;
right: 10px;
}
.modal-header .close {
padding: 10px;
margin: -10px;
}
.carousel-caption {
position: static;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.row {
margin-left: -20px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 724px;
}
.span12 {
width: 724px;
}
.span11 {
width: 662px;
}
.span10 {
width: 600px;
}
.span9 {
width: 538px;
}
.span8 {
width: 476px;
}
.span7 {
width: 414px;
}
.span6 {
width: 352px;
}
.span5 {
width: 290px;
}
.span4 {
width: 228px;
}
.span3 {
width: 166px;
}
.span2 {
width: 104px;
}
.span1 {
width: 42px;
}
.offset12 {
margin-left: 764px;
}
.offset11 {
margin-left: 702px;
}
.offset10 {
margin-left: 640px;
}
.offset9 {
margin-left: 578px;
}
.offset8 {
margin-left: 516px;
}
.offset7 {
margin-left: 454px;
}
.offset6 {
margin-left: 392px;
}
.offset5 {
margin-left: 330px;
}
.offset4 {
margin-left: 268px;
}
.offset3 {
margin-left: 206px;
}
.offset2 {
margin-left: 144px;
}
.offset1 {
margin-left: 82px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.7624309392265194%;
*margin-left: 2.709239449864817%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.7624309392265194%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.43646408839778%;
*width: 91.38327259903608%;
}
.row-fluid .span10 {
width: 82.87292817679558%;
*width: 82.81973668743387%;
}
.row-fluid .span9 {
width: 74.30939226519337%;
*width: 74.25620077583166%;
}
.row-fluid .span8 {
width: 65.74585635359117%;
*width: 65.69266486422946%;
}
.row-fluid .span7 {
width: 57.18232044198895%;
*width: 57.12912895262725%;
}
.row-fluid .span6 {
width: 48.61878453038674%;
*width: 48.56559304102504%;
}
.row-fluid .span5 {
width: 40.05524861878453%;
*width: 40.00205712942283%;
}
.row-fluid .span4 {
width: 31.491712707182323%;
*width: 31.43852121782062%;
}
.row-fluid .span3 {
width: 22.92817679558011%;
*width: 22.87498530621841%;
}
.row-fluid .span2 {
width: 14.3646408839779%;
*width: 14.311449394616199%;
}
.row-fluid .span1 {
width: 5.801104972375691%;
*width: 5.747913483013988%;
}
.row-fluid .offset12 {
margin-left: 105.52486187845304%;
*margin-left: 105.41847889972962%;
}
.row-fluid .offset12:first-child {
margin-left: 102.76243093922652%;
*margin-left: 102.6560479605031%;
}
.row-fluid .offset11 {
margin-left: 96.96132596685082%;
*margin-left: 96.8549429881274%;
}
.row-fluid .offset11:first-child {
margin-left: 94.1988950276243%;
*margin-left: 94.09251204890089%;
}
.row-fluid .offset10 {
margin-left: 88.39779005524862%;
*margin-left: 88.2914070765252%;
}
.row-fluid .offset10:first-child {
margin-left: 85.6353591160221%;
*margin-left: 85.52897613729868%;
}
.row-fluid .offset9 {
margin-left: 79.8342541436464%;
*margin-left: 79.72787116492299%;
}
.row-fluid .offset9:first-child {
margin-left: 77.07182320441989%;
*margin-left: 76.96544022569647%;
}
.row-fluid .offset8 {
margin-left: 71.2707182320442%;
*margin-left: 71.16433525332079%;
}
.row-fluid .offset8:first-child {
margin-left: 68.50828729281768%;
*margin-left: 68.40190431409427%;
}
.row-fluid .offset7 {
margin-left: 62.70718232044199%;
*margin-left: 62.600799341718584%;
}
.row-fluid .offset7:first-child {
margin-left: 59.94475138121547%;
*margin-left: 59.838368402492065%;
}
.row-fluid .offset6 {
margin-left: 54.14364640883978%;
*margin-left: 54.037263430116376%;
}
.row-fluid .offset6:first-child {
margin-left: 51.38121546961326%;
*margin-left: 51.27483249088986%;
}
.row-fluid .offset5 {
margin-left: 45.58011049723757%;
*margin-left: 45.47372751851417%;
}
.row-fluid .offset5:first-child {
margin-left: 42.81767955801105%;
*margin-left: 42.71129657928765%;
}
.row-fluid .offset4 {
margin-left: 37.01657458563536%;
*margin-left: 36.91019160691196%;
}
.row-fluid .offset4:first-child {
margin-left: 34.25414364640884%;
*margin-left: 34.14776066768544%;
}
.row-fluid .offset3 {
margin-left: 28.45303867403315%;
*margin-left: 28.346655695309746%;
}
.row-fluid .offset3:first-child {
margin-left: 25.69060773480663%;
*margin-left: 25.584224756083227%;
}
.row-fluid .offset2 {
margin-left: 19.88950276243094%;
*margin-left: 19.783119783707537%;
}
.row-fluid .offset2:first-child {
margin-left: 17.12707182320442%;
*margin-left: 17.02068884448102%;
}
.row-fluid .offset1 {
margin-left: 11.32596685082873%;
*margin-left: 11.219583872105325%;
}
.row-fluid .offset1:first-child {
margin-left: 8.56353591160221%;
*margin-left: 8.457152932878806%;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 710px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 648px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 586px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 524px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 462px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 400px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 338px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 276px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 214px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 152px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 90px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 28px;
}
}
@media (min-width: 1200px) {
.row {
margin-left: -30px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 30px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 1170px;
}
.span12 {
width: 1170px;
}
.span11 {
width: 1070px;
}
.span10 {
width: 970px;
}
.span9 {
width: 870px;
}
.span8 {
width: 770px;
}
.span7 {
width: 670px;
}
.span6 {
width: 570px;
}
.span5 {
width: 470px;
}
.span4 {
width: 370px;
}
.span3 {
width: 270px;
}
.span2 {
width: 170px;
}
.span1 {
width: 70px;
}
.offset12 {
margin-left: 1230px;
}
.offset11 {
margin-left: 1130px;
}
.offset10 {
margin-left: 1030px;
}
.offset9 {
margin-left: 930px;
}
.offset8 {
margin-left: 830px;
}
.offset7 {
margin-left: 730px;
}
.offset6 {
margin-left: 630px;
}
.offset5 {
margin-left: 530px;
}
.offset4 {
margin-left: 430px;
}
.offset3 {
margin-left: 330px;
}
.offset2 {
margin-left: 230px;
}
.offset1 {
margin-left: 130px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.564102564102564%;
*margin-left: 2.5109110747408616%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.564102564102564%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.45299145299145%;
*width: 91.39979996362975%;
}
.row-fluid .span10 {
width: 82.90598290598291%;
*width: 82.8527914166212%;
}
.row-fluid .span9 {
width: 74.35897435897436%;
*width: 74.30578286961266%;
}
.row-fluid .span8 {
width: 65.81196581196582%;
*width: 65.75877432260411%;
}
.row-fluid .span7 {
width: 57.26495726495726%;
*width: 57.21176577559556%;
}
.row-fluid .span6 {
width: 48.717948717948715%;
*width: 48.664757228587014%;
}
.row-fluid .span5 {
width: 40.17094017094017%;
*width: 40.11774868157847%;
}
.row-fluid .span4 {
width: 31.623931623931625%;
*width: 31.570740134569924%;
}
.row-fluid .span3 {
width: 23.076923076923077%;
*width: 23.023731587561375%;
}
.row-fluid .span2 {
width: 14.52991452991453%;
*width: 14.476723040552828%;
}
.row-fluid .span1 {
width: 5.982905982905983%;
*width: 5.929714493544281%;
}
.row-fluid .offset12 {
margin-left: 105.12820512820512%;
*margin-left: 105.02182214948171%;
}
.row-fluid .offset12:first-child {
margin-left: 102.56410256410257%;
*margin-left: 102.45771958537915%;
}
.row-fluid .offset11 {
margin-left: 96.58119658119658%;
*margin-left: 96.47481360247316%;
}
.row-fluid .offset11:first-child {
margin-left: 94.01709401709402%;
*margin-left: 93.91071103837061%;
}
.row-fluid .offset10 {
margin-left: 88.03418803418803%;
*margin-left: 87.92780505546462%;
}
.row-fluid .offset10:first-child {
margin-left: 85.47008547008548%;
*margin-left: 85.36370249136206%;
}
.row-fluid .offset9 {
margin-left: 79.48717948717949%;
*margin-left: 79.38079650845607%;
}
.row-fluid .offset9:first-child {
margin-left: 76.92307692307693%;
*margin-left: 76.81669394435352%;
}
.row-fluid .offset8 {
margin-left: 70.94017094017094%;
*margin-left: 70.83378796144753%;
}
.row-fluid .offset8:first-child {
margin-left: 68.37606837606839%;
*margin-left: 68.26968539734497%;
}
.row-fluid .offset7 {
margin-left: 62.393162393162385%;
*margin-left: 62.28677941443899%;
}
.row-fluid .offset7:first-child {
margin-left: 59.82905982905982%;
*margin-left: 59.72267685033642%;
}
.row-fluid .offset6 {
margin-left: 53.84615384615384%;
*margin-left: 53.739770867430444%;
}
.row-fluid .offset6:first-child {
margin-left: 51.28205128205128%;
*margin-left: 51.175668303327875%;
}
.row-fluid .offset5 {
margin-left: 45.299145299145295%;
*margin-left: 45.1927623204219%;
}
.row-fluid .offset5:first-child {
margin-left: 42.73504273504273%;
*margin-left: 42.62865975631933%;
}
.row-fluid .offset4 {
margin-left: 36.75213675213675%;
*margin-left: 36.645753773413354%;
}
.row-fluid .offset4:first-child {
margin-left: 34.18803418803419%;
*margin-left: 34.081651209310785%;
}
.row-fluid .offset3 {
margin-left: 28.205128205128204%;
*margin-left: 28.0987452264048%;
}
.row-fluid .offset3:first-child {
margin-left: 25.641025641025642%;
*margin-left: 25.53464266230224%;
}
.row-fluid .offset2 {
margin-left: 19.65811965811966%;
*margin-left: 19.551736679396257%;
}
.row-fluid .offset2:first-child {
margin-left: 17.094017094017094%;
*margin-left: 16.98763411529369%;
}
.row-fluid .offset1 {
margin-left: 11.11111111111111%;
*margin-left: 11.004728132387708%;
}
.row-fluid .offset1:first-child {
margin-left: 8.547008547008547%;
*margin-left: 8.440625568285142%;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 30px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 1156px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 1056px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 956px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 856px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 756px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 656px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 556px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 456px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 356px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 256px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 156px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 56px;
}
.thumbnails {
margin-left: -30px;
}
.thumbnails > li {
margin-left: 30px;
}
.row-fluid .thumbnails {
margin-left: 0;
}
}
@media (max-width: 979px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
position: static;
}
.navbar-fixed-top {
margin-bottom: 20px;
}
.navbar-fixed-bottom {
margin-top: 20px;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
padding: 5px;
}
.navbar .container {
width: auto;
padding: 0;
}
.navbar .brand {
padding-left: 10px;
padding-right: 10px;
margin: 0 0 0 -5px;
}
.nav-collapse {
clear: both;
}
.nav-collapse .nav {
float: none;
margin: 0 0 10px;
}
.nav-collapse .nav > li {
float: none;
}
.nav-collapse .nav > li > a {
margin-bottom: 2px;
}
.nav-collapse .nav > .divider-vertical {
display: none;
}
.nav-collapse .nav .nav-header {
color: #777777;
text-shadow: none;
}
.nav-collapse .nav > li > a,
.nav-collapse .dropdown-menu a {
padding: 9px 15px;
font-weight: bold;
color: #777777;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.nav-collapse .btn {
padding: 4px 10px 4px;
font-weight: normal;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.nav-collapse .dropdown-menu li + li a {
margin-bottom: 2px;
}
.nav-collapse .nav > li > a:hover,
.nav-collapse .nav > li > a:focus,
.nav-collapse .dropdown-menu a:hover,
.nav-collapse .dropdown-menu a:focus {
background-color: #f2f2f2;
}
.navbar-inverse .nav-collapse .nav > li > a,
.navbar-inverse .nav-collapse .dropdown-menu a {
color: #999999;
}
.navbar-inverse .nav-collapse .nav > li > a:hover,
.navbar-inverse .nav-collapse .nav > li > a:focus,
.navbar-inverse .nav-collapse .dropdown-menu a:hover,
.navbar-inverse .nav-collapse .dropdown-menu a:focus {
background-color: #111111;
}
.nav-collapse.in .btn-group {
margin-top: 5px;
padding: 0;
}
.nav-collapse .dropdown-menu {
position: static;
top: auto;
left: auto;
float: none;
display: none;
max-width: none;
margin: 0 15px;
padding: 0;
background-color: transparent;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.nav-collapse .open > .dropdown-menu {
display: block;
}
.nav-collapse .dropdown-menu:before,
.nav-collapse .dropdown-menu:after {
display: none;
}
.nav-collapse .dropdown-menu .divider {
display: none;
}
.nav-collapse .nav > li > .dropdown-menu:before,
.nav-collapse .nav > li > .dropdown-menu:after {
display: none;
}
.nav-collapse .navbar-form,
.nav-collapse .navbar-search {
float: none;
padding: 10px 15px;
margin: 10px 0;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #f2f2f2;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
}
.navbar-inverse .nav-collapse .navbar-form,
.navbar-inverse .nav-collapse .navbar-search {
border-top-color: #111111;
border-bottom-color: #111111;
}
.navbar .nav-collapse .nav.pull-right {
float: none;
margin-left: 0;
}
.nav-collapse,
.nav-collapse.collapse {
overflow: hidden;
height: 0;
}
.navbar .btn-navbar {
display: block;
}
.navbar-static .navbar-inner {
padding-left: 10px;
padding-right: 10px;
}
}
@media (min-width: 980px) {
.nav-collapse.collapse {
height: auto !important;
overflow: visible !important;
}
}
/* CSS Document */
.title1, .title2, .title3, .title4, .title5, .special, #dnn_dnnSEARCH_txtSearch, #dnn_dnnSEARCH2_txtSearch, .btn, blockquote {
font-family:"Open Sans", Arial;
}
#Body {
color:#666;
background:url(images/wrapper_bg.jpg) repeat-y 50% 0 fixed;
}
html, body {
margin:0px;
height:100%;
padding:0px;
font:normal 13px/1.5 "Open Sans", Arial;
color:#666;
}
p {
margin:0px 0px 8px 0px;
}
header, nav, section, footer {
display:block;
}
TH, TD, DIV {
}
A, A:link {
text-decoration:none;
}
A:active {
text-decoration: none;
}
A:visited {
text-decoration: none;
}
A:hover {
text-decoration: underline;
}
h1, .AgapeH1 {
font:normal 22px/26px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h2, .AgapeH2 {
font:normal 20px/24px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h3, .AgapeH3 {
font:normal 16px/20px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h4, .AgapeH4 {
font:normal 14px/18px "Open Sans", Arial;
margin:0px 0 4px 0;
color:#646464;
letter-spacing:normal;
}
h5, .AgapeH5 {
font:normal 12px/18px "Open Sans", Arial;
color:#646464;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h6 {
font:normal 11px/16px "Open Sans", Arial;
color:#000;
margin:5px 0 10px 0;
letter-spacing:normal;
}
form#Form {
height:100%;
}
.ModuleTitle_SubMenu {
z-index:9999!important;
}
.clearfix:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.clearfix {
display:inline-block;
}
.clearfix {
display:block;
}
#dnn_ControlPanel #dnnCPWrap {
filter: none !important;
}
ul.dnnActionMenuBody li ul li a, ul.dnnActionMenuBody li ul li a img {
color:#328DDE!important;
}
.clear {
clear:both;
}
.height1{
font-size:0px;
height:1px;
}
/* ********** Control Panel Style ************** */
.CommandButton, A.CommandButton:link, A.CommandButton:visited, A.CommandButton:active {
font-size:13px;
text-decoration:none;
font-weight:normal;
}
A.CommandButton:hover {
text-decoration: underline;
font-size:13px;
font-weight:normal;
}
#dnn_bottom .CommandButton, #dnn_bottom A.CommandButton:link, #dnn_bottom A.CommandButton:visited, #dnn_bottom A.CommandButton:active, #dnn_bottom A.CommandButton:hover {
color:#fff;
}
.FileManager A, .FileManager A:link, .FileManager A:visited, .FileManager A:active {
color:#000;
text-decoration: underline;
}
.FileManager A:hover {
color:#000;
text-decoration:none;
}
/* ********** Search Style ************** */
/* ********** Buttons Style ************** */
/* ********** Pane Style ************** */
.row-fluid [class*="Pane"] {
padding:0px 0px 20px 0px;
}
.DNNEmptyPane {
display:none;
}
.LeftOutPane,
.RightOutPane{
padding-left:0px!important;
padding-right:0px!important;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
float:left;
width:448px;
padding-bottom:0 !important;
}
.TopPane_A, .TopPane_B, .TopPane_C {
margin-right:2px;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:15px !important;
}
/* ********** Container Style ************** */
.Head {
font-size:13px;
font-weight:bold;
color:#000;
font-family: Arial, Helvetica, sans-serif;
}
.SubHead {
font-size:13px;
color:#000;
font-family:Arial, Helvetica, sans-serif;
}
.SubSubHead {
font-size:13px;
color:#000;
font-family:Arial, Helvetica, sans-serif;
}
.Normal {
font-size:13px;
line-height:1.5;
color:#666;
}
/* ********** Login Style ************** */
.login, a.login:link, a.login:active, a.login:visited {
color:#666;
text-decoration:none;
font-weight:normal;
font-size:13px;
line-height:20px;
display:inline-block;
padding:5px 15px 5px 43px;
margin-right:2px;
background-image:url(images/cssspirit.png);
background-repeat:no-repeat;
background-position:15px 0px;
background-color:#f0f0f0;
}
a.login:hover {
text-decoration:none;
font-weight:normal;
color:#fff;
background-position:15px -32px;
}
/* ********** User Style ************** */
.user, a.user:link, a.user:active, a.user:visited {
color:#666;
text-decoration:none;
font-weight:normal;
font-size:13px;
line-height:20px;
display:inline-block;
padding:5px 15px 5px 43px;
background-image:url(images/cssspirit.png);
background-repeat:no-repeat;
background-position:15px -65px;
background-color:#f0f0f0;
}
a.user:hover {
text-decoration:none;
font-weight:normal;
color:#fff;
background-position:15px -97px;
}
/* ********** Date Style ************** */
.date, a.date:link, a.date:active, a.date:visited {
color:#4b4b4b;
text-decoration:none;
font-weight:normal;
font-size:14px;
line-height:24px;
}
/* ********** Footer Style ************** */
.footer, a.footer:link, a.footer:active, a.footer:visited {
font-size:13px;
color:#a5a5a5;
text-decoration:none;
font-weight:Normal;
}
a.footer:hover {
text-decoration:none;
font-weight:Normal;
text-decoration:underline;
}
/* ********** Privacy/Terms Style ************** */
.terms, a.terms:link, a.terms:active, a.terms:visited {
font-size:13px;
color:#a5a5a5;
text-decoration:none;
font-weight: normal;
border-bottom:0px dotted;
}
a.terms:hover {
font-weight:Normal;
text-decoration:underline;
}
/* ********** Links Style ************** */
/* ********** Breadcrumb Style ************** */
a.breadcrumb:link, a.breadcrumb:active, a.breadcrumb:visited {
font-size:22px;
text-decoration:none;
font-weight:normal;
line-height:24px;
color:#4b4b4b;
}
a.breadcrumb:hover {
text-decoration:underline;
font-weight:normal;
}
/* ********** Search ************** */
.search_bg {
display:none;
position:absolute;
width:248px;
height:28px;
float:left;
background:#4b4b4b;
left:-222px;
top:41px;
padding:6px 8px;
}
.SearchIcon {
display:none;
}
.search, a.search:link, a.search:active, a.search:visited {
color:#fff;
text-decoration:none;
display:block;
position:absolute;
right:-73px;
top:0px;
overflow:hidden;
font-size:13px;
text-align: center;
overflow:hidden;
width:65px;
height:28px;
outline:none;
line-height:28px;
}
a.search:hover {
color:#fff;
text-decoration:none;
}
#dnn_dnnSEARCH_ClassicSearch {
width:177px;
height:28px;
background-color: #808080;
display: block;
position: relative;
}
#dnn_dnnSEARCH_txtSearch {
width:158px;
color:#f9faf9;
font-size:12px;
height:16px;
line-height:16px;
padding:0 10px 0 0;
background:none;
border:none;
display:block;
position:absolute;
left:10px;
top:6px;
outline:0;
-webkit-appearance: none;
}
.search_bg2 {
position:relative;
width:215px;
height:28px;
background:#f1f1f1;
float:right;
margin-top:4px;
}
.SearchIcon {
display:none;
}
a#dnn_dnnSEARCH2_cmdSearch, a#dnn_dnnSEARCH2_cmdSearch:link, a#dnn_dnnSEARCH2_cmdSearch:active, a#dnn_dnnSEARCH2_cmdSearch:visited {
color:#A90358;
text-decoration:none;
display:block;
position:absolute;
right:0px;
top:0px;
overflow:hidden;
text-transform:uppercase;
font-size:16px;
text-indent:-9999px;
overflow:hidden;
width:29px;
height:28px;
outline:none;
background-image:url(images/cssspirit.png);
background-position:6px -128px;
background-repeat:no-repeat;
}
a#dnn_dnnSEARCH2_cmdSearch:hover {
color:#A90358;
text-decoration:none;
}
#dnn_dnnSEARCH2_txtSearch {
width:166px;
color:#666;
font-size:12px;
height:16px;
line-height:16px;
padding:0 10px 0 0;
background:none;
border:none;
display:block;
position:absolute;
left:10px;
top:6px;
outline:0;
-webkit-appearance: none;
}
.search_bg .searchInputContainer {
display:block !important;
margin:0px !important;
height:28px;
}
.dnnSearchBoxPanel {
padding:10px 0px !important;
}
.dnnSearchResultPanel {
padding:10px 0px 7px 0px!important;
}
.search_bg .searchInputContainer a.dnnSearchBoxClearText {
top: 0!important;
right: 3px!important;
}
ul.searchSkinObjectPreview{
z-index: 999!important;
margin: 6px -79px 0 0!important;
}
/* ********** Other Style ************** */
#dnn_wrapper {
padding:30px 0;
}
.dnn_main {
background:#fff;
}
.dnn_layout {
width:940px;
margin:0px auto;
}
/* ********** HEADER ************** */
header {
background-color:#fff;
padding:0px 20px;
}
.dnn_logo {
float:left;
padding:48px 10px 40px 0;
}
.headr {
float:right;
padding:25px 0;
}
#login_style {
float:right;
}
.social {
clear:right;
margin-top:19px;
float:right;
}
/* ********** NAV ************** */
nav {
background:#4b4b4b;
padding:0 15px 0 0px;
margin:0 20px;
}
#top_menu, #Mega_menu {
float:left;
z-index:903;
position:relative;
}
.search_icon {
float:right;
padding-left:10px;
margin-top:18px;
position: relative;
z-index: 904;
height:19px;
border-left:1px solid #646464;
}
.mobile_icon {
width:46px;
height:36px;
float:left;
}
/* ********** Banner ************** */
#dnn_banner {
background:url(images/banner_shadow2.png) no-repeat 50% 100%;
padding:20px 20px 27px;
}
/* ********** CONTENT ************** */
#dnn_content {
padding:10px 20px;
}
.toppane {
padding-bottom:20px;
}
.bread_date {
color:#4b4b4b;
padding:10px 0 20px 0;
}
.date_style {
float:right;
font-size:14px;
line-height:24px;
}
.bread_style {
font-size:22px;
line-height:24px;
float:left;
}
.pane_layout {
min-height:200px;
}
/* ********** FOOTER ************** */
/* ********** BOTTOM ************** */
#dnn_bottom {
background:#2a2a2a;
padding:0 20px;
}
.dnn_footer {
border-top:1px solid #404040;
padding:15px 0;
}
.copyright_style {
float:left;
color:#a5a5a5;
padding:9px 0;
font-size:13px;
line-height:18px;
}
.copyright_style .sep {
margin:0px 10px;
}
#to_top {
float:right;
cursor: pointer;
margin-left:5px;
text-align:center;
padding:8px 13px 9px;
width:13px;
}
#to_top:hover {
background-color:#000;
}
/*--------- Top Menu style ----------*/
#top_menu ul {
margin:0px;
padding:0px 0px;
display:block;
}
#top_menu ul {
display:inline-block;
}
#top_menu img {
vertical-align:top;
margin-right:3px;
}
#top_menu ul:after {
content:".";
font-size:0px;
height:0px;
display:block;
clear:both;
visibility:hidden;
}
#top_menu ul {
margin:0px;
padding:0px 0px;
display: block;
position:relative;
z-index:903;
}
#top_menu li {
position:relative;
display:block;
float:left;
list-style-type:none;
padding:0;
margin:0;
}
#top_menu ul li a {
display:block;
position:relative;
float:left;
color:#fff;
font-size:15px;
cursor:pointer;
text-decoration:none;
line-height:20px;
padding:19px 20px 20px 20px;
}
#top_menu ul li > a.menu_hover, #top_menu ul li.current > a, #top_menu ul li a:hover {
text-decoration:none;
color:#fff;
}
#top_menu ul li a span {
display:block;
}
/*-- submenu --*/
#top_menu .menuslide {
display: none;
float: left;
overflow:hidden;
position:absolute;
margin:0px 0 0 0px;
}
#top_menu .menuslide div {
margin:-1px 0 0 0px;
}
#top_menu .menuslide ul {
display: none;
left: 0px;
float: left;
position:relative;
margin:0px;
background: rgba(255,255,255,0.9);
border:1px solid #dedede;
}
#top_menu .menuslide ul li {
display:block;
clear:both;
padding:0px;
background:none;
margin:0px;
border-bottom:1px solid #dedede;
}
#top_menu .menuslide ul li.last-item {
border-bottom:none;
}
#top_menu .menuslide ul li a {
color:#4b4b4b;
font-weight:normal;
position:relative;
padding:4px 10px;
line-height:26px;
font-size:13px;
}
#top_menu .menuslide ul li a:hover, #top_menu .menuslide ul li a.menu_hover {
color:#fff;
}
#top_menu .menuslide ul li a span {
display:block;
padding:0 40px 0 0;
margin:0px;
background:none;
width:auto;
white-space:nowrap;
}
#top_menu .menuslide ul li.dir > a > span {
background:url(images/topmenu_arrow1.png) no-repeat 100% 50%;
}
#top_menu .menuslide ul li.dir > a:hover > span, #top_menu .menuslide ul li > a.menu_hover > span {
background:url(images/topmenu_arrow2.png) no-repeat 100% 50%;
}
/*--------- Left Menu style ----------*/
#left_menu {
}
#left_menu img {
display:none;
}
#left_menu ul {
padding:0px;
margin:0px;
}
#left_menu ul li {
list-style:none;
margin-bottom:1px;
}
#left_menu ul li a {
display:block;
text-decoration:none;
color:#555;
padding:13px 10px;
line-height:19px;
font-size:15px;
border-bottom:1px solid #ebebeb;
}
#left_menu ul li a span {
display:block;
background:url(images/leftmenu_arrow.png) no-repeat 0% 6px;
padding-left:18px;
}
#left_menu ul li li a span {
background:none;
padding-left:0;
}
#left_menu > .gomenu > ul > li > a:hover, #left_menu > .gomenu > ul > li.current > a {
color:#fff;
}
#left_menu > .gomenu > ul > li > a:hover > span, #left_menu > .gomenu > ul > li.current > a > span {
background:url(images/leftmenu_arrow2.png) no-repeat 0% 6px;
}
#left_menu ul ul {
padding: 5px 15px 5px 35px;
display:none;
border-bottom:1px solid #ebebeb;
}
#left_menu ul li.current > ul {
display:block;
}
#left_menu ul ul .subcurrent > ul {
display:block;
}
#left_menu ul li li {
margin:0;
border-bottom:none;
}
#left_menu ul li li a {
position:relative;
padding:6px 0px 6px 0px;
line-height:18px;
font-size:13px;
border-bottom:none;
}
#left_menu ul li li a:hover, #left_menu ul li li.subcurrent > a {
background:none;
}
#left_menu ul ul ul {
margin-left:15px;
padding:0px;
background:none;
border:none;
}
/*--------- Mega Menu style ----------*/
#Mega_menu ul {
margin:0px;
padding:0px 0px;
display:block;
}
#Mega_menu ul {
display:inline-block;
}
#Mega_menu img {
vertical-align:top;
margin-right:3px;
}
#Mega_menu ul:after {
content:".";
font-size:0px;
height:0px;
display:block;
clear:both;
visibility:hidden;
}
#Mega_menu ul {
margin:0px;
padding:0px 0px;
display: block;
position:relative;
z-index:905;
}
#Mega_menu li {
list-style: none none outside;
float:left;
position:relative;
margin:0px;
padding:0px;
z-index:905;
}
#Mega_menu ul li {
position:relative;
display:block;
float:left;
list-style-type:none;
margin:0;
}
#Mega_menu ul li a {
display:block;
position:relative;
float:none;
color:#fff;
font-size:15px;
cursor:pointer;
text-decoration:none;
line-height:20px;
padding:19px 20px 20px 20px;
}
#Mega_menu ul li a span {
display:block;
}
#Mega_menu ul li.dgn-root-hover > a, #Mega_menu ul li.current > a, #Mega_menu ul li a:hover {
text-decoration:none;
color:#fff;
}
/*-- submenu --*/
#Mega_menu div.mega_submenu {
padding:15px 0px;
position:absolute;
display:none;
top:59px;
left:0px;
margin:0px;
background-color:rgba(255,255,255,0.9);
border:1px solid #e2e2e1;
}
#Mega_menu ul.mega_submenu_ul {
background-position:200px 0px;
background-repeat:repeat-y;
}
#Mega_menu div.Column2 ul.mega_submenu_ul {
width:400px;
background-image:url(images/megamenu_Column2line.png);
}
#Mega_menu div.Column3 ul.mega_submenu_ul {
width:600px;
background-image:url(images/megamenu_Column3line.png);
}
#Mega_menu div.Column4 ul.mega_submenu_ul {
width:800px;
background-image:url(images/megamenu_Column4line.png);
}
#Mega_menu ul.mega_submenu_ul > li {
display:block;
padding:0px;
float:left;
width:156px;
margin:0px 22px 0px 22px;
zoom:1;
}
#Mega_menu ul.mega_submenu_ul ul {
}
#Mega_menu ul.mega_submenu_ul ul li {
border-bottom:1px solid #cfcfcf;
float:none;
margin:0px;
}
#Mega_menu ul.mega_submenu_ul ul li a {
display:block;
font-weight: normal;
float:none;
font-size:14px;
line-height:20px;
color:#4e4e4e;
letter-spacing:normal;
margin:0px;
position:relative;
padding:6px 0px 6px 0px;
zoom:1;
transition: color ease-in 200ms;
-moz-transition: color ease-in 200ms; /* Firefox 4 */
-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
-o-transition: color ease-in 200ms; /* Opera */
-ms-transition: color ease-in 200ms; /* IE9? */
}
#Mega_menu ul.mega_submenu_ul ul li a:hover {
}
#Mega_menu ul.mega_submenu_ul ul li a span {
display:block;
padding:0px;
margin:0px;
background:none;
word-break:break-all;
}
#Mega_menu ul.mega_submenu_ul ul ul {
border:none;
padding:0px 0px 10px 0px;
display:block;
float:none;
background:none;
box-shadow:none;
}
#Mega_menu ul.mega_submenu_ul ul ul li {
margin:0;
padding:0;
background:none;
border:none;
}
#Mega_menu ul.mega_submenu_ul ul ul li a {
float:none;
position:relative;
border-bottom:none;
line-height:18px;
padding:4px 0px 4px 15px;
position:relative;
font-size:12px;
}
#Mega_menu ul.mega_submenu_ul ul ul li a:after {
content:">";
position:absolute;
left:0px;
top:5px;
font-size:12px;
font-family:Arial;
}
#Mega_menu ul.mega_submenu_ul ul ul li a span {
}
#Mega_menu ul.mega_submenu_ul ul ul ul {
padding:0px 0px 0px 15px;
}
/*--------- Mobile Menu style ----------*/
#mobile_menu {
margin-top:10px;
}
.multi_menu {
}
.multi_menu ul {
list-style:none;
margin:0;
padding:0;
}
.multi_menu ul li {
margin:0px;
padding:0px;
margin-bottom:1px;
list-style:none;
}
.multi_menu ul li img{
vertical-align:top;
}
.multi_menu ul li a {
font-size: 14px;
line-height:20px;
padding:0px;
margin:0px;
color: #FFFFFF;
background-color:#4B4B4B;
display: block;
text-decoration: none;
outline:none;
}
.multi_menu ul li a:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.multi_menu ul li a {
display:inline-block;
}
.multi_menu ul li a {
display:block;
}
.multi_menu ul li.active > a,
.multi_menu ul li a:hover{
}
.multi_menu ul li span {
padding:10px 15px;
display:block;
}
.multi_menu ul li .menu_arrow {
background-image:url(images/dir_bg.png);
background-repeat:no-repeat;
background-position:right 0px;
display:block;
width:40px;
padding:0px;
height:40px;
float:right;
text-indent:-9999px;
overflow:hidden;
margin:0px;
}
.multi_menu ul li .menu_arrow.arrow_opened{
}
.multi_menu ul li .menu_arrow.arrow_closed{
background-position:right -40px;
}
.multi_menu ul ul {
display:none;
background:#4B4B4B;
padding:2px 15px 5px 15px;
margin:1px 0px 0px 0px;
}
.multi_menu ul ul li a {
background:none;
border-bottom:1px solid #625F5F;
}
.multi_menu ul ul li a span{
padding:7px 0px;
}
.multi_menu ul ul li .menu_arrow{
height:36px;
background-position:right -3px;
margin-right:-15px;
}
.multi_menu ul ul li .menu_arrow.arrow_closed{
background-position:right -43px;
}
.multi_menu ul li.current > ul {
display:block;
}
.multi_menu ul ul ul{
padding:0px 0px 0px 20px;
margin:0px;
}
.multi_menu ul ul ul li a{
margin:0px;
border:none;
}
/* ********** Latest Blogs ************** */
/* ********** Form Style ************** */
.Theme_Normal_Bottom textarea, .Theme_Normal_Bottom input[type="text"], .Theme_Normal_Bottom input[type="password"], .Theme_Normal_Bottom input[type="datetime"], .Theme_Normal_Bottom input[type="datetime-local"], .Theme_Normal_Bottom input[type="date"], .Theme_Normal_Bottom input[type="month"], .Theme_Normal_Bottom input[type="time"], .Theme_Normal_Bottom input[type="week"], .Theme_Normal_Bottom input[type="number"], .Theme_Normal_Bottom input[type="email"], .Theme_Normal_Bottom input[type="url"], .Theme_Normal_Bottom input[type="search"], .Theme_Normal_Bottom input[type="tel"], .Theme_Normal_Bottom input[type="color"], .uneditable-input {
background:#252525!important;
border:1px solid #343333!important;
color:#a2a2a2 !important;
}
#dnn_wrapper .Theme_Normal_Bottom .form_submit {
text-align:right !important;
}
#dnn_wrapper .Theme_Normal_Bottom .btn {
background-image:url(images/form_submit.png);
background-repeat:no-repeat;
background-position:0 0;
padding:6px 15px 6px 52px;
}
#dnn_wrapper .Theme_Normal_Bottom .btn:hover {
background-color:#121112;
}
/* ********** Gallery Style ************** */
.gray-bg {
background:#a9b3b8;
}
/* ********** Photo Gallery Style ************** */
#dnn_wrapper .Theme_20_Default li {
margin:0px 1px 1px 0px;
}
#dnn_wrapper .Theme_20_Default li img {
border:none;
}
/* ********** Transition Style ************** */
#top_menu ul li a, #Mega_menu ul li a, #left_menu ul li a, #to_top, .login, .user, #dnn_wrapper .Theme_Normal_Bottom .btn, .Container-20037-1 .contentmain1, #dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next, .Theme_21_Default .prev, .Theme_21_Default .next, .Theme_21_Default .pager a, .Theme_25_Default .prev, .Theme_25_Default .next, .Theme_25_Default .pager a {
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
/* ********** Control Panel Style ************** */
.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
color:#fff !important;
text-decoration:none!important;
}
.dnnFormItem button, .dnnFormItem input[type="button"], .dnnFormItem input[type="reset"], .dnnSecondaryAction, a.dnnSecondaryAction, ul.dnnAdminTabNav li a, .dnnLogin .LoginTabGroup span {
color:#555 !important;
text-decoration: none!important;
}
/*********** Other Style*********************************/
.abtn {
line-height:34px!important;
width:190px;
height:34px;
color:#fffefe!important;
text-decoration:none!important;
display:inline-block;
text-align:center;
font-size:16px;
margin-right:20px;
background:#4e4e4e;
}
.abtn:hover {
color:#fff !important;
}
*+html .abtn {
display:inline;
}
.submit_ticket a {
color:#fff !important;
text-decoration:none;
}
.submit_bg {
float:left;
margin-right:2px;
padding:20px;
width: 608px;
}
.submit_text {
margin:16px 0 15px;
color:#fff;
}
.ticket_bg {
float:left;
text-align:center;
padding:30px 20px 29px 20px;
font-size:22px;
line-height:32px;
width: 190px;
}
.categories {
padding:0px;
margin:0px;
}
.categories li {
list-style:none;
border-bottom:1px solid #4d4b4b;
}
#dnn_bottom .categories li a {
display:block;
padding:6px 0px 6px 17px;
background:url(images/categories_icon.png) 4px 11px no-repeat;
color:#c3c3c3;
font-size:13px;
line-height:17px;
}
#dnn_bottom .Normal {
color:#636363;
font-size:12px;
}
.botpane a {
color:#c3c3c3;
}
.last_news {
padding:0px;
margin:0px;
}
.last_news li {
list-style:none;
border-bottom:1px dotted #585858;
padding-bottom:10px;
margin-bottom:10px;
}
.last_news .news_image {
float:left;
border:2px solid #656464;
margin-right:8px;
}
.last_news .news_title {
font-size:12px;
font-style:normal;
margin:0px 0px 0px 0px;
line-height:18px;
color:#c3c3c3;
}
.last_news .news_date {
color:#646464;
margin-left:83px;
}
/* ********** tabs Style ************** */
.nav > li > a:hover {
background:none;
}
.tabs-top .nav-tabs {
border-bottom:none;
margin-bottom:0px;
}
.nav-tabs > li {
margin:0px;
zoom:1;
}
.tabs-top .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px -1px 0px 0px;
outline:none;
border-radius:0px;
padding:9px 14px;
position:relative;
border-width:1px;
border-style:solid;
border-color:#E1E1E1;
border-bottom:none;
position:relative;
top:1px;
bottom:-1px;
zoom:1;
}
.tabs-top .nav-tabs > .active > a, .tabs-top .nav-tabs > .active > a:hover {
border-bottom:none;
color:#fff;
}
.nav-tabs > li > a:hover {
background-color:#eee;
color:#333;
}
.tabs-top .tab-content {
border-width:1px;
border-style:solid;
border-color:#E1E1E1;
padding:10px 19px;
background:#FCFCFC;
}
/* ********** tabs-left Style ************** */
.tabs-left > .nav-tabs {
margin:0px;
border-right:none;
}
.tabs-left > .nav-tabs > li {
border-top-width:1px;
border-top-style:solid;
border-right-width:1px;
border-right-style:solid;
border-color:#E1E1E1;
}
.tabs-left > .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px;
outline:none;
border-radius:0px;
padding:0px 14px 0px 20px;
line-height:37px;
height:37px;
position:relative;
border:none;
position:relative;
min-width:120px;
zoom:1;
}
.tabs-left .nav-tabs > li > a:hover {
border:none;
background-color:#eee;
color:#333;
}
.tabs-left > .nav-tabs > li:first-child, .tabs-left .nav-tabs > li.active:first-child {
border-top:none;
}
.tabs-left .nav-tabs > .active {
border:none;
border-top-width:1px;
border-top-style:solid;
border-color:#E1E1E1;
}
.tabs-left .nav-tabs > .active > a, .tabs-left .nav-tabs > .active > a:hover {
border:none;
padding:0px 31px 0px 20px;
color:#fff;
margin-right:-16px;
background-image:url(images/tab-left-active-bg.png);
background-position:right top;
background-repeat:no-repeat;
}
.tabs-left .tab-content {
padding-left:35px;
}
/*tabs-left2*/
.tabs-left2 {
border:1px solid #e2e2e2;
}
.tabs-left2 > .nav-tabs > li > a {
background:#fafafa;
margin-right:0px;
font-size:15px;
padding:5px 30px 5px 20px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
*+html .tabs-left2 > .nav-tabs > li > a {
min-width:170px;
}
.tabs-left2 > .nav-tabs > li > a:Hover {
color:#FFF;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 30px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:20px 20px 0px 30px;
}
/* ********** tabs-right Style ************** */
.tabs-right > .nav-tabs {
margin:0px;
border-left:none;
}
.tabs-right > .nav-tabs > li {
border-top-width:1px;
border-top-style:solid;
border-left-width:1px;
border-left-style:solid;
border-color:#E1E1E1;
}
.tabs-right > .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px;
outline:none;
border-radius:0px;
padding:0px 20px 0px 14px;
line-height:37px;
height:37px;
position:relative;
border:none;
position:relative;
min-width:120px;
zoom:1;
}
.tabs-right .nav-tabs > li > a:hover {
border:none;
background-color:#eee;
color:#333;
}
.tabs-right > .nav-tabs > li:first-child, .tabs-right .nav-tabs > li.active:first-child {
border-top:none;
}
.tabs-right .nav-tabs > .active {
border:none;
border-top-width:1px;
border-top-style:solid;
border-color:#E1E1E1;
}
.tabs-right .nav-tabs > .active > a, .tabs-right .nav-tabs > .active > a:hover {
border:none;
padding:0px 20px 0px 31px;
color:#fff;
margin-left:-16px;
background-image:url(images/tab-right-active-bg.png);
background-position:left top;
background-repeat:no-repeat;
}
.tabs-right .tab-content {
padding-right:35px;
}
.tabs-left:after, .tabs-right:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.tabs-left, .tabs-right {
display:inline-block;
}
.tabs-left, .tabs-right {
display:block;
}
/* ********** CarouFredSel ************** */
#dnn_wrapper .Theme_25_Default .prev, #dnn_wrapper .Theme_25_Default .next, #dnn_wrapper .Theme_21_Default .prev, #dnn_wrapper .Theme_21_Default .next {
width:22px;
height:22px;
padding:0px!important;
line-height:22px;
color:#FFF;
border-radius:0px!important;
top:-33px;
background:url(images/white_arrow.png) no-repeat 0px 5px #9a9c9e;
}
#dnn_wrapper .Theme_25_Default .prev, #dnn_wrapper .Theme_21_Default .prev {
left:auto;
right:30px!important;
}
#dnn_wrapper .Theme_25_Default .next, #dnn_wrapper .Theme_21_Default .next {
background-position:-22px 5px;
}
#dnn_wrapper .Theme_25_Default .pager, #dnn_wrapper .Theme_21_Default .pager {
height:24px;
margin-bottom:10px;
}
#dnn_wrapper .Theme_25_Default .pager a, #dnn_wrapper .Theme_21_Default .pager a {
margin-top:12px;
}
#dnn_wrapper .Theme_25_Default .pager a, #dnn_wrapper .Theme_21_Default .pager a {
width:18px;
height:18px;
background: none;
background-color:#B5B5B5;
border-radius:18px;
}
#dnn_wrapper .Theme_25_Default li .carousel_title, #dnn_wrapper .Theme_21_Default li .carousel_title {
padding:9px 0px 4px 0px;
text-align:left;
margin:0;
border-bottom:none;
background:none;
font-size:18px;
letter-spacing:0px;
border-bottom:1px dotted #bbbbbb;
margin-bottom:4px;
font-size:18px;
}
/* ********** Lead ************** */
.Lead {
padding:24px 0px;
text-align:center;
background:#f7f7f7;
font-size:14px;
}
.Lead h1 {
color:#444444;
font-size:30px;
}
/*gray_line*/
.gray_line {
margin:10px 0px;
border-bottom:1px solid #e2e2e2;
clear:both;
overflow:hidden;
height:0px;
}
/* ********** ho We Are ? ************** */
.Content_About {
padding-bottom:29px;
}
.Content_About h3 {
color: #525252;
font-size: 20px;
font-weight: normal;
line-height: 24px;
padding:0px 0px 8px 0px;
margin-top:0px;
}
/* ********** Link More ************** */
a.link_more_square, a.link_more_square:link, a.link_more_square:active, a.link_more_square:visited {
color:#FFF;
padding:10px 22px;
font-size:13px;
text-decoration:none;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
a.link_more_square:Hover {
text-decoration:none;
background:#525252;
}
/* ********** accordion_2 ************** */
.accordion_2 .accordion-group {
border:none;
margin-bottom:4px;
}
.accordion_2 .accordion-heading {
background-color:#f8f8f8;
}
.accordion_2 .accordion-heading .accordion-toggle {
padding:10px 10px 10px 46px;
background-image:none;
position:relative;
background:url(images/plus_minus.png) no-repeat 12px -186px;
}
.accordion_2 .accordion-heading .accordion-toggle:hover {
background-position:12px 14px;
}
.accordion_2 .accordion-heading .accordion-toggle.actived {
background-position:12px -86px;
}
.accordion_2 .accordion-heading .accordion-toggle.actived:hover {
background-image:url(images/plus_minus.png);
background-position:12px -86px;
}
.accordion_2 .accordion-heading .accordion-toggle span {
position:absolute;
background:#000;
top:0px;
left:0px;
width:36px;
height:100%;
display:inline-block;
margin:0px;
filter:alpha(opacity=10);
opacity:0.1;
}
.accordion_2 .accordion-inner {
padding:9px 0px;
}
/*Contact Information*/
.Contact_list {
border-bottom:1px solid #e0e0e0;
padding:0px;
margin:20px 0px 0px;
}
.Contact_list li {
border-top:1px solid #e0e0e0;
padding:12px 0px;
margin:0px;
list-style:none;
}
.Contact_list li span {
width:29px;
height:29px;
background:url(images/Contact_icon.png) 0px 0px #CCC;
display:inline;
display:inline-block;
margin-right:20px;
vertical-align:middle;
}
.Contact_list li span.cl_p {
background-position:0px 0px;
}
.Contact_list li span.cl_e {
background-position:0px -29px;
}
.Contact_list li span.cl_f {
background-position:0px -58px;
}
/*Our Skills*/
.progress {
height:35px;
line-height:35px;
margin-bottom:10px;
}
.progress .bar {
text-align:left;
text-indent:12px;
}
/* MEET OUR TEAM */
.team_List_title {
font-size:20px;
color:#444444;
padding:20px 0px;
border-top:1px solid #e2e2e2;
margin-top:10px;
}
.team_List_title span {
font-size:14px;
margin-top:5px;
}
.team_content {
padding:0px 20px;
}
.team_list {
border:1px solid #e2e2e2;
}
.team_title {
padding:15px 0 10px 0;
}
.team_title span {
font-size:18px;
padding-right:10px;
}
.team_social {
text-align:center;
padding:16px 0px;
margin:15px 0 0;
border-top:1px solid #e2e2e2;
}
.team_social a {
width:34px;
height:31px;
margin:0px 3px;
background:#d5d5d5;
display:inline-block;
}
/*ServicesList*/
.Services_List {
clear:both;
overflow:hidden;
padding:0px;
margin:0px 0px 10px;
}
.Services_List [class*="span"] {
position:relative;
}
.Services_List .Services_Content {
padding:10px 0px 30px 65px;
}
.Services_List h3 {
color:#444444;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.Services_List .Services_icon {
width:50px;
height:50px;
display:block;
text-align:center;
line-height:50px;
position:absolute;
left:0px;
top:40px;
background:#4b4b4b;
border-radius:25px;
-moz-border-radius:25px;
-webkit-border-radius:25px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
/*Why Choose Us ?*/
.Choose_List {
margin:0px;
padding:0px;
}
.Choose_List li {
background:url(images/icon_yes.png) no-repeat 8px 8px;
padding-left:37px;
list-style:none;
border-bottom:1px solid #e2e2e2;
padding:7px 0px 6px 35px;
}
/*tabs-top-group*/
.tabs-top-group2 .accordion-group {
border-bottom:1px solid #e2e2e2;
}
.tabs-top-group2 .nav-tabs {
border:none;
background:#f7f7f7;
padding:5px 0px;
}
.tabs-top-group2 .nav-tabs a, .tabs-top-group2 .nav-tabs a:link, .tabs-top-group2 .nav-tabs a:active, .tabs-top-group2 .nav-tabs a:visited {
color:#444444;
font-size:16px;
border:none;
}
.tabs-top-group2 .nav-tabs a:hover {
border:none;
background:none;
}
.tabs-top-group2 .nav-tabs li.active a, .tabs-top-group2 .nav-tabs li.active a:hover {
border:none;
background:none;
}
.tabs-top-group2 .accordion-heading {
background:url(images/icon_question.png) no-repeat 8px 14px;
padding-left:25px;
}
.tabs-top-group2 .accordion-heading .accordion-toggle, .tabs-top-group2 .accordion-heading .accordion-toggle:hover {
background:url(images/plus_minus2.png) right 18px no-repeat;
transition: color ease-in 100ms;
-moz-transition: color ease-in 100ms; /* Firefox 4 */
-webkit-transition: color ease-in 100ms; /* Safari and Chrome */
-o-transition: color ease-in 100ms; /* Opera */
-ms-transition: color ease-in 100ms; /* IE9? */
}
.tabs-top-group2 .accordion-heading .actived, .tabs-top-group2 .accordion-heading .actived:hover {
background:url(images/plus_minus2.png) right -72px no-repeat;
color:#444444 !important;
}
.tabs-top-group2 .accordion-inner {
padding:0px 0px 20px 40px;
}
/*We've Got Answers*/
.Answers_List {
padding:0px;
margin:0px;
}
.Answers_List li {
list-style:none;
padding-bottom:25px;
margin-bottom:25px;
border-bottom:1px solid #e2e2e2;
}
.Answers_List li.last-item {
padding-bottom:15px;
margin-bottom:0px;
border-bottom:none;
}
.Answers_List span.Answers_icon {
width:54px;
height:47px;
line-height:47px;
color:#FFF;
text-align:center;
display:inline;
display:inline-block;
float:left;
font-size:40px;
margin:3px 15px 0px 0px;
}
/*Submit A Question */
.submit_ticket_2 {
background:#f7f7f7;
}
.submit_ticket_2 h2 {
color:#444444;
}
.submit_ticket_2 .submit_text {
color:#444444;
font-size:14px;
}
.submit_ticket_2 .ticket_bg a {
white-space:nowrap;
}
/*******price*******/
.price-table:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.price-table {
display:inline-block;
}
.price-table {
display:block;
}
.price-table {
padding:28px 0px 28px 0px;
}
.price-table .col {
float:left;
text-align:center;
margin-bottom:10px;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table.col2 .col {
width:50%;
}
.price-table.col3 .col {
width:33.3333%;
}
.price-table.col4 .col {
width:25%;
}
.price-table.col5 .col {
width:20%;
}
*+html .price-table.col2 .col {
width:49.9%;
}
*+html .price-table.col3 .col {
width:33.33%;
}
*+html .price-table.col4 .col {
width:24.9%;
}
*+html .price-table.col5 .col {
width:19.9%;
}
.price-table .col:hover {
box-shadow:0 0 13px rgba(0, 0, 0, 0.15);
}
.price-table .col.best_value {
box-shadow:0 0 13px rgba(0, 0, 0, 0.15);
margin-top:-20px;
}
.price-table .col.best_value .price_title {
padding-top:20px;
padding-bottom:16px;
}
.price-table .col.best_value .price_holder {
padding-bottom:22px;
}
.price_title {
background:#707070;
color:#fff;
padding-top:15px;
padding-bottom:11px;
padding-left:10px;
padding-right:10px;
font-size:24px;
position:relative;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table .price_title h2 {
color:#fff;
margin:0px;
}
.price-table .col:hover .price_title {
}
.price-table .col:nth-of-type(2n+1) .price_title {
background:#4b4b4b;
}
.price-table .col:first-child .price_holder {
margin-left:0px;
}
.price-table .price_holder {
border:1px solid #E4E4E4;
margin:0 0 0 -1px;
min-height:300px;
padding-bottom:12px;
}
.price-table .col:hover .price_holder {
background:#fafafa;
}
.price-table .price_box {
color:#444444;
padding:15px 0px 20px 0px;
background:#f5f5f5;
}
.price-table .sup {
font-size:28px;
line-height:34px;
vertical-align:top;
}
.price-table .price {
font-size:48px;
line-height:50px;
}
.price-table .price_holder ul {
margin:0px 0px 13px 0px;
padding:0px;
border-bottom:1px solid #F0F0F0;
}
.price-table .price_holder ul li {
list-style:none;
border-top:1px solid #F0F0F0;
padding:12px 0;
}
.price-table .btn {
border:none;
background:none;
color:#FFF !important;
text-shadow:none;
border-radius:0px;
-moz-border-radius:0px;
-webkit-border-radius:0px;
padding:5px 20px;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table .btn:hover {
background:#525252;
}
/*******Pricing Option *******/
.price_List .price_content {
padding-left:100px;
position:relative;
}
.price_List .sup {
position:absolute;
top:20px;
left:0px;
font-size:25px;
color:#959595;
}
.price_List .price {
position:absolute;
top:5px;
left:15px;
font-size:50px;
color:#444444;
}
/*Sign Up */
.submit_ticket_3 {
background:#f7f7f7;
}
.submit_ticket_3 h3 {
color:#444444;
}
.submit_ticket_3 .submit_text {
color:#444444;
font-size:14px;
margin-top:10px;
}
.submit_ticket_3 .ticket_bg {
padding:50px 0px 0px;
}
.submit_ticket_3 .ticket_bg a {
background-image:url(images/ticket_bg.png);
background-position:25px center;
background-repeat:no-repeat;
font-size:20px;
padding:9px 37px 9px 68px;
white-space:nowrap;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.submit_ticket_3 .ticket_bg a:hover{
background-color:#525252;
}
/*roll_menu */
.js-clingify-wrapper {
width: 100%;
top:-50px;
transition: top ease-in 200ms;
-moz-transition: top ease-in 200ms; /* Firefox 4 */
-webkit-transition: top ease-in 200ms; /* Safari and Chrome */
-o-transition: top ease-in 200ms; /* Opera */
-ms-transition: top ease-in 200ms; /* IE9? */
}
.js-clingify-locked {
left: 0;
position:fixed;
top: 0;
z-index: 1000;
background:#4b4b4b;
}
.js-clingify-locked {
height:40px !important; }
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #top_menu > .gomenu > ul > li > a {
line-height:40px;
padding-top:0px;
padding-bottom:0px;
}
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #Mega_menu > .gomenu > ul > li > a {
line-height:40px;
padding-top:0px;
padding-bottom:0px;
}
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #Mega_menu > .gomenu > ul > li > div{
top:40px;
}
.js-clingify-locked #roll_nav #top_menu ul img,
.js-clingify-locked #roll_nav #Mega_menu ul img{
vertical-align:middle;
}
.js-clingify-locked #roll_nav .search_icon {
margin-top:10px;
}
.js-clingify-locked #roll_nav .search_bg{
top:25px;
}
/*Error Page*/
.ErrorPage_font{
text-align:center;
font-size:130px;
color:#dadada;
font-weight:bold;
}
/*gmap*/
#gmap img {
max-width:none;
}
#gmap {
width:100%;
height:342px ;
}
/*Contact Form*/
.Theme_Responsive_Default .form_label {
font-size:14px;
}
.Theme_Responsive_Default .form_input { position:relative ; padding-right:40px !important;}
.Theme_Responsive_Default .form_input [type*="text"],
.Theme_Responsive_Default .form_input textarea {
padding:10px 8px !important;
width:100% !important;
-moz-box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Firefox3.6+ */
-webkit-box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Chrome5+, Safari5+ */
box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Latest Opera */
}
.Theme_Responsive_Default .form_required{
position:absolute;
right:0px;
top:15px;
}
.Theme_Responsive_Default .form_submit input{
background:#39F ;
padding:8px 20px !important;
color:#FFF !important;
border:none !important;
text-shadow:none;
border-radius:0px ;
-moz-border-radius:0px;
-webkit-border-radius:0px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.Theme_Responsive_Default .form_submit input:hover{
background-color:#121112;
}
/*Contact_Info*/
.ContactInfo_list{
margin:0px;
padding:0px;
}
.ContactInfo_list li{
border-bottom:1px solid #e2e2e2;
padding:10px 0px 10px 30px;
margin:0px;
list-style:none;
position:relative;
}
.ContactInfo_list li span {
width:20px;
height:20px;
display:block;
position:absolute;
top:9px;
left:0px;
background:url(images/ContactList_icon.png) 0px 0px no-repeat ;
}
.ContactInfo_list .I_A{ background-position:0px 0px;}
.ContactInfo_list .I_P{ background-position:0px -43px;}
.ContactInfo_list .I_F{ background-position:0px -90px;}
.ContactInfo_list .I_E{ background-position:0px -134px;}
.ContactInfo_list .I_S{ background-position:0px -180px;}
.ContactInfo_list .I_M{ background-position:0px -228px;}
.ContactInfo_list .I_W{ background-position:0px -274px;}
/*CarouFredSel*/
.Theme_21_LinkAndZoom_Normal .next,
.Theme_21_LinkAndZoom_Normal .prev{
top:-40px !important;
}
.Theme_21_LinkAndZoom_Default { margin-top:-20px !important;}
.Theme_21_LinkAndZoom_Default .next,
.Theme_21_LinkAndZoom_Default .prev{
top:-25px !important;
}
/*social-icons*/
.social-icons {
margin:0px -3px 0px;
padding:0px;}
.social-icons a {
background-color: #d6d6d6;
background-image: url("images/social-icons-sprite.png");
background-repeat: no-repeat;
border-radius: 3px 3px 3px 3px;
display:inline-block;
height: 30px;
position: relative;
text-indent: -9999px;
transition: all 0.2s ease-out 0s;
width:30px;
margin:3px;
}
.social-icons a:hover {
box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.social-icons a.social-twitter {
}
.social-icons a.social-dribbble {
background-position: -30px 0px;
}
.social-icons a.social-facebook {
background-position: -60px 0px;
}
.social-icons a.social-envato {
background-position: -90px 0px;
}
.social-icons a.social-flickr {
background-position: -120px 0px;
}
.social-icons a.social-forrst {
background-position: -150px 0px;
}
.social-icons a.social-gplus {
background-position: -180px 0px;
}
.social-icons a.social-gplus2 {
background-position: -210px 0px;
}
.social-icons a.social-icloud {
background-position: -240px 0px;
}
.social-icons a.social-lastfm {
background-position: -270px 0px;
}
.social-icons a.social-linkedin {
background-position: -300px 0px;
}
.social-icons a.social-myspace {
background-position: -330px 0px;
}
.social-icons a.social-paypa {
background-position: 0px -30px;
}
.social-icons a.social-piacasa {
background-position: -30px -30px;
}
.social-icons a.social-pinterest {
background-position: -60px -30px;
}
.social-icons a.social-reedit {
background-position: -90px -30px;
}
.social-icons a.social-rss {
background-position: -120px -30px;
}
.social-icons a.social-skype {
background-position: -150px -30px;
}
.social-icons a.social-stumbleupon {
background-position: -180px -30px;
}
.social-icons a.social-tumblr {
background-position: -210px -30px;
}
.social-icons a.social-vimeo {
background-position: -240px -30px;
}
.social-icons a.social-wordpress {
background-position: -270px -30px;
}
.social-icons a.social-yahoo {
background-position: -300px -30px;
}
.social-icons a.social-youtube {
background-position: -330px -30px;
}
.social-icons a.social-blogger {
background-position: 0px -60px;
}
.social-icons a.social-deviantart {
background-position: -30px -60px;
}
.social-icons a.social-digg {
background-position: -60px -60px;
}
.social-icons a.social-foursquare {
background-position: -90px -60px;
}
.social-icons a.social-friendfeed {
background-position: -120px -60px;
}
.social-icons a.social-mail {
background-position: -150px -60px;
}
.social-icons a.social-html5 {
background-position: -180px -60px;
}
.social-icons a.social-technorati {
background-position: -210px -60px;
}
.social-icons a.social-soundcloud {
background-position: -240px -60px;
}
.social-icons a.social-quora {
background-position: -270px -60px;
}
.social-icons a.social-bebo {
background-position: -300px -60px;
}
.social-icons a.social-aim {
background-position: -330px -60px;
}
.social-icons a.social-gosquared {
background-position: 0px -90px;
}
.social-icons a.social-dropbox {
background-position: -30px -90px;
}
.social-icons a.social-github {
background-position: -60px -90px;
}
.social-icons a.social-spotify {
background-position: -90px -90px;
}
.social-icons a.social-apple {
background-position: -120px -90px;
}
@media (min-width: 1200px) {
.dnn_layout {
width: 1170px;
}
#dnn_banner {
background:url(images/banner_shadow1.png) no-repeat 50% 100%;
padding:20px 30px 33px;
}
header {
padding:0px 30px;
}
nav {
margin: 0 30px;
}
#dnn_content {
padding: 10px 30px;
}
#dnn_bottom {
padding: 0 30px;
}
.submit_bg {
width:818px;
}
.ticket_bg {
width:210px;
padding:20px;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:276px;
}
#top_menu ul li a {
padding-left:35px;
padding-right:35px;
}
#Mega_menu ul li a {
padding-left:35px;
padding-right:35px;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:20px !important;
}
.tabs-left2 > .nav-tabs > li > a {
padding:5px 80px 5px 20px;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 80px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:30px 30px 0px 30px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.dnn_layout {
width: 737px;
}
#top_menu ul li a {
padding-left:10px;
padding-right:10px;
}
#Mega_menu ul li a {
padding-left:10px;
padding-right:10px;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:346px;
}
.submit_bg {
width:444px;
}
.ticket_bg {
width:171px;
padding:42px 20px;
}
#dnn_banner {
background:url(images/banner_shadow_ipad.png) no-repeat 50% 100%;
padding:20px 15px 20px;
}
nav {
margin:0px 15px;
}
header {
padding:0px 15px;
}
#dnn_bottom {
padding:0px 15px;
}
#dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next {
display:none!important;
}
.tabs-left2 > .nav-tabs > li > a {
padding:5px 20px 5px 20px;
}
/*******tabs-left2*******/
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 20px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:15px 15px 0px 15px;
}
.ErrorPage_font{
font-size:100px;
}
/*gmap*/
#gmap {
height:300px ;
}
}
@media (min-width: 768px) {
#mobile_menu {
display:none!important;
}
}
@media (max-width: 767px) {
.dnn_layout {
width: auto;
}
.dnn_logo {
/*float:none;*/
margin:0px auto;
text-align:center;
padding:15px 10px;
}
.dnn_logo img {
max-width:100%;
}
.headr, #login_style, .social {
float:none;
}
.headr {
padding:0;
}
#login_style {
margin:0px auto;
text-align:center;
}
.social {
float:none;
margin:10px auto;
text-align:center;
}
#dnn_wrapper {
padding:10px;
}
#dnn_banner {
background:none;
padding:10px 10px 0px;
}
header, .mobile_nav, #dnn_content, #dnn_bottom {
padding-left:10px;
padding-right:10px;
}
#to_top {
float:none;
margin:10px auto 0;
}
.copyright_style {
text-align:center;
float:none;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:auto;
float:none;
}
.TopPane_A, .TopPane_B, .TopPane_C {
margin-right:0;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:10px !important;
}
.submit_bg {
width:auto;
margin:0 0 2px 0;
}
.ticket_bg {
width:100%;
padding:20px 0;
}
#dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next {
display:none!important;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
padding: 0 20px;
}
.tabs-left > .nav-tabs, .tabs-right > .nav-tabs {
float:none;
background:none;
}
.tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li {
margin:0px 0px -1px 0px;
border:1px solid #E1E1E1;
}
.tabs-left > .nav-tabs > .active, .tabs-right > .nav-tabs > .active {
margin:0px 0px -1px 0px;
border:1px solid #E1E1E1;
}
.tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a {
padding:0 20px 0 20px;
}
.tabs-left > .nav-tabs > li:first-child, .tabs-left .nav-tabs > li.active:first-child, .tabs-right > .nav-tabs > li:first-child, .tabs-right .nav-tabs > li.active:first-child {
border:1px solid #E1E1E1;
}
.tabs-left .nav-tabs > .active > a, .tabs-left .nav-tabs > .active > a:hover, .tabs-right .nav-tabs > .active > a, .tabs-right .nav-tabs > .active > a:hover {
border:none;
background-image:none;
padding:0 20px 0 20px;
margin-right:0px;
margin-left:0px;
color:#fff;
}
.tabs-left .tab-content, .tabs-right .tab-content {
padding:15px 15px;
border:1px solid #E1E1E1;
}
div.dnnLoginService, div.dnnRegistrationForm, .LoginPanel {
min-width:1px;
width:100%;
margin:0 auto;
}
div.dnnRegistrationForm .dnnForm {
float:none;
width:100%;
}
.dnnSocialRegistration {
float:none;
width:100%;
}
/*price*/
.price-table.col2 .col, .price-table.col3 .col, .price-table.col4 .col, .price-table.col5 .col {
width:50%;
}
.price-table .col.best_value {
margin-top:0px;
}
.price-table .col.best_value .price_title {
padding-top:15px;
padding-bottom:11px;
}
.price-table .col.best_value .price_holder {
padding-bottom:12px;
}
.price_content {
margin-bottom:20px;
}
.submit_ticket_3 .ticket_bg {
padding:0px 0px 10px;
}
.team_list {
text-align:center;
border:none;
}
/*search */
.search_bg2 .searchInputContainer {
display:block !important;
margin:0px !important;
height:28px;
}
.search_bg2 .searchInputContainer a.dnnSearchBoxClearText {
display:none;
}
.search_bg2 .searchSkinObjectPreview {
display:none;
}
.js-clingify-placeholder{
height:auto !important;
}
.js-clingify-locked{
background:none;
height:auto !important;
position:static;
}
.js-clingify-locked #mobile_menu > ul > li{
border-bottom:1px solid #FFFFFF;
margin-bottom:0px;}
.js-clingify-locked #mobile_menu {
margin-top:2px ;
}
.ErrorPage_font{
font-size:60px;
white-space:nowrap;
}
/*map*/
#gmap {
height:250px ;
}
}
@media (max-width: 400px) {
.price-table.col2 .col, .price-table.col3 .col, .price-table.col4 .col, .price-table.col5 .col {
width:100%;
float:none;
}
.ErrorPage_font{
font-size:45px;
white-space:nowrap;
}
/*map*/
#gmap {
height:200px ;
}
}
@media (max-width: 274px) {
#dnn_top {
padding-left:5px;
padding-right:5px;
}
#dnn_wrapper {
padding-left:5px;
padding-right:5px;
}
.ErrorPage_font{
font-size:30px;
white-space:nowrap;
}
/*map*/
#gmap {
height:150px ;
}
} /* ********** Color Style ************** */
/*video*/
.video-box{
margin-bottom:10px;
}
/*Testimonial*/
#dnn_wrapper .Theme_25_Normal .slide_content{
padding-bottom:25px;
}
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a.flex-active,
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a{
height:14px;
width:14px;
}
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a{
background-color:#999999;
opacity:1;
filter:alpha(opacity=100);
} | Portals/_default/Skins/20037-UnlimitedColorPack-023/Skin.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
@import url( animation.css);
@import url(AgapeConnectOveride.css);
/*!
* Bootstrap v2.3.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
.clearfix {
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
clear: both;
}
.hide-text {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.input-block-level {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a:hover,
a:active {
outline: 0;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
/* Responsive images (ensure images don't scale beyond their parents) */
max-width: 100%;
/* Part 1: Set a maxium relative to the parent */
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
max-width: none;
}
button,
input,
select,
textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
}
button,
input {
*overflow: visible;
line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
textarea {
overflow: auto;
vertical-align: top;
}
@media print {
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
.img-rounded {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.img-polaroid {
padding: 4px;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.img-circle {
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
}
.row {
margin-left: -20px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 940px;
}
.span12 {
width: 940px;
}
.span11 {
width: 860px;
}
.span10 {
width: 780px;
}
.span9 {
width: 700px;
}
.span8 {
width: 620px;
}
.span7 {
width: 540px;
}
.span6 {
width: 460px;
}
.span5 {
width: 380px;
}
.span4 {
width: 300px;
}
.span3 {
width: 220px;
}
.span2 {
width: 140px;
}
.span1 {
width: 60px;
}
.offset12 {
margin-left: 980px;
}
.offset11 {
margin-left: 900px;
}
.offset10 {
margin-left: 820px;
}
.offset9 {
margin-left: 740px;
}
.offset8 {
margin-left: 660px;
}
.offset7 {
margin-left: 580px;
}
.offset6 {
margin-left: 500px;
}
.offset5 {
margin-left: 420px;
}
.offset4 {
margin-left: 340px;
}
.offset3 {
margin-left: 260px;
}
.offset2 {
margin-left: 180px;
}
.offset1 {
margin-left: 100px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.127659574468085%;
*margin-left: 2.074468085106383%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.127659574468085%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.48936170212765%;
*width: 91.43617021276594%;
}
.row-fluid .span10 {
width: 82.97872340425532%;
*width: 82.92553191489361%;
}
.row-fluid .span9 {
width: 74.46808510638297%;
*width: 74.41489361702126%;
}
.row-fluid .span8 {
width: 65.95744680851064%;
*width: 65.90425531914893%;
}
.row-fluid .span7 {
width: 57.44680851063829%;
*width: 57.39361702127659%;
}
.row-fluid .span6 {
width: 48.93617021276595%;
*width: 48.88297872340425%;
}
.row-fluid .span5 {
width: 40.42553191489362%;
*width: 40.37234042553192%;
}
.row-fluid .span4 {
width: 31.914893617021278%;
*width: 31.861702127659576%;
}
.row-fluid .span3 {
width: 23.404255319148934%;
*width: 23.351063829787233%;
}
.row-fluid .span2 {
width: 14.893617021276595%;
*width: 14.840425531914894%;
}
.row-fluid .span1 {
width: 6.382978723404255%;
*width: 6.329787234042553%;
}
.row-fluid .offset12 {
margin-left: 104.25531914893617%;
*margin-left: 104.14893617021275%;
}
.row-fluid .offset12:first-child {
margin-left: 102.12765957446808%;
*margin-left: 102.02127659574467%;
}
.row-fluid .offset11 {
margin-left: 95.74468085106382%;
*margin-left: 95.6382978723404%;
}
.row-fluid .offset11:first-child {
margin-left: 93.61702127659574%;
*margin-left: 93.51063829787232%;
}
.row-fluid .offset10 {
margin-left: 87.23404255319149%;
*margin-left: 87.12765957446807%;
}
.row-fluid .offset10:first-child {
margin-left: 85.1063829787234%;
*margin-left: 84.99999999999999%;
}
.row-fluid .offset9 {
margin-left: 78.72340425531914%;
*margin-left: 78.61702127659572%;
}
.row-fluid .offset9:first-child {
margin-left: 76.59574468085106%;
*margin-left: 76.48936170212764%;
}
.row-fluid .offset8 {
margin-left: 70.2127659574468%;
*margin-left: 70.10638297872339%;
}
.row-fluid .offset8:first-child {
margin-left: 68.08510638297872%;
*margin-left: 67.9787234042553%;
}
.row-fluid .offset7 {
margin-left: 61.70212765957446%;
*margin-left: 61.59574468085106%;
}
.row-fluid .offset7:first-child {
margin-left: 59.574468085106375%;
*margin-left: 59.46808510638297%;
}
.row-fluid .offset6 {
margin-left: 53.191489361702125%;
*margin-left: 53.085106382978715%;
}
.row-fluid .offset6:first-child {
margin-left: 51.063829787234035%;
*margin-left: 50.95744680851063%;
}
.row-fluid .offset5 {
margin-left: 44.68085106382979%;
*margin-left: 44.57446808510638%;
}
.row-fluid .offset5:first-child {
margin-left: 42.5531914893617%;
*margin-left: 42.4468085106383%;
}
.row-fluid .offset4 {
margin-left: 36.170212765957444%;
*margin-left: 36.06382978723405%;
}
.row-fluid .offset4:first-child {
margin-left: 34.04255319148936%;
*margin-left: 33.93617021276596%;
}
.row-fluid .offset3 {
margin-left: 27.659574468085104%;
*margin-left: 27.5531914893617%;
}
.row-fluid .offset3:first-child {
margin-left: 25.53191489361702%;
*margin-left: 25.425531914893618%;
}
.row-fluid .offset2 {
margin-left: 19.148936170212764%;
*margin-left: 19.04255319148936%;
}
.row-fluid .offset2:first-child {
margin-left: 17.02127659574468%;
*margin-left: 16.914893617021278%;
}
.row-fluid .offset1 {
margin-left: 10.638297872340425%;
*margin-left: 10.53191489361702%;
}
.row-fluid .offset1:first-child {
margin-left: 8.51063829787234%;
*margin-left: 8.404255319148938%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
float: right;
}
.container {
margin-right: auto;
margin-left: auto;
*zoom: 1;
}
.container:before,
.container:after {
display: table;
content: "";
line-height: 0;
}
.container:after {
clear: both;
}
.container-fluid {
padding-right: 20px;
padding-left: 20px;
*zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
display: table;
content: "";
line-height: 0;
}
.container-fluid:after {
clear: both;
}
.lead {
margin-bottom: 20px;
font-size: 21px;
font-weight: 200;
line-height: 30px;
}
small {
font-size: 85%;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
cite {
font-style: normal;
}
.muted {
color: #999999;
}
a.muted:hover,
a.muted:focus {
color: #808080;
}
.text-warning {
color: #c09853;
}
a.text-warning:hover,
a.text-warning:focus {
color: #a47e3c;
}
.text-error {
color: #b94a48;
}
a.text-error:hover,
a.text-error:focus {
color: #953b39;
}
.text-info {
color: #3a87ad;
}
a.text-info:hover,
a.text-info:focus {
color: #2d6987;
}
.text-success {
color: #468847;
}
a.text-success:hover,
a.text-success:focus {
color: #356635;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-family: inherit;
font-weight: bold;
color: inherit;
text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
font-weight: normal;
line-height: 1;
color: #999999;
}
h1 small {
font-size: 24.5px;
}
h2 small {
font-size: 17.5px;
}
h3 small {
font-size: 14px;
}
h4 small {
font-size: 14px;
}
.page-header {
padding-bottom: 9px;
margin: 20px 0 30px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
padding: 0;
margin: 0 0 10px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
margin-bottom: 0;
}
li {
line-height: 20px;
}
ul.unstyled,
ol.unstyled {
margin-left: 0;
list-style: none;
}
ul.inline,
ol.inline {
margin-left: 0;
list-style: none;
}
ul.inline > li,
ol.inline > li {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-bottom: 20px;
}
dt,
dd {
line-height: 20px;
}
dt {
font-weight: bold;
}
dd {
margin-left: 10px;
}
.dl-horizontal {
*zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
display: table;
content: "";
line-height: 0;
}
.dl-horizontal:after {
clear: both;
}
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
hr {
margin: 20px 0;
border: 0;
border-top: 1px solid #eeeeee;
border-bottom: 1px solid #ffffff;
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #999999;
}
abbr.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 21px;
margin: 0px 0 42px 0;
font-family:Arial;
background:url(images/quote.png) 21px 15px no-repeat #f4f4f4;
font-style:italic;
color:#848484;
position:relative;
border:none;
}
blockquote p {
margin-bottom: 0;
font-size: 13px;
font-weight: 300;
line-height: 22.5px;
text-indent:50px;
}
blockquote small {
display: block;
line-height: 18px;
font-size:12px;
position:absolute;
bottom:-42px;
left:20%;
background:url(images/cssspirit.png) no-repeat 0px -156px;
padding:24px 0 0 30px;
}
blockquote small:before {
content: '\2014 \00A0';
}
blockquote.pull-right {
float: right;
padding-right: 15px;
padding-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
text-align: right;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
content: "";
}
address {
display: block;
margin-bottom: 18px;
font-style: normal;
line-height: 18px;
}
small {
font-size: 100%;
}
cite {
font-style: normal;
}
code,
pre {
padding: 0 3px 2px;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 12px;
color: #333333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
code {
padding: 2px 4px;
color: #d14;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 20px;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: pre-wrap;
background-color: #f5f5f5;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
pre.prettyprint {
margin-bottom: 20px;
}
pre code {
padding: 0;
color: inherit;
white-space: pre;
white-space: pre-wrap;
background-color: transparent;
border: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.label,
.badge {
display: inline-block;
padding: 2px 4px;
font-size: 11.844px;
font-weight: bold;
line-height: 14px;
color: #ffffff;
vertical-align: baseline;
white-space: nowrap;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #999999;
}
.label {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.badge {
padding-left: 9px;
padding-right: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
}
.label:empty,
.badge:empty {
display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.label-important,
.badge-important {
background-color: #b94a48;
}
.label-important[href],
.badge-important[href] {
background-color: #953b39;
}
.label-warning,
.badge-warning {
background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
background-color: #c67605;
}
.label-success,
.badge-success {
background-color: #468847;
}
.label-success[href],
.badge-success[href] {
background-color: #356635;
}
.label-info,
.badge-info {
background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
position: relative;
top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
top: 0;
}
table {
max-width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}
.table {
width: 100%;
margin-bottom: 20px;
}
.table th,
.table td {
padding: 8px;
line-height: 20px;
text-align: left;
vertical-align: top;
border-top: 1px solid #dddddd;
}
.table th {
font-weight: bold;
}
.table thead th {
vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
border-top: 0;
}
.table tbody + tbody {
border-top: 2px solid #dddddd;
}
.table .table {
background-color: #ffffff;
}
.table-condensed th,
.table-condensed td {
padding: 4px 5px;
}
.table-bordered {
border: 1px solid #dddddd;
border-collapse: separate;
*border-collapse: collapse;
border-left: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomright: 0;
border-bottom-right-radius: 0;
}
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
background-color: #f5f5f5;
}
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
display: table-cell;
float: none;
margin-left: 0;
}
.table td.span1,
.table th.span1 {
float: none;
width: 44px;
margin-left: 0;
}
.table td.span2,
.table th.span2 {
float: none;
width: 124px;
margin-left: 0;
}
.table td.span3,
.table th.span3 {
float: none;
width: 204px;
margin-left: 0;
}
.table td.span4,
.table th.span4 {
float: none;
width: 284px;
margin-left: 0;
}
.table td.span5,
.table th.span5 {
float: none;
width: 364px;
margin-left: 0;
}
.table td.span6,
.table th.span6 {
float: none;
width: 444px;
margin-left: 0;
}
.table td.span7,
.table th.span7 {
float: none;
width: 524px;
margin-left: 0;
}
.table td.span8,
.table th.span8 {
float: none;
width: 604px;
margin-left: 0;
}
.table td.span9,
.table th.span9 {
float: none;
width: 684px;
margin-left: 0;
}
.table td.span10,
.table th.span10 {
float: none;
width: 764px;
margin-left: 0;
}
.table td.span11,
.table th.span11 {
float: none;
width: 844px;
margin-left: 0;
}
.table td.span12,
.table th.span12 {
float: none;
width: 924px;
margin-left: 0;
}
.table tbody tr.success > td {
background-color: #dff0d8;
}
.table tbody tr.error > td {
background-color: #f2dede;
}
.table tbody tr.warning > td {
background-color: #fcf8e3;
}
.table tbody tr.info > td {
background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td {
background-color: #d0e9c6;
}
.table-hover tbody tr.error:hover > td {
background-color: #ebcccc;
}
.table-hover tbody tr.warning:hover > td {
background-color: #faf2cc;
}
.table-hover tbody tr.info:hover > td {
background-color: #c4e3f3;
}
.uneditable-input,
.uneditable-textarea {
color: #999999;
background-color: #fcfcfc;
border-color: #cccccc;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
cursor: not-allowed;
}
.uneditable-input {
overflow: hidden;
white-space: nowrap;
}
.uneditable-textarea {
width: auto;
height: auto;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
float: left;
margin-left: -20px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
display: inline-block;
padding-top: 5px;
margin-bottom: 0;
vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
margin-left: 10px;
}
.input-mini {
width: 60px;
}
.input-small {
width: 90px;
}
.input-medium {
width: 150px;
}
.input-large {
width: 210px;
}
.input-xlarge {
width: 270px;
}
.input-xxlarge {
width: 530px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
float: none;
margin-left: 0;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
display: inline-block;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 926px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 846px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 766px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 686px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 606px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 526px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 446px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 366px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 286px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 206px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 126px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 46px;
}
.controls-row {
*zoom: 1;
}
.controls-row:before,
.controls-row:after {
display: table;
content: "";
line-height: 0;
}
.controls-row:after {
clear: both;
}
.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
float: left;
}
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
padding-top: 5px;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
cursor: not-allowed;
background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
background-color: transparent;
}
.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
color: #c09853;
}
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
color: #c09853;
}
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
border-color: #c09853;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
border-color: #a47e3c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
color: #c09853;
background-color: #fcf8e3;
border-color: #c09853;
}
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
color: #b94a48;
}
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
color: #b94a48;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
border-color: #b94a48;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
border-color: #953b39;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
color: #b94a48;
background-color: #f2dede;
border-color: #b94a48;
}
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
color: #468847;
}
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
color: #468847;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
border-color: #468847;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
border-color: #356635;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
color: #468847;
background-color: #dff0d8;
border-color: #468847;
}
.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
color: #3a87ad;
}
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
color: #3a87ad;
}
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
border-color: #3a87ad;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
border-color: #2d6987;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
color: #3a87ad;
background-color: #d9edf7;
border-color: #3a87ad;
}
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
color: #b94a48;
border-color: #ee5f5b;
}
input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
border-color: #e9322d;
-webkit-box-shadow: 0 0 6px #f8b9b7;
-moz-box-shadow: 0 0 6px #f8b9b7;
box-shadow: 0 0 6px #f8b9b7;
}
.form-actions {
padding: 19px 20px 20px;
margin-top: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
*zoom: 1;
}
.form-actions:before,
.form-actions:after {
display: table;
content: "";
line-height: 0;
}
.form-actions:after {
clear: both;
}
.help-block,
.help-inline {
color: #595959;
}
.help-block {
display: block;
margin-bottom: 10px;
}
.help-inline {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
vertical-align: middle;
padding-left: 5px;
}
.input-append,
.input-prepend {
display: inline-block;
margin-bottom: 10px;
vertical-align: middle;
font-size: 0;
white-space: nowrap;
}
.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input,
.input-append .dropdown-menu,
.input-prepend .dropdown-menu,
.input-append .popover,
.input-prepend .popover {
font-size: 14px;
}
.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input {
position: relative;
margin-bottom: 0;
*margin-left: 0;
vertical-align: top;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-append input:focus,
.input-prepend input:focus,
.input-append select:focus,
.input-prepend select:focus,
.input-append .uneditable-input:focus,
.input-prepend .uneditable-input:focus {
z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
display: inline-block;
width: auto;
height: 20px;
min-width: 16px;
padding: 4px 5px;
font-size: 14px;
font-weight: normal;
line-height: 20px;
text-align: center;
text-shadow: 0 1px 0 #ffffff;
background-color: #eeeeee;
border: 1px solid #ccc;
}
.input-append .add-on,
.input-prepend .add-on,
.input-append .btn,
.input-prepend .btn,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .btn-group > .dropdown-toggle {
vertical-align: top;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.input-append .active,
.input-prepend .active {
background-color: #a9dba9;
border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-append input + .btn-group .btn:last-child,
.input-append select + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
margin-left: -1px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.input-prepend.input-append input + .btn-group .btn,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group .btn {
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .btn-group:first-child {
margin-left: 0;
}
input.search-query {
padding-right: 14px;
padding-right: 4px \9;
padding-left: 14px;
padding-left: 4px \9;
/* IE7-8 doesn't have border-radius, so don't indent the padding */
margin-bottom: 0;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.form-search .input-append .search-query {
-webkit-border-radius: 14px 0 0 14px;
-moz-border-radius: 14px 0 0 14px;
border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
-webkit-border-radius: 0 14px 14px 0;
-moz-border-radius: 0 14px 14px 0;
border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
-webkit-border-radius: 0 14px 14px 0;
-moz-border-radius: 0 14px 14px 0;
border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
-webkit-border-radius: 14px 0 0 14px;
-moz-border-radius: 14px 0 0 14px;
border-radius: 14px 0 0 14px;
}
.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
margin-bottom: 0;
vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
display: none;
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
padding-left: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
float: left;
margin-right: 3px;
margin-left: 0;
}
.control-group {
margin-bottom: 10px;
}
legend + .control-group {
margin-top: 20px;
-webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
margin-bottom: 20px;
*zoom: 1;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
display: table;
content: "";
line-height: 0;
}
.form-horizontal .control-group:after {
clear: both;
}
.form-horizontal .control-label {
float: left;
width: 160px;
padding-top: 5px;
text-align: right;
}
.form-horizontal .controls {
*display: inline-block;
*padding-left: 20px;
margin-left: 180px;
*margin-left: 0;
}
.form-horizontal .controls:first-child {
*padding-left: 180px;
}
.form-horizontal .help-block {
margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
margin-top: 10px;
}
.form-horizontal .form-actions {
padding-left: 180px;
}
.btn {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
text-decoration:none!important;
*zoom: 1;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
line-height: 20px;
text-align: center;
vertical-align: middle;
cursor: pointer;
color: #333333!important;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
background-color: #f5f5f5;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #e6e6e6;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border: 1px solid #cccccc;
*border: 0;
border-bottom-color: #b3b3b3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
*margin-left: .3em;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
color: #333333;
background-color: #e6e6e6;
*background-color: #d9d9d9;
}
.btn:active,
.btn.active {
background-color: #cccccc \9;
}
.btn:first-child {
*margin-left: 0;
}
.btn:hover,
.btn:focus {
color: #333333;
text-decoration: none;
background-position: 0 -15px;
-webkit-transition: background-position 0.1s linear;
-moz-transition: background-position 0.1s linear;
-o-transition: background-position 0.1s linear;
transition: background-position 0.1s linear;
}
.btn:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn.active,
.btn:active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
cursor: default;
background-image: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.btn-large {
padding: 11px 19px;
font-size: 17.5px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
margin-top: 4px;
}
.btn-small {
padding: 2px 10px;
font-size: 11.9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
margin-top: -1px;
}
.btn-mini {
padding: 0 6px;
font-size: 10.5px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #006dcc;
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
border-color: #0044cc #0044cc #002a80;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #0044cc;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
color: #ffffff;
background-color: #0044cc;
*background-color: #003bb3;
}
.btn-primary:active,
.btn-primary.active {
background-color: #003399 \9;
}
.btn-warning {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #faa732;
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
border-color: #f89406 #f89406 #ad6704;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #f89406;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
color: #ffffff;
background-color: #f89406;
*background-color: #df8505;
}
.btn-warning:active,
.btn-warning.active {
background-color: #c67605 \9;
}
.btn-danger {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #da4f49;
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
border-color: #bd362f #bd362f #802420;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #bd362f;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
color: #ffffff;
background-color: #bd362f;
*background-color: #a9302a;
}
.btn-danger:active,
.btn-danger.active {
background-color: #942a25 \9;
}
.btn-success {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #5bb75b;
background-image: -moz-linear-gradient(top, #62c462, #51a351);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
background-image: -o-linear-gradient(top, #62c462, #51a351);
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
border-color: #51a351 #51a351 #387038;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #51a351;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
color: #ffffff;
background-color: #51a351;
*background-color: #499249;
}
.btn-success:active,
.btn-success.active {
background-color: #408140 \9;
}
.btn-info {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #49afcd;
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
border-color: #2f96b4 #2f96b4 #1f6377;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #2f96b4;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
color: #ffffff;
background-color: #2f96b4;
*background-color: #2a85a0;
}
.btn-info:active,
.btn-info.active {
background-color: #24748c \9;
}
.btn-inverse {
color: #ffffff!important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #363636;
background-image: -moz-linear-gradient(top, #444444, #222222);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
background-image: -webkit-linear-gradient(top, #444444, #222222);
background-image: -o-linear-gradient(top, #444444, #222222);
background-image: linear-gradient(to bottom, #444444, #222222);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
border-color: #222222 #222222 #000000;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #222222;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
color: #ffffff;
background-color: #222222;
*background-color: #151515;
}
.btn-inverse:active,
.btn-inverse.active {
background-color: #080808 \9;
}
button.btn,
input[type="submit"].btn {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
padding: 0;
border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
*padding-top: 7px;
*padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
*padding-top: 1px;
*padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
background-color: transparent;
background-image: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.btn-link {
border-color: transparent;
cursor: pointer;
color: #0088cc;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
color: #005580;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
color: #333333;
text-decoration: none;
}
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
*margin-right: .3em;
line-height: 14px;
vertical-align: text-top;
background-image: url("images/glyphicons-halflings.png");
background-position: 14px 14px;
background-repeat: no-repeat;
margin-top: 1px;
}
/* White icons with optional class, or on hover/focus/active states of certain elements */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
background-image: url("images/glyphicons-halflings-white.png");
}
.icon-glass {
background-position: 0 0;
}
.icon-music {
background-position: -24px 0;
}
.icon-search {
background-position: -48px 0;
}
.icon-envelope {
background-position: -72px 0;
}
.icon-heart {
background-position: -96px 0;
}
.icon-star {
background-position: -120px 0;
}
.icon-star-empty {
background-position: -144px 0;
}
.icon-user {
background-position: -168px 0;
}
.icon-film {
background-position: -192px 0;
}
.icon-th-large {
background-position: -216px 0;
}
.icon-th {
background-position: -240px 0;
}
.icon-th-list {
background-position: -264px 0;
}
.icon-ok {
background-position: -288px 0;
}
.icon-remove {
background-position: -312px 0;
}
.icon-zoom-in {
background-position: -336px 0;
}
.icon-zoom-out {
background-position: -360px 0;
}
.icon-off {
background-position: -384px 0;
}
.icon-signal {
background-position: -408px 0;
}
.icon-cog {
background-position: -432px 0;
}
.icon-trash {
background-position: -456px 0;
}
.icon-home {
background-position: 0 -24px;
}
.icon-file {
background-position: -24px -24px;
}
.icon-time {
background-position: -48px -24px;
}
.icon-road {
background-position: -72px -24px;
}
.icon-download-alt {
background-position: -96px -24px;
}
.icon-download {
background-position: -120px -24px;
}
.icon-upload {
background-position: -144px -24px;
}
.icon-inbox {
background-position: -168px -24px;
}
.icon-play-circle {
background-position: -192px -24px;
}
.icon-repeat {
background-position: -216px -24px;
}
.icon-refresh {
background-position: -240px -24px;
}
.icon-list-alt {
background-position: -264px -24px;
}
.icon-lock {
background-position: -287px -24px;
}
.icon-flag {
background-position: -312px -24px;
}
.icon-headphones {
background-position: -336px -24px;
}
.icon-volume-off {
background-position: -360px -24px;
}
.icon-volume-down {
background-position: -384px -24px;
}
.icon-volume-up {
background-position: -408px -24px;
}
.icon-qrcode {
background-position: -432px -24px;
}
.icon-barcode {
background-position: -456px -24px;
}
.icon-tag {
background-position: 0 -48px;
}
.icon-tags {
background-position: -25px -48px;
}
.icon-book {
background-position: -48px -48px;
}
.icon-bookmark {
background-position: -72px -48px;
}
.icon-print {
background-position: -96px -48px;
}
.icon-camera {
background-position: -120px -48px;
}
.icon-font {
background-position: -144px -48px;
}
.icon-bold {
background-position: -167px -48px;
}
.icon-italic {
background-position: -192px -48px;
}
.icon-text-height {
background-position: -216px -48px;
}
.icon-text-width {
background-position: -240px -48px;
}
.icon-align-left {
background-position: -264px -48px;
}
.icon-align-center {
background-position: -288px -48px;
}
.icon-align-right {
background-position: -312px -48px;
}
.icon-align-justify {
background-position: -336px -48px;
}
.icon-list {
background-position: -360px -48px;
}
.icon-indent-left {
background-position: -384px -48px;
}
.icon-indent-right {
background-position: -408px -48px;
}
.icon-facetime-video {
background-position: -432px -48px;
}
.icon-picture {
background-position: -456px -48px;
}
.icon-pencil {
background-position: 0 -72px;
}
.icon-map-marker {
background-position: -24px -72px;
}
.icon-adjust {
background-position: -48px -72px;
}
.icon-tint {
background-position: -72px -72px;
}
.icon-edit {
background-position: -96px -72px;
}
.icon-share {
background-position: -120px -72px;
}
.icon-check {
background-position: -144px -72px;
}
.icon-move {
background-position: -168px -72px;
}
.icon-step-backward {
background-position: -192px -72px;
}
.icon-fast-backward {
background-position: -216px -72px;
}
.icon-backward {
background-position: -240px -72px;
}
.icon-play {
background-position: -264px -72px;
}
.icon-pause {
background-position: -288px -72px;
}
.icon-stop {
background-position: -312px -72px;
}
.icon-forward {
background-position: -336px -72px;
}
.icon-fast-forward {
background-position: -360px -72px;
}
.icon-step-forward {
background-position: -384px -72px;
}
.icon-eject {
background-position: -408px -72px;
}
.icon-chevron-left {
background-position: -432px -72px;
}
.icon-chevron-right {
background-position: -456px -72px;
}
.icon-plus-sign {
background-position: 0 -96px;
}
.icon-minus-sign {
background-position: -24px -96px;
}
.icon-remove-sign {
background-position: -48px -96px;
}
.icon-ok-sign {
background-position: -72px -96px;
}
.icon-question-sign {
background-position: -96px -96px;
}
.icon-info-sign {
background-position: -120px -96px;
}
.icon-screenshot {
background-position: -144px -96px;
}
.icon-remove-circle {
background-position: -168px -96px;
}
.icon-ok-circle {
background-position: -192px -96px;
}
.icon-ban-circle {
background-position: -216px -96px;
}
.icon-arrow-left {
background-position: -240px -96px;
}
.icon-arrow-right {
background-position: -264px -96px;
}
.icon-arrow-up {
background-position: -289px -96px;
}
.icon-arrow-down {
background-position: -312px -96px;
}
.icon-share-alt {
background-position: -336px -96px;
}
.icon-resize-full {
background-position: -360px -96px;
}
.icon-resize-small {
background-position: -384px -96px;
}
.icon-plus {
background-position: -408px -96px;
}
.icon-minus {
background-position: -433px -96px;
}
.icon-asterisk {
background-position: -456px -96px;
}
.icon-exclamation-sign {
background-position: 0 -120px;
}
.icon-gift {
background-position: -24px -120px;
}
.icon-leaf {
background-position: -48px -120px;
}
.icon-fire {
background-position: -72px -120px;
}
.icon-eye-open {
background-position: -96px -120px;
}
.icon-eye-close {
background-position: -120px -120px;
}
.icon-warning-sign {
background-position: -144px -120px;
}
.icon-plane {
background-position: -168px -120px;
}
.icon-calendar {
background-position: -192px -120px;
}
.icon-random {
background-position: -216px -120px;
width: 16px;
}
.icon-comment {
background-position: -240px -120px;
}
.icon-magnet {
background-position: -264px -120px;
}
.icon-chevron-up {
background-position: -288px -120px;
}
.icon-chevron-down {
background-position: -313px -119px;
}
.icon-retweet {
background-position: -336px -120px;
}
.icon-shopping-cart {
background-position: -360px -120px;
}
.icon-folder-close {
background-position: -384px -120px;
width: 16px;
}
.icon-folder-open {
background-position: -408px -120px;
width: 16px;
}
.icon-resize-vertical {
background-position: -432px -119px;
}
.icon-resize-horizontal {
background-position: -456px -118px;
}
.icon-hdd {
background-position: 0 -144px;
}
.icon-bullhorn {
background-position: -24px -144px;
}
.icon-bell {
background-position: -48px -144px;
}
.icon-certificate {
background-position: -72px -144px;
}
.icon-thumbs-up {
background-position: -96px -144px;
}
.icon-thumbs-down {
background-position: -120px -144px;
}
.icon-hand-right {
background-position: -144px -144px;
}
.icon-hand-left {
background-position: -168px -144px;
}
.icon-hand-up {
background-position: -192px -144px;
}
.icon-hand-down {
background-position: -216px -144px;
}
.icon-circle-arrow-right {
background-position: -240px -144px;
}
.icon-circle-arrow-left {
background-position: -264px -144px;
}
.icon-circle-arrow-up {
background-position: -288px -144px;
}
.icon-circle-arrow-down {
background-position: -312px -144px;
}
.icon-globe {
background-position: -336px -144px;
}
.icon-wrench {
background-position: -360px -144px;
}
.icon-tasks {
background-position: -384px -144px;
}
.icon-filter {
background-position: -408px -144px;
}
.icon-briefcase {
background-position: -432px -144px;
}
.icon-fullscreen {
background-position: -456px -144px;
}
.btn-group {
position: relative;
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
font-size: 0;
vertical-align: middle;
white-space: nowrap;
*margin-left: .3em;
}
.btn-group:first-child {
*margin-left: 0;
}
.btn-group + .btn-group {
margin-left: 5px;
}
.btn-toolbar {
font-size: 0;
margin-top: 10px;
margin-bottom: 10px;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group {
margin-left: 5px;
}
.btn-group > .btn {
position: relative;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-group > .btn + .btn {
margin-left: -1px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
font-size: 14px;
}
.btn-group > .btn-mini {
font-size: 10.5px;
}
.btn-group > .btn-small {
font-size: 11.9px;
}
.btn-group > .btn-large {
font-size: 17.5px;
}
.btn-group > .btn:first-child {
margin-left: 0;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.btn-group > .btn.large:first-child {
margin-left: 0;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topleft: 6px;
border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-left-radius: 6px;
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
-webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
*padding-top: 5px;
*padding-bottom: 5px;
}
.btn-group > .btn-mini + .dropdown-toggle {
padding-left: 5px;
padding-right: 5px;
*padding-top: 2px;
*padding-bottom: 2px;
}
.btn-group > .btn-small + .dropdown-toggle {
*padding-top: 5px;
*padding-bottom: 4px;
}
.btn-group > .btn-large + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
*padding-top: 7px;
*padding-bottom: 7px;
}
.btn-group.open .dropdown-toggle {
background-image: none;
-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn-group.open .btn.dropdown-toggle {
background-color: #e6e6e6;
}
.btn-group.open .btn-primary.dropdown-toggle {
background-color: #0044cc;
}
.btn-group.open .btn-warning.dropdown-toggle {
background-color: #f89406;
}
.btn-group.open .btn-danger.dropdown-toggle {
background-color: #bd362f;
}
.btn-group.open .btn-success.dropdown-toggle {
background-color: #51a351;
}
.btn-group.open .btn-info.dropdown-toggle {
background-color: #2f96b4;
}
.btn-group.open .btn-inverse.dropdown-toggle {
background-color: #222222;
}
.btn .caret {
margin-top: 8px;
margin-left: 0;
}
.btn-large .caret {
margin-top: 6px;
}
.btn-large .caret {
border-left-width: 5px;
border-right-width: 5px;
border-top-width: 5px;
}
.btn-mini .caret,
.btn-small .caret {
margin-top: 8px;
}
.dropup .btn-large .caret {
border-bottom-width: 5px;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.btn-group-vertical {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
}
.btn-group-vertical > .btn {
display: block;
float: none;
max-width: 100%;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-group-vertical > .btn + .btn {
margin-left: 0;
margin-top: -1px;
}
.btn-group-vertical > .btn:first-child {
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.btn-group-vertical > .btn:last-child {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.btn-group-vertical > .btn-large:first-child {
-webkit-border-radius: 6px 6px 0 0;
-moz-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
}
.btn-group-vertical > .btn-large:last-child {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.nav {
margin-left: 0;
margin-bottom: 20px;
list-style: none;
}
.nav > li > a {
display: block;
}
.nav > li > a:hover {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li > a > img {
max-width: none;
}
.nav > .pull-right {
float: right;
}
.nav-header {
display: block;
padding: 3px 15px;
font-size: 11px;
font-weight: bold;
line-height: 20px;
color: #999999;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
text-transform: uppercase;
}
.nav li + .nav-header {
margin-top: 9px;
}
.nav-list {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 0;
}
.nav-list > li > a,
.nav-list .nav-header {
margin-left: -15px;
margin-right: -15px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.nav-list > li > a {
padding: 3px 15px;
}
.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc;
}
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
margin-right: 2px;
}
.nav-list .divider {
*width: 100%;
height: 1px;
margin: 9px 1px;
*margin: -5px 0 5px;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}
.nav-tabs,
.nav-pills {
*zoom: 1;
}
.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
display: table;
content: "";
line-height: 0;
}
.nav-tabs:after,
.nav-pills:after {
clear: both;
}
.nav-tabs > li,
.nav-pills > li {
float: left;
}
.nav-tabs > li > a,
.nav-pills > li > a {
padding-right: 12px;
padding-left: 12px;
margin-right: 2px;
line-height: 14px;
}
.nav-tabs {
border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
margin-bottom: -1px;
}
.nav-tabs > li > a {
padding-top: 8px;
padding-bottom: 8px;
line-height: 18px;
border: 1px solid transparent;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default;
}
.nav-pills > li > a {
padding-top: 8px;
padding-bottom: 8px;
margin-top: 2px;
margin-bottom: 2px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
color: #ffffff;
background-color: #0088cc;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li > a {
margin-right: 0;
}
.nav-tabs.nav-stacked {
border-bottom: 0;
}
.nav-tabs.nav-stacked > li > a {
border: 1px solid #ddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.nav-tabs.nav-stacked > li:first-child > a {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
}
.nav-tabs.nav-stacked > li:last-child > a {
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
border-color: #ddd;
z-index: 2;
}
.nav-pills.nav-stacked > li > a {
margin-bottom: 3px;
}
.nav-pills.nav-stacked > li:last-child > a {
margin-bottom: 1px;
}
.nav-tabs .dropdown-menu {
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
}
.nav-pills .dropdown-menu {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.nav .dropdown-toggle .caret {
border-top-color: #0088cc;
border-bottom-color: #0088cc;
margin-top: 6px;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
border-top-color: #005580;
border-bottom-color: #005580;
}
/* move down carets for tabs */
.nav-tabs .dropdown-toggle .caret {
margin-top: 8px;
}
.nav .active .dropdown-toggle .caret {
border-top-color: #fff;
border-bottom-color: #fff;
}
.nav-tabs .active .dropdown-toggle .caret {
border-top-color: #555555;
border-bottom-color: #555555;
}
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
color: #ffffff;
background-color: #999999;
border-color: #999999;
}
.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
opacity: 1;
filter: alpha(opacity=100);
}
.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
border-color: #999999;
}
.tabbable {
*zoom: 1;
}
.tabbable:before,
.tabbable:after {
display: table;
content: "";
line-height: 0;
}
.tabbable:after {
clear: both;
}
.tab-content {
overflow: auto;
}
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-bottom-color: transparent;
border-top-color: #ddd;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 74px;
margin-right: 0;
margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #ffffff;
}
.nav > .disabled > a {
color: #999999;
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
cursor: default;
}
.navbar {
overflow: visible;
margin-bottom: 20px;
*position: relative;
*z-index: 2;
}
.navbar-inner {
min-height: 40px;
padding-left: 20px;
padding-right: 20px;
background-color: #fafafa;
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
border: 1px solid #d4d4d4;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
*zoom: 1;
}
.navbar-inner:before,
.navbar-inner:after {
display: table;
content: "";
line-height: 0;
}
.navbar-inner:after {
clear: both;
}
.navbar .container {
width: auto;
}
.nav-collapse.collapse {
height: auto;
overflow: visible;
}
.navbar .brand {
float: left;
display: block;
padding: 10px 20px 10px;
margin-left: -20px;
font-size: 20px;
font-weight: 200;
color: #777777;
text-shadow: 0 1px 0 #ffffff;
}
.navbar .brand:hover,
.navbar .brand:focus {
text-decoration: none;
}
.navbar-text {
margin-bottom: 0;
line-height: 40px;
color: #777777;
}
.navbar-link {
color: #777777;
}
.navbar-link:hover,
.navbar-link:focus {
color: #333333;
}
.navbar .divider-vertical {
height: 40px;
margin: 0 9px;
border-left: 1px solid #f2f2f2;
border-right: 1px solid #ffffff;
}
.navbar .btn,
.navbar .btn-group {
margin-top: 5px;
}
.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
margin-top: 0;
}
.navbar-form {
margin-bottom: 0;
*zoom: 1;
}
.navbar-form:before,
.navbar-form:after {
display: table;
content: "";
line-height: 0;
}
.navbar-form:after {
clear: both;
}
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
margin-top: 5px;
}
.navbar-form input,
.navbar-form select,
.navbar-form .btn {
display: inline-block;
margin-bottom: 0;
}
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
margin-top: 3px;
}
.navbar-form .input-append,
.navbar-form .input-prepend {
margin-top: 5px;
white-space: nowrap;
}
.navbar-form .input-append input,
.navbar-form .input-prepend input {
margin-top: 0;
}
.navbar-search {
position: relative;
float: left;
margin-top: 5px;
margin-bottom: 0;
}
.navbar-search .search-query {
margin-bottom: 0;
padding: 4px 14px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
font-weight: normal;
line-height: 1;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
.navbar-static-top {
position: static;
margin-bottom: 0;
}
.navbar-static-top .navbar-inner {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
margin-bottom: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
border-width: 0 0 1px;
}
.navbar-fixed-bottom .navbar-inner {
border-width: 1px 0 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
padding-left: 0;
padding-right: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 940px;
}
.navbar-fixed-top {
top: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
box-shadow: 0 1px 10px rgba(0,0,0,.1);
}
.navbar-fixed-bottom {
bottom: 0;
}
.navbar-fixed-bottom .navbar-inner {
-webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
-moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
box-shadow: 0 -1px 10px rgba(0,0,0,.1);
}
.navbar .nav {
position: relative;
left: 0;
display: block;
float: left;
margin: 0 10px 0 0;
}
.navbar .nav.pull-right {
float: right;
margin-right: 0;
}
.navbar .nav > li {
float: left;
}
.navbar .nav > li > a {
float: none;
padding: 10px 15px 10px;
color: #777777;
text-decoration: none;
text-shadow: 0 1px 0 #ffffff;
}
.navbar .nav .dropdown-toggle .caret {
margin-top: 8px;
}
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
background-color: transparent;
color: #333333;
text-decoration: none;
}
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
color: #555555;
text-decoration: none;
background-color: #e5e5e5;
-webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
-moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
.navbar .btn-navbar {
display: none;
float: right;
padding: 7px 10px;
margin-left: 5px;
margin-right: 5px;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #ededed;
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
border-color: #e5e5e5 #e5e5e5 #bfbfbf;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #e5e5e5;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
color: #ffffff;
background-color: #e5e5e5;
*background-color: #d9d9d9;
}
.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
background-color: #cccccc \9;
}
.navbar .btn-navbar .icon-bar {
display: block;
width: 18px;
height: 2px;
background-color: #f5f5f5;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn-navbar .icon-bar + .icon-bar {
margin-top: 3px;
}
.navbar .nav > li > .dropdown-menu:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -7px;
left: 9px;
}
.navbar .nav > li > .dropdown-menu:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 10px;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
border-top: 7px solid #ccc;
border-top-color: rgba(0, 0, 0, 0.2);
border-bottom: 0;
bottom: -7px;
top: auto;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
border-top: 6px solid #ffffff;
border-bottom: 0;
bottom: -6px;
top: auto;
}
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
border-top-color: #333333;
border-bottom-color: #333333;
}
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
background-color: #e5e5e5;
color: #555555;
}
.navbar .nav li.dropdown > .dropdown-toggle .caret {
border-top-color: #777777;
border-bottom-color: #777777;
}
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
border-top-color: #555555;
border-bottom-color: #555555;
}
.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
left: auto;
right: 0;
}
.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
left: auto;
right: 12px;
}
.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
left: auto;
right: 13px;
}
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
left: auto;
right: 100%;
margin-left: 0;
margin-right: -1px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.navbar-inverse .navbar-inner {
background-color: #1b1b1b;
background-image: -moz-linear-gradient(top, #222222, #111111);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
background-image: -webkit-linear-gradient(top, #222222, #111111);
background-image: -o-linear-gradient(top, #222222, #111111);
background-image: linear-gradient(to bottom, #222222, #111111);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
border-color: #252525;
}
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
color: #999999;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-inverse .brand:hover,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:focus {
color: #ffffff;
}
.navbar-inverse .brand {
color: #999999;
}
.navbar-inverse .navbar-text {
color: #999999;
}
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
background-color: transparent;
color: #ffffff;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
color: #ffffff;
background-color: #111111;
}
.navbar-inverse .navbar-link {
color: #999999;
}
.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
color: #ffffff;
}
.navbar-inverse .divider-vertical {
border-left-color: #111111;
border-right-color: #222222;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
background-color: #111111;
color: #ffffff;
}
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
border-top-color: #999999;
border-bottom-color: #999999;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
border-top-color: #ffffff;
border-bottom-color: #ffffff;
}
.navbar-inverse .navbar-search .search-query {
color: #ffffff;
background-color: #515151;
border-color: #111111;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
}
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
color: #cccccc;
}
.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
padding: 5px 15px;
color: #333333;
text-shadow: 0 1px 0 #ffffff;
background-color: #ffffff;
border: 0;
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
outline: 0;
}
.navbar-inverse .btn-navbar {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #0e0e0e;
background-image: -moz-linear-gradient(top, #151515, #040404);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
background-image: -webkit-linear-gradient(top, #151515, #040404);
background-image: -o-linear-gradient(top, #151515, #040404);
background-image: linear-gradient(to bottom, #151515, #040404);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
border-color: #040404 #040404 #000000;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #040404;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
color: #ffffff;
background-color: #040404;
*background-color: #000000;
}
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
background-color: #000000 \9;
}
.pagination {
margin: 20px 0;
}
.pagination ul {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
margin-left: 0;
margin-bottom: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination ul > li {
display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
float: left;
padding: 4px 12px;
line-height: 20px;
text-decoration: none;
background-color: #ffffff;
border: 1px solid #dddddd;
border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
color: #999999;
cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
color: #999999;
background-color: transparent;
cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
border-left-width: 1px;
-webkit-border-top-left-radius: 4px;
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
.pagination-centered {
text-align: center;
}
.pagination-right {
text-align: right;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span {
padding: 11px 19px;
font-size: 17.5px;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topleft: 6px;
border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topright: 6px;
border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomright: 6px;
border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
-webkit-border-top-left-radius: 3px;
-moz-border-radius-topleft: 3px;
border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
-webkit-border-top-right-radius: 3px;
-moz-border-radius-topright: 3px;
border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-bottomright: 3px;
border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
padding: 2px 10px;
font-size: 11.9px;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
padding: 0 6px;
font-size: 10.5px;
}
.thumbnails {
margin-left: -20px;
list-style: none;
*zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
display: table;
content: "";
line-height: 0;
}
.thumbnails:after {
clear: both;
}
.row-fluid .thumbnails {
margin-left: 0;
}
.thumbnails > li {
float: left;
margin-bottom: 20px;
margin-left: 20px;
}
.thumbnail {
display: block;
padding: 4px;
line-height: 20px;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
border-color: #0088cc;
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.thumbnail > img {
display: block;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.thumbnail .caption {
padding: 9px;
color: #555555;
}
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
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;
}
.alert,
.alert h4 {
color: #c09853;
}
.alert h4 {
margin: 0;
}
.alert .close {
position: relative;
top: -2px;
right: -21px;
line-height: 20px;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.alert-success h4 {
color: #468847;
}
.alert-danger,
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
color: #b94a48;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #3a87ad;
}
.alert-info h4 {
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;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-moz-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-ms-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-o-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #f7f7f7;
background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.progress .bar {
width: 0%;
height: 100%;
color: #ffffff;
float: left;
font-size: 12px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #0e90d2;
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
background-image: -o-linear-gradient(top, #149bdf, #0480be);
background-image: linear-gradient(to bottom, #149bdf, #0480be);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: width 0.6s ease;
-moz-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress .bar + .bar {
-webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
-moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
}
.progress-striped .bar {
background-color: #149bdf;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
-moz-background-size: 40px 40px;
-o-background-size: 40px 40px;
background-size: 40px 40px;
}
.progress.active .bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-moz-animation: progress-bar-stripes 2s linear infinite;
-ms-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar,
.progress .bar-danger {
background-color: #dd514c;
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
background-color: #ee5f5b;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-success .bar,
.progress .bar-success {
background-color: #5eb95e;
background-image: -moz-linear-gradient(top, #62c462, #57a957);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
background-image: -o-linear-gradient(top, #62c462, #57a957);
background-image: linear-gradient(to bottom, #62c462, #57a957);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.progress-success.progress-striped .bar,
.progress-striped .bar-success {
background-color: #62c462;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-info .bar,
.progress .bar-info {
background-color: #4bb1cf;
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.progress-info.progress-striped .bar,
.progress-striped .bar-info {
background-color: #5bc0de;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-warning .bar,
.progress .bar-warning {
background-color: #faa732;
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}
.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
background-color: #fbb450;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.hero-unit {
padding: 60px;
margin-bottom: 30px;
font-size: 18px;
font-weight: 200;
line-height: 30px;
color: inherit;
background-color: #eeeeee;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.hero-unit h1 {
margin-bottom: 0;
font-size: 60px;
line-height: 1;
color: inherit;
letter-spacing: -1px;
}
.hero-unit li {
line-height: 30px;
}
.media,
.media-body {
overflow: hidden;
*overflow: visible;
zoom: 1;
}
.media,
.media .media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media-object {
display: block;
}
.media-heading {
margin: 0 0 5px;
}
.media > .pull-left {
margin-right: 10px;
}
.media > .pull-right {
margin-left: 10px;
}
.media-list {
margin-left: 0;
list-style: none;
}
.tooltip {
position: absolute;
z-index: 1020;
display: block;
visibility: visible;
padding: 5px;
font-size: 11px;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.tooltip.top {
margin-top: -2px;
}
.tooltip.right {
margin-left: 2px;
}
.tooltip.bottom {
margin-top: 2px;
}
.tooltip.left {
margin-left: -2px;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #000000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid #000000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #000000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-right: 5px solid #000000;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #ffffff;
text-align: center;
text-decoration: none;
background-color: #000000;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: none;
max-width: 276px;
padding: 1px;
text-align: left;
background-color: #ffffff;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
white-space: normal;
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
font-weight: normal;
line-height: 18px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}
.popover-title:empty {
display: none;
}
.popover-content {
padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover .arrow {
border-width: 11px;
}
.popover .arrow:after {
border-width: 10px;
content: "";
}
.popover.top .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.popover.top .arrow:after {
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #ffffff;
}
.popover.right .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #ffffff;
}
.popover.bottom .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.popover.bottom .arrow:after {
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #ffffff;
}
.popover.left .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
right: 1px;
border-right-width: 0;
border-left-color: #ffffff;
bottom: -10px;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.modal {
position: fixed;
top: 10%;
left: 50%;
z-index: 1050;
width: 560px;
margin-left: -280px;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
*border: 1px solid #999;
/* IE6-7 */
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
outline: none;
}
.modal.fade {
-webkit-transition: opacity .3s linear, top .3s ease-out;
-moz-transition: opacity .3s linear, top .3s ease-out;
-o-transition: opacity .3s linear, top .3s ease-out;
transition: opacity .3s linear, top .3s ease-out;
top: -25%;
}
.modal.fade.in {
top: 10%;
}
.modal-header {
padding: 9px 15px;
border-bottom: 1px solid #eee;
}
.modal-header .close {
margin-top: 2px;
}
.modal-header h3 {
margin: 0;
line-height: 30px;
}
.modal-body {
position: relative;
overflow-y: auto;
max-height: 400px;
padding: 15px;
}
.modal-form {
margin-bottom: 0;
}
.modal-footer {
padding: 14px 15px 15px;
margin-bottom: 0;
text-align: right;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: inset 0 1px 0 #ffffff;
-moz-box-shadow: inset 0 1px 0 #ffffff;
box-shadow: inset 0 1px 0 #ffffff;
*zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
display: table;
content: "";
line-height: 0;
}
.modal-footer:after {
clear: both;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle {
*margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
outline: 0;
}
.caret {
display: inline-block;
width: 0;
height: 0;
vertical-align: top;
border-top: 4px solid #000000;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
content: "";
}
.dropdown .caret {
margin-top: 8px;
margin-left: 2px;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
background-color: #ffffff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
*width: 100%;
height: 1px;
margin: 9px 1px;
*margin: -5px 0 5px;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 20px;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
text-decoration: none;
color: #ffffff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
outline: 0;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: default;
}
.open {
*z-index: 1000;
}
.open > .dropdown-menu {
display: block;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px solid #000000;
content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropup .dropdown-submenu > .dropdown-menu {
top: auto;
bottom: 0;
margin-top: 0;
margin-bottom: -2px;
-webkit-border-radius: 5px 5px 5px 0;
-moz-border-radius: 5px 5px 5px 0;
border-radius: 5px 5px 5px 0;
}
.dropdown-submenu > a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
-webkit-border-radius: 6px 0 6px 6px;
-moz-border-radius: 6px 0 6px 6px;
border-radius: 6px 0 6px 6px;
}
.dropdown .dropdown-menu .nav-header {
padding-left: 20px;
padding-right: 20px;
}
.typeahead {
z-index: 1051;
margin-top: 2px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.accordion {
}
.accordion-group {
margin-bottom: 1px;
border-bottom: 1px solid #ebebeb;
}
.accordion-heading {
border-bottom: 0;
zoom:1;
}
.accordion-heading .accordion-toggle {
display: block;
padding:15px;
text-decoration:none!important;
color:#444;
font-size:14px;
line-height:18px;
-webkit-transition: background-color 0.35s ease;
-moz-transition: background-color 0.35s ease;
-ms-transition: background-color 0.35s ease;
-o-transition: background-color 0.35s ease;
transition: background-color 0.35s ease;
outline:none;
background-image:url(images/plus.png);
background-position:100% 50%;
background-repeat:no-repeat;
}
.accordion-heading .accordion-toggle.actived,
.accordion-heading .accordion-toggle.actived:hover{
color:#fff;
background-image:url(images/minus.png);
background-position:100% 50%;
background-repeat:no-repeat;
}
.accordion-heading .accordion-toggle:hover{
color:#fff;
background-image:url(images/plus_hover.png);
}
.accordion-toggle {
cursor: pointer;
}
.accordion-inner {
padding: 9px 15px;
}
.carousel {
position: relative;
margin-bottom: 20px;
line-height: 1;
}
.carousel-inner {
overflow: hidden;
width: 100%;
position: relative;
}
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-moz-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
line-height: 1;
}
.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 {
position: absolute;
top: 40%;
left: 15px;
width: 40px;
height: 40px;
margin-top: -20px;
font-size: 60px;
font-weight: 100;
line-height: 30px;
color: #ffffff;
text-align: center;
background: #222222;
border: 3px solid #ffffff;
-webkit-border-radius: 23px;
-moz-border-radius: 23px;
border-radius: 23px;
opacity: 0.5;
filter: alpha(opacity=50);
}
.carousel-control.right {
left: auto;
right: 15px;
}
.carousel-control:hover,
.carousel-control:focus {
color: #ffffff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.carousel-indicators {
position: absolute;
top: 15px;
right: 15px;
z-index: 5;
margin: 0;
list-style: none;
}
.carousel-indicators li {
display: block;
float: left;
width: 10px;
height: 10px;
margin-left: 5px;
text-indent: -999px;
background-color: #ccc;
background-color: rgba(255, 255, 255, 0.25);
border-radius: 5px;
}
.carousel-indicators .active {
background-color: #fff;
}
.carousel-caption {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 15px;
background: #333333;
background: rgba(0, 0, 0, 0.75);
}
.carousel-caption h4,
.carousel-caption p {
color: #ffffff;
line-height: 20px;
}
.carousel-caption h4 {
margin: 0 0 5px;
}
.carousel-caption p {
margin-bottom: 0;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.well-large {
padding: 24px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.well-small {
padding: 9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 20px;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.hide {
display: none;
}
.show {
display: block;
}
.invisible {
visibility: hidden;
}
.affix {
position: fixed;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-moz-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
-moz-transition: height 0.35s ease;
-o-transition: height 0.35s ease;
transition: height 0.35s ease;
}
.collapse.in {
height: auto;
}
@-ms-viewport {
width: device-width;
}
.hidden {
display: none;
visibility: hidden;
}
.visible-phone {
display: none !important;
}
.visible-tablet {
display: none !important;
}
.hidden-desktop {
display: none !important;
}
.visible-desktop {
display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important ;
}
.visible-tablet {
display: inherit !important;
}
.hidden-tablet {
display: none !important;
}
}
@media (max-width: 767px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important;
}
.visible-phone {
display: inherit !important;
}
.hidden-phone {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: inherit !important;
}
.hidden-print {
display: none !important;
}
}
@media (max-width: 767px) {
.navbar-fixed-top,
.navbar-fixed-bottom,
.navbar-static-top {
margin-left: -20px;
margin-right: -20px;
}
.container-fluid {
padding: 0;
}
.dl-horizontal dt {
float: none;
clear: none;
width: auto;
text-align: left;
}
.dl-horizontal dd {
margin-left: 0;
}
.container {
width: auto;
}
.row-fluid {
width: 100%;
}
.row,
.thumbnails {
margin-left: 0;
}
.thumbnails > li {
float: none;
margin-left: 0;
}
[class*="span"],
.uneditable-input[class*="span"],
.row-fluid [class*="span"] {
float: none;
display: block;
width: 100%;
margin-left: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.span12,
.row-fluid .span12 {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.row-fluid [class*="offset"]:first-child {
margin-left: 0;
}
.input-large,
.input-xlarge,
.input-xxlarge,
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.input-prepend input,
.input-append input,
.input-prepend input[class*="span"],
.input-append input[class*="span"] {
display: inline-block;
width: auto;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 0;
}
.modal {
position: fixed;
top: 20px;
left: 20px;
right: 20px;
width: auto;
margin: 0;
}
.modal.fade {
top: -100px;
}
.modal.fade.in {
top: 20px;
}
}
@media (max-width: 480px) {
.nav-collapse {
-webkit-transform: translate3d(0, 0, 0);
}
.page-header h1 small {
display: block;
line-height: 20px;
}
input[type="checkbox"],
input[type="radio"] {
border: 1px solid #ccc;
}
.form-horizontal .control-label {
float: none;
width: auto;
padding-top: 0;
text-align: left;
}
.form-horizontal .controls {
margin-left: 0;
}
.form-horizontal .control-list {
padding-top: 0;
}
.form-horizontal .form-actions {
padding-left: 10px;
padding-right: 10px;
}
.media .pull-left,
.media .pull-right {
float: none;
display: block;
margin-bottom: 10px;
}
.media-object {
margin-right: 0;
margin-left: 0;
}
.modal {
top: 10px;
left: 10px;
right: 10px;
}
.modal-header .close {
padding: 10px;
margin: -10px;
}
.carousel-caption {
position: static;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.row {
margin-left: -20px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 724px;
}
.span12 {
width: 724px;
}
.span11 {
width: 662px;
}
.span10 {
width: 600px;
}
.span9 {
width: 538px;
}
.span8 {
width: 476px;
}
.span7 {
width: 414px;
}
.span6 {
width: 352px;
}
.span5 {
width: 290px;
}
.span4 {
width: 228px;
}
.span3 {
width: 166px;
}
.span2 {
width: 104px;
}
.span1 {
width: 42px;
}
.offset12 {
margin-left: 764px;
}
.offset11 {
margin-left: 702px;
}
.offset10 {
margin-left: 640px;
}
.offset9 {
margin-left: 578px;
}
.offset8 {
margin-left: 516px;
}
.offset7 {
margin-left: 454px;
}
.offset6 {
margin-left: 392px;
}
.offset5 {
margin-left: 330px;
}
.offset4 {
margin-left: 268px;
}
.offset3 {
margin-left: 206px;
}
.offset2 {
margin-left: 144px;
}
.offset1 {
margin-left: 82px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.7624309392265194%;
*margin-left: 2.709239449864817%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.7624309392265194%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.43646408839778%;
*width: 91.38327259903608%;
}
.row-fluid .span10 {
width: 82.87292817679558%;
*width: 82.81973668743387%;
}
.row-fluid .span9 {
width: 74.30939226519337%;
*width: 74.25620077583166%;
}
.row-fluid .span8 {
width: 65.74585635359117%;
*width: 65.69266486422946%;
}
.row-fluid .span7 {
width: 57.18232044198895%;
*width: 57.12912895262725%;
}
.row-fluid .span6 {
width: 48.61878453038674%;
*width: 48.56559304102504%;
}
.row-fluid .span5 {
width: 40.05524861878453%;
*width: 40.00205712942283%;
}
.row-fluid .span4 {
width: 31.491712707182323%;
*width: 31.43852121782062%;
}
.row-fluid .span3 {
width: 22.92817679558011%;
*width: 22.87498530621841%;
}
.row-fluid .span2 {
width: 14.3646408839779%;
*width: 14.311449394616199%;
}
.row-fluid .span1 {
width: 5.801104972375691%;
*width: 5.747913483013988%;
}
.row-fluid .offset12 {
margin-left: 105.52486187845304%;
*margin-left: 105.41847889972962%;
}
.row-fluid .offset12:first-child {
margin-left: 102.76243093922652%;
*margin-left: 102.6560479605031%;
}
.row-fluid .offset11 {
margin-left: 96.96132596685082%;
*margin-left: 96.8549429881274%;
}
.row-fluid .offset11:first-child {
margin-left: 94.1988950276243%;
*margin-left: 94.09251204890089%;
}
.row-fluid .offset10 {
margin-left: 88.39779005524862%;
*margin-left: 88.2914070765252%;
}
.row-fluid .offset10:first-child {
margin-left: 85.6353591160221%;
*margin-left: 85.52897613729868%;
}
.row-fluid .offset9 {
margin-left: 79.8342541436464%;
*margin-left: 79.72787116492299%;
}
.row-fluid .offset9:first-child {
margin-left: 77.07182320441989%;
*margin-left: 76.96544022569647%;
}
.row-fluid .offset8 {
margin-left: 71.2707182320442%;
*margin-left: 71.16433525332079%;
}
.row-fluid .offset8:first-child {
margin-left: 68.50828729281768%;
*margin-left: 68.40190431409427%;
}
.row-fluid .offset7 {
margin-left: 62.70718232044199%;
*margin-left: 62.600799341718584%;
}
.row-fluid .offset7:first-child {
margin-left: 59.94475138121547%;
*margin-left: 59.838368402492065%;
}
.row-fluid .offset6 {
margin-left: 54.14364640883978%;
*margin-left: 54.037263430116376%;
}
.row-fluid .offset6:first-child {
margin-left: 51.38121546961326%;
*margin-left: 51.27483249088986%;
}
.row-fluid .offset5 {
margin-left: 45.58011049723757%;
*margin-left: 45.47372751851417%;
}
.row-fluid .offset5:first-child {
margin-left: 42.81767955801105%;
*margin-left: 42.71129657928765%;
}
.row-fluid .offset4 {
margin-left: 37.01657458563536%;
*margin-left: 36.91019160691196%;
}
.row-fluid .offset4:first-child {
margin-left: 34.25414364640884%;
*margin-left: 34.14776066768544%;
}
.row-fluid .offset3 {
margin-left: 28.45303867403315%;
*margin-left: 28.346655695309746%;
}
.row-fluid .offset3:first-child {
margin-left: 25.69060773480663%;
*margin-left: 25.584224756083227%;
}
.row-fluid .offset2 {
margin-left: 19.88950276243094%;
*margin-left: 19.783119783707537%;
}
.row-fluid .offset2:first-child {
margin-left: 17.12707182320442%;
*margin-left: 17.02068884448102%;
}
.row-fluid .offset1 {
margin-left: 11.32596685082873%;
*margin-left: 11.219583872105325%;
}
.row-fluid .offset1:first-child {
margin-left: 8.56353591160221%;
*margin-left: 8.457152932878806%;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 710px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 648px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 586px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 524px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 462px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 400px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 338px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 276px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 214px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 152px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 90px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 28px;
}
}
@media (min-width: 1200px) {
.row {
margin-left: -30px;
*zoom: 1;
}
.row:before,
.row:after {
display: table;
content: "";
line-height: 0;
}
.row:after {
clear: both;
}
[class*="span"] {
float: left;
margin-left: 30px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 1170px;
}
.span12 {
width: 1170px;
}
.span11 {
width: 1070px;
}
.span10 {
width: 970px;
}
.span9 {
width: 870px;
}
.span8 {
width: 770px;
}
.span7 {
width: 670px;
}
.span6 {
width: 570px;
}
.span5 {
width: 470px;
}
.span4 {
width: 370px;
}
.span3 {
width: 270px;
}
.span2 {
width: 170px;
}
.span1 {
width: 70px;
}
.offset12 {
margin-left: 1230px;
}
.offset11 {
margin-left: 1130px;
}
.offset10 {
margin-left: 1030px;
}
.offset9 {
margin-left: 930px;
}
.offset8 {
margin-left: 830px;
}
.offset7 {
margin-left: 730px;
}
.offset6 {
margin-left: 630px;
}
.offset5 {
margin-left: 530px;
}
.offset4 {
margin-left: 430px;
}
.offset3 {
margin-left: 330px;
}
.offset2 {
margin-left: 230px;
}
.offset1 {
margin-left: 130px;
}
.row-fluid {
width: 100%;
*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
display: table;
content: "";
line-height: 0;
}
.row-fluid:after {
clear: both;
}
.row-fluid [class*="span"] {
display: block;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.564102564102564%;
*margin-left: 2.5109110747408616%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
margin-left: 2.564102564102564%;
}
.row-fluid .span12 {
width: 100%;
*width: 99.94680851063829%;
}
.row-fluid .span11 {
width: 91.45299145299145%;
*width: 91.39979996362975%;
}
.row-fluid .span10 {
width: 82.90598290598291%;
*width: 82.8527914166212%;
}
.row-fluid .span9 {
width: 74.35897435897436%;
*width: 74.30578286961266%;
}
.row-fluid .span8 {
width: 65.81196581196582%;
*width: 65.75877432260411%;
}
.row-fluid .span7 {
width: 57.26495726495726%;
*width: 57.21176577559556%;
}
.row-fluid .span6 {
width: 48.717948717948715%;
*width: 48.664757228587014%;
}
.row-fluid .span5 {
width: 40.17094017094017%;
*width: 40.11774868157847%;
}
.row-fluid .span4 {
width: 31.623931623931625%;
*width: 31.570740134569924%;
}
.row-fluid .span3 {
width: 23.076923076923077%;
*width: 23.023731587561375%;
}
.row-fluid .span2 {
width: 14.52991452991453%;
*width: 14.476723040552828%;
}
.row-fluid .span1 {
width: 5.982905982905983%;
*width: 5.929714493544281%;
}
.row-fluid .offset12 {
margin-left: 105.12820512820512%;
*margin-left: 105.02182214948171%;
}
.row-fluid .offset12:first-child {
margin-left: 102.56410256410257%;
*margin-left: 102.45771958537915%;
}
.row-fluid .offset11 {
margin-left: 96.58119658119658%;
*margin-left: 96.47481360247316%;
}
.row-fluid .offset11:first-child {
margin-left: 94.01709401709402%;
*margin-left: 93.91071103837061%;
}
.row-fluid .offset10 {
margin-left: 88.03418803418803%;
*margin-left: 87.92780505546462%;
}
.row-fluid .offset10:first-child {
margin-left: 85.47008547008548%;
*margin-left: 85.36370249136206%;
}
.row-fluid .offset9 {
margin-left: 79.48717948717949%;
*margin-left: 79.38079650845607%;
}
.row-fluid .offset9:first-child {
margin-left: 76.92307692307693%;
*margin-left: 76.81669394435352%;
}
.row-fluid .offset8 {
margin-left: 70.94017094017094%;
*margin-left: 70.83378796144753%;
}
.row-fluid .offset8:first-child {
margin-left: 68.37606837606839%;
*margin-left: 68.26968539734497%;
}
.row-fluid .offset7 {
margin-left: 62.393162393162385%;
*margin-left: 62.28677941443899%;
}
.row-fluid .offset7:first-child {
margin-left: 59.82905982905982%;
*margin-left: 59.72267685033642%;
}
.row-fluid .offset6 {
margin-left: 53.84615384615384%;
*margin-left: 53.739770867430444%;
}
.row-fluid .offset6:first-child {
margin-left: 51.28205128205128%;
*margin-left: 51.175668303327875%;
}
.row-fluid .offset5 {
margin-left: 45.299145299145295%;
*margin-left: 45.1927623204219%;
}
.row-fluid .offset5:first-child {
margin-left: 42.73504273504273%;
*margin-left: 42.62865975631933%;
}
.row-fluid .offset4 {
margin-left: 36.75213675213675%;
*margin-left: 36.645753773413354%;
}
.row-fluid .offset4:first-child {
margin-left: 34.18803418803419%;
*margin-left: 34.081651209310785%;
}
.row-fluid .offset3 {
margin-left: 28.205128205128204%;
*margin-left: 28.0987452264048%;
}
.row-fluid .offset3:first-child {
margin-left: 25.641025641025642%;
*margin-left: 25.53464266230224%;
}
.row-fluid .offset2 {
margin-left: 19.65811965811966%;
*margin-left: 19.551736679396257%;
}
.row-fluid .offset2:first-child {
margin-left: 17.094017094017094%;
*margin-left: 16.98763411529369%;
}
.row-fluid .offset1 {
margin-left: 11.11111111111111%;
*margin-left: 11.004728132387708%;
}
.row-fluid .offset1:first-child {
margin-left: 8.547008547008547%;
*margin-left: 8.440625568285142%;
}
input,
textarea,
.uneditable-input {
margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
margin-left: 30px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
width: 1156px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
width: 1056px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
width: 956px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
width: 856px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
width: 756px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
width: 656px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
width: 556px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
width: 456px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
width: 356px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
width: 256px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
width: 156px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
width: 56px;
}
.thumbnails {
margin-left: -30px;
}
.thumbnails > li {
margin-left: 30px;
}
.row-fluid .thumbnails {
margin-left: 0;
}
}
@media (max-width: 979px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
position: static;
}
.navbar-fixed-top {
margin-bottom: 20px;
}
.navbar-fixed-bottom {
margin-top: 20px;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
padding: 5px;
}
.navbar .container {
width: auto;
padding: 0;
}
.navbar .brand {
padding-left: 10px;
padding-right: 10px;
margin: 0 0 0 -5px;
}
.nav-collapse {
clear: both;
}
.nav-collapse .nav {
float: none;
margin: 0 0 10px;
}
.nav-collapse .nav > li {
float: none;
}
.nav-collapse .nav > li > a {
margin-bottom: 2px;
}
.nav-collapse .nav > .divider-vertical {
display: none;
}
.nav-collapse .nav .nav-header {
color: #777777;
text-shadow: none;
}
.nav-collapse .nav > li > a,
.nav-collapse .dropdown-menu a {
padding: 9px 15px;
font-weight: bold;
color: #777777;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.nav-collapse .btn {
padding: 4px 10px 4px;
font-weight: normal;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.nav-collapse .dropdown-menu li + li a {
margin-bottom: 2px;
}
.nav-collapse .nav > li > a:hover,
.nav-collapse .nav > li > a:focus,
.nav-collapse .dropdown-menu a:hover,
.nav-collapse .dropdown-menu a:focus {
background-color: #f2f2f2;
}
.navbar-inverse .nav-collapse .nav > li > a,
.navbar-inverse .nav-collapse .dropdown-menu a {
color: #999999;
}
.navbar-inverse .nav-collapse .nav > li > a:hover,
.navbar-inverse .nav-collapse .nav > li > a:focus,
.navbar-inverse .nav-collapse .dropdown-menu a:hover,
.navbar-inverse .nav-collapse .dropdown-menu a:focus {
background-color: #111111;
}
.nav-collapse.in .btn-group {
margin-top: 5px;
padding: 0;
}
.nav-collapse .dropdown-menu {
position: static;
top: auto;
left: auto;
float: none;
display: none;
max-width: none;
margin: 0 15px;
padding: 0;
background-color: transparent;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.nav-collapse .open > .dropdown-menu {
display: block;
}
.nav-collapse .dropdown-menu:before,
.nav-collapse .dropdown-menu:after {
display: none;
}
.nav-collapse .dropdown-menu .divider {
display: none;
}
.nav-collapse .nav > li > .dropdown-menu:before,
.nav-collapse .nav > li > .dropdown-menu:after {
display: none;
}
.nav-collapse .navbar-form,
.nav-collapse .navbar-search {
float: none;
padding: 10px 15px;
margin: 10px 0;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #f2f2f2;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
}
.navbar-inverse .nav-collapse .navbar-form,
.navbar-inverse .nav-collapse .navbar-search {
border-top-color: #111111;
border-bottom-color: #111111;
}
.navbar .nav-collapse .nav.pull-right {
float: none;
margin-left: 0;
}
.nav-collapse,
.nav-collapse.collapse {
overflow: hidden;
height: 0;
}
.navbar .btn-navbar {
display: block;
}
.navbar-static .navbar-inner {
padding-left: 10px;
padding-right: 10px;
}
}
@media (min-width: 980px) {
.nav-collapse.collapse {
height: auto !important;
overflow: visible !important;
}
}
/* CSS Document */
.title1, .title2, .title3, .title4, .title5, .special, #dnn_dnnSEARCH_txtSearch, #dnn_dnnSEARCH2_txtSearch, .btn, blockquote {
font-family:"Open Sans", Arial;
}
#Body {
color:#666;
background:url(images/wrapper_bg.jpg) repeat-y 50% 0 fixed;
}
html, body {
margin:0px;
height:100%;
padding:0px;
font:normal 13px/1.5 "Open Sans", Arial;
color:#666;
}
p {
margin:0px 0px 8px 0px;
}
header, nav, section, footer {
display:block;
}
TH, TD, DIV {
}
A, A:link {
text-decoration:none;
}
A:active {
text-decoration: none;
}
A:visited {
text-decoration: none;
}
A:hover {
text-decoration: underline;
}
h1, .AgapeH1 {
font:normal 22px/26px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h2, .AgapeH2 {
font:normal 20px/24px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h3, .AgapeH3 {
font:normal 16px/20px "Open Sans", Arial;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h4, .AgapeH4 {
font:normal 14px/18px "Open Sans", Arial;
margin:0px 0 4px 0;
color:#646464;
letter-spacing:normal;
}
h5, .AgapeH5 {
font:normal 12px/18px "Open Sans", Arial;
color:#646464;
margin:5px 0 10px 0;
letter-spacing:normal;
}
h6 {
font:normal 11px/16px "Open Sans", Arial;
color:#000;
margin:5px 0 10px 0;
letter-spacing:normal;
}
form#Form {
height:100%;
}
.ModuleTitle_SubMenu {
z-index:9999!important;
}
.clearfix:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.clearfix {
display:inline-block;
}
.clearfix {
display:block;
}
#dnn_ControlPanel #dnnCPWrap {
filter: none !important;
}
ul.dnnActionMenuBody li ul li a, ul.dnnActionMenuBody li ul li a img {
color:#328DDE!important;
}
.clear {
clear:both;
}
.height1{
font-size:0px;
height:1px;
}
/* ********** Control Panel Style ************** */
.CommandButton, A.CommandButton:link, A.CommandButton:visited, A.CommandButton:active {
font-size:13px;
text-decoration:none;
font-weight:normal;
}
A.CommandButton:hover {
text-decoration: underline;
font-size:13px;
font-weight:normal;
}
#dnn_bottom .CommandButton, #dnn_bottom A.CommandButton:link, #dnn_bottom A.CommandButton:visited, #dnn_bottom A.CommandButton:active, #dnn_bottom A.CommandButton:hover {
color:#fff;
}
.FileManager A, .FileManager A:link, .FileManager A:visited, .FileManager A:active {
color:#000;
text-decoration: underline;
}
.FileManager A:hover {
color:#000;
text-decoration:none;
}
/* ********** Search Style ************** */
/* ********** Buttons Style ************** */
/* ********** Pane Style ************** */
.row-fluid [class*="Pane"] {
padding:0px 0px 20px 0px;
}
.DNNEmptyPane {
display:none;
}
.LeftOutPane,
.RightOutPane{
padding-left:0px!important;
padding-right:0px!important;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
float:left;
width:448px;
padding-bottom:0 !important;
}
.TopPane_A, .TopPane_B, .TopPane_C {
margin-right:2px;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:15px !important;
}
/* ********** Container Style ************** */
.Head {
font-size:13px;
font-weight:bold;
color:#000;
font-family: Arial, Helvetica, sans-serif;
}
.SubHead {
font-size:13px;
color:#000;
font-family:Arial, Helvetica, sans-serif;
}
.SubSubHead {
font-size:13px;
color:#000;
font-family:Arial, Helvetica, sans-serif;
}
.Normal {
font-size:13px;
line-height:1.5;
color:#666;
}
/* ********** Login Style ************** */
.login, a.login:link, a.login:active, a.login:visited {
color:#666;
text-decoration:none;
font-weight:normal;
font-size:13px;
line-height:20px;
display:inline-block;
padding:5px 15px 5px 43px;
margin-right:2px;
background-image:url(images/cssspirit.png);
background-repeat:no-repeat;
background-position:15px 0px;
background-color:#f0f0f0;
}
a.login:hover {
text-decoration:none;
font-weight:normal;
color:#fff;
background-position:15px -32px;
}
/* ********** User Style ************** */
.user, a.user:link, a.user:active, a.user:visited {
color:#666;
text-decoration:none;
font-weight:normal;
font-size:13px;
line-height:20px;
display:inline-block;
padding:5px 15px 5px 43px;
background-image:url(images/cssspirit.png);
background-repeat:no-repeat;
background-position:15px -65px;
background-color:#f0f0f0;
}
a.user:hover {
text-decoration:none;
font-weight:normal;
color:#fff;
background-position:15px -97px;
}
/* ********** Date Style ************** */
.date, a.date:link, a.date:active, a.date:visited {
color:#4b4b4b;
text-decoration:none;
font-weight:normal;
font-size:14px;
line-height:24px;
}
/* ********** Footer Style ************** */
.footer, a.footer:link, a.footer:active, a.footer:visited {
font-size:13px;
color:#a5a5a5;
text-decoration:none;
font-weight:Normal;
}
a.footer:hover {
text-decoration:none;
font-weight:Normal;
text-decoration:underline;
}
/* ********** Privacy/Terms Style ************** */
.terms, a.terms:link, a.terms:active, a.terms:visited {
font-size:13px;
color:#a5a5a5;
text-decoration:none;
font-weight: normal;
border-bottom:0px dotted;
}
a.terms:hover {
font-weight:Normal;
text-decoration:underline;
}
/* ********** Links Style ************** */
/* ********** Breadcrumb Style ************** */
a.breadcrumb:link, a.breadcrumb:active, a.breadcrumb:visited {
font-size:22px;
text-decoration:none;
font-weight:normal;
line-height:24px;
color:#4b4b4b;
}
a.breadcrumb:hover {
text-decoration:underline;
font-weight:normal;
}
/* ********** Search ************** */
.search_bg {
display:none;
position:absolute;
width:248px;
height:28px;
float:left;
background:#4b4b4b;
left:-222px;
top:41px;
padding:6px 8px;
}
.SearchIcon {
display:none;
}
.search, a.search:link, a.search:active, a.search:visited {
color:#fff;
text-decoration:none;
display:block;
position:absolute;
right:-73px;
top:0px;
overflow:hidden;
font-size:13px;
text-align: center;
overflow:hidden;
width:65px;
height:28px;
outline:none;
line-height:28px;
}
a.search:hover {
color:#fff;
text-decoration:none;
}
#dnn_dnnSEARCH_ClassicSearch {
width:177px;
height:28px;
background-color: #808080;
display: block;
position: relative;
}
#dnn_dnnSEARCH_txtSearch {
width:158px;
color:#f9faf9;
font-size:12px;
height:16px;
line-height:16px;
padding:0 10px 0 0;
background:none;
border:none;
display:block;
position:absolute;
left:10px;
top:6px;
outline:0;
-webkit-appearance: none;
}
.search_bg2 {
position:relative;
width:215px;
height:28px;
background:#f1f1f1;
float:right;
margin-top:4px;
}
.SearchIcon {
display:none;
}
a#dnn_dnnSEARCH2_cmdSearch, a#dnn_dnnSEARCH2_cmdSearch:link, a#dnn_dnnSEARCH2_cmdSearch:active, a#dnn_dnnSEARCH2_cmdSearch:visited {
color:#A90358;
text-decoration:none;
display:block;
position:absolute;
right:0px;
top:0px;
overflow:hidden;
text-transform:uppercase;
font-size:16px;
text-indent:-9999px;
overflow:hidden;
width:29px;
height:28px;
outline:none;
background-image:url(images/cssspirit.png);
background-position:6px -128px;
background-repeat:no-repeat;
}
a#dnn_dnnSEARCH2_cmdSearch:hover {
color:#A90358;
text-decoration:none;
}
#dnn_dnnSEARCH2_txtSearch {
width:166px;
color:#666;
font-size:12px;
height:16px;
line-height:16px;
padding:0 10px 0 0;
background:none;
border:none;
display:block;
position:absolute;
left:10px;
top:6px;
outline:0;
-webkit-appearance: none;
}
.search_bg .searchInputContainer {
display:block !important;
margin:0px !important;
height:28px;
}
.dnnSearchBoxPanel {
padding:10px 0px !important;
}
.dnnSearchResultPanel {
padding:10px 0px 7px 0px!important;
}
.search_bg .searchInputContainer a.dnnSearchBoxClearText {
top: 0!important;
right: 3px!important;
}
ul.searchSkinObjectPreview{
z-index: 999!important;
margin: 6px -79px 0 0!important;
}
/* ********** Other Style ************** */
#dnn_wrapper {
padding:30px 0;
}
.dnn_main {
background:#fff;
}
.dnn_layout {
width:940px;
margin:0px auto;
}
/* ********** HEADER ************** */
header {
background-color:#fff;
padding:0px 20px;
}
.dnn_logo {
float:left;
padding:48px 10px 40px 0;
}
.headr {
float:right;
padding:25px 0;
}
#login_style {
float:right;
}
.social {
clear:right;
margin-top:19px;
float:right;
}
/* ********** NAV ************** */
nav {
background:#4b4b4b;
padding:0 15px 0 0px;
margin:0 20px;
}
#top_menu, #Mega_menu {
float:left;
z-index:903;
position:relative;
}
.search_icon {
float:right;
padding-left:10px;
margin-top:18px;
position: relative;
z-index: 904;
height:19px;
border-left:1px solid #646464;
}
.mobile_icon {
width:46px;
height:36px;
float:left;
}
/* ********** Banner ************** */
#dnn_banner {
background:url(images/banner_shadow2.png) no-repeat 50% 100%;
padding:20px 20px 27px;
}
/* ********** CONTENT ************** */
#dnn_content {
padding:10px 20px;
}
.toppane {
padding-bottom:20px;
}
.bread_date {
color:#4b4b4b;
padding:10px 0 20px 0;
}
.date_style {
float:right;
font-size:14px;
line-height:24px;
}
.bread_style {
font-size:22px;
line-height:24px;
float:left;
}
.pane_layout {
min-height:200px;
}
/* ********** FOOTER ************** */
/* ********** BOTTOM ************** */
#dnn_bottom {
background:#2a2a2a;
padding:0 20px;
}
.dnn_footer {
border-top:1px solid #404040;
padding:15px 0;
}
.copyright_style {
float:left;
color:#a5a5a5;
padding:9px 0;
font-size:13px;
line-height:18px;
}
.copyright_style .sep {
margin:0px 10px;
}
#to_top {
float:right;
cursor: pointer;
margin-left:5px;
text-align:center;
padding:8px 13px 9px;
width:13px;
}
#to_top:hover {
background-color:#000;
}
/*--------- Top Menu style ----------*/
#top_menu ul {
margin:0px;
padding:0px 0px;
display:block;
}
#top_menu ul {
display:inline-block;
}
#top_menu img {
vertical-align:top;
margin-right:3px;
}
#top_menu ul:after {
content:".";
font-size:0px;
height:0px;
display:block;
clear:both;
visibility:hidden;
}
#top_menu ul {
margin:0px;
padding:0px 0px;
display: block;
position:relative;
z-index:903;
}
#top_menu li {
position:relative;
display:block;
float:left;
list-style-type:none;
padding:0;
margin:0;
}
#top_menu ul li a {
display:block;
position:relative;
float:left;
color:#fff;
font-size:15px;
cursor:pointer;
text-decoration:none;
line-height:20px;
padding:19px 20px 20px 20px;
}
#top_menu ul li > a.menu_hover, #top_menu ul li.current > a, #top_menu ul li a:hover {
text-decoration:none;
color:#fff;
}
#top_menu ul li a span {
display:block;
}
/*-- submenu --*/
#top_menu .menuslide {
display: none;
float: left;
overflow:hidden;
position:absolute;
margin:0px 0 0 0px;
}
#top_menu .menuslide div {
margin:-1px 0 0 0px;
}
#top_menu .menuslide ul {
display: none;
left: 0px;
float: left;
position:relative;
margin:0px;
background: rgba(255,255,255,0.9);
border:1px solid #dedede;
}
#top_menu .menuslide ul li {
display:block;
clear:both;
padding:0px;
background:none;
margin:0px;
border-bottom:1px solid #dedede;
}
#top_menu .menuslide ul li.last-item {
border-bottom:none;
}
#top_menu .menuslide ul li a {
color:#4b4b4b;
font-weight:normal;
position:relative;
padding:4px 10px;
line-height:26px;
font-size:13px;
}
#top_menu .menuslide ul li a:hover, #top_menu .menuslide ul li a.menu_hover {
color:#fff;
}
#top_menu .menuslide ul li a span {
display:block;
padding:0 40px 0 0;
margin:0px;
background:none;
width:auto;
white-space:nowrap;
}
#top_menu .menuslide ul li.dir > a > span {
background:url(images/topmenu_arrow1.png) no-repeat 100% 50%;
}
#top_menu .menuslide ul li.dir > a:hover > span, #top_menu .menuslide ul li > a.menu_hover > span {
background:url(images/topmenu_arrow2.png) no-repeat 100% 50%;
}
/*--------- Left Menu style ----------*/
#left_menu {
}
#left_menu img {
display:none;
}
#left_menu ul {
padding:0px;
margin:0px;
}
#left_menu ul li {
list-style:none;
margin-bottom:1px;
}
#left_menu ul li a {
display:block;
text-decoration:none;
color:#555;
padding:13px 10px;
line-height:19px;
font-size:15px;
border-bottom:1px solid #ebebeb;
}
#left_menu ul li a span {
display:block;
background:url(images/leftmenu_arrow.png) no-repeat 0% 6px;
padding-left:18px;
}
#left_menu ul li li a span {
background:none;
padding-left:0;
}
#left_menu > .gomenu > ul > li > a:hover, #left_menu > .gomenu > ul > li.current > a {
color:#fff;
}
#left_menu > .gomenu > ul > li > a:hover > span, #left_menu > .gomenu > ul > li.current > a > span {
background:url(images/leftmenu_arrow2.png) no-repeat 0% 6px;
}
#left_menu ul ul {
padding: 5px 15px 5px 35px;
display:none;
border-bottom:1px solid #ebebeb;
}
#left_menu ul li.current > ul {
display:block;
}
#left_menu ul ul .subcurrent > ul {
display:block;
}
#left_menu ul li li {
margin:0;
border-bottom:none;
}
#left_menu ul li li a {
position:relative;
padding:6px 0px 6px 0px;
line-height:18px;
font-size:13px;
border-bottom:none;
}
#left_menu ul li li a:hover, #left_menu ul li li.subcurrent > a {
background:none;
}
#left_menu ul ul ul {
margin-left:15px;
padding:0px;
background:none;
border:none;
}
/*--------- Mega Menu style ----------*/
#Mega_menu ul {
margin:0px;
padding:0px 0px;
display:block;
}
#Mega_menu ul {
display:inline-block;
}
#Mega_menu img {
vertical-align:top;
margin-right:3px;
}
#Mega_menu ul:after {
content:".";
font-size:0px;
height:0px;
display:block;
clear:both;
visibility:hidden;
}
#Mega_menu ul {
margin:0px;
padding:0px 0px;
display: block;
position:relative;
z-index:905;
}
#Mega_menu li {
list-style: none none outside;
float:left;
position:relative;
margin:0px;
padding:0px;
z-index:905;
}
#Mega_menu ul li {
position:relative;
display:block;
float:left;
list-style-type:none;
margin:0;
}
#Mega_menu ul li a {
display:block;
position:relative;
float:none;
color:#fff;
font-size:15px;
cursor:pointer;
text-decoration:none;
line-height:20px;
padding:19px 20px 20px 20px;
}
#Mega_menu ul li a span {
display:block;
}
#Mega_menu ul li.dgn-root-hover > a, #Mega_menu ul li.current > a, #Mega_menu ul li a:hover {
text-decoration:none;
color:#fff;
}
/*-- submenu --*/
#Mega_menu div.mega_submenu {
padding:15px 0px;
position:absolute;
display:none;
top:59px;
left:0px;
margin:0px;
background-color:rgba(255,255,255,0.9);
border:1px solid #e2e2e1;
}
#Mega_menu ul.mega_submenu_ul {
background-position:200px 0px;
background-repeat:repeat-y;
}
#Mega_menu div.Column2 ul.mega_submenu_ul {
width:400px;
background-image:url(images/megamenu_Column2line.png);
}
#Mega_menu div.Column3 ul.mega_submenu_ul {
width:600px;
background-image:url(images/megamenu_Column3line.png);
}
#Mega_menu div.Column4 ul.mega_submenu_ul {
width:800px;
background-image:url(images/megamenu_Column4line.png);
}
#Mega_menu ul.mega_submenu_ul > li {
display:block;
padding:0px;
float:left;
width:156px;
margin:0px 22px 0px 22px;
zoom:1;
}
#Mega_menu ul.mega_submenu_ul ul {
}
#Mega_menu ul.mega_submenu_ul ul li {
border-bottom:1px solid #cfcfcf;
float:none;
margin:0px;
}
#Mega_menu ul.mega_submenu_ul ul li a {
display:block;
font-weight: normal;
float:none;
font-size:14px;
line-height:20px;
color:#4e4e4e;
letter-spacing:normal;
margin:0px;
position:relative;
padding:6px 0px 6px 0px;
zoom:1;
transition: color ease-in 200ms;
-moz-transition: color ease-in 200ms; /* Firefox 4 */
-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
-o-transition: color ease-in 200ms; /* Opera */
-ms-transition: color ease-in 200ms; /* IE9? */
}
#Mega_menu ul.mega_submenu_ul ul li a:hover {
}
#Mega_menu ul.mega_submenu_ul ul li a span {
display:block;
padding:0px;
margin:0px;
background:none;
word-break:break-all;
}
#Mega_menu ul.mega_submenu_ul ul ul {
border:none;
padding:0px 0px 10px 0px;
display:block;
float:none;
background:none;
box-shadow:none;
}
#Mega_menu ul.mega_submenu_ul ul ul li {
margin:0;
padding:0;
background:none;
border:none;
}
#Mega_menu ul.mega_submenu_ul ul ul li a {
float:none;
position:relative;
border-bottom:none;
line-height:18px;
padding:4px 0px 4px 15px;
position:relative;
font-size:12px;
}
#Mega_menu ul.mega_submenu_ul ul ul li a:after {
content:">";
position:absolute;
left:0px;
top:5px;
font-size:12px;
font-family:Arial;
}
#Mega_menu ul.mega_submenu_ul ul ul li a span {
}
#Mega_menu ul.mega_submenu_ul ul ul ul {
padding:0px 0px 0px 15px;
}
/*--------- Mobile Menu style ----------*/
#mobile_menu {
margin-top:10px;
}
.multi_menu {
}
.multi_menu ul {
list-style:none;
margin:0;
padding:0;
}
.multi_menu ul li {
margin:0px;
padding:0px;
margin-bottom:1px;
list-style:none;
}
.multi_menu ul li img{
vertical-align:top;
}
.multi_menu ul li a {
font-size: 14px;
line-height:20px;
padding:0px;
margin:0px;
color: #FFFFFF;
background-color:#4B4B4B;
display: block;
text-decoration: none;
outline:none;
}
.multi_menu ul li a:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.multi_menu ul li a {
display:inline-block;
}
.multi_menu ul li a {
display:block;
}
.multi_menu ul li.active > a,
.multi_menu ul li a:hover{
}
.multi_menu ul li span {
padding:10px 15px;
display:block;
}
.multi_menu ul li .menu_arrow {
background-image:url(images/dir_bg.png);
background-repeat:no-repeat;
background-position:right 0px;
display:block;
width:40px;
padding:0px;
height:40px;
float:right;
text-indent:-9999px;
overflow:hidden;
margin:0px;
}
.multi_menu ul li .menu_arrow.arrow_opened{
}
.multi_menu ul li .menu_arrow.arrow_closed{
background-position:right -40px;
}
.multi_menu ul ul {
display:none;
background:#4B4B4B;
padding:2px 15px 5px 15px;
margin:1px 0px 0px 0px;
}
.multi_menu ul ul li a {
background:none;
border-bottom:1px solid #625F5F;
}
.multi_menu ul ul li a span{
padding:7px 0px;
}
.multi_menu ul ul li .menu_arrow{
height:36px;
background-position:right -3px;
margin-right:-15px;
}
.multi_menu ul ul li .menu_arrow.arrow_closed{
background-position:right -43px;
}
.multi_menu ul li.current > ul {
display:block;
}
.multi_menu ul ul ul{
padding:0px 0px 0px 20px;
margin:0px;
}
.multi_menu ul ul ul li a{
margin:0px;
border:none;
}
/* ********** Latest Blogs ************** */
/* ********** Form Style ************** */
.Theme_Normal_Bottom textarea, .Theme_Normal_Bottom input[type="text"], .Theme_Normal_Bottom input[type="password"], .Theme_Normal_Bottom input[type="datetime"], .Theme_Normal_Bottom input[type="datetime-local"], .Theme_Normal_Bottom input[type="date"], .Theme_Normal_Bottom input[type="month"], .Theme_Normal_Bottom input[type="time"], .Theme_Normal_Bottom input[type="week"], .Theme_Normal_Bottom input[type="number"], .Theme_Normal_Bottom input[type="email"], .Theme_Normal_Bottom input[type="url"], .Theme_Normal_Bottom input[type="search"], .Theme_Normal_Bottom input[type="tel"], .Theme_Normal_Bottom input[type="color"], .uneditable-input {
background:#252525!important;
border:1px solid #343333!important;
color:#a2a2a2 !important;
}
#dnn_wrapper .Theme_Normal_Bottom .form_submit {
text-align:right !important;
}
#dnn_wrapper .Theme_Normal_Bottom .btn {
background-image:url(images/form_submit.png);
background-repeat:no-repeat;
background-position:0 0;
padding:6px 15px 6px 52px;
}
#dnn_wrapper .Theme_Normal_Bottom .btn:hover {
background-color:#121112;
}
/* ********** Gallery Style ************** */
.gray-bg {
background:#a9b3b8;
}
/* ********** Photo Gallery Style ************** */
#dnn_wrapper .Theme_20_Default li {
margin:0px 1px 1px 0px;
}
#dnn_wrapper .Theme_20_Default li img {
border:none;
}
/* ********** Transition Style ************** */
#top_menu ul li a, #Mega_menu ul li a, #left_menu ul li a, #to_top, .login, .user, #dnn_wrapper .Theme_Normal_Bottom .btn, .Container-20037-1 .contentmain1, #dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next, .Theme_21_Default .prev, .Theme_21_Default .next, .Theme_21_Default .pager a, .Theme_25_Default .prev, .Theme_25_Default .next, .Theme_25_Default .pager a {
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
/* ********** Control Panel Style ************** */
.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
color:#fff !important;
text-decoration:none!important;
}
.dnnFormItem button, .dnnFormItem input[type="button"], .dnnFormItem input[type="reset"], .dnnSecondaryAction, a.dnnSecondaryAction, ul.dnnAdminTabNav li a, .dnnLogin .LoginTabGroup span {
color:#555 !important;
text-decoration: none!important;
}
/*********** Other Style*********************************/
.abtn {
line-height:34px!important;
width:190px;
height:34px;
color:#fffefe!important;
text-decoration:none!important;
display:inline-block;
text-align:center;
font-size:16px;
margin-right:20px;
background:#4e4e4e;
}
.abtn:hover {
color:#fff !important;
}
*+html .abtn {
display:inline;
}
.submit_ticket a {
color:#fff !important;
text-decoration:none;
}
.submit_bg {
float:left;
margin-right:2px;
padding:20px;
width: 608px;
}
.submit_text {
margin:16px 0 15px;
color:#fff;
}
.ticket_bg {
float:left;
text-align:center;
padding:30px 20px 29px 20px;
font-size:22px;
line-height:32px;
width: 190px;
}
.categories {
padding:0px;
margin:0px;
}
.categories li {
list-style:none;
border-bottom:1px solid #4d4b4b;
}
#dnn_bottom .categories li a {
display:block;
padding:6px 0px 6px 17px;
background:url(images/categories_icon.png) 4px 11px no-repeat;
color:#c3c3c3;
font-size:13px;
line-height:17px;
}
#dnn_bottom .Normal {
color:#636363;
font-size:12px;
}
.botpane a {
color:#c3c3c3;
}
.last_news {
padding:0px;
margin:0px;
}
.last_news li {
list-style:none;
border-bottom:1px dotted #585858;
padding-bottom:10px;
margin-bottom:10px;
}
.last_news .news_image {
float:left;
border:2px solid #656464;
margin-right:8px;
}
.last_news .news_title {
font-size:12px;
font-style:normal;
margin:0px 0px 0px 0px;
line-height:18px;
color:#c3c3c3;
}
.last_news .news_date {
color:#646464;
margin-left:83px;
}
/* ********** tabs Style ************** */
.nav > li > a:hover {
background:none;
}
.tabs-top .nav-tabs {
border-bottom:none;
margin-bottom:0px;
}
.nav-tabs > li {
margin:0px;
zoom:1;
}
.tabs-top .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px -1px 0px 0px;
outline:none;
border-radius:0px;
padding:9px 14px;
position:relative;
border-width:1px;
border-style:solid;
border-color:#E1E1E1;
border-bottom:none;
position:relative;
top:1px;
bottom:-1px;
zoom:1;
}
.tabs-top .nav-tabs > .active > a, .tabs-top .nav-tabs > .active > a:hover {
border-bottom:none;
color:#fff;
}
.nav-tabs > li > a:hover {
background-color:#eee;
color:#333;
}
.tabs-top .tab-content {
border-width:1px;
border-style:solid;
border-color:#E1E1E1;
padding:10px 19px;
background:#FCFCFC;
}
/* ********** tabs-left Style ************** */
.tabs-left > .nav-tabs {
margin:0px;
border-right:none;
}
.tabs-left > .nav-tabs > li {
border-top-width:1px;
border-top-style:solid;
border-right-width:1px;
border-right-style:solid;
border-color:#E1E1E1;
}
.tabs-left > .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px;
outline:none;
border-radius:0px;
padding:0px 14px 0px 20px;
line-height:37px;
height:37px;
position:relative;
border:none;
position:relative;
min-width:120px;
zoom:1;
}
.tabs-left .nav-tabs > li > a:hover {
border:none;
background-color:#eee;
color:#333;
}
.tabs-left > .nav-tabs > li:first-child, .tabs-left .nav-tabs > li.active:first-child {
border-top:none;
}
.tabs-left .nav-tabs > .active {
border:none;
border-top-width:1px;
border-top-style:solid;
border-color:#E1E1E1;
}
.tabs-left .nav-tabs > .active > a, .tabs-left .nav-tabs > .active > a:hover {
border:none;
padding:0px 31px 0px 20px;
color:#fff;
margin-right:-16px;
background-image:url(images/tab-left-active-bg.png);
background-position:right top;
background-repeat:no-repeat;
}
.tabs-left .tab-content {
padding-left:35px;
}
/*tabs-left2*/
.tabs-left2 {
border:1px solid #e2e2e2;
}
.tabs-left2 > .nav-tabs > li > a {
background:#fafafa;
margin-right:0px;
font-size:15px;
padding:5px 30px 5px 20px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
*+html .tabs-left2 > .nav-tabs > li > a {
min-width:170px;
}
.tabs-left2 > .nav-tabs > li > a:Hover {
color:#FFF;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 30px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:20px 20px 0px 30px;
}
/* ********** tabs-right Style ************** */
.tabs-right > .nav-tabs {
margin:0px;
border-left:none;
}
.tabs-right > .nav-tabs > li {
border-top-width:1px;
border-top-style:solid;
border-left-width:1px;
border-left-style:solid;
border-color:#E1E1E1;
}
.tabs-right > .nav-tabs > li > a {
margin:0px;
color:#919191;
margin:0px;
outline:none;
border-radius:0px;
padding:0px 20px 0px 14px;
line-height:37px;
height:37px;
position:relative;
border:none;
position:relative;
min-width:120px;
zoom:1;
}
.tabs-right .nav-tabs > li > a:hover {
border:none;
background-color:#eee;
color:#333;
}
.tabs-right > .nav-tabs > li:first-child, .tabs-right .nav-tabs > li.active:first-child {
border-top:none;
}
.tabs-right .nav-tabs > .active {
border:none;
border-top-width:1px;
border-top-style:solid;
border-color:#E1E1E1;
}
.tabs-right .nav-tabs > .active > a, .tabs-right .nav-tabs > .active > a:hover {
border:none;
padding:0px 20px 0px 31px;
color:#fff;
margin-left:-16px;
background-image:url(images/tab-right-active-bg.png);
background-position:left top;
background-repeat:no-repeat;
}
.tabs-right .tab-content {
padding-right:35px;
}
.tabs-left:after, .tabs-right:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.tabs-left, .tabs-right {
display:inline-block;
}
.tabs-left, .tabs-right {
display:block;
}
/* ********** CarouFredSel ************** */
#dnn_wrapper .Theme_25_Default .prev, #dnn_wrapper .Theme_25_Default .next, #dnn_wrapper .Theme_21_Default .prev, #dnn_wrapper .Theme_21_Default .next {
width:22px;
height:22px;
padding:0px!important;
line-height:22px;
color:#FFF;
border-radius:0px!important;
top:-33px;
background:url(images/white_arrow.png) no-repeat 0px 5px #9a9c9e;
}
#dnn_wrapper .Theme_25_Default .prev, #dnn_wrapper .Theme_21_Default .prev {
left:auto;
right:30px!important;
}
#dnn_wrapper .Theme_25_Default .next, #dnn_wrapper .Theme_21_Default .next {
background-position:-22px 5px;
}
#dnn_wrapper .Theme_25_Default .pager, #dnn_wrapper .Theme_21_Default .pager {
height:24px;
margin-bottom:10px;
}
#dnn_wrapper .Theme_25_Default .pager a, #dnn_wrapper .Theme_21_Default .pager a {
margin-top:12px;
}
#dnn_wrapper .Theme_25_Default .pager a, #dnn_wrapper .Theme_21_Default .pager a {
width:18px;
height:18px;
background: none;
background-color:#B5B5B5;
border-radius:18px;
}
#dnn_wrapper .Theme_25_Default li .carousel_title, #dnn_wrapper .Theme_21_Default li .carousel_title {
padding:9px 0px 4px 0px;
text-align:left;
margin:0;
border-bottom:none;
background:none;
font-size:18px;
letter-spacing:0px;
border-bottom:1px dotted #bbbbbb;
margin-bottom:4px;
font-size:18px;
}
/* ********** Lead ************** */
.Lead {
padding:24px 0px;
text-align:center;
background:#f7f7f7;
font-size:14px;
}
.Lead h1 {
color:#444444;
font-size:30px;
}
/*gray_line*/
.gray_line {
margin:10px 0px;
border-bottom:1px solid #e2e2e2;
clear:both;
overflow:hidden;
height:0px;
}
/* ********** ho We Are ? ************** */
.Content_About {
padding-bottom:29px;
}
.Content_About h3 {
color: #525252;
font-size: 20px;
font-weight: normal;
line-height: 24px;
padding:0px 0px 8px 0px;
margin-top:0px;
}
/* ********** Link More ************** */
a.link_more_square, a.link_more_square:link, a.link_more_square:active, a.link_more_square:visited {
color:#FFF;
padding:10px 22px;
font-size:13px;
text-decoration:none;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
a.link_more_square:Hover {
text-decoration:none;
background:#525252;
}
/* ********** accordion_2 ************** */
.accordion_2 .accordion-group {
border:none;
margin-bottom:4px;
}
.accordion_2 .accordion-heading {
background-color:#f8f8f8;
}
.accordion_2 .accordion-heading .accordion-toggle {
padding:10px 10px 10px 46px;
background-image:none;
position:relative;
background:url(images/plus_minus.png) no-repeat 12px -186px;
}
.accordion_2 .accordion-heading .accordion-toggle:hover {
background-position:12px 14px;
}
.accordion_2 .accordion-heading .accordion-toggle.actived {
background-position:12px -86px;
}
.accordion_2 .accordion-heading .accordion-toggle.actived:hover {
background-image:url(images/plus_minus.png);
background-position:12px -86px;
}
.accordion_2 .accordion-heading .accordion-toggle span {
position:absolute;
background:#000;
top:0px;
left:0px;
width:36px;
height:100%;
display:inline-block;
margin:0px;
filter:alpha(opacity=10);
opacity:0.1;
}
.accordion_2 .accordion-inner {
padding:9px 0px;
}
/*Contact Information*/
.Contact_list {
border-bottom:1px solid #e0e0e0;
padding:0px;
margin:20px 0px 0px;
}
.Contact_list li {
border-top:1px solid #e0e0e0;
padding:12px 0px;
margin:0px;
list-style:none;
}
.Contact_list li span {
width:29px;
height:29px;
background:url(images/Contact_icon.png) 0px 0px #CCC;
display:inline;
display:inline-block;
margin-right:20px;
vertical-align:middle;
}
.Contact_list li span.cl_p {
background-position:0px 0px;
}
.Contact_list li span.cl_e {
background-position:0px -29px;
}
.Contact_list li span.cl_f {
background-position:0px -58px;
}
/*Our Skills*/
.progress {
height:35px;
line-height:35px;
margin-bottom:10px;
}
.progress .bar {
text-align:left;
text-indent:12px;
}
/* MEET OUR TEAM */
.team_List_title {
font-size:20px;
color:#444444;
padding:20px 0px;
border-top:1px solid #e2e2e2;
margin-top:10px;
}
.team_List_title span {
font-size:14px;
margin-top:5px;
}
.team_content {
padding:0px 20px;
}
.team_list {
border:1px solid #e2e2e2;
}
.team_title {
padding:15px 0 10px 0;
}
.team_title span {
font-size:18px;
padding-right:10px;
}
.team_social {
text-align:center;
padding:16px 0px;
margin:15px 0 0;
border-top:1px solid #e2e2e2;
}
.team_social a {
width:34px;
height:31px;
margin:0px 3px;
background:#d5d5d5;
display:inline-block;
}
/*ServicesList*/
.Services_List {
clear:both;
overflow:hidden;
padding:0px;
margin:0px 0px 10px;
}
.Services_List [class*="span"] {
position:relative;
}
.Services_List .Services_Content {
padding:10px 0px 30px 65px;
}
.Services_List h3 {
color:#444444;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.Services_List .Services_icon {
width:50px;
height:50px;
display:block;
text-align:center;
line-height:50px;
position:absolute;
left:0px;
top:40px;
background:#4b4b4b;
border-radius:25px;
-moz-border-radius:25px;
-webkit-border-radius:25px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
/*Why Choose Us ?*/
.Choose_List {
margin:0px;
padding:0px;
}
.Choose_List li {
background:url(images/icon_yes.png) no-repeat 8px 8px;
padding-left:37px;
list-style:none;
border-bottom:1px solid #e2e2e2;
padding:7px 0px 6px 35px;
}
/*tabs-top-group*/
.tabs-top-group2 .accordion-group {
border-bottom:1px solid #e2e2e2;
}
.tabs-top-group2 .nav-tabs {
border:none;
background:#f7f7f7;
padding:5px 0px;
}
.tabs-top-group2 .nav-tabs a, .tabs-top-group2 .nav-tabs a:link, .tabs-top-group2 .nav-tabs a:active, .tabs-top-group2 .nav-tabs a:visited {
color:#444444;
font-size:16px;
border:none;
}
.tabs-top-group2 .nav-tabs a:hover {
border:none;
background:none;
}
.tabs-top-group2 .nav-tabs li.active a, .tabs-top-group2 .nav-tabs li.active a:hover {
border:none;
background:none;
}
.tabs-top-group2 .accordion-heading {
background:url(images/icon_question.png) no-repeat 8px 14px;
padding-left:25px;
}
.tabs-top-group2 .accordion-heading .accordion-toggle, .tabs-top-group2 .accordion-heading .accordion-toggle:hover {
background:url(images/plus_minus2.png) right 18px no-repeat;
transition: color ease-in 100ms;
-moz-transition: color ease-in 100ms; /* Firefox 4 */
-webkit-transition: color ease-in 100ms; /* Safari and Chrome */
-o-transition: color ease-in 100ms; /* Opera */
-ms-transition: color ease-in 100ms; /* IE9? */
}
.tabs-top-group2 .accordion-heading .actived, .tabs-top-group2 .accordion-heading .actived:hover {
background:url(images/plus_minus2.png) right -72px no-repeat;
color:#444444 !important;
}
.tabs-top-group2 .accordion-inner {
padding:0px 0px 20px 40px;
}
/*We've Got Answers*/
.Answers_List {
padding:0px;
margin:0px;
}
.Answers_List li {
list-style:none;
padding-bottom:25px;
margin-bottom:25px;
border-bottom:1px solid #e2e2e2;
}
.Answers_List li.last-item {
padding-bottom:15px;
margin-bottom:0px;
border-bottom:none;
}
.Answers_List span.Answers_icon {
width:54px;
height:47px;
line-height:47px;
color:#FFF;
text-align:center;
display:inline;
display:inline-block;
float:left;
font-size:40px;
margin:3px 15px 0px 0px;
}
/*Submit A Question */
.submit_ticket_2 {
background:#f7f7f7;
}
.submit_ticket_2 h2 {
color:#444444;
}
.submit_ticket_2 .submit_text {
color:#444444;
font-size:14px;
}
.submit_ticket_2 .ticket_bg a {
white-space:nowrap;
}
/*******price*******/
.price-table:after {
clear:both;
content:".";
height:0px;
font-size:0px;
visibility:hidden;
display:block;
}
.price-table {
display:inline-block;
}
.price-table {
display:block;
}
.price-table {
padding:28px 0px 28px 0px;
}
.price-table .col {
float:left;
text-align:center;
margin-bottom:10px;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table.col2 .col {
width:50%;
}
.price-table.col3 .col {
width:33.3333%;
}
.price-table.col4 .col {
width:25%;
}
.price-table.col5 .col {
width:20%;
}
*+html .price-table.col2 .col {
width:49.9%;
}
*+html .price-table.col3 .col {
width:33.33%;
}
*+html .price-table.col4 .col {
width:24.9%;
}
*+html .price-table.col5 .col {
width:19.9%;
}
.price-table .col:hover {
box-shadow:0 0 13px rgba(0, 0, 0, 0.15);
}
.price-table .col.best_value {
box-shadow:0 0 13px rgba(0, 0, 0, 0.15);
margin-top:-20px;
}
.price-table .col.best_value .price_title {
padding-top:20px;
padding-bottom:16px;
}
.price-table .col.best_value .price_holder {
padding-bottom:22px;
}
.price_title {
background:#707070;
color:#fff;
padding-top:15px;
padding-bottom:11px;
padding-left:10px;
padding-right:10px;
font-size:24px;
position:relative;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table .price_title h2 {
color:#fff;
margin:0px;
}
.price-table .col:hover .price_title {
}
.price-table .col:nth-of-type(2n+1) .price_title {
background:#4b4b4b;
}
.price-table .col:first-child .price_holder {
margin-left:0px;
}
.price-table .price_holder {
border:1px solid #E4E4E4;
margin:0 0 0 -1px;
min-height:300px;
padding-bottom:12px;
}
.price-table .col:hover .price_holder {
background:#fafafa;
}
.price-table .price_box {
color:#444444;
padding:15px 0px 20px 0px;
background:#f5f5f5;
}
.price-table .sup {
font-size:28px;
line-height:34px;
vertical-align:top;
}
.price-table .price {
font-size:48px;
line-height:50px;
}
.price-table .price_holder ul {
margin:0px 0px 13px 0px;
padding:0px;
border-bottom:1px solid #F0F0F0;
}
.price-table .price_holder ul li {
list-style:none;
border-top:1px solid #F0F0F0;
padding:12px 0;
}
.price-table .btn {
border:none;
background:none;
color:#FFF !important;
text-shadow:none;
border-radius:0px;
-moz-border-radius:0px;
-webkit-border-radius:0px;
padding:5px 20px;
transition: all ease-in 200ms;
-moz-transition: all ease-in 200ms; /* Firefox 4 */
-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
-o-transition: all ease-in 200ms; /* Opera */
-ms-transition: all ease-in 200ms; /* IE9? */
}
.price-table .btn:hover {
background:#525252;
}
/*******Pricing Option *******/
.price_List .price_content {
padding-left:100px;
position:relative;
}
.price_List .sup {
position:absolute;
top:20px;
left:0px;
font-size:25px;
color:#959595;
}
.price_List .price {
position:absolute;
top:5px;
left:15px;
font-size:50px;
color:#444444;
}
/*Sign Up */
.submit_ticket_3 {
background:#f7f7f7;
}
.submit_ticket_3 h3 {
color:#444444;
}
.submit_ticket_3 .submit_text {
color:#444444;
font-size:14px;
margin-top:10px;
}
.submit_ticket_3 .ticket_bg {
padding:50px 0px 0px;
}
.submit_ticket_3 .ticket_bg a {
background-image:url(images/ticket_bg.png);
background-position:25px center;
background-repeat:no-repeat;
font-size:20px;
padding:9px 37px 9px 68px;
white-space:nowrap;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.submit_ticket_3 .ticket_bg a:hover{
background-color:#525252;
}
/*roll_menu */
.js-clingify-wrapper {
width: 100%;
top:-50px;
transition: top ease-in 200ms;
-moz-transition: top ease-in 200ms; /* Firefox 4 */
-webkit-transition: top ease-in 200ms; /* Safari and Chrome */
-o-transition: top ease-in 200ms; /* Opera */
-ms-transition: top ease-in 200ms; /* IE9? */
}
.js-clingify-locked {
left: 0;
position:fixed;
top: 0;
z-index: 1000;
background:#4b4b4b;
}
.js-clingify-locked {
height:40px !important; }
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #top_menu > .gomenu > ul > li > a {
line-height:40px;
padding-top:0px;
padding-bottom:0px;
}
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #Mega_menu > .gomenu > ul > li > a {
line-height:40px;
padding-top:0px;
padding-bottom:0px;
}
.js-clingify-locked > #roll_nav > .dnn_layout > .hidden-phone > #Mega_menu > .gomenu > ul > li > div{
top:40px;
}
.js-clingify-locked #roll_nav #top_menu ul img,
.js-clingify-locked #roll_nav #Mega_menu ul img{
vertical-align:middle;
}
.js-clingify-locked #roll_nav .search_icon {
margin-top:10px;
}
.js-clingify-locked #roll_nav .search_bg{
top:25px;
}
/*Error Page*/
.ErrorPage_font{
text-align:center;
font-size:130px;
color:#dadada;
font-weight:bold;
}
/*gmap*/
#gmap img {
max-width:none;
}
#gmap {
width:100%;
height:342px ;
}
/*Contact Form*/
.Theme_Responsive_Default .form_label {
font-size:14px;
}
.Theme_Responsive_Default .form_input { position:relative ; padding-right:40px !important;}
.Theme_Responsive_Default .form_input [type*="text"],
.Theme_Responsive_Default .form_input textarea {
padding:10px 8px !important;
width:100% !important;
-moz-box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Firefox3.6+ */
-webkit-box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Chrome5+, Safari5+ */
box-shadow:0px 3px 3px rgba(202,202,202,0.5) inset; /* For Latest Opera */
}
.Theme_Responsive_Default .form_required{
position:absolute;
right:0px;
top:15px;
}
.Theme_Responsive_Default .form_submit input{
background:#39F ;
padding:8px 20px !important;
color:#FFF !important;
border:none !important;
text-shadow:none;
border-radius:0px ;
-moz-border-radius:0px;
-webkit-border-radius:0px;
transition: background-color ease-in 200ms;
-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
-o-transition: background-color ease-in 200ms; /* Opera */
-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.Theme_Responsive_Default .form_submit input:hover{
background-color:#121112;
}
/*Contact_Info*/
.ContactInfo_list{
margin:0px;
padding:0px;
}
.ContactInfo_list li{
border-bottom:1px solid #e2e2e2;
padding:10px 0px 10px 30px;
margin:0px;
list-style:none;
position:relative;
}
.ContactInfo_list li span {
width:20px;
height:20px;
display:block;
position:absolute;
top:9px;
left:0px;
background:url(images/ContactList_icon.png) 0px 0px no-repeat ;
}
.ContactInfo_list .I_A{ background-position:0px 0px;}
.ContactInfo_list .I_P{ background-position:0px -43px;}
.ContactInfo_list .I_F{ background-position:0px -90px;}
.ContactInfo_list .I_E{ background-position:0px -134px;}
.ContactInfo_list .I_S{ background-position:0px -180px;}
.ContactInfo_list .I_M{ background-position:0px -228px;}
.ContactInfo_list .I_W{ background-position:0px -274px;}
/*CarouFredSel*/
.Theme_21_LinkAndZoom_Normal .next,
.Theme_21_LinkAndZoom_Normal .prev{
top:-40px !important;
}
.Theme_21_LinkAndZoom_Default { margin-top:-20px !important;}
.Theme_21_LinkAndZoom_Default .next,
.Theme_21_LinkAndZoom_Default .prev{
top:-25px !important;
}
/*social-icons*/
.social-icons {
margin:0px -3px 0px;
padding:0px;}
.social-icons a {
background-color: #d6d6d6;
background-image: url("images/social-icons-sprite.png");
background-repeat: no-repeat;
border-radius: 3px 3px 3px 3px;
display:inline-block;
height: 30px;
position: relative;
text-indent: -9999px;
transition: all 0.2s ease-out 0s;
width:30px;
margin:3px;
}
.social-icons a:hover {
box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.social-icons a.social-twitter {
}
.social-icons a.social-dribbble {
background-position: -30px 0px;
}
.social-icons a.social-facebook {
background-position: -60px 0px;
}
.social-icons a.social-envato {
background-position: -90px 0px;
}
.social-icons a.social-flickr {
background-position: -120px 0px;
}
.social-icons a.social-forrst {
background-position: -150px 0px;
}
.social-icons a.social-gplus {
background-position: -180px 0px;
}
.social-icons a.social-gplus2 {
background-position: -210px 0px;
}
.social-icons a.social-icloud {
background-position: -240px 0px;
}
.social-icons a.social-lastfm {
background-position: -270px 0px;
}
.social-icons a.social-linkedin {
background-position: -300px 0px;
}
.social-icons a.social-myspace {
background-position: -330px 0px;
}
.social-icons a.social-paypa {
background-position: 0px -30px;
}
.social-icons a.social-piacasa {
background-position: -30px -30px;
}
.social-icons a.social-pinterest {
background-position: -60px -30px;
}
.social-icons a.social-reedit {
background-position: -90px -30px;
}
.social-icons a.social-rss {
background-position: -120px -30px;
}
.social-icons a.social-skype {
background-position: -150px -30px;
}
.social-icons a.social-stumbleupon {
background-position: -180px -30px;
}
.social-icons a.social-tumblr {
background-position: -210px -30px;
}
.social-icons a.social-vimeo {
background-position: -240px -30px;
}
.social-icons a.social-wordpress {
background-position: -270px -30px;
}
.social-icons a.social-yahoo {
background-position: -300px -30px;
}
.social-icons a.social-youtube {
background-position: -330px -30px;
}
.social-icons a.social-blogger {
background-position: 0px -60px;
}
.social-icons a.social-deviantart {
background-position: -30px -60px;
}
.social-icons a.social-digg {
background-position: -60px -60px;
}
.social-icons a.social-foursquare {
background-position: -90px -60px;
}
.social-icons a.social-friendfeed {
background-position: -120px -60px;
}
.social-icons a.social-mail {
background-position: -150px -60px;
}
.social-icons a.social-html5 {
background-position: -180px -60px;
}
.social-icons a.social-technorati {
background-position: -210px -60px;
}
.social-icons a.social-soundcloud {
background-position: -240px -60px;
}
.social-icons a.social-quora {
background-position: -270px -60px;
}
.social-icons a.social-bebo {
background-position: -300px -60px;
}
.social-icons a.social-aim {
background-position: -330px -60px;
}
.social-icons a.social-gosquared {
background-position: 0px -90px;
}
.social-icons a.social-dropbox {
background-position: -30px -90px;
}
.social-icons a.social-github {
background-position: -60px -90px;
}
.social-icons a.social-spotify {
background-position: -90px -90px;
}
.social-icons a.social-apple {
background-position: -120px -90px;
}
@media (min-width: 1200px) {
.dnn_layout {
width: 1170px;
}
#dnn_banner {
background:url(images/banner_shadow1.png) no-repeat 50% 100%;
padding:20px 30px 33px;
}
header {
padding:0px 30px;
}
nav {
margin: 0 30px;
}
#dnn_content {
padding: 10px 30px;
}
#dnn_bottom {
padding: 0 30px;
}
.submit_bg {
width:818px;
}
.ticket_bg {
width:210px;
padding:20px;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:276px;
}
#top_menu ul li a {
padding-left:35px;
padding-right:35px;
}
#Mega_menu ul li a {
padding-left:35px;
padding-right:35px;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:20px !important;
}
.tabs-left2 > .nav-tabs > li > a {
padding:5px 80px 5px 20px;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 80px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:30px 30px 0px 30px;
}
}
@media (min-width: 768px) and (max-width: 979px) {
.dnn_layout {
width: 737px;
}
#top_menu ul li a {
padding-left:10px;
padding-right:10px;
}
#Mega_menu ul li a {
padding-left:10px;
padding-right:10px;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:346px;
}
.submit_bg {
width:444px;
}
.ticket_bg {
width:171px;
padding:42px 20px;
}
#dnn_banner {
background:url(images/banner_shadow_ipad.png) no-repeat 50% 100%;
padding:20px 15px 20px;
}
nav {
margin:0px 15px;
}
header {
padding:0px 15px;
}
#dnn_bottom {
padding:0px 15px;
}
#dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next {
display:none!important;
}
.tabs-left2 > .nav-tabs > li > a {
padding:5px 20px 5px 20px;
}
/*******tabs-left2*******/
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
background:none;
padding:5px 20px 5px 20px;
margin:0px 1px 0px 0px;
}
.tabs-left2 .tab-content {
padding:15px 15px 0px 15px;
}
.ErrorPage_font{
font-size:100px;
}
/*gmap*/
#gmap {
height:300px ;
}
}
@media (min-width: 768px) {
#mobile_menu {
display:none!important;
}
}
@media (max-width: 767px) {
.dnn_layout {
width: auto;
}
.dnn_logo {
/*float:none;*/
margin:0px auto;
text-align:center;
padding:15px 10px;
}
.dnn_logo img {
max-width:100%;
}
.headr, #login_style, .social {
float:none;
}
.headr {
padding:0;
}
#login_style {
margin:0px auto;
text-align:center;
}
.social {
float:none;
margin:10px auto;
text-align:center;
}
#dnn_wrapper {
padding:10px;
}
#dnn_banner {
background:none;
padding:10px 10px 0px;
}
header, .mobile_nav, #dnn_content, #dnn_bottom {
padding-left:10px;
padding-right:10px;
}
#to_top {
float:none;
margin:10px auto 0;
}
.copyright_style {
text-align:center;
float:none;
}
.TopPane_A, .TopPane_B, .TopPane_C, .TopPane_D {
width:auto;
float:none;
}
.TopPane_A, .TopPane_B, .TopPane_C {
margin-right:0;
}
.BotPane_A, .BotPane_B, .BotPane_C, .BotPane_D {
padding-top:10px !important;
}
.submit_bg {
width:auto;
margin:0 0 2px 0;
}
.ticket_bg {
width:100%;
padding:20px 0;
}
#dnn_wrapper .ls-minimal-10478 .ls-nav-prev, #dnn_wrapper .ls-minimal-10478 .ls-nav-next {
display:none!important;
}
.tabs-left2 > .nav-tabs > li.active > a, .tabs-left2 > .nav-tabs > li.active > a:hover {
padding: 0 20px;
}
.tabs-left > .nav-tabs, .tabs-right > .nav-tabs {
float:none;
background:none;
}
.tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li {
margin:0px 0px -1px 0px;
border:1px solid #E1E1E1;
}
.tabs-left > .nav-tabs > .active, .tabs-right > .nav-tabs > .active {
margin:0px 0px -1px 0px;
border:1px solid #E1E1E1;
}
.tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a {
padding:0 20px 0 20px;
}
.tabs-left > .nav-tabs > li:first-child, .tabs-left .nav-tabs > li.active:first-child, .tabs-right > .nav-tabs > li:first-child, .tabs-right .nav-tabs > li.active:first-child {
border:1px solid #E1E1E1;
}
.tabs-left .nav-tabs > .active > a, .tabs-left .nav-tabs > .active > a:hover, .tabs-right .nav-tabs > .active > a, .tabs-right .nav-tabs > .active > a:hover {
border:none;
background-image:none;
padding:0 20px 0 20px;
margin-right:0px;
margin-left:0px;
color:#fff;
}
.tabs-left .tab-content, .tabs-right .tab-content {
padding:15px 15px;
border:1px solid #E1E1E1;
}
div.dnnLoginService, div.dnnRegistrationForm, .LoginPanel {
min-width:1px;
width:100%;
margin:0 auto;
}
div.dnnRegistrationForm .dnnForm {
float:none;
width:100%;
}
.dnnSocialRegistration {
float:none;
width:100%;
}
/*price*/
.price-table.col2 .col, .price-table.col3 .col, .price-table.col4 .col, .price-table.col5 .col {
width:50%;
}
.price-table .col.best_value {
margin-top:0px;
}
.price-table .col.best_value .price_title {
padding-top:15px;
padding-bottom:11px;
}
.price-table .col.best_value .price_holder {
padding-bottom:12px;
}
.price_content {
margin-bottom:20px;
}
.submit_ticket_3 .ticket_bg {
padding:0px 0px 10px;
}
.team_list {
text-align:center;
border:none;
}
/*search */
.search_bg2 .searchInputContainer {
display:block !important;
margin:0px !important;
height:28px;
}
.search_bg2 .searchInputContainer a.dnnSearchBoxClearText {
display:none;
}
.search_bg2 .searchSkinObjectPreview {
display:none;
}
.js-clingify-placeholder{
height:auto !important;
}
.js-clingify-locked{
background:none;
height:auto !important;
position:static;
}
.js-clingify-locked #mobile_menu > ul > li{
border-bottom:1px solid #FFFFFF;
margin-bottom:0px;}
.js-clingify-locked #mobile_menu {
margin-top:2px ;
}
.ErrorPage_font{
font-size:60px;
white-space:nowrap;
}
/*map*/
#gmap {
height:250px ;
}
}
@media (max-width: 400px) {
.price-table.col2 .col, .price-table.col3 .col, .price-table.col4 .col, .price-table.col5 .col {
width:100%;
float:none;
}
.ErrorPage_font{
font-size:45px;
white-space:nowrap;
}
/*map*/
#gmap {
height:200px ;
}
}
@media (max-width: 274px) {
#dnn_top {
padding-left:5px;
padding-right:5px;
}
#dnn_wrapper {
padding-left:5px;
padding-right:5px;
}
.ErrorPage_font{
font-size:30px;
white-space:nowrap;
}
/*map*/
#gmap {
height:150px ;
}
} /* ********** Color Style ************** */
/*video*/
.video-box{
margin-bottom:10px;
}
/*Testimonial*/
#dnn_wrapper .Theme_25_Normal .slide_content{
padding-bottom:25px;
}
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a.flex-active,
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a{
height:14px;
width:14px;
}
#dnn_wrapper .Theme_25_Normal .flex-control-paging li a{
background-color:#999999;
opacity:1;
filter:alpha(opacity=100);
} | 0.45423 | 0.091342 |
.CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: monospace;
font-size: 100%;
line-height: 132%;
}
.CodeMirror-merge {
position: relative;
border: 1px solid #ddd;
white-space: pre;
}
.CodeMirror-glasspane {
width: 100%;
height: 100%;
position: absolute;
z-index: 100;
pointer-events: none;
top: 0;
left: 0;
margin: 0;
padding: 0;
}
.CodeMirror-merge, .CodeMirror-merge .CodeMirror {
height: 800px;
}
.CodeMirror-merge-2pane .CodeMirror-merge-pane { width: 49%; }
.CodeMirror-merge-2pane .CodeMirror-merge-gap { width: 2%; }
.CodeMirror-merge-3pane .CodeMirror-merge-pane { width: 32%; }
.CodeMirror-merge-3pane .CodeMirror-merge-gap { width: 2%; }
.CodeMirror-merge-pane {
display: inline-block;
white-space: normal;
vertical-align: top;
}
.CodeMirror-merge-pane-rightmost {
position: absolute;
right: 0px;
z-index: 1;
}
.CodeMirror-merge-gap {
z-index: 2;
display: inline-block;
height: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
position: relative;
background: #f8f8f8;
}
.CodeMirror-merge-scrolllock-wrap {
position: absolute;
bottom: 0; left: 50%;
}
.CodeMirror-merge-scrolllock {
position: relative;
left: -50%;
cursor: pointer;
color: #555;
line-height: 1;
}
.CodeMirror-merge-scrolllock:after {
content: "\21db\00a0\00a0\21da";
}
.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after {
content: "\21db\21da";
}
.CodeMirror-merge-copybuttons-left, .CodeMirror-merge-copybuttons-right {
position: absolute;
left: 0; top: 0;
right: 0; bottom: 0;
line-height: 1;
}
.CodeMirror-merge-copy {
position: absolute;
cursor: pointer;
color: #44c;
z-index: 3;
}
.CodeMirror-merge-copy-reverse {
position: absolute;
cursor: pointer;
color: #44c;
}
.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy { left: 2px; }
.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy { right: 2px; }
.CodeMirror-merge-r-inserted, .CodeMirror-merge-l-inserted {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);
background-position: bottom left;
background-repeat: repeat-x;
}
.CodeMirror-merge-r-deleted, .CodeMirror-merge-l-deleted {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);
background-position: bottom left;
background-repeat: repeat-x;
}
.CodeMirror-merge-r-chunk { background: #ffffe0; }
.CodeMirror-merge-r-chunk-start { border-top: 1px solid #ee8; }
.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #ee8; }
.CodeMirror-merge-r-connect { fill: #ffffe0; stroke: #ee8; stroke-width: 1px; }
.CodeMirror-merge-l-chunk { background: #eef; }
.CodeMirror-merge-l-chunk-start { border-top: 1px solid #88e; }
.CodeMirror-merge-l-chunk-end { border-bottom: 1px solid #88e; }
.CodeMirror-merge-l-connect { fill: #eef; stroke: #88e; stroke-width: 1px; }
.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk { background: #dfd; }
.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start { border-top: 1px solid #4e4; }
.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #4e4; }
.CodeMirror-merge-collapsed-widget:before {
content: "(...)";
}
.CodeMirror-merge-collapsed-widget {
cursor: pointer;
color: #88b;
background: #eef;
border: 1px solid #ddf;
font-size: 90%;
padding: 0 3px;
border-radius: 4px;
}
.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt { display: none; }
.CodeMirror-foldmarker {
color: blue;
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
font-family: arial;
line-height: .3;
cursor: pointer;
}
.CodeMirror-foldgutter {
width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
content: "\25B8";
}
.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
position: absolute;
background: #aaa;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #999;
border-radius: 4px;
}
.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
position: absolute;
z-index: 6;
background: #eee;
}
.CodeMirror-simplescroll-horizontal {
bottom: 0; left: 0;
height: 8px;
}
.CodeMirror-simplescroll-horizontal div {
bottom: 0;
height: 100%;
}
.CodeMirror-simplescroll-vertical {
right: 0; top: 0;
width: 8px;
}
.CodeMirror-simplescroll-vertical div {
right: 0;
width: 100%;
}
/*******************************/
.DTS-tooltip {
stroke: #cbcbcb;
fill: #f4f4f4;
}
.DTS-deleted-left {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
border-left: solid 1px #98c391;
}
.DTS-inserted-left {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
border-left: solid 1px #92add9;
}
.DTS-relabeled-left {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
border-left: solid 1px #dfa089;
}
.DTS-moved-left {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
border-left: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled-left {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
border-left: solid 1px #dfbfaf;
}
.DTS-deleted-right {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
border-right: solid 1px #98c391;
}
.DTS-inserted-right {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
border-right: solid 1px #92add9;
}
.DTS-relabeled-right {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
border-right: solid 1px #dfa089;
}
.DTS-moved-right {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
border-right: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled-right {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
border-right: solid 1px #dfbfaf;
}
.DTS-deleted {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
}
.DTS-inserted {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
}
.DTS-relabeled {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
}
.DTS-moved {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
}
.DTS-selected {
background: rgba(248, 214, 89, 1.0);
}
/*
.DTS-deleted:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-inserted:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-relabeled:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-moved:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-moved-and-relabeled:active {
background: rgba(248, 214, 89, 0.55);
}
*/
.DTS-ignored {
color: #808080;
font-style: italic;
}
.DTS-missed {
color: #cf6795;
font-style: italic;
}
.DTS-frame {
stroke: gray;
stroke-width: 1;
fill: none;
}
.DTS-frame-essential {
stroke: #f3cf11; /*#6463ff;*/
stroke-width: 1;
fill-opacity: 0.15;
fill: #f3cf11; /*#6463ff;*/
}
.DTS-connector-corr {
stroke: #f3cf11; /*#6463ff;*/
stroke-width: 1;
fill: none;
}
.DTS-connector-move {
stroke: #d6cfbf;
stroke-width: 1;
fill: none;
}
.DTS-connector-relabel {
stroke: #cf6795;
stroke-width: 1;
fill: none;
}
.DTS-connector-movrel {
stroke: #e69fbf;
stroke-width: 1;
fill: none;
}
.DTS-connector-align {
stroke: #bbbbbb;
stroke-width: 1;
stroke-dasharray: 5 8; /* slows down Firefox */
fill: none;
}
.DTS-change-name {
/* font-weight: bold; */
font-style: italic;
}
.DTS-variable {
/* font-weight: lighter; */
font-style: normal;
color: #000199;
font-size: 90%;
/* font-family: monospace; */
}
.DTS-scrollbar-marks {
background: orange;
border-top: 1px solid saddlebrown;
border-bottom: 1px solid saddlebrown;
-moz-box-sizing: border-box;
box-sizing: border-box;
opacity: .4;
} | diffviewer/css/diffviewer.css | .CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: monospace;
font-size: 100%;
line-height: 132%;
}
.CodeMirror-merge {
position: relative;
border: 1px solid #ddd;
white-space: pre;
}
.CodeMirror-glasspane {
width: 100%;
height: 100%;
position: absolute;
z-index: 100;
pointer-events: none;
top: 0;
left: 0;
margin: 0;
padding: 0;
}
.CodeMirror-merge, .CodeMirror-merge .CodeMirror {
height: 800px;
}
.CodeMirror-merge-2pane .CodeMirror-merge-pane { width: 49%; }
.CodeMirror-merge-2pane .CodeMirror-merge-gap { width: 2%; }
.CodeMirror-merge-3pane .CodeMirror-merge-pane { width: 32%; }
.CodeMirror-merge-3pane .CodeMirror-merge-gap { width: 2%; }
.CodeMirror-merge-pane {
display: inline-block;
white-space: normal;
vertical-align: top;
}
.CodeMirror-merge-pane-rightmost {
position: absolute;
right: 0px;
z-index: 1;
}
.CodeMirror-merge-gap {
z-index: 2;
display: inline-block;
height: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
position: relative;
background: #f8f8f8;
}
.CodeMirror-merge-scrolllock-wrap {
position: absolute;
bottom: 0; left: 50%;
}
.CodeMirror-merge-scrolllock {
position: relative;
left: -50%;
cursor: pointer;
color: #555;
line-height: 1;
}
.CodeMirror-merge-scrolllock:after {
content: "\21db\00a0\00a0\21da";
}
.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after {
content: "\21db\21da";
}
.CodeMirror-merge-copybuttons-left, .CodeMirror-merge-copybuttons-right {
position: absolute;
left: 0; top: 0;
right: 0; bottom: 0;
line-height: 1;
}
.CodeMirror-merge-copy {
position: absolute;
cursor: pointer;
color: #44c;
z-index: 3;
}
.CodeMirror-merge-copy-reverse {
position: absolute;
cursor: pointer;
color: #44c;
}
.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy { left: 2px; }
.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy { right: 2px; }
.CodeMirror-merge-r-inserted, .CodeMirror-merge-l-inserted {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);
background-position: bottom left;
background-repeat: repeat-x;
}
.CodeMirror-merge-r-deleted, .CodeMirror-merge-l-deleted {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);
background-position: bottom left;
background-repeat: repeat-x;
}
.CodeMirror-merge-r-chunk { background: #ffffe0; }
.CodeMirror-merge-r-chunk-start { border-top: 1px solid #ee8; }
.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #ee8; }
.CodeMirror-merge-r-connect { fill: #ffffe0; stroke: #ee8; stroke-width: 1px; }
.CodeMirror-merge-l-chunk { background: #eef; }
.CodeMirror-merge-l-chunk-start { border-top: 1px solid #88e; }
.CodeMirror-merge-l-chunk-end { border-bottom: 1px solid #88e; }
.CodeMirror-merge-l-connect { fill: #eef; stroke: #88e; stroke-width: 1px; }
.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk { background: #dfd; }
.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start { border-top: 1px solid #4e4; }
.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #4e4; }
.CodeMirror-merge-collapsed-widget:before {
content: "(...)";
}
.CodeMirror-merge-collapsed-widget {
cursor: pointer;
color: #88b;
background: #eef;
border: 1px solid #ddf;
font-size: 90%;
padding: 0 3px;
border-radius: 4px;
}
.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt { display: none; }
.CodeMirror-foldmarker {
color: blue;
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
font-family: arial;
line-height: .3;
cursor: pointer;
}
.CodeMirror-foldgutter {
width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
content: "\25B8";
}
.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
position: absolute;
background: #aaa;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #999;
border-radius: 4px;
}
.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
position: absolute;
z-index: 6;
background: #eee;
}
.CodeMirror-simplescroll-horizontal {
bottom: 0; left: 0;
height: 8px;
}
.CodeMirror-simplescroll-horizontal div {
bottom: 0;
height: 100%;
}
.CodeMirror-simplescroll-vertical {
right: 0; top: 0;
width: 8px;
}
.CodeMirror-simplescroll-vertical div {
right: 0;
width: 100%;
}
/*******************************/
.DTS-tooltip {
stroke: #cbcbcb;
fill: #f4f4f4;
}
.DTS-deleted-left {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
border-left: solid 1px #98c391;
}
.DTS-inserted-left {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
border-left: solid 1px #92add9;
}
.DTS-relabeled-left {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
border-left: solid 1px #dfa089;
}
.DTS-moved-left {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
border-left: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled-left {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
border-left: solid 1px #dfbfaf;
}
.DTS-deleted-right {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
border-right: solid 1px #98c391;
}
.DTS-inserted-right {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
border-right: solid 1px #92add9;
}
.DTS-relabeled-right {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
border-right: solid 1px #dfa089;
}
.DTS-moved-right {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
border-right: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled-right {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
border-right: solid 1px #dfbfaf;
}
.DTS-deleted {
/*background: #B8E3B1;*/
background: rgba(184, 227, 177, 0.55);
border-top: solid 1px #98c391;
border-bottom: solid 1px #98c391;
}
.DTS-inserted {
/*background: #B2CDF9;*/
background: rgba(178, 205, 249, 0.55);
border-top: solid 1px #92add9;
border-bottom: solid 1px #92add9;
}
.DTS-relabeled {
/*background: #FFC0A9;*/
background: rgba(255, 192, 169, 0.55);
border-top: solid 1px #dfa089;
border-bottom: solid 1px #dfa089;
}
.DTS-moved {
/*background: #E6DFCF;*/
background: rgba(230, 223, 207, 0.55);
border-top: solid 1px #c6bfaf;
border-bottom: solid 1px #c6bfaf;
}
.DTS-moved-and-relabeled {
/*background: #FFDFCF;*/
/*background: rgba(255, 223, 207, 0.55);*/
background: repeating-linear-gradient(-45deg,
rgba(230, 223, 207, 0.55) 0,
rgba(230, 223, 207, 0.55) 4px,
rgba(235, 172, 149, 0.55) 4px,
rgba(235, 172, 149, 0.55) 8px);
border-top: solid 1px #dfbfaf;
border-bottom: solid 1px #dfbfaf;
}
.DTS-selected {
background: rgba(248, 214, 89, 1.0);
}
/*
.DTS-deleted:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-inserted:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-relabeled:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-moved:active {
background: rgba(248, 214, 89, 0.55);
}
.DTS-moved-and-relabeled:active {
background: rgba(248, 214, 89, 0.55);
}
*/
.DTS-ignored {
color: #808080;
font-style: italic;
}
.DTS-missed {
color: #cf6795;
font-style: italic;
}
.DTS-frame {
stroke: gray;
stroke-width: 1;
fill: none;
}
.DTS-frame-essential {
stroke: #f3cf11; /*#6463ff;*/
stroke-width: 1;
fill-opacity: 0.15;
fill: #f3cf11; /*#6463ff;*/
}
.DTS-connector-corr {
stroke: #f3cf11; /*#6463ff;*/
stroke-width: 1;
fill: none;
}
.DTS-connector-move {
stroke: #d6cfbf;
stroke-width: 1;
fill: none;
}
.DTS-connector-relabel {
stroke: #cf6795;
stroke-width: 1;
fill: none;
}
.DTS-connector-movrel {
stroke: #e69fbf;
stroke-width: 1;
fill: none;
}
.DTS-connector-align {
stroke: #bbbbbb;
stroke-width: 1;
stroke-dasharray: 5 8; /* slows down Firefox */
fill: none;
}
.DTS-change-name {
/* font-weight: bold; */
font-style: italic;
}
.DTS-variable {
/* font-weight: lighter; */
font-style: normal;
color: #000199;
font-size: 90%;
/* font-family: monospace; */
}
.DTS-scrollbar-marks {
background: orange;
border-top: 1px solid saddlebrown;
border-bottom: 1px solid saddlebrown;
-moz-box-sizing: border-box;
box-sizing: border-box;
opacity: .4;
} | 0.493897 | 0.128443 |
:root {
/*primary*/
--plighter: #ffd368;
--pmedium: #FCDD09;
/*--pmedium: #ffeead;*/
--pdarker: #cf9b18;
/*secondary*/
--slighter: #1cb897;
--smedium: #11ac8e;
--sdarker: #118a75;
/*tertiary (overrated word for grayish tone)*/
--tlighter: #e6e7e8; /*light gray*/
--tmedium: #8c8e90; /*dark gray*/
--tdarker: #333333; /*the stylish black*/
}
body {
font-family: 'Lato', sans-serif;
margin: 0 0 100px;
}
.homepage {
margin: 0 0 74px;
}
a {
color: var(--smedium);
}
a:hover {
color: var(--sdarker);
}
h2 {
padding: 10px;
}
html {
position: relative;
min-height: 100%;
}
footer {
font-family: 'Source Code Pro', monospace;
padding: 10px;
background-color: var(--tdarker);
color: white;
text-align: center;
font-size: 13px;
position: absolute;
overflow: hidden;
bottom: 0;
width: 100%;
}
#logo {
width: 85px;
height: 35px;
}
/* Navbar */
.navbar-default, .homepage {
font-family: 'Source Code Pro', monospace;
}
.homepage .navbar-default {
background-color: white;
background-image: none;
background-repeat: no-repeat;
}
.navbar-default {
background-color: black;
background-image: none;
background-repeat: no-repeat;
font-size:2.2vh;
padding: 10px;
}
.navbar-default .navbar-brand {
color: var(--smedium);
}
.navbar-default .navbar-brand:hover {
color: var(--sdarker);
}
.navbar-default .nav > li > a {
color:var(--pmedium);
font-weight:900;
}
.navbar-default .nav > li > a:hover {
color: var(--pdarker);
}
.navbar-default .nav > li.active > a {
color: var(--pdarker);
}
.navbar-default .nav > li.active > a:hover {
color: var(--pdarker);
}
/* Homepage */
.header {
background-color: var(--pmedium);
position: relative;
padding: 50px;
height: calc(100vh - 61px);
background-image: linear-gradient(135deg,
#FFF700
,#FD0E35)
}
.header-body {
position: absolute;
left: 50%;
top: 25%;
transform: translate(-50%, -50%);
}
.header-body h1 {
border-bottom: solid 2px black;
border-width: 3px;
padding: 4px 10px;
font-size: 3.5rem ;
}
.header-desc {
position: absolute;
left: 50%;
top: 65%;
transform: translate(-50%, -50%);
z-index: 201;
}
.home-btn-group {
position: absolute;
left: 50%;
top: 85%;
transform: translate(-50%, -50%);
z-index: 202;
}
.desc-text {
color: white;
font-size: 1.2vw;
overflow: hidden; /* Ensures the content is not revealed until the animation */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 5s steps(40, end),
blink-caret 50s step-end infinite;
animation-iteration-count: infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
}
#console-bg {
position: absolute;
width: 50%;
height: 50%;
bottom: 0;
left: 50%;
background-color: black;
z-index: 199;
transform: translate(-50%, 0%);
}
#console-bar {
position: absolute;
width: 50%;
height: 9%;
left: 50%;
bottom: 50%;
background-image: url("/images/consoleBG.png");
background-repeat: no-repeat;
background-size: cover;
z-index: 300;
transform: translate(-50%, 0%);
}
.homepage-block {
padding: 50px 0;
text-align: center;
}
.btn-lang-desc {
background-color: var(--tmedium);
}
.lang-desc {
width: 125px;
padding: 0 5px;
text-align: center;
}
.lang-hide {
margin: 10px;
}
/* General */
.gray {
background-color: var(--tlighter);
}
.badge-default {
background-color: var(--smedium);
color: white;
}
.badge-default:hover {
color: white;
}
.btn {
border-style: solid;
border-radius: 0;
padding: 10px 15px;
}
.btn-primary {
background-color: var(--pmedium);
border-color: var(--pmedium);
color: white;
}
.btn-primary:hover {
background-color: var(--pdarker);
border-color: var(--pmedium);
}
.btn-secondary {
background-color: var(--smedium);
border-color: var(--smedium);
color: white;
}
.btn-secondary:hover {
background-color: var(--sdarker);
border-color: var(--smedium);
}
.btn-tweet {
background-color: #08a0e9;
color: white !important;
}
.tab {
width: 100%;
margin-bottom: 3px;
}
.side-box {
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: #DFE2E6;
background-color: white;
}
.code-block {
background-color: #f1f1f1;
margin: 5px 0;
}
.api-info {
font-weight: 600;
font-size: 18px;
letter-spacing: 1px;
color: var(--smedium);
}
.api-desc {
margin-left: 20px;
}
/* Problem */
.problem-name {
font-size: 22px;
padding: 10px 0;
font-weight: 600;
}
.problem-box {
margin: 15px 0;
background-color: #f9f9f9;
padding: 20px 5px;
padding-left: 30px;
border-left-style: solid;
border-left-color: gray;
border-left-width: 5px;
position: relative;
}
.problem-box:hover {
background-color: #f2f2f2;
}
.solved-count {
margin-top: 5px;
font-size: 14px;
}
.solve-btn {
position: absolute;
right: 20px;
bottom: 20px;
color: white;
}
.ignore-btn {
position: absolute;
right: 20px;
top: 10px;
color: gray;
cursor: pointer;
}
.ignore-btn:hover {
color: black;
}
.example {
padding: 7px;
}
.example pre {
padding: 0;
margin: 0;
}
.example .title {
background-color: #e0e0e0;
width: 100%;
font-weight: 600;
}
.example .data {
background-color: white;
width: 100%;
padding: 0;
}
#submit-lang, #select-file {
width: 100%;
margin: 5px 0;
}
/* Admin */
#live-result {
width: 100%;
height: 500px;
background-color:#333;
color: white;
font-family: 'Source Code Pro', monospace;
}
#test-input, #test-output {
width: 100%;
}
/*
@media only screen and (max-width: 375px) {
.solve-btn {
position: static;
}
}
*/
@media only screen and (max-width: 865px) {
#console-bg {
width: 80%;
}
#console-bar {
width: 80%;
}
.header-body h1 {
font-size: 6vw;
}
.desc-text {
font-size: 2vw;
}
.homepage .btn {
width: 100%;
margin: 5px;
}
}
@media only screen and (max-width: 670px) {
#console-bg {
width: 100%;
}
#console-bar {
width: 100%;
}
.desc-text {
font-size: 2.5vw;
}
.header-desc {
width: 80%;
}
.homepage .btn {
width: 100%;
margin: 5px;
}
}
/*
.search {
width: 100%;
position: relative;
display: flex;
}
<footer style="margin-top: 30%;margin-left:45%;font-size: 1.2rem;color: white;position:fixed;">
<p>© 2019 Coder'sHub</p>
</footer>
.searchTerm {
width: 100%;
border: 3px solid #00B4CC;
border-right: none;
padding: 5px;
height: 20px;
border-radius: 5px 0 0 5px;
outline: none;
color: #9DBFAF;
}
.searchTerm:focus{
color: #00B4CC;
}
.searchButton {
width: 40px;
height: 36px;
border: 1px solid #00B4CC;
background: #00B4CC;
text-align: center;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 20px;
} <footer style="margin-top: 30%;margin-left:45%;font-size: 1.2rem;color: white;position:fixed;">
<p>© 2019 Coder'sHub</p>
</footer>
Resize the wrap to see the search bar change!
.wrap{
width: 30%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
*/ | public/css/style.css |
:root {
/*primary*/
--plighter: #ffd368;
--pmedium: #FCDD09;
/*--pmedium: #ffeead;*/
--pdarker: #cf9b18;
/*secondary*/
--slighter: #1cb897;
--smedium: #11ac8e;
--sdarker: #118a75;
/*tertiary (overrated word for grayish tone)*/
--tlighter: #e6e7e8; /*light gray*/
--tmedium: #8c8e90; /*dark gray*/
--tdarker: #333333; /*the stylish black*/
}
body {
font-family: 'Lato', sans-serif;
margin: 0 0 100px;
}
.homepage {
margin: 0 0 74px;
}
a {
color: var(--smedium);
}
a:hover {
color: var(--sdarker);
}
h2 {
padding: 10px;
}
html {
position: relative;
min-height: 100%;
}
footer {
font-family: 'Source Code Pro', monospace;
padding: 10px;
background-color: var(--tdarker);
color: white;
text-align: center;
font-size: 13px;
position: absolute;
overflow: hidden;
bottom: 0;
width: 100%;
}
#logo {
width: 85px;
height: 35px;
}
/* Navbar */
.navbar-default, .homepage {
font-family: 'Source Code Pro', monospace;
}
.homepage .navbar-default {
background-color: white;
background-image: none;
background-repeat: no-repeat;
}
.navbar-default {
background-color: black;
background-image: none;
background-repeat: no-repeat;
font-size:2.2vh;
padding: 10px;
}
.navbar-default .navbar-brand {
color: var(--smedium);
}
.navbar-default .navbar-brand:hover {
color: var(--sdarker);
}
.navbar-default .nav > li > a {
color:var(--pmedium);
font-weight:900;
}
.navbar-default .nav > li > a:hover {
color: var(--pdarker);
}
.navbar-default .nav > li.active > a {
color: var(--pdarker);
}
.navbar-default .nav > li.active > a:hover {
color: var(--pdarker);
}
/* Homepage */
.header {
background-color: var(--pmedium);
position: relative;
padding: 50px;
height: calc(100vh - 61px);
background-image: linear-gradient(135deg,
#FFF700
,#FD0E35)
}
.header-body {
position: absolute;
left: 50%;
top: 25%;
transform: translate(-50%, -50%);
}
.header-body h1 {
border-bottom: solid 2px black;
border-width: 3px;
padding: 4px 10px;
font-size: 3.5rem ;
}
.header-desc {
position: absolute;
left: 50%;
top: 65%;
transform: translate(-50%, -50%);
z-index: 201;
}
.home-btn-group {
position: absolute;
left: 50%;
top: 85%;
transform: translate(-50%, -50%);
z-index: 202;
}
.desc-text {
color: white;
font-size: 1.2vw;
overflow: hidden; /* Ensures the content is not revealed until the animation */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 5s steps(40, end),
blink-caret 50s step-end infinite;
animation-iteration-count: infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
}
#console-bg {
position: absolute;
width: 50%;
height: 50%;
bottom: 0;
left: 50%;
background-color: black;
z-index: 199;
transform: translate(-50%, 0%);
}
#console-bar {
position: absolute;
width: 50%;
height: 9%;
left: 50%;
bottom: 50%;
background-image: url("/images/consoleBG.png");
background-repeat: no-repeat;
background-size: cover;
z-index: 300;
transform: translate(-50%, 0%);
}
.homepage-block {
padding: 50px 0;
text-align: center;
}
.btn-lang-desc {
background-color: var(--tmedium);
}
.lang-desc {
width: 125px;
padding: 0 5px;
text-align: center;
}
.lang-hide {
margin: 10px;
}
/* General */
.gray {
background-color: var(--tlighter);
}
.badge-default {
background-color: var(--smedium);
color: white;
}
.badge-default:hover {
color: white;
}
.btn {
border-style: solid;
border-radius: 0;
padding: 10px 15px;
}
.btn-primary {
background-color: var(--pmedium);
border-color: var(--pmedium);
color: white;
}
.btn-primary:hover {
background-color: var(--pdarker);
border-color: var(--pmedium);
}
.btn-secondary {
background-color: var(--smedium);
border-color: var(--smedium);
color: white;
}
.btn-secondary:hover {
background-color: var(--sdarker);
border-color: var(--smedium);
}
.btn-tweet {
background-color: #08a0e9;
color: white !important;
}
.tab {
width: 100%;
margin-bottom: 3px;
}
.side-box {
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: #DFE2E6;
background-color: white;
}
.code-block {
background-color: #f1f1f1;
margin: 5px 0;
}
.api-info {
font-weight: 600;
font-size: 18px;
letter-spacing: 1px;
color: var(--smedium);
}
.api-desc {
margin-left: 20px;
}
/* Problem */
.problem-name {
font-size: 22px;
padding: 10px 0;
font-weight: 600;
}
.problem-box {
margin: 15px 0;
background-color: #f9f9f9;
padding: 20px 5px;
padding-left: 30px;
border-left-style: solid;
border-left-color: gray;
border-left-width: 5px;
position: relative;
}
.problem-box:hover {
background-color: #f2f2f2;
}
.solved-count {
margin-top: 5px;
font-size: 14px;
}
.solve-btn {
position: absolute;
right: 20px;
bottom: 20px;
color: white;
}
.ignore-btn {
position: absolute;
right: 20px;
top: 10px;
color: gray;
cursor: pointer;
}
.ignore-btn:hover {
color: black;
}
.example {
padding: 7px;
}
.example pre {
padding: 0;
margin: 0;
}
.example .title {
background-color: #e0e0e0;
width: 100%;
font-weight: 600;
}
.example .data {
background-color: white;
width: 100%;
padding: 0;
}
#submit-lang, #select-file {
width: 100%;
margin: 5px 0;
}
/* Admin */
#live-result {
width: 100%;
height: 500px;
background-color:#333;
color: white;
font-family: 'Source Code Pro', monospace;
}
#test-input, #test-output {
width: 100%;
}
/*
@media only screen and (max-width: 375px) {
.solve-btn {
position: static;
}
}
*/
@media only screen and (max-width: 865px) {
#console-bg {
width: 80%;
}
#console-bar {
width: 80%;
}
.header-body h1 {
font-size: 6vw;
}
.desc-text {
font-size: 2vw;
}
.homepage .btn {
width: 100%;
margin: 5px;
}
}
@media only screen and (max-width: 670px) {
#console-bg {
width: 100%;
}
#console-bar {
width: 100%;
}
.desc-text {
font-size: 2.5vw;
}
.header-desc {
width: 80%;
}
.homepage .btn {
width: 100%;
margin: 5px;
}
}
/*
.search {
width: 100%;
position: relative;
display: flex;
}
<footer style="margin-top: 30%;margin-left:45%;font-size: 1.2rem;color: white;position:fixed;">
<p>© 2019 Coder'sHub</p>
</footer>
.searchTerm {
width: 100%;
border: 3px solid #00B4CC;
border-right: none;
padding: 5px;
height: 20px;
border-radius: 5px 0 0 5px;
outline: none;
color: #9DBFAF;
}
.searchTerm:focus{
color: #00B4CC;
}
.searchButton {
width: 40px;
height: 36px;
border: 1px solid #00B4CC;
background: #00B4CC;
text-align: center;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 20px;
} <footer style="margin-top: 30%;margin-left:45%;font-size: 1.2rem;color: white;position:fixed;">
<p>© 2019 Coder'sHub</p>
</footer>
Resize the wrap to see the search bar change!
.wrap{
width: 30%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
*/ | 0.465387 | 0.102529 |
.ContactForm {
display: block;
margin-right: 0;
margin-left: auto;
padding-bottom: 53px;
background-color: var(--main-background-color);
box-shadow: 5px 10px 20px rgba(170, 178, 197, 0.4);
border-radius: 30px;
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.ContactForm {
padding-top: 43px;
padding-left: 18px;
padding-right: 18px;
width: 300px;
height: 525px;
margin-bottom: 76px;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.ContactForm {
margin-right: auto;
padding-top: 50px;
padding-left: 85px;
padding-right: 86px;
width: 436px;
height: 535px;
}
}
@media screen and (min-width: 1280px) {
.ContactForm {
margin-right: 110px;
padding-top: 50px;
padding-left: 85px;
padding-right: 86px;
width: 436px;
height: 535px;
}
}
.FormTitle {
font-weight: normal;
text-align: center;
letter-spacing: 0.04em;
color: var(--main-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormTitle {
margin-left: 39px;
margin-right: 39px;
margin-bottom: 24px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormTitle {
margin-bottom: 20px;
margin-left: 73px;
margin-right: 100px;
font-size: 12px;
line-height: 1.16;
text-align: left;
}
}
@media screen and (min-width: 1280px) {
.FormTitle {
margin-bottom: 20px;
margin-left: 73px;
margin-right: 100px;
font-size: 12px;
line-height: 1.16;
text-align: left;
}
}
.FormLink {
display: flex;
justify-content: space-evenly;
align-items: center;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 18px;
padding-left: 20px;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
width: 122px;
height: 40px;
background: #f6f7fb;
border-radius: 26px;
border: none;
filter: drop-shadow(1px 2px 3px rgba(170, 178, 197, 0.2));
font-weight: 500;
font-size: 14px;
line-height: 1.4;
text-align: center;
letter-spacing: 0.02em;
color: var(--dark-text-color);
}
.FormLink:hover,
.FormLink:focus {
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.FormSubTitle {
font-weight: normal;
letter-spacing: 0.04em;
text-align: left;
color: var(--main-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormSubTitle {
margin-right: 29px;
margin-left: 29px;
margin-bottom: 24px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormSubTitle {
margin-right: 70px;
margin-left: 70px;
margin-bottom: 20px;
font-size: 12px;
line-height: 1.16;
}
}
@media screen and (min-width: 1280px) {
.FormSubTitle {
margin-right: 70px;
margin-left: 70px;
margin-bottom: 20px;
font-size: 12px;
line-height: 1.16;
}
}
.FormLabel {
display: block;
align-self: start;
font-weight: normal;
letter-spacing: 0.04em;
color: var(--dark-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormLabel {
margin-bottom: 12px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormLabel {
margin-bottom: 10px;
margin-left: 69px;
font-size: 12px;
line-height: 1.16;
}
}
@media screen and (min-width: 1280px) {
.FormLabel {
margin-bottom: 10px;
margin-left: 69px;
font-size: 12px;
line-height: 1.16;
}
}
.FormInput {
padding: 17px 20px;
width: 253px;
height: 52px;
margin-bottom: 30px;
background-color: #f6f7fb;
border: none;
outline: none;
border-radius: 30px;
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormInput {
width: 253px;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormInput {
width: 265px;
}
}
@media screen and (min-width: 1280px) {
.FormInput {
width: 265px;
}
}
.FormInputIndent {
margin-bottom: 40px;
}
.FormInput::placeholder {
font-weight: normal;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.04em;
color: var(--placeholders-text-color);
}
.wrap {
display: flex;
align-items: center;
justify-content: center;
}
.btn {
padding: 12px 15px;
width: 125px;
height: 44px;
font-weight: 700;
font-size: 12px;
line-height: 1.16;
text-align: center;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--main-text-color);
background: var(--second-background-color);
border-radius: 16px;
border: none;
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.btn:hover,
.btn:focus {
color: var(--main-background-color);
background-color: var(--accent-color);
filter: drop-shadow(1px 3px 5px rgba(255, 107, 8, 0.35));
}
.btn:not(:last-child) {
margin-right: 15px;
}
button[disabled]:hover {
background-color: var(--second-background-color);
color: var(--main-text-color);
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.logIn {
transform: translate(0%, -100%);
color: rgb(82, 199, 102);
}
.wraper {
display: flex;
flex-direction: column;
align-items: center;
}
.error {
font-size: 10px;
line-height: 1.2;
letter-spacing: 0.04em;
transform: translate(-10%, -219%);
color: var(--error-color);
}
.validationDot {
color: var(--error-color);
} | src/components/RegistrationForm/style.module.css | .ContactForm {
display: block;
margin-right: 0;
margin-left: auto;
padding-bottom: 53px;
background-color: var(--main-background-color);
box-shadow: 5px 10px 20px rgba(170, 178, 197, 0.4);
border-radius: 30px;
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.ContactForm {
padding-top: 43px;
padding-left: 18px;
padding-right: 18px;
width: 300px;
height: 525px;
margin-bottom: 76px;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.ContactForm {
margin-right: auto;
padding-top: 50px;
padding-left: 85px;
padding-right: 86px;
width: 436px;
height: 535px;
}
}
@media screen and (min-width: 1280px) {
.ContactForm {
margin-right: 110px;
padding-top: 50px;
padding-left: 85px;
padding-right: 86px;
width: 436px;
height: 535px;
}
}
.FormTitle {
font-weight: normal;
text-align: center;
letter-spacing: 0.04em;
color: var(--main-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormTitle {
margin-left: 39px;
margin-right: 39px;
margin-bottom: 24px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormTitle {
margin-bottom: 20px;
margin-left: 73px;
margin-right: 100px;
font-size: 12px;
line-height: 1.16;
text-align: left;
}
}
@media screen and (min-width: 1280px) {
.FormTitle {
margin-bottom: 20px;
margin-left: 73px;
margin-right: 100px;
font-size: 12px;
line-height: 1.16;
text-align: left;
}
}
.FormLink {
display: flex;
justify-content: space-evenly;
align-items: center;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 18px;
padding-left: 20px;
margin-right: auto;
margin-left: auto;
margin-bottom: 30px;
width: 122px;
height: 40px;
background: #f6f7fb;
border-radius: 26px;
border: none;
filter: drop-shadow(1px 2px 3px rgba(170, 178, 197, 0.2));
font-weight: 500;
font-size: 14px;
line-height: 1.4;
text-align: center;
letter-spacing: 0.02em;
color: var(--dark-text-color);
}
.FormLink:hover,
.FormLink:focus {
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.FormSubTitle {
font-weight: normal;
letter-spacing: 0.04em;
text-align: left;
color: var(--main-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormSubTitle {
margin-right: 29px;
margin-left: 29px;
margin-bottom: 24px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormSubTitle {
margin-right: 70px;
margin-left: 70px;
margin-bottom: 20px;
font-size: 12px;
line-height: 1.16;
}
}
@media screen and (min-width: 1280px) {
.FormSubTitle {
margin-right: 70px;
margin-left: 70px;
margin-bottom: 20px;
font-size: 12px;
line-height: 1.16;
}
}
.FormLabel {
display: block;
align-self: start;
font-weight: normal;
letter-spacing: 0.04em;
color: var(--dark-text-color);
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormLabel {
margin-bottom: 12px;
font-size: 10px;
line-height: 1.2;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormLabel {
margin-bottom: 10px;
margin-left: 69px;
font-size: 12px;
line-height: 1.16;
}
}
@media screen and (min-width: 1280px) {
.FormLabel {
margin-bottom: 10px;
margin-left: 69px;
font-size: 12px;
line-height: 1.16;
}
}
.FormInput {
padding: 17px 20px;
width: 253px;
height: 52px;
margin-bottom: 30px;
background-color: #f6f7fb;
border: none;
outline: none;
border-radius: 30px;
}
@media screen and (max-width: 767.98px) and (min-width: 320px) {
.FormInput {
width: 253px;
}
}
@media screen and (min-width: 768px) and (max-width: 1279.98px) {
.FormInput {
width: 265px;
}
}
@media screen and (min-width: 1280px) {
.FormInput {
width: 265px;
}
}
.FormInputIndent {
margin-bottom: 40px;
}
.FormInput::placeholder {
font-weight: normal;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.04em;
color: var(--placeholders-text-color);
}
.wrap {
display: flex;
align-items: center;
justify-content: center;
}
.btn {
padding: 12px 15px;
width: 125px;
height: 44px;
font-weight: 700;
font-size: 12px;
line-height: 1.16;
text-align: center;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--main-text-color);
background: var(--second-background-color);
border-radius: 16px;
border: none;
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.btn:hover,
.btn:focus {
color: var(--main-background-color);
background-color: var(--accent-color);
filter: drop-shadow(1px 3px 5px rgba(255, 107, 8, 0.35));
}
.btn:not(:last-child) {
margin-right: 15px;
}
button[disabled]:hover {
background-color: var(--second-background-color);
color: var(--main-text-color);
filter: drop-shadow(1px 3px 5px rgba(82, 85, 95, 0.15));
}
.logIn {
transform: translate(0%, -100%);
color: rgb(82, 199, 102);
}
.wraper {
display: flex;
flex-direction: column;
align-items: center;
}
.error {
font-size: 10px;
line-height: 1.2;
letter-spacing: 0.04em;
transform: translate(-10%, -219%);
color: var(--error-color);
}
.validationDot {
color: var(--error-color);
} | 0.452052 | 0.088939 |
.tabs {
position: absolute;
width: 100%;
height: 40px;
margin: 0;
padding: 0;
overflow: hidden;
-webkit-user-select: none;
}
.tabs .tabs-content {
position: absolute;
left: 8px;
top: 0;
min-width: 2048px;
height: 40px;
}
.tabs .tabs-content .tab {
float: left;
position: relative;
margin: 10px 0 0 0;
padding: 0 2px 0 2px;
height: calc(100% - 10px);
line-height: 24px;
cursor: pointer;
color: var(--tab-in-active);
border: 1px solid transparent;
border-width: 1px 1px 0 1px;
min-width: 32px;
}
.tabs .tabs-content .tab::after {
position: absolute;
background-color: var(--tab-active-background);
width: 100%;
height: 1px;
bottom: -1px;
left: 0;
z-index: 1000;
content: " ";
}
.tabs .tabs-content .tab input[type="button"].title {
min-width: 32px;
}
.tabs .tabs-content .tab input[type="button"].title,
.tabs .tabs-content .tab input[type="button"].close {
float: left;
height: calc(100% - 2px);
line-height: 27px;
margin: 2px;
font-size: 14px;
text-decoration: none;
outline: 0;
background-color: transparent;
color: var(--ui-text2);
border: 1px solid transparent;
cursor: pointer;
}
.tabs .tabs-content .tab input[type="button"].title,
.tabs .tabs-content .tab input[type="button"].close {
padding: 1px 2px 0 2px;
}
.tabs .tabs-content .tab.active {
background-color: var(--tab-active-background);
margin: 8px 0 0 0;
height: 32px;
line-height: 24px;
border: var(--ui-border1);
border-width: 1px 1px 0 1px;
}
.tabs .tabs-content .tab.active input[type="button"].title,
.tabs .tabs-content .tab.active input[type="button"].close {
color: var(--tab-active-color);
}
.tabs .tabs-content .tab.active input[type="button"].title.focus,
.tabs .tabs-content .tab.active input[type="button"].close.focus {
border: var(--tab-active-focus-border);
}
.tabs .tabs-content .tab input[type="button"].title.focus,
.tabs .tabs-content .tab input[type="button"].close.focus {
border: var(--tab-focus-border);
} | css/components/tabs.css | .tabs {
position: absolute;
width: 100%;
height: 40px;
margin: 0;
padding: 0;
overflow: hidden;
-webkit-user-select: none;
}
.tabs .tabs-content {
position: absolute;
left: 8px;
top: 0;
min-width: 2048px;
height: 40px;
}
.tabs .tabs-content .tab {
float: left;
position: relative;
margin: 10px 0 0 0;
padding: 0 2px 0 2px;
height: calc(100% - 10px);
line-height: 24px;
cursor: pointer;
color: var(--tab-in-active);
border: 1px solid transparent;
border-width: 1px 1px 0 1px;
min-width: 32px;
}
.tabs .tabs-content .tab::after {
position: absolute;
background-color: var(--tab-active-background);
width: 100%;
height: 1px;
bottom: -1px;
left: 0;
z-index: 1000;
content: " ";
}
.tabs .tabs-content .tab input[type="button"].title {
min-width: 32px;
}
.tabs .tabs-content .tab input[type="button"].title,
.tabs .tabs-content .tab input[type="button"].close {
float: left;
height: calc(100% - 2px);
line-height: 27px;
margin: 2px;
font-size: 14px;
text-decoration: none;
outline: 0;
background-color: transparent;
color: var(--ui-text2);
border: 1px solid transparent;
cursor: pointer;
}
.tabs .tabs-content .tab input[type="button"].title,
.tabs .tabs-content .tab input[type="button"].close {
padding: 1px 2px 0 2px;
}
.tabs .tabs-content .tab.active {
background-color: var(--tab-active-background);
margin: 8px 0 0 0;
height: 32px;
line-height: 24px;
border: var(--ui-border1);
border-width: 1px 1px 0 1px;
}
.tabs .tabs-content .tab.active input[type="button"].title,
.tabs .tabs-content .tab.active input[type="button"].close {
color: var(--tab-active-color);
}
.tabs .tabs-content .tab.active input[type="button"].title.focus,
.tabs .tabs-content .tab.active input[type="button"].close.focus {
border: var(--tab-active-focus-border);
}
.tabs .tabs-content .tab input[type="button"].title.focus,
.tabs .tabs-content .tab input[type="button"].close.focus {
border: var(--tab-focus-border);
} | 0.365343 | 0.072538 |
* {
padding: 0;
margin: 0;
}
.error {
font-weight: bold;
color: red;
}
.notification {
font-weight: bold;
color: aqua;
}
.hidden {
visibility: hidden;
display: none;
}
.asked {
user-select: none;
background: #e0e0e0;
}
.background-1 {
background: url('/assets/images/paper_boat.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
filter: brightness(.9);
}
.background-2 {
background: url('/assets/images/balloons.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
}
.background-3 {
background: url('/assets/images/origami.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
}
.get-started {
min-height: 100vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.get-started a,
.get-started a:hover {
--color: #fff;
background: none;
border-width: 3px;
border-color: var(--color);
color: var(--color);
font-size: 25px;
text-decoration: none;
border: 5px solid var(--color);
padding: .5em;
border-radius: 45px;
}
.get-started a:hover {
font-size: 30px;
transition: .2s;
}
.get-started a:focus,
.get-started a:active {
outline: 0;
}
.darker-footer footer > span {
color: black;
font-weight: 300;
}
.bold {
font-weight: bold;
}
/* LOADING ANIMATION START*/
.loading-animation {
display: flex;
height: 20vh;
justify-content: center;
flex-direction: column;
align-items: center;
}
.animation-text {
letter-spacing: 1px;
margin-top: 5px;
}
.loading-animation-container {
display: flex;
justify-content: center;
align-items: flex-end;
min-height: 10vh;
}
.loading-animation-container > .square {
position: relative;
height: 40px;
width: 40px;
margin: 0;
}
.loading-animation-container > .square:not(:first-of-type):before {
content: "";
position: absolute;
width: 20px;
height: 20px;
bottom: 0;
left: 0;
background-color: rgb(248, 186, 5);
border-radius: 50%;
}
.loading-animation-container > .square:not(:last-of-type):after {
content: "";
position: absolute;
width: 20px;
height: 20px;
bottom: 0;
left: 20px;
border-radius: 50%;
background-color: rgb(110, 174, 220);
}
.loading-animation-container > .square:first-of-type {
height: 80px;
animation: pendul-left;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.loading-animation-container > .square:last-of-type {
height: 80px;
animation: pendul-right;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-delay: .75s;
}
@keyframes pendul-left {
25% {
transform: rotate(120deg);
}
50% {
transform: rotate(0);
}
}
@keyframes pendul-right {
25% {
transform: rotate(-120deg);
}
50% {
transform: rotate(0);
}
}
/* LOADING ANIMATION END*/
.compared-to {
background: rgb(110, 174, 220);
opacity: .925;
}
tr, th {
text-overflow: ellipsis;
}
a:hover {
cursor: pointer;
}
footer {
margin-top: 5vh;
margin-bottom: 5vh;
}
footer span:first {
margin-right: 10px;
}
.darker-footer footer > a,
.darker-footer footer > a:hover {
color: white !important;
font-weight: 300 !important;
} | web-app/assets/styles/index.css | * {
padding: 0;
margin: 0;
}
.error {
font-weight: bold;
color: red;
}
.notification {
font-weight: bold;
color: aqua;
}
.hidden {
visibility: hidden;
display: none;
}
.asked {
user-select: none;
background: #e0e0e0;
}
.background-1 {
background: url('/assets/images/paper_boat.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
filter: brightness(.9);
}
.background-2 {
background: url('/assets/images/balloons.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
}
.background-3 {
background: url('/assets/images/origami.jpg');
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-blend-mode: saturation;
}
.get-started {
min-height: 100vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.get-started a,
.get-started a:hover {
--color: #fff;
background: none;
border-width: 3px;
border-color: var(--color);
color: var(--color);
font-size: 25px;
text-decoration: none;
border: 5px solid var(--color);
padding: .5em;
border-radius: 45px;
}
.get-started a:hover {
font-size: 30px;
transition: .2s;
}
.get-started a:focus,
.get-started a:active {
outline: 0;
}
.darker-footer footer > span {
color: black;
font-weight: 300;
}
.bold {
font-weight: bold;
}
/* LOADING ANIMATION START*/
.loading-animation {
display: flex;
height: 20vh;
justify-content: center;
flex-direction: column;
align-items: center;
}
.animation-text {
letter-spacing: 1px;
margin-top: 5px;
}
.loading-animation-container {
display: flex;
justify-content: center;
align-items: flex-end;
min-height: 10vh;
}
.loading-animation-container > .square {
position: relative;
height: 40px;
width: 40px;
margin: 0;
}
.loading-animation-container > .square:not(:first-of-type):before {
content: "";
position: absolute;
width: 20px;
height: 20px;
bottom: 0;
left: 0;
background-color: rgb(248, 186, 5);
border-radius: 50%;
}
.loading-animation-container > .square:not(:last-of-type):after {
content: "";
position: absolute;
width: 20px;
height: 20px;
bottom: 0;
left: 20px;
border-radius: 50%;
background-color: rgb(110, 174, 220);
}
.loading-animation-container > .square:first-of-type {
height: 80px;
animation: pendul-left;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.loading-animation-container > .square:last-of-type {
height: 80px;
animation: pendul-right;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-delay: .75s;
}
@keyframes pendul-left {
25% {
transform: rotate(120deg);
}
50% {
transform: rotate(0);
}
}
@keyframes pendul-right {
25% {
transform: rotate(-120deg);
}
50% {
transform: rotate(0);
}
}
/* LOADING ANIMATION END*/
.compared-to {
background: rgb(110, 174, 220);
opacity: .925;
}
tr, th {
text-overflow: ellipsis;
}
a:hover {
cursor: pointer;
}
footer {
margin-top: 5vh;
margin-bottom: 5vh;
}
footer span:first {
margin-right: 10px;
}
.darker-footer footer > a,
.darker-footer footer > a:hover {
color: white !important;
font-weight: 300 !important;
} | 0.529993 | 0.144813 |
.body{
font-family: sans-serif;
font-size: 12px;
}
.ui-layout-north,.ui-layout-west,.ui-layout-east,.ui-layout-south,.ui-layout-center{
padding: 1px;
font-family: sans-serif;
font-size: 12px;
}
.ui-layout-north{
padding: 0px;
white-space: nowrap;
background-color: #dadada;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#dadada));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #dadada, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #dadada, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #dadada, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #dadada, #fffffe);
}
/*
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
*/
canvas.preview{
border: 1px solid #909090;
background-color: #ffffff;
background: -moz-linear-gradient(100% 100% 180deg, #ffffff, #eeeeee);
background: -webkit-gradient(linear, right top, left bottom, from(#ffffff), to(#eeeeee));
cursor: move;
border-radius: 2px;
}
.ui-menu { width: 200px; }
.menubar{
display: inline-block;
top:0px;
left:0px;
}
.toolbar{
background-color: transparent;
display: inline-block;
border: 0px solid ;
padding: 0px;
line-height: 24px;
margin:1px;
position: absolute;
top:10px;
left:100px;
}
a{
color: #000000;
font-style: normal;
text-decoration: none
}
.toolbar button{
border:1px solid #000000;
border-radius:3px;
padding:2px;
vertical-align: middle;
background-color: #ffffff;
}
.toolbar button:HOVER{
border:1px solid #aaaa00;
}
.toolbar img{
cursor: pointer;
padding: 4px;
height:22px;
border: 1px solid transparent;
vertical-align: middle;
}
.toolbar img:hover{
border: 1px solid #537697;
background-color: #f0f0f0;
}
#mainmenu{
background-color: #cfdce8;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#cfdce8));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #cfdce8, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #cfdce8, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #cfdce8, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #cfdce8, #fffffe);
}
#mainmenu span{
background-image: url('fn_down.png');
background-repeat: no-repeat;
background-position: right ;
padding-right: 20px;
}
input{
vertical-align: middle;
border: 1px solid #dadada;
border-radius: 1px;
padding:1px;
margin: 1px;
}
input:focus{
vertical-align: middle;
border: 1px solid #7eadd9;
border-radius: 1px;
padding:1px;
margin: 1px;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#dfeffc));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #dfeffc, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #dfeffc, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #dfeffc, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #dfeffc, #fffffe);
}
#caveform label{
display:inline-block;
width:150px;
border-radius: 3px;
background-color: #FC6
}
#caveform input{
}
#tabs-4 input{
border:0px solid;
padding:0px;
}
.htAutocomplete{
position: relative
}
.handsontable .ArrowUnity {
position: absolute;
top: 0;
right: 0;
font-size: 10px;
color: #909090;
cursor: default;
width: 16px;
text-align: center;
}
.handsontable td .ArrowUnity:hover {
color: #777;
}
.htContextMenu{
font-size: 12px;
text-shadow: 0px 1px 1px #dadada;
}
.ui-tabs .ui-tabs-nav li a {
padding: .2em .3em;
}
.ui-tabs .ui-tabs-panel{
padding: 5px;
}
.xy{
font-family: monospace
}
.coords{
width:70px;
}
#cave_utm_zone{
width:20px;
} | src/main/assets/res/style.css | .body{
font-family: sans-serif;
font-size: 12px;
}
.ui-layout-north,.ui-layout-west,.ui-layout-east,.ui-layout-south,.ui-layout-center{
padding: 1px;
font-family: sans-serif;
font-size: 12px;
}
.ui-layout-north{
padding: 0px;
white-space: nowrap;
background-color: #dadada;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#dadada));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #dadada, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #dadada, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #dadada, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #dadada, #fffffe);
}
/*
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
*/
canvas.preview{
border: 1px solid #909090;
background-color: #ffffff;
background: -moz-linear-gradient(100% 100% 180deg, #ffffff, #eeeeee);
background: -webkit-gradient(linear, right top, left bottom, from(#ffffff), to(#eeeeee));
cursor: move;
border-radius: 2px;
}
.ui-menu { width: 200px; }
.menubar{
display: inline-block;
top:0px;
left:0px;
}
.toolbar{
background-color: transparent;
display: inline-block;
border: 0px solid ;
padding: 0px;
line-height: 24px;
margin:1px;
position: absolute;
top:10px;
left:100px;
}
a{
color: #000000;
font-style: normal;
text-decoration: none
}
.toolbar button{
border:1px solid #000000;
border-radius:3px;
padding:2px;
vertical-align: middle;
background-color: #ffffff;
}
.toolbar button:HOVER{
border:1px solid #aaaa00;
}
.toolbar img{
cursor: pointer;
padding: 4px;
height:22px;
border: 1px solid transparent;
vertical-align: middle;
}
.toolbar img:hover{
border: 1px solid #537697;
background-color: #f0f0f0;
}
#mainmenu{
background-color: #cfdce8;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#cfdce8));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #cfdce8, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #cfdce8, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #cfdce8, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #cfdce8, #fffffe);
}
#mainmenu span{
background-image: url('fn_down.png');
background-repeat: no-repeat;
background-position: right ;
padding-right: 20px;
}
input{
vertical-align: middle;
border: 1px solid #dadada;
border-radius: 1px;
padding:1px;
margin: 1px;
}
input:focus{
vertical-align: middle;
border: 1px solid #7eadd9;
border-radius: 1px;
padding:1px;
margin: 1px;
/* fallback */
background-color: #fffffe;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffffe), to(#dfeffc));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #dfeffc, #fffffe);
/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #dfeffc, #fffffe);
/* IE 10 */
background: -ms-linear-gradient(top, #dfeffc, #fffffe);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #dfeffc, #fffffe);
}
#caveform label{
display:inline-block;
width:150px;
border-radius: 3px;
background-color: #FC6
}
#caveform input{
}
#tabs-4 input{
border:0px solid;
padding:0px;
}
.htAutocomplete{
position: relative
}
.handsontable .ArrowUnity {
position: absolute;
top: 0;
right: 0;
font-size: 10px;
color: #909090;
cursor: default;
width: 16px;
text-align: center;
}
.handsontable td .ArrowUnity:hover {
color: #777;
}
.htContextMenu{
font-size: 12px;
text-shadow: 0px 1px 1px #dadada;
}
.ui-tabs .ui-tabs-nav li a {
padding: .2em .3em;
}
.ui-tabs .ui-tabs-panel{
padding: 5px;
}
.xy{
font-family: monospace
}
.coords{
width:70px;
}
#cave_utm_zone{
width:20px;
} | 0.228415 | 0.072703 |
.header-color {
background-color: #E3E1E4;
}
.uk-text-dark
{
color: #414241 !important;
}
/*-- Clearance-Sale --*/
.aitsclearance-sales {
background-image: url("../../../assets/images/banner/banner3.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-attachment: fixed;
text-align: center;
}
.aitsclearance-sales-text {
width: 50%;
padding: 300px 0;
background-color: rgba(0, 0, 0, 0.35);
}
.aitsclearance-sales-text h2 {
font-size: 50px;
color: #fff;
text-shadow: 2px 2px #32323b;
margin-bottom: 20px;
}
.aitsclearance-sales-text h4 {
color: #FFF;
font-size: 30px;
text-shadow: 2px 2px #32323b;
margin-bottom: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 75px;
color: #FFF;
text-shadow: 3px 3px #2f302f;
}
.aitsclearance-sales-text h5 small {
font-size: 30px;
color: #EEE;
text-shadow: 2px 2px #001c44;
}
/*-- //Clearance-Sale --*/
/*-- Copyright --*/
.w3lscopyrightaits {
padding: 0 100px 50px;
}
.w3lscopyrightaitsgrid {
padding: 0;
}
.w3lscopyrightaitsgrid1 p {
color: #000;
margin-top: 10px;
}
.w3lscopyrightaitsgrid1 p a {
font-family: 'Montserrat', sans-serif;
color: #000;
}
.w3lscopyrightaitsgrid1 p a:hover {
color: #c41228;
}
/*-- Footer-Social-Icons --*/
.agilesocialwthree {
text-align: right;
}
ul.social-icons li {
display: inline-block;
margin: 0 5px;
}
.agilesocialwthree ul.social-icons li a {
font-size: 30px;
color: #000;
}
ul.social-icons li a.facebook:hover {
color: #3b5998;
}
ul.social-icons li a.twitter:hover {
color: #1dcaff;
}
ul.social-icons li a.googleplus:hover {
color: #d34836;
}
ul.social-icons li a.instagram:hover {
color: #517fa4;
}
ul.social-icons li a.youtube:hover {
color: #bb0000;
}
/*-- //Footer-Social-Icons --*/
/*-- //Copyright --*/
/*-- Footer --*/
.agileinfofooter {
padding: 50px 50px;
}
.agileinfofooter-grids {
padding-bottom: 10px;
border-bottom: 1px solid #333;
}
.agileinfofooter-grid {
padding: 0;
}
.agileinfofooter-grid ul li {
display: block;
line-height: 30px;
font-size: 12px;
letter-spacing: 1px;
font-family: 'Montserrat', sans-serif;
color: #000;
}
.agileinfofooter-grid ul li a {
color: #000;
}
.agileinfofooter a:hover {
color: #c41228;
}
.agileinfofooter {
padding: 35px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 35px;
}
.agileinfofooter-grid {
width: 33.3%;
float: left;
}
.w3lscopyrightaitsgrid1 {
width: 60%;
float: left;
}
.w3lscopyrightaitsgrid2 {
width: 40%;
float: left;
}
/*-- //Footer --*/
/*-- Responsive-Code --*/
@media screen and (max-width: 1920px) {
li.wthreesearch {
right: 25%;
}
li.wthreecartaits {
right: 20.25%;
}
div#my-cart-modal .modal-dialog {
width: 45%;
}
.wthreewinter-coll {
padding: 200px 0 175px;
}
.style-grid-1 img {
height: 950px;
}
.style-image-1 img, .style-image-2 img {
height: 475px;
}
.style-grid-1-text, .style-grid-2-text {
padding: 100px;
}
.about-us-text {
padding: 130px;
}
.about-us-text h1 {
margin-bottom: 31px;
}
.aitsyourself-grid2 {
padding: 75px;
}
.aitscommercial-grid1 {
padding: 153px;
}
.agilenwew3lsfashions {
padding: 200px 0;
}
li.cbp-pgoptcompare {
padding-left: 52px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 45px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -60px;
}
.cbp-pgopttooltip {
width: 134px;
}
}
@media screen and (max-width: 1680px) {
li.wthreecartaits {
right: 16%;
}
li.wthreesearch {
right: 20%;
}
.about-us-text {
padding: 75px;
}
.about-us-text h1 {
margin-bottom: 32px;
}
.aitsyourself-grid2 {
padding: 53px 56px 52px;
}
li.cbp-pgoptcompare {
padding-left: 43px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -52px;
}
.cbp-pgopttooltip {
width: 115px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 36.5px;
}
}
@media screen and (max-width: 1600px) {
li.wthreecartaits {
right: 14.5%;
}
div#my-cart-modal .modal-dialog {
width: 50%;
}
.wthreewinter-coll {
padding: 175px 0 150px;
}
.style-grid-1 img {
height: 792px;
}
.style-image-1 img, .style-image-2 img {
height: 100%;
}
.style-grid-1-text, .style-grid-2-text {
padding: 50px;
}
.about-us-text {
padding: 63px;
}
.about-us-text h1 {
margin-bottom: 30px;
}
.aitsyourself-grid2 {
padding: 53px 52px 52px;
}
.aitscommercial-grid1 {
padding: 100px;
}
.agilenwew3lsfashions {
padding: 150px 0;
}
li.cbp-pgoptcompare {
padding-left: 40px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -49px;
}
.cbp-pgopttooltip {
width: 108px;
}
}
@media screen and (max-width: 1440px) {
li.wthreecartaits {
right: 10%;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 25%;
}
.wthreewinter-coll {
padding: 150px 0 140px;
}
.style-grid-1 img {
height: 712px;
}
.about-us-text {
padding: 36px;
}
.aitsyourself-grid2 {
padding: 41px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 30px;
line-height: 47px;
}
.aitscommercial-grid1 {
padding: 65px;
}
p.w3teaseraits {
margin: 20px 0;
}
li.cbp-pgoptcompare {
padding-left: 34px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 27px;
}
.single-top-left {
width: 40%;
margin-left: 10%;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -44px;
width: 97px;
}
}
@media screen and (max-width: 1366px) {
li.wthreesearch {
right: 14%;
}
li.wthreecartaits {
right: 8%;
}
div#my-cart-modal .modal-dialog {
width: 60%;
}
.wthreewinter-coll {
padding: 100px 0;
}
.style-grid-1 img {
height: 674px;
}
.aitsclearance-sales-text h5 small {
font-size: 25px;
}
.agileinfonewsl {
padding: 275px 0;
}
.about-us-text {
padding: 35px;
}
.about-us-text h1 {
font-size: 35px;
margin-bottom: 20px;
}
.about-us-text p {
line-height: 27px;
}
.aitsyourself-grid2 {
padding: 42px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 28px;
line-height: 43px;
}
.aitscommercial-grid1 {
padding: 50px;
}
p.w3teaseraits {
margin: 22.5px 0;
}
.agilenwew3lsfashions {
padding: 125px 0;
}
li.cbp-pgoptcompare {
padding-left: 30px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 24px;
}
.single-top-left {
width: 45%;
margin-left: 5%;
}
#map {
height: 500px;
}
button.w3l-cart.pw3l-cart {
font-size: 4em;
padding: 0px 0.5em;
}
}
@media screen and (max-width: 1280px) {
li.wthreesearch {
right: 11%;
}
li.wthreecartaits {
right: 5.5%;
}
.w3slideraits {
height: 700px;
}
.style-grid-1 img {
height: 632px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 38px;
}
.aitsclearance-sales-text h5 {
font-size: 70px;
}
.about-us-text {
padding: 25px;
}
.about-us-text h1 {
font-size: 30px;
margin-bottom: 15px;
}
.aitsyourself-grid2 {
padding: 35px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 30px;
line-height: 40px;
}
.aitscommercial h2 {
font-size: 35px;
margin-bottom: 20px;
}
p.w3teaseraits {
margin: 16.5px 0;
}
li.cbp-pgoptcompare {
padding-left: 26px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 21px;
}
.single-top-left {
width: 45%;
margin-left: 10%;
}
.single-top-right {
width: 45%;
padding-left: 1em;
}
}
@media screen and (max-width: 1080px) {
a.navbar-brand {
font-size: 18px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
padding: 10px;
font-size: 13px;
}
.dropdown-menu.multi {
min-width: 940px!important;
left: -184px;
}
.dropdown-menu {
width: 940px!important;
}
ul.dropdown-menu.multi.multi2 {
left: -246px;
}
ul.dropdown-menu.multi.multi3 {
left: -333px;
}
ul.dropdown-menu.multi.multi4 {
left: -457px;
}
.w3layouts-nav-agile {
padding: 5px;
width: 28.3%;
}
ul.multi-column-dropdown li.heading {
margin-top: -5px;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
width: 15%;
padding-left: 15px!important;
}
.dropdown-menu p {
margin-bottom: 17px;
}
p.promo {
width: 940px;
margin-bottom: 0;
}
li.wthreesearch {
right: 13%;
}
li.wthreesearch input[type="search"] {
padding: 5px;
width: 150px;
}
li.wthreecartaits {
right: 6.5%;
}
div#my-cart-modal .modal-dialog {
width: 75%;
}
.w3slideraits {
height: 600px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 30%;
}
.style-grid-1-text, .style-grid-2-text {
padding: 30px;
}
.style-grid-1 img {
height: 550px;
}
.style-image-1 img, .style-image-2 img {
height: 275px;
}
.style-grid-1 img {
height: 550px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 34px;
}
.style-grid-1-text p, .style-grid-2-text p {
line-height: 25px;
padding-right: 0;
}
.aitsclearance-sales-text {
padding: 175px 0;
}
.aitsclearance-sales-text h2 {
font-size: 43px;
}
.aitsclearance-sales-text h5 {
font-size: 65px;
}
.aitsclearance-sales-text h5 small {
font-size: 20px;
}
.single-top-left {
width: 45%;
margin-left: 6%;
}
.single-top-right {
width: 49%;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 35px;
margin-bottom: 10px;
}
.agilelocationsw3ls-grid1 p {
line-height: 30px;
padding: 20px 0;
}
.aitsstoreaddressw3-grid {
width: 23.9%;
float: left;
}
button.w3l-cart.pw3l-cart {
font-size: 4em;
padding: 0px 0.3em;
}
#staplesbmincart {
position: fixed;
left: 53%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 1050px) {
li.wthreesearch {
right: 15%;
}
li.wthreecartaits {
right: 8%;
}
.single-top-left {
margin-left: 7%;
}
.single-top-right {
width: 48%;
}
.agilemodel-slider {
height: 300px!important;
}
.film_roll_wrapper {
height: 300px!important;
}
.film_roll_shuttle {
height: 300px!important;
}
.film_roll_child {
text-align: center;
}
.film_roll_wrapper img {
width: 50%;
}
.wthreehome-latest {
background-color: #EEE;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 33px;
}
.aitsclearance-sales-text {
padding: 150px 0;
}
.aitsclearance-sales-text h2 {
font-size: 42px;
}
.aitsclearance-sales-text h5 {
font-size: 60px;
}
.agileshoppinggrids-bottom p {
width: 85%;
}
.agileinfonewsl {
padding: 225px 0;
}
a.popup-with-zoom-anim:hover {
color: #ffffff;
}
.about-us-text {
padding: 0 0 0 15px;
}
.about-us-text h1 {
font-size: 25px;
margin-bottom: 10px;
}
.about-us-text p {
line-height: 24px;
font-size: 13px;
}
.aitsyourself-grid1, .aitsyourself-grid3 {
height: 500px;
}
.aitsyourself-grid2 {
padding: 20px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 26px;
line-height: 35px;
}
.aitscommercial-grid1 {
padding: 30px;
}
.aitscommercial h2 {
font-size: 30px;
margin-bottom: 10px;
}
.aitscommercial p {
line-height: 27px;
font-size: 13px;
}
p.w3teaseraits {
font-size: 14px;
margin: 16px 0;
}
.w3laccessoriesaits-grids1 {
padding: 0 15px 0 30px;
}
.w3laccessoriesaits-grids2 {
padding: 0 30px 0 15px;
}
.w3laccessoriesaits-grid {
padding: 20px;
}
.w3laccessoriesaits-grid .grid figure {
margin-bottom: 15px;
}
.w3laccessoriesaits-grid h4 {
font-size: 16px;
}
.w3laccessoriesaits-grid p {
font-size: 13px;
margin: 10px 0 20px;
}
.w3laccessoriesaits-grid h6 {
margin-bottom: 10px;
}
.w3lsshoesaits {
padding: 150px 0;
}
.agilenwew3lsfashions h3 {
font-size: 45px;
margin-bottom: 40px;
}
.agilenwew3lsfashions h4 {
font-size: 25px;
margin-bottom: 30px;
}
.timer {
font-size: 80px;
}
h1.w3wthreeheadingaits {
font-size: 35px;
padding: 35px 0;
}
.wthreeproductdisplay {
padding: 50px 0;
}
.contact-info-grid-2 {
padding: 20px;
}
.contact-info-grid-2 h2 {
font-size: 30px;
margin-bottom: 10px;
}
.contact-info-grid-2 p {
font-size: 13px;
}
}
@media screen and (max-width: 1024px) {
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 5px 17px;
}
.dropdown-menu.multi {
min-width: 935px!important;
}
.dropdown-menu {
width: 935px!important;
}
p.promo {
width: 935px;
}
.agileheader-topbar-grid1 p {
margin-left: 3px;
font-size: 13px;
}
.agileheader-topbar-grid2 ul li {
font-size: 13px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 32%;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 32px;
}
.style-grid-1-text p, .style-grid-2-text p {
font-size: 13px;
}
.aitsclearance-sales-text h2 {
font-size: 40px;
}
.aitsclearance-sales-text h5 {
font-size: 56px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 75px 0;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 35px;
margin-bottom: 35px;
}
.agileshoppinggrids-bottom {
margin-top: 30px;
}
.agileinfonewsl {
padding: 200px 0;
}
.agileinfofooter-grid ul li {
line-height: 27px;
font-size: 11px;
}
.agileinfofooter {
padding: 35px 50px;
}
.agileinfofooter-grids {
padding-bottom: 35px;
}
.w3lscopyrightaits {
padding: 0 50px 35px;
}
.aitscommercial-grid1 {
padding: 25px;
}
p.w3teaseraits {
margin: 16.5px 0;
}
.w3laccessoriesaits {
text-align: center;
}
li.cbp-pgoptcompare {
padding-left: 24px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 19px;
}
.single-top-left {
margin-left: 8%;
width: 44%;
}
.single-top-right h1 {
font-size: 25px;
margin-bottom: 10px;
}
.rating {
margin: 15px 0;
}
.single-price ul li {
font-size: 15px;
line-height: 33px;
}
.single-price ul li:nth-child(1) {
font-size: 45px;
}
p.single-price-text {
margin: 5px 0 15px;
line-height: 25px;
font-size: 13px;
}
}
@media screen and (max-width: 991px) {
.container {
width: 100%;
}
ul.dropdown-menu.multi.multi2 {
left: -247px;
}
ul.dropdown-menu.multi.multi4 {
left: -458px;
}
li.wthreesearch {
right: 11%;
}
li.wthreecartaits {
right: 5%;
}
.badge {
position: absolute;
right: -10px;
top: 20px;
}
.agileheader-topbar-grid, .wthreehome-latest-grid, .style-grid, .agileshoppinggrid, .agileshoppinggrids-bottom-grid, .about-us-image, .aitscommercial-grid, .w3laccessoriesaits-grids, .agilelocationsw3ls-grid {
width: 50%;
float: left;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 31px;
}
.agileinfofooter {
padding: 35px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 35px;
}
.agileinfofooter-grid {
width: 33.3%;
float: left;
}
.w3lscopyrightaitsgrid1 {
width: 60%;
float: left;
}
.w3lscopyrightaitsgrid2 {
width: 40%;
float: left;
}
.about-us-text {
padding: 40px 30px 0;
}
.aitsyourself-grid1 {
width: 40%;
float: left;
}
.aitsyourself-grid2 {
width: 27%;
float: left;
padding: 22.5px;
}
.aitsyourself-grid3 {
width: 33%;
float: left;
}
.aitscommercial h2 {
font-size: 25px;
}
.aitscommercial-grid1 {
padding: 18px;
}
p.w3teaseraits {
margin: 21px 0;
}
.w3lsshoesaits-info p {
width: 55%;
}
.w3lsnewsletter-grid-1 {
width: 40%;
float: left;
}
.w3lsnewsletter-grid-2 {
width: 60%;
float: left;
}
.single-top-left {
margin-left: 10%;
width: 42%;
float: left;
}
.single-top-right {
width: 48%;
float: left;
}
#map {
height: 450px;
}
.wthreeaddressaits-grid1 {
width: 40%;
float: left;
}
.wthreeaddressaits-grid2 {
width: 60%;
float: left;
}
#staplesbmincart {
position: fixed;
left: 35%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 960px) {
.w3slideraits {
height: 550px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 35%;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 29px;
}
.aitsclearance-sales-text h2 {
font-size: 38px;
}
.aitsclearance-sales-text h5 {
font-size: 51px;
}
.aitsyourself-grid2 {
padding: 22.5px 22px;
}
.aitscommercial-grid1 {
padding: 15px;
}
.aitscommercial h2 {
margin-bottom: 11px;
}
.aitscommercial p {
line-height: 23px;
}
.agilenwew3lsfashions {
padding: 100px 0;
}
.cbp-pgitem {
padding: 1em;
}
li.cbp-pgoptcompare {
padding-left: 22px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 16px;
}
}
@media screen and (max-width: 800px) {
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
padding: 10px 6px;
font-size: 12px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 2px 17px;
}
li.wthreecartaits {
right: 7%;
}
span.my-cart-icon {
position: absolute !important;
}
li.wthreesearch {
right: 9%;
}
li.wthreesearch input[type="search"] {
width: 115px;
}
.agileheader-topbar-grid{
width: 40%;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
float: right;
width: 55%;
}
.aitsclearance-sales-text {
padding: 105px 0;
width: 61%;
}
.aitsclearance-sales-text h2 {
font-size: 32px;
}
.aitsclearance-sales-text h4 {
font-size: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 36px;
}
.aitsclearance-sales-text h5 small {
font-size: 15px;
}
.agileinfonewsl {
padding: 105px 0;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 45px;
}
.w3layouts-nav-agile {
width: 20.3%;
}
.dropdown-menu.multi {
left: -199px;
}
ul.dropdown-menu.multi.multi4 {
left: -417px;
}
ul.dropdown-menu.multi.multi3 {
left: -313px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 19px;
}
.aitscommercial h2 {
font-size: 22px;
}
.aitscommercial-grid {
width: 100%;
float: none;
}
.aitscommercial-grid1 {
padding: 35px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 60px 0;
}
.w3lsshoesaits-info h3 {
font-size: 40px;
}
.w3lsshoesaits-info p {
width: 70%;
}
.wthreeshop-a a {
padding: 10px 40px;
}
.w3lsshoesaits {
padding: 100px 0;
}
.agilenwew3lsfashions h4 {
font-size: 15px;
margin-bottom: 25px;
}
.agilenwew3lsfashions h3 {
font-size: 35px;
margin-bottom: 28px;
}
.clock .column {
width: 15%;
}
.timer {
font-size: 58px;
}
.text {
font-size: 13px;
}
.agilenwew3lsfashions {
padding: 70px 0;
}
.w3lsnewsletter-grid-1 {
width: 100%;
float: none;
text-align: center;
padding: 0 0 20px;
}
.w3lsnewsletter-grid-2 {
width: 60%;
float: none;
margin: 0 auto;
}
.agileinfofooter {
padding: 30px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 25px;
}
.w3paymentsaits h4 {
font-size: 18px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 28px;
}
.agilelocationsw3ls-grid1 p {
padding: 8px 0;
}
.aitsstoreaddressw3-grid {
width: 23.5%;
}
#map {
height: 300px;
}
.email-form input.email {
padding: 13px 10px;
}
.email-form input.submit {
padding: 13px 0;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 30px;
margin-bottom: 30px;
}
.panel-heading {
padding: 15px 15px;
}
.panel-group {
margin-bottom: 0;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 40%;
}
.contact-info-grid-2 {
padding: 0 20px;
}
.contact-info-grid-2 h2 {
font-size: 24px;
}
.cbp-pginfo h3, .cbp-pginfo span {
width: 74%;
font-size: 16px;
}
.cbp-pginfo span {
width: 26%;
}
.cbp-pggrid > li {
width: 32%;
padding: 20px 1% 25px 1%;
}
li.cbp-pgoptcompare {
padding-left: 12px;
}
button.btn.btn-danger.my-cart-btn {
padding: 6px 11px;
font-size: 32px;
}
.single-price ul li:nth-child(1) {
font-size: 33px;
}
.single-top-right .agilesocialwthree {
margin-top: 30px;
}
.panel-body {
padding: 1.5em;
}
h1.w3wthreeheadingaits {
font-size: 30px;
padding: 30px 0;
}
.cbp-pgoptions li:before, .cbp-pgoptions li > span {
font-size: 17px;
}
.cbp-pgoptions li.cbp-pgoptsize > span {
font-size: 20px;
}
input[type=checkbox].css-checkbox + label.css-label {
padding-left: 0;
height: 25px;
width: 25px;
background-position: 0px -24px;
background-size: 100%;
}
li.cbp-pgoptcompare {
padding: 16px 0;
text-align: center;
}
.single-price ul li:nth-child(1) small {
font-size: 14px;
}
button.w3l-cart.pw3l-cart {
font-size: 3em;
padding: 0.3em 0.3em;
border-left: none!important;
}
}
@media screen and (max-width: 768px) {
li.wthreesearch {
right: 8%;
}
a.navbar-brand {
padding: 15px 9px;
}
.agileheader-topbar {
padding: 15px 0;
}
.wthreewinter-coll h1 {
font-size: 25px;
}
.wthreewinter-coll p {
width: 75%;
}
.wthreewinter-coll {
padding: 75px 0;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 20px;
}
.style-image-1 img, .style-image-2 img {
height: 245px;
}
.style-grid-1 img {
height: 490px;
}
.aitsclearance-sales-text,.agileinfonewsl {
padding: 65px 0;
}
.dropdown-menu.multi {
left: -190px;
}
ul.dropdown-menu.multi.multi2 {
left: -235px;
}
ul.dropdown-menu.multi.multi3 {
left: -302px;
}
ul.dropdown-menu.multi.multi4 {
left: -406px;
}
.w3layouts-nav-agile {
width: 20%;
}
li.wthreecartaits {
top: 1px;
font-size: 35px;
}
.w3lsshoesaits-info h3 {
font-size: 32px;
}
.w3lsshoesaits-info p {
margin: 20px auto;
}
.w3lsshoesaits {
padding: 60px 0;
}
.timer {
font-size: 40px;
}
.clock .column {
width: 11%;
}
.agilenwew3lsfashions {
padding: 55px 0;
}
.w3lsnewsletter-grid-2 {
width: 70%;
}
.w3lsnewsletter {
padding: 40px 0;
}
.cbp-pginfo h3, .cbp-pginfo span {
width: 80%;
font-size: 14px;
}
.cbp-pginfo span {
width: 20%;
padding: 15px 0;
text-align: center;
}
.single-top-right {
padding-right: 0;
}
.single-top-right h1 {
font-size: 22px;
}
.imagezoom-view {
display: none;
}
}
@media screen and (max-width: 767px) {
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #c41228;
}
.navbar-toggle{
float: none;
margin-left: 12em;
background: #c41228;
}
.navbar-default .navbar-toggle {
border-color: #c41228;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-nav {
margin: 7.5px 0;
}
div#bs-megadropdown-tabs {
background: rgba(255, 255, 255, 0.95);
}
li.wthreecartaits.wthreecartaits2 {
display: none;
}
ul.w3header-cart li.wthreecartaits {
display: block;
}
li.wthreecartaits {
right: 10%;
}
li.wthreesearch {
position: inherit;
padding: 0 0 12px;
}
li.wthreesearch input[type="search"] {
width: 190px;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
width: 60%;
}
}
@media screen and (max-width: 736px) {
.dropdown-menu.multi {
padding: 0px 0 0;
}
.w3layouts-nav-agile {
width: 25%;
float: left;
}
.dropdown-menu {
width: 100% !important;
}
p.promo {
width: 100%;
}
.dropdown-menu.multi ,ul.dropdown-menu.multi.multi2,ul.dropdown-menu.multi.multi3,ul.dropdown-menu.multi.multi4{
left: 0;
padding: 14px;
position: inherit !important;
min-width: 0 !important;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 2px;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
padding-left: 0 !important;
}
.aitsclearance-sales-text h2 {
font-size: 28px;
}
.aitsclearance-sales-text h4 {
font-size: 17px;
}
.cbp-pginfo h3, .cbp-pginfo span {
padding: 15px 8px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 17px;
}
.aitsstoreaddressw3-grid {
width: 31.8%;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 45%;
padding: 20px;
}
.contact-info-grid-2 {
margin-top: 2em;
}
.panel-title > a {
font-size: 0.9em;
}
.single-price ul li {
font-size: 13px;
}
.agileinfofooter {
padding: 20px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 20px;
}
}
@media screen and (max-width: 667px) {
.agileheader-topbar-grid,.agileheader-topbar-grid.agileheader-topbar-grid2{
width: 100%;
float: none;
text-align: center;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
margin-top: 1em;
}
.navbar-toggle {
margin-left: 9em;
}
.w3slideraits {
height: 400px;
}
.wthreehome-latest {
padding: 40px 0;
}
.wthreewinter-coll h1 {
font-size: 22px;
}
.wthreewinter-coll p {
width: 85%;
}
.wthreewinter-coll,.aitsclearance-sales-text, .agileinfonewsl {
padding: 50px 0;
}
.wthreeshop-a a {
padding: 10px 30px;
}
.style-grid-1-text, .style-grid-2-text {
padding: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 32px;
}
.aitsclearance-sales-text h2 {
font-size: 24px;
}
.aitsclearance-sales-text h4 {
font-size: 15px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 45px 0;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 35px;
}
.agileinfonewsl h3 {
font-size: 25px;
margin-bottom: 15px;
}
.agileinfonewsl p {
font-size: 14px;
margin-bottom: 30px;
}
.aitsclearance-sales-text, .agileinfonewsl {
padding: 45px 0;
}
.w3lscopyrightaitsgrid1,.w3lscopyrightaitsgrid2{
width: 100%;
float: none;
text-align: center;
}
.agilesocialwthree {
text-align: center;
margin-top: 1em;
}
.agileheader-banner.w3mensaits {
padding-top: 0;
}
h1.w3wthreeheadingaits {
font-size: 25px;
padding: 27px 0;
}
.wthreeproductdisplay {
padding: 35px 0;
}
.cbp-pggrid > li {
width: 48%;
padding: 20px 1% 10px 1%;
}
.single-top-left {
margin-left: 15%;
width: 42%;
float: none;
}
.single-top-right {
padding-right: 0;
margin-top: 1em;
float: none;
width: 100%;
}
.single-price ul li:nth-child(1) {
font-size: 30px;
}
.aitssinglew3 .agileits.my-cart-btn {
width: 30%!important;
}
.aitsaccordionw3layouts {
margin-top: 25px;
}
.aitsaccordionw3layouts .panel-heading {
padding: 12px;
}
.panel-body {
padding: 1em;
}
.w3lsnewsletter-grid-2 {
width: 77%;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 15px;
}
.aitscommercial-grid1 a.popup-with-zoom-anim {
padding: 8px 30px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 25px;
}
.aitsstoreaddressw3-grid {
width: 31.6%;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 25px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 60%;
}
#small-dialog1 h3, #small-dialog2 h3, #small-dialog3 h4 {
margin-bottom: 20px;
}
.w3paymentsaits h1 {
font-size: 32px;
margin-bottom: 40px;
}
.w3paymentsaits h4 {
font-size: 17px;
}
.w3paymentsaitspay {
margin-bottom: 20px;
}
#staplesbmincart {
position: fixed;
left: 29%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 640px) {
.w3paymentsaits h1 {
font-size: 28px;
margin-bottom: 35px;
}
div#my-cart-modal {
padding: 0 !important;
}
#staplesbmincart {
position: fixed;
left: 22%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 600px) {
.w3slideraits {
height: 350px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 17px;
}
.email-form input.email {
padding: 11px 10px;
}
.email-form input.submit {
font-size: 12px;
width: 26%;
}
.aitsyourself-grid2 {
padding: 22.5px 17px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 15px;
}
.aitscommercial h2 {
font-size: 19px;
}
.w3lsshoesaits-info h3 {
font-size: 30px;
}
.agilenwew3lsfashions h3 {
font-size: 30px;
margin-bottom: 25px;
}
.agilenwew3lsfashions {
padding: 45px 0;
}
.aitsstoreaddressw3-grid {
width: 31.5%;
}
.icons .bs-glyphicons li {
width: 31%;
}
.navbar-toggle {
margin-left: 6em;
}
.aitsclearance-sales-text h5 {
font-size: 26px;
}
.wthreeshop-a a {
font-size: 11px;
}
.agileshoppinggrids-bottom h3 {
font-size: 20px;
}
.agileinfofooter-grid ul li {
letter-spacing: 0px;
}
h1.w3wthreeheadingaits {
font-size: 22px;
padding: 20px 0;
}
.wthreeproductdisplay {
padding: 25px 0;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 14px;
}
.w3laccessoriesaits-grid {
padding: 13px;
}
.w3laccessoriesaits-grid h4 {
font-size: 14px;
}
.w3lsnewsletter-grid-1 p, .w3lsnewsletter-grid-1 h2 {
font-size: 22px;
}
.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 40px 0;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 21px;
}
.aitsstoreaddressw3-grid {
width: 31.2%;
padding: 15px;
}
.aitsstoreaddressw3-grid h5 {
font-size: 17px;
}
#map {
height: 220px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 20px;
}
.panel-heading {
padding: 10px 15px;
}
div#my-cart-modal .modal-dialog {
width: 80%;
}
div#my-cart-modal .modal-content {
padding: 20px;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
width: 20%;
}
}
@media screen and (max-width:568px) {
#staplesbmincart {
position: fixed;
left: 15%;
top: 7.9%;
width:380px;
}
}
@media screen and (max-width: 480px) {
.agileheader-topbar {
padding: 12px 0;
}
.w3slideraits {
height: 310px;
}
.wthreehome-latest-grid h4 {
font-size: 14px;
}
.wthreehome-latest {
padding: 35px 0;
}
.wthreewinter-coll h1 {
font-size: 19px;
}
.wthreewinter-coll p {
margin: 14px auto;
}
.style-grid ,.aitscommercial-grid, .agilelocationsw3ls-grid {
width: 100%;
float: none;
}
.style-grid-1 img {
height: 350px;
}
.style-image-1 img, .style-image-2 img {
height: 165px;
}
.aitsclearance-sales-text h2 {
font-size: 20px;
}
.aitsclearance-sales-text h4 {
font-size: 13px;
}
.aitsclearance-sales-text h5 small {
font-size: 14px;
}
.aitsclearance-sales-text {
width: 77%;
}
.agileshoppinggrids-bottom-grid {
padding: 0 .5em;
}
.agileshoppinggrids-bottom p {
width: 95%;
}
.agileinfonewsl h3 {
font-size: 22px;
}
.agileinfofooter-grid {
width: 100%;
float: none;
}
.agileinfofooter-grid.agileinfofooter-grid2 {
margin: 0.5em 0;
}
.agileinfofooter-grids {
padding-bottom: 20px;
}
.w3lscopyrightaitsgrid1 p {
margin-top: 0;
}
.w3layouts-nav-agile {
width: 27%;
}
ul.multi-column-dropdown li {
font-size: 13px;
}
.about-us-text h1 {
font-size: 20px;
}
.about-us-text {
padding: 25px 25px 0;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 11px;
}
.aitscommercial-grid1 {
padding: 25px;
}
p.w3teaseraits {
margin: 12px 0;
font-size: 13px;
}
.aitscommercial-grid1 a.popup-with-zoom-anim {
font-size: 12px;
}
.aitsstoreaddressw3-grid {
width: 47%;
}
.panel-title > a {
font-size: 0.8em;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 30px 0;
}
.w3lsnewsletter-grid-2 {
width: 87%;
}
.w3lsnewsletter-grid-1 p, .w3lsnewsletter-grid-1 h2 {
font-size: 19px;
}
.wthreeaddressaits-grid1 {
width: 100%;
float: none;
}
.aitsphonew3l {
margin: 20px 0;
}
.wthreeaddressaits-grid2 {
width: 100%;
float: none;
margin-top: 1.5em;
}
.w3paymentsaits h1 {
font-size: 22px;
margin-bottom: 25px;
}
.w3paymentsaits h4 {
font-size: 15px;
}
.w3paymentsaitspay {
margin-bottom: 16px;
}
li.wthreecartaits {
right: 13%;
}
.navbar-toggle {
margin-left: 5em;
}
td.text-center {
padding: 0 !important;
}
#staplesbmincart {
position: fixed;
left: 5%;
top: 7.9%;
width:370px;
}
#staplesbmincart ul {
clear: both;
float: left;
width: 100%;
margin: 5px 0 10px;
padding: 0.5em;
}
}
@media screen and (max-width: 414px) {
.navbar-toggle {
padding: 7px 7px;
}
.agileheader-topbar-grid2 ul li {
margin: 0 4px;
}
.w3slideraits {
height: 260px;
}
.wthreehome-latest {
padding: 25px 0;
}
.wthreehome-latest-grid h5 {
font-size: 12px;
}
.wthreehome-latest-grid h4 {
font-size: 13px;
}
.wthreehome-latest-grid h6 a {
font-size: 13px;
}
.wthreewinter-coll h1 {
font-size: 16px;
}
.wthreewinter-coll p {
width: 100%;
font-size: .9em;
}
.wthreeshop-a a {
padding: 10px 16px;
}
.wthreeshop-a {
margin-top: 21px;
}
.wthreewinter-coll, .aitsclearance-sales-text, .agileinfonewsl {
padding: 35px 0;
}
.style-grid-1 img {
height: 300px;
}
.style-grid-1-text p, .style-grid-2-text p {
font-size: 12px;
margin-bottom: 13px;
}
.style-image-1 img, .style-image-2 img {
height: 150px;
}
.aitsclearance-sales-text h5 {
font-size: 23px;
}
.wthreeshop-a a {
padding: 8px 16px;
}
.agileshoppinggrid {
padding: .5em;
}
.agileshoppinggrids-bottom {
margin-top: 12px;
}
.agileshoppinggrids-bottom h3 {
font-size: 17px;
}
p {
font-size: 13px;
}
div#my-cart-modal .modal-content {
padding: 18px;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
width: 24%;
font-size: 13px;
}
.modal-footer {
padding: 15px 0 0;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
width: 100% !important;
float: none;
}
.w3layouts-nav-agile {
width: 33%;
}
.dropdown-menu p {
margin-bottom: 10px;
}
p.promo {
padding: 7px 4px;
letter-spacing: 0px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 10px;
}
.aitsyourself-grid2 {
padding: 7px 14px;
}
.aitscommercial-grid1 {
padding: 20px;
}
.aitscommercial h2 {
font-size: 17px;
}
.w3laccessoriesaits-grids {
float: none;
width: 70%;
margin: 0 auto;
padding: 0;
}
.w3laccessoriesaits-grids.w3laccessoriesaits-grids2 {
margin-top: 1.5em;
}
.w3lsshoesaits {
padding: 40px 0;
}
.w3lsshoesaits-info h3 {
font-size: 23px;
}
.w3lsshoesaits-info p {
width: 90%;
}
.agilenwew3lsfashions h3 {
font-size: 23px;
margin-bottom: 16px;
text-shadow: 2px 2px #c41228;
}
.agilenwew3lsfashions h4 {
font-size: 11px;
margin-bottom: 12px;
line-height: 1.5em;
}
.clock .column {
width: 18%;
}
.timer {
font-size: 29px;
}
.clock .column {
width: 15%;
}
.text {
font-size: 10px;
}
.text {
font-size: 10px;
}
.aitsstoreaddressw3-grid {
width: 47%;
}
.aitsstoreaddressw3-grid h5 {
font-size: 15px;
}
.aitsstoreaddressw3-grid address ul li {
font-size: 12px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 75%;
}
.contact-info-grid-2 {
padding: 0 10px;
}
.contact-info-grid-2 h2 {
font-size: 22px;
}
.contact-info-grid-2 p {
line-height: 28px;
}
.wthreeaddressaits-grid1 ul li {
font-size: 12px;
}
h1.w3wthreeheadingaits {
font-size: 18px;
padding: 16px 0;
}
.wthreeproductdisplay {
padding: 10px 0;
}
.cbp-pggrid > li {
width: 70%;
padding: 10px 1%;
}
.single-top-right {
margin-top: 2em;
}
.single-top-right h1 {
font-size: 18px;
}
.single-price ul li:nth-child(1) {
font-size: 25px;
}
.panel-body {
font-size: 13px;
}
.w3lsnewsletter {
padding: 30px 0;
}
.aitssinglew3 .agileits.my-cart-btn {
width: 40%!important;
font-size: 13px!important;
}
div#my-cart-modal .modal-content {
padding: 20px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 13px;
}
div#my-cart-modal .modal-dialog {
width: 94%;
}
.navbar-toggle {
margin-left: 3em;
}
.dropdown-menu.multi, ul.dropdown-menu.multi.multi2, ul.dropdown-menu.multi.multi3, ul.dropdown-menu.multi.multi4 {
padding: 8px;
}
ul.multi-column-dropdown li {
line-height: 28px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 5px 2px;
}
.aitsaccordionw3layouts div#collapseThree h3 {
font-size: 20px;
}
.aitsaccordionw3layouts div#collapseThree {
padding: 25px 20px;
}
.aitsaccordionw3layouts div#collapseThree h4 {
font-size: 14px;
}
.aitsaccordionw3layouts div#collapseThree span {
padding-left: 105px;
padding-top: 0;
background-size: 61%;
}
.aitsaccordionw3layouts a.next {
margin: 0;
font-size: 13px;
}
.aitsaccordionw3layouts ul.ship li {
font-size: 13px;
}
.aitsaccordionw3layouts ul.ship {
margin-top: 20px;
}
.aitsaccordionw3layouts div#collapseFour {
padding: 20px;
}
.email-form input.submit {
font-size: 11px;
width: 27%;
}
.imagezoom-cursor {
display: none;
}
.panel-title > a {
line-height: 1.6em;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
margin-top: 0.8em;
}
.agileheader-topbar-grid2 ul li {
font-size: 12px;
margin: 0 3px;
}
.dropdown-menu p {
font-size: .8em;
}
}
@media screen and (max-width: 384px) {
.w3slideraits {
height: 220px;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 30px;
}
.agileinfonewsl p {
font-size: 13px;
margin-bottom: 20px;
}
.agileinfonewsl h3 {
font-size: 20px;
}
div#my-cart-modal .modal-header {
padding: 0 5px 8px;
}
.w3paymentsaits h4 {
font-size: 14px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 18px;
margin-bottom: 0px;
}
.wthreeshop-a {
margin-top: 5px;
padding: 0;
}
.wthreeshop-a a {
padding: 8px 16px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 18px;
margin-bottom: 20px
}
.panel-body {
font-size: 12px;
}
input[type="text"], input[type="password"], input.email.aitsw3ls, textarea.text {
margin-bottom: 15px;
padding: 10px;
}
ul.tick li {
font-size: 13px;
}
ul.tick {
margin: 5px 0 20px;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 7.9%;
width: 347px;
}
#staplesbmincart form {
position: relative;
padding: 0.5em;
}
}
@media screen and (max-width: 375px) {
.email-form input.email {
width: 68%;
font-size: 12px;
}
.email-form input.submit {
width: 28%;
}
.w3lsnewsletter-grid-2 {
width: 95%;
}
.flex-control-thumbs li:nth-child(2) {
margin: 0.5em 0;
}
.single-top-left {
margin-left: 22%;
width: 70%;
}
a.navbar-brand {
font-size: 16px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 11px;
line-height: 27px;
}
.aitscommercial h2 {
font-size: 15px;
}
.aitsstoreaddressw3-grid {
width: 46%;
}
.panel-group .panel + .panel {
margin-top: 0;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 7.9%;
width: 341px;
}
#staplesbmincart .sbmincart-subtotal {
bottom: 3px;
padding-left: 0;
font-size: 13px;
display: block;
text-align: left;
}
#staplesbmincart .sbmincart-submit {
font-size: 0.8em;
font-weight: 700;
}
#staplesbmincart .sbmincart-details-name {
float: left;
width: 46%;
}
.w3slideraits {
height:190px;
}
}
@media screen and (max-width: 320px) {
.navbar-default .navbar-toggle {
margin: 10px 20px 0;
}
li.wthreecartaits {
font-size: 30px;
right: 15%;
top: 8px;
}
.badge {
padding: 3px 5px;
font-size: 9px;
}
.agileheader-topbar-grid1 p {
margin-left: 0;
}
.agilemodel-slider {
height: 235px!important;
}
.film_roll_prev, .film_roll_next {
top: 36% !important;
}
.wthreehome-latest-grid {
float: none;
width: 90%;
margin: 0 auto;
}
.wthreewinter-coll h1 {
font-size: 14px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
margin-bottom: 6px;
}
.aitsclearance-sales-text h2 {
font-size: 18px;
}
.aitsclearance-sales-text h4 {
margin-bottom: 12px;
}
.aitsclearance-sales-text h2 {
font-size: 16px;
margin-bottom: 15px;
}
.aitsclearance-sales-text h5 {
font-size: 20px;
}
.agileshoppinggrids-bottom {
margin-top: 0;
}
.agileshoppinggrids-bottom p {
width: 100%;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 17px;
}
.agileinfonewsl h3 {
font-size: 18px;
}
.wthreewinter-coll, .aitsclearance-sales-text, .agileinfonewsl {
padding: 28px 0;
}
.aitsaccordionw3layouts div#collapseThree h3 {
font-size: 16px;
}
.single-top-right {
padding: 0;
}
.aitsaccordionw3layouts div#collapseThree h4 {
font-size: 13px;
}
.aitsaccordionw3layouts div#collapseThree span {
padding-left: 84px;
}
h1.w3wthreeheadingaits {
font-size: 15px;
padding: 14px 0;
}
div#my-cart-modal .modal-content {
padding: 10px;
}
div#my-cart-modal {
padding: 0 !important;
}
div#my-cart-modal .modal-dialog {
width: 96%;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
padding: 6px 0;
}
.cbp-pggrid > li {
width: 85%;
}
.aitsaccordionw3layouts .panel-heading {
padding: 8px 12px;
}
.w3paymentsaits h4 {
font-size: 13px;
}
.about-us-text {
padding: 20px 15px 0;
}
.about-us-text h1 {
font-size: 18px;
}
.aitsyourself-grid2 {
width: 31%;
}
.aitsyourself-grid1 {
width: 36%;
}
.w3laccessoriesaits-grids {
width: 90%;
}
.w3lsshoesaits-info p {
margin: 15px auto;
}
.w3lsshoesaits {
padding: 30px 0;
}
.agilenwew3lsfashions h3 {
font-size: 20px;
}
.agilenwew3lsfashions {
padding: 35px 0;
}
.aitsstoreaddressw3-grid {
width: 100%;
}
#map {
height: 200px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 15px;
margin-bottom: 20px;
}
ul.tick li {
padding: 0;
width: 100%;
float: none;
}
input[type="submit"] {
padding: 8px 0;
font-size: 13px;
}
ul.tick {
margin: 5px 0 15px;
}
#small-dialog1 h3, #small-dialog2 h3, #small-dialog3 h4 {
font-size: 20px;
}
.w3aitscodes h3.head-top {
font-size: 21px;
}
.contact-info-grid-2 h2 {
font-size: 20px;
}
.contact-info-grid-2 {
padding: 0;
}
.contact-info-grid-2 h2 {
font-size: 19px;
}
div#my-cart-modal .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
padding: 10px 4px;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 16.9%;
width: 289px;
}
.w3slideraits {
height:175px;
}
}
/*-- //Responsive-Code --*/ | assets/css/uikit/custom.css | .header-color {
background-color: #E3E1E4;
}
.uk-text-dark
{
color: #414241 !important;
}
/*-- Clearance-Sale --*/
.aitsclearance-sales {
background-image: url("../../../assets/images/banner/banner3.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-attachment: fixed;
text-align: center;
}
.aitsclearance-sales-text {
width: 50%;
padding: 300px 0;
background-color: rgba(0, 0, 0, 0.35);
}
.aitsclearance-sales-text h2 {
font-size: 50px;
color: #fff;
text-shadow: 2px 2px #32323b;
margin-bottom: 20px;
}
.aitsclearance-sales-text h4 {
color: #FFF;
font-size: 30px;
text-shadow: 2px 2px #32323b;
margin-bottom: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 75px;
color: #FFF;
text-shadow: 3px 3px #2f302f;
}
.aitsclearance-sales-text h5 small {
font-size: 30px;
color: #EEE;
text-shadow: 2px 2px #001c44;
}
/*-- //Clearance-Sale --*/
/*-- Copyright --*/
.w3lscopyrightaits {
padding: 0 100px 50px;
}
.w3lscopyrightaitsgrid {
padding: 0;
}
.w3lscopyrightaitsgrid1 p {
color: #000;
margin-top: 10px;
}
.w3lscopyrightaitsgrid1 p a {
font-family: 'Montserrat', sans-serif;
color: #000;
}
.w3lscopyrightaitsgrid1 p a:hover {
color: #c41228;
}
/*-- Footer-Social-Icons --*/
.agilesocialwthree {
text-align: right;
}
ul.social-icons li {
display: inline-block;
margin: 0 5px;
}
.agilesocialwthree ul.social-icons li a {
font-size: 30px;
color: #000;
}
ul.social-icons li a.facebook:hover {
color: #3b5998;
}
ul.social-icons li a.twitter:hover {
color: #1dcaff;
}
ul.social-icons li a.googleplus:hover {
color: #d34836;
}
ul.social-icons li a.instagram:hover {
color: #517fa4;
}
ul.social-icons li a.youtube:hover {
color: #bb0000;
}
/*-- //Footer-Social-Icons --*/
/*-- //Copyright --*/
/*-- Footer --*/
.agileinfofooter {
padding: 50px 50px;
}
.agileinfofooter-grids {
padding-bottom: 10px;
border-bottom: 1px solid #333;
}
.agileinfofooter-grid {
padding: 0;
}
.agileinfofooter-grid ul li {
display: block;
line-height: 30px;
font-size: 12px;
letter-spacing: 1px;
font-family: 'Montserrat', sans-serif;
color: #000;
}
.agileinfofooter-grid ul li a {
color: #000;
}
.agileinfofooter a:hover {
color: #c41228;
}
.agileinfofooter {
padding: 35px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 35px;
}
.agileinfofooter-grid {
width: 33.3%;
float: left;
}
.w3lscopyrightaitsgrid1 {
width: 60%;
float: left;
}
.w3lscopyrightaitsgrid2 {
width: 40%;
float: left;
}
/*-- //Footer --*/
/*-- Responsive-Code --*/
@media screen and (max-width: 1920px) {
li.wthreesearch {
right: 25%;
}
li.wthreecartaits {
right: 20.25%;
}
div#my-cart-modal .modal-dialog {
width: 45%;
}
.wthreewinter-coll {
padding: 200px 0 175px;
}
.style-grid-1 img {
height: 950px;
}
.style-image-1 img, .style-image-2 img {
height: 475px;
}
.style-grid-1-text, .style-grid-2-text {
padding: 100px;
}
.about-us-text {
padding: 130px;
}
.about-us-text h1 {
margin-bottom: 31px;
}
.aitsyourself-grid2 {
padding: 75px;
}
.aitscommercial-grid1 {
padding: 153px;
}
.agilenwew3lsfashions {
padding: 200px 0;
}
li.cbp-pgoptcompare {
padding-left: 52px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 45px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -60px;
}
.cbp-pgopttooltip {
width: 134px;
}
}
@media screen and (max-width: 1680px) {
li.wthreecartaits {
right: 16%;
}
li.wthreesearch {
right: 20%;
}
.about-us-text {
padding: 75px;
}
.about-us-text h1 {
margin-bottom: 32px;
}
.aitsyourself-grid2 {
padding: 53px 56px 52px;
}
li.cbp-pgoptcompare {
padding-left: 43px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -52px;
}
.cbp-pgopttooltip {
width: 115px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 36.5px;
}
}
@media screen and (max-width: 1600px) {
li.wthreecartaits {
right: 14.5%;
}
div#my-cart-modal .modal-dialog {
width: 50%;
}
.wthreewinter-coll {
padding: 175px 0 150px;
}
.style-grid-1 img {
height: 792px;
}
.style-image-1 img, .style-image-2 img {
height: 100%;
}
.style-grid-1-text, .style-grid-2-text {
padding: 50px;
}
.about-us-text {
padding: 63px;
}
.about-us-text h1 {
margin-bottom: 30px;
}
.aitsyourself-grid2 {
padding: 53px 52px 52px;
}
.aitscommercial-grid1 {
padding: 100px;
}
.agilenwew3lsfashions {
padding: 150px 0;
}
li.cbp-pgoptcompare {
padding-left: 40px;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -49px;
}
.cbp-pgopttooltip {
width: 108px;
}
}
@media screen and (max-width: 1440px) {
li.wthreecartaits {
right: 10%;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 25%;
}
.wthreewinter-coll {
padding: 150px 0 140px;
}
.style-grid-1 img {
height: 712px;
}
.about-us-text {
padding: 36px;
}
.aitsyourself-grid2 {
padding: 41px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 30px;
line-height: 47px;
}
.aitscommercial-grid1 {
padding: 65px;
}
p.w3teaseraits {
margin: 20px 0;
}
li.cbp-pgoptcompare {
padding-left: 34px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 27px;
}
.single-top-left {
width: 40%;
margin-left: 10%;
}
.cbp-pgoptsize .cbp-pgopttooltip {
margin-left: -44px;
width: 97px;
}
}
@media screen and (max-width: 1366px) {
li.wthreesearch {
right: 14%;
}
li.wthreecartaits {
right: 8%;
}
div#my-cart-modal .modal-dialog {
width: 60%;
}
.wthreewinter-coll {
padding: 100px 0;
}
.style-grid-1 img {
height: 674px;
}
.aitsclearance-sales-text h5 small {
font-size: 25px;
}
.agileinfonewsl {
padding: 275px 0;
}
.about-us-text {
padding: 35px;
}
.about-us-text h1 {
font-size: 35px;
margin-bottom: 20px;
}
.about-us-text p {
line-height: 27px;
}
.aitsyourself-grid2 {
padding: 42px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 28px;
line-height: 43px;
}
.aitscommercial-grid1 {
padding: 50px;
}
p.w3teaseraits {
margin: 22.5px 0;
}
.agilenwew3lsfashions {
padding: 125px 0;
}
li.cbp-pgoptcompare {
padding-left: 30px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 24px;
}
.single-top-left {
width: 45%;
margin-left: 5%;
}
#map {
height: 500px;
}
button.w3l-cart.pw3l-cart {
font-size: 4em;
padding: 0px 0.5em;
}
}
@media screen and (max-width: 1280px) {
li.wthreesearch {
right: 11%;
}
li.wthreecartaits {
right: 5.5%;
}
.w3slideraits {
height: 700px;
}
.style-grid-1 img {
height: 632px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 38px;
}
.aitsclearance-sales-text h5 {
font-size: 70px;
}
.about-us-text {
padding: 25px;
}
.about-us-text h1 {
font-size: 30px;
margin-bottom: 15px;
}
.aitsyourself-grid2 {
padding: 35px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 30px;
line-height: 40px;
}
.aitscommercial h2 {
font-size: 35px;
margin-bottom: 20px;
}
p.w3teaseraits {
margin: 16.5px 0;
}
li.cbp-pgoptcompare {
padding-left: 26px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 21px;
}
.single-top-left {
width: 45%;
margin-left: 10%;
}
.single-top-right {
width: 45%;
padding-left: 1em;
}
}
@media screen and (max-width: 1080px) {
a.navbar-brand {
font-size: 18px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
padding: 10px;
font-size: 13px;
}
.dropdown-menu.multi {
min-width: 940px!important;
left: -184px;
}
.dropdown-menu {
width: 940px!important;
}
ul.dropdown-menu.multi.multi2 {
left: -246px;
}
ul.dropdown-menu.multi.multi3 {
left: -333px;
}
ul.dropdown-menu.multi.multi4 {
left: -457px;
}
.w3layouts-nav-agile {
padding: 5px;
width: 28.3%;
}
ul.multi-column-dropdown li.heading {
margin-top: -5px;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
width: 15%;
padding-left: 15px!important;
}
.dropdown-menu p {
margin-bottom: 17px;
}
p.promo {
width: 940px;
margin-bottom: 0;
}
li.wthreesearch {
right: 13%;
}
li.wthreesearch input[type="search"] {
padding: 5px;
width: 150px;
}
li.wthreecartaits {
right: 6.5%;
}
div#my-cart-modal .modal-dialog {
width: 75%;
}
.w3slideraits {
height: 600px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 30%;
}
.style-grid-1-text, .style-grid-2-text {
padding: 30px;
}
.style-grid-1 img {
height: 550px;
}
.style-image-1 img, .style-image-2 img {
height: 275px;
}
.style-grid-1 img {
height: 550px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 34px;
}
.style-grid-1-text p, .style-grid-2-text p {
line-height: 25px;
padding-right: 0;
}
.aitsclearance-sales-text {
padding: 175px 0;
}
.aitsclearance-sales-text h2 {
font-size: 43px;
}
.aitsclearance-sales-text h5 {
font-size: 65px;
}
.aitsclearance-sales-text h5 small {
font-size: 20px;
}
.single-top-left {
width: 45%;
margin-left: 6%;
}
.single-top-right {
width: 49%;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 35px;
margin-bottom: 10px;
}
.agilelocationsw3ls-grid1 p {
line-height: 30px;
padding: 20px 0;
}
.aitsstoreaddressw3-grid {
width: 23.9%;
float: left;
}
button.w3l-cart.pw3l-cart {
font-size: 4em;
padding: 0px 0.3em;
}
#staplesbmincart {
position: fixed;
left: 53%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 1050px) {
li.wthreesearch {
right: 15%;
}
li.wthreecartaits {
right: 8%;
}
.single-top-left {
margin-left: 7%;
}
.single-top-right {
width: 48%;
}
.agilemodel-slider {
height: 300px!important;
}
.film_roll_wrapper {
height: 300px!important;
}
.film_roll_shuttle {
height: 300px!important;
}
.film_roll_child {
text-align: center;
}
.film_roll_wrapper img {
width: 50%;
}
.wthreehome-latest {
background-color: #EEE;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 33px;
}
.aitsclearance-sales-text {
padding: 150px 0;
}
.aitsclearance-sales-text h2 {
font-size: 42px;
}
.aitsclearance-sales-text h5 {
font-size: 60px;
}
.agileshoppinggrids-bottom p {
width: 85%;
}
.agileinfonewsl {
padding: 225px 0;
}
a.popup-with-zoom-anim:hover {
color: #ffffff;
}
.about-us-text {
padding: 0 0 0 15px;
}
.about-us-text h1 {
font-size: 25px;
margin-bottom: 10px;
}
.about-us-text p {
line-height: 24px;
font-size: 13px;
}
.aitsyourself-grid1, .aitsyourself-grid3 {
height: 500px;
}
.aitsyourself-grid2 {
padding: 20px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 26px;
line-height: 35px;
}
.aitscommercial-grid1 {
padding: 30px;
}
.aitscommercial h2 {
font-size: 30px;
margin-bottom: 10px;
}
.aitscommercial p {
line-height: 27px;
font-size: 13px;
}
p.w3teaseraits {
font-size: 14px;
margin: 16px 0;
}
.w3laccessoriesaits-grids1 {
padding: 0 15px 0 30px;
}
.w3laccessoriesaits-grids2 {
padding: 0 30px 0 15px;
}
.w3laccessoriesaits-grid {
padding: 20px;
}
.w3laccessoriesaits-grid .grid figure {
margin-bottom: 15px;
}
.w3laccessoriesaits-grid h4 {
font-size: 16px;
}
.w3laccessoriesaits-grid p {
font-size: 13px;
margin: 10px 0 20px;
}
.w3laccessoriesaits-grid h6 {
margin-bottom: 10px;
}
.w3lsshoesaits {
padding: 150px 0;
}
.agilenwew3lsfashions h3 {
font-size: 45px;
margin-bottom: 40px;
}
.agilenwew3lsfashions h4 {
font-size: 25px;
margin-bottom: 30px;
}
.timer {
font-size: 80px;
}
h1.w3wthreeheadingaits {
font-size: 35px;
padding: 35px 0;
}
.wthreeproductdisplay {
padding: 50px 0;
}
.contact-info-grid-2 {
padding: 20px;
}
.contact-info-grid-2 h2 {
font-size: 30px;
margin-bottom: 10px;
}
.contact-info-grid-2 p {
font-size: 13px;
}
}
@media screen and (max-width: 1024px) {
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 5px 17px;
}
.dropdown-menu.multi {
min-width: 935px!important;
}
.dropdown-menu {
width: 935px!important;
}
p.promo {
width: 935px;
}
.agileheader-topbar-grid1 p {
margin-left: 3px;
font-size: 13px;
}
.agileheader-topbar-grid2 ul li {
font-size: 13px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 32%;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 32px;
}
.style-grid-1-text p, .style-grid-2-text p {
font-size: 13px;
}
.aitsclearance-sales-text h2 {
font-size: 40px;
}
.aitsclearance-sales-text h5 {
font-size: 56px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 75px 0;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 35px;
margin-bottom: 35px;
}
.agileshoppinggrids-bottom {
margin-top: 30px;
}
.agileinfonewsl {
padding: 200px 0;
}
.agileinfofooter-grid ul li {
line-height: 27px;
font-size: 11px;
}
.agileinfofooter {
padding: 35px 50px;
}
.agileinfofooter-grids {
padding-bottom: 35px;
}
.w3lscopyrightaits {
padding: 0 50px 35px;
}
.aitscommercial-grid1 {
padding: 25px;
}
p.w3teaseraits {
margin: 16.5px 0;
}
.w3laccessoriesaits {
text-align: center;
}
li.cbp-pgoptcompare {
padding-left: 24px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 19px;
}
.single-top-left {
margin-left: 8%;
width: 44%;
}
.single-top-right h1 {
font-size: 25px;
margin-bottom: 10px;
}
.rating {
margin: 15px 0;
}
.single-price ul li {
font-size: 15px;
line-height: 33px;
}
.single-price ul li:nth-child(1) {
font-size: 45px;
}
p.single-price-text {
margin: 5px 0 15px;
line-height: 25px;
font-size: 13px;
}
}
@media screen and (max-width: 991px) {
.container {
width: 100%;
}
ul.dropdown-menu.multi.multi2 {
left: -247px;
}
ul.dropdown-menu.multi.multi4 {
left: -458px;
}
li.wthreesearch {
right: 11%;
}
li.wthreecartaits {
right: 5%;
}
.badge {
position: absolute;
right: -10px;
top: 20px;
}
.agileheader-topbar-grid, .wthreehome-latest-grid, .style-grid, .agileshoppinggrid, .agileshoppinggrids-bottom-grid, .about-us-image, .aitscommercial-grid, .w3laccessoriesaits-grids, .agilelocationsw3ls-grid {
width: 50%;
float: left;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 31px;
}
.agileinfofooter {
padding: 35px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 35px;
}
.agileinfofooter-grid {
width: 33.3%;
float: left;
}
.w3lscopyrightaitsgrid1 {
width: 60%;
float: left;
}
.w3lscopyrightaitsgrid2 {
width: 40%;
float: left;
}
.about-us-text {
padding: 40px 30px 0;
}
.aitsyourself-grid1 {
width: 40%;
float: left;
}
.aitsyourself-grid2 {
width: 27%;
float: left;
padding: 22.5px;
}
.aitsyourself-grid3 {
width: 33%;
float: left;
}
.aitscommercial h2 {
font-size: 25px;
}
.aitscommercial-grid1 {
padding: 18px;
}
p.w3teaseraits {
margin: 21px 0;
}
.w3lsshoesaits-info p {
width: 55%;
}
.w3lsnewsletter-grid-1 {
width: 40%;
float: left;
}
.w3lsnewsletter-grid-2 {
width: 60%;
float: left;
}
.single-top-left {
margin-left: 10%;
width: 42%;
float: left;
}
.single-top-right {
width: 48%;
float: left;
}
#map {
height: 450px;
}
.wthreeaddressaits-grid1 {
width: 40%;
float: left;
}
.wthreeaddressaits-grid2 {
width: 60%;
float: left;
}
#staplesbmincart {
position: fixed;
left: 35%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 960px) {
.w3slideraits {
height: 550px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 35%;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 29px;
}
.aitsclearance-sales-text h2 {
font-size: 38px;
}
.aitsclearance-sales-text h5 {
font-size: 51px;
}
.aitsyourself-grid2 {
padding: 22.5px 22px;
}
.aitscommercial-grid1 {
padding: 15px;
}
.aitscommercial h2 {
margin-bottom: 11px;
}
.aitscommercial p {
line-height: 23px;
}
.agilenwew3lsfashions {
padding: 100px 0;
}
.cbp-pgitem {
padding: 1em;
}
li.cbp-pgoptcompare {
padding-left: 22px;
}
button.btn.btn-danger.my-cart-btn {
padding: 0 16px;
}
}
@media screen and (max-width: 800px) {
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
padding: 10px 6px;
font-size: 12px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 2px 17px;
}
li.wthreecartaits {
right: 7%;
}
span.my-cart-icon {
position: absolute !important;
}
li.wthreesearch {
right: 9%;
}
li.wthreesearch input[type="search"] {
width: 115px;
}
.agileheader-topbar-grid{
width: 40%;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
float: right;
width: 55%;
}
.aitsclearance-sales-text {
padding: 105px 0;
width: 61%;
}
.aitsclearance-sales-text h2 {
font-size: 32px;
}
.aitsclearance-sales-text h4 {
font-size: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 36px;
}
.aitsclearance-sales-text h5 small {
font-size: 15px;
}
.agileinfonewsl {
padding: 105px 0;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 45px;
}
.w3layouts-nav-agile {
width: 20.3%;
}
.dropdown-menu.multi {
left: -199px;
}
ul.dropdown-menu.multi.multi4 {
left: -417px;
}
ul.dropdown-menu.multi.multi3 {
left: -313px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 19px;
}
.aitscommercial h2 {
font-size: 22px;
}
.aitscommercial-grid {
width: 100%;
float: none;
}
.aitscommercial-grid1 {
padding: 35px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 60px 0;
}
.w3lsshoesaits-info h3 {
font-size: 40px;
}
.w3lsshoesaits-info p {
width: 70%;
}
.wthreeshop-a a {
padding: 10px 40px;
}
.w3lsshoesaits {
padding: 100px 0;
}
.agilenwew3lsfashions h4 {
font-size: 15px;
margin-bottom: 25px;
}
.agilenwew3lsfashions h3 {
font-size: 35px;
margin-bottom: 28px;
}
.clock .column {
width: 15%;
}
.timer {
font-size: 58px;
}
.text {
font-size: 13px;
}
.agilenwew3lsfashions {
padding: 70px 0;
}
.w3lsnewsletter-grid-1 {
width: 100%;
float: none;
text-align: center;
padding: 0 0 20px;
}
.w3lsnewsletter-grid-2 {
width: 60%;
float: none;
margin: 0 auto;
}
.agileinfofooter {
padding: 30px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 25px;
}
.w3paymentsaits h4 {
font-size: 18px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 28px;
}
.agilelocationsw3ls-grid1 p {
padding: 8px 0;
}
.aitsstoreaddressw3-grid {
width: 23.5%;
}
#map {
height: 300px;
}
.email-form input.email {
padding: 13px 10px;
}
.email-form input.submit {
padding: 13px 0;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 30px;
margin-bottom: 30px;
}
.panel-heading {
padding: 15px 15px;
}
.panel-group {
margin-bottom: 0;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 40%;
}
.contact-info-grid-2 {
padding: 0 20px;
}
.contact-info-grid-2 h2 {
font-size: 24px;
}
.cbp-pginfo h3, .cbp-pginfo span {
width: 74%;
font-size: 16px;
}
.cbp-pginfo span {
width: 26%;
}
.cbp-pggrid > li {
width: 32%;
padding: 20px 1% 25px 1%;
}
li.cbp-pgoptcompare {
padding-left: 12px;
}
button.btn.btn-danger.my-cart-btn {
padding: 6px 11px;
font-size: 32px;
}
.single-price ul li:nth-child(1) {
font-size: 33px;
}
.single-top-right .agilesocialwthree {
margin-top: 30px;
}
.panel-body {
padding: 1.5em;
}
h1.w3wthreeheadingaits {
font-size: 30px;
padding: 30px 0;
}
.cbp-pgoptions li:before, .cbp-pgoptions li > span {
font-size: 17px;
}
.cbp-pgoptions li.cbp-pgoptsize > span {
font-size: 20px;
}
input[type=checkbox].css-checkbox + label.css-label {
padding-left: 0;
height: 25px;
width: 25px;
background-position: 0px -24px;
background-size: 100%;
}
li.cbp-pgoptcompare {
padding: 16px 0;
text-align: center;
}
.single-price ul li:nth-child(1) small {
font-size: 14px;
}
button.w3l-cart.pw3l-cart {
font-size: 3em;
padding: 0.3em 0.3em;
border-left: none!important;
}
}
@media screen and (max-width: 768px) {
li.wthreesearch {
right: 8%;
}
a.navbar-brand {
padding: 15px 9px;
}
.agileheader-topbar {
padding: 15px 0;
}
.wthreewinter-coll h1 {
font-size: 25px;
}
.wthreewinter-coll p {
width: 75%;
}
.wthreewinter-coll {
padding: 75px 0;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 20px;
}
.style-image-1 img, .style-image-2 img {
height: 245px;
}
.style-grid-1 img {
height: 490px;
}
.aitsclearance-sales-text,.agileinfonewsl {
padding: 65px 0;
}
.dropdown-menu.multi {
left: -190px;
}
ul.dropdown-menu.multi.multi2 {
left: -235px;
}
ul.dropdown-menu.multi.multi3 {
left: -302px;
}
ul.dropdown-menu.multi.multi4 {
left: -406px;
}
.w3layouts-nav-agile {
width: 20%;
}
li.wthreecartaits {
top: 1px;
font-size: 35px;
}
.w3lsshoesaits-info h3 {
font-size: 32px;
}
.w3lsshoesaits-info p {
margin: 20px auto;
}
.w3lsshoesaits {
padding: 60px 0;
}
.timer {
font-size: 40px;
}
.clock .column {
width: 11%;
}
.agilenwew3lsfashions {
padding: 55px 0;
}
.w3lsnewsletter-grid-2 {
width: 70%;
}
.w3lsnewsletter {
padding: 40px 0;
}
.cbp-pginfo h3, .cbp-pginfo span {
width: 80%;
font-size: 14px;
}
.cbp-pginfo span {
width: 20%;
padding: 15px 0;
text-align: center;
}
.single-top-right {
padding-right: 0;
}
.single-top-right h1 {
font-size: 22px;
}
.imagezoom-view {
display: none;
}
}
@media screen and (max-width: 767px) {
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #c41228;
}
.navbar-toggle{
float: none;
margin-left: 12em;
background: #c41228;
}
.navbar-default .navbar-toggle {
border-color: #c41228;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-nav {
margin: 7.5px 0;
}
div#bs-megadropdown-tabs {
background: rgba(255, 255, 255, 0.95);
}
li.wthreecartaits.wthreecartaits2 {
display: none;
}
ul.w3header-cart li.wthreecartaits {
display: block;
}
li.wthreecartaits {
right: 10%;
}
li.wthreesearch {
position: inherit;
padding: 0 0 12px;
}
li.wthreesearch input[type="search"] {
width: 190px;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
width: 60%;
}
}
@media screen and (max-width: 736px) {
.dropdown-menu.multi {
padding: 0px 0 0;
}
.w3layouts-nav-agile {
width: 25%;
float: left;
}
.dropdown-menu {
width: 100% !important;
}
p.promo {
width: 100%;
}
.dropdown-menu.multi ,ul.dropdown-menu.multi.multi2,ul.dropdown-menu.multi.multi3,ul.dropdown-menu.multi.multi4{
left: 0;
padding: 14px;
position: inherit !important;
min-width: 0 !important;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 13px 2px;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
padding-left: 0 !important;
}
.aitsclearance-sales-text h2 {
font-size: 28px;
}
.aitsclearance-sales-text h4 {
font-size: 17px;
}
.cbp-pginfo h3, .cbp-pginfo span {
padding: 15px 8px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 17px;
}
.aitsstoreaddressw3-grid {
width: 31.8%;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 45%;
padding: 20px;
}
.contact-info-grid-2 {
margin-top: 2em;
}
.panel-title > a {
font-size: 0.9em;
}
.single-price ul li {
font-size: 13px;
}
.agileinfofooter {
padding: 20px 15px;
}
.w3lscopyrightaits {
padding: 0 15px 20px;
}
}
@media screen and (max-width: 667px) {
.agileheader-topbar-grid,.agileheader-topbar-grid.agileheader-topbar-grid2{
width: 100%;
float: none;
text-align: center;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
margin-top: 1em;
}
.navbar-toggle {
margin-left: 9em;
}
.w3slideraits {
height: 400px;
}
.wthreehome-latest {
padding: 40px 0;
}
.wthreewinter-coll h1 {
font-size: 22px;
}
.wthreewinter-coll p {
width: 85%;
}
.wthreewinter-coll,.aitsclearance-sales-text, .agileinfonewsl {
padding: 50px 0;
}
.wthreeshop-a a {
padding: 10px 30px;
}
.style-grid-1-text, .style-grid-2-text {
padding: 20px;
}
.aitsclearance-sales-text h5 {
font-size: 32px;
}
.aitsclearance-sales-text h2 {
font-size: 24px;
}
.aitsclearance-sales-text h4 {
font-size: 15px;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 45px 0;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 35px;
}
.agileinfonewsl h3 {
font-size: 25px;
margin-bottom: 15px;
}
.agileinfonewsl p {
font-size: 14px;
margin-bottom: 30px;
}
.aitsclearance-sales-text, .agileinfonewsl {
padding: 45px 0;
}
.w3lscopyrightaitsgrid1,.w3lscopyrightaitsgrid2{
width: 100%;
float: none;
text-align: center;
}
.agilesocialwthree {
text-align: center;
margin-top: 1em;
}
.agileheader-banner.w3mensaits {
padding-top: 0;
}
h1.w3wthreeheadingaits {
font-size: 25px;
padding: 27px 0;
}
.wthreeproductdisplay {
padding: 35px 0;
}
.cbp-pggrid > li {
width: 48%;
padding: 20px 1% 10px 1%;
}
.single-top-left {
margin-left: 15%;
width: 42%;
float: none;
}
.single-top-right {
padding-right: 0;
margin-top: 1em;
float: none;
width: 100%;
}
.single-price ul li:nth-child(1) {
font-size: 30px;
}
.aitssinglew3 .agileits.my-cart-btn {
width: 30%!important;
}
.aitsaccordionw3layouts {
margin-top: 25px;
}
.aitsaccordionw3layouts .panel-heading {
padding: 12px;
}
.panel-body {
padding: 1em;
}
.w3lsnewsletter-grid-2 {
width: 77%;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 15px;
}
.aitscommercial-grid1 a.popup-with-zoom-anim {
padding: 8px 30px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 25px;
}
.aitsstoreaddressw3-grid {
width: 31.6%;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 25px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 60%;
}
#small-dialog1 h3, #small-dialog2 h3, #small-dialog3 h4 {
margin-bottom: 20px;
}
.w3paymentsaits h1 {
font-size: 32px;
margin-bottom: 40px;
}
.w3paymentsaits h4 {
font-size: 17px;
}
.w3paymentsaitspay {
margin-bottom: 20px;
}
#staplesbmincart {
position: fixed;
left: 29%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 640px) {
.w3paymentsaits h1 {
font-size: 28px;
margin-bottom: 35px;
}
div#my-cart-modal {
padding: 0 !important;
}
#staplesbmincart {
position: fixed;
left: 22%;
top: 7.9%;
width: 420px;
}
}
@media screen and (max-width: 600px) {
.w3slideraits {
height: 350px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
font-size: 17px;
}
.email-form input.email {
padding: 11px 10px;
}
.email-form input.submit {
font-size: 12px;
width: 26%;
}
.aitsyourself-grid2 {
padding: 22.5px 17px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 15px;
}
.aitscommercial h2 {
font-size: 19px;
}
.w3lsshoesaits-info h3 {
font-size: 30px;
}
.agilenwew3lsfashions h3 {
font-size: 30px;
margin-bottom: 25px;
}
.agilenwew3lsfashions {
padding: 45px 0;
}
.aitsstoreaddressw3-grid {
width: 31.5%;
}
.icons .bs-glyphicons li {
width: 31%;
}
.navbar-toggle {
margin-left: 6em;
}
.aitsclearance-sales-text h5 {
font-size: 26px;
}
.wthreeshop-a a {
font-size: 11px;
}
.agileshoppinggrids-bottom h3 {
font-size: 20px;
}
.agileinfofooter-grid ul li {
letter-spacing: 0px;
}
h1.w3wthreeheadingaits {
font-size: 22px;
padding: 20px 0;
}
.wthreeproductdisplay {
padding: 25px 0;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 14px;
}
.w3laccessoriesaits-grid {
padding: 13px;
}
.w3laccessoriesaits-grid h4 {
font-size: 14px;
}
.w3lsnewsletter-grid-1 p, .w3lsnewsletter-grid-1 h2 {
font-size: 22px;
}
.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 40px 0;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 21px;
}
.aitsstoreaddressw3-grid {
width: 31.2%;
padding: 15px;
}
.aitsstoreaddressw3-grid h5 {
font-size: 17px;
}
#map {
height: 220px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 20px;
}
.panel-heading {
padding: 10px 15px;
}
div#my-cart-modal .modal-dialog {
width: 80%;
}
div#my-cart-modal .modal-content {
padding: 20px;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
width: 20%;
}
}
@media screen and (max-width:568px) {
#staplesbmincart {
position: fixed;
left: 15%;
top: 7.9%;
width:380px;
}
}
@media screen and (max-width: 480px) {
.agileheader-topbar {
padding: 12px 0;
}
.w3slideraits {
height: 310px;
}
.wthreehome-latest-grid h4 {
font-size: 14px;
}
.wthreehome-latest {
padding: 35px 0;
}
.wthreewinter-coll h1 {
font-size: 19px;
}
.wthreewinter-coll p {
margin: 14px auto;
}
.style-grid ,.aitscommercial-grid, .agilelocationsw3ls-grid {
width: 100%;
float: none;
}
.style-grid-1 img {
height: 350px;
}
.style-image-1 img, .style-image-2 img {
height: 165px;
}
.aitsclearance-sales-text h2 {
font-size: 20px;
}
.aitsclearance-sales-text h4 {
font-size: 13px;
}
.aitsclearance-sales-text h5 small {
font-size: 14px;
}
.aitsclearance-sales-text {
width: 77%;
}
.agileshoppinggrids-bottom-grid {
padding: 0 .5em;
}
.agileshoppinggrids-bottom p {
width: 95%;
}
.agileinfonewsl h3 {
font-size: 22px;
}
.agileinfofooter-grid {
width: 100%;
float: none;
}
.agileinfofooter-grid.agileinfofooter-grid2 {
margin: 0.5em 0;
}
.agileinfofooter-grids {
padding-bottom: 20px;
}
.w3lscopyrightaitsgrid1 p {
margin-top: 0;
}
.w3layouts-nav-agile {
width: 27%;
}
ul.multi-column-dropdown li {
font-size: 13px;
}
.about-us-text h1 {
font-size: 20px;
}
.about-us-text {
padding: 25px 25px 0;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 11px;
}
.aitscommercial-grid1 {
padding: 25px;
}
p.w3teaseraits {
margin: 12px 0;
font-size: 13px;
}
.aitscommercial-grid1 a.popup-with-zoom-anim {
font-size: 12px;
}
.aitsstoreaddressw3-grid {
width: 47%;
}
.panel-title > a {
font-size: 0.8em;
}
.wthreeaddressaits,.agileshopping, .wthreeabout, .w3laccessoriesaits, .w3aitssinglewthree, .agilelocationsw3ls, .aitsstoreaddressw3, .w3aitsfaq, .w3aitscodes, .aitsiconswthree, .w3aitscontactagile, .w3paymentsaits {
padding: 30px 0;
}
.w3lsnewsletter-grid-2 {
width: 87%;
}
.w3lsnewsletter-grid-1 p, .w3lsnewsletter-grid-1 h2 {
font-size: 19px;
}
.wthreeaddressaits-grid1 {
width: 100%;
float: none;
}
.aitsphonew3l {
margin: 20px 0;
}
.wthreeaddressaits-grid2 {
width: 100%;
float: none;
margin-top: 1.5em;
}
.w3paymentsaits h1 {
font-size: 22px;
margin-bottom: 25px;
}
.w3paymentsaits h4 {
font-size: 15px;
}
.w3paymentsaitspay {
margin-bottom: 16px;
}
li.wthreecartaits {
right: 13%;
}
.navbar-toggle {
margin-left: 5em;
}
td.text-center {
padding: 0 !important;
}
#staplesbmincart {
position: fixed;
left: 5%;
top: 7.9%;
width:370px;
}
#staplesbmincart ul {
clear: both;
float: left;
width: 100%;
margin: 5px 0 10px;
padding: 0.5em;
}
}
@media screen and (max-width: 414px) {
.navbar-toggle {
padding: 7px 7px;
}
.agileheader-topbar-grid2 ul li {
margin: 0 4px;
}
.w3slideraits {
height: 260px;
}
.wthreehome-latest {
padding: 25px 0;
}
.wthreehome-latest-grid h5 {
font-size: 12px;
}
.wthreehome-latest-grid h4 {
font-size: 13px;
}
.wthreehome-latest-grid h6 a {
font-size: 13px;
}
.wthreewinter-coll h1 {
font-size: 16px;
}
.wthreewinter-coll p {
width: 100%;
font-size: .9em;
}
.wthreeshop-a a {
padding: 10px 16px;
}
.wthreeshop-a {
margin-top: 21px;
}
.wthreewinter-coll, .aitsclearance-sales-text, .agileinfonewsl {
padding: 35px 0;
}
.style-grid-1 img {
height: 300px;
}
.style-grid-1-text p, .style-grid-2-text p {
font-size: 12px;
margin-bottom: 13px;
}
.style-image-1 img, .style-image-2 img {
height: 150px;
}
.aitsclearance-sales-text h5 {
font-size: 23px;
}
.wthreeshop-a a {
padding: 8px 16px;
}
.agileshoppinggrid {
padding: .5em;
}
.agileshoppinggrids-bottom {
margin-top: 12px;
}
.agileshoppinggrids-bottom h3 {
font-size: 17px;
}
p {
font-size: 13px;
}
div#my-cart-modal .modal-content {
padding: 18px;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
width: 24%;
font-size: 13px;
}
.modal-footer {
padding: 15px 0 0;
}
.w3layouts-mens-nav-agileits-1, .w3layouts-womens-nav-agileits-1, .w3layouts-acc-nav-agileits-1, .w3layouts-hot-nav-agileits-1 {
width: 100% !important;
float: none;
}
.w3layouts-nav-agile {
width: 33%;
}
.dropdown-menu p {
margin-bottom: 10px;
}
p.promo {
padding: 7px 4px;
letter-spacing: 0px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 10px;
}
.aitsyourself-grid2 {
padding: 7px 14px;
}
.aitscommercial-grid1 {
padding: 20px;
}
.aitscommercial h2 {
font-size: 17px;
}
.w3laccessoriesaits-grids {
float: none;
width: 70%;
margin: 0 auto;
padding: 0;
}
.w3laccessoriesaits-grids.w3laccessoriesaits-grids2 {
margin-top: 1.5em;
}
.w3lsshoesaits {
padding: 40px 0;
}
.w3lsshoesaits-info h3 {
font-size: 23px;
}
.w3lsshoesaits-info p {
width: 90%;
}
.agilenwew3lsfashions h3 {
font-size: 23px;
margin-bottom: 16px;
text-shadow: 2px 2px #c41228;
}
.agilenwew3lsfashions h4 {
font-size: 11px;
margin-bottom: 12px;
line-height: 1.5em;
}
.clock .column {
width: 18%;
}
.timer {
font-size: 29px;
}
.clock .column {
width: 15%;
}
.text {
font-size: 10px;
}
.text {
font-size: 10px;
}
.aitsstoreaddressw3-grid {
width: 47%;
}
.aitsstoreaddressw3-grid h5 {
font-size: 15px;
}
.aitsstoreaddressw3-grid address ul li {
font-size: 12px;
}
div#small-dialog1, div#small-dialog2, div#small-dialog3, div#small-dialog4 {
width: 75%;
}
.contact-info-grid-2 {
padding: 0 10px;
}
.contact-info-grid-2 h2 {
font-size: 22px;
}
.contact-info-grid-2 p {
line-height: 28px;
}
.wthreeaddressaits-grid1 ul li {
font-size: 12px;
}
h1.w3wthreeheadingaits {
font-size: 18px;
padding: 16px 0;
}
.wthreeproductdisplay {
padding: 10px 0;
}
.cbp-pggrid > li {
width: 70%;
padding: 10px 1%;
}
.single-top-right {
margin-top: 2em;
}
.single-top-right h1 {
font-size: 18px;
}
.single-price ul li:nth-child(1) {
font-size: 25px;
}
.panel-body {
font-size: 13px;
}
.w3lsnewsletter {
padding: 30px 0;
}
.aitssinglew3 .agileits.my-cart-btn {
width: 40%!important;
font-size: 13px!important;
}
div#my-cart-modal .modal-content {
padding: 20px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
font-size: 13px;
}
div#my-cart-modal .modal-dialog {
width: 94%;
}
.navbar-toggle {
margin-left: 3em;
}
.dropdown-menu.multi, ul.dropdown-menu.multi.multi2, ul.dropdown-menu.multi.multi3, ul.dropdown-menu.multi.multi4 {
padding: 8px;
}
ul.multi-column-dropdown li {
line-height: 28px;
}
a.dropdown-toggle.hyper, .navbar-default .navbar-nav > li > a {
margin: 5px 2px;
}
.aitsaccordionw3layouts div#collapseThree h3 {
font-size: 20px;
}
.aitsaccordionw3layouts div#collapseThree {
padding: 25px 20px;
}
.aitsaccordionw3layouts div#collapseThree h4 {
font-size: 14px;
}
.aitsaccordionw3layouts div#collapseThree span {
padding-left: 105px;
padding-top: 0;
background-size: 61%;
}
.aitsaccordionw3layouts a.next {
margin: 0;
font-size: 13px;
}
.aitsaccordionw3layouts ul.ship li {
font-size: 13px;
}
.aitsaccordionw3layouts ul.ship {
margin-top: 20px;
}
.aitsaccordionw3layouts div#collapseFour {
padding: 20px;
}
.email-form input.submit {
font-size: 11px;
width: 27%;
}
.imagezoom-cursor {
display: none;
}
.panel-title > a {
line-height: 1.6em;
}
.agileheader-topbar-grid.agileheader-topbar-grid2 {
margin-top: 0.8em;
}
.agileheader-topbar-grid2 ul li {
font-size: 12px;
margin: 0 3px;
}
.dropdown-menu p {
font-size: .8em;
}
}
@media screen and (max-width: 384px) {
.w3slideraits {
height: 220px;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 30px;
}
.agileinfonewsl p {
font-size: 13px;
margin-bottom: 20px;
}
.agileinfonewsl h3 {
font-size: 20px;
}
div#my-cart-modal .modal-header {
padding: 0 5px 8px;
}
.w3paymentsaits h4 {
font-size: 14px;
}
.agilelocationsw3ls-grid1 h1 {
font-size: 18px;
margin-bottom: 0px;
}
.wthreeshop-a {
margin-top: 5px;
padding: 0;
}
.wthreeshop-a a {
padding: 8px 16px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 18px;
margin-bottom: 20px
}
.panel-body {
font-size: 12px;
}
input[type="text"], input[type="password"], input.email.aitsw3ls, textarea.text {
margin-bottom: 15px;
padding: 10px;
}
ul.tick li {
font-size: 13px;
}
ul.tick {
margin: 5px 0 20px;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 7.9%;
width: 347px;
}
#staplesbmincart form {
position: relative;
padding: 0.5em;
}
}
@media screen and (max-width: 375px) {
.email-form input.email {
width: 68%;
font-size: 12px;
}
.email-form input.submit {
width: 28%;
}
.w3lsnewsletter-grid-2 {
width: 95%;
}
.flex-control-thumbs li:nth-child(2) {
margin: 0.5em 0;
}
.single-top-left {
margin-left: 22%;
width: 70%;
}
a.navbar-brand {
font-size: 16px;
}
.aitsyourself-grid2 h3, .aitsyourself-grid2 h4 {
font-size: 11px;
line-height: 27px;
}
.aitscommercial h2 {
font-size: 15px;
}
.aitsstoreaddressw3-grid {
width: 46%;
}
.panel-group .panel + .panel {
margin-top: 0;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 7.9%;
width: 341px;
}
#staplesbmincart .sbmincart-subtotal {
bottom: 3px;
padding-left: 0;
font-size: 13px;
display: block;
text-align: left;
}
#staplesbmincart .sbmincart-submit {
font-size: 0.8em;
font-weight: 700;
}
#staplesbmincart .sbmincart-details-name {
float: left;
width: 46%;
}
.w3slideraits {
height:190px;
}
}
@media screen and (max-width: 320px) {
.navbar-default .navbar-toggle {
margin: 10px 20px 0;
}
li.wthreecartaits {
font-size: 30px;
right: 15%;
top: 8px;
}
.badge {
padding: 3px 5px;
font-size: 9px;
}
.agileheader-topbar-grid1 p {
margin-left: 0;
}
.agilemodel-slider {
height: 235px!important;
}
.film_roll_prev, .film_roll_next {
top: 36% !important;
}
.wthreehome-latest-grid {
float: none;
width: 90%;
margin: 0 auto;
}
.wthreewinter-coll h1 {
font-size: 14px;
}
.style-grid-1-text h3, .style-grid-2-text h3 {
margin-bottom: 6px;
}
.aitsclearance-sales-text h2 {
font-size: 18px;
}
.aitsclearance-sales-text h4 {
margin-bottom: 12px;
}
.aitsclearance-sales-text h2 {
font-size: 16px;
margin-bottom: 15px;
}
.aitsclearance-sales-text h5 {
font-size: 20px;
}
.agileshoppinggrids-bottom {
margin-top: 0;
}
.agileshoppinggrids-bottom p {
width: 100%;
}
.agileshoppinggrids-bottom-grid .wthreeshop-a a {
padding: 10px 17px;
}
.agileinfonewsl h3 {
font-size: 18px;
}
.wthreewinter-coll, .aitsclearance-sales-text, .agileinfonewsl {
padding: 28px 0;
}
.aitsaccordionw3layouts div#collapseThree h3 {
font-size: 16px;
}
.single-top-right {
padding: 0;
}
.aitsaccordionw3layouts div#collapseThree h4 {
font-size: 13px;
}
.aitsaccordionw3layouts div#collapseThree span {
padding-left: 84px;
}
h1.w3wthreeheadingaits {
font-size: 15px;
padding: 14px 0;
}
div#my-cart-modal .modal-content {
padding: 10px;
}
div#my-cart-modal {
padding: 0 !important;
}
div#my-cart-modal .modal-dialog {
width: 96%;
}
div#my-cart-modal button.btn.btn-default, div#my-cart-modal button.btn.btn-primary {
padding: 6px 0;
}
.cbp-pggrid > li {
width: 85%;
}
.aitsaccordionw3layouts .panel-heading {
padding: 8px 12px;
}
.w3paymentsaits h4 {
font-size: 13px;
}
.about-us-text {
padding: 20px 15px 0;
}
.about-us-text h1 {
font-size: 18px;
}
.aitsyourself-grid2 {
width: 31%;
}
.aitsyourself-grid1 {
width: 36%;
}
.w3laccessoriesaits-grids {
width: 90%;
}
.w3lsshoesaits-info p {
margin: 15px auto;
}
.w3lsshoesaits {
padding: 30px 0;
}
.agilenwew3lsfashions h3 {
font-size: 20px;
}
.agilenwew3lsfashions {
padding: 35px 0;
}
.aitsstoreaddressw3-grid {
width: 100%;
}
#map {
height: 200px;
}
.w3aitsfaq h1, .w3aitscontactagile h1, .w3aitscodes h1.w3lsmainheading, h1.agileits-icons-title, h2.agileits-icons-title {
font-size: 15px;
margin-bottom: 20px;
}
ul.tick li {
padding: 0;
width: 100%;
float: none;
}
input[type="submit"] {
padding: 8px 0;
font-size: 13px;
}
ul.tick {
margin: 5px 0 15px;
}
#small-dialog1 h3, #small-dialog2 h3, #small-dialog3 h4 {
font-size: 20px;
}
.w3aitscodes h3.head-top {
font-size: 21px;
}
.contact-info-grid-2 h2 {
font-size: 20px;
}
.contact-info-grid-2 {
padding: 0;
}
.contact-info-grid-2 h2 {
font-size: 19px;
}
div#my-cart-modal .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
padding: 10px 4px;
}
#staplesbmincart {
position: fixed;
left: 3%;
top: 16.9%;
width: 289px;
}
.w3slideraits {
height:175px;
}
}
/*-- //Responsive-Code --*/ | 0.283484 | 0.126165 |
span.view{
position:absolute;
left:850px;
}
.com-m {
background-color: rgb(112, 112, 112, 0.5);
width: 1000px;
position: relative;
left: 100px;
margin-top: 0px;
margin-bottom: 30px;
justify-content: center;
align-items: center;
border-radius: 10px;
}
.comment {
background-color: #fff;
padding: 20px;
outline: none;
justify-content: center;
align-items: center;
position: relative;
margin-top: 41px;
margin-left: 25px;
border: none;
width: 500px;
height: 3rem;
}
.cover
{
display: block;
}
.rating {
position: absolute;
left:570px;
top:45px;
border: none;
padding: 10px;
}
.btn-me {
transition: all 0.5s;
cursor: pointer;
width:150px;
background-color: #292929;
border-radius: 5px;
color: white;
font-weight: 600;
font-size: 20px;
position: absolute;
left:440px;
top:42px;
}
.btn-me:hover {
transition: all 0.2s;
cursor: pointer;
width:150px;
background-color: #4b4a4a;
border-radius: 5px;
color: white;
font-weight: 600;
font-size: 20px;
position: absolute;
left:440px;
top:42px;
}
button.fb
{
background-color: #fff;
margin-left: 100px;
border-radius: 50px;
}
span.fv {
position: absolute;
/* right: 180px; */
border: 1px solid #52575d;
background-color: #41444b;
color: #fddb3a;
width:180px;
border-radius: 20px;
padding: 5px 25px;
font-size: 24px;
left:900px
}
.date-view {
color: white;
font-size: smaller;
text-shadow: 2px 2px 4px blue;
}
.art {
position: absolute;
top: 50px;
left: 250px;
padding-bottom: 0px;
}
.full-view {
width: 1000px;
}
.cover
{
margin-top: 10px;
margin-left: 100px;
width:999px;
}
.comment-box{
width: 999px;
margin-left: 100px;
margin-top: 10px;
color: rgb(53, 53, 53);
background-color: white;
padding: 25px;
padding-bottom: 10px;
border-radius: 10px;
margin-bottom: 10px;
}
.comment-comment {
margin-left: 20px;
}
.comment-name{
font-weight: 600;
margin-left: 70px;
}
.comment-rating{
background-color: red;
border-radius: 100%;
width: 40px;
height: 40px;
float: right;
text-align: center;
color: white;
font-size: 25px;
font-weight: 600;
} | client/src/components/screens/viewArticles.css | span.view{
position:absolute;
left:850px;
}
.com-m {
background-color: rgb(112, 112, 112, 0.5);
width: 1000px;
position: relative;
left: 100px;
margin-top: 0px;
margin-bottom: 30px;
justify-content: center;
align-items: center;
border-radius: 10px;
}
.comment {
background-color: #fff;
padding: 20px;
outline: none;
justify-content: center;
align-items: center;
position: relative;
margin-top: 41px;
margin-left: 25px;
border: none;
width: 500px;
height: 3rem;
}
.cover
{
display: block;
}
.rating {
position: absolute;
left:570px;
top:45px;
border: none;
padding: 10px;
}
.btn-me {
transition: all 0.5s;
cursor: pointer;
width:150px;
background-color: #292929;
border-radius: 5px;
color: white;
font-weight: 600;
font-size: 20px;
position: absolute;
left:440px;
top:42px;
}
.btn-me:hover {
transition: all 0.2s;
cursor: pointer;
width:150px;
background-color: #4b4a4a;
border-radius: 5px;
color: white;
font-weight: 600;
font-size: 20px;
position: absolute;
left:440px;
top:42px;
}
button.fb
{
background-color: #fff;
margin-left: 100px;
border-radius: 50px;
}
span.fv {
position: absolute;
/* right: 180px; */
border: 1px solid #52575d;
background-color: #41444b;
color: #fddb3a;
width:180px;
border-radius: 20px;
padding: 5px 25px;
font-size: 24px;
left:900px
}
.date-view {
color: white;
font-size: smaller;
text-shadow: 2px 2px 4px blue;
}
.art {
position: absolute;
top: 50px;
left: 250px;
padding-bottom: 0px;
}
.full-view {
width: 1000px;
}
.cover
{
margin-top: 10px;
margin-left: 100px;
width:999px;
}
.comment-box{
width: 999px;
margin-left: 100px;
margin-top: 10px;
color: rgb(53, 53, 53);
background-color: white;
padding: 25px;
padding-bottom: 10px;
border-radius: 10px;
margin-bottom: 10px;
}
.comment-comment {
margin-left: 20px;
}
.comment-name{
font-weight: 600;
margin-left: 70px;
}
.comment-rating{
background-color: red;
border-radius: 100%;
width: 40px;
height: 40px;
float: right;
text-align: center;
color: white;
font-size: 25px;
font-weight: 600;
} | 0.714827 | 0.159872 |
body, html {
height: 100%;
background-color: lightgreen;
}
.fadeIn {
opacity: 0;
animation: fadeIn 1.8s forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(50px);
}
30% {
opacity: 0;
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.banner {
padding-bottom: 0px;
margin-bottom: 0px;
background-image: url("../assets/servicesbanner.jpg");
height: 25%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.banner-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
}
.banner-text h1 {
text-decoration-line:;
font-family: 'Nosifer', cursive;
color: #f261ff;
}
.nav-wrapper {
background-color: lightgreen;
font-family: 'Nosifer', cursive;
}
.nav-wrapper li a {
color: #f261ff;
}
.nav-wrapper li a:hover{
color: white;
}
.brand-logo {
padding: 5px;
margin: 5px;
}
.intro {
background-color: #f261ff;
margin-top: -25px;
padding: 0px;
border: 0px;
}
.intro-text {
padding: 20px;
color: white;
font-size: 20px;
text-align: center;
}
/* label color */
.input-field label {
color: #f261ff;
}
/* label focus color */
.input-field input[type=text]:focus + label {
color: #f261ff;
}
/* label underline focus color */
.input-field input[type=text]:focus {
border-bottom: 1px solid #f261ff;
box-shadow: 0 1px 0 0 #f261ff;
}
/* valid color */
.input-field input[type=text].valid {
border-bottom: 1px solid green;
box-shadow: 0 1px 0 0 green;
}
/* invalid color */
.input-field input[type=text].invalid {
border-bottom: 1px solid red;
box-shadow: 0 1px 0 0 red;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #f261ff;
}
#sendbutton {
color: white;
}
.material-icons {
color: #f261ff;
}
.btn {
text-align: center;
background-color: #f261ff;
font-family: 'Nosifer', cursive;
}
.btn:hover {
background-color: orange;
}
.picker__date-display {
background-color: #f261ff;
font-family: 'Nosifer', cursive;
}
.picker__day {
font-family: 'Nosifer', cursive;
}
.picker__day.picker__day--today {
color: lightgreen;
font-weight: 700;
}
.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
background-color:#f261ff;
}
.btn-flat {
color: #f261ff;
font-family: 'Nosifer', cursive;
}
.page-footer {
margin-top: 0px;
padding-top: 0px;
background-color: #f261ff;
}
.picker__list-item--highlighted {
border-color: #f261ff;
}
.modal-content {
padding: 0px;
margin: 0px;
}
.modal-content h4 {
color: #f261ff;
text-align: center;
padding: 0px;
font-family: 'Nosifer', cursive;
}
.modal-content p {
text-align: center;
font-size: 18px;
}
.btn-flat:hover {
color: grey;
}
.page-footer {
margin-top: 0px;
padding-top: 0px;
background-color: #f261ff;
}
.footer-copyright {
text-align: center;
}
.page-footer .col {
text-align: center;
}
.page-footer h5 {
font-family: 'Nosifer', cursive;
}
/* Style all font awesome icons */
.fa {
margin: 5px;
padding: 20px;
width: 60px;
text-align: center;
text-decoration: none;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.2;
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
color: white;
}
/* Twitter */
.fa-twitter {
color: white;
}
.fa-instagram {
color: white;
} | css/bookingscss.css | body, html {
height: 100%;
background-color: lightgreen;
}
.fadeIn {
opacity: 0;
animation: fadeIn 1.8s forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(50px);
}
30% {
opacity: 0;
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.banner {
padding-bottom: 0px;
margin-bottom: 0px;
background-image: url("../assets/servicesbanner.jpg");
height: 25%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.banner-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
}
.banner-text h1 {
text-decoration-line:;
font-family: 'Nosifer', cursive;
color: #f261ff;
}
.nav-wrapper {
background-color: lightgreen;
font-family: 'Nosifer', cursive;
}
.nav-wrapper li a {
color: #f261ff;
}
.nav-wrapper li a:hover{
color: white;
}
.brand-logo {
padding: 5px;
margin: 5px;
}
.intro {
background-color: #f261ff;
margin-top: -25px;
padding: 0px;
border: 0px;
}
.intro-text {
padding: 20px;
color: white;
font-size: 20px;
text-align: center;
}
/* label color */
.input-field label {
color: #f261ff;
}
/* label focus color */
.input-field input[type=text]:focus + label {
color: #f261ff;
}
/* label underline focus color */
.input-field input[type=text]:focus {
border-bottom: 1px solid #f261ff;
box-shadow: 0 1px 0 0 #f261ff;
}
/* valid color */
.input-field input[type=text].valid {
border-bottom: 1px solid green;
box-shadow: 0 1px 0 0 green;
}
/* invalid color */
.input-field input[type=text].invalid {
border-bottom: 1px solid red;
box-shadow: 0 1px 0 0 red;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #f261ff;
}
#sendbutton {
color: white;
}
.material-icons {
color: #f261ff;
}
.btn {
text-align: center;
background-color: #f261ff;
font-family: 'Nosifer', cursive;
}
.btn:hover {
background-color: orange;
}
.picker__date-display {
background-color: #f261ff;
font-family: 'Nosifer', cursive;
}
.picker__day {
font-family: 'Nosifer', cursive;
}
.picker__day.picker__day--today {
color: lightgreen;
font-weight: 700;
}
.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
background-color:#f261ff;
}
.btn-flat {
color: #f261ff;
font-family: 'Nosifer', cursive;
}
.page-footer {
margin-top: 0px;
padding-top: 0px;
background-color: #f261ff;
}
.picker__list-item--highlighted {
border-color: #f261ff;
}
.modal-content {
padding: 0px;
margin: 0px;
}
.modal-content h4 {
color: #f261ff;
text-align: center;
padding: 0px;
font-family: 'Nosifer', cursive;
}
.modal-content p {
text-align: center;
font-size: 18px;
}
.btn-flat:hover {
color: grey;
}
.page-footer {
margin-top: 0px;
padding-top: 0px;
background-color: #f261ff;
}
.footer-copyright {
text-align: center;
}
.page-footer .col {
text-align: center;
}
.page-footer h5 {
font-family: 'Nosifer', cursive;
}
/* Style all font awesome icons */
.fa {
margin: 5px;
padding: 20px;
width: 60px;
text-align: center;
text-decoration: none;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.2;
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
color: white;
}
/* Twitter */
.fa-twitter {
color: white;
}
.fa-instagram {
color: white;
} | 0.459076 | 0.09886 |
@charset "utf-8";
#incar_top{
width:615px;;
height:60px;
margin:10% 5% auto 5%;
position:relative;
top:5px;
z-index:120;
}
#incar_top_1{
width:280px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-bottom:none;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_1:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar_top_2{
width:120px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_2:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar_top_3{
width:145px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_3:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar{
width:90%;
height:500px;
/*border:#000 solid 2px;*/
margin:0 5% auto 5%;
position:relative;
}
#S-O-P{
width:615px;
height:80%;
border:#999 solid 5px;
border-radius:10px;
border-top-left-radius:0;
background-color:#F2F2F2;
padding-top:4%;
padding-left:2%;
float:left;
position:absolute;
z-index:110;
}
.part-1-1{
margin-left:37%;
}
.part-1-2{
margin:3% 0;
}
#I{
width:615px;
height:80%;
border:#999 inset 5px;
border-radius:10px;
background-color:#F2F2F2;
/*margin:5% 0 5% 5%;*/
padding-top:4%;
float:left;
position:absolute;
z-index:100;
}
.part-2-1{
margin-left:5%;
}
.part-2-2{
margin-left:-15px;
height:7.5%;
/*border:#000 solid 1px;*/
}
.part-2-3{
margin-top:10px;
}
#G-S{
width:615px;
height:80%;
border:#999 inset 5px;
border-radius:10px;
background-color:#F2F2F2;
/*margin:5% 0 5% 5%;*/
padding-top:4%;
padding-left:2%;
float:left;
position:absolute;
z-index:90;
}
.part-3-2{
margin-left:37%;
}
.part-3-3{
margin-top:10px;
}
option{
font-size:16px;
background-color:#CCC !important;
} | src/css/incar.css | @charset "utf-8";
#incar_top{
width:615px;;
height:60px;
margin:10% 5% auto 5%;
position:relative;
top:5px;
z-index:120;
}
#incar_top_1{
width:280px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-bottom:none;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_1:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar_top_2{
width:120px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_2:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar_top_3{
width:145px;
height:60px;
font-weight:bold;
border:#999 outset 5px;
border-radius:10px;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
background-color:#F2F2F2;
padding-top:15px;
padding-left:3%;
float:left;
}
#incar_top_3:hover{
border:inset #E1E1E1 5px;
border-bottom:none;
cursor:pointer;
}
#incar{
width:90%;
height:500px;
/*border:#000 solid 2px;*/
margin:0 5% auto 5%;
position:relative;
}
#S-O-P{
width:615px;
height:80%;
border:#999 solid 5px;
border-radius:10px;
border-top-left-radius:0;
background-color:#F2F2F2;
padding-top:4%;
padding-left:2%;
float:left;
position:absolute;
z-index:110;
}
.part-1-1{
margin-left:37%;
}
.part-1-2{
margin:3% 0;
}
#I{
width:615px;
height:80%;
border:#999 inset 5px;
border-radius:10px;
background-color:#F2F2F2;
/*margin:5% 0 5% 5%;*/
padding-top:4%;
float:left;
position:absolute;
z-index:100;
}
.part-2-1{
margin-left:5%;
}
.part-2-2{
margin-left:-15px;
height:7.5%;
/*border:#000 solid 1px;*/
}
.part-2-3{
margin-top:10px;
}
#G-S{
width:615px;
height:80%;
border:#999 inset 5px;
border-radius:10px;
background-color:#F2F2F2;
/*margin:5% 0 5% 5%;*/
padding-top:4%;
padding-left:2%;
float:left;
position:absolute;
z-index:90;
}
.part-3-2{
margin-left:37%;
}
.part-3-3{
margin-top:10px;
}
option{
font-size:16px;
background-color:#CCC !important;
} | 0.16455 | 0.044785 |
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfpcuPP9g.woff2) format('woff2');
unicode-range : U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* vietnamese */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfqMuPP9g.woff2) format('woff2');
unicode-range : U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2) format('woff2');
unicode-range : U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfp8uP.woff2) format('woff2');
unicode-range : U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
--page-width : 100%;
--page-height : 100%;
--primary-font-color : #444;
--secondary-font-color : #fff;
--primary-font-family : 'Varela Round', sans-serif;
--primary-font-size : 1.3em;
}
* {
margin : 0;
padding : 0;
-webkit-box-sizing : border-box;
-moz-box-sizing : border-box;
-ms-box-sizing : border-box;
-o-box-sizing : border-box;
box-sizing : border-box;
}
body, html {
width : var(--page-width);
height : var(--page-height);
font-family : var(--primary-font-family);
font-size : var(--primary-font-size);
color : var(--primary-font-color);
background : #0f0c29; /* fallback for old browsers */
background : -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); /* Chrome 10-25, Safari 5.1-6 */
background : linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.flex {
display : -webkit-box;
display : -moz-box;
display : -webkit-flex;
display : -ms-flexbox;
display : flex;
}
.column {
-webkit-flex-direction : column;
-moz-flex-direction : column;
-ms-flex-direction : column;
-o-flex-direction : column;
flex-direction : column;
}
.justify-content-center {
-webkit-justify-content : center;
-moz-justify-content : center;
-ms-justify-content : center;
-o-justify-content : center;
justify-content : center;
}
.justify-content-spacebetween {
-webkit-justify-content : space-between;
-moz-justify-content : space-between;
-ms-justify-content : space-between;
-o-justify-content : space-between;
justify-content : space-between;
}
.align-items-center {
-webkit-align-items : center;
-moz-align-items : center;
-ms-align-items : center;
-o-align-items : center;
align-items : center;
}
.container {
width : inherit;
height : inherit;
}
#board {
width : 380px;
height : 380px;
}
#board table {
width : inherit;
height : inherit;
}
/*#board table,*/
#board tr,
#board th,
#board td {
border : 6px solid rgb(157, 142, 255);
border-collapse : collapse;
box-shadow : 0 0 30px 1px rgba(88, 26, 225, 0.28);
border-radius : 15px;
}
#board td {
width : calc(380px / 3 - 6px);
height : calc(380px / 3 - 6px);
text-align : center;
cursor : pointer;
}
#board td:hover {
box-shadow : 0 0 30px 5px rgb(85, 21, 227);
transition : 100ms linear all;
}
#board td svg {
color : rgb(255, 167, 0);
width : 50px;
height : 50px;
}
.players {
width : 50%;
}
.players .player {
flex : 1;
text-align : center;
}
.player .name {
font-size : 1.2rem;
color : rgb(241, 241, 253);
text-shadow : 0 0 5px rgb(127, 100, 255);
}
.player .points {
font-size : .8rem;
color : rgb(81, 255, 198);
font-weight : bolder;
}
.controls {
width : 430px;
margin : 30px 0;
}
.btn {
border : none;
cursor : pointer;
}
.btn-move {
padding : 12px 50px;
width : 300px;
font-size : 20px;
background : #FF416C; /* fallback for old browsers */
background : -webkit-linear-gradient(to right, #FF4B2B, #FF416C); /* Chrome 10-25, Safari 5.1-6 */
background : linear-gradient(to right, #FF4B2B, #FF416C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color : white;
font-weight : bolder;
border-radius : 50px;
font-family : var(--primary-font-family);
}
.btn-move svg {
width : 30px;
height : 30px;
margin-right : 5px;
}
.btn-icon {
padding : 12px;
border-radius : 50px;
color : white;
background : transparent;
border : 2px solid white;
}
.btn-icon svg {
width : 30px;
height : 30px;
}
.modal-wrapper {
width : inherit;
height : inherit;
position : fixed;
top : 0;
left : 0;
background : rgba(0, 0, 0, 0.4);
display : none;
}
.modal-wrapper .modal {
width : 50%;
background : #f4f4f4;
position : relative;
border-radius : 10px;
box-shadow : 0 0 20px 1px rgba(2, 2, 2, 0.8);
}
.modal .btn-close {
width : 40px;
height : 40px;
background : red;
color : var(--secondary-font-color);
font-size : 30px;
font-weight : bolder;
position : absolute;
right : 0;
top : 0;
border-radius : 0 10px 0 0;
}
.modal .modal-content {
}
.modal #_Win,
.modal #_Invalid,
.modal #_Reset,
.modal #_Stats {
padding: 50px 40px;
} | assets/css/style.css | @font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfpcuPP9g.woff2) format('woff2');
unicode-range : U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* vietnamese */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfqMuPP9g.woff2) format('woff2');
unicode-range : U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2) format('woff2');
unicode-range : U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family : 'Varela Round';
font-style : normal;
font-weight : 400;
font-display : swap;
src : local('Varela Round Regular'), local('VarelaRound-Regular'), url(https://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIfp8uP.woff2) format('woff2');
unicode-range : U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
--page-width : 100%;
--page-height : 100%;
--primary-font-color : #444;
--secondary-font-color : #fff;
--primary-font-family : 'Varela Round', sans-serif;
--primary-font-size : 1.3em;
}
* {
margin : 0;
padding : 0;
-webkit-box-sizing : border-box;
-moz-box-sizing : border-box;
-ms-box-sizing : border-box;
-o-box-sizing : border-box;
box-sizing : border-box;
}
body, html {
width : var(--page-width);
height : var(--page-height);
font-family : var(--primary-font-family);
font-size : var(--primary-font-size);
color : var(--primary-font-color);
background : #0f0c29; /* fallback for old browsers */
background : -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); /* Chrome 10-25, Safari 5.1-6 */
background : linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.flex {
display : -webkit-box;
display : -moz-box;
display : -webkit-flex;
display : -ms-flexbox;
display : flex;
}
.column {
-webkit-flex-direction : column;
-moz-flex-direction : column;
-ms-flex-direction : column;
-o-flex-direction : column;
flex-direction : column;
}
.justify-content-center {
-webkit-justify-content : center;
-moz-justify-content : center;
-ms-justify-content : center;
-o-justify-content : center;
justify-content : center;
}
.justify-content-spacebetween {
-webkit-justify-content : space-between;
-moz-justify-content : space-between;
-ms-justify-content : space-between;
-o-justify-content : space-between;
justify-content : space-between;
}
.align-items-center {
-webkit-align-items : center;
-moz-align-items : center;
-ms-align-items : center;
-o-align-items : center;
align-items : center;
}
.container {
width : inherit;
height : inherit;
}
#board {
width : 380px;
height : 380px;
}
#board table {
width : inherit;
height : inherit;
}
/*#board table,*/
#board tr,
#board th,
#board td {
border : 6px solid rgb(157, 142, 255);
border-collapse : collapse;
box-shadow : 0 0 30px 1px rgba(88, 26, 225, 0.28);
border-radius : 15px;
}
#board td {
width : calc(380px / 3 - 6px);
height : calc(380px / 3 - 6px);
text-align : center;
cursor : pointer;
}
#board td:hover {
box-shadow : 0 0 30px 5px rgb(85, 21, 227);
transition : 100ms linear all;
}
#board td svg {
color : rgb(255, 167, 0);
width : 50px;
height : 50px;
}
.players {
width : 50%;
}
.players .player {
flex : 1;
text-align : center;
}
.player .name {
font-size : 1.2rem;
color : rgb(241, 241, 253);
text-shadow : 0 0 5px rgb(127, 100, 255);
}
.player .points {
font-size : .8rem;
color : rgb(81, 255, 198);
font-weight : bolder;
}
.controls {
width : 430px;
margin : 30px 0;
}
.btn {
border : none;
cursor : pointer;
}
.btn-move {
padding : 12px 50px;
width : 300px;
font-size : 20px;
background : #FF416C; /* fallback for old browsers */
background : -webkit-linear-gradient(to right, #FF4B2B, #FF416C); /* Chrome 10-25, Safari 5.1-6 */
background : linear-gradient(to right, #FF4B2B, #FF416C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color : white;
font-weight : bolder;
border-radius : 50px;
font-family : var(--primary-font-family);
}
.btn-move svg {
width : 30px;
height : 30px;
margin-right : 5px;
}
.btn-icon {
padding : 12px;
border-radius : 50px;
color : white;
background : transparent;
border : 2px solid white;
}
.btn-icon svg {
width : 30px;
height : 30px;
}
.modal-wrapper {
width : inherit;
height : inherit;
position : fixed;
top : 0;
left : 0;
background : rgba(0, 0, 0, 0.4);
display : none;
}
.modal-wrapper .modal {
width : 50%;
background : #f4f4f4;
position : relative;
border-radius : 10px;
box-shadow : 0 0 20px 1px rgba(2, 2, 2, 0.8);
}
.modal .btn-close {
width : 40px;
height : 40px;
background : red;
color : var(--secondary-font-color);
font-size : 30px;
font-weight : bolder;
position : absolute;
right : 0;
top : 0;
border-radius : 0 10px 0 0;
}
.modal .modal-content {
}
.modal #_Win,
.modal #_Invalid,
.modal #_Reset,
.modal #_Stats {
padding: 50px 40px;
} | 0.229967 | 0.056993 |
html, body
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
}
</script>
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 14px;
background: #f1f1f1;
}
/* Header/Blog Title */
.header {
padding: 50px;
text-align: center;
/* background: white;*/
}
.header h1 {
font-size: 50px;
}
.header p {
color: #ffffff;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: #333;
}
/* Style the topnav links */
.topnav a {
float: left;
font-size: 1.4em;
display: block;
color: #f2f2f2;
text-align: center;
padding: 18px 24px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
float: left;
width: 75%;
}
/* Right column */
.rightcolumn {
float: left;
width: 25%;
background-color: #f1f1f1;
padding-left: 15px;
}
/* Fake image */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Add a card effect for articles */
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
#copyright a
{
text-decoration: none;
color: #f1f1f1ab;
margin-top: 10px;
font-size: 1.3em;
letter-spacing: 0.22em;
text-transform: uppercase;
}
/* Footer */
.footer {
padding: 10px;
text-align: center;
background: #f1f1f1;
margin-top: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
font-size: 0.80em;
color: rgba(255,255,255,0.8);
}
.logo a{
text-decoration: none;
color: #ffffff;
}
.logo1 {
padding: 5px;
color: #ffffff;
font-size: 1.5em;
}
.logo{
display:inline-block;
font-size: 4.5em;
text-transform: none;
font-weight: 700;
color: #ffffff;
}
#extra a
{
text-decoration: none;
font-size: 0.80em;
letter-spacing: 0.1em;
color: #2776B1;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.topnav a {
float: none;
width: 100%;
}
}
</style> | sam.css | html, body
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
}
</script>
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 14px;
background: #f1f1f1;
}
/* Header/Blog Title */
.header {
padding: 50px;
text-align: center;
/* background: white;*/
}
.header h1 {
font-size: 50px;
}
.header p {
color: #ffffff;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: #333;
}
/* Style the topnav links */
.topnav a {
float: left;
font-size: 1.4em;
display: block;
color: #f2f2f2;
text-align: center;
padding: 18px 24px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
float: left;
width: 75%;
}
/* Right column */
.rightcolumn {
float: left;
width: 25%;
background-color: #f1f1f1;
padding-left: 15px;
}
/* Fake image */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Add a card effect for articles */
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
#copyright a
{
text-decoration: none;
color: #f1f1f1ab;
margin-top: 10px;
font-size: 1.3em;
letter-spacing: 0.22em;
text-transform: uppercase;
}
/* Footer */
.footer {
padding: 10px;
text-align: center;
background: #f1f1f1;
margin-top: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
font-size: 0.80em;
color: rgba(255,255,255,0.8);
}
.logo a{
text-decoration: none;
color: #ffffff;
}
.logo1 {
padding: 5px;
color: #ffffff;
font-size: 1.5em;
}
.logo{
display:inline-block;
font-size: 4.5em;
text-transform: none;
font-weight: 700;
color: #ffffff;
}
#extra a
{
text-decoration: none;
font-size: 0.80em;
letter-spacing: 0.1em;
color: #2776B1;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.topnav a {
float: none;
width: 100%;
}
}
</style> | 0.294418 | 0.055209 |
.container-header {
min-height: calc(100% - 48px);
background: url("https://images.pexels.com/photos/54567/pexels-photo-54567.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940") no-repeat center center fixed;
background-size: cover;
position: relative;
}
.container-header::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image: -webkit-gradient(linear, left top, right bottom, from(#065888), color-stop(#077a3b), to(#09a750));
background-image: linear-gradient(to bottom right, #065888, #077a3b, #09a750);
opacity: .4;
}
.container-data {
position: relative;
background: rgba(52, 58, 64, 0.8);
color: #fff;
}
.container-fields {
display: grid;
grid-template-columns: auto;
}
.container-summary {
height: 100%;
background: #343A40;
color: #fff;
font-size: 24px;
text-align: center;
}
.field-title {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
font-size: 28px;
-webkit-animation-name: show-names;
animation-name: show-names;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.field-title-summary {
font-size: 24px;
text-align: left;
}
.field-details {
font-size: 22px;
font-style: bold;
text-align: center;
-webkit-animation-name: show-text;
animation-name: show-text;
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
.field-details-small {
font-size: 18px;
color: #9fabb7;
text-align: left;
}
.field-important-text {
font-size: 24px;
line-height: 24px;
font-weight: 400;
color: #ff0202;
-webkit-animation-name: error-shake;
animation-name: error-shake;
-webkit-animation-timing-function: cubic-bezier(.36, .07, .19, .97);
animation-timing-function: cubic-bezier(.36, .07, .19, .97);
-webkit-animation-direction: both;
animation-direction: both;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.summary-picture {
min-height: 200px;
background: url('https://images.pexels.com/photos/399187/pexels-photo-399187.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') no-repeat center center;
background-size: cover;
}
.summary-btn {
width: 100%;
border-radius: 0px;
}
.summary-btn-copied {
color: #fff;
background: #007bff;
}
.summary-btn:hover {
background: #007bff;
color: #fff;
-webkit-transition: 1s all;
transition: 1s all;
}
.data-icon {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 15px;
font-size: 16px;
}
.data-icon-true {
background: #007bff;
}
.data-icon-false {
background: red;
}
@-webkit-keyframes show-names {
from {
left: -50px;
opacity: 0;
}
to {
left: 0;
opacity: 1;
}
}
@keyframes show-names {
from {
left: -50px;
opacity: 0;
}
to {
left: 0;
opacity: 1;
}
}
@-webkit-keyframes show-text {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes show-text {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes error-shake {
10%,
90% {
-webkit-transform: translate3d(-1px, 0, 0);
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
-webkit-transform: translate3d(2px, 0, 0);
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
-webkit-transform: translate3d(-4px, 0, 0);
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
-webkit-transform: translate3d(4px, 0, 0);
transform: translate3d(4px, 0, 0);
}
} | ui/src/app/modules/booking/details-soccer-field.component.css | .container-header {
min-height: calc(100% - 48px);
background: url("https://images.pexels.com/photos/54567/pexels-photo-54567.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940") no-repeat center center fixed;
background-size: cover;
position: relative;
}
.container-header::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image: -webkit-gradient(linear, left top, right bottom, from(#065888), color-stop(#077a3b), to(#09a750));
background-image: linear-gradient(to bottom right, #065888, #077a3b, #09a750);
opacity: .4;
}
.container-data {
position: relative;
background: rgba(52, 58, 64, 0.8);
color: #fff;
}
.container-fields {
display: grid;
grid-template-columns: auto;
}
.container-summary {
height: 100%;
background: #343A40;
color: #fff;
font-size: 24px;
text-align: center;
}
.field-title {
-ms-flex-item-align: center;
align-self: center;
text-align: center;
font-size: 28px;
-webkit-animation-name: show-names;
animation-name: show-names;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.field-title-summary {
font-size: 24px;
text-align: left;
}
.field-details {
font-size: 22px;
font-style: bold;
text-align: center;
-webkit-animation-name: show-text;
animation-name: show-text;
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
.field-details-small {
font-size: 18px;
color: #9fabb7;
text-align: left;
}
.field-important-text {
font-size: 24px;
line-height: 24px;
font-weight: 400;
color: #ff0202;
-webkit-animation-name: error-shake;
animation-name: error-shake;
-webkit-animation-timing-function: cubic-bezier(.36, .07, .19, .97);
animation-timing-function: cubic-bezier(.36, .07, .19, .97);
-webkit-animation-direction: both;
animation-direction: both;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.summary-picture {
min-height: 200px;
background: url('https://images.pexels.com/photos/399187/pexels-photo-399187.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') no-repeat center center;
background-size: cover;
}
.summary-btn {
width: 100%;
border-radius: 0px;
}
.summary-btn-copied {
color: #fff;
background: #007bff;
}
.summary-btn:hover {
background: #007bff;
color: #fff;
-webkit-transition: 1s all;
transition: 1s all;
}
.data-icon {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 15px;
font-size: 16px;
}
.data-icon-true {
background: #007bff;
}
.data-icon-false {
background: red;
}
@-webkit-keyframes show-names {
from {
left: -50px;
opacity: 0;
}
to {
left: 0;
opacity: 1;
}
}
@keyframes show-names {
from {
left: -50px;
opacity: 0;
}
to {
left: 0;
opacity: 1;
}
}
@-webkit-keyframes show-text {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes show-text {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes error-shake {
10%,
90% {
-webkit-transform: translate3d(-1px, 0, 0);
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
-webkit-transform: translate3d(2px, 0, 0);
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
-webkit-transform: translate3d(-4px, 0, 0);
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
-webkit-transform: translate3d(4px, 0, 0);
transform: translate3d(4px, 0, 0);
}
} | 0.588889 | 0.14774 |
.m0 { margin: 0 }
.mt0 { margin-top: 0 }
.mr0 { margin-right: 0 }
.mb0 { margin-bottom: 0 }
.ml0 { margin-left: 0 }
.mx0 { margin-left: 0; margin-right: 0 }
.my0 { margin-top: 0; margin-bottom: 0 }
.m1 { margin: var(--space-1) }
.mt1 { margin-top: var(--space-1) }
.mr1 { margin-right: var(--space-1) }
.mb1 { margin-bottom: var(--space-1) }
.ml1 { margin-left: var(--space-1) }
.mx1 { margin-left: var(--space-1); margin-right: var(--space-1) }
.my1 { margin-top: var(--space-1); margin-bottom: var(--space-1) }
.m2 { margin: var(--space-2) }
.mt2 { margin-top: var(--space-2) }
.mr2 { margin-right: var(--space-2) }
.mb2 { margin-bottom: var(--space-2) }
.ml2 { margin-left: var(--space-2) }
.mx2 { margin-left: var(--space-2); margin-right: var(--space-2) }
.my2 { margin-top: var(--space-2); margin-bottom: var(--space-2) }
.m3 { margin: var(--space-3) }
.mt3 { margin-top: var(--space-3) }
.mr3 { margin-right: var(--space-3) }
.mb3 { margin-bottom: var(--space-3) }
.ml3 { margin-left: var(--space-3) }
.mx3 { margin-left: var(--space-3); margin-right: var(--space-3) }
.my3 { margin-top: var(--space-3); margin-bottom: var(--space-3) }
.m4 { margin: var(--space-4) }
.mt4 { margin-top: var(--space-4) }
.mr4 { margin-right: var(--space-4) }
.mb4 { margin-bottom: var(--space-4) }
.ml4 { margin-left: var(--space-4) }
.mx4 { margin-left: var(--space-4); margin-right: var(--space-4) }
.my4 { margin-top: var(--space-4); margin-bottom: var(--space-4) }
.mxn1 { margin-left: -var(--space-1); margin-right: -var(--space-1); }
.mxn2 { margin-left: -var(--space-2); margin-right: -var(--space-2); }
.mxn3 { margin-left: -var(--space-3); margin-right: -var(--space-3); }
.mxn4 { margin-left: -var(--space-4); margin-right: -var(--space-4); }
.m-auto { margin: auto; }
.mt-auto { margin-top: auto }
.mr-auto { margin-right: auto }
.mb-auto { margin-bottom: auto }
.ml-auto { margin-left: auto }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
:root {
--space-1: .5rem;
--space-2: 1rem;
--space-3: 2rem;
--space-4: 4rem;
} | modules/margin/index.css |
.m0 { margin: 0 }
.mt0 { margin-top: 0 }
.mr0 { margin-right: 0 }
.mb0 { margin-bottom: 0 }
.ml0 { margin-left: 0 }
.mx0 { margin-left: 0; margin-right: 0 }
.my0 { margin-top: 0; margin-bottom: 0 }
.m1 { margin: var(--space-1) }
.mt1 { margin-top: var(--space-1) }
.mr1 { margin-right: var(--space-1) }
.mb1 { margin-bottom: var(--space-1) }
.ml1 { margin-left: var(--space-1) }
.mx1 { margin-left: var(--space-1); margin-right: var(--space-1) }
.my1 { margin-top: var(--space-1); margin-bottom: var(--space-1) }
.m2 { margin: var(--space-2) }
.mt2 { margin-top: var(--space-2) }
.mr2 { margin-right: var(--space-2) }
.mb2 { margin-bottom: var(--space-2) }
.ml2 { margin-left: var(--space-2) }
.mx2 { margin-left: var(--space-2); margin-right: var(--space-2) }
.my2 { margin-top: var(--space-2); margin-bottom: var(--space-2) }
.m3 { margin: var(--space-3) }
.mt3 { margin-top: var(--space-3) }
.mr3 { margin-right: var(--space-3) }
.mb3 { margin-bottom: var(--space-3) }
.ml3 { margin-left: var(--space-3) }
.mx3 { margin-left: var(--space-3); margin-right: var(--space-3) }
.my3 { margin-top: var(--space-3); margin-bottom: var(--space-3) }
.m4 { margin: var(--space-4) }
.mt4 { margin-top: var(--space-4) }
.mr4 { margin-right: var(--space-4) }
.mb4 { margin-bottom: var(--space-4) }
.ml4 { margin-left: var(--space-4) }
.mx4 { margin-left: var(--space-4); margin-right: var(--space-4) }
.my4 { margin-top: var(--space-4); margin-bottom: var(--space-4) }
.mxn1 { margin-left: -var(--space-1); margin-right: -var(--space-1); }
.mxn2 { margin-left: -var(--space-2); margin-right: -var(--space-2); }
.mxn3 { margin-left: -var(--space-3); margin-right: -var(--space-3); }
.mxn4 { margin-left: -var(--space-4); margin-right: -var(--space-4); }
.m-auto { margin: auto; }
.mt-auto { margin-top: auto }
.mr-auto { margin-right: auto }
.mb-auto { margin-bottom: auto }
.ml-auto { margin-left: auto }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
:root {
--space-1: .5rem;
--space-2: 1rem;
--space-3: 2rem;
--space-4: 4rem;
} | 0.607081 | 0.310028 |
.resultHeader {
padding: 1em;
border-bottom: 1px solid #eaeaea;
}
.resultHeader img {
display: none;
}
@media only screen and (min-width: 560px) {
.resultHeader {
padding-top: 1em;
padding-left: 0;
padding-right: 0;
padding-bottom: 1em;
border-bottom: 1px solid #eaeaea;
}
.resultHeader img {
display: block;
}
.headerRowQuery {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
max-width: 800px;
}
}
.resultBody {
position: relative;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.searchingOverlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(249, 249, 249, 0.4)
}
.mainResultContainer {
width: 100%;
}
@media only screen and (min-width: 1080px) {
.mainResultContainer {
width: 800px;
}
}
.subResultContainer {
flex: 1;
display: none;
}
@media only screen and (min-width: 1080px) {
.subResultContainer {
display: block;
}
}
.subResultPanel {
max-width: 600px;
margin-top: 25px;
margin-right: 15px;
}
.moreButtonContainer {
width: 100%;
display: flex;
}
.moreButton {
width: 90%;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
max-width: 620px;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
background-color:#ffffff;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
cursor:pointer;
color:#666666;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
@media only screen and (min-width: 560px) {
.moreButtonContainer {
max-width: 800px;
flex-direction: row;
justify-content: flex-end;
}
.moreButton {
width: 100%;
margin: 0 0 50px 0;
}
}
.moreButton:hover {
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
background-color:#f6f6f6;
}
.moreButton:active {
position:relative;
top:1px;
} | src/containers/ResultPage/style.css | .resultHeader {
padding: 1em;
border-bottom: 1px solid #eaeaea;
}
.resultHeader img {
display: none;
}
@media only screen and (min-width: 560px) {
.resultHeader {
padding-top: 1em;
padding-left: 0;
padding-right: 0;
padding-bottom: 1em;
border-bottom: 1px solid #eaeaea;
}
.resultHeader img {
display: block;
}
.headerRowQuery {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
max-width: 800px;
}
}
.resultBody {
position: relative;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.searchingOverlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(249, 249, 249, 0.4)
}
.mainResultContainer {
width: 100%;
}
@media only screen and (min-width: 1080px) {
.mainResultContainer {
width: 800px;
}
}
.subResultContainer {
flex: 1;
display: none;
}
@media only screen and (min-width: 1080px) {
.subResultContainer {
display: block;
}
}
.subResultPanel {
max-width: 600px;
margin-top: 25px;
margin-right: 15px;
}
.moreButtonContainer {
width: 100%;
display: flex;
}
.moreButton {
width: 90%;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
max-width: 620px;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
background-color:#ffffff;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
cursor:pointer;
color:#666666;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
@media only screen and (min-width: 560px) {
.moreButtonContainer {
max-width: 800px;
flex-direction: row;
justify-content: flex-end;
}
.moreButton {
width: 100%;
margin: 0 0 50px 0;
}
}
.moreButton:hover {
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
background-color:#f6f6f6;
}
.moreButton:active {
position:relative;
top:1px;
} | 0.462959 | 0.103885 |
@charset "utf-8";
body,html{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: none;
background-color: #333333;
font-family: "微软雅黑", "宋体";
}
.main{
margin: 0 auto;
max-width: 10rem;
background-color: #544fad;
}
.content01{
height: 17.78rem;
}
.content01 img{
width: 100%;
height: 100%;
}
.content05{
height:9rem;
background: url("../../images/bg.png") no-repeat;
background-size: 100% 100%;
position: relative;
}
.form{
position: absolute;
left: 0;
right: 0;
top: -0.4rem;
bottom: 0;
width: 9.33rem;
height: 5.62rem;
background: #fff;
border: 1px solid #4263b0;
border-radius: 0.5rem;
margin:1.5rem auto;
display: flex;
justify-content: center;
align-items: center;
}
.form01{
position: absolute;
left: 0;
right: 0;
top: -0.7rem;
bottom: 0;
width: 9.33rem;
height: 6.62rem;
background: #fff;
border: 1px solid #4263b0;
border-radius: 0.5rem;
margin:1.5rem auto;
display: flex;
justify-content: center;
align-items: center;
}
.formInfo{
width: 9rem;
height: 5.23rem;
border:1px dashed #ee3900;
border-radius: 0.5rem;
position: relative;
text-align: center;
}
.formInfo01{
width: 9rem;
height: 6.23rem;
border:1px dashed #ee3900;
border-radius: 0.5rem;
position: relative;
text-align: center;
}
.text-common{
display: inline-block;
width: 7.82rem;
height: 0.8rem;
border-radius: 0.1rem;
border: 1px solid #666666;
padding-left: 0.333rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #333333;
}
.txt-button{
width: 7.82rem;
height: 0.8rem;
background: #ea5513;
border: none;
border-radius: 0.1rem;
color: #fff;
margin-top: 0.85rem;
}
.common01{
margin-top: 0.8rem;
}
.common02{
margin-top: 0.56rem;
}
input::-webkit-input-placeholder {
color: #999999;
}
.dialog{
width: 3rem;
height: 0.8rem;
line-height: 0.8rem;
border: 1px solid #666666;
background: #fff;
color: #000;
z-index: 99999;
border-radius: 0.1rem;
text-align: center;
display: none;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin:0.1rem auto;
}
.dialog01{
width: 3rem;
height: 0.8rem;
line-height: 0.8rem;
border: 1px solid #666666;
background: #fff;
color: #000;
z-index: 99999;
border-radius: 0.1rem;
text-align: center;
display: none;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin:-0.2rem auto;
}
.verificat01{
color: #f70a0a;
position: absolute;
top: 2.68rem;
left: 0.6rem;
display: none;
}
.verificat02{
color: #f70a0a;
position: absolute;
top: 4.05rem;
left: 0.6rem;
display: none;
}
.verificat2{
color: #f70a0a;
position: absolute;
top: 1.68rem;
left: 0.6rem;
display: none;
}
.verificat3{
color: #f70a0a;
position: absolute;
top: 3.05rem;
left: 0.6rem;
display: none;
}
.titleName{
font-size: 0.48rem;
color: #ec5f10;
font-weight: bolder;
margin-top: 0.5rem;
}
#inputPhone{
margin-top: 1.1rem;
}
#inputName{
margin-top: 1.1rem;
}
#err-info{
margin-top: 1.1rem;
} | web/nipaiyi/css/pages/page01.css | @charset "utf-8";
body,html{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: none;
background-color: #333333;
font-family: "微软雅黑", "宋体";
}
.main{
margin: 0 auto;
max-width: 10rem;
background-color: #544fad;
}
.content01{
height: 17.78rem;
}
.content01 img{
width: 100%;
height: 100%;
}
.content05{
height:9rem;
background: url("../../images/bg.png") no-repeat;
background-size: 100% 100%;
position: relative;
}
.form{
position: absolute;
left: 0;
right: 0;
top: -0.4rem;
bottom: 0;
width: 9.33rem;
height: 5.62rem;
background: #fff;
border: 1px solid #4263b0;
border-radius: 0.5rem;
margin:1.5rem auto;
display: flex;
justify-content: center;
align-items: center;
}
.form01{
position: absolute;
left: 0;
right: 0;
top: -0.7rem;
bottom: 0;
width: 9.33rem;
height: 6.62rem;
background: #fff;
border: 1px solid #4263b0;
border-radius: 0.5rem;
margin:1.5rem auto;
display: flex;
justify-content: center;
align-items: center;
}
.formInfo{
width: 9rem;
height: 5.23rem;
border:1px dashed #ee3900;
border-radius: 0.5rem;
position: relative;
text-align: center;
}
.formInfo01{
width: 9rem;
height: 6.23rem;
border:1px dashed #ee3900;
border-radius: 0.5rem;
position: relative;
text-align: center;
}
.text-common{
display: inline-block;
width: 7.82rem;
height: 0.8rem;
border-radius: 0.1rem;
border: 1px solid #666666;
padding-left: 0.333rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #333333;
}
.txt-button{
width: 7.82rem;
height: 0.8rem;
background: #ea5513;
border: none;
border-radius: 0.1rem;
color: #fff;
margin-top: 0.85rem;
}
.common01{
margin-top: 0.8rem;
}
.common02{
margin-top: 0.56rem;
}
input::-webkit-input-placeholder {
color: #999999;
}
.dialog{
width: 3rem;
height: 0.8rem;
line-height: 0.8rem;
border: 1px solid #666666;
background: #fff;
color: #000;
z-index: 99999;
border-radius: 0.1rem;
text-align: center;
display: none;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin:0.1rem auto;
}
.dialog01{
width: 3rem;
height: 0.8rem;
line-height: 0.8rem;
border: 1px solid #666666;
background: #fff;
color: #000;
z-index: 99999;
border-radius: 0.1rem;
text-align: center;
display: none;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin:-0.2rem auto;
}
.verificat01{
color: #f70a0a;
position: absolute;
top: 2.68rem;
left: 0.6rem;
display: none;
}
.verificat02{
color: #f70a0a;
position: absolute;
top: 4.05rem;
left: 0.6rem;
display: none;
}
.verificat2{
color: #f70a0a;
position: absolute;
top: 1.68rem;
left: 0.6rem;
display: none;
}
.verificat3{
color: #f70a0a;
position: absolute;
top: 3.05rem;
left: 0.6rem;
display: none;
}
.titleName{
font-size: 0.48rem;
color: #ec5f10;
font-weight: bolder;
margin-top: 0.5rem;
}
#inputPhone{
margin-top: 1.1rem;
}
#inputName{
margin-top: 1.1rem;
}
#err-info{
margin-top: 1.1rem;
} | 0.410993 | 0.05951 |
@font-face {
font-family: "CleanvertisingLight";
src: url("../fonts/CleanvertisingLight/CleanvertisingLight.eot");
src: url("../fonts/CleanvertisingLight/CleanvertisingLight.eot?#iefix")format("embedded-opentype"),
url("../fonts/CleanvertisingLight/CleanvertisingLight.woff") format("woff"),
url("../fonts/CleanvertisingLight/CleanvertisingLight.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "CleanvertisingBlack";
src: url("../fonts/CleanvertisingBlack/CleanvertisingBlack.eot");
src: url("../fonts/CleanvertisingBlack/CleanvertisingBlack.eot?#iefix")format("embedded-opentype"),
url("../fonts/CleanvertisingBlack/CleanvertisingBlack.woff") format("woff"),
url("../fonts/CleanvertisingBlack/CleanvertisingBlack.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
*, *:after, *:before {
box-sizing: border-box;
padding: 0;
margin: 0;
transition: .1s ease-in-out;
}
body{
font-family: CleanvertisingLight, CleanvertisingBlack, sans-serif;
/*color: white;*/
}
#wrap{
max-width: 960px;
margin: 0 auto;
}
#aside {
width: 33%;
float: left;
}
#container {
width: 64%;
float: right;
}
@media (max-width: 768px) {
#aside, #container {
width: 100%;
float: none;
}
}
#logo {
margin: 10px auto;
width: 100%;
}
#logo-text {
font-size: 36pt;
text-align: center;
font-style: unset;
text-decoration: underline;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.text-center{
text-align: center;
}
.button {
border: 1px solid black;
border-radius: 0;
background-color: white;
padding: 6px;
margin: 2px;
font-size: 14pt;
}
.button:hover {
cursor: pointer;
color: white;
background-color: black;
}
.menu{
padding: 0;
list-style: none;
font-size: 18pt;
}
.menu li{
text-align: center;
}
.menu a {
text-decoration: none;
outline: none;
display: block;
padding: 6px 0;
letter-spacing: 1px;
font-weight: 300;
transition: .3s linear;
color: black;
}
.menu a:hover {
color: #999a9c;
}
.invalid {
color:red;
}
.users-table, .city-table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
overflow: auto;
}
.users-table tr:hover, .city-table tr:hover {
background-color: #edefef;
}
.users-table td, .city-table td {
border-top: 1px solid #a4a6a6;
border-bottom: 1px solid #a4a6a6;
padding: 5px 2px;
}
.i-input input {
border: none;
padding: 0;
margin: 0;
width: 100%;
-webkit-appearance: none;
}
.i-city-select select {
border: none;
padding: 0;
margin: 0;
width: 100%;
}
.i-city-select {
border: none;
padding: 0;
margin: 0;
}
.user-id {
text-align: center;
} | assets/css/main.css | @font-face {
font-family: "CleanvertisingLight";
src: url("../fonts/CleanvertisingLight/CleanvertisingLight.eot");
src: url("../fonts/CleanvertisingLight/CleanvertisingLight.eot?#iefix")format("embedded-opentype"),
url("../fonts/CleanvertisingLight/CleanvertisingLight.woff") format("woff"),
url("../fonts/CleanvertisingLight/CleanvertisingLight.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "CleanvertisingBlack";
src: url("../fonts/CleanvertisingBlack/CleanvertisingBlack.eot");
src: url("../fonts/CleanvertisingBlack/CleanvertisingBlack.eot?#iefix")format("embedded-opentype"),
url("../fonts/CleanvertisingBlack/CleanvertisingBlack.woff") format("woff"),
url("../fonts/CleanvertisingBlack/CleanvertisingBlack.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
*, *:after, *:before {
box-sizing: border-box;
padding: 0;
margin: 0;
transition: .1s ease-in-out;
}
body{
font-family: CleanvertisingLight, CleanvertisingBlack, sans-serif;
/*color: white;*/
}
#wrap{
max-width: 960px;
margin: 0 auto;
}
#aside {
width: 33%;
float: left;
}
#container {
width: 64%;
float: right;
}
@media (max-width: 768px) {
#aside, #container {
width: 100%;
float: none;
}
}
#logo {
margin: 10px auto;
width: 100%;
}
#logo-text {
font-size: 36pt;
text-align: center;
font-style: unset;
text-decoration: underline;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.text-center{
text-align: center;
}
.button {
border: 1px solid black;
border-radius: 0;
background-color: white;
padding: 6px;
margin: 2px;
font-size: 14pt;
}
.button:hover {
cursor: pointer;
color: white;
background-color: black;
}
.menu{
padding: 0;
list-style: none;
font-size: 18pt;
}
.menu li{
text-align: center;
}
.menu a {
text-decoration: none;
outline: none;
display: block;
padding: 6px 0;
letter-spacing: 1px;
font-weight: 300;
transition: .3s linear;
color: black;
}
.menu a:hover {
color: #999a9c;
}
.invalid {
color:red;
}
.users-table, .city-table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
overflow: auto;
}
.users-table tr:hover, .city-table tr:hover {
background-color: #edefef;
}
.users-table td, .city-table td {
border-top: 1px solid #a4a6a6;
border-bottom: 1px solid #a4a6a6;
padding: 5px 2px;
}
.i-input input {
border: none;
padding: 0;
margin: 0;
width: 100%;
-webkit-appearance: none;
}
.i-city-select select {
border: none;
padding: 0;
margin: 0;
width: 100%;
}
.i-city-select {
border: none;
padding: 0;
margin: 0;
}
.user-id {
text-align: center;
} | 0.42656 | 0.070081 |
body{
margin: 0;
padding: 0;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center center;
}
section{
position: fixed;
width: 100%;
height: 100vh;
background: #fff;
overflow: hidden;
z-index: -5;
}
.bgPulse{
width: 100%;
height: 100%;
}
.bgPulse span{
position: absolute;
width: 80px;
height: 80px;
background: #000;
/* animation: anime 5s linear infinite; */
}
.bgPulse span:nth-child(2n+1)
{
background: transparent;
border: 5px solid #000;
border-radius: 25%;
}
.bgPulse span:nth-child(1)
{
top: 82%;
left: 30%;
animation: anime 7s linear infinite;
}
.bgPulse span:nth-child(2)
{
top: 40%;
left: 60%;
width: 50px;
height: 50px;
animation: anime 4s linear infinite;
}
.bgPulse span:nth-child(3)
{
top: 10%;
left: 80%;
animation: anime 5s linear infinite;
}
.bgPulse span:nth-child(4)
{
top: 94%;
left: 75%;
animation: anime 6s linear infinite;
}
.bgPulse span:nth-child(5)
{
top: 20%;
left: 10%;
animation: anime 8s linear infinite;
}
.bgPulse span:nth-child(6)
{
top: 30%;
left: 40%;
width: 0px;
height: 0px;
background: none;
border-top: 70px solid #000;
border-right: 40px solid transparent;
border-left: 40px solid transparent;
animation: anime 10s linear infinite;
}
.bgPulse span:nth-child(6)::before
{
content: "";
position: absolute;
top: -65px;
left: -30px;
width: 0px;
height: 0px;
background: none;
border-top: 50px solid #fff;
border-right: 30px solid transparent;
border-left: 30px solid transparent;
}
.bgPulse span:nth-child(7)
{
top: 45%;
left: 20%;
animation: anime 2s linear infinite;
}
@keyframes anime {
0%
{
transform: translateY(0) rotate(70deg);
background:
}
30%
{
transform: translateY(-20px) rotate(0deg) ;
}
60%
{
transform: translateY(0px) rotate(-70deg);
}
100%{
transform: translateY(0px) rotate(70deg);
}
}
@media only screen and (max-width: 768px) {
.bgPulse {
display: none;
} | assets/css/bganimation.css | body{
margin: 0;
padding: 0;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center center;
}
section{
position: fixed;
width: 100%;
height: 100vh;
background: #fff;
overflow: hidden;
z-index: -5;
}
.bgPulse{
width: 100%;
height: 100%;
}
.bgPulse span{
position: absolute;
width: 80px;
height: 80px;
background: #000;
/* animation: anime 5s linear infinite; */
}
.bgPulse span:nth-child(2n+1)
{
background: transparent;
border: 5px solid #000;
border-radius: 25%;
}
.bgPulse span:nth-child(1)
{
top: 82%;
left: 30%;
animation: anime 7s linear infinite;
}
.bgPulse span:nth-child(2)
{
top: 40%;
left: 60%;
width: 50px;
height: 50px;
animation: anime 4s linear infinite;
}
.bgPulse span:nth-child(3)
{
top: 10%;
left: 80%;
animation: anime 5s linear infinite;
}
.bgPulse span:nth-child(4)
{
top: 94%;
left: 75%;
animation: anime 6s linear infinite;
}
.bgPulse span:nth-child(5)
{
top: 20%;
left: 10%;
animation: anime 8s linear infinite;
}
.bgPulse span:nth-child(6)
{
top: 30%;
left: 40%;
width: 0px;
height: 0px;
background: none;
border-top: 70px solid #000;
border-right: 40px solid transparent;
border-left: 40px solid transparent;
animation: anime 10s linear infinite;
}
.bgPulse span:nth-child(6)::before
{
content: "";
position: absolute;
top: -65px;
left: -30px;
width: 0px;
height: 0px;
background: none;
border-top: 50px solid #fff;
border-right: 30px solid transparent;
border-left: 30px solid transparent;
}
.bgPulse span:nth-child(7)
{
top: 45%;
left: 20%;
animation: anime 2s linear infinite;
}
@keyframes anime {
0%
{
transform: translateY(0) rotate(70deg);
background:
}
30%
{
transform: translateY(-20px) rotate(0deg) ;
}
60%
{
transform: translateY(0px) rotate(-70deg);
}
100%{
transform: translateY(0px) rotate(70deg);
}
}
@media only screen and (max-width: 768px) {
.bgPulse {
display: none;
} | 0.650023 | 0.093264 |
body{
font-size:10px;
}
.cardFarmacia{
background-color:whitesmoke;
color: rgb(103, 103, 104);
}
.progress2 {
background: red;
display: block;
height: 20px;
text-align: center;
transition: width .3s;
width: 0;
}
.cardOncologia{
width: 103%;
margin-left: -1em;
margin-right: -1em;
}
.progress.hide {
opacity: 0;
transition: opacity 1.3s;
}
.protocolos{
background-color: #C9923D;
color: white;
font-weight: 500;
width: 35px;
border-radius: 4px;
margin-left: 2%;
float: left;
}
.header-custom {
background: #f5f5f5;
}
.header-list{
font-family: 'Roboto Condensed', sans-serif;
font-size: 13px !important;
text-transform: uppercase;
color:#ababab;
letter-spacing: 0.5px;
}
.header-list-urg{
font-family: 'Roboto Condensed', sans-serif;
font-size: 15px !important;
text-transform: uppercase;
color:#a7a7a7;
letter-spacing: 0.6px;
}
.td-urgencia{
font-weight: 900;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 0.7px;
}
.header-list-card-table{
font-family: 'Roboto Condensed', sans-serif;
font-size: 13px !important;
text-transform: uppercase;
color:#616161;
letter-spacing: 0.5px;
}
.body-table-card{
color:#181818;
}
.header-list-card{
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px !important;
text-transform: uppercase;
color:#2e2e2e;
letter-spacing: 0.5px;
}
.card-title-font{
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px !important;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.text-painel{
line-height: 69px;
font-family: 'roboto condensed';
font-size: 23px;
letter-spacing: 1px;
padding-left: 40px;
}
.score{
font-size: 24px;
letter-spacing: 1.5px;
text-align: center;
font-weight: 900;
font-family: 'roboto condensed';
}
.scoreSolic{
color: #e06969;
}
.scoreAtend{
color: #6ecaa1;
}
.Labelscore{
font-size: 12px;
letter-spacing: 0.5px;
text-align: center;
font-weight: 900;
font-family: 'roboto condensed';
color: #888;
line-height: 350%;
}
.LabelscoreOncologia{
font-size: 12px;
letter-spacing: 0.5px;
vertical-align: middle;
font-weight: 900;
font-family: 'roboto condensed';
color: #888;
line-height: 350%;
}
.texto_label_oncologia{
margin-left:5px;
}
.iconeOncologiaLabel{
font-size: 9px;
vertical-align: middle;
float: left;
margin-top:8px;
}
.headerPadding{
padding: 89px 1px !important;
}
.cardStyle{
font-family: 'roboto condensed';
padding: 10px;
}
.button-bar{
line-height: 50px !important;
/*margin: 28px 1px 0 0;*/
}
table.responsive-table {
display: table;
table-layout: fixed;
margin-top: 55px;
}
table.responsive-table thead {
position: fixed;
top: 50px;
width: 100%;
height: 50px;
margin-top: 18px;
z-index: 1;
table-layout: fixed;
display: table;
background-color:white;
} | public/rhp/css/custom.css | body{
font-size:10px;
}
.cardFarmacia{
background-color:whitesmoke;
color: rgb(103, 103, 104);
}
.progress2 {
background: red;
display: block;
height: 20px;
text-align: center;
transition: width .3s;
width: 0;
}
.cardOncologia{
width: 103%;
margin-left: -1em;
margin-right: -1em;
}
.progress.hide {
opacity: 0;
transition: opacity 1.3s;
}
.protocolos{
background-color: #C9923D;
color: white;
font-weight: 500;
width: 35px;
border-radius: 4px;
margin-left: 2%;
float: left;
}
.header-custom {
background: #f5f5f5;
}
.header-list{
font-family: 'Roboto Condensed', sans-serif;
font-size: 13px !important;
text-transform: uppercase;
color:#ababab;
letter-spacing: 0.5px;
}
.header-list-urg{
font-family: 'Roboto Condensed', sans-serif;
font-size: 15px !important;
text-transform: uppercase;
color:#a7a7a7;
letter-spacing: 0.6px;
}
.td-urgencia{
font-weight: 900;
font-family: 'Roboto Condensed', sans-serif;
letter-spacing: 0.7px;
}
.header-list-card-table{
font-family: 'Roboto Condensed', sans-serif;
font-size: 13px !important;
text-transform: uppercase;
color:#616161;
letter-spacing: 0.5px;
}
.body-table-card{
color:#181818;
}
.header-list-card{
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px !important;
text-transform: uppercase;
color:#2e2e2e;
letter-spacing: 0.5px;
}
.card-title-font{
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px !important;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.text-painel{
line-height: 69px;
font-family: 'roboto condensed';
font-size: 23px;
letter-spacing: 1px;
padding-left: 40px;
}
.score{
font-size: 24px;
letter-spacing: 1.5px;
text-align: center;
font-weight: 900;
font-family: 'roboto condensed';
}
.scoreSolic{
color: #e06969;
}
.scoreAtend{
color: #6ecaa1;
}
.Labelscore{
font-size: 12px;
letter-spacing: 0.5px;
text-align: center;
font-weight: 900;
font-family: 'roboto condensed';
color: #888;
line-height: 350%;
}
.LabelscoreOncologia{
font-size: 12px;
letter-spacing: 0.5px;
vertical-align: middle;
font-weight: 900;
font-family: 'roboto condensed';
color: #888;
line-height: 350%;
}
.texto_label_oncologia{
margin-left:5px;
}
.iconeOncologiaLabel{
font-size: 9px;
vertical-align: middle;
float: left;
margin-top:8px;
}
.headerPadding{
padding: 89px 1px !important;
}
.cardStyle{
font-family: 'roboto condensed';
padding: 10px;
}
.button-bar{
line-height: 50px !important;
/*margin: 28px 1px 0 0;*/
}
table.responsive-table {
display: table;
table-layout: fixed;
margin-top: 55px;
}
table.responsive-table thead {
position: fixed;
top: 50px;
width: 100%;
height: 50px;
margin-top: 18px;
z-index: 1;
table-layout: fixed;
display: table;
background-color:white;
} | 0.34621 | 0.095139 |
html {
position: relative;
min-height: 100%;
}
body {
overflow-y: scroll !important;
margin: 0;
padding: 0;
min-height: 100%;
/* background: url(assets/mybg.png) #fff; */
direction: ltr;
/* Margin bottom by footer height */
margin-bottom: 131px;
}
/* Vis Network */
#mynetwork {
width: 100%;
height: 600px;
border: 1px solid lightgray;
background-color: #ffffff;
}
.my-blue-bg {
background-color: #38809e;
}
.my-blue-font {
color: #38809e;
}
.my-white-font {
color: #ffffff;
opacity: 1;
}
.my-blue-button {
background-color: #38809e;
border-color: #38809e;
}
.my-blue-button:hover,
.my-blue-button:focus,
.my-blue-button:active {
background-color: #20495a;
border-color: #20495a;
outline: none;
}
.my-blue-button:active:focus {
background-color: #183743;
border-color: #183743;
outline: none;
}
div #mynetwork {
/* Font & Text */
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 400;
letter-spacing: normal;
line-height: 20px;
text-decoration: none solid rgb(51, 51, 51);
text-align: start;
text-indent: 0px;
text-transform: none;
vertical-align: baseline;
white-space: normal;
word-spacing: 0px;
/* Color & Background */
background-attachment: scroll;
background-color: rgb(255, 255, 255);
background-image: none;
background-position: 0% 0%;
background-repeat: repeat;
color: rgb(51, 51, 51);
/* Box */
height: 450px;
width: 1110px;
border: 1px solid rgb(211, 211, 211);
border-top: 1px solid rgb(211, 211, 211);
border-right: 1px solid rgb(211, 211, 211);
border-bottom: 1px solid rgb(211, 211, 211);
border-left: 1px solid rgb(211, 211, 211);
margin: 0px;
padding: 0px;
max-height: none;
min-height: 0px;
max-width: none;
min-width: 0px;
/* Positioning */
position: static;
top: auto;
bottom: auto;
right: auto;
left: auto;
float: none;
display: block;
clear: none;
z-index: auto;
/* List */
list-style-image: none;
list-style-type: disc;
list-style-position: outside;
/* Table */
border-collapse: separate;
border-spacing: 0px 0px;
caption-side: top;
empty-cells: show;
table-layout: auto;
/* Miscellaneous */
overflow: visible;
cursor: auto;
visibility: visible;
/* Effects */
transform: none;
transition: all 0s ease 0s;
/* outline: rgb(255, 0, 0) dashed 1px; */
outline-offset: 0px;
box-sizing: border-box;
resize: none;
text-shadow: none;
text-overflow: clip;
word-wrap: normal;
box-shadow: none;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
} | web/gui2/src/main/webapp/app/view/topo-creator/topo-creator/topo-creator.component.css | html {
position: relative;
min-height: 100%;
}
body {
overflow-y: scroll !important;
margin: 0;
padding: 0;
min-height: 100%;
/* background: url(assets/mybg.png) #fff; */
direction: ltr;
/* Margin bottom by footer height */
margin-bottom: 131px;
}
/* Vis Network */
#mynetwork {
width: 100%;
height: 600px;
border: 1px solid lightgray;
background-color: #ffffff;
}
.my-blue-bg {
background-color: #38809e;
}
.my-blue-font {
color: #38809e;
}
.my-white-font {
color: #ffffff;
opacity: 1;
}
.my-blue-button {
background-color: #38809e;
border-color: #38809e;
}
.my-blue-button:hover,
.my-blue-button:focus,
.my-blue-button:active {
background-color: #20495a;
border-color: #20495a;
outline: none;
}
.my-blue-button:active:focus {
background-color: #183743;
border-color: #183743;
outline: none;
}
div #mynetwork {
/* Font & Text */
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 400;
letter-spacing: normal;
line-height: 20px;
text-decoration: none solid rgb(51, 51, 51);
text-align: start;
text-indent: 0px;
text-transform: none;
vertical-align: baseline;
white-space: normal;
word-spacing: 0px;
/* Color & Background */
background-attachment: scroll;
background-color: rgb(255, 255, 255);
background-image: none;
background-position: 0% 0%;
background-repeat: repeat;
color: rgb(51, 51, 51);
/* Box */
height: 450px;
width: 1110px;
border: 1px solid rgb(211, 211, 211);
border-top: 1px solid rgb(211, 211, 211);
border-right: 1px solid rgb(211, 211, 211);
border-bottom: 1px solid rgb(211, 211, 211);
border-left: 1px solid rgb(211, 211, 211);
margin: 0px;
padding: 0px;
max-height: none;
min-height: 0px;
max-width: none;
min-width: 0px;
/* Positioning */
position: static;
top: auto;
bottom: auto;
right: auto;
left: auto;
float: none;
display: block;
clear: none;
z-index: auto;
/* List */
list-style-image: none;
list-style-type: disc;
list-style-position: outside;
/* Table */
border-collapse: separate;
border-spacing: 0px 0px;
caption-side: top;
empty-cells: show;
table-layout: auto;
/* Miscellaneous */
overflow: visible;
cursor: auto;
visibility: visible;
/* Effects */
transform: none;
transition: all 0s ease 0s;
/* outline: rgb(255, 0, 0) dashed 1px; */
outline-offset: 0px;
box-sizing: border-box;
resize: none;
text-shadow: none;
text-overflow: clip;
word-wrap: normal;
box-shadow: none;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
} | 0.345547 | 0.056004 |
.Infographics_RelatedVariables table {
font-size: 13px;
}
.dj_rtl .RelatedVariables_Labels {
text-align: right;
}
.RelatedVariables_HighLabel {
margin: 1.5pt 1.5pt 3pt 0;
font-size: 9pt;
}
.RelatedVariables_LowLabel {
margin: 0 0 1.5pt 0;
font-size: 9pt;
}
.RelatedVariables_Table {
position: relative;
margin: 0 0.75pt 0 0.75pt;
border-collapse: collapse;
width: 99%;
}
.RelatedVariables_ColumnHeader {
padding-top: 0;
color: #ffffff;
}
.RelatedVariables_Row {
color: #c4c4c4;
background-color: #444444;
}
.RelatedVariables_Row.AlternatingRow {
background-color: #666666;
}
.RelatedVariables_TextColumn {
padding-left: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_ValueColumn {
padding-left: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_DifferenceColumn {
padding-left: 4pt;
padding-right: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_DifferenceColumn_Positive {
color: #66F45B;
}
.RelatedVariables_DifferenceColumn_Negative {
color: #43D3FF;
}
.dj_rtl .RelatedVariables_ColumnHeader,
.dj_rtl .RelatedVariables_TextColumn,
.dj_rtl .RelatedVariables_ValueColumn,
.dj_rtl .RelatedVariables_DifferenceColumn_Positive,
.dj_rtl .RelatedVariables_DifferenceColumn_Negative {
text-align: right;
}
.RelatedVariables_ChartNegative {
text-align: right;
border-top: 0.75pt solid #ACACAC;
border-bottom: 0.75pt solid #ACACAC;
}
.dj_rtl .RelatedVariables_ChartNegative {
text-align: left;
}
.RelatedVariables_ChartPositive {
border-right: 0.75pt solid #ACACAC;
border-top: 0.75pt solid #ACACAC;
border-bottom: 0.75pt solid #ACACAC;
}
.dj_rtl .RelatedVariables_ChartPositive {
text-align: right;
border-right: 0;
border-left: 0.75pt solid #ACACAC;
}
.RelatedVariables_PositiveBar {
height: 9pt;
background-color: #66F45B;
display: inline-block;
}
.RelatedVariables_NegativeBar {
height: 9pt;
background-color: #43D3FF;
display: inline-block;
}
.RelatedVariables_ComparisonDiv {
float: right;
width: 35%;
margin: 3pt;
}
.dj_rtl .RelatedVariables_ComparisonDiv {
float: left;
}
.RelatedVariables_ComparisonLabel {
margin-bottom: 3.75pt;
}
.dj_rtl .RelatedVariables_ComparisonLabel {
text-align: right;
}
.Collapsed .RelatedVariables_TextColumn,
.Collapsed .RelatedVariables_ValueColumn {
font-size: 6.75pt;
}
.Collapsed .MinPct {
background-color: #7bbdff;
}
.Collapsed .MaxPct {
background-color: #6def37;
}
.Collapsed .MinPct,
.Collapsed .MaxPct {
color: #444444;
} | dijit/geoenrichment/themes/common/RelatedVariables.css | .Infographics_RelatedVariables table {
font-size: 13px;
}
.dj_rtl .RelatedVariables_Labels {
text-align: right;
}
.RelatedVariables_HighLabel {
margin: 1.5pt 1.5pt 3pt 0;
font-size: 9pt;
}
.RelatedVariables_LowLabel {
margin: 0 0 1.5pt 0;
font-size: 9pt;
}
.RelatedVariables_Table {
position: relative;
margin: 0 0.75pt 0 0.75pt;
border-collapse: collapse;
width: 99%;
}
.RelatedVariables_ColumnHeader {
padding-top: 0;
color: #ffffff;
}
.RelatedVariables_Row {
color: #c4c4c4;
background-color: #444444;
}
.RelatedVariables_Row.AlternatingRow {
background-color: #666666;
}
.RelatedVariables_TextColumn {
padding-left: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_ValueColumn {
padding-left: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_DifferenceColumn {
padding-left: 4pt;
padding-right: 4pt;
border: 0.75pt solid #ACACAC;
}
.RelatedVariables_DifferenceColumn_Positive {
color: #66F45B;
}
.RelatedVariables_DifferenceColumn_Negative {
color: #43D3FF;
}
.dj_rtl .RelatedVariables_ColumnHeader,
.dj_rtl .RelatedVariables_TextColumn,
.dj_rtl .RelatedVariables_ValueColumn,
.dj_rtl .RelatedVariables_DifferenceColumn_Positive,
.dj_rtl .RelatedVariables_DifferenceColumn_Negative {
text-align: right;
}
.RelatedVariables_ChartNegative {
text-align: right;
border-top: 0.75pt solid #ACACAC;
border-bottom: 0.75pt solid #ACACAC;
}
.dj_rtl .RelatedVariables_ChartNegative {
text-align: left;
}
.RelatedVariables_ChartPositive {
border-right: 0.75pt solid #ACACAC;
border-top: 0.75pt solid #ACACAC;
border-bottom: 0.75pt solid #ACACAC;
}
.dj_rtl .RelatedVariables_ChartPositive {
text-align: right;
border-right: 0;
border-left: 0.75pt solid #ACACAC;
}
.RelatedVariables_PositiveBar {
height: 9pt;
background-color: #66F45B;
display: inline-block;
}
.RelatedVariables_NegativeBar {
height: 9pt;
background-color: #43D3FF;
display: inline-block;
}
.RelatedVariables_ComparisonDiv {
float: right;
width: 35%;
margin: 3pt;
}
.dj_rtl .RelatedVariables_ComparisonDiv {
float: left;
}
.RelatedVariables_ComparisonLabel {
margin-bottom: 3.75pt;
}
.dj_rtl .RelatedVariables_ComparisonLabel {
text-align: right;
}
.Collapsed .RelatedVariables_TextColumn,
.Collapsed .RelatedVariables_ValueColumn {
font-size: 6.75pt;
}
.Collapsed .MinPct {
background-color: #7bbdff;
}
.Collapsed .MaxPct {
background-color: #6def37;
}
.Collapsed .MinPct,
.Collapsed .MaxPct {
color: #444444;
} | 0.674372 | 0.115911 |
@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,900|Open+Sans:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');
body{
background: #f8f8f8;;
font-family: 'Montserrat', sans-serif;
}
.list-lapang {
padding: 10px;
display: block;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
background: #EEEEEE;
}
.list-field{
padding: 16px;
}
.list-gedung{
background: #ecf0f1;
margin: 15px 0px;
border: 1px solid #282828;
box-shadow: 5px 5px 20px #000000;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.list-gedung a{
color: #34495e;
}
.list-gedung a:hover{
color: black;
text-decoration: none;
}
.subscribe{
margin-top: 50px;
border: 3px dashed #f1c40f;
padding: 7px;
}
.input-subsribe{
height: 50px;
}
.btn-subsribe{
height: 50px;
background: #3498db;
}
footer {
margin-top: 31px;
min-height: 300px;
background-color: #0075ad;
padding: 30px 10px;
color: white;
}
footer img.img-responsive.loading {
width: 150px;
margin-bottom: 30px;
}
footer ul li{
list-style: none;
}
footer ul li a, footer a{
color: white;
}
footer ul li a:hover{
color: white;
text-decoration: underline;
}
.text-error{
color: red;
}
.navbar-default {
background-color: #ffffff;
border-color: #ffffff;
border-radius: 0;
padding: 0;
}
.navbar-default .navbar-brand {
color: white;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #ecf0f1;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
padding-left: 35px;
font-weight: 700;
font-size: 10pt;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #0075ad;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
background-color: #e7e7e7;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #0075ad;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #0075ad;
}
.carousel {
position: relative;
margin-top: -21px;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner > .item {
position: relative;
display: none;
-webkit-transition: .6s ease-in-out left;
-o-transition: .6s ease-in-out left;
transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
transition: transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
left: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
left: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 15%;
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
background-color: rgba(0, 0, 0, 0);
filter: alpha(opacity=50);
opacity: .5;
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control.right {
right: 0;
left: auto;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: 0;
opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
font-family: serif;
line-height: 1;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
padding-left: 0;
margin-left: -30%;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #fff;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #fff;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.modal {
overflow-y: scroll;
}
.bar-menu {
color: #fff;
font-weight: bold;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background: none;
}
.navbar-default .navbar-toggle .icon-bar {
background: none;
}
.search-result form.ng-pristine.ng-valid {
clear: both;
}
.search-result ul.nav.nav-tabs.kategori-lapang {
top: 0;
display: block;
clear: both;
margin-bottom: 40px;
}
.search-result .panel-body {
padding: 15px;
margin-bottom: 20px;
}
/*pembaharuan*/
.avatar-upload {
position: relative;
max-width: 205px;
margin: 0 auto;
}
.avatar-upload .avatar-edit {
position: absolute;
top: 79%;
right: 40%;
z-index: 1;
bottom: 0;
}
.avatar-upload .avatar-preview {
width: 100px;
height: 100px;
position: relative;
border-radius: 100%;
margin: 0 auto;
}
.img-thumbnail {
padding: .25rem;
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: .25rem;
max-width: 100%;
height: auto;
}
.avatar-upload .avatar-preview > div {
width: 100%;
height: 100%;
border-radius: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.avatar-upload .avatar-edit input {
display: none;
}
button, input {
overflow: visible;
}
button, input, optgroup, select, textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.avatar-upload .avatar-edit input + label {
display: inline-block;
width: 34px;
height: 34px;
margin-bottom: 0;
border-radius: 100%;
background: #FFFFFF;
border: 1px solid transparent;
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
cursor: pointer;
font-weight: normal;
transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
.text-xs-center {
text-align: center;
}
}
hr{
display: none;
}
.list-gedung a h5{
margin-top: 20px;
margin-bottom: 20px;
color: #000000;
}
p, h1, h2, h3, h4, h5, label{
color: #000;
}
.section-top {
background-color: #0075ad!important;
min-height: 380px;
margin-top: 51px;
margin-bottom: -80px;
opacity: 1;
}
.jumbotron{
background-color: transparent;
}
.jumbotron h1{
color: #fff;
font-weight: 700;
}
.black{
color:#000;
}
.green {
background-color: #0075ad;
border-color: #0075ad;
position: relative;
top: 0px;
}
.green:hover{
background-color: #0075ad !important;
border-color: #0075ad !important;
}
p.label-search {
color: #888;
font-size: 13px;
}
.desc-box {
padding: 5px 15px;
min-height: 110px;
}
.nav>li>a {
position: relative;
display: block;
padding: 6px;
}
.modal-title{
color: #323131;
font-weight: bold;
}
label {
color: #c7c4c4;
font-size: 10pt;
font-weight: 100;
}
p.value{
font-size : 16pt;
}
p.value-address{
font-size : 11pt;
}
p.value-address-main{
font-size: 11pt;
}
.pembatas{
margin-top:0px; display:block; height:1px; background-color:#0075ad;
}
.img-thumbnail {
display: inline-block;
width: 100%;
height: auto;
padding: 0;
line-height: 1.42857143;
background-color: #fff;
border: 2px solid #0075ad;
border-radius: 6px;
webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
div#map{
width: 100% !important;
height: 380px !important;
position: relative !important;
overflow: hidden !important;
margin-top: 12px;
border: 4px solid #6f6c6c;
border-radius: 6px;
}
.row.head-sched {
background: #37D716 !important;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
margin-bottom: -20px;
padding-top: 5px;
}
span#lapang {
font-size: 20pt;
display: block;
}
td.warning, td.ng-binding.warning {
background-color: #e6eaea !important;
color: #b5b3b3;
}
td.success, td.ng-binding.success{
background-color: #ffffff !important;
color: #000000;
font-weight: 400;
font-size: 14pt;
}
li.ng-binding.ng-scope {
display: inline-block;
text-align: center;
font-size: 13pt;
background-color: #0075ad;
color: #fff;
border-radius: 50px;
padding: 10px 20px;
margin: 12px 5px 5px 5px;
}
h2.title {
margin-bottom: 50px;
margin-top: 30px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #000 !important;
color: #000;
}
.label-warning {
background-color: #f0ad4e;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.label-success {
background-color: #0075ad;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.label-danger {
background-color: #d9534f;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 8px;
line-height: 1.42857143;
vertical-align: middle !important;
border: none !important;
color: #000;
}
.image-desc {
width: 100%;
height: 410px;
background-size: cover;
background-position: center;
border: 4px solid #6f6c6c;
border-radius: 6px;
}
.image-search{
width: 100%;
height: 120px;
background-size: cover;
background-position: center;
}
.list-lapang-search {
padding: 10px;
display: block;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border-radius: 6px;
background-color: #ffffff;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.indicator {
background-color: #ff6d00;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: #fff;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-green-saldo {
background-color: #0075ad;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: #fff;
margin-bottom: 8px;
}
.indicator-green {
background-color: #0075ad;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-blue {
background-color: #0037ce;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-red {
background-color: #da1e1e;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.green-btn{
background-color: #0075ad;
border-color: #0075ad;
padding: 12px;
font-weight: 600;
font-size: 13pt;
border-radius: 50px;
margin-top: -22px;
margin-bottom: 20px;
}
.green-btn:hover{
background-color: #0075ad !important;
border-color: #0075ad !important;
transition: 0.5s;
}
.orange-btn{
background-color: #f1c40f !important;
border-color: #f1c40f !important;
margin-top: 42px;
}
.orange-btn:hover{
background-color: #f1c40f !important;
border-color: #f1c40f !important;
transition: 0.5s;
}
.cancellation-policy{
background: orange;
}
.bg-home {
/*background-image: url(../image/bg-vector.jpg);*/
background-position: bottom;
margin-bottom: -52px;
background-repeat: no-repeat;
}
.body-home{
min-height: 380px !important;
padding-bottom: 50px;
}
h4.download {
font-size: 42px;
font-weight: 600;
}
img.download {
margin-top: 15px;
}
.cards {
border: none;
border-radius: 8px;
margin-bottom: 20px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.22);
}
.search-result .panel-search {
margin-bottom: 0;
background-color: #fff;
border: none;
box-shadow: none;
margin-top: -20px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
}
.cards-image {
height: 200px;
width: 100%;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
background-size: cover !important;
background-position: center !important;
}
h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 120px;
}
h1.section-title + p {
text-align: center;
color: #666666;
margin-bottom: 30px;
}
.cards-text {
background: #ffffff;
padding-top: 20px;
padding-bottom: 10px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
padding-left: 20px;
padding-right: 20px;
min-height: 110px;
border: none;
}
.body-home .owl-carousel .item {
padding: 10px;
}
a.venue-name {
color: #000000 !important;
font-weight: 700;
font-size: 16px;
margin-bottom: 10px !important;
display: block;
text-decoration: none !important;
}
.cards-text p {
color: #666666;
font-size: 12px;
height: 38px;
overflow: hidden;
}
.register-section h2{
font-weight: 700
}
.register-section button.btn.btn-warning {
margin-left: 10px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
padding: 12px 25px;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
}
.register-section h1.section-title + p {
text-align: left;
}
.register-section h1.section-title {
text-align: left;
}
.register-section button.btn.btn-warning {
background: #F59500;
margin-bottom: 6px;
border-radius: 100px;
border: none;
float: left;
margin-left: 0px !important;
text-transform: none !important;
}
footer{
color: #fff !important;
padding-top: 50px !important;
}
footer p.text-center {
color: #fff !important;
}
.list-lapang-search h4 {
color: #000000;
font-weight: bold;
}
.lapang-detail p, .lapang-detail h1, .lapang-detail h2, .lapang-detail h3, .lapang-detail h4, .lapang-detail h5, .lapang-detail a{
color: #000 !important
}
.lapang-detail a{
color: #fff !important
}
.lapang-detail .cards-image {
height: 380px;
width: 100%;
border-radius: 20px;
background-size: cover !important;
background-position: center;
}
.nopadding{
padding: 0 !important
}
.lapang-detail .owl-carousel {
margin-top: 22px;
}
.detail-venue-name{
font-weight: 700 !important
}
.price-start {
background-color: #eeeeee;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
border-radius: 10px;
padding: 15px;
margin-top: -20px;
margin-bottom: 30px;
}
.lapang-detail .owl-dots {
position: relative;
top: -70px;
}
.review-lapang h4 {
float: right;
color: #000;
font-size: 14px;
text-align: left;
font-weight: bold;
padding: 10px;
}
.breadcrumb>.active {
color: #000;
font-weight: bold;
}
.submit button{
font-size: 14px;
}
.table-review td {
color: #000 !important;
font-size: 12px;
}
.table-finish>tbody>tr>td{
color: #000 !important;
font-size: 14px;
}
.panel-register label {
color: #666 !important;
font-size: 10pt;
font-weight: 100;
}
.panel-body h4{
color: #000 !important
}
.panel-body.my-info{
border-bottom: 1px dotted #0075ad
}
.body-cek{
padding-top: 50px;
padding-bottom: 50px;
}
.price-amount{
font-size: 28px;
color: #000;
font-weight: 700;
letter-spacing: 2px;
text-align: center;
}
img.logo-bank {
width: 80px;
margin-bottom: 10px;
text-align: center;
}
span#deadlinePayment {
font-size: 38px;
text-align: center;
font-weight: bold;
}
.bold-text{
font-weight: bold !important;
}
.keterangan{
color: #aaa;
font-size: 11px;
}
.dotted-top{
border-top: 1px dotted #aaaaaa;
}
.table-summary tr th, .table-summary tr td{
color: #000 !important
}
.footer-status span.label {
padding: 10px 24px !important;
font-size: 14px !important;
font-weight: bold !important;
}
.navbar-nav li {
padding: 10px 0;
text-align: center !important;
}
.select2-dropdown {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
box-sizing: border-box;
display: block;
position: absolute;
left: -100000px;
width: 100%;
z-index: 9999999;
}
.table-review th {
color: #000 !important;
font-size: 12px !important;
width: auto !important;
background: #eee;
border-right: 1px dotted #111 !important;
}
.table-review td a.btn {
font-size: 13px;
font-weight: 100;
border: none;
}
.promo .cards-image {
height: 31em !important;
width: 100%;
border-radius: 0;
background-size: contain !important;
background-position: center !important;
background-repeat: no-repeat !important;
}
a.navbar-brand img {
height: 30px !important;
}
.cards-image.img-promo-detail {
height: 36vw !important;
width: 100%;
}
.jumbotron-promo {
padding: 0 !important;
margin-bottom: -10px !important;
}
.search-home{
z-index: 9;
position: relative;
}
.jumbotron-promo .cards {
border: none;
border-radius: 20px;
margin-bottom: -30px;
}
.btn-copy {
background: #01AA01;
border-color: #01AA01;
color: #fff;
font-weight: bold;
padding: 12px 26px;
font-size: 13pt;
border-radius: 12px;
border-bottom: 4px solid #008418;
}
.btn-copy:hover {
background: #008418;
border-color: #008418;
color: #fff;
font-weight: bold;
padding: 12px 26px;
font-size: 13pt;
border-radius: 12px;
border-bottom: 4px solid #008418;
}
.body-promo {
padding-top: 30px;
padding-bottom: 30px;
}
.kode-promo {
font-size: 16pt;
}
.ico-cat{
margin-right: 5px;
}
.panel-search {
margin-bottom: 0;
background-color: #fff;
border: none;
box-shadow: none;
margin-top: -20px;
}
.register-bg {
background-image: url(../image/bg-vector.jpg);
min-height: 540px !important;
background-repeat: no-repeat;
background-position: bottom !important;
background-size: 100%;
padding-top: 50px;
margin-top: -20px;
background-color: #ffffff;
}
.nav-tabs>li>a {
margin-right: 2px;
line-height: 1.42857143;
border: 4px solid transparent;
border-radius: 10px;
background: #eee;
color: #666;
width: 120px;
text-align: center;
}
.nav-tabs>li.active>a {
color: #000 !important;
font-weight: bold;
}
.bodyku{
margin-top:90px;
}
.search-form {
margin-top: 20px;
}
.nav-tabs {
border-bottom: none !important;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: #555;
cursor: default;
background-color: #fff;
border: 4px solid #0075ad !important;
border-bottom-color: transparent;
}
.search-box {
padding: 20px;
background: #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
.navbar-brand {
float: left;
height: 30px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
button.owl-next {
position: absolute;
right: 0;
top: 12vw;
}
button.owl-prev {
position: absolute;
left: 0;
top: 12vw;
}
button.owl-next span, button.owl-prev span,button.owl-next span:hover, button.owl-prev span:hover {
padding-bottom: 5px;
color: #fff;
background: none;
padding-left: 25px;
padding-right: 25px;
border-radius: 200px;
padding-top: 0;
font-size: 36pt !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: none !important;
color: #FFF;
text-decoration: none;
}
.search-home .nav>li>a>img {
max-width: none;
width: 42px;
height: auto;
display: block;
text-align: center;
margin: 0 auto;
margin-bottom: 10px;
margin-top: 4px;
}
ul.nav.nav-tabs.kategori-lapang {
position: relative;
top: -40px;
margin-top: 50px;
}
.search-home .search-box ul.nav.nav-tabs.kategori-lapang {
position: relative;
top: -66px;
margin-top: 0;
}
.kategori-lapang li {
margin-right: 6px;
}
.body-home h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 30px;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
margin-top: -50px;
}
.benefit-section img{
width: 160px;
float: none;
margin: 0 auto;
}
.benefit-section h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 60px;
margin-bottom: 40px;
}
p.title-benefit {
font-weight: bold;
font-size: 13pt;
margin-top: 20px;
}
p.benefit-txt {
font-size: 10pt;
margin-bottom: 40px;
color: #666666
}
.benefit-section hr{
display: block !important;
}
div.customGPlusSignIn {
width: 100%;
border-radius: 50px !important;
}
a#fbLink {
width: 100%;
border-radius: 50px !important;
padding: 10px;
border: none !important;
}
form[name='login'] button.btn.btn-primary {
width: 100% !important;
border-radius: 50px;
padding: 10px;
}
.navbar + .modal .modal-dialog {
width: 380px;
}
@media (max-width: 767px) {
img.download {
display: block;
margin: 0 auto;
margin-top: 20px !important;
}
footer ul {
padding-left: 0 !important;
text-align: center;
}
footer img.img-responsive.loading {
width: 150px;
margin-bottom: 30px;
margin-top: 30px;
}
.register-bg {
background-image: url(../image/bg-vector.jpg);
min-height: 520px !important;
background-repeat: no-repeat;
background-position: bottom right !important;
background-size: 340%;
padding-top: 0px;
margin-top: 30px;
background-color: #ffffff;
margin-bottom: 0 !important;
padding-bottom: 50%;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
margin-top: 0px;
}
.navbar-brand {
float: left;
height: 56px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
.body-home {
min-height: 380px !important;
padding-bottom: 0;
}
.body-home h1.section-title {
margin-top: 20px;
}
.benefit-section hr{
display: block !important;
}
h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 10px;
}
.register-section h1.section-title {
text-align: center;
margin-top: -50px;
font-size: 16pt;
}
.register-section h1.section-title + p {
text-align: center;
}
.navbar-nav li {
padding: 10px 0;
text-align: left !important;
}
.search-home .search-box .kategori-lapang a {
width: 80px;
}
h3.text-search{
color: #000;
font-weight: bold;
margin-top: -15px;
margin-left: 18px;
margin-bottom: 20px;
font-size: 14pt;
}
.section-top {
min-height: 250px;
margin-top: -11px;
background-size: inherit;
background-position: 560px;
text-align: center;
margin-bottom: -41px;
}
button.owl-next span, button.owl-prev span {
display: none;
}
.owl-carousel.promo.owl-theme.owl-loaded.owl-drag {
position: relative;
top: 16vw;
}
.kategori-lapang li a span {
display: none;
}
.nav-tabs>li>a {
margin-right: 2px;
line-height: 1.42857143;
border: 4px solid transparent;
border-radius: 10px;
background: #eee;
color: #666;
width: 120px;
text-align: center;
}
.search-box {
padding: 10px;
background: #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
.kategori-lapang li {
margin-right: 0;
}
.promo .cards-image {
height: 39vw !important;
width: 100%;
border-radius: 0;
background-size: cover !important;
background-position: center !important;
}
.jumbotron-promo .cards {
border: none;
border-radius: 20px;
margin-bottom: 0;
}
button[type="submit"].green {
background-color: #0075ad;
border-color: #0075ad;
padding: 12px;
font-weight: 600;
font-size: 13pt;
border-radius: 50px;
margin-top: -22px;
margin-bottom: 20px;
}
.register-section button.btn.btn-warning {
margin-left: 10px;
font-size: 10pt;
font-weight: bold;
text-transform: uppercase;
padding: 12px 25px;
margin-bottom: 120px !important;
word-break: break-word !important;
float: none;
margin-top: -10px;
}
}
@media (max-width: 360px){
.section-top {
min-height: 218px;
margin-top: -50px;
background-size: inherit;
background-position: 560px;
text-align: center;
margin-bottom: -41px;
}
} | assets/css/style.css | @import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,900|Open+Sans:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');
body{
background: #f8f8f8;;
font-family: 'Montserrat', sans-serif;
}
.list-lapang {
padding: 10px;
display: block;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
background: #EEEEEE;
}
.list-field{
padding: 16px;
}
.list-gedung{
background: #ecf0f1;
margin: 15px 0px;
border: 1px solid #282828;
box-shadow: 5px 5px 20px #000000;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.list-gedung a{
color: #34495e;
}
.list-gedung a:hover{
color: black;
text-decoration: none;
}
.subscribe{
margin-top: 50px;
border: 3px dashed #f1c40f;
padding: 7px;
}
.input-subsribe{
height: 50px;
}
.btn-subsribe{
height: 50px;
background: #3498db;
}
footer {
margin-top: 31px;
min-height: 300px;
background-color: #0075ad;
padding: 30px 10px;
color: white;
}
footer img.img-responsive.loading {
width: 150px;
margin-bottom: 30px;
}
footer ul li{
list-style: none;
}
footer ul li a, footer a{
color: white;
}
footer ul li a:hover{
color: white;
text-decoration: underline;
}
.text-error{
color: red;
}
.navbar-default {
background-color: #ffffff;
border-color: #ffffff;
border-radius: 0;
padding: 0;
}
.navbar-default .navbar-brand {
color: white;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #ecf0f1;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
padding-left: 35px;
font-weight: 700;
font-size: 10pt;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #0075ad;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
background-color: #e7e7e7;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #0075ad;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #0075ad;
}
.carousel {
position: relative;
margin-top: -21px;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner > .item {
position: relative;
display: none;
-webkit-transition: .6s ease-in-out left;
-o-transition: .6s ease-in-out left;
transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
transition: transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
left: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
left: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 15%;
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
background-color: rgba(0, 0, 0, 0);
filter: alpha(opacity=50);
opacity: .5;
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control.right {
right: 0;
left: auto;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: 0;
opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
font-family: serif;
line-height: 1;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
padding-left: 0;
margin-left: -30%;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #fff;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #fff;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.modal {
overflow-y: scroll;
}
.bar-menu {
color: #fff;
font-weight: bold;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background: none;
}
.navbar-default .navbar-toggle .icon-bar {
background: none;
}
.search-result form.ng-pristine.ng-valid {
clear: both;
}
.search-result ul.nav.nav-tabs.kategori-lapang {
top: 0;
display: block;
clear: both;
margin-bottom: 40px;
}
.search-result .panel-body {
padding: 15px;
margin-bottom: 20px;
}
/*pembaharuan*/
.avatar-upload {
position: relative;
max-width: 205px;
margin: 0 auto;
}
.avatar-upload .avatar-edit {
position: absolute;
top: 79%;
right: 40%;
z-index: 1;
bottom: 0;
}
.avatar-upload .avatar-preview {
width: 100px;
height: 100px;
position: relative;
border-radius: 100%;
margin: 0 auto;
}
.img-thumbnail {
padding: .25rem;
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: .25rem;
max-width: 100%;
height: auto;
}
.avatar-upload .avatar-preview > div {
width: 100%;
height: 100%;
border-radius: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.avatar-upload .avatar-edit input {
display: none;
}
button, input {
overflow: visible;
}
button, input, optgroup, select, textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.avatar-upload .avatar-edit input + label {
display: inline-block;
width: 34px;
height: 34px;
margin-bottom: 0;
border-radius: 100%;
background: #FFFFFF;
border: 1px solid transparent;
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
cursor: pointer;
font-weight: normal;
transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
.text-xs-center {
text-align: center;
}
}
hr{
display: none;
}
.list-gedung a h5{
margin-top: 20px;
margin-bottom: 20px;
color: #000000;
}
p, h1, h2, h3, h4, h5, label{
color: #000;
}
.section-top {
background-color: #0075ad!important;
min-height: 380px;
margin-top: 51px;
margin-bottom: -80px;
opacity: 1;
}
.jumbotron{
background-color: transparent;
}
.jumbotron h1{
color: #fff;
font-weight: 700;
}
.black{
color:#000;
}
.green {
background-color: #0075ad;
border-color: #0075ad;
position: relative;
top: 0px;
}
.green:hover{
background-color: #0075ad !important;
border-color: #0075ad !important;
}
p.label-search {
color: #888;
font-size: 13px;
}
.desc-box {
padding: 5px 15px;
min-height: 110px;
}
.nav>li>a {
position: relative;
display: block;
padding: 6px;
}
.modal-title{
color: #323131;
font-weight: bold;
}
label {
color: #c7c4c4;
font-size: 10pt;
font-weight: 100;
}
p.value{
font-size : 16pt;
}
p.value-address{
font-size : 11pt;
}
p.value-address-main{
font-size: 11pt;
}
.pembatas{
margin-top:0px; display:block; height:1px; background-color:#0075ad;
}
.img-thumbnail {
display: inline-block;
width: 100%;
height: auto;
padding: 0;
line-height: 1.42857143;
background-color: #fff;
border: 2px solid #0075ad;
border-radius: 6px;
webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
div#map{
width: 100% !important;
height: 380px !important;
position: relative !important;
overflow: hidden !important;
margin-top: 12px;
border: 4px solid #6f6c6c;
border-radius: 6px;
}
.row.head-sched {
background: #37D716 !important;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
margin-bottom: -20px;
padding-top: 5px;
}
span#lapang {
font-size: 20pt;
display: block;
}
td.warning, td.ng-binding.warning {
background-color: #e6eaea !important;
color: #b5b3b3;
}
td.success, td.ng-binding.success{
background-color: #ffffff !important;
color: #000000;
font-weight: 400;
font-size: 14pt;
}
li.ng-binding.ng-scope {
display: inline-block;
text-align: center;
font-size: 13pt;
background-color: #0075ad;
color: #fff;
border-radius: 50px;
padding: 10px 20px;
margin: 12px 5px 5px 5px;
}
h2.title {
margin-bottom: 50px;
margin-top: 30px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #000 !important;
color: #000;
}
.label-warning {
background-color: #f0ad4e;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.label-success {
background-color: #0075ad;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.label-danger {
background-color: #d9534f;
border-radius: 50px !important;
font-weight: 100 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
font-size: 8pt !important;
padding: 4px 15px !important;
display: inline-grid !important;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 8px;
line-height: 1.42857143;
vertical-align: middle !important;
border: none !important;
color: #000;
}
.image-desc {
width: 100%;
height: 410px;
background-size: cover;
background-position: center;
border: 4px solid #6f6c6c;
border-radius: 6px;
}
.image-search{
width: 100%;
height: 120px;
background-size: cover;
background-position: center;
}
.list-lapang-search {
padding: 10px;
display: block;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border-radius: 6px;
background-color: #ffffff;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.indicator {
background-color: #ff6d00;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: #fff;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-green-saldo {
background-color: #0075ad;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: #fff;
margin-bottom: 8px;
}
.indicator-green {
background-color: #0075ad;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-blue {
background-color: #0037ce;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.indicator-red {
background-color: #da1e1e;
display: inline-block;
padding: 3px 12px;
border-radius: 50px;
color: white;
font-size: 9pt;
margin-bottom: 8px;
}
.green-btn{
background-color: #0075ad;
border-color: #0075ad;
padding: 12px;
font-weight: 600;
font-size: 13pt;
border-radius: 50px;
margin-top: -22px;
margin-bottom: 20px;
}
.green-btn:hover{
background-color: #0075ad !important;
border-color: #0075ad !important;
transition: 0.5s;
}
.orange-btn{
background-color: #f1c40f !important;
border-color: #f1c40f !important;
margin-top: 42px;
}
.orange-btn:hover{
background-color: #f1c40f !important;
border-color: #f1c40f !important;
transition: 0.5s;
}
.cancellation-policy{
background: orange;
}
.bg-home {
/*background-image: url(../image/bg-vector.jpg);*/
background-position: bottom;
margin-bottom: -52px;
background-repeat: no-repeat;
}
.body-home{
min-height: 380px !important;
padding-bottom: 50px;
}
h4.download {
font-size: 42px;
font-weight: 600;
}
img.download {
margin-top: 15px;
}
.cards {
border: none;
border-radius: 8px;
margin-bottom: 20px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.22);
}
.search-result .panel-search {
margin-bottom: 0;
background-color: #fff;
border: none;
box-shadow: none;
margin-top: -20px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
}
.cards-image {
height: 200px;
width: 100%;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
background-size: cover !important;
background-position: center !important;
}
h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 120px;
}
h1.section-title + p {
text-align: center;
color: #666666;
margin-bottom: 30px;
}
.cards-text {
background: #ffffff;
padding-top: 20px;
padding-bottom: 10px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
padding-left: 20px;
padding-right: 20px;
min-height: 110px;
border: none;
}
.body-home .owl-carousel .item {
padding: 10px;
}
a.venue-name {
color: #000000 !important;
font-weight: 700;
font-size: 16px;
margin-bottom: 10px !important;
display: block;
text-decoration: none !important;
}
.cards-text p {
color: #666666;
font-size: 12px;
height: 38px;
overflow: hidden;
}
.register-section h2{
font-weight: 700
}
.register-section button.btn.btn-warning {
margin-left: 10px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
padding: 12px 25px;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
}
.register-section h1.section-title + p {
text-align: left;
}
.register-section h1.section-title {
text-align: left;
}
.register-section button.btn.btn-warning {
background: #F59500;
margin-bottom: 6px;
border-radius: 100px;
border: none;
float: left;
margin-left: 0px !important;
text-transform: none !important;
}
footer{
color: #fff !important;
padding-top: 50px !important;
}
footer p.text-center {
color: #fff !important;
}
.list-lapang-search h4 {
color: #000000;
font-weight: bold;
}
.lapang-detail p, .lapang-detail h1, .lapang-detail h2, .lapang-detail h3, .lapang-detail h4, .lapang-detail h5, .lapang-detail a{
color: #000 !important
}
.lapang-detail a{
color: #fff !important
}
.lapang-detail .cards-image {
height: 380px;
width: 100%;
border-radius: 20px;
background-size: cover !important;
background-position: center;
}
.nopadding{
padding: 0 !important
}
.lapang-detail .owl-carousel {
margin-top: 22px;
}
.detail-venue-name{
font-weight: 700 !important
}
.price-start {
background-color: #eeeeee;
border: 1px solid #ddd;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
border-radius: 10px;
padding: 15px;
margin-top: -20px;
margin-bottom: 30px;
}
.lapang-detail .owl-dots {
position: relative;
top: -70px;
}
.review-lapang h4 {
float: right;
color: #000;
font-size: 14px;
text-align: left;
font-weight: bold;
padding: 10px;
}
.breadcrumb>.active {
color: #000;
font-weight: bold;
}
.submit button{
font-size: 14px;
}
.table-review td {
color: #000 !important;
font-size: 12px;
}
.table-finish>tbody>tr>td{
color: #000 !important;
font-size: 14px;
}
.panel-register label {
color: #666 !important;
font-size: 10pt;
font-weight: 100;
}
.panel-body h4{
color: #000 !important
}
.panel-body.my-info{
border-bottom: 1px dotted #0075ad
}
.body-cek{
padding-top: 50px;
padding-bottom: 50px;
}
.price-amount{
font-size: 28px;
color: #000;
font-weight: 700;
letter-spacing: 2px;
text-align: center;
}
img.logo-bank {
width: 80px;
margin-bottom: 10px;
text-align: center;
}
span#deadlinePayment {
font-size: 38px;
text-align: center;
font-weight: bold;
}
.bold-text{
font-weight: bold !important;
}
.keterangan{
color: #aaa;
font-size: 11px;
}
.dotted-top{
border-top: 1px dotted #aaaaaa;
}
.table-summary tr th, .table-summary tr td{
color: #000 !important
}
.footer-status span.label {
padding: 10px 24px !important;
font-size: 14px !important;
font-weight: bold !important;
}
.navbar-nav li {
padding: 10px 0;
text-align: center !important;
}
.select2-dropdown {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
box-sizing: border-box;
display: block;
position: absolute;
left: -100000px;
width: 100%;
z-index: 9999999;
}
.table-review th {
color: #000 !important;
font-size: 12px !important;
width: auto !important;
background: #eee;
border-right: 1px dotted #111 !important;
}
.table-review td a.btn {
font-size: 13px;
font-weight: 100;
border: none;
}
.promo .cards-image {
height: 31em !important;
width: 100%;
border-radius: 0;
background-size: contain !important;
background-position: center !important;
background-repeat: no-repeat !important;
}
a.navbar-brand img {
height: 30px !important;
}
.cards-image.img-promo-detail {
height: 36vw !important;
width: 100%;
}
.jumbotron-promo {
padding: 0 !important;
margin-bottom: -10px !important;
}
.search-home{
z-index: 9;
position: relative;
}
.jumbotron-promo .cards {
border: none;
border-radius: 20px;
margin-bottom: -30px;
}
.btn-copy {
background: #01AA01;
border-color: #01AA01;
color: #fff;
font-weight: bold;
padding: 12px 26px;
font-size: 13pt;
border-radius: 12px;
border-bottom: 4px solid #008418;
}
.btn-copy:hover {
background: #008418;
border-color: #008418;
color: #fff;
font-weight: bold;
padding: 12px 26px;
font-size: 13pt;
border-radius: 12px;
border-bottom: 4px solid #008418;
}
.body-promo {
padding-top: 30px;
padding-bottom: 30px;
}
.kode-promo {
font-size: 16pt;
}
.ico-cat{
margin-right: 5px;
}
.panel-search {
margin-bottom: 0;
background-color: #fff;
border: none;
box-shadow: none;
margin-top: -20px;
}
.register-bg {
background-image: url(../image/bg-vector.jpg);
min-height: 540px !important;
background-repeat: no-repeat;
background-position: bottom !important;
background-size: 100%;
padding-top: 50px;
margin-top: -20px;
background-color: #ffffff;
}
.nav-tabs>li>a {
margin-right: 2px;
line-height: 1.42857143;
border: 4px solid transparent;
border-radius: 10px;
background: #eee;
color: #666;
width: 120px;
text-align: center;
}
.nav-tabs>li.active>a {
color: #000 !important;
font-weight: bold;
}
.bodyku{
margin-top:90px;
}
.search-form {
margin-top: 20px;
}
.nav-tabs {
border-bottom: none !important;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: #555;
cursor: default;
background-color: #fff;
border: 4px solid #0075ad !important;
border-bottom-color: transparent;
}
.search-box {
padding: 20px;
background: #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
.navbar-brand {
float: left;
height: 30px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
button.owl-next {
position: absolute;
right: 0;
top: 12vw;
}
button.owl-prev {
position: absolute;
left: 0;
top: 12vw;
}
button.owl-next span, button.owl-prev span,button.owl-next span:hover, button.owl-prev span:hover {
padding-bottom: 5px;
color: #fff;
background: none;
padding-left: 25px;
padding-right: 25px;
border-radius: 200px;
padding-top: 0;
font-size: 36pt !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: none !important;
color: #FFF;
text-decoration: none;
}
.search-home .nav>li>a>img {
max-width: none;
width: 42px;
height: auto;
display: block;
text-align: center;
margin: 0 auto;
margin-bottom: 10px;
margin-top: 4px;
}
ul.nav.nav-tabs.kategori-lapang {
position: relative;
top: -40px;
margin-top: 50px;
}
.search-home .search-box ul.nav.nav-tabs.kategori-lapang {
position: relative;
top: -66px;
margin-top: 0;
}
.kategori-lapang li {
margin-right: 6px;
}
.body-home h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 30px;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
margin-top: -50px;
}
.benefit-section img{
width: 160px;
float: none;
margin: 0 auto;
}
.benefit-section h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 60px;
margin-bottom: 40px;
}
p.title-benefit {
font-weight: bold;
font-size: 13pt;
margin-top: 20px;
}
p.benefit-txt {
font-size: 10pt;
margin-bottom: 40px;
color: #666666
}
.benefit-section hr{
display: block !important;
}
div.customGPlusSignIn {
width: 100%;
border-radius: 50px !important;
}
a#fbLink {
width: 100%;
border-radius: 50px !important;
padding: 10px;
border: none !important;
}
form[name='login'] button.btn.btn-primary {
width: 100% !important;
border-radius: 50px;
padding: 10px;
}
.navbar + .modal .modal-dialog {
width: 380px;
}
@media (max-width: 767px) {
img.download {
display: block;
margin: 0 auto;
margin-top: 20px !important;
}
footer ul {
padding-left: 0 !important;
text-align: center;
}
footer img.img-responsive.loading {
width: 150px;
margin-bottom: 30px;
margin-top: 30px;
}
.register-bg {
background-image: url(../image/bg-vector.jpg);
min-height: 520px !important;
background-repeat: no-repeat;
background-position: bottom right !important;
background-size: 340%;
padding-top: 0px;
margin-top: 30px;
background-color: #ffffff;
margin-bottom: 0 !important;
padding-bottom: 50%;
}
.register-section.text-center {
padding-bottom: 10px;
min-height: 450px;
margin-top: 0px;
}
.navbar-brand {
float: left;
height: 56px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
.body-home {
min-height: 380px !important;
padding-bottom: 0;
}
.body-home h1.section-title {
margin-top: 20px;
}
.benefit-section hr{
display: block !important;
}
h1.section-title {
color: #000000;
font-weight: bold;
text-align: center;
font-size: 18pt;
margin-top: 10px;
}
.register-section h1.section-title {
text-align: center;
margin-top: -50px;
font-size: 16pt;
}
.register-section h1.section-title + p {
text-align: center;
}
.navbar-nav li {
padding: 10px 0;
text-align: left !important;
}
.search-home .search-box .kategori-lapang a {
width: 80px;
}
h3.text-search{
color: #000;
font-weight: bold;
margin-top: -15px;
margin-left: 18px;
margin-bottom: 20px;
font-size: 14pt;
}
.section-top {
min-height: 250px;
margin-top: -11px;
background-size: inherit;
background-position: 560px;
text-align: center;
margin-bottom: -41px;
}
button.owl-next span, button.owl-prev span {
display: none;
}
.owl-carousel.promo.owl-theme.owl-loaded.owl-drag {
position: relative;
top: 16vw;
}
.kategori-lapang li a span {
display: none;
}
.nav-tabs>li>a {
margin-right: 2px;
line-height: 1.42857143;
border: 4px solid transparent;
border-radius: 10px;
background: #eee;
color: #666;
width: 120px;
text-align: center;
}
.search-box {
padding: 10px;
background: #fff;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.28);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
.kategori-lapang li {
margin-right: 0;
}
.promo .cards-image {
height: 39vw !important;
width: 100%;
border-radius: 0;
background-size: cover !important;
background-position: center !important;
}
.jumbotron-promo .cards {
border: none;
border-radius: 20px;
margin-bottom: 0;
}
button[type="submit"].green {
background-color: #0075ad;
border-color: #0075ad;
padding: 12px;
font-weight: 600;
font-size: 13pt;
border-radius: 50px;
margin-top: -22px;
margin-bottom: 20px;
}
.register-section button.btn.btn-warning {
margin-left: 10px;
font-size: 10pt;
font-weight: bold;
text-transform: uppercase;
padding: 12px 25px;
margin-bottom: 120px !important;
word-break: break-word !important;
float: none;
margin-top: -10px;
}
}
@media (max-width: 360px){
.section-top {
min-height: 218px;
margin-top: -50px;
background-size: inherit;
background-position: 560px;
text-align: center;
margin-bottom: -41px;
}
} | 0.356895 | 0.063861 |
html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
/*font-size: 62.5%;*/
}
body {
margin: 0 auto;
color: #222;
background: #fff;
font-size: 16px;
line-height: 1.618;
letter-spacing: 0.01em;
transition: 0.3s all;
}
main {
max-width: 100em;
margin: auto;
padding: 0 20px;
}
main.sidebar {
margin-top: 100px;
display: grid;
grid-gap: 15px;
}
main.sidebar div:first-child {
grid-column: 1/2;
width: 400px;
}
main.sidebar div:last-child {
grid-column: 2/3;
}
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
line-height: 1.1;
word-wrap: break-word;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 1.75rem;
}
h4 {
font-size: 1.25rem;
}
h5 {
font-size: 1rem;
}
h6 {
font-size: 0.875rem;
}
header {
text-align: center;
padding-top: 120px !important;
padding: 15px;
}
header p {
text-align: center;
}
small,
sub,
sup {
font-size: 75%;
}
p {
text-align: justify;
}
hr {
border: 0;
border-bottom: 1px solid #dadada;
}
a {
color: #484848;
border-bottom: 1px dotted #484848;
text-decoration: none;
}
a:hover {
color: #222;
border-bottom: none;
transition: 0.3s all;
}
blockquote {
margin-left: 1.5em;
padding-left: 1em;
border-left: 3px solid #0082d2;
font-style: italic;
}
img {
max-width: 100%;
height: auto;
}
pre {
margin-bottom: 2.5rem;
overflow-y: hidden;
border-left: 0.3rem solid #0082d2;
background: #1d1f21;
}
pre > code {
display: block;
padding: 1rem 1.5rem;
border-radius: 0;
white-space: pre;
}
code {
margin: 0 0.2rem;
padding: 0.2rem 0.5rem;
border-radius: 0.4rem;
background-color: #ededed;
border: solid #333333 1px;
font-size: 86%;
white-space: nowrap;
}
table {
width: 100%;
border-collapse: collapse;
text-align: justify;
}
td,
th {
padding: 0.5em;
border-bottom: 1px solid #e1e1e1;
}
textarea {
width: 100%;
}
.button,
button {
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
color: #222222;
font-weight: bold;
padding: 6px 12px;
background-color: #ededed;
border: solid #333333 1px;
text-decoration: none;
display: inline-block;
cursor: pointer;
text-align: center;
cursor: pointer;
}
.button[disabled],
button[disabled] {
opacity: 0.5;
cursor: default;
}
.button:focus,
.button:hover,
button:focus,
button:hover {
background: #ededed;
color: #222222;
border: solid #0082d2 1px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
text-decoration: none;
transition: 0.2s all;
}
.button.rounded {
height: 42px;
width: 42px;
padding: 0;
}
fieldset,
legend {
display: block;
margin-bottom: 0.5rem;
}
label {
display: inline-block;
margin-right: 1.6rem;
margin-bottom: 0.5rem;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
display: inline-block;
font-size: 1.2rem;
font-weight: 400;
letter-spacing: 0.1rem;
}
.clearfix:after {
content: " ";
display: table;
clear: both;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.navigation {
position: fixed;
top: 0;
left: 0;
right: 0;
text-align: center;
padding: 15px;
font-size: 1.4em;
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
}
.navigation a svg {
height: 24px;
margin-top: 8px;
}
.footer {
margin: 4rem 0;
}
.search {
text-align: center;
margin: 20px;
}
.search #search {
margin: 0 10px;
height: 24px;
width: 50%;
background: #d8d8d8;
color: #181818;
border-radius: 5px;
padding: 5px;
border: 1px solid #d8d8d8;
}
.search #search:focus {
border: 1px solid #bfbfbf;
}
.turquoise,
.green,
.blue,
.pink,
.black,
.orange,
.red,
.grey {
border-radius: 5px;
padding: 5px;
}
.turquoise {
background: rgba(26, 188, 156, 0.4);
}
.green {
background: rgba(46, 204, 113, 0.4);
}
.blue {
background: rgba(52, 152, 219, 0.4);
}
.pink {
background: rgba(155, 89, 182, 0.4);
}
.black {
background: rgba(44, 62, 80, 0.4);
color: #fff !important;
}
.orange {
background: rgba(243, 156, 18, 0.4);
}
.red {
background: rgba(192, 57, 43, 0.4);
}
.grey {
background: rgba(189, 195, 199, 0.5);
color: #181818 !important;
}
.row {
display: grid;
grid-gap: 10px;
}
@media only screen and (max-width: 600px) {
.row {
display: unset;
}
.row .col {
display: block;
}
main.sidebar {
display: block;
}
main.sidebar div:first-child {
width: unset;
}
}
@media (prefers-color-scheme: dark) {
body {
color: #d8d8d8;
background: #181818;
}
code {
color: #ededed;
background-color: #222222;
}
a {
color: #bfbfbf;
border-bottom: 1px dotted #bfbfbf;
}
a:hover {
color: #d8d8d8;
}
.button,
button {
color: #ededed;
background-color: #222222;
}
.button:hover,
button:hover {
color: #ededed;
background-color: #222222;
}
td,
th {
border-bottom: 1px solid #555;
}
.navigation {
background: rgb(24, 24, 24);
background: linear-gradient(180deg, rgba(24, 24, 24, 1) 0%, rgba(24, 24, 24, 0.6) 60%, rgba(24, 24, 24, 0) 100%);
}
.search #search {
background: #282828;
color: #d8d8d8;
border: 1px solid #282828;
}
} | assets/css/styles.css | html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
/*font-size: 62.5%;*/
}
body {
margin: 0 auto;
color: #222;
background: #fff;
font-size: 16px;
line-height: 1.618;
letter-spacing: 0.01em;
transition: 0.3s all;
}
main {
max-width: 100em;
margin: auto;
padding: 0 20px;
}
main.sidebar {
margin-top: 100px;
display: grid;
grid-gap: 15px;
}
main.sidebar div:first-child {
grid-column: 1/2;
width: 400px;
}
main.sidebar div:last-child {
grid-column: 2/3;
}
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
line-height: 1.1;
word-wrap: break-word;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 1.75rem;
}
h4 {
font-size: 1.25rem;
}
h5 {
font-size: 1rem;
}
h6 {
font-size: 0.875rem;
}
header {
text-align: center;
padding-top: 120px !important;
padding: 15px;
}
header p {
text-align: center;
}
small,
sub,
sup {
font-size: 75%;
}
p {
text-align: justify;
}
hr {
border: 0;
border-bottom: 1px solid #dadada;
}
a {
color: #484848;
border-bottom: 1px dotted #484848;
text-decoration: none;
}
a:hover {
color: #222;
border-bottom: none;
transition: 0.3s all;
}
blockquote {
margin-left: 1.5em;
padding-left: 1em;
border-left: 3px solid #0082d2;
font-style: italic;
}
img {
max-width: 100%;
height: auto;
}
pre {
margin-bottom: 2.5rem;
overflow-y: hidden;
border-left: 0.3rem solid #0082d2;
background: #1d1f21;
}
pre > code {
display: block;
padding: 1rem 1.5rem;
border-radius: 0;
white-space: pre;
}
code {
margin: 0 0.2rem;
padding: 0.2rem 0.5rem;
border-radius: 0.4rem;
background-color: #ededed;
border: solid #333333 1px;
font-size: 86%;
white-space: nowrap;
}
table {
width: 100%;
border-collapse: collapse;
text-align: justify;
}
td,
th {
padding: 0.5em;
border-bottom: 1px solid #e1e1e1;
}
textarea {
width: 100%;
}
.button,
button {
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
color: #222222;
font-weight: bold;
padding: 6px 12px;
background-color: #ededed;
border: solid #333333 1px;
text-decoration: none;
display: inline-block;
cursor: pointer;
text-align: center;
cursor: pointer;
}
.button[disabled],
button[disabled] {
opacity: 0.5;
cursor: default;
}
.button:focus,
.button:hover,
button:focus,
button:hover {
background: #ededed;
color: #222222;
border: solid #0082d2 1px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
text-decoration: none;
transition: 0.2s all;
}
.button.rounded {
height: 42px;
width: 42px;
padding: 0;
}
fieldset,
legend {
display: block;
margin-bottom: 0.5rem;
}
label {
display: inline-block;
margin-right: 1.6rem;
margin-bottom: 0.5rem;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
display: inline-block;
font-size: 1.2rem;
font-weight: 400;
letter-spacing: 0.1rem;
}
.clearfix:after {
content: " ";
display: table;
clear: both;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.navigation {
position: fixed;
top: 0;
left: 0;
right: 0;
text-align: center;
padding: 15px;
font-size: 1.4em;
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
}
.navigation a svg {
height: 24px;
margin-top: 8px;
}
.footer {
margin: 4rem 0;
}
.search {
text-align: center;
margin: 20px;
}
.search #search {
margin: 0 10px;
height: 24px;
width: 50%;
background: #d8d8d8;
color: #181818;
border-radius: 5px;
padding: 5px;
border: 1px solid #d8d8d8;
}
.search #search:focus {
border: 1px solid #bfbfbf;
}
.turquoise,
.green,
.blue,
.pink,
.black,
.orange,
.red,
.grey {
border-radius: 5px;
padding: 5px;
}
.turquoise {
background: rgba(26, 188, 156, 0.4);
}
.green {
background: rgba(46, 204, 113, 0.4);
}
.blue {
background: rgba(52, 152, 219, 0.4);
}
.pink {
background: rgba(155, 89, 182, 0.4);
}
.black {
background: rgba(44, 62, 80, 0.4);
color: #fff !important;
}
.orange {
background: rgba(243, 156, 18, 0.4);
}
.red {
background: rgba(192, 57, 43, 0.4);
}
.grey {
background: rgba(189, 195, 199, 0.5);
color: #181818 !important;
}
.row {
display: grid;
grid-gap: 10px;
}
@media only screen and (max-width: 600px) {
.row {
display: unset;
}
.row .col {
display: block;
}
main.sidebar {
display: block;
}
main.sidebar div:first-child {
width: unset;
}
}
@media (prefers-color-scheme: dark) {
body {
color: #d8d8d8;
background: #181818;
}
code {
color: #ededed;
background-color: #222222;
}
a {
color: #bfbfbf;
border-bottom: 1px dotted #bfbfbf;
}
a:hover {
color: #d8d8d8;
}
.button,
button {
color: #ededed;
background-color: #222222;
}
.button:hover,
button:hover {
color: #ededed;
background-color: #222222;
}
td,
th {
border-bottom: 1px solid #555;
}
.navigation {
background: rgb(24, 24, 24);
background: linear-gradient(180deg, rgba(24, 24, 24, 1) 0%, rgba(24, 24, 24, 0.6) 60%, rgba(24, 24, 24, 0) 100%);
}
.search #search {
background: #282828;
color: #d8d8d8;
border: 1px solid #282828;
}
} | 0.541166 | 0.116362 |
@import url('https://fonts.googleapis.com/css?family=Montserrat:300');
#main-content {
font-family: 'Montserrat', sans-serif;
background-image: url("images/TheFlinstonesBackground.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 70%;
color: white;
}
.navbar {
background-color: #004376;
color: white;
font-size: 10px;
height: 50px;
padding-left: 0;
}
#flag-list-item {
padding-top: 0;
}
.nav-text-items {
width: 33%;
}
#last-nav-item {
width: 55%;
}
#flag-list-text-item span {
text-transform: uppercase;
}
.nav-item {
padding-top: 3px;
}
.nav-item i {
color: white;
}
.nav-item span {
white-space: pre-line;
text-transform: capitalize;
}
#nav-bar-login-btn {
position: absolute;
left: 95%;
right: 0;
top: 0;
height: 50px;
background-image: linear-gradient(#FA9424, #DB7B24);
padding: 15px 0 13px 1%;
color: black;
font-weight: bold;
font-size: 13px;
width: 5%;
}
.navbar i {
color: white;
}
#nav-bar-login-btn:hover {
background-image: linear-gradient(#DB7B24, #FA9424);
cursor: pointer;
}
.row {
margin: 0;
}
#form-column {
min-height: 76%;
}
form {
position: relative;
z-index: 1;
top: -650px;
margin-top: 20px;
border-radius: 15px;
background: white;
height: auto;
padding: 15px;
transition-property: all;
transition-duration: 1.5s;
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
form h1 {
text-align: left;
color: #E59E4E;
margin-bottom: 1.5rem;
}
form p {
margin-bottom: 1.5rem;
font-size: 12px;
text-align: left;
color: black;
}
form input[type=text], form input[type=email], form input[type=password] {
background-color: #e9ecef;
padding-left: 0px;
}
form input[type=checkbox] {
zoom: 1.3;
transform: scale(1.3);
-ms-transform: scale(1.3);
-webkit-transform: scale(1.3);
-o-transform: scale(1.3);
-moz-transform: scale(1.3);
transform-origin: 0 0;
-ms-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-o-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
}
#third-form input[type=text], #third-form input[type=number], #third-form input[type=tel] {
background-color: #e9ecef;
padding-left: 12px;
}
#bonus-code-checkbox-form {
color: black;
}
.form-notification {
position: absolute;
z-index: 2;
left: 0;
bottom: 3px;
color: red;
}
.green-btn {
background-color: #69B31F;
color: white;
white-space: normal;
}
#skip-btn:hover, #play-now:hover, #promotions:hover {
color: white;
}
.form-transform-animation {
-ms-transform: translate(0,650px); /* IE 9 */
-webkit-transform: translate(0,650px); /* Safari */
transform: translate(0,650px); /* Standard syntax */
}
#join-now-btn::after {
padding-left: 5px;
font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f35a";
/*content: none;*/
}
.logo {
position: absolute;
left: 26%;
top: 68%;
}
.logo img {
height: 180px;
}
#ligal-line {
position: relative;
bottom: 0px;
left: 14%;
font-size: 9px;
color: white;
z-index: 0;
}
#exclusive-offer {
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
margin-top: 10px;
padding: 10px 15px 20px;
font-size: 20px;
}
#exclusive-offer span {
margin-left: 17px;
}
#get-your-discount-line-one, #get-your-discount-line-two, #get-your-discount-line-three {
text-shadow: 0 2px 5px #000; /* horizontal-offset vertical-offset 'blur' colour */
-moz-text-shadow: 0 2px 5px #000;
-webkit-text-shadow: 0 2px 5px #000;
text-align: center;
font-weight: bold;
font-size: 30px;
}
#get-your-discount-line-two {
font-size: 46px;
line-height: 1;
}
#get-your-discount-line-three {
font-size: 37px;
}
#smaller-font {
font-size: 23px;
text-align: center;
}
#flinstones-car {
background-image: url("images/TheFlinstonesCar.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 467px;
}
#terms-and-conditions {
position: relative;
}
#terms-and-conditions div {
position: absolute;
bottom: 15px;
left: 30%;
}
#icons-container {
display: flex;
justify-content: space-between;
width: 75%;
margin: 20px auto;
}
footer {
height: 190px;
background-color: #E2E2E2;
padding: 0 20%;
text-align: center;
}
.game-icons {
position: relative;
text-align: center;
}
.game-icons img {
height: 200px;
}
#brand-icons {
padding: 15px 0;
display: flex;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
#copyright-text {
padding: 15px 0;
}
.hover-over-cover-image {
position: absolute;
top: 0;
left: 0;
height: 200px;
width: 150px;
z-index: 2;
background-color: rgba(255,255,255,0.7);
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.game-cover-heading {
padding: 20px 5px;
min-height: 100px;
font-size: 20px;
font-weight: bold;
}
.play-game {
margin: auto;
padding: 5px 10px;
border: none;
color: white;
background-image: linear-gradient(#FA9424, #DB7B24);
cursor: pointer;
}
.play-game:hover {
background-image: linear-gradient(#DB7B24, #FA9424);
cursor: pointer;
}
#darker-backgound-container {
background-color: rgba(0,0,0,0.5);
}
.moved-header-menu {
list-style: none;
}
.moved-header-menu li {
display: inline;
}
/*Media queries*/
@media only screen and (min-width: 768px) and (max-width: 1024px){
/* For tablets: */
.navbar-brand {
padding-left: 10px;
}
.nav-item {
margin-right: 10px;
}
.nav-link i {
font-size: 15px;
}
#flag-list-item {
margin-right: 0;
}
#last-nav-item {
width: 29%;
}
.nav-text-items {
width: auto;
}
#nav-bar-login-btn {
left: 93%;
padding: 7px;
width: 7%;
}
#nav-bar-login-btn i {
font-size: 36px;
}
#nav-bar-login-btn span, #first-row-left-col, #exclusive-offer, #empty-left-form-col, #empty-right-form-col, .logo img {
display: none;
}
#first-row-right-col {
margin-top: 50px;
}
#get-your-discount-line-one, #get-your-discount-line-three, #smaller-font {
font-size: 25px;
}
#get-your-discount-line-two {
font-size: 52px;
}
#flinstones-car {
height: 500px;
}
#terms-and-conditions {
position: relative;
bottom: 0;
left: 0;
top: 60px;
}
#terms-and-conditions div {
left: 12%;
bottom: 30px;
text-decoration: underline;
font-size: 12px;
}
#ligal-line {
left: -16%;
top: 190px;
background-color: rgba(0,0,0,0.4);
}
form {
top: 0;
left: 370px;
}
form p {
font-size: 11px;
}
.form-transform-animation {
-ms-transform: translate(-370px,0); /* IE 9 */
-webkit-transform: translate(-370px,0); /* Safari */
transform: translate(-370px,0); /* Standard syntax */
}
#join-now-btn:after {
content: none;
}
#icons-container {
width: 90%;
}
footer {
padding: 0 5%;
}
#copyright-text {
padding: 0;
}
#brand-icons {
max-width: 100%;
}
}
@media only screen and (max-width: 767px) {
/* For mobile phones: */
.navbar-brand {
margin: auto;
}
.navbar-nav, #nav-bar-login-btn span, #first-row-left-col, #flinstones-div, #logo-row, #empty-left-form-col, #empty-right-form-col, #secondary-article {
display: none;
}
.navbar {
padding: 0;
}
#nav-bar-login-btn {
list-style-type: none;
left: 88%;
width: 12%;
padding: 12px 7px;
}
#nav-bar-login-btn i {
font-size: 28px;
}
#main-content {
background-size: 750% 100%;
height: auto;
}
form {
top: 0;
right: 355px;
}
.form-transform-animation {
-ms-transform: translate(355px,0); /* IE 9 */
-webkit-transform: translate(355px,0); /* Safari */
transform: translate(355px,0); /* Standard syntax */
}
#join-now-btn:after {
content: none;
}
.game-icons {
flex: 0 50%;
margin: 10px 0;
}
#icons-container {
flex-wrap: wrap;
width: 100%;
margin: 0;
}
#ligal-line {
position: unset;
margin-top: 10px;
margin-left: 20px;
font-size: 11px;
}
#terms-and-conditions div {
position: unset;
font-size: 11px;
text-decoration: underline;
margin: 0 5px;
}
#header-menu-items {
font-size: 11px;
display: flex;
margin: 5px 17px;
white-space: pre-line;
}
#header-menu-items i {
padding-top: 8px;
margin-right: 16px;
}
footer {
height: auto;
padding: 0 10%;
}
#brand-icons {
flex-wrap: wrap;
justify-content: space-around;
}
.brand-icon {
margin: 5px 0;
}
#copyright-text {
padding: 0 0 6px 0;
}
#get-your-discount-line-two {
font-size: 50px;
}
#smaller-font {
font-size: 24px;
}
#get-your-discount-line-three {
font-size: 31px;
}
} | styles.css | @import url('https://fonts.googleapis.com/css?family=Montserrat:300');
#main-content {
font-family: 'Montserrat', sans-serif;
background-image: url("images/TheFlinstonesBackground.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 70%;
color: white;
}
.navbar {
background-color: #004376;
color: white;
font-size: 10px;
height: 50px;
padding-left: 0;
}
#flag-list-item {
padding-top: 0;
}
.nav-text-items {
width: 33%;
}
#last-nav-item {
width: 55%;
}
#flag-list-text-item span {
text-transform: uppercase;
}
.nav-item {
padding-top: 3px;
}
.nav-item i {
color: white;
}
.nav-item span {
white-space: pre-line;
text-transform: capitalize;
}
#nav-bar-login-btn {
position: absolute;
left: 95%;
right: 0;
top: 0;
height: 50px;
background-image: linear-gradient(#FA9424, #DB7B24);
padding: 15px 0 13px 1%;
color: black;
font-weight: bold;
font-size: 13px;
width: 5%;
}
.navbar i {
color: white;
}
#nav-bar-login-btn:hover {
background-image: linear-gradient(#DB7B24, #FA9424);
cursor: pointer;
}
.row {
margin: 0;
}
#form-column {
min-height: 76%;
}
form {
position: relative;
z-index: 1;
top: -650px;
margin-top: 20px;
border-radius: 15px;
background: white;
height: auto;
padding: 15px;
transition-property: all;
transition-duration: 1.5s;
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
form h1 {
text-align: left;
color: #E59E4E;
margin-bottom: 1.5rem;
}
form p {
margin-bottom: 1.5rem;
font-size: 12px;
text-align: left;
color: black;
}
form input[type=text], form input[type=email], form input[type=password] {
background-color: #e9ecef;
padding-left: 0px;
}
form input[type=checkbox] {
zoom: 1.3;
transform: scale(1.3);
-ms-transform: scale(1.3);
-webkit-transform: scale(1.3);
-o-transform: scale(1.3);
-moz-transform: scale(1.3);
transform-origin: 0 0;
-ms-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-o-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
}
#third-form input[type=text], #third-form input[type=number], #third-form input[type=tel] {
background-color: #e9ecef;
padding-left: 12px;
}
#bonus-code-checkbox-form {
color: black;
}
.form-notification {
position: absolute;
z-index: 2;
left: 0;
bottom: 3px;
color: red;
}
.green-btn {
background-color: #69B31F;
color: white;
white-space: normal;
}
#skip-btn:hover, #play-now:hover, #promotions:hover {
color: white;
}
.form-transform-animation {
-ms-transform: translate(0,650px); /* IE 9 */
-webkit-transform: translate(0,650px); /* Safari */
transform: translate(0,650px); /* Standard syntax */
}
#join-now-btn::after {
padding-left: 5px;
font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f35a";
/*content: none;*/
}
.logo {
position: absolute;
left: 26%;
top: 68%;
}
.logo img {
height: 180px;
}
#ligal-line {
position: relative;
bottom: 0px;
left: 14%;
font-size: 9px;
color: white;
z-index: 0;
}
#exclusive-offer {
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
margin-top: 10px;
padding: 10px 15px 20px;
font-size: 20px;
}
#exclusive-offer span {
margin-left: 17px;
}
#get-your-discount-line-one, #get-your-discount-line-two, #get-your-discount-line-three {
text-shadow: 0 2px 5px #000; /* horizontal-offset vertical-offset 'blur' colour */
-moz-text-shadow: 0 2px 5px #000;
-webkit-text-shadow: 0 2px 5px #000;
text-align: center;
font-weight: bold;
font-size: 30px;
}
#get-your-discount-line-two {
font-size: 46px;
line-height: 1;
}
#get-your-discount-line-three {
font-size: 37px;
}
#smaller-font {
font-size: 23px;
text-align: center;
}
#flinstones-car {
background-image: url("images/TheFlinstonesCar.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 467px;
}
#terms-and-conditions {
position: relative;
}
#terms-and-conditions div {
position: absolute;
bottom: 15px;
left: 30%;
}
#icons-container {
display: flex;
justify-content: space-between;
width: 75%;
margin: 20px auto;
}
footer {
height: 190px;
background-color: #E2E2E2;
padding: 0 20%;
text-align: center;
}
.game-icons {
position: relative;
text-align: center;
}
.game-icons img {
height: 200px;
}
#brand-icons {
padding: 15px 0;
display: flex;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
#copyright-text {
padding: 15px 0;
}
.hover-over-cover-image {
position: absolute;
top: 0;
left: 0;
height: 200px;
width: 150px;
z-index: 2;
background-color: rgba(255,255,255,0.7);
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}
.game-cover-heading {
padding: 20px 5px;
min-height: 100px;
font-size: 20px;
font-weight: bold;
}
.play-game {
margin: auto;
padding: 5px 10px;
border: none;
color: white;
background-image: linear-gradient(#FA9424, #DB7B24);
cursor: pointer;
}
.play-game:hover {
background-image: linear-gradient(#DB7B24, #FA9424);
cursor: pointer;
}
#darker-backgound-container {
background-color: rgba(0,0,0,0.5);
}
.moved-header-menu {
list-style: none;
}
.moved-header-menu li {
display: inline;
}
/*Media queries*/
@media only screen and (min-width: 768px) and (max-width: 1024px){
/* For tablets: */
.navbar-brand {
padding-left: 10px;
}
.nav-item {
margin-right: 10px;
}
.nav-link i {
font-size: 15px;
}
#flag-list-item {
margin-right: 0;
}
#last-nav-item {
width: 29%;
}
.nav-text-items {
width: auto;
}
#nav-bar-login-btn {
left: 93%;
padding: 7px;
width: 7%;
}
#nav-bar-login-btn i {
font-size: 36px;
}
#nav-bar-login-btn span, #first-row-left-col, #exclusive-offer, #empty-left-form-col, #empty-right-form-col, .logo img {
display: none;
}
#first-row-right-col {
margin-top: 50px;
}
#get-your-discount-line-one, #get-your-discount-line-three, #smaller-font {
font-size: 25px;
}
#get-your-discount-line-two {
font-size: 52px;
}
#flinstones-car {
height: 500px;
}
#terms-and-conditions {
position: relative;
bottom: 0;
left: 0;
top: 60px;
}
#terms-and-conditions div {
left: 12%;
bottom: 30px;
text-decoration: underline;
font-size: 12px;
}
#ligal-line {
left: -16%;
top: 190px;
background-color: rgba(0,0,0,0.4);
}
form {
top: 0;
left: 370px;
}
form p {
font-size: 11px;
}
.form-transform-animation {
-ms-transform: translate(-370px,0); /* IE 9 */
-webkit-transform: translate(-370px,0); /* Safari */
transform: translate(-370px,0); /* Standard syntax */
}
#join-now-btn:after {
content: none;
}
#icons-container {
width: 90%;
}
footer {
padding: 0 5%;
}
#copyright-text {
padding: 0;
}
#brand-icons {
max-width: 100%;
}
}
@media only screen and (max-width: 767px) {
/* For mobile phones: */
.navbar-brand {
margin: auto;
}
.navbar-nav, #nav-bar-login-btn span, #first-row-left-col, #flinstones-div, #logo-row, #empty-left-form-col, #empty-right-form-col, #secondary-article {
display: none;
}
.navbar {
padding: 0;
}
#nav-bar-login-btn {
list-style-type: none;
left: 88%;
width: 12%;
padding: 12px 7px;
}
#nav-bar-login-btn i {
font-size: 28px;
}
#main-content {
background-size: 750% 100%;
height: auto;
}
form {
top: 0;
right: 355px;
}
.form-transform-animation {
-ms-transform: translate(355px,0); /* IE 9 */
-webkit-transform: translate(355px,0); /* Safari */
transform: translate(355px,0); /* Standard syntax */
}
#join-now-btn:after {
content: none;
}
.game-icons {
flex: 0 50%;
margin: 10px 0;
}
#icons-container {
flex-wrap: wrap;
width: 100%;
margin: 0;
}
#ligal-line {
position: unset;
margin-top: 10px;
margin-left: 20px;
font-size: 11px;
}
#terms-and-conditions div {
position: unset;
font-size: 11px;
text-decoration: underline;
margin: 0 5px;
}
#header-menu-items {
font-size: 11px;
display: flex;
margin: 5px 17px;
white-space: pre-line;
}
#header-menu-items i {
padding-top: 8px;
margin-right: 16px;
}
footer {
height: auto;
padding: 0 10%;
}
#brand-icons {
flex-wrap: wrap;
justify-content: space-around;
}
.brand-icon {
margin: 5px 0;
}
#copyright-text {
padding: 0 0 6px 0;
}
#get-your-discount-line-two {
font-size: 50px;
}
#smaller-font {
font-size: 24px;
}
#get-your-discount-line-three {
font-size: 31px;
}
} | 0.309963 | 0.116663 |
@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
* {
margin: 0;
color: #000;
font-family: "Questrial", sans-serif;
font-weight: 400;
outline: 0 !important;
}
.d-flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.d-flex.col-flex {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.jCon_center {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.aling-center {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.flex-break {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
height: 0;
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.row .col {
width: 100%;
}
.container {
width: 100%;
margin: 0 auto;
max-width: 1250px;
}
.menu {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.menu .toggle {
display: none;
border: 0;
background: transparent;
height: 60px;
margin-left: 15px;
cursor: pointer;
}
.menu ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul li {
list-style: none;
}
.menu ul li a {
text-decoration: none;
height: 65px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 18px;
padding: 0 2rem;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul li a .icon img {
width: 20px;
margin-left: 5px;
}
.menu ul li a:hover {
background: #ebf3f1;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul.showMenu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.header .headerImg {
background: url("../img/header_bg.jpg");
background-size: 100%;
height: 65px;
width: 100%;
}
.header .headBox {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
border-radius: 15px;
padding: 2rem 0;
margin-top: -1.5rem;
background: #fff;
}
.servicesIcons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-ms-flex-flow: wrap;
flex-flow: wrap;
}
.servicesIcons .icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 4rem;
padding: 1rem;
height: 7rem;
width: 7rem;
cursor: pointer;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
border-radius: 15px;
}
.servicesIcons .icon:hover {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) inset;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) inset;
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.servicesIcons .icon .text {
margin-top: 15px;
font-size: 18px;
text-align: center;
}
.cardsView {
max-width: 1600px;
margin: 0 auto;
}
.cardsView .row .col {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.cardsView .card {
margin-top: 2rem;
padding: 1rem;
max-width: 421px;
}
.cardsView .card h3 {
font-size: 26px;
margin-bottom: 2rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-right: auto;
}
.cardsView .card h3 span {
background: #42c8b7;
color: #fff;
border-radius: 30px;
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;
height: 40px;
width: 40px;
margin-right: 30px;
}
.cardsView .card p {
font-size: 20px;
color: #666;
}
/* responsive SCSS
--------------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.menu .toggle {
display: block;
}
.menu ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
display: none;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.menu .toggle {
display: block;
}
.menu ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
display: none;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.menu .toggle {
display: none;
}
.menu ul {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1024px) {
.row {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
}
/*# sourceMappingURL=main.css.map */ | css/main.css | @import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
* {
margin: 0;
color: #000;
font-family: "Questrial", sans-serif;
font-weight: 400;
outline: 0 !important;
}
.d-flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.d-flex.col-flex {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.jCon_center {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.aling-center {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.flex-break {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
height: 0;
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
}
.row .col {
width: 100%;
}
.container {
width: 100%;
margin: 0 auto;
max-width: 1250px;
}
.menu {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.menu .toggle {
display: none;
border: 0;
background: transparent;
height: 60px;
margin-left: 15px;
cursor: pointer;
}
.menu ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul li {
list-style: none;
}
.menu ul li a {
text-decoration: none;
height: 65px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 18px;
padding: 0 2rem;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul li a .icon img {
width: 20px;
margin-left: 5px;
}
.menu ul li a:hover {
background: #ebf3f1;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.menu ul.showMenu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.header .headerImg {
background: url("../img/header_bg.jpg");
background-size: 100%;
height: 65px;
width: 100%;
}
.header .headBox {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
border-radius: 15px;
padding: 2rem 0;
margin-top: -1.5rem;
background: #fff;
}
.servicesIcons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-ms-flex-flow: wrap;
flex-flow: wrap;
}
.servicesIcons .icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 4rem;
padding: 1rem;
height: 7rem;
width: 7rem;
cursor: pointer;
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
border-radius: 15px;
}
.servicesIcons .icon:hover {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) inset;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) inset;
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all ease 0.5s;
transition: all ease 0.5s;
}
.servicesIcons .icon .text {
margin-top: 15px;
font-size: 18px;
text-align: center;
}
.cardsView {
max-width: 1600px;
margin: 0 auto;
}
.cardsView .row .col {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.cardsView .card {
margin-top: 2rem;
padding: 1rem;
max-width: 421px;
}
.cardsView .card h3 {
font-size: 26px;
margin-bottom: 2rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-right: auto;
}
.cardsView .card h3 span {
background: #42c8b7;
color: #fff;
border-radius: 30px;
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;
height: 40px;
width: 40px;
margin-right: 30px;
}
.cardsView .card p {
font-size: 20px;
color: #666;
}
/* responsive SCSS
--------------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.menu .toggle {
display: block;
}
.menu ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
display: none;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.menu .toggle {
display: block;
}
.menu ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
display: none;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.menu .toggle {
display: none;
}
.menu ul {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1024px) {
.row {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
}
/*# sourceMappingURL=main.css.map */ | 0.252108 | 0.043834 |
----------------------------------------------------------------------------------*/
body {
margin:0;
padding:0;
background:#FFF;
font-size:12px;
font-family:"Lucida Grande", Verdana, Lucida, Arial, Helvetica, "宋体",sans-serif;
color:#333;
text-align:left;
background-image:url(../images/bg.gif);
background-attachment:fixed;
padding-left:3px;
}
html {
SCROLLBAR-FACE-COLOR: #DAFBFF;
SCROLLBAR-HIGHLIGHT-COLOR: #1BB3E5;
SCROLLBAR-SHADOW-COLOR: #1BB3E5;
SCROLLBAR-3DLIGHT-COLOR: #DAFBFF;
SCROLLBAR-ARROW-COLOR: #1BB3E5;
SCROLLBAR-TRACK-COLOR: #DAFBFF;
SCROLLBAR-DARKSHADOW-COLOR: #DAFBFF;
}
div,form,p,ul,ol,li,dl,dt,dd,
h1,h2,h3,h4,h5,h6 {border:0;list-style:none;margin:0;padding:0;text-align:left;}
form, input, select, textarea{ font-size:12px}
a {color:#333;}
a:link,a:visited,a:active {text-decoration:none;}
a:hover {text-decoration:underline;}
a img {border:0;cursor:pointer;}
img {vertical-align:middle; }
.clear {CLEAR: both; FONT-SIZE: 0px; VISIBILITY: hidden; overflow:hidden; WIDTH: 1px; HEIGHT: 1px}
input.password {background:#FFFFFF url(../images/input_password.gif) 2px 2px no-repeat; padding-left:18px; border:1px solid #D1D1D1; color:#666666; width:200px;}
input.img {margin-left:120px;}
.TitleIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:550px;}
.botton {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:70px; height:18px; line-height:18px;}
.Select {background-color:#F7F7F7;color:#666666;}
.CumIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:150px;}
.CumInP {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:100px;}
.CumInPDisEnable {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:100px; background-color:#F7F7F7;}
.DataIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:400px;}
.SqlIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:600px; height:120px; overflow:visible;}
.page_wrapper {width:100%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px; color:#23AFD6; }
.page_wrapper .page_list{width:100%; float:left; height:30px; line-height:30px; margin-left:10px; color:#23AFD6; text-align:center;}
.page_wrapper .page_list a{display:block; float:left; border:solid 1px #159ABF; padding:0 2px; margin:0 2px;text-align:center; line-height:20px; width:40px; height:16px; color:#23AFD6;}
.page_wrapper .page_list a:hover{ background:#58C7EE; color:#fff}/**/
/*顶部菜单
-------------------------------------------------------------------------------------*/
.Menu {width:220px; height:auto; text-align:left;}
/*展开、闭合菜单
-------------------------------------------------*/
.Menu .Top {width:220px; background-image:url(../images/left_top.gif); height:23px; margin-top:8px;}
.Menu .Top .Pic {width:16px; height:16px; margin-left:6px; margin-top:3px; float:left; cursor:pointer;}
.Menu .Top .Pic img {width:16px; height:16px; border:none;}
.Menu .Top .Txt {width:180px; margin-left:5px; height:23px; line-height:23px; color:#FFFFFF; float:left; font-size:13px; font-weight:bold; cursor:pointer; }
.Menu .Top .Txt a {color:#FFFFFF;}
.Menu .Top .Txt a:hover {color:#FFFFFF; }
/*子菜单
--------------------------------------------------*/
.Menu .MenuList {width:200px; margin-top:5px; padding:0px; height:auto;}
.Menu .MenuList01 {width:200px; margin-top:5px; padding:0px; height:auto;}
.Menu .MenuList01 li {line-height:24px; margin-left:0px; overflow:hidden; width:200px; cursor:pointer;}
.Menu .MenuList01 li.li01 {line-height:24px; height:24px; color:#F60}
.Menu .MenuList01 li.li02 {line-height:24px; height:24px;}
.Menu .MenuList01 li.li03 {line-height:24px; overflow:hidden;}
.Menu .MenuList01 li.li03 .ListStat {margin-left:10px; width:160px; height:20px; overflow:hidden;}
.Menu .MenuList01 li.li03 .ListStat li {background:url(../images/in_ico_down.gif) no-repeat left 6px;padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Menu .MenuList01 li.li03 .ListStat li a:hover{ color:#F60}
.Menu .MenuList01 li span{ float:left;}
.Menu .MenuList01 li span img{ margin-top:5px;}
.Menu .MenuList01 li a:hover{ color:#F60}
.Menu .MenuList li {background:url(../images/in_ico_down.gif) no-repeat left 6px; padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Menu .MenuList li a:hover{ color:#F60}
/*统计概况页面样式
-----------------------------------------------------------------------------------------------*/
#ListSiteInfo {width:100%; height:auto; margin:0px; padding:0px;}
#ChangePass {width:100%; height:auto; margin:0px; padding:0px;}
#ClassManage {width:100%; height:auto; margin:0px; padding:0px;}
#Stat_List {width:100%; height:auto; margin:0px; padding:0px;}
#Add_Stat {width:100%; height:auto; margin:0px; padding:0px;}
.Nvai {width:100%; height:30px; line-height:30px; text-align:left;}
.Nvai .Pic { width:14px; margin-left:6px; margin-top:8px; height:14px; float:left; background-image:url(../images/home_Icon.gif);}
.Nvai .Txt {width:500px; margin-left:3px; height:30px; line-height:30px; float:left; color:#FF0000;}
.Nvai .Txt span{color:#333;}
/* 站点信息 */
.Info {width:100%; height:auto; text-align:left; margin-top:10px;}
.Info li {background:url(../images/in_ico_book.gif) no-repeat left 6px; padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Info li a:hover{ color:#F60}
/* 修改密码 */
.pass {width:400px; height:auto; margin-top:60px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.pass .title {width:100%; height:30px; line-height:30px; font-size:13px; font-weight:bold; color:#1BB3E5; text-align:center;}
.pass .oldPass {width:96%; height:30px; line-height:30px; font-size:12px; color:#1BB3E5; text-align:left;}
/* 栏目管理 */
.ClassOption {width:96%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px;}
.ClassOption li {width:60px; height:30px; line-height:30px; text-align:left; float:left;}
.ClassOption li img {border:none; cursor:pointer;}
.ClassList {width:96%; height:auto; margin-top:2px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.ClassList .Option {width:100%; height:30px; line-height:30px; text-align:left; background-color:#23AFD6;}
.ClassList .Option li.li01{height:30px; line-height:30px; width:5%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li02{height:30px; line-height:30px; width:40%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold; overflow:hidden;}
.ClassList .Option li.li03{height:30px; line-height:30px; width:15%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li04{height:30px; line-height:30px; width:20%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li05{height:30px; line-height:30px; width:15%; color:#FFFFFF; float:left; text-align:center; font-weight:bold;}
.ClassList .InfoList {width:100%; height:auto; text-align:left; background-color:#F7F7F7; margin-top:0px; margin-bottom:0px;}
.ClassList .InfoList li.li01{height:30px; line-height:30px; width:5%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li02{height:30px; line-height:30px; width:40%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:left; overflow:hidden;}
.ClassList .InfoList li.li03{height:30px; line-height:30px; width:15%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li04{height:30px; line-height:30px; width:20%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li05{height:30px; line-height:30px; width:15%; color:#23AFD6; float:left; text-align:center;}
/* 添加统计项目 */
.AddStat {width:700px; height:auto; margin-top:30px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.AddStat .title {width:100%; height:30px; line-height:30px; font-size:13px; font-weight:bold; color:#1BB3E5; text-align:center;}
.AddStat .stTitle {width:96%; height:30px; text-align:left;}
.AddStat .stType {width:96%; height:30px; text-align:left;}
.AddStat .stCum {width:96%; height:auto; text-align:left;}
.AddStat .stCum div {width:100%; height:auto; text-align:left;}
.AddStat .stCum li.li01{line-height:24px; height:24px; margin-left:0px; margin-right:10px; overflow:hidden; width:48%; float:left;}
.AddStat .stCum li.li02{line-height:24px; height:24px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:100%;}
.AddStat .stCum li.li03{line-height:90px; height:auto; margin-left:0px; overflow:hidden; text-align:left; float:left; width:100%;}
.AddStat .stCum li span {line-height:24px; height:24px; margin-left:5px; color:#55BF00;}
.AddStat .stCum div.ParamList {width:100%; height:auto; text-align:left;}
.AddStat .stCum div.ParamList li{line-height:24px; height:24px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:96%;}
.AddStat .stbtn {width:96%; height:40px; line-height:40px; text-align:left;}
/* 统计项目列表 */
.Topoption {width:96%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px;}
.Topoption li {width:60px; height:30px; line-height:30px; text-align:left; float:left;}
.Topoption li img {border:none; cursor:pointer;}
.Topoption li.li01 {width:auto; height:30px; line-height:30px; margin-left:10px; text-align:left; float:left;}
.List {width:96%; height:auto; margin-top:2px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.List .Option {width:100%; height:30px; line-height:30px; text-align:left; background-color:#23AFD6;}
.List .Option li.li01{height:30px; line-height:30px; width:5%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li02{height:30px; line-height:30px; width:40%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold; overflow:hidden;}
.List .Option li.li03{height:30px; line-height:30px; width:15%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li04{height:30px; line-height:30px; width:20%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li05{height:30px; line-height:30px; width:15%; color:#FFFFFF; float:left; text-align:center; font-weight:bold;}
.List .InfoList {width:100%; height:auto; text-align:left; background-color:#F7F7F7; margin-top:0px; margin-bottom:0px;}
.List .InfoList li.li01{height:30px; line-height:30px; width:5%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li02{height:30px; line-height:30px; width:40%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:left; overflow:hidden;}
.List .InfoList li.li03{height:30px; line-height:30px; width:15%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li04{height:30px; line-height:30px; width:20%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li05{height:30px; line-height:30px; width:15%; color:#23AFD6; float:left; text-align:center;}
/* 报表显示页面 */
.ViewTop {width:800px; height:auto; line-height:30px; text-align:left; margin-top:10px; margin-left:10px; border:1px solid #B7ECF7; background-color:#F7F7F7;}
.ViewTop .Change {width:790px; height:auto; line-height:30px; text-align:left; margin-left:9px; }
.ViewTop .Change li{line-height:30px; height:30px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:96%;}
/* 版权部分 */
.copybottom {width:100%; height:60px; line-height:60px; text-align:center; margin-top:10px; margin-bottom:10px;}
.copybottom .Listcopy {width:96%; height:60px; line-height:60px; text-align:left; color:#666666; margin-left:10px;}
/*常规数据列表页面部分
----------------------------------------------------------------------------------------------------------------------------------------*/
/* 通用查询部分 */
#SearchWrap {width:100%; margin-top:10px; text-align:center; height:auto;}
#SearchWrap .Con {width:96%; margin-left:10px; height:30px; line-height:30px; text-align:left;}
#SearchWrap .Numt {width:96%; margin-left:10px; height:30px; line-height:30px; text-align:left;}
#SearchWrap .Numt .Num {width:800px; height:30px; line-height:30px; text-align:left; border:1px solid #F7F7F7;}
#SearchWrap .Numt .Num li {height:30px; line-height:30px; text-align:left; border-right:1px solid #F7F7F7; float:left; width:260px;}
#SearchWrap .Numt .Num li span{color:#CC3300;}
#SearchWrap .Numt .Num li.li01 { border:none;}
/* 访客详情 */
#Vistor_InfoList {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.VistorInfo {width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.VistorInfo .Title{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.VistorInfo .InfoList{width:800px; height:120px; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorInfo .InfoList .Area{width:100%; border-bottom:1px solid #1BB3E5; height:30px; line-height:30px;}
.VistorInfo .InfoList .Area a{color:#F60;}
.VistorInfo .InfoList .Area a:hover{color:#F60;}
.VistorInfo .InfoList .Area li{width:49%; height:30px; line-height:30px; float:left; border-right:1px solid #1BB3E5;}
.VistorInfo .InfoList .Area li.li01{border-right:none;}
.VistorInfo .InfoList .bottom{width:100%; height:30px; line-height:30px;}
.VistorInfo .InfoList .bottom li{height:30px; line-height:30px; float:left;}
.VistorInfo .InfoList .bottom li.li01{width:60%; border-right:1px solid #1BB3E5;}
.VistorInfo .InfoList .bottom li.li02{width:38%;}
/* 访问量统计 */
#VistorNum_InfoList {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.VistorNum{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.VistorNum .TitleNum{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.VistorNum .InfoListNum{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorNum .InfoListNum .Menu{width:800px; height:30px; line-height:30px;}
.VistorNum .InfoListNum .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.VistorNum .InfoListNum .Menu li.li01{width:150px; border-right:1px solid #1BB3E5;}
.VistorNum .InfoListNum .Menu li.li02{width:250px; border-right:1px solid #1BB3E5;}
.VistorNum .InfoListNum .Menu li.li03{width:380px;}
.VistorNum .NumList{width:800px; height:72px; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorNum .NumList .Left{width:150px; height:72px; line-height:72px; border-right:1px solid #1BB3E5; float:left; text-align:center;}
.VistorNum .NumList .Center{width:250px; height:72px; border-right:1px solid #1BB3E5; float:left; padding:0px;}
.VistorNum .NumList .Center .NumAllT{width:250px; height:24px; line-height:24px; border-bottom:1px solid #1BB3E5; padding:0px; margin:0px;}
.VistorNum .NumList .Center .NumAllT01{width:250px; height:24px; line-height:24px; padding:0px; margin:0px;}
.VistorNum .NumList .Right{width:398px; height:72px; float:left;}
.VistorNum .NumList .Right .NumAllP{width:398px; height:24px; line-height:24px; border-bottom:1px solid #1BB3E5; padding:0px; margin:0px;}
.VistorNum .NumList .Right .NumAllP01{width:398px; height:24px; line-height:24px; padding:0px; margin:0px;}
.VistorNum .NumList .Right .NumAllP li { float:left; height:24px; line-height:24px;}
.VistorNum .NumList .Right .NumAllP li img { margin-top:5px;}
.VistorNum .NumList .Right .NumAllP li.li01 { width:80px; text-align:center;}
.VistorNum .NumList .Right .NumAllP li.li02 { width:200px; text-align:left;}
.VistorNum .NumList .Right .NumAllP li.li03 { width:80px; text-align:left;}
.VistorNum .NumList .Right .NumAllP01 li { float:left; height:24px; line-height:24px;}
.VistorNum .NumList .Right .NumAllP01 li img { margin-top:5px;}
.VistorNum .NumList .Right .NumAllP01 li.li01 { width:80px; text-align:center;}
.VistorNum .NumList .Right .NumAllP01 li.li02 { width:200px; text-align:left;}
.VistorNum .NumList .Right .NumAllP01 li.li03 { width:80px; text-align:left;}
/* 当天用户注册详情 */
#P_TodayRegUserInfo {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.TodayRegUserInfo{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.TodayRegUserInfo .TitleReg{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayRegUserInfo .TitleReg a{font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayRegUserInfo .userRegInfo{width:800px; height:auto; line-height:30px; text-align:left; margin-left:13px; border:solid 1px #666666;}
.TodayRegUserInfo .userRegInfo li{height:30px; line-height:30px; float:left; width:100%; margin-left:10px;}
.TodayRegUserInfo .userRegInfo li span{color:#FF6600;}
.TodayRegUserInfo .RegMenu{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.TodayRegUserInfo .RegMenu .Menu{width:800px; height:30px; line-height:30px;}
.TodayRegUserInfo .RegMenu .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.TodayRegUserInfo .RegMenu .Menu li.li01{width:150px; border-right:1px solid #1BB3E5;}
.TodayRegUserInfo .RegMenu .Menu li.li02{width:250px; border-right:1px solid #1BB3E5;}
.TodayRegUserInfo .RegMenu .Menu li.li03{width:380px;}
.TodayRegUserInfo .UserInfo {width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:10px; }
.TodayRegUserInfo .UserInfo .UInfo{width:800px; height:30px; line-height:30px;}
.TodayRegUserInfo .UserInfo .UInfo .left{width:150px; height:30px; line-height:30px; border-right:1px solid #1BB3E5; float:left;}
.TodayRegUserInfo .UserInfo .UInfo .center{width:250px; height:30px; line-height:30px; border-right:1px solid #1BB3E5; float:left; padding:0px; text-align:center;}
.TodayRegUserInfo .UserInfo .UInfo .right{width:398px; height:30px; line-height:30px; float:left;}
.TodayRegUserInfo .UserInfo .UInfoList{width:100%; height:auto; background-color:#F7F7F7; border-top:1px solid #1BB3E5; border-bottom:1px dashed #1BB3E5; margin-bottom:10px;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv{width:100%; height:30px; line-height:30px; text-align:left; border-bottom:1px dashed #CCC;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv01{width:100%; height:auto; text-align:left; border-bottom:1px dashed #CCC;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv01 li{width:100%; height:24px; line-height:24px; text-align:left;}
/* 当天注册用户推荐人详情 */
#P_TodayRegUserCommendInfo{width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.TodayCommend{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.TodayCommend .TitleCom{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayCommend .ComMenu{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.TodayCommend .ComMenu .Menu{width:800px; height:30px; line-height:30px;}
.TodayCommend .ComMenu .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.TodayCommend .ComMenu .Menu li.li01{width:100px; border-right:1px solid #1BB3E5;}
.TodayCommend .ComMenu .Menu li.li02{width:100px; border-right:1px solid #1BB3E5;}
.TodayCommend .ComMenu .Menu li.li03{width:580px;}
.TodayCommend .BeCommInfo {width:800px; height:inherit; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:10px; }
.TodayCommend .BeCommInfo .BeInfo{width:800px; height:inherit;}
.TodayCommend .BeCommInfo .BeInfo .left{width:100px; height:inherit; border-right:1px solid #1BB3E5; float:left;}
.TodayCommend .BeCommInfo .BeInfo .center{width:100px; height:inherit; border-right:1px solid #1BB3E5; float:left; padding:0px; text-align:center;}
.TodayCommend .BeCommInfo .BeInfo .right{width:598px; height:inherit; float:left; }
.TodayCommend .BeCommInfo .BeInfo .right .Info_List{width:598px; height:30px; line-height:30px; float:left;} | EaseServerWebUI/cpl/css/left.css | ----------------------------------------------------------------------------------*/
body {
margin:0;
padding:0;
background:#FFF;
font-size:12px;
font-family:"Lucida Grande", Verdana, Lucida, Arial, Helvetica, "宋体",sans-serif;
color:#333;
text-align:left;
background-image:url(../images/bg.gif);
background-attachment:fixed;
padding-left:3px;
}
html {
SCROLLBAR-FACE-COLOR: #DAFBFF;
SCROLLBAR-HIGHLIGHT-COLOR: #1BB3E5;
SCROLLBAR-SHADOW-COLOR: #1BB3E5;
SCROLLBAR-3DLIGHT-COLOR: #DAFBFF;
SCROLLBAR-ARROW-COLOR: #1BB3E5;
SCROLLBAR-TRACK-COLOR: #DAFBFF;
SCROLLBAR-DARKSHADOW-COLOR: #DAFBFF;
}
div,form,p,ul,ol,li,dl,dt,dd,
h1,h2,h3,h4,h5,h6 {border:0;list-style:none;margin:0;padding:0;text-align:left;}
form, input, select, textarea{ font-size:12px}
a {color:#333;}
a:link,a:visited,a:active {text-decoration:none;}
a:hover {text-decoration:underline;}
a img {border:0;cursor:pointer;}
img {vertical-align:middle; }
.clear {CLEAR: both; FONT-SIZE: 0px; VISIBILITY: hidden; overflow:hidden; WIDTH: 1px; HEIGHT: 1px}
input.password {background:#FFFFFF url(../images/input_password.gif) 2px 2px no-repeat; padding-left:18px; border:1px solid #D1D1D1; color:#666666; width:200px;}
input.img {margin-left:120px;}
.TitleIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:550px;}
.botton {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:70px; height:18px; line-height:18px;}
.Select {background-color:#F7F7F7;color:#666666;}
.CumIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:150px;}
.CumInP {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:100px;}
.CumInPDisEnable {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:100px; background-color:#F7F7F7;}
.DataIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:400px;}
.SqlIn {background:#FFFFFF; border:1px solid #D1D1D1; color:#666666; width:600px; height:120px; overflow:visible;}
.page_wrapper {width:100%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px; color:#23AFD6; }
.page_wrapper .page_list{width:100%; float:left; height:30px; line-height:30px; margin-left:10px; color:#23AFD6; text-align:center;}
.page_wrapper .page_list a{display:block; float:left; border:solid 1px #159ABF; padding:0 2px; margin:0 2px;text-align:center; line-height:20px; width:40px; height:16px; color:#23AFD6;}
.page_wrapper .page_list a:hover{ background:#58C7EE; color:#fff}/**/
/*顶部菜单
-------------------------------------------------------------------------------------*/
.Menu {width:220px; height:auto; text-align:left;}
/*展开、闭合菜单
-------------------------------------------------*/
.Menu .Top {width:220px; background-image:url(../images/left_top.gif); height:23px; margin-top:8px;}
.Menu .Top .Pic {width:16px; height:16px; margin-left:6px; margin-top:3px; float:left; cursor:pointer;}
.Menu .Top .Pic img {width:16px; height:16px; border:none;}
.Menu .Top .Txt {width:180px; margin-left:5px; height:23px; line-height:23px; color:#FFFFFF; float:left; font-size:13px; font-weight:bold; cursor:pointer; }
.Menu .Top .Txt a {color:#FFFFFF;}
.Menu .Top .Txt a:hover {color:#FFFFFF; }
/*子菜单
--------------------------------------------------*/
.Menu .MenuList {width:200px; margin-top:5px; padding:0px; height:auto;}
.Menu .MenuList01 {width:200px; margin-top:5px; padding:0px; height:auto;}
.Menu .MenuList01 li {line-height:24px; margin-left:0px; overflow:hidden; width:200px; cursor:pointer;}
.Menu .MenuList01 li.li01 {line-height:24px; height:24px; color:#F60}
.Menu .MenuList01 li.li02 {line-height:24px; height:24px;}
.Menu .MenuList01 li.li03 {line-height:24px; overflow:hidden;}
.Menu .MenuList01 li.li03 .ListStat {margin-left:10px; width:160px; height:20px; overflow:hidden;}
.Menu .MenuList01 li.li03 .ListStat li {background:url(../images/in_ico_down.gif) no-repeat left 6px;padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Menu .MenuList01 li.li03 .ListStat li a:hover{ color:#F60}
.Menu .MenuList01 li span{ float:left;}
.Menu .MenuList01 li span img{ margin-top:5px;}
.Menu .MenuList01 li a:hover{ color:#F60}
.Menu .MenuList li {background:url(../images/in_ico_down.gif) no-repeat left 6px; padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Menu .MenuList li a:hover{ color:#F60}
/*统计概况页面样式
-----------------------------------------------------------------------------------------------*/
#ListSiteInfo {width:100%; height:auto; margin:0px; padding:0px;}
#ChangePass {width:100%; height:auto; margin:0px; padding:0px;}
#ClassManage {width:100%; height:auto; margin:0px; padding:0px;}
#Stat_List {width:100%; height:auto; margin:0px; padding:0px;}
#Add_Stat {width:100%; height:auto; margin:0px; padding:0px;}
.Nvai {width:100%; height:30px; line-height:30px; text-align:left;}
.Nvai .Pic { width:14px; margin-left:6px; margin-top:8px; height:14px; float:left; background-image:url(../images/home_Icon.gif);}
.Nvai .Txt {width:500px; margin-left:3px; height:30px; line-height:30px; float:left; color:#FF0000;}
.Nvai .Txt span{color:#333;}
/* 站点信息 */
.Info {width:100%; height:auto; text-align:left; margin-top:10px;}
.Info li {background:url(../images/in_ico_book.gif) no-repeat left 6px; padding-left:15px; line-height:24px; height:24px; margin-left:0px; overflow:hidden}
.Info li a:hover{ color:#F60}
/* 修改密码 */
.pass {width:400px; height:auto; margin-top:60px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.pass .title {width:100%; height:30px; line-height:30px; font-size:13px; font-weight:bold; color:#1BB3E5; text-align:center;}
.pass .oldPass {width:96%; height:30px; line-height:30px; font-size:12px; color:#1BB3E5; text-align:left;}
/* 栏目管理 */
.ClassOption {width:96%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px;}
.ClassOption li {width:60px; height:30px; line-height:30px; text-align:left; float:left;}
.ClassOption li img {border:none; cursor:pointer;}
.ClassList {width:96%; height:auto; margin-top:2px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.ClassList .Option {width:100%; height:30px; line-height:30px; text-align:left; background-color:#23AFD6;}
.ClassList .Option li.li01{height:30px; line-height:30px; width:5%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li02{height:30px; line-height:30px; width:40%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold; overflow:hidden;}
.ClassList .Option li.li03{height:30px; line-height:30px; width:15%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li04{height:30px; line-height:30px; width:20%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.ClassList .Option li.li05{height:30px; line-height:30px; width:15%; color:#FFFFFF; float:left; text-align:center; font-weight:bold;}
.ClassList .InfoList {width:100%; height:auto; text-align:left; background-color:#F7F7F7; margin-top:0px; margin-bottom:0px;}
.ClassList .InfoList li.li01{height:30px; line-height:30px; width:5%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li02{height:30px; line-height:30px; width:40%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:left; overflow:hidden;}
.ClassList .InfoList li.li03{height:30px; line-height:30px; width:15%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li04{height:30px; line-height:30px; width:20%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.ClassList .InfoList li.li05{height:30px; line-height:30px; width:15%; color:#23AFD6; float:left; text-align:center;}
/* 添加统计项目 */
.AddStat {width:700px; height:auto; margin-top:30px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.AddStat .title {width:100%; height:30px; line-height:30px; font-size:13px; font-weight:bold; color:#1BB3E5; text-align:center;}
.AddStat .stTitle {width:96%; height:30px; text-align:left;}
.AddStat .stType {width:96%; height:30px; text-align:left;}
.AddStat .stCum {width:96%; height:auto; text-align:left;}
.AddStat .stCum div {width:100%; height:auto; text-align:left;}
.AddStat .stCum li.li01{line-height:24px; height:24px; margin-left:0px; margin-right:10px; overflow:hidden; width:48%; float:left;}
.AddStat .stCum li.li02{line-height:24px; height:24px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:100%;}
.AddStat .stCum li.li03{line-height:90px; height:auto; margin-left:0px; overflow:hidden; text-align:left; float:left; width:100%;}
.AddStat .stCum li span {line-height:24px; height:24px; margin-left:5px; color:#55BF00;}
.AddStat .stCum div.ParamList {width:100%; height:auto; text-align:left;}
.AddStat .stCum div.ParamList li{line-height:24px; height:24px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:96%;}
.AddStat .stbtn {width:96%; height:40px; line-height:40px; text-align:left;}
/* 统计项目列表 */
.Topoption {width:96%; height:30px; line-height:30px; text-align:left; margin-top:10px; margin-left:10px;}
.Topoption li {width:60px; height:30px; line-height:30px; text-align:left; float:left;}
.Topoption li img {border:none; cursor:pointer;}
.Topoption li.li01 {width:auto; height:30px; line-height:30px; margin-left:10px; text-align:left; float:left;}
.List {width:96%; height:auto; margin-top:2px; margin-left:10px; background-color:#F7F7F7; border:1px solid #B7ECF7; filter:alpha(opacity=80);-moz-opacity:0.8; text-align:center;}
.List .Option {width:100%; height:30px; line-height:30px; text-align:left; background-color:#23AFD6;}
.List .Option li.li01{height:30px; line-height:30px; width:5%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li02{height:30px; line-height:30px; width:40%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold; overflow:hidden;}
.List .Option li.li03{height:30px; line-height:30px; width:15%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li04{height:30px; line-height:30px; width:20%; color:#FFFFFF; border-right:1px solid #F7F7F7; float:left; text-align:center; font-weight:bold;}
.List .Option li.li05{height:30px; line-height:30px; width:15%; color:#FFFFFF; float:left; text-align:center; font-weight:bold;}
.List .InfoList {width:100%; height:auto; text-align:left; background-color:#F7F7F7; margin-top:0px; margin-bottom:0px;}
.List .InfoList li.li01{height:30px; line-height:30px; width:5%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li02{height:30px; line-height:30px; width:40%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:left; overflow:hidden;}
.List .InfoList li.li03{height:30px; line-height:30px; width:15%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li04{height:30px; line-height:30px; width:20%; color:#23AFD6; border-right:1px dashed #B2EBFA; float:left; text-align:center;}
.List .InfoList li.li05{height:30px; line-height:30px; width:15%; color:#23AFD6; float:left; text-align:center;}
/* 报表显示页面 */
.ViewTop {width:800px; height:auto; line-height:30px; text-align:left; margin-top:10px; margin-left:10px; border:1px solid #B7ECF7; background-color:#F7F7F7;}
.ViewTop .Change {width:790px; height:auto; line-height:30px; text-align:left; margin-left:9px; }
.ViewTop .Change li{line-height:30px; height:30px; margin-left:0px; overflow:hidden; text-align:left; float:left; width:96%;}
/* 版权部分 */
.copybottom {width:100%; height:60px; line-height:60px; text-align:center; margin-top:10px; margin-bottom:10px;}
.copybottom .Listcopy {width:96%; height:60px; line-height:60px; text-align:left; color:#666666; margin-left:10px;}
/*常规数据列表页面部分
----------------------------------------------------------------------------------------------------------------------------------------*/
/* 通用查询部分 */
#SearchWrap {width:100%; margin-top:10px; text-align:center; height:auto;}
#SearchWrap .Con {width:96%; margin-left:10px; height:30px; line-height:30px; text-align:left;}
#SearchWrap .Numt {width:96%; margin-left:10px; height:30px; line-height:30px; text-align:left;}
#SearchWrap .Numt .Num {width:800px; height:30px; line-height:30px; text-align:left; border:1px solid #F7F7F7;}
#SearchWrap .Numt .Num li {height:30px; line-height:30px; text-align:left; border-right:1px solid #F7F7F7; float:left; width:260px;}
#SearchWrap .Numt .Num li span{color:#CC3300;}
#SearchWrap .Numt .Num li.li01 { border:none;}
/* 访客详情 */
#Vistor_InfoList {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.VistorInfo {width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.VistorInfo .Title{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.VistorInfo .InfoList{width:800px; height:120px; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorInfo .InfoList .Area{width:100%; border-bottom:1px solid #1BB3E5; height:30px; line-height:30px;}
.VistorInfo .InfoList .Area a{color:#F60;}
.VistorInfo .InfoList .Area a:hover{color:#F60;}
.VistorInfo .InfoList .Area li{width:49%; height:30px; line-height:30px; float:left; border-right:1px solid #1BB3E5;}
.VistorInfo .InfoList .Area li.li01{border-right:none;}
.VistorInfo .InfoList .bottom{width:100%; height:30px; line-height:30px;}
.VistorInfo .InfoList .bottom li{height:30px; line-height:30px; float:left;}
.VistorInfo .InfoList .bottom li.li01{width:60%; border-right:1px solid #1BB3E5;}
.VistorInfo .InfoList .bottom li.li02{width:38%;}
/* 访问量统计 */
#VistorNum_InfoList {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.VistorNum{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.VistorNum .TitleNum{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.VistorNum .InfoListNum{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorNum .InfoListNum .Menu{width:800px; height:30px; line-height:30px;}
.VistorNum .InfoListNum .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.VistorNum .InfoListNum .Menu li.li01{width:150px; border-right:1px solid #1BB3E5;}
.VistorNum .InfoListNum .Menu li.li02{width:250px; border-right:1px solid #1BB3E5;}
.VistorNum .InfoListNum .Menu li.li03{width:380px;}
.VistorNum .NumList{width:800px; height:72px; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.VistorNum .NumList .Left{width:150px; height:72px; line-height:72px; border-right:1px solid #1BB3E5; float:left; text-align:center;}
.VistorNum .NumList .Center{width:250px; height:72px; border-right:1px solid #1BB3E5; float:left; padding:0px;}
.VistorNum .NumList .Center .NumAllT{width:250px; height:24px; line-height:24px; border-bottom:1px solid #1BB3E5; padding:0px; margin:0px;}
.VistorNum .NumList .Center .NumAllT01{width:250px; height:24px; line-height:24px; padding:0px; margin:0px;}
.VistorNum .NumList .Right{width:398px; height:72px; float:left;}
.VistorNum .NumList .Right .NumAllP{width:398px; height:24px; line-height:24px; border-bottom:1px solid #1BB3E5; padding:0px; margin:0px;}
.VistorNum .NumList .Right .NumAllP01{width:398px; height:24px; line-height:24px; padding:0px; margin:0px;}
.VistorNum .NumList .Right .NumAllP li { float:left; height:24px; line-height:24px;}
.VistorNum .NumList .Right .NumAllP li img { margin-top:5px;}
.VistorNum .NumList .Right .NumAllP li.li01 { width:80px; text-align:center;}
.VistorNum .NumList .Right .NumAllP li.li02 { width:200px; text-align:left;}
.VistorNum .NumList .Right .NumAllP li.li03 { width:80px; text-align:left;}
.VistorNum .NumList .Right .NumAllP01 li { float:left; height:24px; line-height:24px;}
.VistorNum .NumList .Right .NumAllP01 li img { margin-top:5px;}
.VistorNum .NumList .Right .NumAllP01 li.li01 { width:80px; text-align:center;}
.VistorNum .NumList .Right .NumAllP01 li.li02 { width:200px; text-align:left;}
.VistorNum .NumList .Right .NumAllP01 li.li03 { width:80px; text-align:left;}
/* 当天用户注册详情 */
#P_TodayRegUserInfo {width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.TodayRegUserInfo{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.TodayRegUserInfo .TitleReg{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayRegUserInfo .TitleReg a{font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayRegUserInfo .userRegInfo{width:800px; height:auto; line-height:30px; text-align:left; margin-left:13px; border:solid 1px #666666;}
.TodayRegUserInfo .userRegInfo li{height:30px; line-height:30px; float:left; width:100%; margin-left:10px;}
.TodayRegUserInfo .userRegInfo li span{color:#FF6600;}
.TodayRegUserInfo .RegMenu{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.TodayRegUserInfo .RegMenu .Menu{width:800px; height:30px; line-height:30px;}
.TodayRegUserInfo .RegMenu .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.TodayRegUserInfo .RegMenu .Menu li.li01{width:150px; border-right:1px solid #1BB3E5;}
.TodayRegUserInfo .RegMenu .Menu li.li02{width:250px; border-right:1px solid #1BB3E5;}
.TodayRegUserInfo .RegMenu .Menu li.li03{width:380px;}
.TodayRegUserInfo .UserInfo {width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:10px; }
.TodayRegUserInfo .UserInfo .UInfo{width:800px; height:30px; line-height:30px;}
.TodayRegUserInfo .UserInfo .UInfo .left{width:150px; height:30px; line-height:30px; border-right:1px solid #1BB3E5; float:left;}
.TodayRegUserInfo .UserInfo .UInfo .center{width:250px; height:30px; line-height:30px; border-right:1px solid #1BB3E5; float:left; padding:0px; text-align:center;}
.TodayRegUserInfo .UserInfo .UInfo .right{width:398px; height:30px; line-height:30px; float:left;}
.TodayRegUserInfo .UserInfo .UInfoList{width:100%; height:auto; background-color:#F7F7F7; border-top:1px solid #1BB3E5; border-bottom:1px dashed #1BB3E5; margin-bottom:10px;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv{width:100%; height:30px; line-height:30px; text-align:left; border-bottom:1px dashed #CCC;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv01{width:100%; height:auto; text-align:left; border-bottom:1px dashed #CCC;}
.TodayRegUserInfo .UserInfo .UInfoList .ListDiv01 li{width:100%; height:24px; line-height:24px; text-align:left;}
/* 当天注册用户推荐人详情 */
#P_TodayRegUserCommendInfo{width:810px; height:auto; text-align:center; padding:0px; margin-top:10px;}
.TodayCommend{width:100%; margin-left:10px; text-align:left; height:auto; color:#666666;}
.TodayCommend .TitleCom{width:800px; height:30px; line-height:30px; text-align:left; font-size:13px; font-weight:bold; color:#CC6600; margin-left:13px;}
.TodayCommend .ComMenu{width:800px; height:auto; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:15px; margin-bottom:10px;}
.TodayCommend .ComMenu .Menu{width:800px; height:30px; line-height:30px;}
.TodayCommend .ComMenu .Menu li{height:30px; line-height:30px; float:left; text-align:center;}
.TodayCommend .ComMenu .Menu li.li01{width:100px; border-right:1px solid #1BB3E5;}
.TodayCommend .ComMenu .Menu li.li02{width:100px; border-right:1px solid #1BB3E5;}
.TodayCommend .ComMenu .Menu li.li03{width:580px;}
.TodayCommend .BeCommInfo {width:800px; height:inherit; text-align:left; border:1px solid #1BB3E5; margin-left:13px; margin-top:10px; }
.TodayCommend .BeCommInfo .BeInfo{width:800px; height:inherit;}
.TodayCommend .BeCommInfo .BeInfo .left{width:100px; height:inherit; border-right:1px solid #1BB3E5; float:left;}
.TodayCommend .BeCommInfo .BeInfo .center{width:100px; height:inherit; border-right:1px solid #1BB3E5; float:left; padding:0px; text-align:center;}
.TodayCommend .BeCommInfo .BeInfo .right{width:598px; height:inherit; float:left; }
.TodayCommend .BeCommInfo .BeInfo .right .Info_List{width:598px; height:30px; line-height:30px; float:left;} | 0.22465 | 0.056262 |
#fork #fork-a-nav {
position: sticky;
top: 1rem;
}
#fork-a-menu .f-menu-a.active {
background-color: #814A00;
color: #F8F4E3;
}
#fork-a-menu .f-menu-a:hover,
#fork-a-menu .f-menu-a:focus {
background-color: #583200;
color: #F8F4E3;
}
#fork-a-menu #id-an-label {
position: absolute;
top: -2.875rem;
inset-inline-end: 0.625rem;
}
#fork .f-nav-admin-links,
#fork .f-nav-admin-one-column-links {
margin-inline-end: 3.75rem;
}
#fork-a-menu .f-menu-item:first-child .f-menu-a {
border-top: 0.0625rem dotted;
}
@media screen and (min-width: 50rem) {
#fork .f-nav-admin-links {
margin-inline-end: 0;
}
#fork .f-main-admin {
display: flex;
justify-content: space-between;
}
.f-main-admin #fork-a-menu {
width: 13rem;
}
.f-main-admin #forka {
width: calc(100% - 14rem);
}
.f-main-admin #fork-a-menu #id-an-label {
display: none;
}
.f-main-admin #fork-a-menu .f-menu-items {
display: flex;
}
.f-main-admin #fork-a-menu .f-menu-a {
text-transform: none;
border-bottom: 0.0625rem dotted;
}
}
/***********/
/* Админка */
/***********/
#forka .f-admin:not(:last-child) {
margin-bottom: 1rem;
}
#forka .f-admin .f-adiv,
#forka .f-admin .f-fdiv {
background-color: #F8F4E3;
border: 0.0625rem solid #AA7939;
}
#fork-welcome p,
#fork-grlist p {
padding: 0.625rem;
text-align: justify;
}
#fork-welcome ul {
padding: 0 0.625rem 0.625rem;
list-style-type: circle;
list-style-position: inside;
}
#fork-grlist ol {
padding: 0 0.625rem 0.625rem;
}
#forka dl {
border-bottom: 0.0625rem dotted #AA7939;
margin-bottom: 0.3125rem;
}
#forka .f-fleg {
margin-bottom: 0.3125rem;
}
#forka .f-flblch {
font-size: 1rem;
}
#fork-grlist li {
padding: 0.625rem 0;
border-bottom: 0.0625rem dotted #AA7939;
}
#fork-grlist li:first-child {
border-top: 0.0625rem dotted #AA7939;
}
#forka #fork-phpinfo {
word-break: break-all;
}
#forka #id-phpinfo-div {
overflow-x: auto;
}
#forka .f-wrap-between {
display: flex;
align-items: flex-end;
}
#forka .f-field-bstart,
#forka .f-field-bend {
width: 50%;
}
#forka .f-field-bstart .f-ycaption {
white-space: nowrap;
}
@media screen and (min-width: 36rem) {
#forka dl {
display: flex;
justify-content: space-between;
}
#forka dt {
width: 14rem;
}
#forka dd {
width: calc(100% - 14.625rem);
}
#forka .f-ycaption {
font-weight: normal;
}
#forka .f-field-full dt {
display: none;
}
#forka .f-field-full dd {
padding-inline-start: 0;
}
#forka .f-field-bstart {
width: calc((100% - 14.625rem) / 2 + 14.625rem);
}
#forka .f-field-bend {
width: calc((100% - 14.625rem) / 2);
}
#forka .f-field-bend > dt {
display: none;
}
#forka .f-field-bend > dd {
width: 100%;
}
}
/*************/
/* Установка */
/*************/
#fork .f-install {
margin: 1rem 0;
}
#fork .f-install > h2 {
padding: 0 0.625rem;
}
/*********************/
/* Админка/Категории */
/*********************/
#forka .f-deletecategory-form .f-fbtn {
width: auto;
display: inline-block;
}
#forka .f-fs-category {
display: flex;
align-items: stretch;
}
#forka .f-fs-category .f-fleg {
display: none;
}
#forka .f-fs-category .f-ycaption {
font-weight: normal;
}
#forka .f-field-category {
flex-direction: column;
justify-content: space-between;
}
#forka .f-field-category > dt {
display: none;
}
#forka .f-field-category > dd {
width: 100%;
}
#forka .f-fs-category:first-of-type .f-field-category > dt {
display: block;
width: 100%;
margin: 0;
white-space: nowrap;
overflow: hidden;
}
#forka .f-field-category.f-field-name {
width: calc(100% - 8rem);
}
#forka .f-field-category.f-field-position {
width: 5rem;
}
#forka .f-field-category.f-field-delete {
width: 3rem;
overflow: hidden;
text-align: center;
}
/*********************/
/* Админка/Разделы */
/*********************/
#forka .f-deleteforum-form .f-fbtn {
width: auto;
display: inline-block;
}
#forka .f-fs-forum {
display: flex;
align-items: stretch;
}
#forka .f-fs-forum .f-fleg {
display: none;
}
#forka .f-fs-forum .f-ycaption {
font-weight: normal;
}
#forka .f-field-forum {
flex-direction: column;
justify-content: space-between;
}
#forka .f-field-forum > dt {
display: none;
}
#forka .f-field-forum > dd {
width: 100%;
}
#forka .f-finform + .f-fs-forum .f-field-forum > dt {
display: block;
width: 100%;
margin: 0;
white-space: nowrap;
overflow: hidden;
}
#forka .f-field-forum.f-field-name {
width: calc(100% - 8rem);
}
#forka .f-field-forum.f-field-position {
width: 5rem;
}
#forka .f-field-forum.f-field-delete {
width: 3rem;
overflow: hidden;
text-align: center;
}
#forka .f-field-forum.f-field-name .f-ybtn {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#forka .f-fs-permission {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
#forka .f-fs-permission .f-fleg {
margin: 0;
}
#forka .f-fs-permission .f-ycaption {
font-weight: normal;
}
#forka .f-fs-permission .f-field-cando {
width: 33.333%;
text-align: center;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#forka .f-fs-permission .f-field-cando > dt,
#forka .f-fs-permission .f-field-cando > dd {
width: 100%;
margin: 0;
}
#forka .f-field-on .f-ychk:not(:checked) + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: red;
}
#forka .f-field-off .f-ychk:checked + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: red;
}
#forka .f-field-cando .f-ychk:disabled + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: gray;
}
#forka .f-editforums-form .f-btns,
#forka .f-editforum-form .f-btns{
justify-content: flex-end;
}
#forka .f-editforums-form .f-fbtn[data-name="new"],
#forka .f-editforum-form .f-fbtn[name="reset"] {
width: auto;
}
#forka .f-btn.f-disabled {
pointer-events: none;
cursor: default;
opacity: 0.5;
}
/******************/
/* Админка/Группы */
/******************/
#forka .f-deletegroup-form .f-fbtn {
width: auto;
display: inline-block;
}
/*********************/
/* Админка/Цензура */
/*********************/
#id-fs-censtable.f-fs-censor {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
#id-fs-censtable .f-ycaption {
font-weight: normal;
}
#id-fs-censtable .f-field-censor {
width: 50%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#id-fs-censtable .f-field-censor > dt {
display: none;
}
#id-fs-censtable .f-field-censor > dd {
width: 100%;
}
#id-fs-censtable .f-field-censor:nth-child(-n+2) > dt {
display: block;
width: 100%;
}
/************************/
/* Админка/Пользователи */
/************************/
#fork-ausersrch-rs .f-btns {
text-align: end;
}
#fork-ausersrch-rs .f-btns .f-fbtn,
#fork .f-delete-users-form .f-fbtn,
#fork .f-change-group-form .f-fbtn {
display: inline-block;
width: auto;
}
#forka .f-fs-result {
display: flex;
align-items: stretch;
border-bottom: 0.0625rem dotted #AA7939;
margin-bottom: 0.3125rem;
padding-bottom: 0.3125rem;
}
#forka .f-fs-stat {
display: block;
}
#forka .f-fs-result:first-of-type,
#forka .f-fs-result .f-field-no-data {
display: none;
}
#forka .f-fs-result .f-fleg {
display: none;
}
#forka .f-fs-result .f-ychk {
margin: 0;
}
#forka .f-fs-result .f-field-result {
border: 0;
margin: 0;
}
#forka .f-wrap-main-result {
width: calc(100% - 3rem);
}
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result .f-field-result > dd,
#forka .f-fs-result .f-field-result .f-str {
display: inline;
}
#forka .f-fs-result .f-field-result .f-ycaption {
display: inline;
font-weight: bold;
}
#forka .f-fs-result .f-field-result .f-ycaption::after {
content: ": ";
}
#forka .f-fs-result .f-field-check {
border: 0;
margin: 0;
width: 3rem;
overflow: hidden;
text-align: center;
border-inline-start: 0.0625rem dotted #AA7939;
display: flex;
flex-direction: column;
}
#forka .f-fs-result .f-field-check > dt {
display: none;
}
#forka .f-fs-result .f-field-check > dd {
display: flex;
align-items: center;
height: 100%;
width: 100%
}
#forka .f-fs-result .f-field-note > dd {
color: #D8000C;
}
@media screen and (min-width: 36rem) {
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result .f-field-result > dd {
display: block;
}
#forka .f-fs-result .f-field-result .f-ycaption {
display: block;
font-weight: normal;
}
#forka .f-fs-result .f-field-result .f-ycaption::after {
content: none;
}
}
@media screen and (min-width: 50rem) {
#forka .f-fs-stat {
display: flex;
}
#forka .f-wrap-main-result {
display: flex;
}
#forka .f-fs-result .f-field-result,
#forka .f-fs-result .f-wrap-user-result {
display: flex;
flex-direction: column;
justify-content: space-around;
}
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result:first-of-type .f-field-check > dt {
display: block;
margin: 0;
width: 100%;
}
#forka .f-fs-result .f-field-result > dd {
margin: 0;
width: 100%;
}
#forka .f-fs-result:first-of-type {
display: flex;
text-align: center;
}
#forka .f-fs-result:not(:first-of-type) .f-field-result > dt,
#forka .f-fs-result:first-of-type .f-field-result > dd {
display: none;
}
#forka .f-fs-result .f-field-result .f-ycaption,
#forka .f-fs-result .f-field-check .f-ycaption {
font-weight: bold;
}
#forka .f-fs-result .f-wrap-user-result {
width: 33%;
}
#forka .f-fs-result .f-field-username {
width: 100%;
}
#forka .f-fs-result .f-field-email {
width: 100%;
}
#forka .f-fs-result .f-field-title {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-posts {
width: 15%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-posts > dd {
text-align: end;
}
#forka .f-fs-result .f-field-note {
width: 20%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-view-ip {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-ip {
width: 25%;
}
#forka .f-fs-result .f-field-last-used {
width: 25%;
border-inline-start: 0.0625rem dotted #AA7939;
text-align: center;
}
#forka .f-fs-result .f-field-used-times {
width: 20%;
border-inline-start: 0.0625rem dotted #AA7939;
text-align: center;
}
#forka .f-fs-result .f-field-action {
width: 30%;
border-inline-start: 0.0625rem dotted #AA7939;
}
}
/****************************************/
/* Админка/Баны от Админка/Пользователи */
/****************************************/
#forka .f-wrap-btns-result {
display: flex;
flex-direction: column;
justify-content: center;
width: 3rem;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-wrap-btns-result dt {
display: none;
}
#forka .f-fs-result .f-wrap-btns-result dd {
width: 100%;
}
@media screen and (min-width: 50rem) {
#forka .f-fs-result .f-field-ips {
width: 19%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-expire {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-message {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-creator {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-wrap-btns-result .f-ybtn {
padding-top: 0;
padding-bottom: 0;
}
}
/****************************************/
/* Админка/Парсер */
/****************************************/
#fork-smls .f-fs-new-smile,
#fork-imgsm .f-fdiv {
display: flex;
flex-wrap: wrap;
}
#fork-imgsm .f-fs-image {
display: flex;
align-items: center;
border: 0.0625rem dotted #AA7939;
margin: 0.3125rem;
}
#forka #id-fs-image-legend {
width: 100%;
}
#fork-imgsm .f-field-image {
border: 0;
margin: 0;
}
#forka .f-bbcode-form .f-field-tag,
#fork-smls .f-fs-smile .f-fleg,
#fork-smls .f-fs-new-smile .f-fleg {
border-top: 0.0625rem dotted #AA7939;
}
#forka .f-fs-bbcode .f-fleg,
#fork-imgsm .f-fs-image .f-fleg,
#fork-imgsm .f-field-image > dt {
display: none;
}
#fork-imgsm .f-field-image > dd {
width: 100%;
}
#forka .f-field-pic img {
max-width: 100%;
min-width: 1rem;
height: auto;
}
#fork-imgsm .f-field-name {
max-width: 80%;
}
#fork-smls .f-field-new-smile {
display: flex;
flex-direction: column;
width: 33.33%;
}
#fork-smls .f-field-new-smile .f-ycaption {
font-weight: normal;
}
#fork-smls .f-field-new-smile > dt {
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#fork-smls .f-field-new-smile > dd {
width: 100%;
}
#forka .f-bbcode-form .f-link {
display: block;
}
#forka .f-field-handler .f-ytxtarea,
#forka .f-field-format .f-ytxt {
font-family: "DejaVu Sans Mono", Consolas, "Droid Sans Mono", Monospace, Monaco, "Courier New", Courier;
}
#forka .f-field-handler .f-ytxtarea {
height: 15rem;
}
#forka .f-bbcode-form .f-btns,
#forka .f-editbbcode-form .f-btns {
justify-content: flex-end;
}
#forka .f-bbcode-form .f-fbtn[data-name="new"],
#forka .f-editbbcode-form .f-fbtn[data-name="reset"],
#forka .f-deletebbcode-form .f-fbtn {
width: auto;
}
#forka .f-deletebbcode-form #id-dl-confirm {
display: block;
}
@media screen and (min-width: 25rem) {
#forka .f-bbcode-form .f-fs-bbcode {
display: flex;
}
#forka .f-bbcode-form .f-field-bbcode {
display: flex;
flex-direction: column;
}
#forka .f-bbcode-form .f-field-tag {
border-top: 0;
}
#forka .f-bbcode-form .f-field-bbcode > dt {
display: none;
}
#forka .f-fs-bbcode-legend + .f-fs-bbcode .f-field-bbcode > dt {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#forka .f-bbcode-form .f-field-bbcode .f-ycaption {
font-weight: normal;
}
#forka .f-bbcode-form .f-field-bbcode > dd {
width: 100%;
flex-grow: 1;
}
#forka .f-field-bbcode.f-field-tag,
#forka .f-field-bbcode.f-field-in_mes,
#forka .f-field-bbcode.f-field-in_sig {
width: calc((100% - 3rem) / 3);
}
#forka .f-field-bbcode.f-field-delete {
width: 3rem;
}
}
@media screen and (min-width: 35rem) {
#fork-smls .f-fs-smile {
display: flex;
}
#fork-smls .f-field-smile {
display: flex;
flex-direction: column;
}
#fork-smls .f-fs-smile .f-fleg,
#fork-smls .f-field-smile > dt {
display: none;
}
#forka .f-fs-smilies-legend + .f-fs-smile .f-field-smile > dt {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#fork-smls .f-field-smile .f-ycaption {
font-weight: normal;
}
#fork-smls .f-field-smile > dd {
width: 100%;
flex-grow: 1;
}
#forka .f-field-smile.f-field-code {
width: 10rem;
}
#forka .f-field-smile.f-field-position {
width: 5rem;
}
#fork .f-field-smile.f-field-image {
width: 12rem;
}
#forka .f-field-smile.f-field-pic {
width: calc(100% - 30rem);
text-align: center;
}
#forka .f-field-smile.f-field-delete {
width: 3rem;
}
#fork-smls .f-fs-new-smile .f-fleg {
border-top: 0;
}
}
/****************************************/
/* Админка/Сигналы */
/****************************************/
#forka .f-reports .f-fleg {
border-top: 0.0625rem dashed #AA7939;
}
#fork-rprt-new .f-field-reason {
background-color: #FFBABA;
}
#fork-rprt-old .f-field-reason {
background-color: #FEEFB3; /*#FFCCBA;*/
}
/****************************************/
/* Админка/Логи */
/****************************************/
#forka .f-lgli {
padding: 0.3125rem;
border-bottom: 0.0625rem dotted #AA7939;
display: flex;
}
#forka .f-lgp,
#id-lgdtlt .f-lgli:first-child {
border-top: 0.0625rem dotted #AA7939;
}
#forka .f-llv > span {
margin: 0.125rem 0.1875rem;
display: block;
}
#forka .f-llvem > span {
color: #F8F4E3;
background-color: #B71C1C;
}
#forka .f-llval > span {
color: #F8F4E3;
background-color: #D32F2F;
}
#forka .f-llvcr > span {
color: #F8F4E3;
background-color: #F44336;
}
#forka .f-llver > span {
color: #F8F4E3;
background-color: #FF5722;
}
#forka .f-llvwa > span {
color: #F8F4E3;
background-color: #FF9100;
}
#forka .f-llvno > span {
color: #F8F4E3;
background-color: #4CAF50;
}
#forka .f-llvin > span {
color: #F8F4E3;
background-color: #1976D2;
}
#forka .f-llvde > span {
color: #F8F4E3;
background-color: #90CAF9;
}
#forka .f-lgname {
width: 8rem;
}
#forka .f-logbt {
width: 3.25rem;
text-align: end;
}
#forka .f-llv {
width: calc( (100% - 11.25rem) / 8 );
text-align: center;
}
#forka .f-lga {
padding: 0.125rem 0.1875rem;
}
#forka .f-lga::before {
display: inline-block;
font-family: "FontAwesomeFree";
font-weight: 900;
}
#forka .f-lgadown::before {
content: "\f019";
}
#forka .f-lgadel::before {
content: "\f2ed";
}
#forka .f-lgs {
display: none;
}
#forka .f-logdel-form .f-fbtn {
display: inline-block;
width: auto;
}
#fork-logview .f-lgli {
font-size: 0.875rem;
}
#fork-logview .f-lgsu {
display: flex;
}
#fork-logview .f-lgdt {
width: 9.5rem;
flex-shrink: 0;
}
#fork-logview .f-lgdts {
color: #F8F4E3;
background-color: #AA7939;
margin: 0.125rem 0.1875rem;
display: block;
text-align: center;
}
#fork-logview .f-lglv {
width: 5rem;
flex-shrink: 0;
}
#fork-logview .f-lglvs {
margin: 0.125rem 0.1875rem;
display: block;
text-align: center;
}
#fork #fork-logview summary.f-lgsu {
margin: 0;
}
#fork #fork-logview summary.f-lgsu::after {
content: none;
}
#fork-logview .f-lgdtl {
width: 100%;
}
#fork-logview .f-lgpre {
margin-top: 0.625rem;
overflow: auto;
}
#fork-logview .f-lgmes {
min-width: 0;
} | public/style/ForkBB/admin.css | #fork #fork-a-nav {
position: sticky;
top: 1rem;
}
#fork-a-menu .f-menu-a.active {
background-color: #814A00;
color: #F8F4E3;
}
#fork-a-menu .f-menu-a:hover,
#fork-a-menu .f-menu-a:focus {
background-color: #583200;
color: #F8F4E3;
}
#fork-a-menu #id-an-label {
position: absolute;
top: -2.875rem;
inset-inline-end: 0.625rem;
}
#fork .f-nav-admin-links,
#fork .f-nav-admin-one-column-links {
margin-inline-end: 3.75rem;
}
#fork-a-menu .f-menu-item:first-child .f-menu-a {
border-top: 0.0625rem dotted;
}
@media screen and (min-width: 50rem) {
#fork .f-nav-admin-links {
margin-inline-end: 0;
}
#fork .f-main-admin {
display: flex;
justify-content: space-between;
}
.f-main-admin #fork-a-menu {
width: 13rem;
}
.f-main-admin #forka {
width: calc(100% - 14rem);
}
.f-main-admin #fork-a-menu #id-an-label {
display: none;
}
.f-main-admin #fork-a-menu .f-menu-items {
display: flex;
}
.f-main-admin #fork-a-menu .f-menu-a {
text-transform: none;
border-bottom: 0.0625rem dotted;
}
}
/***********/
/* Админка */
/***********/
#forka .f-admin:not(:last-child) {
margin-bottom: 1rem;
}
#forka .f-admin .f-adiv,
#forka .f-admin .f-fdiv {
background-color: #F8F4E3;
border: 0.0625rem solid #AA7939;
}
#fork-welcome p,
#fork-grlist p {
padding: 0.625rem;
text-align: justify;
}
#fork-welcome ul {
padding: 0 0.625rem 0.625rem;
list-style-type: circle;
list-style-position: inside;
}
#fork-grlist ol {
padding: 0 0.625rem 0.625rem;
}
#forka dl {
border-bottom: 0.0625rem dotted #AA7939;
margin-bottom: 0.3125rem;
}
#forka .f-fleg {
margin-bottom: 0.3125rem;
}
#forka .f-flblch {
font-size: 1rem;
}
#fork-grlist li {
padding: 0.625rem 0;
border-bottom: 0.0625rem dotted #AA7939;
}
#fork-grlist li:first-child {
border-top: 0.0625rem dotted #AA7939;
}
#forka #fork-phpinfo {
word-break: break-all;
}
#forka #id-phpinfo-div {
overflow-x: auto;
}
#forka .f-wrap-between {
display: flex;
align-items: flex-end;
}
#forka .f-field-bstart,
#forka .f-field-bend {
width: 50%;
}
#forka .f-field-bstart .f-ycaption {
white-space: nowrap;
}
@media screen and (min-width: 36rem) {
#forka dl {
display: flex;
justify-content: space-between;
}
#forka dt {
width: 14rem;
}
#forka dd {
width: calc(100% - 14.625rem);
}
#forka .f-ycaption {
font-weight: normal;
}
#forka .f-field-full dt {
display: none;
}
#forka .f-field-full dd {
padding-inline-start: 0;
}
#forka .f-field-bstart {
width: calc((100% - 14.625rem) / 2 + 14.625rem);
}
#forka .f-field-bend {
width: calc((100% - 14.625rem) / 2);
}
#forka .f-field-bend > dt {
display: none;
}
#forka .f-field-bend > dd {
width: 100%;
}
}
/*************/
/* Установка */
/*************/
#fork .f-install {
margin: 1rem 0;
}
#fork .f-install > h2 {
padding: 0 0.625rem;
}
/*********************/
/* Админка/Категории */
/*********************/
#forka .f-deletecategory-form .f-fbtn {
width: auto;
display: inline-block;
}
#forka .f-fs-category {
display: flex;
align-items: stretch;
}
#forka .f-fs-category .f-fleg {
display: none;
}
#forka .f-fs-category .f-ycaption {
font-weight: normal;
}
#forka .f-field-category {
flex-direction: column;
justify-content: space-between;
}
#forka .f-field-category > dt {
display: none;
}
#forka .f-field-category > dd {
width: 100%;
}
#forka .f-fs-category:first-of-type .f-field-category > dt {
display: block;
width: 100%;
margin: 0;
white-space: nowrap;
overflow: hidden;
}
#forka .f-field-category.f-field-name {
width: calc(100% - 8rem);
}
#forka .f-field-category.f-field-position {
width: 5rem;
}
#forka .f-field-category.f-field-delete {
width: 3rem;
overflow: hidden;
text-align: center;
}
/*********************/
/* Админка/Разделы */
/*********************/
#forka .f-deleteforum-form .f-fbtn {
width: auto;
display: inline-block;
}
#forka .f-fs-forum {
display: flex;
align-items: stretch;
}
#forka .f-fs-forum .f-fleg {
display: none;
}
#forka .f-fs-forum .f-ycaption {
font-weight: normal;
}
#forka .f-field-forum {
flex-direction: column;
justify-content: space-between;
}
#forka .f-field-forum > dt {
display: none;
}
#forka .f-field-forum > dd {
width: 100%;
}
#forka .f-finform + .f-fs-forum .f-field-forum > dt {
display: block;
width: 100%;
margin: 0;
white-space: nowrap;
overflow: hidden;
}
#forka .f-field-forum.f-field-name {
width: calc(100% - 8rem);
}
#forka .f-field-forum.f-field-position {
width: 5rem;
}
#forka .f-field-forum.f-field-delete {
width: 3rem;
overflow: hidden;
text-align: center;
}
#forka .f-field-forum.f-field-name .f-ybtn {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#forka .f-fs-permission {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
#forka .f-fs-permission .f-fleg {
margin: 0;
}
#forka .f-fs-permission .f-ycaption {
font-weight: normal;
}
#forka .f-fs-permission .f-field-cando {
width: 33.333%;
text-align: center;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#forka .f-fs-permission .f-field-cando > dt,
#forka .f-fs-permission .f-field-cando > dd {
width: 100%;
margin: 0;
}
#forka .f-field-on .f-ychk:not(:checked) + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: red;
}
#forka .f-field-off .f-ychk:checked + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: red;
}
#forka .f-field-cando .f-ychk:disabled + span {
opacity: 0.2;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: gray;
}
#forka .f-editforums-form .f-btns,
#forka .f-editforum-form .f-btns{
justify-content: flex-end;
}
#forka .f-editforums-form .f-fbtn[data-name="new"],
#forka .f-editforum-form .f-fbtn[name="reset"] {
width: auto;
}
#forka .f-btn.f-disabled {
pointer-events: none;
cursor: default;
opacity: 0.5;
}
/******************/
/* Админка/Группы */
/******************/
#forka .f-deletegroup-form .f-fbtn {
width: auto;
display: inline-block;
}
/*********************/
/* Админка/Цензура */
/*********************/
#id-fs-censtable.f-fs-censor {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
#id-fs-censtable .f-ycaption {
font-weight: normal;
}
#id-fs-censtable .f-field-censor {
width: 50%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#id-fs-censtable .f-field-censor > dt {
display: none;
}
#id-fs-censtable .f-field-censor > dd {
width: 100%;
}
#id-fs-censtable .f-field-censor:nth-child(-n+2) > dt {
display: block;
width: 100%;
}
/************************/
/* Админка/Пользователи */
/************************/
#fork-ausersrch-rs .f-btns {
text-align: end;
}
#fork-ausersrch-rs .f-btns .f-fbtn,
#fork .f-delete-users-form .f-fbtn,
#fork .f-change-group-form .f-fbtn {
display: inline-block;
width: auto;
}
#forka .f-fs-result {
display: flex;
align-items: stretch;
border-bottom: 0.0625rem dotted #AA7939;
margin-bottom: 0.3125rem;
padding-bottom: 0.3125rem;
}
#forka .f-fs-stat {
display: block;
}
#forka .f-fs-result:first-of-type,
#forka .f-fs-result .f-field-no-data {
display: none;
}
#forka .f-fs-result .f-fleg {
display: none;
}
#forka .f-fs-result .f-ychk {
margin: 0;
}
#forka .f-fs-result .f-field-result {
border: 0;
margin: 0;
}
#forka .f-wrap-main-result {
width: calc(100% - 3rem);
}
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result .f-field-result > dd,
#forka .f-fs-result .f-field-result .f-str {
display: inline;
}
#forka .f-fs-result .f-field-result .f-ycaption {
display: inline;
font-weight: bold;
}
#forka .f-fs-result .f-field-result .f-ycaption::after {
content: ": ";
}
#forka .f-fs-result .f-field-check {
border: 0;
margin: 0;
width: 3rem;
overflow: hidden;
text-align: center;
border-inline-start: 0.0625rem dotted #AA7939;
display: flex;
flex-direction: column;
}
#forka .f-fs-result .f-field-check > dt {
display: none;
}
#forka .f-fs-result .f-field-check > dd {
display: flex;
align-items: center;
height: 100%;
width: 100%
}
#forka .f-fs-result .f-field-note > dd {
color: #D8000C;
}
@media screen and (min-width: 36rem) {
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result .f-field-result > dd {
display: block;
}
#forka .f-fs-result .f-field-result .f-ycaption {
display: block;
font-weight: normal;
}
#forka .f-fs-result .f-field-result .f-ycaption::after {
content: none;
}
}
@media screen and (min-width: 50rem) {
#forka .f-fs-stat {
display: flex;
}
#forka .f-wrap-main-result {
display: flex;
}
#forka .f-fs-result .f-field-result,
#forka .f-fs-result .f-wrap-user-result {
display: flex;
flex-direction: column;
justify-content: space-around;
}
#forka .f-fs-result .f-field-result > dt,
#forka .f-fs-result:first-of-type .f-field-check > dt {
display: block;
margin: 0;
width: 100%;
}
#forka .f-fs-result .f-field-result > dd {
margin: 0;
width: 100%;
}
#forka .f-fs-result:first-of-type {
display: flex;
text-align: center;
}
#forka .f-fs-result:not(:first-of-type) .f-field-result > dt,
#forka .f-fs-result:first-of-type .f-field-result > dd {
display: none;
}
#forka .f-fs-result .f-field-result .f-ycaption,
#forka .f-fs-result .f-field-check .f-ycaption {
font-weight: bold;
}
#forka .f-fs-result .f-wrap-user-result {
width: 33%;
}
#forka .f-fs-result .f-field-username {
width: 100%;
}
#forka .f-fs-result .f-field-email {
width: 100%;
}
#forka .f-fs-result .f-field-title {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-posts {
width: 15%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-posts > dd {
text-align: end;
}
#forka .f-fs-result .f-field-note {
width: 20%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-view-ip {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-ip {
width: 25%;
}
#forka .f-fs-result .f-field-last-used {
width: 25%;
border-inline-start: 0.0625rem dotted #AA7939;
text-align: center;
}
#forka .f-fs-result .f-field-used-times {
width: 20%;
border-inline-start: 0.0625rem dotted #AA7939;
text-align: center;
}
#forka .f-fs-result .f-field-action {
width: 30%;
border-inline-start: 0.0625rem dotted #AA7939;
}
}
/****************************************/
/* Админка/Баны от Админка/Пользователи */
/****************************************/
#forka .f-wrap-btns-result {
display: flex;
flex-direction: column;
justify-content: center;
width: 3rem;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-wrap-btns-result dt {
display: none;
}
#forka .f-fs-result .f-wrap-btns-result dd {
width: 100%;
}
@media screen and (min-width: 50rem) {
#forka .f-fs-result .f-field-ips {
width: 19%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-expire {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-message {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-fs-result .f-field-creator {
width: 16%;
border-inline-start: 0.0625rem dotted #AA7939;
}
#forka .f-wrap-btns-result .f-ybtn {
padding-top: 0;
padding-bottom: 0;
}
}
/****************************************/
/* Админка/Парсер */
/****************************************/
#fork-smls .f-fs-new-smile,
#fork-imgsm .f-fdiv {
display: flex;
flex-wrap: wrap;
}
#fork-imgsm .f-fs-image {
display: flex;
align-items: center;
border: 0.0625rem dotted #AA7939;
margin: 0.3125rem;
}
#forka #id-fs-image-legend {
width: 100%;
}
#fork-imgsm .f-field-image {
border: 0;
margin: 0;
}
#forka .f-bbcode-form .f-field-tag,
#fork-smls .f-fs-smile .f-fleg,
#fork-smls .f-fs-new-smile .f-fleg {
border-top: 0.0625rem dotted #AA7939;
}
#forka .f-fs-bbcode .f-fleg,
#fork-imgsm .f-fs-image .f-fleg,
#fork-imgsm .f-field-image > dt {
display: none;
}
#fork-imgsm .f-field-image > dd {
width: 100%;
}
#forka .f-field-pic img {
max-width: 100%;
min-width: 1rem;
height: auto;
}
#fork-imgsm .f-field-name {
max-width: 80%;
}
#fork-smls .f-field-new-smile {
display: flex;
flex-direction: column;
width: 33.33%;
}
#fork-smls .f-field-new-smile .f-ycaption {
font-weight: normal;
}
#fork-smls .f-field-new-smile > dt {
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#fork-smls .f-field-new-smile > dd {
width: 100%;
}
#forka .f-bbcode-form .f-link {
display: block;
}
#forka .f-field-handler .f-ytxtarea,
#forka .f-field-format .f-ytxt {
font-family: "DejaVu Sans Mono", Consolas, "Droid Sans Mono", Monospace, Monaco, "Courier New", Courier;
}
#forka .f-field-handler .f-ytxtarea {
height: 15rem;
}
#forka .f-bbcode-form .f-btns,
#forka .f-editbbcode-form .f-btns {
justify-content: flex-end;
}
#forka .f-bbcode-form .f-fbtn[data-name="new"],
#forka .f-editbbcode-form .f-fbtn[data-name="reset"],
#forka .f-deletebbcode-form .f-fbtn {
width: auto;
}
#forka .f-deletebbcode-form #id-dl-confirm {
display: block;
}
@media screen and (min-width: 25rem) {
#forka .f-bbcode-form .f-fs-bbcode {
display: flex;
}
#forka .f-bbcode-form .f-field-bbcode {
display: flex;
flex-direction: column;
}
#forka .f-bbcode-form .f-field-tag {
border-top: 0;
}
#forka .f-bbcode-form .f-field-bbcode > dt {
display: none;
}
#forka .f-fs-bbcode-legend + .f-fs-bbcode .f-field-bbcode > dt {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#forka .f-bbcode-form .f-field-bbcode .f-ycaption {
font-weight: normal;
}
#forka .f-bbcode-form .f-field-bbcode > dd {
width: 100%;
flex-grow: 1;
}
#forka .f-field-bbcode.f-field-tag,
#forka .f-field-bbcode.f-field-in_mes,
#forka .f-field-bbcode.f-field-in_sig {
width: calc((100% - 3rem) / 3);
}
#forka .f-field-bbcode.f-field-delete {
width: 3rem;
}
}
@media screen and (min-width: 35rem) {
#fork-smls .f-fs-smile {
display: flex;
}
#fork-smls .f-field-smile {
display: flex;
flex-direction: column;
}
#fork-smls .f-fs-smile .f-fleg,
#fork-smls .f-field-smile > dt {
display: none;
}
#forka .f-fs-smilies-legend + .f-fs-smile .f-field-smile > dt {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}
#fork-smls .f-field-smile .f-ycaption {
font-weight: normal;
}
#fork-smls .f-field-smile > dd {
width: 100%;
flex-grow: 1;
}
#forka .f-field-smile.f-field-code {
width: 10rem;
}
#forka .f-field-smile.f-field-position {
width: 5rem;
}
#fork .f-field-smile.f-field-image {
width: 12rem;
}
#forka .f-field-smile.f-field-pic {
width: calc(100% - 30rem);
text-align: center;
}
#forka .f-field-smile.f-field-delete {
width: 3rem;
}
#fork-smls .f-fs-new-smile .f-fleg {
border-top: 0;
}
}
/****************************************/
/* Админка/Сигналы */
/****************************************/
#forka .f-reports .f-fleg {
border-top: 0.0625rem dashed #AA7939;
}
#fork-rprt-new .f-field-reason {
background-color: #FFBABA;
}
#fork-rprt-old .f-field-reason {
background-color: #FEEFB3; /*#FFCCBA;*/
}
/****************************************/
/* Админка/Логи */
/****************************************/
#forka .f-lgli {
padding: 0.3125rem;
border-bottom: 0.0625rem dotted #AA7939;
display: flex;
}
#forka .f-lgp,
#id-lgdtlt .f-lgli:first-child {
border-top: 0.0625rem dotted #AA7939;
}
#forka .f-llv > span {
margin: 0.125rem 0.1875rem;
display: block;
}
#forka .f-llvem > span {
color: #F8F4E3;
background-color: #B71C1C;
}
#forka .f-llval > span {
color: #F8F4E3;
background-color: #D32F2F;
}
#forka .f-llvcr > span {
color: #F8F4E3;
background-color: #F44336;
}
#forka .f-llver > span {
color: #F8F4E3;
background-color: #FF5722;
}
#forka .f-llvwa > span {
color: #F8F4E3;
background-color: #FF9100;
}
#forka .f-llvno > span {
color: #F8F4E3;
background-color: #4CAF50;
}
#forka .f-llvin > span {
color: #F8F4E3;
background-color: #1976D2;
}
#forka .f-llvde > span {
color: #F8F4E3;
background-color: #90CAF9;
}
#forka .f-lgname {
width: 8rem;
}
#forka .f-logbt {
width: 3.25rem;
text-align: end;
}
#forka .f-llv {
width: calc( (100% - 11.25rem) / 8 );
text-align: center;
}
#forka .f-lga {
padding: 0.125rem 0.1875rem;
}
#forka .f-lga::before {
display: inline-block;
font-family: "FontAwesomeFree";
font-weight: 900;
}
#forka .f-lgadown::before {
content: "\f019";
}
#forka .f-lgadel::before {
content: "\f2ed";
}
#forka .f-lgs {
display: none;
}
#forka .f-logdel-form .f-fbtn {
display: inline-block;
width: auto;
}
#fork-logview .f-lgli {
font-size: 0.875rem;
}
#fork-logview .f-lgsu {
display: flex;
}
#fork-logview .f-lgdt {
width: 9.5rem;
flex-shrink: 0;
}
#fork-logview .f-lgdts {
color: #F8F4E3;
background-color: #AA7939;
margin: 0.125rem 0.1875rem;
display: block;
text-align: center;
}
#fork-logview .f-lglv {
width: 5rem;
flex-shrink: 0;
}
#fork-logview .f-lglvs {
margin: 0.125rem 0.1875rem;
display: block;
text-align: center;
}
#fork #fork-logview summary.f-lgsu {
margin: 0;
}
#fork #fork-logview summary.f-lgsu::after {
content: none;
}
#fork-logview .f-lgdtl {
width: 100%;
}
#fork-logview .f-lgpre {
margin-top: 0.625rem;
overflow: auto;
}
#fork-logview .f-lgmes {
min-width: 0;
} | 0.244814 | 0.044827 |
body
{
position: fixed;
overflow: hidden;
width: 100%;
height: 100%;
}
@-webkit-keyframes twinkling
{
/*透明度由0到1*/
0%
{
opacity: .6; /*透明度为1*/
}
50%
{
opacity: .2; /*透明度为1*/
}
100%
{
opacity: .6; /*透明度为1*/
}
}
.u-pageLoading
{
width: 100%;
height: 100%;
}
.u-pageLoading img
{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 25%;
margin: auto;
}
.logo{
position: fixed;
top:3.3167vh;
left:0;
right:0;
margin:0 auto;
z-index: 99;
width:19.23vh;
}
img{
width:100%;
}
.wrapper
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.page
{
position: relative;
overflow: hidden;
height: 100%;
background-image: url(../images/bg.jpg);
background-repeat: no-repeat;
background-position: top center;
background-size: 100% 100%;
}
.page img
{
-webkit-transition-duration: 2s; /* Safari 和 Chrome */
-moz-transition-duration: 2s; /* Firefox 4 */
-o-transition-duration: 2s;
transition-duration: 2s;
}
.home
{
}
.activity-rule-btn{
position: absolute;
top:4vh;
right:3.3167vh;
width:9.701vh;
}
.home-img{
position: absolute;
top:16vh;
right:0;
left:0;
margin:0 auto;
width:49.75vh;
}
.eggs-bg{
position: absolute;
bottom:0;
right:0;
left:0;
margin:0 auto;
width:100%;
}
.home-egg{
position: absolute;
top:56vh;
right: 0;
left:0;
margin: 0 auto;
width:18.822vh;
}
.activity-rule-detail-img{
position: absolute;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
width:59.535vh;
max-width: 90%;
}
.activity-rule-detail-btn{
position: absolute;
top:68vh;
right:0;
left:0;
margin:0 auto;
width:20.714vh;
}
.page1
{
background-image: url(../images/page1-bg.jpg);
}
.page1-title{
position: absolute;
top:16vh;
right:0;
left:0;
margin:0 auto;
width:49.75vh;
}
.page1-img{
position: absolute;
bottom:0;
right:0;
left:0;
margin:0 auto;
width:100%;
}
.egg{
position: absolute;
top:53vh;
width:16vh;
}
.egg-left{
left:65%;
}
.egg-center{
left:0;
right:0;
margin:0 auto;
}
.egg-right{
right:65%;
}
.page2
{
}
.receive-award-text{
position: absolute;
bottom:7.048vh;
right:0;
left:0;
margin:0 auto;
width: 23.88vh;
}
.receive-award{
position: absolute;
bottom:11.608vh;
right:0;
left:0;
margin:0 auto;
width: 23.88vh;
}
.crack-egg-ico{
position: absolute;
bottom:20vh;
right:0;
left:0;
margin:0 auto;
width: 39.22vh;
}
.crack-egg{
position: absolute;
bottom:20vh;
right:0;
left:0;
margin:0 auto;
width: 22.056vh;
}
.hammer{
position: absolute;
bottom:33vh;
left:60%;
width: 11.608vh;
}
.crack-egg-lighting{
position: absolute;
bottom:31vh;
right:0;
left:0;
margin:0 auto;
width: 45vh;
transform: scale(.1,.1) translateY(100vh);
transition: transform 1s ease 0s;
}
.award-size{
position: absolute;
bottom:47vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
transform: scale(.01,.1) translateY(300vh);
transition: transform .8s ease .6s;
}
.page3{
}
.qr-code{
position: absolute;
top:18vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
}
.qr-code-text-size{
position: absolute;
top:65vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
}
.qr-code-close{
position: absolute;
top:90vh;
right:0;
left:0;
margin:0 auto;
width: 5.887vh;
}
.page4{
}
.last-page-title{
position: absolute;
top: 20vh;
right: 0;
left: 0;
margin: 0 auto;
width: 42vh;
}
.last-page-img{
position: absolute;
top: 38vh;
right: 0;
left: 0;
margin: 0 auto;
width: 50vh;
max-width: 100%;
}
.ejiao-btn{
position: absolute;
top: 72vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.share-btn{
position: absolute;
top: 80vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.post-a-bg{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,.7);
z-index: 999;
}
.share-detail-img{
position: absolute;
top:6vh;
right:1vh;
width:45vh;
}
.receive-award-again-last{
position: absolute;
top: 88vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.shake{
-webkit-animation:shakeegg .8s infinite ease-in-out;
-o-animation:shakeegg .8s infinite ease-in-out;
animation:shakeegg .8s infinite ease-in-out;
margin-top: 100px;
}
@keyframes shakeegg {
0%{
transform: rotateZ(5deg) translateY(-100px);
}
50%{
transform: rotateZ(-5deg) translateY(-100px);
}
100%{
transform: rotateZ(5deg) translateY(-100px);
}
}
.award-animation .crack-egg-lighting{
transform: scale(1,1);
}
.award-animation .award-size{
transform: scale(1,1);
} | app/modules/ejiaoyuandan/assets/css/style.css | body
{
position: fixed;
overflow: hidden;
width: 100%;
height: 100%;
}
@-webkit-keyframes twinkling
{
/*透明度由0到1*/
0%
{
opacity: .6; /*透明度为1*/
}
50%
{
opacity: .2; /*透明度为1*/
}
100%
{
opacity: .6; /*透明度为1*/
}
}
.u-pageLoading
{
width: 100%;
height: 100%;
}
.u-pageLoading img
{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 25%;
margin: auto;
}
.logo{
position: fixed;
top:3.3167vh;
left:0;
right:0;
margin:0 auto;
z-index: 99;
width:19.23vh;
}
img{
width:100%;
}
.wrapper
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.page
{
position: relative;
overflow: hidden;
height: 100%;
background-image: url(../images/bg.jpg);
background-repeat: no-repeat;
background-position: top center;
background-size: 100% 100%;
}
.page img
{
-webkit-transition-duration: 2s; /* Safari 和 Chrome */
-moz-transition-duration: 2s; /* Firefox 4 */
-o-transition-duration: 2s;
transition-duration: 2s;
}
.home
{
}
.activity-rule-btn{
position: absolute;
top:4vh;
right:3.3167vh;
width:9.701vh;
}
.home-img{
position: absolute;
top:16vh;
right:0;
left:0;
margin:0 auto;
width:49.75vh;
}
.eggs-bg{
position: absolute;
bottom:0;
right:0;
left:0;
margin:0 auto;
width:100%;
}
.home-egg{
position: absolute;
top:56vh;
right: 0;
left:0;
margin: 0 auto;
width:18.822vh;
}
.activity-rule-detail-img{
position: absolute;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
width:59.535vh;
max-width: 90%;
}
.activity-rule-detail-btn{
position: absolute;
top:68vh;
right:0;
left:0;
margin:0 auto;
width:20.714vh;
}
.page1
{
background-image: url(../images/page1-bg.jpg);
}
.page1-title{
position: absolute;
top:16vh;
right:0;
left:0;
margin:0 auto;
width:49.75vh;
}
.page1-img{
position: absolute;
bottom:0;
right:0;
left:0;
margin:0 auto;
width:100%;
}
.egg{
position: absolute;
top:53vh;
width:16vh;
}
.egg-left{
left:65%;
}
.egg-center{
left:0;
right:0;
margin:0 auto;
}
.egg-right{
right:65%;
}
.page2
{
}
.receive-award-text{
position: absolute;
bottom:7.048vh;
right:0;
left:0;
margin:0 auto;
width: 23.88vh;
}
.receive-award{
position: absolute;
bottom:11.608vh;
right:0;
left:0;
margin:0 auto;
width: 23.88vh;
}
.crack-egg-ico{
position: absolute;
bottom:20vh;
right:0;
left:0;
margin:0 auto;
width: 39.22vh;
}
.crack-egg{
position: absolute;
bottom:20vh;
right:0;
left:0;
margin:0 auto;
width: 22.056vh;
}
.hammer{
position: absolute;
bottom:33vh;
left:60%;
width: 11.608vh;
}
.crack-egg-lighting{
position: absolute;
bottom:31vh;
right:0;
left:0;
margin:0 auto;
width: 45vh;
transform: scale(.1,.1) translateY(100vh);
transition: transform 1s ease 0s;
}
.award-size{
position: absolute;
bottom:47vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
transform: scale(.01,.1) translateY(300vh);
transition: transform .8s ease .6s;
}
.page3{
}
.qr-code{
position: absolute;
top:18vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
}
.qr-code-text-size{
position: absolute;
top:65vh;
right:0;
left:0;
margin:0 auto;
width: 36.733vh;
}
.qr-code-close{
position: absolute;
top:90vh;
right:0;
left:0;
margin:0 auto;
width: 5.887vh;
}
.page4{
}
.last-page-title{
position: absolute;
top: 20vh;
right: 0;
left: 0;
margin: 0 auto;
width: 42vh;
}
.last-page-img{
position: absolute;
top: 38vh;
right: 0;
left: 0;
margin: 0 auto;
width: 50vh;
max-width: 100%;
}
.ejiao-btn{
position: absolute;
top: 72vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.share-btn{
position: absolute;
top: 80vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.post-a-bg{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(0,0,0,.7);
z-index: 999;
}
.share-detail-img{
position: absolute;
top:6vh;
right:1vh;
width:45vh;
}
.receive-award-again-last{
position: absolute;
top: 88vh;
right: 0;
left: 0;
margin: 0 auto;
width: 23.714vh;
}
.shake{
-webkit-animation:shakeegg .8s infinite ease-in-out;
-o-animation:shakeegg .8s infinite ease-in-out;
animation:shakeegg .8s infinite ease-in-out;
margin-top: 100px;
}
@keyframes shakeegg {
0%{
transform: rotateZ(5deg) translateY(-100px);
}
50%{
transform: rotateZ(-5deg) translateY(-100px);
}
100%{
transform: rotateZ(5deg) translateY(-100px);
}
}
.award-animation .crack-egg-lighting{
transform: scale(1,1);
}
.award-animation .award-size{
transform: scale(1,1);
} | 0.487551 | 0.045735 |
.root-story-sheet {
display: grid;
grid-template-columns: 1fr 4fr;
grid-template-rows: repeat(minmax(150px, auto));
padding: 20px;
border-radius: 6px;
gap: 10px;
margin-bottom: 20px;
height: var(--sheet-height-state);
min-height: 300px;
overflow-y: hidden;
}
.sheet-image {
object-fit: contain;
width: 100%;
height: auto;
border: solid 3px var(--app-theme-orange);
border-radius: 6px;
padding: 2px;
}
.sheet-content-area {
padding: 0px 20px;
}
.sheet-content-area h4 {
padding: 10px 0px;
border: solid 0px #ededed;
border-bottom-width: 2px;
}
.sheet-details {
display: flex;
align-items: center;
justify-content: space-between;
}
.me-testi-btn-reset {
box-shadow: 0 0 0;
margin: 0px;
padding: 0px;
color: var(--app-theme-green) !important;
font-weight: bold;
border-width: 0px;
transform: scale(1) !important;
}
.me-testi-btn-reset:hover {
background-color: white !important;
color: var(--app-theme-green);
border-width: 0px;
}
.me-testi-btn-reset:active,
.me-testi-btn-reset:focus {
padding: 0px !important;
}
/*css for edit button on the testimonial page*/
.testimonial_edit_button {
margin-left: auto;
display: block;
padding: 5px;
}
.testimonial_edit_button a {
color: black;
padding: 12px;
}
.testimonial_edit_button a:hover {
color: white;
}
.sheet-details p {
color: black;
font-size: 0.9rem;
}
.sheet-text {
font-size: 1rem;
color: black;
}
.sheet-text p {
color: black;
}
.sheet-link {
color: var(--app-theme-orange);
margin-left: auto;
cursor: pointer;
}
.sheet-link:hover {
color: var(--app-theme-green);
transition: 0.3s ease-out;
}
.sheet-ghost {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: white;
opacity: 0.8;
z-index: 10;
height: 100vh;
}
.phone-img-view-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 11;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
@media only screen and (min-width: 768px) {
.sheet-text p {
font-size: 1rem;
}
}
@media only screen and (max-width: 767px) {
.sheet-text p {
font-size: 0.8rem !important;
}
.me-testi-btn-reset {
font-size: 16px !important;
}
} | src/components/Pages/StoriesPage/Story Sheet/StorySheet.css | .root-story-sheet {
display: grid;
grid-template-columns: 1fr 4fr;
grid-template-rows: repeat(minmax(150px, auto));
padding: 20px;
border-radius: 6px;
gap: 10px;
margin-bottom: 20px;
height: var(--sheet-height-state);
min-height: 300px;
overflow-y: hidden;
}
.sheet-image {
object-fit: contain;
width: 100%;
height: auto;
border: solid 3px var(--app-theme-orange);
border-radius: 6px;
padding: 2px;
}
.sheet-content-area {
padding: 0px 20px;
}
.sheet-content-area h4 {
padding: 10px 0px;
border: solid 0px #ededed;
border-bottom-width: 2px;
}
.sheet-details {
display: flex;
align-items: center;
justify-content: space-between;
}
.me-testi-btn-reset {
box-shadow: 0 0 0;
margin: 0px;
padding: 0px;
color: var(--app-theme-green) !important;
font-weight: bold;
border-width: 0px;
transform: scale(1) !important;
}
.me-testi-btn-reset:hover {
background-color: white !important;
color: var(--app-theme-green);
border-width: 0px;
}
.me-testi-btn-reset:active,
.me-testi-btn-reset:focus {
padding: 0px !important;
}
/*css for edit button on the testimonial page*/
.testimonial_edit_button {
margin-left: auto;
display: block;
padding: 5px;
}
.testimonial_edit_button a {
color: black;
padding: 12px;
}
.testimonial_edit_button a:hover {
color: white;
}
.sheet-details p {
color: black;
font-size: 0.9rem;
}
.sheet-text {
font-size: 1rem;
color: black;
}
.sheet-text p {
color: black;
}
.sheet-link {
color: var(--app-theme-orange);
margin-left: auto;
cursor: pointer;
}
.sheet-link:hover {
color: var(--app-theme-green);
transition: 0.3s ease-out;
}
.sheet-ghost {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: white;
opacity: 0.8;
z-index: 10;
height: 100vh;
}
.phone-img-view-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 11;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
@media only screen and (min-width: 768px) {
.sheet-text p {
font-size: 1rem;
}
}
@media only screen and (max-width: 767px) {
.sheet-text p {
font-size: 0.8rem !important;
}
.me-testi-btn-reset {
font-size: 16px !important;
}
} | 0.429908 | 0.177882 |
section#main-noticia{
width: 100%;
height: 100vh;
display: flex;
margin-top: 50px;
flex-direction: row;
}
section#main-noticia div#left-conteudo-noticia{
width: 70%;
height: 100%;
display: flex;
flex-direction: column;
}
section#main-noticia div#left-conteudo-noticia div#header-noticia{
height: 10%;
width: 100%;
line-height: 10%;
background-color: #424041;
margin-bottom: 30px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia{
height: 85%;
width: 100%;
display: flex;
flex-direction: row;
gap: 30px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia div#left-conteudo-noticia{
height: 100%;
width: 50%;
background: #424041;
border-radius: 15px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia div#right-conteudo-noticia{
height: 100%;
width: 50%;
background: #424041;
border-radius: 15px;
}
section#main-noticia div#right-noticia{
width: 30%;
height: 100%;
display: flex;
flex-direction: column;
}
section#main-noticia div#right-noticia div#classificacao-header{
height: 10%;
width: 85%;
line-height: 10%;
background-color: #424041;
margin-bottom: 30px;
margin-left: auto;
}
section#main-noticia div#right-noticia div#tabela-classificacao{
width: 85%;
height: 85%;
background-color: #424041;
border-radius: 15px;
margin-left: auto;
}
/* End Medidas */
section#main-noticia div#header-noticia, section#main-noticia div#classificacao-header{
border-left: 5px solid #ffd046;
border-radius: 10px;
}
section#main-noticia div#left-conteudo-noticia div#header-noticia h1, section#main-noticia div#right-noticia div#classificacao-header h1{
text-align: left;
margin-top: 13px;
margin-left: 15px;
}
/* Secção Notícias */
/* Banner 1 */
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#imagem-not{
height: 55%;
width: 100%;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#imagem-not img{
width:100%;
height:100%;
object-fit:cover;
border-radius: 15px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-categoria{
height: 38px;
position: absolute;
text-align: center;
width: 10%;
margin: 25px 0 0 25px;
border-radius: 15px;
border: 0.1px solid rgb(34, 34, 34);
background-color: #ffd046;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-categoria h1{
color: white;
text-align: center;
line-height: 38px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not{
margin: 25px 0 0 25px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-data,
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-title,
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-descri{
padding: 5px;
}
section#main-noticia div#conteudo-noticia h3{
font-style: bold;
}
/* Banner 2 */
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#imagem-not{
height: 55%;
width: 100%;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#imagem-not img{
width:100%;
height:100%;
object-fit:cover;
border-radius: 15px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-categoria{
height: 38px;
position: absolute;
margin: 25px 0 0 25px;
border-radius: 15px;
border: 0.1px solid rgb(34, 34, 34);
background-color: #ffd046;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-categoria h1{
color: white;
text-align: center;
line-height: 38px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not{
margin: 25px 0 0 25px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-data,
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-title,
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-descri{
padding: 5px;
}
/* End Secção Notícias */
/* Secção Classificação */
section#main-noticia div#right-noticia div#tabela-classificacao table
{
height: 100%;
overflow-y:auto;
overflow-x:hidden;
border-radius: 10px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 #D9B51D;
border: 1px solid grey;
}
section#main-noticia div#right-noticia div#tabela-classificacao th,
section#main-noticia div#right-noticia div#tabela-classificacao td{
border-bottom: 1px solid grey;
}
section#main-noticia div#right-noticia div#tabela-classificacao tr:hover{
background-color: rgb(53, 53, 53);
}
section#main-noticia div#right-noticia div#tabela-classificacao table th{
color: #D9B51D;
}
/* End Secção Classificação */ | public/css/noticias.css | section#main-noticia{
width: 100%;
height: 100vh;
display: flex;
margin-top: 50px;
flex-direction: row;
}
section#main-noticia div#left-conteudo-noticia{
width: 70%;
height: 100%;
display: flex;
flex-direction: column;
}
section#main-noticia div#left-conteudo-noticia div#header-noticia{
height: 10%;
width: 100%;
line-height: 10%;
background-color: #424041;
margin-bottom: 30px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia{
height: 85%;
width: 100%;
display: flex;
flex-direction: row;
gap: 30px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia div#left-conteudo-noticia{
height: 100%;
width: 50%;
background: #424041;
border-radius: 15px;
}
section#main-noticia div#left-conteudo-noticia div#conteudo-noticia div#right-conteudo-noticia{
height: 100%;
width: 50%;
background: #424041;
border-radius: 15px;
}
section#main-noticia div#right-noticia{
width: 30%;
height: 100%;
display: flex;
flex-direction: column;
}
section#main-noticia div#right-noticia div#classificacao-header{
height: 10%;
width: 85%;
line-height: 10%;
background-color: #424041;
margin-bottom: 30px;
margin-left: auto;
}
section#main-noticia div#right-noticia div#tabela-classificacao{
width: 85%;
height: 85%;
background-color: #424041;
border-radius: 15px;
margin-left: auto;
}
/* End Medidas */
section#main-noticia div#header-noticia, section#main-noticia div#classificacao-header{
border-left: 5px solid #ffd046;
border-radius: 10px;
}
section#main-noticia div#left-conteudo-noticia div#header-noticia h1, section#main-noticia div#right-noticia div#classificacao-header h1{
text-align: left;
margin-top: 13px;
margin-left: 15px;
}
/* Secção Notícias */
/* Banner 1 */
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#imagem-not{
height: 55%;
width: 100%;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#imagem-not img{
width:100%;
height:100%;
object-fit:cover;
border-radius: 15px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-categoria{
height: 38px;
position: absolute;
text-align: center;
width: 10%;
margin: 25px 0 0 25px;
border-radius: 15px;
border: 0.1px solid rgb(34, 34, 34);
background-color: #ffd046;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-categoria h1{
color: white;
text-align: center;
line-height: 38px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not{
margin: 25px 0 0 25px;
}
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-data,
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-title,
section#main-noticia div#conteudo-noticia div#left-conteudo-noticia div#txt-not div#txt-descri{
padding: 5px;
}
section#main-noticia div#conteudo-noticia h3{
font-style: bold;
}
/* Banner 2 */
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#imagem-not{
height: 55%;
width: 100%;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#imagem-not img{
width:100%;
height:100%;
object-fit:cover;
border-radius: 15px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-categoria{
height: 38px;
position: absolute;
margin: 25px 0 0 25px;
border-radius: 15px;
border: 0.1px solid rgb(34, 34, 34);
background-color: #ffd046;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-categoria h1{
color: white;
text-align: center;
line-height: 38px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not{
margin: 25px 0 0 25px;
}
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-data,
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-title,
section#main-noticia div#conteudo-noticia div#right-conteudo-noticia div#txt-not div#txt-descri{
padding: 5px;
}
/* End Secção Notícias */
/* Secção Classificação */
section#main-noticia div#right-noticia div#tabela-classificacao table
{
height: 100%;
overflow-y:auto;
overflow-x:hidden;
border-radius: 10px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 #D9B51D;
border: 1px solid grey;
}
section#main-noticia div#right-noticia div#tabela-classificacao th,
section#main-noticia div#right-noticia div#tabela-classificacao td{
border-bottom: 1px solid grey;
}
section#main-noticia div#right-noticia div#tabela-classificacao tr:hover{
background-color: rgb(53, 53, 53);
}
section#main-noticia div#right-noticia div#tabela-classificacao table th{
color: #D9B51D;
}
/* End Secção Classificação */ | 0.190611 | 0.047096 |
.navbar-brand img{
max-height: 40px;
}
header .row{
min-height:70vh;
background-image: url(../css/img/hôtels-luxe-afrique.jpg);
align-items: center;
background-attachment: fixed;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
header .reservation{
background-color: rgba(0, 0, 0, 0.5);
min-height: 70vh;
display: flex;
align-items: center;
font-family: 'Montserrat', sans-serif;
}
#hotel{
position: absolute;
z-index: 1;
}
#hotel h1{
padding-top: 22vh;
color: wheat;
font-family: 'Indie Flower', cursive;
}
#experience{
position: absolute;
z-index: 1;
margin-top: 130px;
}
#experience h1{
display: flex;
/*min-height:10vh;*/
color: wheat;
align-items: flex-end;
justify-content: flex-end;
font-family: 'Ballet', cursive;
}
@media (max-width: 768px) {
#experience h1{
display: none;
}
}
#presentation .media span{
font-size: 30px;
color: #9b7f4b;
width: 4rem;
text-align: center;
}
#presentation .media .media-body{
margin-left: 4vh;
}
#presentation .media {
margin-top: 3rem;
}
#presentation .media {
padding-top: .5rem, 1rem;
transition: all .9 ease-in-out ;
cursor: pointer;
border-radius: 3px;
}
#presentation .media:hover {
background-color: #b4b3b1;
}
.fontchambre{
background-image: url(../css/img/image-etoiles-comment.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
min-height:calc(100vh - 50px);
}
.avisClient{
min-height: calc(100vh - 50px);
background-color: #b4b3b1;
}
.avisClient span{
font-size: 5rem;
color: #17a2b8;
}
.avisClient h5{
font-size: 2rem;
color: #888888;
}
#contact .row{
min-height: calc(100vh -50px);
}
#contact{
background-image: url(../css/img/champagne2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: calc(100vh - 50px);
}
.formcontact{
background-color: rgba(255, 255, 255, 0.7);
padding: 2rem 1rem;
margin-top: 15vh;
}
footer{
background-color: rgba(0, 0, 0, 0.8);
color: #9999;
padding-bottom: 1.5rem;
padding-top: 2rem;
}
footer a{
color: #9999;
font-size: 2rem;
transition: all .2s ease-in-out;
}
footer a:hover{
color: #fff;
font-size: 2rem;
text-decoration: none;
} | public/css/style.css | .navbar-brand img{
max-height: 40px;
}
header .row{
min-height:70vh;
background-image: url(../css/img/hôtels-luxe-afrique.jpg);
align-items: center;
background-attachment: fixed;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
header .reservation{
background-color: rgba(0, 0, 0, 0.5);
min-height: 70vh;
display: flex;
align-items: center;
font-family: 'Montserrat', sans-serif;
}
#hotel{
position: absolute;
z-index: 1;
}
#hotel h1{
padding-top: 22vh;
color: wheat;
font-family: 'Indie Flower', cursive;
}
#experience{
position: absolute;
z-index: 1;
margin-top: 130px;
}
#experience h1{
display: flex;
/*min-height:10vh;*/
color: wheat;
align-items: flex-end;
justify-content: flex-end;
font-family: 'Ballet', cursive;
}
@media (max-width: 768px) {
#experience h1{
display: none;
}
}
#presentation .media span{
font-size: 30px;
color: #9b7f4b;
width: 4rem;
text-align: center;
}
#presentation .media .media-body{
margin-left: 4vh;
}
#presentation .media {
margin-top: 3rem;
}
#presentation .media {
padding-top: .5rem, 1rem;
transition: all .9 ease-in-out ;
cursor: pointer;
border-radius: 3px;
}
#presentation .media:hover {
background-color: #b4b3b1;
}
.fontchambre{
background-image: url(../css/img/image-etoiles-comment.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
min-height:calc(100vh - 50px);
}
.avisClient{
min-height: calc(100vh - 50px);
background-color: #b4b3b1;
}
.avisClient span{
font-size: 5rem;
color: #17a2b8;
}
.avisClient h5{
font-size: 2rem;
color: #888888;
}
#contact .row{
min-height: calc(100vh -50px);
}
#contact{
background-image: url(../css/img/champagne2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: calc(100vh - 50px);
}
.formcontact{
background-color: rgba(255, 255, 255, 0.7);
padding: 2rem 1rem;
margin-top: 15vh;
}
footer{
background-color: rgba(0, 0, 0, 0.8);
color: #9999;
padding-bottom: 1.5rem;
padding-top: 2rem;
}
footer a{
color: #9999;
font-size: 2rem;
transition: all .2s ease-in-out;
}
footer a:hover{
color: #fff;
font-size: 2rem;
text-decoration: none;
} | 0.307462 | 0.083553 |
[ng\:cloak], [ng-cloak], .ng-cloak {
display: none !important;
}
.inline {
display: inline;
}
#top-panel {
background-color: greenyellow;
padding: 10px;
border: 1px solid black
}
#top-panel h2 {
margin: 0;
}
.yellow-background {
background-color: #ffff00 !important;
}
.green-box {
padding: 20px;
border: 1px solid black;
border-radius: 10px;
background-color: greenyellow;
margin-bottom: 10px;
}
.green-box hr {
border-color: black;
}
.white-box {
background-color: rgba(255,255,255, 0.5);
border: 1px dotted limegreen;
}
#navigation, #main-content {
margin-top: 10px;
}
#navigation-items, #category-items, #town-items, #status-filter-options {
list-style-type: none;
padding: 0;
font-size: 1.3em;
word-wrap: break-word;
}
#navigation-items .active, #category-items .active, #town-items .active, #status-filter-options .active {
background-color: #FFB732;
padding: 5px;
border-radius: 30px;
}
.category-item:hover, .town-item:hover {
font-weight: bold;
text-decoration: underline;
}
#please-login-panel {
margin-bottom: 5px;
}
#please-login-panel div {
margin-bottom: 10px;
}
#please-login-panel div:last-child {
margin-bottom: 0;
}
#please-login-panel button {
width: 85%;
}
.ad-picture {
width: 100px;
height: 120px;
margin: 20px 0;
}
.ad-description {
padding: 10px;
}
.owner-info>div, .ad-info>div {
margin-top: 5px;
}
.ad-description, .owner-name, .owner-email, .owner-phone, .ad-category, .ad-town, .owner-username {
word-wrap: break-word;
text-align: center;
}
.owner-name, .owner-email, .owner-phone, .ad-category, .ad-town, .owner-username {
display: inline-block;
padding: 5px 0;
width: 40%;
}
.paging-buttons {
margin-bottom: 10px;
}
.paging-buttons button {
margin-right: 5px;
}
.paging-buttons button:last-child {
margin-right: 0;
}
#login-form button {
margin-top: 10px;
}
#preview-image {
width: 200px;
height: 250px;
padding: 10px;
}
.user-ads-left-column {
border-right: 1px solid #008000;
}
.ad-status {
padding: 5px 0;
border-radius: 5px;
}
.user-ad-buttons>div>div {
margin-top: 5px;
}
.admin-ad-buttons button, .admin-ad-buttons a {
margin-top: 5px;
margin-right: 5px;
}
#users-table, #categories-table, #towns-table {
margin: 0;
}
#add-new-category-button, #add-new-town-button {
margin: 10px 0;
} | css/app.css | [ng\:cloak], [ng-cloak], .ng-cloak {
display: none !important;
}
.inline {
display: inline;
}
#top-panel {
background-color: greenyellow;
padding: 10px;
border: 1px solid black
}
#top-panel h2 {
margin: 0;
}
.yellow-background {
background-color: #ffff00 !important;
}
.green-box {
padding: 20px;
border: 1px solid black;
border-radius: 10px;
background-color: greenyellow;
margin-bottom: 10px;
}
.green-box hr {
border-color: black;
}
.white-box {
background-color: rgba(255,255,255, 0.5);
border: 1px dotted limegreen;
}
#navigation, #main-content {
margin-top: 10px;
}
#navigation-items, #category-items, #town-items, #status-filter-options {
list-style-type: none;
padding: 0;
font-size: 1.3em;
word-wrap: break-word;
}
#navigation-items .active, #category-items .active, #town-items .active, #status-filter-options .active {
background-color: #FFB732;
padding: 5px;
border-radius: 30px;
}
.category-item:hover, .town-item:hover {
font-weight: bold;
text-decoration: underline;
}
#please-login-panel {
margin-bottom: 5px;
}
#please-login-panel div {
margin-bottom: 10px;
}
#please-login-panel div:last-child {
margin-bottom: 0;
}
#please-login-panel button {
width: 85%;
}
.ad-picture {
width: 100px;
height: 120px;
margin: 20px 0;
}
.ad-description {
padding: 10px;
}
.owner-info>div, .ad-info>div {
margin-top: 5px;
}
.ad-description, .owner-name, .owner-email, .owner-phone, .ad-category, .ad-town, .owner-username {
word-wrap: break-word;
text-align: center;
}
.owner-name, .owner-email, .owner-phone, .ad-category, .ad-town, .owner-username {
display: inline-block;
padding: 5px 0;
width: 40%;
}
.paging-buttons {
margin-bottom: 10px;
}
.paging-buttons button {
margin-right: 5px;
}
.paging-buttons button:last-child {
margin-right: 0;
}
#login-form button {
margin-top: 10px;
}
#preview-image {
width: 200px;
height: 250px;
padding: 10px;
}
.user-ads-left-column {
border-right: 1px solid #008000;
}
.ad-status {
padding: 5px 0;
border-radius: 5px;
}
.user-ad-buttons>div>div {
margin-top: 5px;
}
.admin-ad-buttons button, .admin-ad-buttons a {
margin-top: 5px;
margin-right: 5px;
}
#users-table, #categories-table, #towns-table {
margin: 0;
}
#add-new-category-button, #add-new-town-button {
margin: 10px 0;
} | 0.221772 | 0.143038 |
width:234px;
margin:auto;
}
.fountainTextG{
color:rgb(0,0,0);
font-family:Arial;
font-size:24px;
text-decoration:none;
font-weight:normal;
font-style:normal;
float:left;
animation-name:bounce_fountainTextG;
-o-animation-name:bounce_fountainTextG;
-ms-animation-name:bounce_fountainTextG;
-webkit-animation-name:bounce_fountainTextG;
-moz-animation-name:bounce_fountainTextG;
animation-duration:2.09s;
-o-animation-duration:2.09s;
-ms-animation-duration:2.09s;
-webkit-animation-duration:2.09s;
-moz-animation-duration:2.09s;
animation-iteration-count:infinite;
-o-animation-iteration-count:infinite;
-ms-animation-iteration-count:infinite;
-webkit-animation-iteration-count:infinite;
-moz-animation-iteration-count:infinite;
animation-direction:normal;
-o-animation-direction:normal;
-ms-animation-direction:normal;
-webkit-animation-direction:normal;
-moz-animation-direction:normal;
transform:scale(.5);
-o-transform:scale(.5);
-ms-transform:scale(.5);
-webkit-transform:scale(.5);
-moz-transform:scale(.5);
}#fountainTextG_1{
animation-delay:0.75s;
-o-animation-delay:0.75s;
-ms-animation-delay:0.75s;
-webkit-animation-delay:0.75s;
-moz-animation-delay:0.75s;
}
#fountainTextG_2{
animation-delay:0.9s;
-o-animation-delay:0.9s;
-ms-animation-delay:0.9s;
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
}
#fountainTextG_3{
animation-delay:1.05s;
-o-animation-delay:1.05s;
-ms-animation-delay:1.05s;
-webkit-animation-delay:1.05s;
-moz-animation-delay:1.05s;
}
#fountainTextG_4{
animation-delay:1.2s;
-o-animation-delay:1.2s;
-ms-animation-delay:1.2s;
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
}
#fountainTextG_5{
animation-delay:1.35s;
-o-animation-delay:1.35s;
-ms-animation-delay:1.35s;
-webkit-animation-delay:1.35s;
-moz-animation-delay:1.35s;
}
#fountainTextG_6{
animation-delay:1.5s;
-o-animation-delay:1.5s;
-ms-animation-delay:1.5s;
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
}
#fountainTextG_7{
animation-delay:1.64s;
-o-animation-delay:1.64s;
-ms-animation-delay:1.64s;
-webkit-animation-delay:1.64s;
-moz-animation-delay:1.64s;
}
#fountainTextG_8{
animation-delay:1.79s;
-o-animation-delay:1.79s;
-ms-animation-delay:1.79s;
-webkit-animation-delay:1.79s;
-moz-animation-delay:1.79s;
}
#fountainTextG_9{
animation-delay:1.94s;
-o-animation-delay:1.94s;
-ms-animation-delay:1.94s;
-webkit-animation-delay:1.94s;
-moz-animation-delay:1.94s;
}
#fountainTextG_10{
animation-delay:2.09s;
-o-animation-delay:2.09s;
-ms-animation-delay:2.09s;
-webkit-animation-delay:2.09s;
-moz-animation-delay:2.09s;
}
@keyframes bounce_fountainTextG{
0%{
transform:scale(1);
color:rgb(0,0,0);
}
100%{
transform:scale(.5);
color:rgb(255,255,255);
}
}
@-o-keyframes bounce_fountainTextG{
0%{
-o-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-o-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-ms-keyframes bounce_fountainTextG{
0%{
-ms-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-ms-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-webkit-keyframes bounce_fountainTextG{
0%{
-webkit-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-webkit-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-moz-keyframes bounce_fountainTextG{
0%{
-moz-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-moz-transform:scale(.5);
color:rgb(255,255,255);
}
} | gev/css/spinner.css | width:234px;
margin:auto;
}
.fountainTextG{
color:rgb(0,0,0);
font-family:Arial;
font-size:24px;
text-decoration:none;
font-weight:normal;
font-style:normal;
float:left;
animation-name:bounce_fountainTextG;
-o-animation-name:bounce_fountainTextG;
-ms-animation-name:bounce_fountainTextG;
-webkit-animation-name:bounce_fountainTextG;
-moz-animation-name:bounce_fountainTextG;
animation-duration:2.09s;
-o-animation-duration:2.09s;
-ms-animation-duration:2.09s;
-webkit-animation-duration:2.09s;
-moz-animation-duration:2.09s;
animation-iteration-count:infinite;
-o-animation-iteration-count:infinite;
-ms-animation-iteration-count:infinite;
-webkit-animation-iteration-count:infinite;
-moz-animation-iteration-count:infinite;
animation-direction:normal;
-o-animation-direction:normal;
-ms-animation-direction:normal;
-webkit-animation-direction:normal;
-moz-animation-direction:normal;
transform:scale(.5);
-o-transform:scale(.5);
-ms-transform:scale(.5);
-webkit-transform:scale(.5);
-moz-transform:scale(.5);
}#fountainTextG_1{
animation-delay:0.75s;
-o-animation-delay:0.75s;
-ms-animation-delay:0.75s;
-webkit-animation-delay:0.75s;
-moz-animation-delay:0.75s;
}
#fountainTextG_2{
animation-delay:0.9s;
-o-animation-delay:0.9s;
-ms-animation-delay:0.9s;
-webkit-animation-delay:0.9s;
-moz-animation-delay:0.9s;
}
#fountainTextG_3{
animation-delay:1.05s;
-o-animation-delay:1.05s;
-ms-animation-delay:1.05s;
-webkit-animation-delay:1.05s;
-moz-animation-delay:1.05s;
}
#fountainTextG_4{
animation-delay:1.2s;
-o-animation-delay:1.2s;
-ms-animation-delay:1.2s;
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
}
#fountainTextG_5{
animation-delay:1.35s;
-o-animation-delay:1.35s;
-ms-animation-delay:1.35s;
-webkit-animation-delay:1.35s;
-moz-animation-delay:1.35s;
}
#fountainTextG_6{
animation-delay:1.5s;
-o-animation-delay:1.5s;
-ms-animation-delay:1.5s;
-webkit-animation-delay:1.5s;
-moz-animation-delay:1.5s;
}
#fountainTextG_7{
animation-delay:1.64s;
-o-animation-delay:1.64s;
-ms-animation-delay:1.64s;
-webkit-animation-delay:1.64s;
-moz-animation-delay:1.64s;
}
#fountainTextG_8{
animation-delay:1.79s;
-o-animation-delay:1.79s;
-ms-animation-delay:1.79s;
-webkit-animation-delay:1.79s;
-moz-animation-delay:1.79s;
}
#fountainTextG_9{
animation-delay:1.94s;
-o-animation-delay:1.94s;
-ms-animation-delay:1.94s;
-webkit-animation-delay:1.94s;
-moz-animation-delay:1.94s;
}
#fountainTextG_10{
animation-delay:2.09s;
-o-animation-delay:2.09s;
-ms-animation-delay:2.09s;
-webkit-animation-delay:2.09s;
-moz-animation-delay:2.09s;
}
@keyframes bounce_fountainTextG{
0%{
transform:scale(1);
color:rgb(0,0,0);
}
100%{
transform:scale(.5);
color:rgb(255,255,255);
}
}
@-o-keyframes bounce_fountainTextG{
0%{
-o-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-o-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-ms-keyframes bounce_fountainTextG{
0%{
-ms-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-ms-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-webkit-keyframes bounce_fountainTextG{
0%{
-webkit-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-webkit-transform:scale(.5);
color:rgb(255,255,255);
}
}
@-moz-keyframes bounce_fountainTextG{
0%{
-moz-transform:scale(1);
color:rgb(0,0,0);
}
100%{
-moz-transform:scale(.5);
color:rgb(255,255,255);
}
} | 0.223038 | 0.067731 |
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 1400px;
margin: 0px;
font-family: 'Basic', sans-serif;;
color: #6a6a6a;
}
h1 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
font-size: 135.48px;
margin-top: -10px;
}
h2 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
font-size: 61.69px;
margin-bottom: 10px;
}
h3 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
float: right;
margin-left: 10px;
margin-top: 15px;
font-size: 30px;
}
h4 {
font-family: 'Lato', sans-serif;
font-weight: 500;
color: white;
margin-top: 15px;
}
/*h6 {
overflow: hidden;
}*/
a {
text-decoration: none;
color: white;
font-family: 'Lato', sans-serif;
}
.button-div p {
font-family: cursive;
color: white;
margin-top: 25px;
}
.paragraphs h6 {
/*text-align: center;*/
/*position: absolute;*/
margin-top: 120px;
font-size: 17px;
font-weight: lighter;
font-family: 'Lato', sans-serif;
}
.paragraphs p {
/*text-align: center;*/
/*position: absolute;*/
margin-top: -30px;
}
.paragraphs {
text-align: center;
width: 300px;
float: left;
margin: 50px;
}
.top {
background-image: url("https://d2rdrr51ez8te0.cloudfront.net/hero-posters/fields.jpg");
height: 686px;
}
.bottom {
background-color: white;
height: 600px;
padding: 60px;
}
.bottom-paragraphs {
background-color: white;
}
.hero {
width: 36px;
height: 18px;
margin-top: 80px;
margin-left: 691px;
}
.left-divider {
height: 18px;
background-color: white;
width: 691px;
margin-top: 80px;
position: absolute;
}
.right-divider {
height: 18px;
background-color: white;
width: 691px;
margin-top: 80px;
position: absolute;
margin-left: 727px;
}
.logo {
position: absolute;
margin-left: 75px;
margin-top: 25px;
}
.image {
width: 70px;
height: 70px;
}
.title-container {
width: 1162px;
margin: auto;
padding-top: 190px;
text-align: center;
}
.nav-area {
float: right;
margin-top: 40px;
font-size: 15px;
margin-right: 100px;
}
.button-div {
width: 232px;
height: 49px;
background-color: rgba(231,137,112,0.4);
text-align: center;
margin: auto;
border: 4px solid;
border-color: rgba(231,137,112,0.4);
border-radius: 2px;
margin-top: -40px;
}
.button-div-two {
height: 41px;
width: 224px;
background-color: rgba(231,137,112,1);
border-radius: 2px;
padding: 10px;
}
.icon-circle {
height: 100px;
width: 100px;
border: 2px solid;
border-color: grey;
border-radius: 50%;
margin-left: 100px;
}
.paragraph-group {
margin-left: 55px;
}
#registry, #login, #signup {
margin-left: 30px;
}
#categories {
background-image: url("../img/layers.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 1100px;*/
}
#pics {
background-image: url("../img/photo-camera.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 100px;*/
}
#gifts {
background-image: url("../img/monitor.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 600px;*/
} | styles/styles.css | *,
*::before,
*::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 1400px;
margin: 0px;
font-family: 'Basic', sans-serif;;
color: #6a6a6a;
}
h1 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
font-size: 135.48px;
margin-top: -10px;
}
h2 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
font-size: 61.69px;
margin-bottom: 10px;
}
h3 {
font-family: 'Lato', sans-serif;
font-weight: 200;
color: white;
float: right;
margin-left: 10px;
margin-top: 15px;
font-size: 30px;
}
h4 {
font-family: 'Lato', sans-serif;
font-weight: 500;
color: white;
margin-top: 15px;
}
/*h6 {
overflow: hidden;
}*/
a {
text-decoration: none;
color: white;
font-family: 'Lato', sans-serif;
}
.button-div p {
font-family: cursive;
color: white;
margin-top: 25px;
}
.paragraphs h6 {
/*text-align: center;*/
/*position: absolute;*/
margin-top: 120px;
font-size: 17px;
font-weight: lighter;
font-family: 'Lato', sans-serif;
}
.paragraphs p {
/*text-align: center;*/
/*position: absolute;*/
margin-top: -30px;
}
.paragraphs {
text-align: center;
width: 300px;
float: left;
margin: 50px;
}
.top {
background-image: url("https://d2rdrr51ez8te0.cloudfront.net/hero-posters/fields.jpg");
height: 686px;
}
.bottom {
background-color: white;
height: 600px;
padding: 60px;
}
.bottom-paragraphs {
background-color: white;
}
.hero {
width: 36px;
height: 18px;
margin-top: 80px;
margin-left: 691px;
}
.left-divider {
height: 18px;
background-color: white;
width: 691px;
margin-top: 80px;
position: absolute;
}
.right-divider {
height: 18px;
background-color: white;
width: 691px;
margin-top: 80px;
position: absolute;
margin-left: 727px;
}
.logo {
position: absolute;
margin-left: 75px;
margin-top: 25px;
}
.image {
width: 70px;
height: 70px;
}
.title-container {
width: 1162px;
margin: auto;
padding-top: 190px;
text-align: center;
}
.nav-area {
float: right;
margin-top: 40px;
font-size: 15px;
margin-right: 100px;
}
.button-div {
width: 232px;
height: 49px;
background-color: rgba(231,137,112,0.4);
text-align: center;
margin: auto;
border: 4px solid;
border-color: rgba(231,137,112,0.4);
border-radius: 2px;
margin-top: -40px;
}
.button-div-two {
height: 41px;
width: 224px;
background-color: rgba(231,137,112,1);
border-radius: 2px;
padding: 10px;
}
.icon-circle {
height: 100px;
width: 100px;
border: 2px solid;
border-color: grey;
border-radius: 50%;
margin-left: 100px;
}
.paragraph-group {
margin-left: 55px;
}
#registry, #login, #signup {
margin-left: 30px;
}
#categories {
background-image: url("../img/layers.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 1100px;*/
}
#pics {
background-image: url("../img/photo-camera.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 100px;*/
}
#gifts {
background-image: url("../img/monitor.png");
background-repeat: no-repeat;
background-position: center;
position: absolute;
/*margin-left: 600px;*/
} | 0.4231 | 0.066085 |
.col-md-4.mb-5.mb-lg-0 {
margin: auto;
}
.bg-primary {
background-color: #B81D18!important;
}
.bg-secondary {
background-color: #202020!important;
}
.footer {
background-color: #B81D18;
}
.copyright {
background-color: #202020;
}
hr.star-light:after {
color: #fff;
background-color: #B81D18;
}
.btn-primary {
background-color: #B81D18;
border-color: #B81D18;
}
#mainNav .navbar-nav li.nav-item a.nav-link:hover {
color: #B81D18;
}
a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
background-color: #004687!important;
}
.portfolio .portfolio-item .portfolio-item-caption {
background-color: #B81D18;
border-radius: 30px;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
background-color: #202020;
border-color: #202020;
}
#mainNav .navbar-nav li.nav-item a.nav-link.active {
color: #B81D18;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link.active {
color: #fff;
background: #B81D18;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link.active:active, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
color: #fff;
background: #B81D18;
}
a {
color: #B81D18;
}
.about-me-img{
height: 100px;
width: 100px;
display: block;
margin-left: auto;
margin-right: auto;
}
a:focus, a:hover, a:active {
color: #202020;
}
.floating-label-form-group-with-value label {
color: #202020;
}
.floating-label-form-group-with-focus label {
color: #202020;
}
.portfolio .portfolio-item {
border: 0.75px solid #202020;
border-radius: 30px;
}
.col-md-4 {
margin: auto;
margin-bottom: 10%
}
p.lead.mb-0 {
text-align: center;
}
.github-btn{
font-size: 70px;
color: black;
}
.github-btn:hover{
opacity: 0.5;
}
hr.light,
hr.dark{
padding: 0;
text-align: center;
border: none;
border-top: solid 0.25rem;
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}
hr.light {
border-color: #fff;
}
hr.dark {
border-color: #2C3E50;
} | src/static/vendor/bootstrap/css/mystyles.css | .col-md-4.mb-5.mb-lg-0 {
margin: auto;
}
.bg-primary {
background-color: #B81D18!important;
}
.bg-secondary {
background-color: #202020!important;
}
.footer {
background-color: #B81D18;
}
.copyright {
background-color: #202020;
}
hr.star-light:after {
color: #fff;
background-color: #B81D18;
}
.btn-primary {
background-color: #B81D18;
border-color: #B81D18;
}
#mainNav .navbar-nav li.nav-item a.nav-link:hover {
color: #B81D18;
}
a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
background-color: #004687!important;
}
.portfolio .portfolio-item .portfolio-item-caption {
background-color: #B81D18;
border-radius: 30px;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
background-color: #202020;
border-color: #202020;
}
#mainNav .navbar-nav li.nav-item a.nav-link.active {
color: #B81D18;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link.active {
color: #fff;
background: #B81D18;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link.active:active, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
color: #fff;
background: #B81D18;
}
a {
color: #B81D18;
}
.about-me-img{
height: 100px;
width: 100px;
display: block;
margin-left: auto;
margin-right: auto;
}
a:focus, a:hover, a:active {
color: #202020;
}
.floating-label-form-group-with-value label {
color: #202020;
}
.floating-label-form-group-with-focus label {
color: #202020;
}
.portfolio .portfolio-item {
border: 0.75px solid #202020;
border-radius: 30px;
}
.col-md-4 {
margin: auto;
margin-bottom: 10%
}
p.lead.mb-0 {
text-align: center;
}
.github-btn{
font-size: 70px;
color: black;
}
.github-btn:hover{
opacity: 0.5;
}
hr.light,
hr.dark{
padding: 0;
text-align: center;
border: none;
border-top: solid 0.25rem;
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}
hr.light {
border-color: #fff;
}
hr.dark {
border-color: #2C3E50;
} | 0.482429 | 0.093554 |
:root {
--color-primary: #f05f40;
--color-dark: #212529;
--color-secondary: #555555;
--color-faded: rgba(255, 255, 255, 0.7);
--font-sans: "Open Sans", "Helvetica Neue", Arial, sans-serif;
--font-serif: "Merriweather", "Helvetica Neue", Arial, sans-serif;
}
.bg-secondary {
background-color: #555555 !important;
}
.bg-dark-grey {
background-color: #484848;
}
img.navbar-logo {
max-height: 60px;
}
.section-small {
padding: 4rem 0;
}
.link {
font-family: var(--font-sans);
font-weight: bolder;
/* text-transform: uppercase; */
color: var(--color-primary);
}
.link:hover,
.link:active {
color: white;
}
.link-light:hover,
.link-light:active {
color: var(--color-dark);
}
/* Only override the laptop colors.
Don't provide a highlight for #page-top link */
@media only screen and (min-width: 992px) {
#mainNav .navbar-brand {
color: white;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
color: white;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link:hover,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
color: #f05f40;
}
}
#paypal-button {
color: white;
background-color: #f05f40;
text-transform: none;
}
/* Content above doesn't have margins applied */
.btn-schedule {
margin-top: 20px;
}
header.masthead {
/* background-image: url("../img/maple-cover-lossy.jpg"); */
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.1) 0%,
rgba(0, 0, 0, 0.1) 100%
),
url("../img/community-garden-cover.jpg");
}
div.schedule-card-grid {
display: grid;
grid-template-columns: 1fr;
grid-template-areas:
"su"
"tu"
"we";
grid-row-gap: 30px;
margin: 20px 10px 20px 10px;
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
div.schedule-card-grid {
grid-template-columns: 1fr 1fr;
grid-template-areas:
"su . "
"tu we";
grid-column-gap: 30px;
}
}
@media only screen and (min-width: 992px) {
div.schedule-card-grid {
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas: "su tu we";
grid-column-gap: 30px;
}
}
div.schedule-card {
/* background-color: #bfbfbf; */
background-color: rgba(255, 255, 255, 0.9);
/* background-color: #F05F40; */
border-radius: 15px;
padding: 10px;
box-shadow: -3px 7px 9px 2px rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.schedule-label {
margin: 0;
}
.schedule-label-help-text {
line-height: 1;
font-size: 85%;
font-family: var(--font-sans);
color: var(--color-faded);
}
div.schedule-card.sunday {
grid-area: su;
}
div.schedule-card.tuesday {
grid-area: tu;
}
div.schedule-card.wednesday {
grid-area: we;
}
div.schedule-card.thursday {
grid-area: th;
}
div.schedule-grid {
display: grid;
/* grid-template-columns: 0.15fr 1fr; */
grid-template-columns: max-content auto;
grid-template-rows: auto;
grid-row-gap: 5px;
grid-column-gap: 15px;
padding: 0 10px 0 10px;
}
div.schedule-grid.sunday {
grid-template-areas:
"time-11-5 food"
"time-12-5 bible"
"time-13-5 bible";
}
div.schedule-grid.tuesday,
div.schedule-grid.thursday {
grid-template-areas:
"time-15 tut"
"time-16 tut"
"time-17 tut"
"time-18 . ";
}
div.schedule-grid.wednesday {
grid-template-areas:
"time-15 tut"
"time-16 tut"
"time-17 tut"
"time-17-5 food"
"time-18 food"
"time-18-5 bible"
"time-19 bible"
"time-19-5 bible";
}
.event {
border-radius: 15px;
padding-left: 10px;
/* box-shadow value from: https://www.w3schools.com/css/css3_shadows.asp */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.event-tutoring {
grid-area: tut;
background-color: #f05f40;
/* background-color: #555555; */
color: white;
}
.event-food {
grid-area: food;
/* background-color: white; */
/* background-color: #bfbfbf; */
background-color: var(--color-secondary);
color: white;
}
.event-bible {
grid-area: bible;
background-color: #222222;
color: white;
}
/* In contact section, change icons wrapped in <a> tags back to black */
section#contact a i {
color: #222;
}
.tab.active-tab {
background-color: #f05f40; /* FIXME: SCSS bg-primary */
color: white;
border-radius: 5px;
}
.tab.active-tab p {
color: #222;
}
.tab.active-tab i {
color: rgba(255, 255, 255, 0.7); /* FIXME: SCSS text-faded */
}
.tab-content {
border-radius: 10px;
animation: fadeEffect 1s;
}
@keyframes fadeEffect {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Same as .text-... but without !important */
.alt-primary {
color: #f05f40;
}
.alt-muted {
color: #6c757d;
}
.alt-faded {
color: rgba(255, 255, 255, 0.7);
}
/* Limit width of Google Map Embed */
.google-map {
max-width: 700px;
}
/* Text Disappears at Bootstrap -md */
@media only screen and (max-width: 767px) {
.tab p {
display: none;
}
}
/* Scale icons down for Bootstrap -md & -sm but not -xs */
@media only screen and (max-width: 767px) {
i.icon-font {
font-size: 3rem;
}
i.fa-angle-down {
font-size: 2rem;
}
}
/* Scale text size down */
@media only screen and (min-width: 500px) and (max-width: 767px) {
h3.icon-font {
font-size: 1.2rem; /* Bootstrap -sm */
}
}
@media only screen and (min-width: 369px) and (max-width: 499px) {
h3.icon-font {
font-size: 1rem; /* Text overlaps */
}
}
@media only screen and (max-width: 370px) {
h3.icon-font {
font-size: 0.8rem; /* Text overlaps again */
}
}
/* Unhighlight accordion links */
button.collapsed {
background-color: transparent;
}
#accordion-tutoring .row.card-header {
margin-left: 0;
margin-right: 0;
}
.responsive-img {
object-fit: cover;
width: 100%;
height: auto;
border: 1px white solid;
border-radius: 5px;
} | css/custom.css | :root {
--color-primary: #f05f40;
--color-dark: #212529;
--color-secondary: #555555;
--color-faded: rgba(255, 255, 255, 0.7);
--font-sans: "Open Sans", "Helvetica Neue", Arial, sans-serif;
--font-serif: "Merriweather", "Helvetica Neue", Arial, sans-serif;
}
.bg-secondary {
background-color: #555555 !important;
}
.bg-dark-grey {
background-color: #484848;
}
img.navbar-logo {
max-height: 60px;
}
.section-small {
padding: 4rem 0;
}
.link {
font-family: var(--font-sans);
font-weight: bolder;
/* text-transform: uppercase; */
color: var(--color-primary);
}
.link:hover,
.link:active {
color: white;
}
.link-light:hover,
.link-light:active {
color: var(--color-dark);
}
/* Only override the laptop colors.
Don't provide a highlight for #page-top link */
@media only screen and (min-width: 992px) {
#mainNav .navbar-brand {
color: white;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus {
color: white;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link:hover,
#mainNav .navbar-nav > li.nav-item > a.nav-link:focus:hover {
color: #f05f40;
}
}
#paypal-button {
color: white;
background-color: #f05f40;
text-transform: none;
}
/* Content above doesn't have margins applied */
.btn-schedule {
margin-top: 20px;
}
header.masthead {
/* background-image: url("../img/maple-cover-lossy.jpg"); */
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.1) 0%,
rgba(0, 0, 0, 0.1) 100%
),
url("../img/community-garden-cover.jpg");
}
div.schedule-card-grid {
display: grid;
grid-template-columns: 1fr;
grid-template-areas:
"su"
"tu"
"we";
grid-row-gap: 30px;
margin: 20px 10px 20px 10px;
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
div.schedule-card-grid {
grid-template-columns: 1fr 1fr;
grid-template-areas:
"su . "
"tu we";
grid-column-gap: 30px;
}
}
@media only screen and (min-width: 992px) {
div.schedule-card-grid {
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas: "su tu we";
grid-column-gap: 30px;
}
}
div.schedule-card {
/* background-color: #bfbfbf; */
background-color: rgba(255, 255, 255, 0.9);
/* background-color: #F05F40; */
border-radius: 15px;
padding: 10px;
box-shadow: -3px 7px 9px 2px rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.schedule-label {
margin: 0;
}
.schedule-label-help-text {
line-height: 1;
font-size: 85%;
font-family: var(--font-sans);
color: var(--color-faded);
}
div.schedule-card.sunday {
grid-area: su;
}
div.schedule-card.tuesday {
grid-area: tu;
}
div.schedule-card.wednesday {
grid-area: we;
}
div.schedule-card.thursday {
grid-area: th;
}
div.schedule-grid {
display: grid;
/* grid-template-columns: 0.15fr 1fr; */
grid-template-columns: max-content auto;
grid-template-rows: auto;
grid-row-gap: 5px;
grid-column-gap: 15px;
padding: 0 10px 0 10px;
}
div.schedule-grid.sunday {
grid-template-areas:
"time-11-5 food"
"time-12-5 bible"
"time-13-5 bible";
}
div.schedule-grid.tuesday,
div.schedule-grid.thursday {
grid-template-areas:
"time-15 tut"
"time-16 tut"
"time-17 tut"
"time-18 . ";
}
div.schedule-grid.wednesday {
grid-template-areas:
"time-15 tut"
"time-16 tut"
"time-17 tut"
"time-17-5 food"
"time-18 food"
"time-18-5 bible"
"time-19 bible"
"time-19-5 bible";
}
.event {
border-radius: 15px;
padding-left: 10px;
/* box-shadow value from: https://www.w3schools.com/css/css3_shadows.asp */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.event-tutoring {
grid-area: tut;
background-color: #f05f40;
/* background-color: #555555; */
color: white;
}
.event-food {
grid-area: food;
/* background-color: white; */
/* background-color: #bfbfbf; */
background-color: var(--color-secondary);
color: white;
}
.event-bible {
grid-area: bible;
background-color: #222222;
color: white;
}
/* In contact section, change icons wrapped in <a> tags back to black */
section#contact a i {
color: #222;
}
.tab.active-tab {
background-color: #f05f40; /* FIXME: SCSS bg-primary */
color: white;
border-radius: 5px;
}
.tab.active-tab p {
color: #222;
}
.tab.active-tab i {
color: rgba(255, 255, 255, 0.7); /* FIXME: SCSS text-faded */
}
.tab-content {
border-radius: 10px;
animation: fadeEffect 1s;
}
@keyframes fadeEffect {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Same as .text-... but without !important */
.alt-primary {
color: #f05f40;
}
.alt-muted {
color: #6c757d;
}
.alt-faded {
color: rgba(255, 255, 255, 0.7);
}
/* Limit width of Google Map Embed */
.google-map {
max-width: 700px;
}
/* Text Disappears at Bootstrap -md */
@media only screen and (max-width: 767px) {
.tab p {
display: none;
}
}
/* Scale icons down for Bootstrap -md & -sm but not -xs */
@media only screen and (max-width: 767px) {
i.icon-font {
font-size: 3rem;
}
i.fa-angle-down {
font-size: 2rem;
}
}
/* Scale text size down */
@media only screen and (min-width: 500px) and (max-width: 767px) {
h3.icon-font {
font-size: 1.2rem; /* Bootstrap -sm */
}
}
@media only screen and (min-width: 369px) and (max-width: 499px) {
h3.icon-font {
font-size: 1rem; /* Text overlaps */
}
}
@media only screen and (max-width: 370px) {
h3.icon-font {
font-size: 0.8rem; /* Text overlaps again */
}
}
/* Unhighlight accordion links */
button.collapsed {
background-color: transparent;
}
#accordion-tutoring .row.card-header {
margin-left: 0;
margin-right: 0;
}
.responsive-img {
object-fit: cover;
width: 100%;
height: auto;
border: 1px white solid;
border-radius: 5px;
} | 0.383641 | 0.155078 |